From 703f598edacdebfd8573b46eed498822cc66c116 Mon Sep 17 00:00:00 2001 From: Geoffry Song Date: Tue, 16 Aug 2022 01:25:48 +0000 Subject: [PATCH 1/5] Implement let_chains. Instead of a separate `if_let_expression` construct, we make `if_expression` hold multiple `condition`s, each of which can be a `let_condition`. This also applies to `while let` and `match` pattern guards. --- corpus/expressions.txt | 55 +- corpus/patterns.txt | 57 +- grammar.js | 48 +- src/grammar.json | 163 +- src/node-types.json | 160 +- src/parser.c | 140122 +++++++++++++++++++------------------- 6 files changed, 68658 insertions(+), 71947 deletions(-) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 3ebd6af6..4dab03cc 100644 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -524,16 +524,34 @@ If let expressions if let ("Bacon", b) = dish { } +if let Some("chained") = a && b && let (C, D) = e { +} + -------------------------------------------------------------------------------- (source_file (expression_statement - (if_let_expression - (tuple_pattern - (string_literal) - (identifier)) - (identifier) - (block)))) + (if_expression + condition: (let_condition + pattern: (tuple_pattern + (string_literal) + (identifier)) + value: (identifier)) + consequence: (block))) + (expression_statement + (if_expression + condition: (let_condition + pattern: (tuple_struct_pattern + type: (identifier) + (string_literal)) + value: (identifier)) + condition: (identifier) + condition: (let_condition + pattern: (tuple_pattern + (identifier) + (identifier)) + value: (identifier)) + consequence: (block)))) ================================================================================ While let expressions @@ -546,11 +564,12 @@ while let ("Bacon", b) = dish { (source_file (expression_statement - (while_let_expression - (tuple_pattern - (string_literal) + (while_expression + (let_condition + (tuple_pattern + (string_literal) + (identifier)) (identifier)) - (identifier) (block)))) ================================================================================ @@ -576,6 +595,7 @@ let msg = match x { if a { "200 (but this is not very stylish)" } + y if let Some(z) = foo && z && let Some(w) = bar => "very chained", _ => "something else", }; @@ -652,6 +672,21 @@ let msg = match x { condition: (identifier) consequence: (block (string_literal)))) + (match_arm + pattern: (match_pattern + (identifier) + condition: (let_condition + pattern: (tuple_struct_pattern + type: (identifier) + (identifier)) + value: (identifier)) + condition: (identifier) + condition: (let_condition + pattern: (tuple_struct_pattern + type: (identifier) + (identifier)) + value: (identifier))) + value: (string_literal)) (match_arm pattern: (match_pattern) value: (string_literal)))))) diff --git a/corpus/patterns.txt b/corpus/patterns.txt index 76d6dff1..4205811e 100644 --- a/corpus/patterns.txt +++ b/corpus/patterns.txt @@ -255,15 +255,16 @@ if let x!() | y!() = () {} (source_file (expression_statement - (if_let_expression - pattern: (or_pattern - (tuple_struct_pattern - type: (identifier) - (identifier)) - (tuple_struct_pattern - type: (identifier) - (identifier))) - value: (identifier) + (if_expression + condition: (let_condition + pattern: (or_pattern + (tuple_struct_pattern + type: (identifier) + (identifier)) + (tuple_struct_pattern + type: (identifier) + (identifier))) + value: (identifier)) consequence: (block (expression_statement (call_expression @@ -271,15 +272,16 @@ if let x!() | y!() = () {} arguments: (arguments (identifier))))))) (expression_statement - (while_let_expression - pattern: (or_pattern - (tuple_struct_pattern - type: (identifier) - (identifier)) - (tuple_struct_pattern - type: (identifier) - (identifier))) - value: (identifier) + (while_expression + condition: (let_condition + pattern: (or_pattern + (tuple_struct_pattern + type: (identifier) + (identifier)) + (tuple_struct_pattern + type: (identifier) + (identifier))) + value: (identifier)) body: (block (expression_statement (call_expression @@ -369,15 +371,16 @@ if let x!() | y!() = () {} type: (primitive_type))) body: (block)) (expression_statement - (if_let_expression - pattern: (or_pattern - (macro_invocation - macro: (identifier) - (token_tree)) - (macro_invocation - macro: (identifier) - (token_tree))) - value: (unit_expression) + (if_expression + condition: (let_condition + pattern: (or_pattern + (macro_invocation + macro: (identifier) + (token_tree)) + (macro_invocation + macro: (identifier) + (token_tree))) + value: (unit_expression)) consequence: (block))) (line_comment) (line_comment) diff --git a/grammar.js b/grammar.js index 02c9210e..adbbec91 100644 --- a/grammar.js +++ b/grammar.js @@ -953,10 +953,8 @@ module.exports = grammar({ $.async_block, $.block, $.if_expression, - $.if_let_expression, $.match_expression, $.while_expression, - $.while_let_expression, $.loop_expression, $.for_expression, $.const_block @@ -1173,29 +1171,35 @@ module.exports = grammar({ $._expression ), - if_expression: $ => seq( - 'if', - field('condition', $._expression), - field('consequence', $.block), - optional(field("alternative", $.else_clause)) - ), - - if_let_expression: $ => seq( - 'if', + let_condition: $ => seq( 'let', field('pattern', $._pattern), '=', - field('value', $._expression), + field('value', prec.left(PREC.and, $._expression)) + ), + + _condition: $ => choice( + prec.left(PREC.and, $._expression), + $.let_condition, + ), + + _conditions: $ => choice( + $._condition, + seq($._condition, '&&', $._conditions) + ), + + if_expression: $ => seq( + 'if', + field('condition', $._conditions), field('consequence', $.block), - optional(field('alternative', $.else_clause)) + optional(field("alternative", $.else_clause)) ), else_clause: $ => seq( 'else', choice( $.block, - $.if_expression, - $.if_let_expression + $.if_expression ) ), @@ -1234,23 +1238,13 @@ module.exports = grammar({ match_pattern: $ => seq( $._pattern, - optional(seq('if', field('condition', $._expression))) + optional(seq('if', field('condition', $._conditions))) ), while_expression: $ => seq( optional(seq($.loop_label, ':')), 'while', - field('condition', $._expression), - field('body', $.block) - ), - - while_let_expression: $ => seq( - optional(seq($.loop_label, ':')), - 'while', - 'let', - field('pattern', $._pattern), - '=', - field('value', $._expression), + field('condition', $._conditions), field('body', $.block) ), diff --git a/src/grammar.json b/src/grammar.json index fcea512c..fda55e14 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -5405,10 +5405,6 @@ "type": "SYMBOL", "name": "if_expression" }, - { - "type": "SYMBOL", - "name": "if_let_expression" - }, { "type": "SYMBOL", "name": "match_expression" @@ -5417,10 +5413,6 @@ "type": "SYMBOL", "name": "while_expression" }, - { - "type": "SYMBOL", - "name": "while_let_expression" - }, { "type": "SYMBOL", "name": "loop_expression" @@ -6896,76 +6888,95 @@ } ] }, - "if_expression": { + "let_condition": { "type": "SEQ", "members": [ { "type": "STRING", - "value": "if" + "value": "let" }, { "type": "FIELD", - "name": "condition", + "name": "pattern", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "_pattern" } }, + { + "type": "STRING", + "value": "=" + }, { "type": "FIELD", - "name": "consequence", + "name": "value", + "content": { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + } + ] + }, + "_condition": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 3, "content": { "type": "SYMBOL", - "name": "block" + "name": "_expression" } }, { - "type": "CHOICE", + "type": "SYMBOL", + "name": "let_condition" + } + ] + }, + "_conditions": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_condition" + }, + { + "type": "SEQ", "members": [ { - "type": "FIELD", - "name": "alternative", - "content": { - "type": "SYMBOL", - "name": "else_clause" - } + "type": "SYMBOL", + "name": "_condition" }, { - "type": "BLANK" + "type": "STRING", + "value": "&&" + }, + { + "type": "SYMBOL", + "name": "_conditions" } ] } ] }, - "if_let_expression": { + "if_expression": { "type": "SEQ", "members": [ { "type": "STRING", "value": "if" }, - { - "type": "STRING", - "value": "let" - }, { "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_pattern" - } - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "value", + "name": "condition", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "_conditions" } }, { @@ -7011,10 +7022,6 @@ { "type": "SYMBOL", "name": "if_expression" - }, - { - "type": "SYMBOL", - "name": "if_let_expression" } ] } @@ -7211,7 +7218,7 @@ "name": "condition", "content": { "type": "SYMBOL", - "name": "_expression" + "name": "_conditions" } } ] @@ -7256,69 +7263,7 @@ "name": "condition", "content": { "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "block" - } - } - ] - }, - "while_let_expression": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "loop_label" - }, - { - "type": "STRING", - "value": ":" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "while" - }, - { - "type": "STRING", - "value": "let" - }, - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_pattern" - } - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" + "name": "_conditions" } }, { diff --git a/src/node-types.json b/src/node-types.json index 02e8c024..f430212d 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -165,10 +165,6 @@ "type": "if_expression", "named": true }, - { - "type": "if_let_expression", - "named": true - }, { "type": "index_expression", "named": true @@ -245,10 +241,6 @@ "type": "while_expression", "named": true }, - { - "type": "while_let_expression", - "named": true - }, { "type": "yield_expression", "named": true @@ -1027,10 +1019,6 @@ "type": "if_expression", "named": true }, - { - "type": "if_let_expression", - "named": true - }, { "type": "index_expression", "named": true @@ -1103,10 +1091,6 @@ "type": "while_expression", "named": true }, - { - "type": "while_let_expression", - "named": true - }, { "type": "yield_expression", "named": true @@ -1448,10 +1432,6 @@ { "type": "if_expression", "named": true - }, - { - "type": "if_let_expression", - "named": true } ] } @@ -2289,37 +2269,19 @@ ] }, "condition": { - "multiple": false, + "multiple": true, "required": true, "types": [ { - "type": "_expression", - "named": true - } - ] - }, - "consequence": { - "multiple": false, - "required": true, - "types": [ + "type": "&&", + "named": false + }, { - "type": "block", + "type": "_expression", "named": true - } - ] - } - } - }, - { - "type": "if_let_expression", - "named": true, - "fields": { - "alternative": { - "multiple": false, - "required": false, - "types": [ + }, { - "type": "else_clause", + "type": "let_condition", "named": true } ] @@ -2333,26 +2295,6 @@ "named": true } ] - }, - "pattern": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_pattern", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] } } }, @@ -2454,6 +2396,32 @@ ] } }, + { + "type": "let_condition", + "named": true, + "fields": { + "pattern": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_pattern", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + } + }, { "type": "let_declaration", "named": true, @@ -2720,12 +2688,20 @@ "named": true, "fields": { "condition": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "&&", + "named": false + }, { "type": "_expression", "named": true + }, + { + "type": "let_condition", + "named": true } ] } @@ -4704,57 +4680,19 @@ ] }, "condition": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "loop_label", - "named": true - } - ] - } - }, - { - "type": "while_let_expression", - "named": true, - "fields": { - "body": { - "multiple": false, + "multiple": true, "required": true, "types": [ { - "type": "block", - "named": true - } - ] - }, - "pattern": { - "multiple": false, - "required": true, - "types": [ + "type": "&&", + "named": false + }, { - "type": "_pattern", + "type": "_expression", "named": true - } - ] - }, - "value": { - "multiple": false, - "required": true, - "types": [ + }, { - "type": "_expression", + "type": "let_condition", "named": true } ] diff --git a/src/parser.c b/src/parser.c index 574b2118..87d00a84 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2582 -#define LARGE_STATE_COUNT 659 -#define SYMBOL_COUNT 368 +#define STATE_COUNT 2549 +#define LARGE_STATE_COUNT 639 +#define SYMBOL_COUNT 369 #define ALIAS_COUNT 3 #define TOKEN_COUNT 183 #define EXTERNAL_TOKEN_COUNT 4 #define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 243 +#define PRODUCTION_ID_COUNT 239 enum { sym_identifier = 1, @@ -313,80 +313,81 @@ enum { sym_shorthand_field_initializer = 294, sym_field_initializer = 295, sym_base_field_initializer = 296, - sym_if_expression = 297, - sym_if_let_expression = 298, - sym_else_clause = 299, - sym_match_expression = 300, - sym_match_block = 301, - sym_match_arm = 302, - sym_last_match_arm = 303, - sym_match_pattern = 304, - sym_while_expression = 305, - sym_while_let_expression = 306, - sym_loop_expression = 307, - sym_for_expression = 308, - sym_const_block = 309, - sym_closure_expression = 310, - sym_closure_parameters = 311, - sym_loop_label = 312, - sym_break_expression = 313, - sym_continue_expression = 314, - sym_index_expression = 315, - sym_await_expression = 316, - sym_field_expression = 317, - sym_unsafe_block = 318, - sym_async_block = 319, - sym_block = 320, - sym__pattern = 321, - sym_tuple_pattern = 322, - sym_slice_pattern = 323, - sym_tuple_struct_pattern = 324, - sym_struct_pattern = 325, - sym_field_pattern = 326, - sym_remaining_field_pattern = 327, - sym_mut_pattern = 328, - sym_range_pattern = 329, - sym_ref_pattern = 330, - sym_captured_pattern = 331, - sym_reference_pattern = 332, - sym_or_pattern = 333, - sym__literal = 334, - sym__literal_pattern = 335, - sym_negative_literal = 336, - sym_string_literal = 337, - sym_boolean_literal = 338, - aux_sym_source_file_repeat1 = 339, - aux_sym_macro_definition_repeat1 = 340, - aux_sym_token_tree_pattern_repeat1 = 341, - aux_sym_token_tree_repeat1 = 342, - aux_sym_meta_arguments_repeat1 = 343, - aux_sym_declaration_list_repeat1 = 344, - aux_sym_enum_variant_list_repeat1 = 345, - aux_sym_enum_variant_list_repeat2 = 346, - aux_sym_field_declaration_list_repeat1 = 347, - aux_sym_ordered_field_declaration_list_repeat1 = 348, - aux_sym_function_modifiers_repeat1 = 349, - aux_sym_where_clause_repeat1 = 350, - aux_sym_trait_bounds_repeat1 = 351, - aux_sym_type_parameters_repeat1 = 352, - aux_sym_use_list_repeat1 = 353, - aux_sym_parameters_repeat1 = 354, - aux_sym_for_lifetimes_repeat1 = 355, - aux_sym_tuple_type_repeat1 = 356, - aux_sym_type_arguments_repeat1 = 357, - aux_sym_delim_token_tree_repeat1 = 358, - aux_sym_arguments_repeat1 = 359, - aux_sym_array_expression_repeat1 = 360, - aux_sym_tuple_expression_repeat1 = 361, - aux_sym_field_initializer_list_repeat1 = 362, - aux_sym_match_block_repeat1 = 363, - aux_sym_closure_parameters_repeat1 = 364, - aux_sym_tuple_pattern_repeat1 = 365, - aux_sym_struct_pattern_repeat1 = 366, - aux_sym_string_literal_repeat1 = 367, - alias_sym_field_identifier = 368, - alias_sym_shorthand_field_identifier = 369, - alias_sym_type_identifier = 370, + sym_let_condition = 297, + sym__condition = 298, + sym__conditions = 299, + sym_if_expression = 300, + sym_else_clause = 301, + sym_match_expression = 302, + sym_match_block = 303, + sym_match_arm = 304, + sym_last_match_arm = 305, + sym_match_pattern = 306, + sym_while_expression = 307, + sym_loop_expression = 308, + sym_for_expression = 309, + sym_const_block = 310, + sym_closure_expression = 311, + sym_closure_parameters = 312, + sym_loop_label = 313, + sym_break_expression = 314, + sym_continue_expression = 315, + sym_index_expression = 316, + sym_await_expression = 317, + sym_field_expression = 318, + sym_unsafe_block = 319, + sym_async_block = 320, + sym_block = 321, + sym__pattern = 322, + sym_tuple_pattern = 323, + sym_slice_pattern = 324, + sym_tuple_struct_pattern = 325, + sym_struct_pattern = 326, + sym_field_pattern = 327, + sym_remaining_field_pattern = 328, + sym_mut_pattern = 329, + sym_range_pattern = 330, + sym_ref_pattern = 331, + sym_captured_pattern = 332, + sym_reference_pattern = 333, + sym_or_pattern = 334, + sym__literal = 335, + sym__literal_pattern = 336, + sym_negative_literal = 337, + sym_string_literal = 338, + sym_boolean_literal = 339, + aux_sym_source_file_repeat1 = 340, + aux_sym_macro_definition_repeat1 = 341, + aux_sym_token_tree_pattern_repeat1 = 342, + aux_sym_token_tree_repeat1 = 343, + aux_sym_meta_arguments_repeat1 = 344, + aux_sym_declaration_list_repeat1 = 345, + aux_sym_enum_variant_list_repeat1 = 346, + aux_sym_enum_variant_list_repeat2 = 347, + aux_sym_field_declaration_list_repeat1 = 348, + aux_sym_ordered_field_declaration_list_repeat1 = 349, + aux_sym_function_modifiers_repeat1 = 350, + aux_sym_where_clause_repeat1 = 351, + aux_sym_trait_bounds_repeat1 = 352, + aux_sym_type_parameters_repeat1 = 353, + aux_sym_use_list_repeat1 = 354, + aux_sym_parameters_repeat1 = 355, + aux_sym_for_lifetimes_repeat1 = 356, + aux_sym_tuple_type_repeat1 = 357, + aux_sym_type_arguments_repeat1 = 358, + aux_sym_delim_token_tree_repeat1 = 359, + aux_sym_arguments_repeat1 = 360, + aux_sym_array_expression_repeat1 = 361, + aux_sym_tuple_expression_repeat1 = 362, + aux_sym_field_initializer_list_repeat1 = 363, + aux_sym_match_block_repeat1 = 364, + aux_sym_closure_parameters_repeat1 = 365, + aux_sym_tuple_pattern_repeat1 = 366, + aux_sym_struct_pattern_repeat1 = 367, + aux_sym_string_literal_repeat1 = 368, + alias_sym_field_identifier = 369, + alias_sym_shorthand_field_identifier = 370, + alias_sym_type_identifier = 371, }; static const char * const ts_symbol_names[] = { @@ -687,8 +688,10 @@ static const char * const ts_symbol_names[] = { [sym_shorthand_field_initializer] = "shorthand_field_initializer", [sym_field_initializer] = "field_initializer", [sym_base_field_initializer] = "base_field_initializer", + [sym_let_condition] = "let_condition", + [sym__condition] = "_condition", + [sym__conditions] = "_conditions", [sym_if_expression] = "if_expression", - [sym_if_let_expression] = "if_let_expression", [sym_else_clause] = "else_clause", [sym_match_expression] = "match_expression", [sym_match_block] = "match_block", @@ -696,7 +699,6 @@ static const char * const ts_symbol_names[] = { [sym_last_match_arm] = "match_arm", [sym_match_pattern] = "match_pattern", [sym_while_expression] = "while_expression", - [sym_while_let_expression] = "while_let_expression", [sym_loop_expression] = "loop_expression", [sym_for_expression] = "for_expression", [sym_const_block] = "const_block", @@ -1061,8 +1063,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_shorthand_field_initializer] = sym_shorthand_field_initializer, [sym_field_initializer] = sym_field_initializer, [sym_base_field_initializer] = sym_base_field_initializer, + [sym_let_condition] = sym_let_condition, + [sym__condition] = sym__condition, + [sym__conditions] = sym__conditions, [sym_if_expression] = sym_if_expression, - [sym_if_let_expression] = sym_if_let_expression, [sym_else_clause] = sym_else_clause, [sym_match_expression] = sym_match_expression, [sym_match_block] = sym_match_block, @@ -1070,7 +1074,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_last_match_arm] = sym_match_arm, [sym_match_pattern] = sym_match_pattern, [sym_while_expression] = sym_while_expression, - [sym_while_let_expression] = sym_while_let_expression, [sym_loop_expression] = sym_loop_expression, [sym_for_expression] = sym_for_expression, [sym_const_block] = sym_const_block, @@ -2328,11 +2331,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_if_expression] = { + [sym_let_condition] = { .visible = true, .named = true, }, - [sym_if_let_expression] = { + [sym__condition] = { + .visible = false, + .named = true, + }, + [sym__conditions] = { + .visible = false, + .named = true, + }, + [sym_if_expression] = { .visible = true, .named = true, }, @@ -2364,10 +2375,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_while_let_expression] = { - .visible = true, - .named = true, - }, [sym_loop_expression] = { .visible = true, .named = true, @@ -2788,17 +2795,17 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [98] = {.index = 121, .length = 3}, [99] = {.index = 124, .length = 2}, [100] = {.index = 126, .length = 2}, - [101] = {.index = 126, .length = 2}, - [102] = {.index = 128, .length = 1}, - [103] = {.index = 129, .length = 2}, - [104] = {.index = 131, .length = 3}, - [105] = {.index = 134, .length = 3}, - [106] = {.index = 137, .length = 3}, - [107] = {.index = 140, .length = 1}, - [108] = {.index = 129, .length = 2}, - [109] = {.index = 131, .length = 3}, - [110] = {.index = 134, .length = 3}, - [111] = {.index = 141, .length = 2}, + [101] = {.index = 128, .length = 2}, + [102] = {.index = 128, .length = 2}, + [103] = {.index = 130, .length = 1}, + [104] = {.index = 131, .length = 2}, + [105] = {.index = 133, .length = 3}, + [106] = {.index = 136, .length = 3}, + [107] = {.index = 139, .length = 3}, + [108] = {.index = 142, .length = 1}, + [109] = {.index = 131, .length = 2}, + [110] = {.index = 133, .length = 3}, + [111] = {.index = 136, .length = 3}, [112] = {.index = 143, .length = 2}, [114] = {.index = 145, .length = 3}, [115] = {.index = 148, .length = 4}, @@ -2811,7 +2818,7 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [122] = {.index = 164, .length = 3}, [123] = {.index = 167, .length = 3}, [124] = {.index = 32, .length = 1}, - [125] = {.index = 141, .length = 2}, + [125] = {.index = 143, .length = 2}, [126] = {.index = 170, .length = 3}, [127] = {.index = 173, .length = 2}, [128] = {.index = 175, .length = 2}, @@ -2828,107 +2835,103 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [139] = {.index = 95, .length = 1}, [140] = {.index = 199, .length = 2}, [141] = {.index = 201, .length = 2}, - [142] = {.index = 203, .length = 3}, - [143] = {.index = 206, .length = 2}, - [144] = {.index = 208, .length = 3}, - [145] = {.index = 211, .length = 2}, - [146] = {.index = 213, .length = 3}, - [147] = {.index = 216, .length = 4}, - [148] = {.index = 213, .length = 3}, - [149] = {.index = 216, .length = 4}, - [150] = {.index = 220, .length = 3}, - [151] = {.index = 220, .length = 3}, - [152] = {.index = 208, .length = 3}, - [153] = {.index = 223, .length = 2}, - [154] = {.index = 225, .length = 2}, - [155] = {.index = 227, .length = 2}, - [156] = {.index = 229, .length = 1}, - [157] = {.index = 230, .length = 2}, - [158] = {.index = 232, .length = 2}, - [159] = {.index = 234, .length = 2}, - [160] = {.index = 201, .length = 2}, - [161] = {.index = 236, .length = 4}, - [162] = {.index = 240, .length = 3}, - [163] = {.index = 243, .length = 2}, + [142] = {.index = 203, .length = 2}, + [143] = {.index = 205, .length = 3}, + [144] = {.index = 208, .length = 2}, + [145] = {.index = 210, .length = 3}, + [146] = {.index = 213, .length = 4}, + [147] = {.index = 210, .length = 3}, + [148] = {.index = 213, .length = 4}, + [149] = {.index = 217, .length = 3}, + [150] = {.index = 217, .length = 3}, + [151] = {.index = 205, .length = 3}, + [152] = {.index = 220, .length = 2}, + [153] = {.index = 222, .length = 2}, + [154] = {.index = 224, .length = 2}, + [155] = {.index = 226, .length = 1}, + [156] = {.index = 227, .length = 2}, + [157] = {.index = 229, .length = 2}, + [158] = {.index = 231, .length = 2}, + [159] = {.index = 201, .length = 2}, + [160] = {.index = 233, .length = 4}, + [161] = {.index = 237, .length = 3}, + [162] = {.index = 240, .length = 2}, + [163] = {.index = 242, .length = 3}, [164] = {.index = 245, .length = 3}, - [165] = {.index = 248, .length = 3}, - [166] = {.index = 243, .length = 2}, - [167] = {.index = 245, .length = 3}, + [165] = {.index = 240, .length = 2}, + [166] = {.index = 242, .length = 3}, + [167] = {.index = 248, .length = 3}, [168] = {.index = 251, .length = 3}, - [169] = {.index = 254, .length = 3}, - [170] = {.index = 257, .length = 4}, - [171] = {.index = 261, .length = 3}, - [172] = {.index = 264, .length = 2}, - [173] = {.index = 266, .length = 2}, - [174] = {.index = 268, .length = 3}, - [175] = {.index = 271, .length = 4}, - [176] = {.index = 275, .length = 3}, - [177] = {.index = 230, .length = 2}, - [178] = {.index = 278, .length = 2}, - [179] = {.index = 280, .length = 3}, - [180] = {.index = 283, .length = 3}, - [181] = {.index = 286, .length = 2}, - [182] = {.index = 288, .length = 3}, - [183] = {.index = 201, .length = 2}, - [184] = {.index = 291, .length = 3}, - [185] = {.index = 294, .length = 3}, - [186] = {.index = 266, .length = 2}, - [187] = {.index = 297, .length = 4}, - [188] = {.index = 301, .length = 5}, - [189] = {.index = 306, .length = 4}, - [190] = {.index = 310, .length = 2}, - [191] = {.index = 312, .length = 3}, - [192] = {.index = 315, .length = 4}, - [193] = {.index = 319, .length = 4}, - [194] = {.index = 319, .length = 4}, - [195] = {.index = 323, .length = 2}, - [196] = {.index = 325, .length = 3}, - [197] = {.index = 328, .length = 2}, - [198] = {.index = 330, .length = 2}, - [199] = {.index = 106, .length = 2}, - [200] = {.index = 332, .length = 3}, - [201] = {.index = 335, .length = 3}, - [202] = {.index = 338, .length = 4}, - [203] = {.index = 335, .length = 3}, - [204] = {.index = 338, .length = 4}, - [205] = {.index = 332, .length = 3}, - [206] = {.index = 342, .length = 4}, - [207] = {.index = 346, .length = 4}, + [169] = {.index = 254, .length = 4}, + [170] = {.index = 258, .length = 2}, + [171] = {.index = 260, .length = 2}, + [172] = {.index = 262, .length = 3}, + [173] = {.index = 265, .length = 4}, + [174] = {.index = 269, .length = 3}, + [175] = {.index = 227, .length = 2}, + [176] = {.index = 272, .length = 2}, + [177] = {.index = 274, .length = 3}, + [178] = {.index = 277, .length = 3}, + [179] = {.index = 280, .length = 2}, + [180] = {.index = 282, .length = 3}, + [181] = {.index = 201, .length = 2}, + [182] = {.index = 285, .length = 3}, + [183] = {.index = 288, .length = 3}, + [184] = {.index = 260, .length = 2}, + [185] = {.index = 291, .length = 4}, + [186] = {.index = 295, .length = 5}, + [187] = {.index = 300, .length = 4}, + [188] = {.index = 304, .length = 2}, + [189] = {.index = 306, .length = 3}, + [190] = {.index = 309, .length = 4}, + [191] = {.index = 309, .length = 4}, + [192] = {.index = 313, .length = 2}, + [193] = {.index = 315, .length = 3}, + [194] = {.index = 318, .length = 2}, + [195] = {.index = 320, .length = 2}, + [196] = {.index = 106, .length = 2}, + [197] = {.index = 322, .length = 3}, + [198] = {.index = 325, .length = 3}, + [199] = {.index = 328, .length = 4}, + [200] = {.index = 325, .length = 3}, + [201] = {.index = 328, .length = 4}, + [202] = {.index = 322, .length = 3}, + [203] = {.index = 332, .length = 4}, + [204] = {.index = 336, .length = 4}, + [205] = {.index = 340, .length = 3}, + [206] = {.index = 343, .length = 4}, + [207] = {.index = 347, .length = 3}, [208] = {.index = 350, .length = 3}, - [209] = {.index = 353, .length = 4}, - [210] = {.index = 357, .length = 3}, - [211] = {.index = 360, .length = 3}, - [212] = {.index = 363, .length = 3}, - [213] = {.index = 366, .length = 4}, - [214] = {.index = 370, .length = 2}, + [209] = {.index = 353, .length = 3}, + [210] = {.index = 356, .length = 4}, + [211] = {.index = 360, .length = 2}, + [212] = {.index = 362, .length = 3}, + [213] = {.index = 365, .length = 4}, + [214] = {.index = 369, .length = 3}, [215] = {.index = 372, .length = 3}, - [216] = {.index = 375, .length = 4}, - [217] = {.index = 379, .length = 3}, - [218] = {.index = 382, .length = 3}, + [216] = {.index = 375, .length = 3}, + [217] = {.index = 378, .length = 5}, + [218] = {.index = 383, .length = 2}, [219] = {.index = 385, .length = 3}, - [220] = {.index = 388, .length = 5}, - [221] = {.index = 393, .length = 2}, - [222] = {.index = 395, .length = 3}, - [223] = {.index = 398, .length = 3}, - [224] = {.index = 401, .length = 2}, - [225] = {.index = 403, .length = 4}, - [226] = {.index = 403, .length = 4}, - [227] = {.index = 407, .length = 4}, - [228] = {.index = 411, .length = 5}, + [220] = {.index = 388, .length = 3}, + [221] = {.index = 391, .length = 2}, + [222] = {.index = 393, .length = 4}, + [223] = {.index = 393, .length = 4}, + [224] = {.index = 397, .length = 4}, + [225] = {.index = 401, .length = 5}, + [226] = {.index = 406, .length = 4}, + [227] = {.index = 410, .length = 2}, + [228] = {.index = 412, .length = 4}, [229] = {.index = 416, .length = 4}, - [230] = {.index = 420, .length = 2}, - [231] = {.index = 422, .length = 4}, - [232] = {.index = 426, .length = 4}, - [233] = {.index = 430, .length = 3}, - [234] = {.index = 433, .length = 4}, - [235] = {.index = 437, .length = 3}, - [236] = {.index = 440, .length = 3}, - [237] = {.index = 443, .length = 5}, - [238] = {.index = 448, .length = 4}, - [239] = {.index = 452, .length = 5}, - [240] = {.index = 457, .length = 4}, - [241] = {.index = 461, .length = 3}, - [242] = {.index = 464, .length = 5}, + [230] = {.index = 420, .length = 3}, + [231] = {.index = 423, .length = 4}, + [232] = {.index = 427, .length = 3}, + [233] = {.index = 430, .length = 5}, + [234] = {.index = 435, .length = 4}, + [235] = {.index = 439, .length = 5}, + [236] = {.index = 444, .length = 4}, + [237] = {.index = 448, .length = 3}, + [238] = {.index = 451, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3124,36 +3127,36 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_pattern, 1}, {field_value, 3}, [124] = + {field_pattern, 1}, + {field_value, 3}, + [126] = {field_parameters, 1}, {field_return_type, 3}, - [126] = + [128] = {field_default_type, 2}, {field_name, 0}, - [128] = + [130] = {field_type, 3}, - [129] = + [131] = {field_trait, 1}, {field_type, 3}, - [131] = + [133] = {field_body, 4}, {field_trait, 1}, {field_type, 3}, - [134] = + [136] = {field_parameters, 1}, {field_return_type, 3}, {field_trait, 0}, - [137] = + [139] = {field_body, 4}, {field_type, 2}, {field_type_parameters, 1}, - [140] = + [142] = {field_parameters, 3}, - [141] = - {field_pattern, 1}, - {field_type, 3}, [143] = {field_pattern, 1}, - {field_value, 3}, + {field_type, 3}, [145] = {field_body, 4}, {field_bounds, 2}, @@ -3236,351 +3239,334 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 0}, {field_type, 2}, [203] = - {field_consequence, 5}, - {field_pattern, 2}, - {field_value, 4}, - [206] = {field_element, 1}, {field_length, 3}, - [208] = + [205] = {field_body, 5}, {field_trait, 1}, {field_type, 3}, - [211] = + [208] = {field_parameters, 2}, {field_return_type, 4}, - [213] = + [210] = {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [216] = + [213] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [220] = + [217] = {field_parameters, 2}, {field_return_type, 4}, {field_trait, 1}, - [223] = + [220] = {field_pattern, 2}, {field_type, 4}, - [225] = + [222] = {field_pattern, 2}, {field_value, 4}, - [227] = + [224] = {field_pattern, 0}, {field_value, 2}, - [229] = + [226] = {field_condition, 2}, - [230] = + [227] = {field_name, 2}, {field_type, 4}, - [232] = + [229] = {field_type, 1}, {field_type, 2, .inherited = true}, - [234] = + [231] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [236] = + [233] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [240] = + [237] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [243] = + [240] = {field_trait, 2}, {field_type, 4}, - [245] = + [242] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [248] = + [245] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [251] = + [248] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [254] = + [251] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [257] = + [254] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [261] = - {field_body, 5}, - {field_pattern, 2}, - {field_value, 4}, - [264] = + [258] = {field_alias, 4}, {field_name, 2}, - [266] = + [260] = {field_name, 1}, {field_value, 3}, - [268] = + [262] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [271] = + [265] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [275] = + [269] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [278] = + [272] = {field_body, 5}, {field_name, 3}, - [280] = + [274] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [283] = + [277] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [286] = + [280] = {field_name, 3}, {field_parameters, 4}, - [288] = + [282] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [291] = + [285] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [294] = + [288] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [297] = + [291] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [301] = + [295] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [306] = + [300] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [310] = + [304] = {field_name, 1}, {field_pattern, 3}, - [312] = + [306] = {field_name, 0}, {field_type, 3}, {field_type_arguments, 1}, - [315] = - {field_alternative, 6}, - {field_consequence, 5}, - {field_pattern, 2}, - {field_value, 4}, - [319] = + [309] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [323] = + [313] = {field_parameters, 3}, {field_return_type, 5}, - [325] = + [315] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [328] = + [318] = {field_name, 3}, {field_type, 5}, - [330] = + [320] = {field_type, 2}, {field_type, 3, .inherited = true}, - [332] = + [322] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [335] = + [325] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [338] = + [328] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [342] = + [332] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [346] = + [336] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [350] = + [340] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [353] = + [343] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [357] = + [347] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [360] = + [350] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [363] = + [353] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [366] = + [356] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [370] = + [360] = {field_alias, 5}, {field_name, 3}, - [372] = + [362] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [375] = + [365] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [379] = + [369] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [382] = + [372] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [385] = + [375] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [388] = + [378] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [393] = + [383] = {field_name, 2}, {field_pattern, 4}, - [395] = + [385] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [398] = + [388] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [401] = + [391] = {field_type, 3}, {field_type, 4, .inherited = true}, - [403] = + [393] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [407] = + [397] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [411] = + [401] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [416] = + [406] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [420] = + [410] = {field_name, 4}, {field_type, 6}, - [422] = + [412] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [426] = + [416] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [430] = + [420] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [433] = + [423] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [437] = - {field_body, 7}, - {field_pattern, 4}, - {field_value, 6}, - [440] = + [427] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [443] = + [430] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [448] = + [435] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [452] = + [439] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [457] = + [444] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [461] = + [448] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [464] = + [451] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, @@ -3704,16 +3690,16 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [97] = { [1] = alias_sym_shorthand_field_identifier, }, - [100] = { + [101] = { [0] = alias_sym_type_identifier, }, - [103] = { - [1] = alias_sym_type_identifier, - }, [104] = { [1] = alias_sym_type_identifier, }, [105] = { + [1] = alias_sym_type_identifier, + }, + [106] = { [0] = alias_sym_type_identifier, }, [113] = { @@ -3764,31 +3750,34 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [141] = { [0] = alias_sym_type_identifier, }, - [144] = { + [143] = { [1] = alias_sym_type_identifier, }, - [146] = { + [145] = { [2] = alias_sym_type_identifier, }, - [147] = { + [146] = { [2] = alias_sym_type_identifier, }, - [150] = { + [149] = { [1] = alias_sym_type_identifier, }, - [160] = { + [159] = { [0] = alias_sym_field_identifier, }, + [160] = { + [1] = alias_sym_type_identifier, + }, [161] = { [1] = alias_sym_type_identifier, }, [162] = { - [1] = alias_sym_type_identifier, + [2] = alias_sym_type_identifier, }, [163] = { [2] = alias_sym_type_identifier, }, - [164] = { + [167] = { [2] = alias_sym_type_identifier, }, [168] = { @@ -3797,67 +3786,64 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [169] = { [2] = alias_sym_type_identifier, }, - [170] = { - [2] = alias_sym_type_identifier, - }, - [173] = { + [171] = { [1] = alias_sym_field_identifier, }, - [177] = { + [175] = { [2] = alias_sym_type_identifier, }, - [178] = { + [176] = { [3] = alias_sym_type_identifier, }, - [179] = { + [177] = { [3] = alias_sym_type_identifier, }, - [180] = { + [178] = { [3] = alias_sym_type_identifier, }, - [190] = { + [188] = { [1] = alias_sym_field_identifier, }, - [191] = { + [189] = { [0] = alias_sym_type_identifier, }, - [193] = { + [190] = { [2] = alias_sym_type_identifier, }, - [199] = { + [196] = { [1] = alias_sym_field_identifier, }, - [200] = { + [197] = { [2] = alias_sym_type_identifier, }, - [201] = { + [198] = { [3] = alias_sym_type_identifier, }, - [202] = { + [199] = { [3] = alias_sym_type_identifier, }, - [206] = { + [203] = { [2] = alias_sym_type_identifier, }, - [210] = { + [207] = { [2] = alias_sym_type_identifier, }, - [211] = { + [208] = { [3] = alias_sym_type_identifier, }, - [212] = { + [209] = { [3] = alias_sym_type_identifier, }, - [213] = { + [210] = { [3] = alias_sym_type_identifier, }, - [221] = { + [218] = { [2] = alias_sym_field_identifier, }, - [225] = { + [222] = { [3] = alias_sym_type_identifier, }, - [231] = { + [228] = { [3] = alias_sym_type_identifier, }, }; @@ -13396,50 +13382,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [40] = {.lex_state = 5, .external_lex_state = 2}, [41] = {.lex_state = 5, .external_lex_state = 2}, [42] = {.lex_state = 5, .external_lex_state = 2}, - [43] = {.lex_state = 5, .external_lex_state = 2}, + [43] = {.lex_state = 57, .external_lex_state = 2}, [44] = {.lex_state = 5, .external_lex_state = 2}, - [45] = {.lex_state = 57, .external_lex_state = 2}, + [45] = {.lex_state = 5, .external_lex_state = 2}, [46] = {.lex_state = 5, .external_lex_state = 2}, [47] = {.lex_state = 5, .external_lex_state = 2}, [48] = {.lex_state = 5, .external_lex_state = 2}, [49] = {.lex_state = 5, .external_lex_state = 2}, - [50] = {.lex_state = 57, .external_lex_state = 2}, + [50] = {.lex_state = 5, .external_lex_state = 2}, [51] = {.lex_state = 5, .external_lex_state = 2}, [52] = {.lex_state = 5, .external_lex_state = 2}, [53] = {.lex_state = 5, .external_lex_state = 2}, - [54] = {.lex_state = 5, .external_lex_state = 2}, + [54] = {.lex_state = 57, .external_lex_state = 2}, [55] = {.lex_state = 5, .external_lex_state = 2}, - [56] = {.lex_state = 5, .external_lex_state = 2}, + [56] = {.lex_state = 57, .external_lex_state = 2}, [57] = {.lex_state = 5, .external_lex_state = 2}, - [58] = {.lex_state = 5, .external_lex_state = 2}, + [58] = {.lex_state = 57, .external_lex_state = 2}, [59] = {.lex_state = 5, .external_lex_state = 2}, - [60] = {.lex_state = 5, .external_lex_state = 2}, + [60] = {.lex_state = 57, .external_lex_state = 2}, [61] = {.lex_state = 5, .external_lex_state = 2}, - [62] = {.lex_state = 5, .external_lex_state = 2}, - [63] = {.lex_state = 5, .external_lex_state = 2}, + [62] = {.lex_state = 57, .external_lex_state = 2}, + [63] = {.lex_state = 57, .external_lex_state = 2}, [64] = {.lex_state = 5, .external_lex_state = 2}, - [65] = {.lex_state = 57, .external_lex_state = 2}, - [66] = {.lex_state = 5, .external_lex_state = 2}, + [65] = {.lex_state = 5, .external_lex_state = 2}, + [66] = {.lex_state = 57, .external_lex_state = 2}, [67] = {.lex_state = 57, .external_lex_state = 2}, - [68] = {.lex_state = 5, .external_lex_state = 2}, - [69] = {.lex_state = 5, .external_lex_state = 2}, - [70] = {.lex_state = 5, .external_lex_state = 2}, + [68] = {.lex_state = 57, .external_lex_state = 2}, + [69] = {.lex_state = 57, .external_lex_state = 2}, + [70] = {.lex_state = 57, .external_lex_state = 2}, [71] = {.lex_state = 57, .external_lex_state = 2}, [72] = {.lex_state = 57, .external_lex_state = 2}, - [73] = {.lex_state = 5, .external_lex_state = 2}, + [73] = {.lex_state = 57, .external_lex_state = 2}, [74] = {.lex_state = 57, .external_lex_state = 2}, - [75] = {.lex_state = 5, .external_lex_state = 2}, + [75] = {.lex_state = 57, .external_lex_state = 2}, [76] = {.lex_state = 57, .external_lex_state = 2}, - [77] = {.lex_state = 5, .external_lex_state = 2}, - [78] = {.lex_state = 5, .external_lex_state = 2}, - [79] = {.lex_state = 57, .external_lex_state = 2}, - [80] = {.lex_state = 5, .external_lex_state = 2}, - [81] = {.lex_state = 5, .external_lex_state = 2}, - [82] = {.lex_state = 5, .external_lex_state = 2}, - [83] = {.lex_state = 5, .external_lex_state = 2}, - [84] = {.lex_state = 5, .external_lex_state = 2}, - [85] = {.lex_state = 5, .external_lex_state = 2}, - [86] = {.lex_state = 57, .external_lex_state = 2}, + [77] = {.lex_state = 57, .external_lex_state = 2}, + [78] = {.lex_state = 57, .external_lex_state = 2}, + [79] = {.lex_state = 5, .external_lex_state = 2}, + [80] = {.lex_state = 57, .external_lex_state = 2}, + [81] = {.lex_state = 57, .external_lex_state = 2}, + [82] = {.lex_state = 57, .external_lex_state = 2}, + [83] = {.lex_state = 57, .external_lex_state = 2}, + [84] = {.lex_state = 57, .external_lex_state = 2}, + [85] = {.lex_state = 57, .external_lex_state = 2}, + [86] = {.lex_state = 5, .external_lex_state = 2}, [87] = {.lex_state = 5, .external_lex_state = 2}, [88] = {.lex_state = 5, .external_lex_state = 2}, [89] = {.lex_state = 5, .external_lex_state = 2}, @@ -13463,7 +13449,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [107] = {.lex_state = 5, .external_lex_state = 2}, [108] = {.lex_state = 5, .external_lex_state = 2}, [109] = {.lex_state = 5, .external_lex_state = 2}, - [110] = {.lex_state = 57, .external_lex_state = 2}, + [110] = {.lex_state = 5, .external_lex_state = 2}, [111] = {.lex_state = 5, .external_lex_state = 2}, [112] = {.lex_state = 5, .external_lex_state = 2}, [113] = {.lex_state = 5, .external_lex_state = 2}, @@ -13472,19 +13458,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [116] = {.lex_state = 5, .external_lex_state = 2}, [117] = {.lex_state = 5, .external_lex_state = 2}, [118] = {.lex_state = 5, .external_lex_state = 2}, - [119] = {.lex_state = 57, .external_lex_state = 2}, + [119] = {.lex_state = 5, .external_lex_state = 2}, [120] = {.lex_state = 5, .external_lex_state = 2}, - [121] = {.lex_state = 57, .external_lex_state = 2}, + [121] = {.lex_state = 5, .external_lex_state = 2}, [122] = {.lex_state = 5, .external_lex_state = 2}, [123] = {.lex_state = 5, .external_lex_state = 2}, [124] = {.lex_state = 5, .external_lex_state = 2}, [125] = {.lex_state = 5, .external_lex_state = 2}, [126] = {.lex_state = 5, .external_lex_state = 2}, [127] = {.lex_state = 5, .external_lex_state = 2}, - [128] = {.lex_state = 57, .external_lex_state = 2}, + [128] = {.lex_state = 5, .external_lex_state = 2}, [129] = {.lex_state = 5, .external_lex_state = 2}, [130] = {.lex_state = 5, .external_lex_state = 2}, - [131] = {.lex_state = 57, .external_lex_state = 2}, + [131] = {.lex_state = 5, .external_lex_state = 2}, [132] = {.lex_state = 5, .external_lex_state = 2}, [133] = {.lex_state = 5, .external_lex_state = 2}, [134] = {.lex_state = 5, .external_lex_state = 2}, @@ -13495,10 +13481,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [139] = {.lex_state = 5, .external_lex_state = 2}, [140] = {.lex_state = 5, .external_lex_state = 2}, [141] = {.lex_state = 5, .external_lex_state = 2}, - [142] = {.lex_state = 57, .external_lex_state = 2}, - [143] = {.lex_state = 57, .external_lex_state = 2}, - [144] = {.lex_state = 57, .external_lex_state = 2}, - [145] = {.lex_state = 57, .external_lex_state = 2}, + [142] = {.lex_state = 5, .external_lex_state = 2}, + [143] = {.lex_state = 5, .external_lex_state = 2}, + [144] = {.lex_state = 5, .external_lex_state = 2}, + [145] = {.lex_state = 5, .external_lex_state = 2}, [146] = {.lex_state = 5, .external_lex_state = 2}, [147] = {.lex_state = 5, .external_lex_state = 2}, [148] = {.lex_state = 5, .external_lex_state = 2}, @@ -13507,118 +13493,118 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [151] = {.lex_state = 5, .external_lex_state = 2}, [152] = {.lex_state = 5, .external_lex_state = 2}, [153] = {.lex_state = 5, .external_lex_state = 2}, - [154] = {.lex_state = 57, .external_lex_state = 2}, + [154] = {.lex_state = 5, .external_lex_state = 2}, [155] = {.lex_state = 5, .external_lex_state = 2}, [156] = {.lex_state = 5, .external_lex_state = 2}, [157] = {.lex_state = 5, .external_lex_state = 2}, [158] = {.lex_state = 5, .external_lex_state = 2}, - [159] = {.lex_state = 57, .external_lex_state = 2}, + [159] = {.lex_state = 5, .external_lex_state = 2}, [160] = {.lex_state = 5, .external_lex_state = 2}, - [161] = {.lex_state = 57, .external_lex_state = 2}, + [161] = {.lex_state = 5, .external_lex_state = 2}, [162] = {.lex_state = 5, .external_lex_state = 2}, - [163] = {.lex_state = 57, .external_lex_state = 2}, + [163] = {.lex_state = 5, .external_lex_state = 2}, [164] = {.lex_state = 5, .external_lex_state = 2}, [165] = {.lex_state = 5, .external_lex_state = 2}, - [166] = {.lex_state = 57, .external_lex_state = 2}, - [167] = {.lex_state = 57, .external_lex_state = 2}, + [166] = {.lex_state = 5, .external_lex_state = 2}, + [167] = {.lex_state = 5, .external_lex_state = 2}, [168] = {.lex_state = 5, .external_lex_state = 2}, [169] = {.lex_state = 5, .external_lex_state = 2}, [170] = {.lex_state = 5, .external_lex_state = 2}, [171] = {.lex_state = 5, .external_lex_state = 2}, [172] = {.lex_state = 5, .external_lex_state = 2}, - [173] = {.lex_state = 57, .external_lex_state = 2}, + [173] = {.lex_state = 5, .external_lex_state = 2}, [174] = {.lex_state = 5, .external_lex_state = 2}, [175] = {.lex_state = 5, .external_lex_state = 2}, - [176] = {.lex_state = 57, .external_lex_state = 2}, + [176] = {.lex_state = 5, .external_lex_state = 2}, [177] = {.lex_state = 5, .external_lex_state = 2}, [178] = {.lex_state = 5, .external_lex_state = 2}, [179] = {.lex_state = 5, .external_lex_state = 2}, - [180] = {.lex_state = 5, .external_lex_state = 2}, - [181] = {.lex_state = 5, .external_lex_state = 2}, - [182] = {.lex_state = 5, .external_lex_state = 2}, - [183] = {.lex_state = 57, .external_lex_state = 2}, - [184] = {.lex_state = 5, .external_lex_state = 2}, - [185] = {.lex_state = 5, .external_lex_state = 2}, - [186] = {.lex_state = 57, .external_lex_state = 2}, - [187] = {.lex_state = 5, .external_lex_state = 2}, - [188] = {.lex_state = 57, .external_lex_state = 2}, + [180] = {.lex_state = 6, .external_lex_state = 2}, + [181] = {.lex_state = 6, .external_lex_state = 2}, + [182] = {.lex_state = 6, .external_lex_state = 2}, + [183] = {.lex_state = 6, .external_lex_state = 2}, + [184] = {.lex_state = 6, .external_lex_state = 2}, + [185] = {.lex_state = 6, .external_lex_state = 2}, + [186] = {.lex_state = 6, .external_lex_state = 2}, + [187] = {.lex_state = 6, .external_lex_state = 2}, + [188] = {.lex_state = 6, .external_lex_state = 2}, [189] = {.lex_state = 6, .external_lex_state = 2}, [190] = {.lex_state = 6, .external_lex_state = 2}, [191] = {.lex_state = 6, .external_lex_state = 2}, [192] = {.lex_state = 6, .external_lex_state = 2}, [193] = {.lex_state = 6, .external_lex_state = 2}, [194] = {.lex_state = 6, .external_lex_state = 2}, - [195] = {.lex_state = 6, .external_lex_state = 2}, - [196] = {.lex_state = 6, .external_lex_state = 2}, - [197] = {.lex_state = 6, .external_lex_state = 2}, - [198] = {.lex_state = 6, .external_lex_state = 2}, - [199] = {.lex_state = 6, .external_lex_state = 2}, - [200] = {.lex_state = 6, .external_lex_state = 2}, - [201] = {.lex_state = 6, .external_lex_state = 2}, - [202] = {.lex_state = 6, .external_lex_state = 2}, - [203] = {.lex_state = 6, .external_lex_state = 2}, + [195] = {.lex_state = 5, .external_lex_state = 2}, + [196] = {.lex_state = 5, .external_lex_state = 2}, + [197] = {.lex_state = 5, .external_lex_state = 2}, + [198] = {.lex_state = 5, .external_lex_state = 2}, + [199] = {.lex_state = 1, .external_lex_state = 2}, + [200] = {.lex_state = 5, .external_lex_state = 2}, + [201] = {.lex_state = 5, .external_lex_state = 2}, + [202] = {.lex_state = 5, .external_lex_state = 2}, + [203] = {.lex_state = 5, .external_lex_state = 2}, [204] = {.lex_state = 5, .external_lex_state = 2}, [205] = {.lex_state = 5, .external_lex_state = 2}, [206] = {.lex_state = 5, .external_lex_state = 2}, [207] = {.lex_state = 5, .external_lex_state = 2}, - [208] = {.lex_state = 1, .external_lex_state = 2}, + [208] = {.lex_state = 5, .external_lex_state = 2}, [209] = {.lex_state = 5, .external_lex_state = 2}, [210] = {.lex_state = 5, .external_lex_state = 2}, - [211] = {.lex_state = 5, .external_lex_state = 2}, - [212] = {.lex_state = 5, .external_lex_state = 2}, - [213] = {.lex_state = 5, .external_lex_state = 2}, - [214] = {.lex_state = 5, .external_lex_state = 2}, - [215] = {.lex_state = 5, .external_lex_state = 2}, - [216] = {.lex_state = 5, .external_lex_state = 2}, - [217] = {.lex_state = 5, .external_lex_state = 2}, - [218] = {.lex_state = 5, .external_lex_state = 2}, - [219] = {.lex_state = 5, .external_lex_state = 2}, + [211] = {.lex_state = 4, .external_lex_state = 3}, + [212] = {.lex_state = 4, .external_lex_state = 3}, + [213] = {.lex_state = 1, .external_lex_state = 2}, + [214] = {.lex_state = 4, .external_lex_state = 3}, + [215] = {.lex_state = 4, .external_lex_state = 3}, + [216] = {.lex_state = 4, .external_lex_state = 3}, + [217] = {.lex_state = 4, .external_lex_state = 3}, + [218] = {.lex_state = 4, .external_lex_state = 3}, + [219] = {.lex_state = 1, .external_lex_state = 2}, [220] = {.lex_state = 1, .external_lex_state = 2}, - [221] = {.lex_state = 4, .external_lex_state = 3}, - [222] = {.lex_state = 4, .external_lex_state = 3}, - [223] = {.lex_state = 4, .external_lex_state = 3}, - [224] = {.lex_state = 4, .external_lex_state = 3}, - [225] = {.lex_state = 4, .external_lex_state = 3}, + [221] = {.lex_state = 1, .external_lex_state = 2}, + [222] = {.lex_state = 1, .external_lex_state = 2}, + [223] = {.lex_state = 1, .external_lex_state = 2}, + [224] = {.lex_state = 1, .external_lex_state = 2}, + [225] = {.lex_state = 1, .external_lex_state = 2}, [226] = {.lex_state = 1, .external_lex_state = 2}, - [227] = {.lex_state = 4, .external_lex_state = 3}, - [228] = {.lex_state = 4, .external_lex_state = 3}, + [227] = {.lex_state = 1, .external_lex_state = 2}, + [228] = {.lex_state = 5, .external_lex_state = 2}, [229] = {.lex_state = 1, .external_lex_state = 2}, [230] = {.lex_state = 1, .external_lex_state = 2}, [231] = {.lex_state = 1, .external_lex_state = 2}, - [232] = {.lex_state = 1, .external_lex_state = 2}, + [232] = {.lex_state = 5, .external_lex_state = 2}, [233] = {.lex_state = 1, .external_lex_state = 2}, [234] = {.lex_state = 5, .external_lex_state = 2}, [235] = {.lex_state = 1, .external_lex_state = 2}, [236] = {.lex_state = 1, .external_lex_state = 2}, - [237] = {.lex_state = 5, .external_lex_state = 2}, + [237] = {.lex_state = 1, .external_lex_state = 2}, [238] = {.lex_state = 1, .external_lex_state = 2}, - [239] = {.lex_state = 5, .external_lex_state = 2}, + [239] = {.lex_state = 1, .external_lex_state = 2}, [240] = {.lex_state = 1, .external_lex_state = 2}, [241] = {.lex_state = 1, .external_lex_state = 2}, [242] = {.lex_state = 1, .external_lex_state = 2}, - [243] = {.lex_state = 1, .external_lex_state = 2}, - [244] = {.lex_state = 1, .external_lex_state = 2}, - [245] = {.lex_state = 1, .external_lex_state = 2}, - [246] = {.lex_state = 1, .external_lex_state = 2}, - [247] = {.lex_state = 1, .external_lex_state = 2}, - [248] = {.lex_state = 1, .external_lex_state = 2}, - [249] = {.lex_state = 1, .external_lex_state = 2}, - [250] = {.lex_state = 5, .external_lex_state = 2}, - [251] = {.lex_state = 1, .external_lex_state = 2}, - [252] = {.lex_state = 1, .external_lex_state = 2}, - [253] = {.lex_state = 1, .external_lex_state = 2}, - [254] = {.lex_state = 1, .external_lex_state = 2}, - [255] = {.lex_state = 1, .external_lex_state = 2}, - [256] = {.lex_state = 1, .external_lex_state = 2}, - [257] = {.lex_state = 5, .external_lex_state = 2}, - [258] = {.lex_state = 5, .external_lex_state = 2}, - [259] = {.lex_state = 5, .external_lex_state = 2}, - [260] = {.lex_state = 14, .external_lex_state = 3}, - [261] = {.lex_state = 14, .external_lex_state = 3}, - [262] = {.lex_state = 14, .external_lex_state = 3}, - [263] = {.lex_state = 14, .external_lex_state = 3}, - [264] = {.lex_state = 11, .external_lex_state = 2}, - [265] = {.lex_state = 14, .external_lex_state = 3}, + [243] = {.lex_state = 5, .external_lex_state = 2}, + [244] = {.lex_state = 5, .external_lex_state = 2}, + [245] = {.lex_state = 5, .external_lex_state = 2}, + [246] = {.lex_state = 5, .external_lex_state = 2}, + [247] = {.lex_state = 14, .external_lex_state = 3}, + [248] = {.lex_state = 14, .external_lex_state = 3}, + [249] = {.lex_state = 14, .external_lex_state = 3}, + [250] = {.lex_state = 14, .external_lex_state = 3}, + [251] = {.lex_state = 14, .external_lex_state = 3}, + [252] = {.lex_state = 11, .external_lex_state = 2}, + [253] = {.lex_state = 58, .external_lex_state = 2}, + [254] = {.lex_state = 58, .external_lex_state = 2}, + [255] = {.lex_state = 58, .external_lex_state = 2}, + [256] = {.lex_state = 58, .external_lex_state = 2}, + [257] = {.lex_state = 58, .external_lex_state = 2}, + [258] = {.lex_state = 58, .external_lex_state = 2}, + [259] = {.lex_state = 58, .external_lex_state = 2}, + [260] = {.lex_state = 58, .external_lex_state = 2}, + [261] = {.lex_state = 58, .external_lex_state = 2}, + [262] = {.lex_state = 58, .external_lex_state = 2}, + [263] = {.lex_state = 58, .external_lex_state = 2}, + [264] = {.lex_state = 58, .external_lex_state = 2}, + [265] = {.lex_state = 58, .external_lex_state = 2}, [266] = {.lex_state = 58, .external_lex_state = 2}, [267] = {.lex_state = 58, .external_lex_state = 2}, [268] = {.lex_state = 58, .external_lex_state = 2}, @@ -13653,7 +13639,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [297] = {.lex_state = 58, .external_lex_state = 2}, [298] = {.lex_state = 58, .external_lex_state = 2}, [299] = {.lex_state = 58, .external_lex_state = 2}, - [300] = {.lex_state = 5, .external_lex_state = 2}, + [300] = {.lex_state = 58, .external_lex_state = 2}, [301] = {.lex_state = 58, .external_lex_state = 2}, [302] = {.lex_state = 58, .external_lex_state = 2}, [303] = {.lex_state = 58, .external_lex_state = 2}, @@ -13699,7 +13685,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [343] = {.lex_state = 58, .external_lex_state = 2}, [344] = {.lex_state = 58, .external_lex_state = 2}, [345] = {.lex_state = 58, .external_lex_state = 2}, - [346] = {.lex_state = 5, .external_lex_state = 2}, + [346] = {.lex_state = 58, .external_lex_state = 2}, [347] = {.lex_state = 58, .external_lex_state = 2}, [348] = {.lex_state = 58, .external_lex_state = 2}, [349] = {.lex_state = 58, .external_lex_state = 2}, @@ -13714,9 +13700,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [358] = {.lex_state = 58, .external_lex_state = 2}, [359] = {.lex_state = 58, .external_lex_state = 2}, [360] = {.lex_state = 58, .external_lex_state = 2}, - [361] = {.lex_state = 5, .external_lex_state = 2}, + [361] = {.lex_state = 58, .external_lex_state = 2}, [362] = {.lex_state = 58, .external_lex_state = 2}, - [363] = {.lex_state = 58, .external_lex_state = 2}, + [363] = {.lex_state = 5, .external_lex_state = 2}, [364] = {.lex_state = 58, .external_lex_state = 2}, [365] = {.lex_state = 58, .external_lex_state = 2}, [366] = {.lex_state = 58, .external_lex_state = 2}, @@ -13804,10 +13790,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [448] = {.lex_state = 58, .external_lex_state = 2}, [449] = {.lex_state = 58, .external_lex_state = 2}, [450] = {.lex_state = 58, .external_lex_state = 2}, - [451] = {.lex_state = 58, .external_lex_state = 2}, + [451] = {.lex_state = 5, .external_lex_state = 2}, [452] = {.lex_state = 58, .external_lex_state = 2}, [453] = {.lex_state = 58, .external_lex_state = 2}, - [454] = {.lex_state = 58, .external_lex_state = 2}, + [454] = {.lex_state = 5, .external_lex_state = 2}, [455] = {.lex_state = 58, .external_lex_state = 2}, [456] = {.lex_state = 58, .external_lex_state = 2}, [457] = {.lex_state = 58, .external_lex_state = 2}, @@ -13834,166 +13820,166 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [478] = {.lex_state = 58, .external_lex_state = 2}, [479] = {.lex_state = 58, .external_lex_state = 2}, [480] = {.lex_state = 58, .external_lex_state = 2}, - [481] = {.lex_state = 58, .external_lex_state = 2}, - [482] = {.lex_state = 58, .external_lex_state = 2}, - [483] = {.lex_state = 58, .external_lex_state = 2}, - [484] = {.lex_state = 58, .external_lex_state = 2}, - [485] = {.lex_state = 58, .external_lex_state = 2}, - [486] = {.lex_state = 58, .external_lex_state = 2}, - [487] = {.lex_state = 58, .external_lex_state = 2}, - [488] = {.lex_state = 58, .external_lex_state = 2}, - [489] = {.lex_state = 58, .external_lex_state = 2}, - [490] = {.lex_state = 58, .external_lex_state = 2}, - [491] = {.lex_state = 58, .external_lex_state = 2}, - [492] = {.lex_state = 58, .external_lex_state = 2}, - [493] = {.lex_state = 58, .external_lex_state = 2}, - [494] = {.lex_state = 5, .external_lex_state = 2}, - [495] = {.lex_state = 12, .external_lex_state = 2}, - [496] = {.lex_state = 5, .external_lex_state = 2}, + [481] = {.lex_state = 11, .external_lex_state = 2}, + [482] = {.lex_state = 5, .external_lex_state = 2}, + [483] = {.lex_state = 12, .external_lex_state = 2}, + [484] = {.lex_state = 5, .external_lex_state = 2}, + [485] = {.lex_state = 11, .external_lex_state = 2}, + [486] = {.lex_state = 5, .external_lex_state = 2}, + [487] = {.lex_state = 11, .external_lex_state = 2}, + [488] = {.lex_state = 11, .external_lex_state = 2}, + [489] = {.lex_state = 11, .external_lex_state = 2}, + [490] = {.lex_state = 11, .external_lex_state = 2}, + [491] = {.lex_state = 11, .external_lex_state = 2}, + [492] = {.lex_state = 11, .external_lex_state = 2}, + [493] = {.lex_state = 11, .external_lex_state = 2}, + [494] = {.lex_state = 11, .external_lex_state = 2}, + [495] = {.lex_state = 11, .external_lex_state = 2}, + [496] = {.lex_state = 11, .external_lex_state = 2}, [497] = {.lex_state = 11, .external_lex_state = 2}, [498] = {.lex_state = 11, .external_lex_state = 2}, [499] = {.lex_state = 11, .external_lex_state = 2}, - [500] = {.lex_state = 11, .external_lex_state = 2}, - [501] = {.lex_state = 5, .external_lex_state = 2}, + [500] = {.lex_state = 5, .external_lex_state = 2}, + [501] = {.lex_state = 11, .external_lex_state = 2}, [502] = {.lex_state = 11, .external_lex_state = 2}, [503] = {.lex_state = 11, .external_lex_state = 2}, [504] = {.lex_state = 11, .external_lex_state = 2}, - [505] = {.lex_state = 11, .external_lex_state = 2}, - [506] = {.lex_state = 11, .external_lex_state = 2}, - [507] = {.lex_state = 11, .external_lex_state = 2}, - [508] = {.lex_state = 11, .external_lex_state = 2}, - [509] = {.lex_state = 11, .external_lex_state = 2}, - [510] = {.lex_state = 11, .external_lex_state = 2}, - [511] = {.lex_state = 11, .external_lex_state = 2}, - [512] = {.lex_state = 11, .external_lex_state = 2}, - [513] = {.lex_state = 5, .external_lex_state = 2}, + [505] = {.lex_state = 12, .external_lex_state = 2}, + [506] = {.lex_state = 12, .external_lex_state = 2}, + [507] = {.lex_state = 12, .external_lex_state = 2}, + [508] = {.lex_state = 12, .external_lex_state = 2}, + [509] = {.lex_state = 12, .external_lex_state = 2}, + [510] = {.lex_state = 12, .external_lex_state = 2}, + [511] = {.lex_state = 12, .external_lex_state = 2}, + [512] = {.lex_state = 12, .external_lex_state = 2}, + [513] = {.lex_state = 12, .external_lex_state = 2}, [514] = {.lex_state = 12, .external_lex_state = 2}, [515] = {.lex_state = 11, .external_lex_state = 2}, - [516] = {.lex_state = 11, .external_lex_state = 2}, + [516] = {.lex_state = 12, .external_lex_state = 2}, [517] = {.lex_state = 12, .external_lex_state = 2}, [518] = {.lex_state = 12, .external_lex_state = 2}, [519] = {.lex_state = 12, .external_lex_state = 2}, [520] = {.lex_state = 12, .external_lex_state = 2}, - [521] = {.lex_state = 11, .external_lex_state = 2}, + [521] = {.lex_state = 12, .external_lex_state = 2}, [522] = {.lex_state = 11, .external_lex_state = 2}, [523] = {.lex_state = 12, .external_lex_state = 2}, [524] = {.lex_state = 11, .external_lex_state = 2}, - [525] = {.lex_state = 11, .external_lex_state = 2}, - [526] = {.lex_state = 12, .external_lex_state = 2}, - [527] = {.lex_state = 11, .external_lex_state = 2}, + [525] = {.lex_state = 12, .external_lex_state = 2}, + [526] = {.lex_state = 11, .external_lex_state = 2}, + [527] = {.lex_state = 12, .external_lex_state = 2}, [528] = {.lex_state = 12, .external_lex_state = 2}, [529] = {.lex_state = 12, .external_lex_state = 2}, [530] = {.lex_state = 12, .external_lex_state = 2}, [531] = {.lex_state = 12, .external_lex_state = 2}, - [532] = {.lex_state = 11, .external_lex_state = 2}, - [533] = {.lex_state = 11, .external_lex_state = 2}, + [532] = {.lex_state = 12, .external_lex_state = 2}, + [533] = {.lex_state = 12, .external_lex_state = 2}, [534] = {.lex_state = 12, .external_lex_state = 2}, [535] = {.lex_state = 12, .external_lex_state = 2}, - [536] = {.lex_state = 12, .external_lex_state = 2}, + [536] = {.lex_state = 11, .external_lex_state = 2}, [537] = {.lex_state = 12, .external_lex_state = 2}, [538] = {.lex_state = 11, .external_lex_state = 2}, - [539] = {.lex_state = 12, .external_lex_state = 2}, - [540] = {.lex_state = 12, .external_lex_state = 2}, - [541] = {.lex_state = 12, .external_lex_state = 2}, + [539] = {.lex_state = 11, .external_lex_state = 2}, + [540] = {.lex_state = 11, .external_lex_state = 2}, + [541] = {.lex_state = 11, .external_lex_state = 2}, [542] = {.lex_state = 12, .external_lex_state = 2}, - [543] = {.lex_state = 12, .external_lex_state = 2}, + [543] = {.lex_state = 11, .external_lex_state = 2}, [544] = {.lex_state = 12, .external_lex_state = 2}, - [545] = {.lex_state = 11, .external_lex_state = 2}, - [546] = {.lex_state = 12, .external_lex_state = 2}, - [547] = {.lex_state = 12, .external_lex_state = 2}, - [548] = {.lex_state = 12, .external_lex_state = 2}, - [549] = {.lex_state = 12, .external_lex_state = 2}, - [550] = {.lex_state = 11, .external_lex_state = 2}, - [551] = {.lex_state = 12, .external_lex_state = 2}, - [552] = {.lex_state = 12, .external_lex_state = 2}, - [553] = {.lex_state = 11, .external_lex_state = 2}, - [554] = {.lex_state = 12, .external_lex_state = 2}, - [555] = {.lex_state = 12, .external_lex_state = 2}, - [556] = {.lex_state = 11, .external_lex_state = 2}, - [557] = {.lex_state = 12, .external_lex_state = 2}, - [558] = {.lex_state = 5, .external_lex_state = 2}, - [559] = {.lex_state = 4, .external_lex_state = 3}, + [545] = {.lex_state = 5, .external_lex_state = 2}, + [546] = {.lex_state = 5, .external_lex_state = 2}, + [547] = {.lex_state = 4, .external_lex_state = 3}, + [548] = {.lex_state = 4, .external_lex_state = 3}, + [549] = {.lex_state = 4, .external_lex_state = 3}, + [550] = {.lex_state = 4, .external_lex_state = 3}, + [551] = {.lex_state = 4, .external_lex_state = 3}, + [552] = {.lex_state = 4, .external_lex_state = 3}, + [553] = {.lex_state = 4, .external_lex_state = 3}, + [554] = {.lex_state = 4, .external_lex_state = 3}, + [555] = {.lex_state = 5, .external_lex_state = 2}, + [556] = {.lex_state = 5, .external_lex_state = 2}, + [557] = {.lex_state = 4, .external_lex_state = 3}, + [558] = {.lex_state = 4, .external_lex_state = 3}, + [559] = {.lex_state = 5, .external_lex_state = 2}, [560] = {.lex_state = 5, .external_lex_state = 2}, - [561] = {.lex_state = 4, .external_lex_state = 3}, - [562] = {.lex_state = 4, .external_lex_state = 3}, - [563] = {.lex_state = 4, .external_lex_state = 3}, - [564] = {.lex_state = 4, .external_lex_state = 3}, - [565] = {.lex_state = 4, .external_lex_state = 3}, - [566] = {.lex_state = 4, .external_lex_state = 3}, - [567] = {.lex_state = 5, .external_lex_state = 2}, - [568] = {.lex_state = 5, .external_lex_state = 2}, - [569] = {.lex_state = 4, .external_lex_state = 3}, - [570] = {.lex_state = 10, .external_lex_state = 2}, - [571] = {.lex_state = 4, .external_lex_state = 3}, - [572] = {.lex_state = 5, .external_lex_state = 2}, - [573] = {.lex_state = 4, .external_lex_state = 3}, - [574] = {.lex_state = 5, .external_lex_state = 2}, + [561] = {.lex_state = 10, .external_lex_state = 2}, + [562] = {.lex_state = 11, .external_lex_state = 2}, + [563] = {.lex_state = 5, .external_lex_state = 2}, + [564] = {.lex_state = 11, .external_lex_state = 2}, + [565] = {.lex_state = 5, .external_lex_state = 2}, + [566] = {.lex_state = 11, .external_lex_state = 2}, + [567] = {.lex_state = 11, .external_lex_state = 2}, + [568] = {.lex_state = 11, .external_lex_state = 2}, + [569] = {.lex_state = 11, .external_lex_state = 2}, + [570] = {.lex_state = 11, .external_lex_state = 2}, + [571] = {.lex_state = 11, .external_lex_state = 2}, + [572] = {.lex_state = 11, .external_lex_state = 2}, + [573] = {.lex_state = 5, .external_lex_state = 2}, + [574] = {.lex_state = 11, .external_lex_state = 2}, [575] = {.lex_state = 5, .external_lex_state = 2}, - [576] = {.lex_state = 11, .external_lex_state = 2}, + [576] = {.lex_state = 5, .external_lex_state = 2}, [577] = {.lex_state = 11, .external_lex_state = 2}, - [578] = {.lex_state = 5, .external_lex_state = 2}, - [579] = {.lex_state = 5, .external_lex_state = 2}, + [578] = {.lex_state = 11, .external_lex_state = 2}, + [579] = {.lex_state = 11, .external_lex_state = 2}, [580] = {.lex_state = 11, .external_lex_state = 2}, [581] = {.lex_state = 11, .external_lex_state = 2}, [582] = {.lex_state = 11, .external_lex_state = 2}, [583] = {.lex_state = 5, .external_lex_state = 2}, - [584] = {.lex_state = 5, .external_lex_state = 2}, - [585] = {.lex_state = 11, .external_lex_state = 2}, + [584] = {.lex_state = 4, .external_lex_state = 3}, + [585] = {.lex_state = 5, .external_lex_state = 2}, [586] = {.lex_state = 5, .external_lex_state = 2}, [587] = {.lex_state = 5, .external_lex_state = 2}, - [588] = {.lex_state = 11, .external_lex_state = 2}, - [589] = {.lex_state = 11, .external_lex_state = 2}, + [588] = {.lex_state = 12, .external_lex_state = 2}, + [589] = {.lex_state = 5, .external_lex_state = 2}, [590] = {.lex_state = 4, .external_lex_state = 3}, - [591] = {.lex_state = 11, .external_lex_state = 2}, - [592] = {.lex_state = 11, .external_lex_state = 2}, - [593] = {.lex_state = 11, .external_lex_state = 2}, - [594] = {.lex_state = 11, .external_lex_state = 2}, - [595] = {.lex_state = 11, .external_lex_state = 2}, - [596] = {.lex_state = 11, .external_lex_state = 2}, - [597] = {.lex_state = 11, .external_lex_state = 2}, - [598] = {.lex_state = 11, .external_lex_state = 2}, + [591] = {.lex_state = 4, .external_lex_state = 3}, + [592] = {.lex_state = 4, .external_lex_state = 3}, + [593] = {.lex_state = 5, .external_lex_state = 2}, + [594] = {.lex_state = 5, .external_lex_state = 2}, + [595] = {.lex_state = 12, .external_lex_state = 2}, + [596] = {.lex_state = 5, .external_lex_state = 2}, + [597] = {.lex_state = 5, .external_lex_state = 2}, + [598] = {.lex_state = 12, .external_lex_state = 2}, [599] = {.lex_state = 5, .external_lex_state = 2}, [600] = {.lex_state = 5, .external_lex_state = 2}, [601] = {.lex_state = 5, .external_lex_state = 2}, - [602] = {.lex_state = 4, .external_lex_state = 3}, + [602] = {.lex_state = 5, .external_lex_state = 2}, [603] = {.lex_state = 5, .external_lex_state = 2}, - [604] = {.lex_state = 4, .external_lex_state = 3}, + [604] = {.lex_state = 5, .external_lex_state = 2}, [605] = {.lex_state = 5, .external_lex_state = 2}, - [606] = {.lex_state = 12, .external_lex_state = 2}, - [607] = {.lex_state = 5, .external_lex_state = 2}, - [608] = {.lex_state = 5, .external_lex_state = 2}, + [606] = {.lex_state = 5, .external_lex_state = 2}, + [607] = {.lex_state = 12, .external_lex_state = 2}, + [608] = {.lex_state = 12, .external_lex_state = 2}, [609] = {.lex_state = 5, .external_lex_state = 2}, - [610] = {.lex_state = 5, .external_lex_state = 2}, + [610] = {.lex_state = 12, .external_lex_state = 2}, [611] = {.lex_state = 5, .external_lex_state = 2}, [612] = {.lex_state = 5, .external_lex_state = 2}, [613] = {.lex_state = 5, .external_lex_state = 2}, [614] = {.lex_state = 5, .external_lex_state = 2}, - [615] = {.lex_state = 12, .external_lex_state = 2}, + [615] = {.lex_state = 5, .external_lex_state = 2}, [616] = {.lex_state = 5, .external_lex_state = 2}, - [617] = {.lex_state = 12, .external_lex_state = 2}, - [618] = {.lex_state = 12, .external_lex_state = 2}, + [617] = {.lex_state = 4, .external_lex_state = 3}, + [618] = {.lex_state = 5, .external_lex_state = 2}, [619] = {.lex_state = 5, .external_lex_state = 2}, - [620] = {.lex_state = 5, .external_lex_state = 2}, + [620] = {.lex_state = 4, .external_lex_state = 3}, [621] = {.lex_state = 5, .external_lex_state = 2}, [622] = {.lex_state = 4, .external_lex_state = 3}, [623] = {.lex_state = 4, .external_lex_state = 3}, - [624] = {.lex_state = 12, .external_lex_state = 2}, - [625] = {.lex_state = 5, .external_lex_state = 2}, - [626] = {.lex_state = 5, .external_lex_state = 2}, - [627] = {.lex_state = 5, .external_lex_state = 2}, - [628] = {.lex_state = 5, .external_lex_state = 2}, - [629] = {.lex_state = 5, .external_lex_state = 2}, - [630] = {.lex_state = 5, .external_lex_state = 2}, - [631] = {.lex_state = 5, .external_lex_state = 2}, - [632] = {.lex_state = 5, .external_lex_state = 2}, - [633] = {.lex_state = 5, .external_lex_state = 2}, - [634] = {.lex_state = 5, .external_lex_state = 2}, - [635] = {.lex_state = 5, .external_lex_state = 2}, - [636] = {.lex_state = 12, .external_lex_state = 2}, - [637] = {.lex_state = 5, .external_lex_state = 2}, - [638] = {.lex_state = 5, .external_lex_state = 2}, - [639] = {.lex_state = 5, .external_lex_state = 2}, - [640] = {.lex_state = 5, .external_lex_state = 2}, + [624] = {.lex_state = 4, .external_lex_state = 3}, + [625] = {.lex_state = 4, .external_lex_state = 3}, + [626] = {.lex_state = 4, .external_lex_state = 3}, + [627] = {.lex_state = 4, .external_lex_state = 3}, + [628] = {.lex_state = 4, .external_lex_state = 3}, + [629] = {.lex_state = 4, .external_lex_state = 3}, + [630] = {.lex_state = 4, .external_lex_state = 3}, + [631] = {.lex_state = 4, .external_lex_state = 3}, + [632] = {.lex_state = 4, .external_lex_state = 3}, + [633] = {.lex_state = 4, .external_lex_state = 3}, + [634] = {.lex_state = 4, .external_lex_state = 3}, + [635] = {.lex_state = 4, .external_lex_state = 3}, + [636] = {.lex_state = 4, .external_lex_state = 3}, + [637] = {.lex_state = 4, .external_lex_state = 3}, + [638] = {.lex_state = 4, .external_lex_state = 3}, + [639] = {.lex_state = 4, .external_lex_state = 3}, + [640] = {.lex_state = 4, .external_lex_state = 3}, [641] = {.lex_state = 4, .external_lex_state = 3}, [642] = {.lex_state = 4, .external_lex_state = 3}, [643] = {.lex_state = 4, .external_lex_state = 3}, @@ -14082,7 +14068,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [726] = {.lex_state = 4, .external_lex_state = 3}, [727] = {.lex_state = 4, .external_lex_state = 3}, [728] = {.lex_state = 4, .external_lex_state = 3}, - [729] = {.lex_state = 4, .external_lex_state = 3}, + [729] = {.lex_state = 5, .external_lex_state = 2}, [730] = {.lex_state = 4, .external_lex_state = 3}, [731] = {.lex_state = 4, .external_lex_state = 3}, [732] = {.lex_state = 4, .external_lex_state = 3}, @@ -14091,7 +14077,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [735] = {.lex_state = 4, .external_lex_state = 3}, [736] = {.lex_state = 4, .external_lex_state = 3}, [737] = {.lex_state = 4, .external_lex_state = 3}, - [738] = {.lex_state = 5, .external_lex_state = 2}, + [738] = {.lex_state = 4, .external_lex_state = 3}, [739] = {.lex_state = 4, .external_lex_state = 3}, [740] = {.lex_state = 4, .external_lex_state = 3}, [741] = {.lex_state = 4, .external_lex_state = 3}, @@ -14102,95 +14088,95 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [746] = {.lex_state = 4, .external_lex_state = 3}, [747] = {.lex_state = 4, .external_lex_state = 3}, [748] = {.lex_state = 4, .external_lex_state = 3}, - [749] = {.lex_state = 4, .external_lex_state = 3}, - [750] = {.lex_state = 4, .external_lex_state = 3}, - [751] = {.lex_state = 4, .external_lex_state = 3}, - [752] = {.lex_state = 4, .external_lex_state = 3}, - [753] = {.lex_state = 4, .external_lex_state = 3}, - [754] = {.lex_state = 4, .external_lex_state = 3}, - [755] = {.lex_state = 4, .external_lex_state = 3}, - [756] = {.lex_state = 4, .external_lex_state = 3}, - [757] = {.lex_state = 4, .external_lex_state = 3}, - [758] = {.lex_state = 4, .external_lex_state = 3}, - [759] = {.lex_state = 4, .external_lex_state = 3}, - [760] = {.lex_state = 4, .external_lex_state = 3}, - [761] = {.lex_state = 4, .external_lex_state = 3}, - [762] = {.lex_state = 4, .external_lex_state = 3}, - [763] = {.lex_state = 4, .external_lex_state = 3}, - [764] = {.lex_state = 4, .external_lex_state = 3}, - [765] = {.lex_state = 4, .external_lex_state = 3}, - [766] = {.lex_state = 4, .external_lex_state = 3}, - [767] = {.lex_state = 4, .external_lex_state = 3}, - [768] = {.lex_state = 4, .external_lex_state = 3}, - [769] = {.lex_state = 5, .external_lex_state = 2}, - [770] = {.lex_state = 5, .external_lex_state = 2}, - [771] = {.lex_state = 5, .external_lex_state = 2}, - [772] = {.lex_state = 5, .external_lex_state = 2}, - [773] = {.lex_state = 6, .external_lex_state = 2}, - [774] = {.lex_state = 3, .external_lex_state = 3}, - [775] = {.lex_state = 3, .external_lex_state = 3}, - [776] = {.lex_state = 3, .external_lex_state = 3}, - [777] = {.lex_state = 3, .external_lex_state = 3}, - [778] = {.lex_state = 3, .external_lex_state = 3}, - [779] = {.lex_state = 3, .external_lex_state = 3}, - [780] = {.lex_state = 3, .external_lex_state = 3}, + [749] = {.lex_state = 5, .external_lex_state = 2}, + [750] = {.lex_state = 5, .external_lex_state = 2}, + [751] = {.lex_state = 5, .external_lex_state = 2}, + [752] = {.lex_state = 5, .external_lex_state = 2}, + [753] = {.lex_state = 6, .external_lex_state = 2}, + [754] = {.lex_state = 3, .external_lex_state = 3}, + [755] = {.lex_state = 3, .external_lex_state = 3}, + [756] = {.lex_state = 3, .external_lex_state = 3}, + [757] = {.lex_state = 14, .external_lex_state = 3}, + [758] = {.lex_state = 2, .external_lex_state = 3}, + [759] = {.lex_state = 3, .external_lex_state = 3}, + [760] = {.lex_state = 2, .external_lex_state = 3}, + [761] = {.lex_state = 14, .external_lex_state = 3}, + [762] = {.lex_state = 3, .external_lex_state = 3}, + [763] = {.lex_state = 3, .external_lex_state = 3}, + [764] = {.lex_state = 3, .external_lex_state = 3}, + [765] = {.lex_state = 3, .external_lex_state = 3}, + [766] = {.lex_state = 14, .external_lex_state = 3}, + [767] = {.lex_state = 3, .external_lex_state = 3}, + [768] = {.lex_state = 14, .external_lex_state = 3}, + [769] = {.lex_state = 3, .external_lex_state = 3}, + [770] = {.lex_state = 14, .external_lex_state = 3}, + [771] = {.lex_state = 2, .external_lex_state = 3}, + [772] = {.lex_state = 2, .external_lex_state = 3}, + [773] = {.lex_state = 2, .external_lex_state = 3}, + [774] = {.lex_state = 2, .external_lex_state = 3}, + [775] = {.lex_state = 2, .external_lex_state = 3}, + [776] = {.lex_state = 2, .external_lex_state = 3}, + [777] = {.lex_state = 2, .external_lex_state = 3}, + [778] = {.lex_state = 2, .external_lex_state = 3}, + [779] = {.lex_state = 14, .external_lex_state = 3}, + [780] = {.lex_state = 14, .external_lex_state = 3}, [781] = {.lex_state = 14, .external_lex_state = 3}, [782] = {.lex_state = 14, .external_lex_state = 3}, - [783] = {.lex_state = 2, .external_lex_state = 3}, - [784] = {.lex_state = 3, .external_lex_state = 3}, - [785] = {.lex_state = 3, .external_lex_state = 3}, - [786] = {.lex_state = 14, .external_lex_state = 3}, - [787] = {.lex_state = 3, .external_lex_state = 3}, + [783] = {.lex_state = 14, .external_lex_state = 3}, + [784] = {.lex_state = 14, .external_lex_state = 3}, + [785] = {.lex_state = 2, .external_lex_state = 3}, + [786] = {.lex_state = 9, .external_lex_state = 3}, + [787] = {.lex_state = 14, .external_lex_state = 3}, [788] = {.lex_state = 14, .external_lex_state = 3}, - [789] = {.lex_state = 2, .external_lex_state = 3}, - [790] = {.lex_state = 14, .external_lex_state = 3}, - [791] = {.lex_state = 2, .external_lex_state = 3}, + [789] = {.lex_state = 14, .external_lex_state = 3}, + [790] = {.lex_state = 2, .external_lex_state = 3}, + [791] = {.lex_state = 14, .external_lex_state = 3}, [792] = {.lex_state = 2, .external_lex_state = 3}, - [793] = {.lex_state = 2, .external_lex_state = 3}, - [794] = {.lex_state = 2, .external_lex_state = 3}, - [795] = {.lex_state = 2, .external_lex_state = 3}, - [796] = {.lex_state = 2, .external_lex_state = 3}, - [797] = {.lex_state = 2, .external_lex_state = 3}, - [798] = {.lex_state = 2, .external_lex_state = 3}, + [793] = {.lex_state = 14, .external_lex_state = 3}, + [794] = {.lex_state = 14, .external_lex_state = 3}, + [795] = {.lex_state = 14, .external_lex_state = 3}, + [796] = {.lex_state = 14, .external_lex_state = 3}, + [797] = {.lex_state = 14, .external_lex_state = 3}, + [798] = {.lex_state = 14, .external_lex_state = 3}, [799] = {.lex_state = 14, .external_lex_state = 3}, [800] = {.lex_state = 14, .external_lex_state = 3}, - [801] = {.lex_state = 2, .external_lex_state = 3}, + [801] = {.lex_state = 14, .external_lex_state = 3}, [802] = {.lex_state = 2, .external_lex_state = 3}, - [803] = {.lex_state = 2, .external_lex_state = 3}, + [803] = {.lex_state = 14, .external_lex_state = 3}, [804] = {.lex_state = 14, .external_lex_state = 3}, [805] = {.lex_state = 14, .external_lex_state = 3}, - [806] = {.lex_state = 9, .external_lex_state = 3}, - [807] = {.lex_state = 2, .external_lex_state = 3}, + [806] = {.lex_state = 14, .external_lex_state = 3}, + [807] = {.lex_state = 14, .external_lex_state = 3}, [808] = {.lex_state = 14, .external_lex_state = 3}, [809] = {.lex_state = 14, .external_lex_state = 3}, [810] = {.lex_state = 14, .external_lex_state = 3}, - [811] = {.lex_state = 14, .external_lex_state = 3}, - [812] = {.lex_state = 14, .external_lex_state = 3}, - [813] = {.lex_state = 14, .external_lex_state = 3}, + [811] = {.lex_state = 2, .external_lex_state = 3}, + [812] = {.lex_state = 2, .external_lex_state = 3}, + [813] = {.lex_state = 2, .external_lex_state = 3}, [814] = {.lex_state = 14, .external_lex_state = 3}, [815] = {.lex_state = 14, .external_lex_state = 3}, - [816] = {.lex_state = 14, .external_lex_state = 3}, + [816] = {.lex_state = 2, .external_lex_state = 3}, [817] = {.lex_state = 14, .external_lex_state = 3}, [818] = {.lex_state = 14, .external_lex_state = 3}, [819] = {.lex_state = 14, .external_lex_state = 3}, [820] = {.lex_state = 14, .external_lex_state = 3}, [821] = {.lex_state = 14, .external_lex_state = 3}, [822] = {.lex_state = 14, .external_lex_state = 3}, - [823] = {.lex_state = 2, .external_lex_state = 3}, - [824] = {.lex_state = 14, .external_lex_state = 3}, - [825] = {.lex_state = 2, .external_lex_state = 3}, + [823] = {.lex_state = 14, .external_lex_state = 3}, + [824] = {.lex_state = 2, .external_lex_state = 3}, + [825] = {.lex_state = 14, .external_lex_state = 3}, [826] = {.lex_state = 14, .external_lex_state = 3}, - [827] = {.lex_state = 2, .external_lex_state = 3}, + [827] = {.lex_state = 14, .external_lex_state = 3}, [828] = {.lex_state = 14, .external_lex_state = 3}, - [829] = {.lex_state = 2, .external_lex_state = 3}, - [830] = {.lex_state = 2, .external_lex_state = 3}, - [831] = {.lex_state = 2, .external_lex_state = 3}, - [832] = {.lex_state = 14, .external_lex_state = 3}, + [829] = {.lex_state = 14, .external_lex_state = 3}, + [830] = {.lex_state = 14, .external_lex_state = 3}, + [831] = {.lex_state = 14, .external_lex_state = 3}, + [832] = {.lex_state = 2, .external_lex_state = 3}, [833] = {.lex_state = 14, .external_lex_state = 3}, [834] = {.lex_state = 14, .external_lex_state = 3}, [835] = {.lex_state = 14, .external_lex_state = 3}, [836] = {.lex_state = 14, .external_lex_state = 3}, - [837] = {.lex_state = 14, .external_lex_state = 3}, + [837] = {.lex_state = 2, .external_lex_state = 3}, [838] = {.lex_state = 14, .external_lex_state = 3}, [839] = {.lex_state = 14, .external_lex_state = 3}, [840] = {.lex_state = 14, .external_lex_state = 3}, @@ -14198,7 +14184,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [842] = {.lex_state = 14, .external_lex_state = 3}, [843] = {.lex_state = 14, .external_lex_state = 3}, [844] = {.lex_state = 14, .external_lex_state = 3}, - [845] = {.lex_state = 2, .external_lex_state = 3}, + [845] = {.lex_state = 14, .external_lex_state = 3}, [846] = {.lex_state = 14, .external_lex_state = 3}, [847] = {.lex_state = 14, .external_lex_state = 3}, [848] = {.lex_state = 14, .external_lex_state = 3}, @@ -14221,16 +14207,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [865] = {.lex_state = 14, .external_lex_state = 3}, [866] = {.lex_state = 14, .external_lex_state = 3}, [867] = {.lex_state = 14, .external_lex_state = 3}, - [868] = {.lex_state = 14, .external_lex_state = 3}, - [869] = {.lex_state = 14, .external_lex_state = 3}, + [868] = {.lex_state = 2, .external_lex_state = 3}, + [869] = {.lex_state = 2, .external_lex_state = 3}, [870] = {.lex_state = 14, .external_lex_state = 3}, [871] = {.lex_state = 14, .external_lex_state = 3}, [872] = {.lex_state = 14, .external_lex_state = 3}, [873] = {.lex_state = 14, .external_lex_state = 3}, [874] = {.lex_state = 14, .external_lex_state = 3}, - [875] = {.lex_state = 14, .external_lex_state = 3}, + [875] = {.lex_state = 2, .external_lex_state = 3}, [876] = {.lex_state = 14, .external_lex_state = 3}, - [877] = {.lex_state = 14, .external_lex_state = 3}, + [877] = {.lex_state = 2, .external_lex_state = 3}, [878] = {.lex_state = 14, .external_lex_state = 3}, [879] = {.lex_state = 14, .external_lex_state = 3}, [880] = {.lex_state = 14, .external_lex_state = 3}, @@ -14262,37 +14248,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [906] = {.lex_state = 14, .external_lex_state = 3}, [907] = {.lex_state = 14, .external_lex_state = 3}, [908] = {.lex_state = 14, .external_lex_state = 3}, - [909] = {.lex_state = 2, .external_lex_state = 3}, - [910] = {.lex_state = 2, .external_lex_state = 3}, - [911] = {.lex_state = 2, .external_lex_state = 3}, - [912] = {.lex_state = 14, .external_lex_state = 3}, + [909] = {.lex_state = 14, .external_lex_state = 3}, + [910] = {.lex_state = 14, .external_lex_state = 3}, + [911] = {.lex_state = 14, .external_lex_state = 3}, + [912] = {.lex_state = 2, .external_lex_state = 3}, [913] = {.lex_state = 14, .external_lex_state = 3}, [914] = {.lex_state = 14, .external_lex_state = 3}, - [915] = {.lex_state = 14, .external_lex_state = 3}, + [915] = {.lex_state = 2, .external_lex_state = 3}, [916] = {.lex_state = 14, .external_lex_state = 3}, [917] = {.lex_state = 14, .external_lex_state = 3}, - [918] = {.lex_state = 14, .external_lex_state = 3}, + [918] = {.lex_state = 2, .external_lex_state = 3}, [919] = {.lex_state = 14, .external_lex_state = 3}, - [920] = {.lex_state = 2, .external_lex_state = 3}, + [920] = {.lex_state = 14, .external_lex_state = 3}, [921] = {.lex_state = 14, .external_lex_state = 3}, [922] = {.lex_state = 14, .external_lex_state = 3}, [923] = {.lex_state = 14, .external_lex_state = 3}, - [924] = {.lex_state = 2, .external_lex_state = 3}, - [925] = {.lex_state = 2, .external_lex_state = 3}, - [926] = {.lex_state = 14, .external_lex_state = 3}, + [924] = {.lex_state = 14, .external_lex_state = 3}, + [925] = {.lex_state = 14, .external_lex_state = 3}, + [926] = {.lex_state = 2, .external_lex_state = 3}, [927] = {.lex_state = 14, .external_lex_state = 3}, [928] = {.lex_state = 14, .external_lex_state = 3}, [929] = {.lex_state = 14, .external_lex_state = 3}, [930] = {.lex_state = 14, .external_lex_state = 3}, [931] = {.lex_state = 14, .external_lex_state = 3}, - [932] = {.lex_state = 2, .external_lex_state = 3}, - [933] = {.lex_state = 2, .external_lex_state = 3}, + [932] = {.lex_state = 14, .external_lex_state = 3}, + [933] = {.lex_state = 14, .external_lex_state = 3}, [934] = {.lex_state = 14, .external_lex_state = 3}, [935] = {.lex_state = 14, .external_lex_state = 3}, [936] = {.lex_state = 14, .external_lex_state = 3}, - [937] = {.lex_state = 2, .external_lex_state = 3}, + [937] = {.lex_state = 14, .external_lex_state = 3}, [938] = {.lex_state = 14, .external_lex_state = 3}, - [939] = {.lex_state = 3, .external_lex_state = 3}, + [939] = {.lex_state = 14, .external_lex_state = 3}, [940] = {.lex_state = 14, .external_lex_state = 3}, [941] = {.lex_state = 14, .external_lex_state = 3}, [942] = {.lex_state = 14, .external_lex_state = 3}, @@ -14305,23 +14291,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [949] = {.lex_state = 14, .external_lex_state = 3}, [950] = {.lex_state = 14, .external_lex_state = 3}, [951] = {.lex_state = 14, .external_lex_state = 3}, - [952] = {.lex_state = 2, .external_lex_state = 3}, + [952] = {.lex_state = 14, .external_lex_state = 3}, [953] = {.lex_state = 14, .external_lex_state = 3}, [954] = {.lex_state = 14, .external_lex_state = 3}, [955] = {.lex_state = 14, .external_lex_state = 3}, - [956] = {.lex_state = 2, .external_lex_state = 3}, + [956] = {.lex_state = 14, .external_lex_state = 3}, [957] = {.lex_state = 14, .external_lex_state = 3}, [958] = {.lex_state = 14, .external_lex_state = 3}, [959] = {.lex_state = 14, .external_lex_state = 3}, - [960] = {.lex_state = 14, .external_lex_state = 3}, + [960] = {.lex_state = 2, .external_lex_state = 3}, [961] = {.lex_state = 14, .external_lex_state = 3}, - [962] = {.lex_state = 14, .external_lex_state = 3}, + [962] = {.lex_state = 2, .external_lex_state = 3}, [963] = {.lex_state = 14, .external_lex_state = 3}, [964] = {.lex_state = 14, .external_lex_state = 3}, - [965] = {.lex_state = 2, .external_lex_state = 3}, - [966] = {.lex_state = 14, .external_lex_state = 3}, + [965] = {.lex_state = 14, .external_lex_state = 3}, + [966] = {.lex_state = 2, .external_lex_state = 3}, [967] = {.lex_state = 14, .external_lex_state = 3}, - [968] = {.lex_state = 14, .external_lex_state = 3}, + [968] = {.lex_state = 2, .external_lex_state = 3}, [969] = {.lex_state = 14, .external_lex_state = 3}, [970] = {.lex_state = 14, .external_lex_state = 3}, [971] = {.lex_state = 14, .external_lex_state = 3}, @@ -14336,35 +14322,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [980] = {.lex_state = 14, .external_lex_state = 3}, [981] = {.lex_state = 14, .external_lex_state = 3}, [982] = {.lex_state = 14, .external_lex_state = 3}, - [983] = {.lex_state = 14, .external_lex_state = 3}, + [983] = {.lex_state = 2, .external_lex_state = 3}, [984] = {.lex_state = 14, .external_lex_state = 3}, [985] = {.lex_state = 14, .external_lex_state = 3}, [986] = {.lex_state = 14, .external_lex_state = 3}, - [987] = {.lex_state = 14, .external_lex_state = 3}, + [987] = {.lex_state = 2, .external_lex_state = 3}, [988] = {.lex_state = 14, .external_lex_state = 3}, [989] = {.lex_state = 14, .external_lex_state = 3}, [990] = {.lex_state = 14, .external_lex_state = 3}, [991] = {.lex_state = 14, .external_lex_state = 3}, - [992] = {.lex_state = 14, .external_lex_state = 3}, - [993] = {.lex_state = 14, .external_lex_state = 3}, + [992] = {.lex_state = 2, .external_lex_state = 3}, + [993] = {.lex_state = 2, .external_lex_state = 3}, [994] = {.lex_state = 14, .external_lex_state = 3}, [995] = {.lex_state = 14, .external_lex_state = 3}, [996] = {.lex_state = 14, .external_lex_state = 3}, - [997] = {.lex_state = 14, .external_lex_state = 3}, + [997] = {.lex_state = 2, .external_lex_state = 3}, [998] = {.lex_state = 14, .external_lex_state = 3}, [999] = {.lex_state = 14, .external_lex_state = 3}, [1000] = {.lex_state = 14, .external_lex_state = 3}, - [1001] = {.lex_state = 14, .external_lex_state = 3}, + [1001] = {.lex_state = 2, .external_lex_state = 3}, [1002] = {.lex_state = 14, .external_lex_state = 3}, - [1003] = {.lex_state = 2, .external_lex_state = 3}, + [1003] = {.lex_state = 14, .external_lex_state = 3}, [1004] = {.lex_state = 14, .external_lex_state = 3}, [1005] = {.lex_state = 14, .external_lex_state = 3}, [1006] = {.lex_state = 14, .external_lex_state = 3}, - [1007] = {.lex_state = 2, .external_lex_state = 3}, - [1008] = {.lex_state = 14, .external_lex_state = 3}, + [1007] = {.lex_state = 14, .external_lex_state = 3}, + [1008] = {.lex_state = 2, .external_lex_state = 3}, [1009] = {.lex_state = 14, .external_lex_state = 3}, [1010] = {.lex_state = 14, .external_lex_state = 3}, - [1011] = {.lex_state = 2, .external_lex_state = 3}, + [1011] = {.lex_state = 14, .external_lex_state = 3}, [1012] = {.lex_state = 14, .external_lex_state = 3}, [1013] = {.lex_state = 14, .external_lex_state = 3}, [1014] = {.lex_state = 14, .external_lex_state = 3}, @@ -14378,40 +14364,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1022] = {.lex_state = 14, .external_lex_state = 3}, [1023] = {.lex_state = 14, .external_lex_state = 3}, [1024] = {.lex_state = 14, .external_lex_state = 3}, - [1025] = {.lex_state = 14, .external_lex_state = 3}, + [1025] = {.lex_state = 2, .external_lex_state = 3}, [1026] = {.lex_state = 14, .external_lex_state = 3}, - [1027] = {.lex_state = 14, .external_lex_state = 3}, - [1028] = {.lex_state = 2, .external_lex_state = 3}, + [1027] = {.lex_state = 2, .external_lex_state = 3}, + [1028] = {.lex_state = 14, .external_lex_state = 3}, [1029] = {.lex_state = 14, .external_lex_state = 3}, [1030] = {.lex_state = 14, .external_lex_state = 3}, - [1031] = {.lex_state = 14, .external_lex_state = 3}, + [1031] = {.lex_state = 3, .external_lex_state = 3}, [1032] = {.lex_state = 14, .external_lex_state = 3}, [1033] = {.lex_state = 14, .external_lex_state = 3}, [1034] = {.lex_state = 14, .external_lex_state = 3}, - [1035] = {.lex_state = 2, .external_lex_state = 3}, - [1036] = {.lex_state = 14, .external_lex_state = 3}, - [1037] = {.lex_state = 14, .external_lex_state = 3}, - [1038] = {.lex_state = 14, .external_lex_state = 3}, - [1039] = {.lex_state = 14, .external_lex_state = 3}, - [1040] = {.lex_state = 14, .external_lex_state = 3}, - [1041] = {.lex_state = 14, .external_lex_state = 3}, - [1042] = {.lex_state = 14, .external_lex_state = 3}, + [1035] = {.lex_state = 14, .external_lex_state = 3}, + [1036] = {.lex_state = 2, .external_lex_state = 3}, + [1037] = {.lex_state = 2, .external_lex_state = 3}, + [1038] = {.lex_state = 2, .external_lex_state = 3}, + [1039] = {.lex_state = 2, .external_lex_state = 3}, + [1040] = {.lex_state = 2, .external_lex_state = 3}, + [1041] = {.lex_state = 2, .external_lex_state = 3}, + [1042] = {.lex_state = 2, .external_lex_state = 3}, [1043] = {.lex_state = 2, .external_lex_state = 3}, - [1044] = {.lex_state = 14, .external_lex_state = 3}, - [1045] = {.lex_state = 14, .external_lex_state = 3}, - [1046] = {.lex_state = 14, .external_lex_state = 3}, - [1047] = {.lex_state = 14, .external_lex_state = 3}, - [1048] = {.lex_state = 2, .external_lex_state = 3}, - [1049] = {.lex_state = 14, .external_lex_state = 3}, + [1044] = {.lex_state = 2, .external_lex_state = 3}, + [1045] = {.lex_state = 2, .external_lex_state = 3}, + [1046] = {.lex_state = 2, .external_lex_state = 3}, + [1047] = {.lex_state = 2, .external_lex_state = 3}, + [1048] = {.lex_state = 4, .external_lex_state = 3}, + [1049] = {.lex_state = 4, .external_lex_state = 3}, [1050] = {.lex_state = 2, .external_lex_state = 3}, - [1051] = {.lex_state = 14, .external_lex_state = 3}, + [1051] = {.lex_state = 2, .external_lex_state = 3}, [1052] = {.lex_state = 2, .external_lex_state = 3}, - [1053] = {.lex_state = 14, .external_lex_state = 3}, + [1053] = {.lex_state = 2, .external_lex_state = 3}, [1054] = {.lex_state = 2, .external_lex_state = 3}, - [1055] = {.lex_state = 14, .external_lex_state = 3}, - [1056] = {.lex_state = 14, .external_lex_state = 3}, + [1055] = {.lex_state = 2, .external_lex_state = 3}, + [1056] = {.lex_state = 2, .external_lex_state = 3}, [1057] = {.lex_state = 2, .external_lex_state = 3}, - [1058] = {.lex_state = 2, .external_lex_state = 3}, + [1058] = {.lex_state = 4, .external_lex_state = 3}, [1059] = {.lex_state = 2, .external_lex_state = 3}, [1060] = {.lex_state = 2, .external_lex_state = 3}, [1061] = {.lex_state = 2, .external_lex_state = 3}, @@ -14425,7 +14411,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1069] = {.lex_state = 4, .external_lex_state = 3}, [1070] = {.lex_state = 2, .external_lex_state = 3}, [1071] = {.lex_state = 2, .external_lex_state = 3}, - [1072] = {.lex_state = 2, .external_lex_state = 3}, + [1072] = {.lex_state = 4, .external_lex_state = 3}, [1073] = {.lex_state = 2, .external_lex_state = 3}, [1074] = {.lex_state = 2, .external_lex_state = 3}, [1075] = {.lex_state = 2, .external_lex_state = 3}, @@ -14435,29 +14421,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1079] = {.lex_state = 2, .external_lex_state = 3}, [1080] = {.lex_state = 2, .external_lex_state = 3}, [1081] = {.lex_state = 2, .external_lex_state = 3}, - [1082] = {.lex_state = 2, .external_lex_state = 3}, + [1082] = {.lex_state = 5, .external_lex_state = 2}, [1083] = {.lex_state = 2, .external_lex_state = 3}, [1084] = {.lex_state = 2, .external_lex_state = 3}, [1085] = {.lex_state = 2, .external_lex_state = 3}, - [1086] = {.lex_state = 2, .external_lex_state = 3}, - [1087] = {.lex_state = 5, .external_lex_state = 2}, + [1086] = {.lex_state = 4, .external_lex_state = 3}, + [1087] = {.lex_state = 4, .external_lex_state = 3}, [1088] = {.lex_state = 2, .external_lex_state = 3}, [1089] = {.lex_state = 2, .external_lex_state = 3}, [1090] = {.lex_state = 2, .external_lex_state = 3}, [1091] = {.lex_state = 2, .external_lex_state = 3}, - [1092] = {.lex_state = 5, .external_lex_state = 2}, + [1092] = {.lex_state = 4, .external_lex_state = 3}, [1093] = {.lex_state = 2, .external_lex_state = 3}, [1094] = {.lex_state = 2, .external_lex_state = 3}, - [1095] = {.lex_state = 2, .external_lex_state = 3}, + [1095] = {.lex_state = 4, .external_lex_state = 3}, [1096] = {.lex_state = 2, .external_lex_state = 3}, - [1097] = {.lex_state = 4, .external_lex_state = 3}, - [1098] = {.lex_state = 4, .external_lex_state = 3}, + [1097] = {.lex_state = 2, .external_lex_state = 3}, + [1098] = {.lex_state = 2, .external_lex_state = 3}, [1099] = {.lex_state = 2, .external_lex_state = 3}, [1100] = {.lex_state = 2, .external_lex_state = 3}, [1101] = {.lex_state = 2, .external_lex_state = 3}, [1102] = {.lex_state = 2, .external_lex_state = 3}, [1103] = {.lex_state = 2, .external_lex_state = 3}, - [1104] = {.lex_state = 4, .external_lex_state = 3}, + [1104] = {.lex_state = 2, .external_lex_state = 3}, [1105] = {.lex_state = 2, .external_lex_state = 3}, [1106] = {.lex_state = 2, .external_lex_state = 3}, [1107] = {.lex_state = 2, .external_lex_state = 3}, @@ -14476,7 +14462,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1120] = {.lex_state = 2, .external_lex_state = 3}, [1121] = {.lex_state = 2, .external_lex_state = 3}, [1122] = {.lex_state = 2, .external_lex_state = 3}, - [1123] = {.lex_state = 2, .external_lex_state = 3}, + [1123] = {.lex_state = 5, .external_lex_state = 2}, [1124] = {.lex_state = 2, .external_lex_state = 3}, [1125] = {.lex_state = 2, .external_lex_state = 3}, [1126] = {.lex_state = 2, .external_lex_state = 3}, @@ -14487,9 +14473,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1131] = {.lex_state = 2, .external_lex_state = 3}, [1132] = {.lex_state = 2, .external_lex_state = 3}, [1133] = {.lex_state = 2, .external_lex_state = 3}, - [1134] = {.lex_state = 2, .external_lex_state = 3}, + [1134] = {.lex_state = 5, .external_lex_state = 2}, [1135] = {.lex_state = 2, .external_lex_state = 3}, - [1136] = {.lex_state = 2, .external_lex_state = 3}, + [1136] = {.lex_state = 5, .external_lex_state = 2}, [1137] = {.lex_state = 2, .external_lex_state = 3}, [1138] = {.lex_state = 2, .external_lex_state = 3}, [1139] = {.lex_state = 2, .external_lex_state = 3}, @@ -14497,78 +14483,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1141] = {.lex_state = 2, .external_lex_state = 3}, [1142] = {.lex_state = 2, .external_lex_state = 3}, [1143] = {.lex_state = 2, .external_lex_state = 3}, - [1144] = {.lex_state = 4, .external_lex_state = 3}, + [1144] = {.lex_state = 2, .external_lex_state = 3}, [1145] = {.lex_state = 2, .external_lex_state = 3}, [1146] = {.lex_state = 2, .external_lex_state = 3}, - [1147] = {.lex_state = 4, .external_lex_state = 3}, + [1147] = {.lex_state = 2, .external_lex_state = 3}, [1148] = {.lex_state = 2, .external_lex_state = 3}, - [1149] = {.lex_state = 4, .external_lex_state = 3}, + [1149] = {.lex_state = 2, .external_lex_state = 3}, [1150] = {.lex_state = 2, .external_lex_state = 3}, [1151] = {.lex_state = 2, .external_lex_state = 3}, - [1152] = {.lex_state = 4, .external_lex_state = 3}, + [1152] = {.lex_state = 2, .external_lex_state = 3}, [1153] = {.lex_state = 2, .external_lex_state = 3}, - [1154] = {.lex_state = 4, .external_lex_state = 3}, + [1154] = {.lex_state = 2, .external_lex_state = 3}, [1155] = {.lex_state = 2, .external_lex_state = 3}, - [1156] = {.lex_state = 2, .external_lex_state = 3}, - [1157] = {.lex_state = 2, .external_lex_state = 3}, - [1158] = {.lex_state = 2, .external_lex_state = 3}, - [1159] = {.lex_state = 2, .external_lex_state = 3}, - [1160] = {.lex_state = 2, .external_lex_state = 3}, - [1161] = {.lex_state = 5, .external_lex_state = 2}, - [1162] = {.lex_state = 2, .external_lex_state = 3}, - [1163] = {.lex_state = 2, .external_lex_state = 3}, - [1164] = {.lex_state = 2, .external_lex_state = 3}, + [1156] = {.lex_state = 5, .external_lex_state = 2}, + [1157] = {.lex_state = 4, .external_lex_state = 3}, + [1158] = {.lex_state = 4, .external_lex_state = 3}, + [1159] = {.lex_state = 4, .external_lex_state = 3}, + [1160] = {.lex_state = 4, .external_lex_state = 3}, + [1161] = {.lex_state = 4, .external_lex_state = 3}, + [1162] = {.lex_state = 4, .external_lex_state = 3}, + [1163] = {.lex_state = 4, .external_lex_state = 3}, + [1164] = {.lex_state = 4, .external_lex_state = 3}, [1165] = {.lex_state = 2, .external_lex_state = 3}, - [1166] = {.lex_state = 2, .external_lex_state = 3}, - [1167] = {.lex_state = 2, .external_lex_state = 3}, - [1168] = {.lex_state = 2, .external_lex_state = 3}, - [1169] = {.lex_state = 2, .external_lex_state = 3}, - [1170] = {.lex_state = 5, .external_lex_state = 2}, + [1166] = {.lex_state = 5, .external_lex_state = 2}, + [1167] = {.lex_state = 5, .external_lex_state = 2}, + [1168] = {.lex_state = 5, .external_lex_state = 2}, + [1169] = {.lex_state = 5, .external_lex_state = 2}, + [1170] = {.lex_state = 2, .external_lex_state = 3}, [1171] = {.lex_state = 2, .external_lex_state = 3}, - [1172] = {.lex_state = 2, .external_lex_state = 3}, - [1173] = {.lex_state = 2, .external_lex_state = 3}, + [1172] = {.lex_state = 4, .external_lex_state = 3}, + [1173] = {.lex_state = 4, .external_lex_state = 3}, [1174] = {.lex_state = 2, .external_lex_state = 3}, [1175] = {.lex_state = 2, .external_lex_state = 3}, - [1176] = {.lex_state = 2, .external_lex_state = 3}, + [1176] = {.lex_state = 5, .external_lex_state = 2}, [1177] = {.lex_state = 2, .external_lex_state = 3}, - [1178] = {.lex_state = 2, .external_lex_state = 3}, + [1178] = {.lex_state = 4, .external_lex_state = 3}, [1179] = {.lex_state = 2, .external_lex_state = 3}, - [1180] = {.lex_state = 5, .external_lex_state = 2}, + [1180] = {.lex_state = 4, .external_lex_state = 3}, [1181] = {.lex_state = 4, .external_lex_state = 3}, - [1182] = {.lex_state = 4, .external_lex_state = 3}, + [1182] = {.lex_state = 2, .external_lex_state = 3}, [1183] = {.lex_state = 4, .external_lex_state = 3}, - [1184] = {.lex_state = 4, .external_lex_state = 3}, - [1185] = {.lex_state = 4, .external_lex_state = 3}, + [1184] = {.lex_state = 2, .external_lex_state = 3}, + [1185] = {.lex_state = 2, .external_lex_state = 3}, [1186] = {.lex_state = 2, .external_lex_state = 3}, [1187] = {.lex_state = 4, .external_lex_state = 3}, - [1188] = {.lex_state = 4, .external_lex_state = 3}, - [1189] = {.lex_state = 4, .external_lex_state = 3}, - [1190] = {.lex_state = 2, .external_lex_state = 3}, - [1191] = {.lex_state = 5, .external_lex_state = 2}, - [1192] = {.lex_state = 5, .external_lex_state = 2}, - [1193] = {.lex_state = 5, .external_lex_state = 2}, - [1194] = {.lex_state = 5, .external_lex_state = 2}, + [1188] = {.lex_state = 2, .external_lex_state = 3}, + [1189] = {.lex_state = 2, .external_lex_state = 3}, + [1190] = {.lex_state = 4, .external_lex_state = 3}, + [1191] = {.lex_state = 4, .external_lex_state = 3}, + [1192] = {.lex_state = 2, .external_lex_state = 3}, + [1193] = {.lex_state = 2, .external_lex_state = 3}, + [1194] = {.lex_state = 2, .external_lex_state = 3}, [1195] = {.lex_state = 2, .external_lex_state = 3}, [1196] = {.lex_state = 2, .external_lex_state = 3}, [1197] = {.lex_state = 2, .external_lex_state = 3}, [1198] = {.lex_state = 2, .external_lex_state = 3}, - [1199] = {.lex_state = 4, .external_lex_state = 3}, - [1200] = {.lex_state = 4, .external_lex_state = 3}, - [1201] = {.lex_state = 4, .external_lex_state = 3}, + [1199] = {.lex_state = 2, .external_lex_state = 3}, + [1200] = {.lex_state = 2, .external_lex_state = 3}, + [1201] = {.lex_state = 2, .external_lex_state = 3}, [1202] = {.lex_state = 2, .external_lex_state = 3}, - [1203] = {.lex_state = 5, .external_lex_state = 2}, + [1203] = {.lex_state = 2, .external_lex_state = 3}, [1204] = {.lex_state = 2, .external_lex_state = 3}, - [1205] = {.lex_state = 4, .external_lex_state = 3}, + [1205] = {.lex_state = 2, .external_lex_state = 3}, [1206] = {.lex_state = 2, .external_lex_state = 3}, [1207] = {.lex_state = 2, .external_lex_state = 3}, - [1208] = {.lex_state = 4, .external_lex_state = 3}, + [1208] = {.lex_state = 2, .external_lex_state = 3}, [1209] = {.lex_state = 2, .external_lex_state = 3}, - [1210] = {.lex_state = 4, .external_lex_state = 3}, - [1211] = {.lex_state = 4, .external_lex_state = 3}, + [1210] = {.lex_state = 2, .external_lex_state = 3}, + [1211] = {.lex_state = 2, .external_lex_state = 3}, [1212] = {.lex_state = 2, .external_lex_state = 3}, [1213] = {.lex_state = 2, .external_lex_state = 3}, - [1214] = {.lex_state = 4, .external_lex_state = 3}, - [1215] = {.lex_state = 4, .external_lex_state = 3}, + [1214] = {.lex_state = 2, .external_lex_state = 3}, + [1215] = {.lex_state = 2, .external_lex_state = 3}, [1216] = {.lex_state = 2, .external_lex_state = 3}, [1217] = {.lex_state = 2, .external_lex_state = 3}, [1218] = {.lex_state = 2, .external_lex_state = 3}, @@ -14580,7 +14566,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1224] = {.lex_state = 2, .external_lex_state = 3}, [1225] = {.lex_state = 2, .external_lex_state = 3}, [1226] = {.lex_state = 2, .external_lex_state = 3}, - [1227] = {.lex_state = 2, .external_lex_state = 3}, + [1227] = {.lex_state = 4, .external_lex_state = 3}, [1228] = {.lex_state = 2, .external_lex_state = 3}, [1229] = {.lex_state = 2, .external_lex_state = 3}, [1230] = {.lex_state = 2, .external_lex_state = 3}, @@ -14618,7 +14604,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1262] = {.lex_state = 2, .external_lex_state = 3}, [1263] = {.lex_state = 2, .external_lex_state = 3}, [1264] = {.lex_state = 2, .external_lex_state = 3}, - [1265] = {.lex_state = 4, .external_lex_state = 3}, + [1265] = {.lex_state = 2, .external_lex_state = 3}, [1266] = {.lex_state = 2, .external_lex_state = 3}, [1267] = {.lex_state = 2, .external_lex_state = 3}, [1268] = {.lex_state = 2, .external_lex_state = 3}, @@ -14630,13 +14616,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1274] = {.lex_state = 2, .external_lex_state = 3}, [1275] = {.lex_state = 2, .external_lex_state = 3}, [1276] = {.lex_state = 2, .external_lex_state = 3}, - [1277] = {.lex_state = 2, .external_lex_state = 3}, + [1277] = {.lex_state = 4, .external_lex_state = 3}, [1278] = {.lex_state = 2, .external_lex_state = 3}, [1279] = {.lex_state = 2, .external_lex_state = 3}, [1280] = {.lex_state = 2, .external_lex_state = 3}, [1281] = {.lex_state = 2, .external_lex_state = 3}, [1282] = {.lex_state = 2, .external_lex_state = 3}, - [1283] = {.lex_state = 2, .external_lex_state = 3}, + [1283] = {.lex_state = 4, .external_lex_state = 3}, [1284] = {.lex_state = 2, .external_lex_state = 3}, [1285] = {.lex_state = 2, .external_lex_state = 3}, [1286] = {.lex_state = 2, .external_lex_state = 3}, @@ -14648,1293 +14634,1260 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1292] = {.lex_state = 2, .external_lex_state = 3}, [1293] = {.lex_state = 2, .external_lex_state = 3}, [1294] = {.lex_state = 2, .external_lex_state = 3}, - [1295] = {.lex_state = 2, .external_lex_state = 3}, - [1296] = {.lex_state = 2, .external_lex_state = 3}, - [1297] = {.lex_state = 2, .external_lex_state = 3}, - [1298] = {.lex_state = 2, .external_lex_state = 3}, - [1299] = {.lex_state = 2, .external_lex_state = 3}, - [1300] = {.lex_state = 2, .external_lex_state = 3}, + [1295] = {.lex_state = 4, .external_lex_state = 3}, + [1296] = {.lex_state = 4, .external_lex_state = 3}, + [1297] = {.lex_state = 4, .external_lex_state = 3}, + [1298] = {.lex_state = 4, .external_lex_state = 3}, + [1299] = {.lex_state = 4, .external_lex_state = 3}, + [1300] = {.lex_state = 4, .external_lex_state = 3}, [1301] = {.lex_state = 4, .external_lex_state = 3}, - [1302] = {.lex_state = 2, .external_lex_state = 3}, - [1303] = {.lex_state = 2, .external_lex_state = 3}, - [1304] = {.lex_state = 2, .external_lex_state = 3}, - [1305] = {.lex_state = 2, .external_lex_state = 3}, - [1306] = {.lex_state = 2, .external_lex_state = 3}, - [1307] = {.lex_state = 2, .external_lex_state = 3}, - [1308] = {.lex_state = 2, .external_lex_state = 3}, - [1309] = {.lex_state = 2, .external_lex_state = 3}, - [1310] = {.lex_state = 2, .external_lex_state = 3}, - [1311] = {.lex_state = 2, .external_lex_state = 3}, - [1312] = {.lex_state = 2, .external_lex_state = 3}, - [1313] = {.lex_state = 2, .external_lex_state = 3}, - [1314] = {.lex_state = 2, .external_lex_state = 3}, - [1315] = {.lex_state = 2, .external_lex_state = 3}, - [1316] = {.lex_state = 2, .external_lex_state = 3}, - [1317] = {.lex_state = 2, .external_lex_state = 3}, - [1318] = {.lex_state = 2, .external_lex_state = 3}, - [1319] = {.lex_state = 4, .external_lex_state = 3}, - [1320] = {.lex_state = 2, .external_lex_state = 3}, - [1321] = {.lex_state = 2, .external_lex_state = 3}, - [1322] = {.lex_state = 2, .external_lex_state = 3}, - [1323] = {.lex_state = 2, .external_lex_state = 3}, - [1324] = {.lex_state = 2, .external_lex_state = 3}, - [1325] = {.lex_state = 2, .external_lex_state = 3}, - [1326] = {.lex_state = 2, .external_lex_state = 3}, - [1327] = {.lex_state = 2, .external_lex_state = 3}, - [1328] = {.lex_state = 2, .external_lex_state = 3}, - [1329] = {.lex_state = 2, .external_lex_state = 3}, - [1330] = {.lex_state = 2, .external_lex_state = 3}, - [1331] = {.lex_state = 2, .external_lex_state = 3}, - [1332] = {.lex_state = 2, .external_lex_state = 3}, - [1333] = {.lex_state = 2, .external_lex_state = 3}, + [1302] = {.lex_state = 4, .external_lex_state = 3}, + [1303] = {.lex_state = 4, .external_lex_state = 3}, + [1304] = {.lex_state = 4, .external_lex_state = 3}, + [1305] = {.lex_state = 18, .external_lex_state = 3}, + [1306] = {.lex_state = 18, .external_lex_state = 3}, + [1307] = {.lex_state = 8, .external_lex_state = 3}, + [1308] = {.lex_state = 8, .external_lex_state = 3}, + [1309] = {.lex_state = 8, .external_lex_state = 3}, + [1310] = {.lex_state = 8, .external_lex_state = 3}, + [1311] = {.lex_state = 8, .external_lex_state = 3}, + [1312] = {.lex_state = 8, .external_lex_state = 3}, + [1313] = {.lex_state = 8, .external_lex_state = 3}, + [1314] = {.lex_state = 8, .external_lex_state = 3}, + [1315] = {.lex_state = 8, .external_lex_state = 3}, + [1316] = {.lex_state = 8, .external_lex_state = 3}, + [1317] = {.lex_state = 8, .external_lex_state = 3}, + [1318] = {.lex_state = 8, .external_lex_state = 3}, + [1319] = {.lex_state = 18, .external_lex_state = 3}, + [1320] = {.lex_state = 4, .external_lex_state = 3}, + [1321] = {.lex_state = 18, .external_lex_state = 3}, + [1322] = {.lex_state = 4, .external_lex_state = 3}, + [1323] = {.lex_state = 4, .external_lex_state = 3}, + [1324] = {.lex_state = 4, .external_lex_state = 3}, + [1325] = {.lex_state = 4, .external_lex_state = 3}, + [1326] = {.lex_state = 18, .external_lex_state = 3}, + [1327] = {.lex_state = 18, .external_lex_state = 3}, + [1328] = {.lex_state = 18, .external_lex_state = 3}, + [1329] = {.lex_state = 18, .external_lex_state = 3}, + [1330] = {.lex_state = 18, .external_lex_state = 3}, + [1331] = {.lex_state = 4, .external_lex_state = 3}, + [1332] = {.lex_state = 18, .external_lex_state = 3}, + [1333] = {.lex_state = 4, .external_lex_state = 3}, [1334] = {.lex_state = 4, .external_lex_state = 3}, - [1335] = {.lex_state = 4, .external_lex_state = 3}, + [1335] = {.lex_state = 8, .external_lex_state = 3}, [1336] = {.lex_state = 4, .external_lex_state = 3}, [1337] = {.lex_state = 4, .external_lex_state = 3}, [1338] = {.lex_state = 4, .external_lex_state = 3}, [1339] = {.lex_state = 4, .external_lex_state = 3}, - [1340] = {.lex_state = 4, .external_lex_state = 3}, + [1340] = {.lex_state = 8, .external_lex_state = 3}, [1341] = {.lex_state = 4, .external_lex_state = 3}, - [1342] = {.lex_state = 4, .external_lex_state = 3}, + [1342] = {.lex_state = 8, .external_lex_state = 3}, [1343] = {.lex_state = 4, .external_lex_state = 3}, [1344] = {.lex_state = 18, .external_lex_state = 3}, - [1345] = {.lex_state = 18, .external_lex_state = 3}, - [1346] = {.lex_state = 8, .external_lex_state = 3}, - [1347] = {.lex_state = 8, .external_lex_state = 3}, - [1348] = {.lex_state = 8, .external_lex_state = 3}, - [1349] = {.lex_state = 8, .external_lex_state = 3}, - [1350] = {.lex_state = 8, .external_lex_state = 3}, - [1351] = {.lex_state = 8, .external_lex_state = 3}, - [1352] = {.lex_state = 8, .external_lex_state = 3}, - [1353] = {.lex_state = 8, .external_lex_state = 3}, - [1354] = {.lex_state = 8, .external_lex_state = 3}, - [1355] = {.lex_state = 8, .external_lex_state = 3}, - [1356] = {.lex_state = 8, .external_lex_state = 3}, - [1357] = {.lex_state = 8, .external_lex_state = 3}, - [1358] = {.lex_state = 4, .external_lex_state = 3}, - [1359] = {.lex_state = 4, .external_lex_state = 3}, - [1360] = {.lex_state = 18, .external_lex_state = 3}, + [1345] = {.lex_state = 4, .external_lex_state = 3}, + [1346] = {.lex_state = 4, .external_lex_state = 3}, + [1347] = {.lex_state = 4, .external_lex_state = 3}, + [1348] = {.lex_state = 18, .external_lex_state = 3}, + [1349] = {.lex_state = 18, .external_lex_state = 3}, + [1350] = {.lex_state = 18, .external_lex_state = 3}, + [1351] = {.lex_state = 4, .external_lex_state = 3}, + [1352] = {.lex_state = 18, .external_lex_state = 3}, + [1353] = {.lex_state = 18, .external_lex_state = 3}, + [1354] = {.lex_state = 18, .external_lex_state = 3}, + [1355] = {.lex_state = 4, .external_lex_state = 3}, + [1356] = {.lex_state = 18, .external_lex_state = 3}, + [1357] = {.lex_state = 18, .external_lex_state = 3}, + [1358] = {.lex_state = 18, .external_lex_state = 3}, + [1359] = {.lex_state = 18, .external_lex_state = 3}, + [1360] = {.lex_state = 4, .external_lex_state = 3}, [1361] = {.lex_state = 4, .external_lex_state = 3}, - [1362] = {.lex_state = 18, .external_lex_state = 3}, + [1362] = {.lex_state = 4, .external_lex_state = 3}, [1363] = {.lex_state = 4, .external_lex_state = 3}, [1364] = {.lex_state = 18, .external_lex_state = 3}, [1365] = {.lex_state = 4, .external_lex_state = 3}, - [1366] = {.lex_state = 18, .external_lex_state = 3}, - [1367] = {.lex_state = 4, .external_lex_state = 3}, + [1366] = {.lex_state = 8, .external_lex_state = 3}, + [1367] = {.lex_state = 18, .external_lex_state = 3}, [1368] = {.lex_state = 18, .external_lex_state = 3}, [1369] = {.lex_state = 18, .external_lex_state = 3}, - [1370] = {.lex_state = 4, .external_lex_state = 3}, + [1370] = {.lex_state = 18, .external_lex_state = 3}, [1371] = {.lex_state = 18, .external_lex_state = 3}, [1372] = {.lex_state = 18, .external_lex_state = 3}, - [1373] = {.lex_state = 4, .external_lex_state = 3}, + [1373] = {.lex_state = 18, .external_lex_state = 3}, [1374] = {.lex_state = 18, .external_lex_state = 3}, - [1375] = {.lex_state = 4, .external_lex_state = 3}, - [1376] = {.lex_state = 4, .external_lex_state = 3}, + [1375] = {.lex_state = 18, .external_lex_state = 3}, + [1376] = {.lex_state = 18, .external_lex_state = 3}, [1377] = {.lex_state = 4, .external_lex_state = 3}, - [1378] = {.lex_state = 4, .external_lex_state = 3}, - [1379] = {.lex_state = 4, .external_lex_state = 3}, - [1380] = {.lex_state = 8, .external_lex_state = 3}, - [1381] = {.lex_state = 8, .external_lex_state = 3}, - [1382] = {.lex_state = 4, .external_lex_state = 3}, - [1383] = {.lex_state = 4, .external_lex_state = 3}, - [1384] = {.lex_state = 8, .external_lex_state = 3}, - [1385] = {.lex_state = 4, .external_lex_state = 3}, - [1386] = {.lex_state = 4, .external_lex_state = 3}, - [1387] = {.lex_state = 4, .external_lex_state = 3}, + [1378] = {.lex_state = 18, .external_lex_state = 3}, + [1379] = {.lex_state = 18, .external_lex_state = 3}, + [1380] = {.lex_state = 18, .external_lex_state = 3}, + [1381] = {.lex_state = 18, .external_lex_state = 3}, + [1382] = {.lex_state = 18, .external_lex_state = 3}, + [1383] = {.lex_state = 18, .external_lex_state = 3}, + [1384] = {.lex_state = 18, .external_lex_state = 3}, + [1385] = {.lex_state = 18, .external_lex_state = 3}, + [1386] = {.lex_state = 18, .external_lex_state = 3}, + [1387] = {.lex_state = 18, .external_lex_state = 3}, [1388] = {.lex_state = 18, .external_lex_state = 3}, - [1389] = {.lex_state = 8, .external_lex_state = 3}, + [1389] = {.lex_state = 18, .external_lex_state = 3}, [1390] = {.lex_state = 18, .external_lex_state = 3}, [1391] = {.lex_state = 18, .external_lex_state = 3}, - [1392] = {.lex_state = 4, .external_lex_state = 3}, + [1392] = {.lex_state = 18, .external_lex_state = 3}, [1393] = {.lex_state = 18, .external_lex_state = 3}, - [1394] = {.lex_state = 4, .external_lex_state = 3}, - [1395] = {.lex_state = 4, .external_lex_state = 3}, - [1396] = {.lex_state = 4, .external_lex_state = 3}, - [1397] = {.lex_state = 4, .external_lex_state = 3}, - [1398] = {.lex_state = 18, .external_lex_state = 3}, - [1399] = {.lex_state = 18, .external_lex_state = 3}, - [1400] = {.lex_state = 18, .external_lex_state = 3}, - [1401] = {.lex_state = 18, .external_lex_state = 3}, - [1402] = {.lex_state = 4, .external_lex_state = 3}, - [1403] = {.lex_state = 18, .external_lex_state = 3}, - [1404] = {.lex_state = 18, .external_lex_state = 3}, - [1405] = {.lex_state = 18, .external_lex_state = 3}, - [1406] = {.lex_state = 18, .external_lex_state = 3}, - [1407] = {.lex_state = 18, .external_lex_state = 3}, - [1408] = {.lex_state = 18, .external_lex_state = 3}, - [1409] = {.lex_state = 18, .external_lex_state = 3}, - [1410] = {.lex_state = 18, .external_lex_state = 3}, - [1411] = {.lex_state = 18, .external_lex_state = 3}, - [1412] = {.lex_state = 18, .external_lex_state = 3}, - [1413] = {.lex_state = 18, .external_lex_state = 3}, + [1394] = {.lex_state = 18, .external_lex_state = 3}, + [1395] = {.lex_state = 18, .external_lex_state = 3}, + [1396] = {.lex_state = 8, .external_lex_state = 3}, + [1397] = {.lex_state = 18, .external_lex_state = 3}, + [1398] = {.lex_state = 8, .external_lex_state = 3}, + [1399] = {.lex_state = 8, .external_lex_state = 3}, + [1400] = {.lex_state = 8, .external_lex_state = 3}, + [1401] = {.lex_state = 8, .external_lex_state = 3}, + [1402] = {.lex_state = 8, .external_lex_state = 3}, + [1403] = {.lex_state = 8, .external_lex_state = 3}, + [1404] = {.lex_state = 8, .external_lex_state = 3}, + [1405] = {.lex_state = 8, .external_lex_state = 3}, + [1406] = {.lex_state = 8, .external_lex_state = 3}, + [1407] = {.lex_state = 8, .external_lex_state = 3}, + [1408] = {.lex_state = 4, .external_lex_state = 3}, + [1409] = {.lex_state = 4, .external_lex_state = 3}, + [1410] = {.lex_state = 4, .external_lex_state = 3}, + [1411] = {.lex_state = 4, .external_lex_state = 3}, + [1412] = {.lex_state = 4, .external_lex_state = 3}, + [1413] = {.lex_state = 4, .external_lex_state = 3}, [1414] = {.lex_state = 18, .external_lex_state = 3}, - [1415] = {.lex_state = 18, .external_lex_state = 3}, + [1415] = {.lex_state = 4, .external_lex_state = 3}, [1416] = {.lex_state = 18, .external_lex_state = 3}, - [1417] = {.lex_state = 18, .external_lex_state = 3}, + [1417] = {.lex_state = 8, .external_lex_state = 3}, [1418] = {.lex_state = 4, .external_lex_state = 3}, [1419] = {.lex_state = 18, .external_lex_state = 3}, [1420] = {.lex_state = 18, .external_lex_state = 3}, [1421] = {.lex_state = 18, .external_lex_state = 3}, [1422] = {.lex_state = 18, .external_lex_state = 3}, [1423] = {.lex_state = 18, .external_lex_state = 3}, - [1424] = {.lex_state = 18, .external_lex_state = 3}, + [1424] = {.lex_state = 13, .external_lex_state = 3}, [1425] = {.lex_state = 18, .external_lex_state = 3}, [1426] = {.lex_state = 18, .external_lex_state = 3}, [1427] = {.lex_state = 18, .external_lex_state = 3}, [1428] = {.lex_state = 18, .external_lex_state = 3}, - [1429] = {.lex_state = 18, .external_lex_state = 3}, - [1430] = {.lex_state = 18, .external_lex_state = 3}, - [1431] = {.lex_state = 18, .external_lex_state = 3}, + [1429] = {.lex_state = 8, .external_lex_state = 3}, + [1430] = {.lex_state = 8, .external_lex_state = 3}, + [1431] = {.lex_state = 13, .external_lex_state = 3}, [1432] = {.lex_state = 18, .external_lex_state = 3}, [1433] = {.lex_state = 18, .external_lex_state = 3}, [1434] = {.lex_state = 18, .external_lex_state = 3}, - [1435] = {.lex_state = 18, .external_lex_state = 3}, + [1435] = {.lex_state = 4, .external_lex_state = 3}, [1436] = {.lex_state = 8, .external_lex_state = 3}, - [1437] = {.lex_state = 8, .external_lex_state = 3}, - [1438] = {.lex_state = 18, .external_lex_state = 3}, - [1439] = {.lex_state = 4, .external_lex_state = 3}, - [1440] = {.lex_state = 8, .external_lex_state = 3}, - [1441] = {.lex_state = 4, .external_lex_state = 3}, + [1437] = {.lex_state = 18, .external_lex_state = 3}, + [1438] = {.lex_state = 8, .external_lex_state = 3}, + [1439] = {.lex_state = 18, .external_lex_state = 3}, + [1440] = {.lex_state = 18, .external_lex_state = 3}, + [1441] = {.lex_state = 18, .external_lex_state = 3}, [1442] = {.lex_state = 8, .external_lex_state = 3}, - [1443] = {.lex_state = 4, .external_lex_state = 3}, - [1444] = {.lex_state = 4, .external_lex_state = 3}, - [1445] = {.lex_state = 8, .external_lex_state = 3}, - [1446] = {.lex_state = 8, .external_lex_state = 3}, - [1447] = {.lex_state = 8, .external_lex_state = 3}, - [1448] = {.lex_state = 8, .external_lex_state = 3}, - [1449] = {.lex_state = 8, .external_lex_state = 3}, - [1450] = {.lex_state = 8, .external_lex_state = 3}, + [1443] = {.lex_state = 8, .external_lex_state = 3}, + [1444] = {.lex_state = 8, .external_lex_state = 3}, + [1445] = {.lex_state = 18, .external_lex_state = 3}, + [1446] = {.lex_state = 18, .external_lex_state = 3}, + [1447] = {.lex_state = 18, .external_lex_state = 3}, + [1448] = {.lex_state = 18, .external_lex_state = 3}, + [1449] = {.lex_state = 18, .external_lex_state = 3}, + [1450] = {.lex_state = 18, .external_lex_state = 3}, [1451] = {.lex_state = 18, .external_lex_state = 3}, - [1452] = {.lex_state = 4, .external_lex_state = 3}, - [1453] = {.lex_state = 8, .external_lex_state = 3}, - [1454] = {.lex_state = 4, .external_lex_state = 3}, - [1455] = {.lex_state = 4, .external_lex_state = 3}, - [1456] = {.lex_state = 4, .external_lex_state = 3}, - [1457] = {.lex_state = 8, .external_lex_state = 3}, + [1452] = {.lex_state = 18, .external_lex_state = 3}, + [1453] = {.lex_state = 13, .external_lex_state = 3}, + [1454] = {.lex_state = 18, .external_lex_state = 3}, + [1455] = {.lex_state = 18, .external_lex_state = 3}, + [1456] = {.lex_state = 8, .external_lex_state = 3}, + [1457] = {.lex_state = 18, .external_lex_state = 3}, [1458] = {.lex_state = 18, .external_lex_state = 3}, - [1459] = {.lex_state = 13, .external_lex_state = 3}, - [1460] = {.lex_state = 18, .external_lex_state = 3}, - [1461] = {.lex_state = 8, .external_lex_state = 3}, - [1462] = {.lex_state = 8, .external_lex_state = 3}, - [1463] = {.lex_state = 18, .external_lex_state = 3}, - [1464] = {.lex_state = 18, .external_lex_state = 3}, - [1465] = {.lex_state = 18, .external_lex_state = 3}, - [1466] = {.lex_state = 18, .external_lex_state = 3}, - [1467] = {.lex_state = 18, .external_lex_state = 3}, + [1459] = {.lex_state = 18, .external_lex_state = 3}, + [1460] = {.lex_state = 13, .external_lex_state = 3}, + [1461] = {.lex_state = 18, .external_lex_state = 3}, + [1462] = {.lex_state = 18, .external_lex_state = 3}, + [1463] = {.lex_state = 4, .external_lex_state = 3}, + [1464] = {.lex_state = 4, .external_lex_state = 3}, + [1465] = {.lex_state = 4, .external_lex_state = 3}, + [1466] = {.lex_state = 4, .external_lex_state = 3}, + [1467] = {.lex_state = 15, .external_lex_state = 3}, [1468] = {.lex_state = 18, .external_lex_state = 3}, [1469] = {.lex_state = 4, .external_lex_state = 3}, - [1470] = {.lex_state = 18, .external_lex_state = 3}, - [1471] = {.lex_state = 8, .external_lex_state = 3}, - [1472] = {.lex_state = 18, .external_lex_state = 3}, - [1473] = {.lex_state = 18, .external_lex_state = 3}, - [1474] = {.lex_state = 8, .external_lex_state = 3}, - [1475] = {.lex_state = 13, .external_lex_state = 3}, - [1476] = {.lex_state = 8, .external_lex_state = 3}, - [1477] = {.lex_state = 18, .external_lex_state = 3}, - [1478] = {.lex_state = 8, .external_lex_state = 3}, + [1470] = {.lex_state = 8, .external_lex_state = 3}, + [1471] = {.lex_state = 4, .external_lex_state = 3}, + [1472] = {.lex_state = 4, .external_lex_state = 3}, + [1473] = {.lex_state = 4, .external_lex_state = 3}, + [1474] = {.lex_state = 4, .external_lex_state = 3}, + [1475] = {.lex_state = 4, .external_lex_state = 3}, + [1476] = {.lex_state = 18, .external_lex_state = 3}, + [1477] = {.lex_state = 4, .external_lex_state = 3}, + [1478] = {.lex_state = 18, .external_lex_state = 3}, [1479] = {.lex_state = 4, .external_lex_state = 3}, - [1480] = {.lex_state = 18, .external_lex_state = 3}, - [1481] = {.lex_state = 18, .external_lex_state = 3}, - [1482] = {.lex_state = 18, .external_lex_state = 3}, + [1480] = {.lex_state = 4, .external_lex_state = 3}, + [1481] = {.lex_state = 4, .external_lex_state = 3}, + [1482] = {.lex_state = 4, .external_lex_state = 3}, [1483] = {.lex_state = 18, .external_lex_state = 3}, - [1484] = {.lex_state = 8, .external_lex_state = 3}, - [1485] = {.lex_state = 18, .external_lex_state = 3}, - [1486] = {.lex_state = 18, .external_lex_state = 3}, - [1487] = {.lex_state = 13, .external_lex_state = 3}, - [1488] = {.lex_state = 18, .external_lex_state = 3}, - [1489] = {.lex_state = 18, .external_lex_state = 3}, - [1490] = {.lex_state = 13, .external_lex_state = 3}, - [1491] = {.lex_state = 18, .external_lex_state = 3}, + [1484] = {.lex_state = 18, .external_lex_state = 3}, + [1485] = {.lex_state = 4, .external_lex_state = 3}, + [1486] = {.lex_state = 4, .external_lex_state = 3}, + [1487] = {.lex_state = 18, .external_lex_state = 3}, + [1488] = {.lex_state = 4, .external_lex_state = 3}, + [1489] = {.lex_state = 4, .external_lex_state = 3}, + [1490] = {.lex_state = 4, .external_lex_state = 3}, + [1491] = {.lex_state = 4, .external_lex_state = 3}, [1492] = {.lex_state = 18, .external_lex_state = 3}, - [1493] = {.lex_state = 18, .external_lex_state = 3}, - [1494] = {.lex_state = 18, .external_lex_state = 3}, - [1495] = {.lex_state = 18, .external_lex_state = 3}, - [1496] = {.lex_state = 18, .external_lex_state = 3}, - [1497] = {.lex_state = 18, .external_lex_state = 3}, - [1498] = {.lex_state = 8, .external_lex_state = 3}, - [1499] = {.lex_state = 18, .external_lex_state = 3}, - [1500] = {.lex_state = 18, .external_lex_state = 3}, - [1501] = {.lex_state = 18, .external_lex_state = 3}, - [1502] = {.lex_state = 18, .external_lex_state = 3}, + [1493] = {.lex_state = 15, .external_lex_state = 3}, + [1494] = {.lex_state = 4, .external_lex_state = 3}, + [1495] = {.lex_state = 4, .external_lex_state = 3}, + [1496] = {.lex_state = 4, .external_lex_state = 3}, + [1497] = {.lex_state = 4, .external_lex_state = 3}, + [1498] = {.lex_state = 4, .external_lex_state = 3}, + [1499] = {.lex_state = 4, .external_lex_state = 3}, + [1500] = {.lex_state = 15, .external_lex_state = 3}, + [1501] = {.lex_state = 4, .external_lex_state = 3}, + [1502] = {.lex_state = 4, .external_lex_state = 3}, [1503] = {.lex_state = 4, .external_lex_state = 3}, - [1504] = {.lex_state = 15, .external_lex_state = 3}, - [1505] = {.lex_state = 18, .external_lex_state = 3}, + [1504] = {.lex_state = 4, .external_lex_state = 3}, + [1505] = {.lex_state = 4, .external_lex_state = 3}, [1506] = {.lex_state = 4, .external_lex_state = 3}, [1507] = {.lex_state = 4, .external_lex_state = 3}, [1508] = {.lex_state = 4, .external_lex_state = 3}, - [1509] = {.lex_state = 8, .external_lex_state = 3}, + [1509] = {.lex_state = 18, .external_lex_state = 3}, [1510] = {.lex_state = 4, .external_lex_state = 3}, [1511] = {.lex_state = 4, .external_lex_state = 3}, - [1512] = {.lex_state = 4, .external_lex_state = 3}, + [1512] = {.lex_state = 18, .external_lex_state = 3}, [1513] = {.lex_state = 4, .external_lex_state = 3}, [1514] = {.lex_state = 4, .external_lex_state = 3}, - [1515] = {.lex_state = 15, .external_lex_state = 3}, - [1516] = {.lex_state = 18, .external_lex_state = 3}, - [1517] = {.lex_state = 18, .external_lex_state = 3}, - [1518] = {.lex_state = 4, .external_lex_state = 3}, - [1519] = {.lex_state = 4, .external_lex_state = 3}, + [1515] = {.lex_state = 4, .external_lex_state = 3}, + [1516] = {.lex_state = 4, .external_lex_state = 3}, + [1517] = {.lex_state = 15, .external_lex_state = 3}, + [1518] = {.lex_state = 15, .external_lex_state = 3}, + [1519] = {.lex_state = 15, .external_lex_state = 3}, [1520] = {.lex_state = 4, .external_lex_state = 3}, [1521] = {.lex_state = 4, .external_lex_state = 3}, - [1522] = {.lex_state = 18, .external_lex_state = 3}, + [1522] = {.lex_state = 4, .external_lex_state = 3}, [1523] = {.lex_state = 4, .external_lex_state = 3}, - [1524] = {.lex_state = 4, .external_lex_state = 3}, + [1524] = {.lex_state = 15, .external_lex_state = 3}, [1525] = {.lex_state = 4, .external_lex_state = 3}, - [1526] = {.lex_state = 4, .external_lex_state = 3}, + [1526] = {.lex_state = 0, .external_lex_state = 3}, [1527] = {.lex_state = 4, .external_lex_state = 3}, - [1528] = {.lex_state = 4, .external_lex_state = 3}, + [1528] = {.lex_state = 15, .external_lex_state = 3}, [1529] = {.lex_state = 4, .external_lex_state = 3}, - [1530] = {.lex_state = 4, .external_lex_state = 3}, - [1531] = {.lex_state = 15, .external_lex_state = 3}, + [1530] = {.lex_state = 15, .external_lex_state = 3}, + [1531] = {.lex_state = 4, .external_lex_state = 3}, [1532] = {.lex_state = 4, .external_lex_state = 3}, - [1533] = {.lex_state = 4, .external_lex_state = 3}, + [1533] = {.lex_state = 13, .external_lex_state = 3}, [1534] = {.lex_state = 4, .external_lex_state = 3}, - [1535] = {.lex_state = 18, .external_lex_state = 3}, + [1535] = {.lex_state = 4, .external_lex_state = 3}, [1536] = {.lex_state = 4, .external_lex_state = 3}, - [1537] = {.lex_state = 4, .external_lex_state = 3}, + [1537] = {.lex_state = 15, .external_lex_state = 3}, [1538] = {.lex_state = 4, .external_lex_state = 3}, - [1539] = {.lex_state = 18, .external_lex_state = 3}, + [1539] = {.lex_state = 15, .external_lex_state = 3}, [1540] = {.lex_state = 4, .external_lex_state = 3}, - [1541] = {.lex_state = 4, .external_lex_state = 3}, + [1541] = {.lex_state = 15, .external_lex_state = 3}, [1542] = {.lex_state = 4, .external_lex_state = 3}, [1543] = {.lex_state = 4, .external_lex_state = 3}, [1544] = {.lex_state = 4, .external_lex_state = 3}, - [1545] = {.lex_state = 18, .external_lex_state = 3}, + [1545] = {.lex_state = 4, .external_lex_state = 3}, [1546] = {.lex_state = 4, .external_lex_state = 3}, [1547] = {.lex_state = 4, .external_lex_state = 3}, [1548] = {.lex_state = 4, .external_lex_state = 3}, - [1549] = {.lex_state = 18, .external_lex_state = 3}, + [1549] = {.lex_state = 4, .external_lex_state = 3}, [1550] = {.lex_state = 4, .external_lex_state = 3}, - [1551] = {.lex_state = 18, .external_lex_state = 3}, + [1551] = {.lex_state = 4, .external_lex_state = 3}, [1552] = {.lex_state = 4, .external_lex_state = 3}, [1553] = {.lex_state = 4, .external_lex_state = 3}, [1554] = {.lex_state = 4, .external_lex_state = 3}, [1555] = {.lex_state = 4, .external_lex_state = 3}, [1556] = {.lex_state = 4, .external_lex_state = 3}, [1557] = {.lex_state = 4, .external_lex_state = 3}, - [1558] = {.lex_state = 4, .external_lex_state = 3}, - [1559] = {.lex_state = 4, .external_lex_state = 3}, - [1560] = {.lex_state = 15, .external_lex_state = 3}, - [1561] = {.lex_state = 15, .external_lex_state = 3}, - [1562] = {.lex_state = 4, .external_lex_state = 3}, - [1563] = {.lex_state = 15, .external_lex_state = 3}, + [1558] = {.lex_state = 0, .external_lex_state = 3}, + [1559] = {.lex_state = 0, .external_lex_state = 3}, + [1560] = {.lex_state = 0, .external_lex_state = 3}, + [1561] = {.lex_state = 4, .external_lex_state = 3}, + [1562] = {.lex_state = 0, .external_lex_state = 3}, + [1563] = {.lex_state = 0, .external_lex_state = 3}, [1564] = {.lex_state = 4, .external_lex_state = 3}, - [1565] = {.lex_state = 15, .external_lex_state = 3}, - [1566] = {.lex_state = 4, .external_lex_state = 3}, - [1567] = {.lex_state = 4, .external_lex_state = 3}, + [1565] = {.lex_state = 0, .external_lex_state = 3}, + [1566] = {.lex_state = 0, .external_lex_state = 3}, + [1567] = {.lex_state = 0, .external_lex_state = 3}, [1568] = {.lex_state = 0, .external_lex_state = 3}, [1569] = {.lex_state = 4, .external_lex_state = 3}, - [1570] = {.lex_state = 4, .external_lex_state = 3}, + [1570] = {.lex_state = 0, .external_lex_state = 3}, [1571] = {.lex_state = 4, .external_lex_state = 3}, [1572] = {.lex_state = 4, .external_lex_state = 3}, [1573] = {.lex_state = 15, .external_lex_state = 3}, [1574] = {.lex_state = 4, .external_lex_state = 3}, [1575] = {.lex_state = 4, .external_lex_state = 3}, - [1576] = {.lex_state = 15, .external_lex_state = 3}, + [1576] = {.lex_state = 4, .external_lex_state = 3}, [1577] = {.lex_state = 4, .external_lex_state = 3}, - [1578] = {.lex_state = 15, .external_lex_state = 3}, + [1578] = {.lex_state = 4, .external_lex_state = 3}, [1579] = {.lex_state = 4, .external_lex_state = 3}, - [1580] = {.lex_state = 4, .external_lex_state = 3}, + [1580] = {.lex_state = 0, .external_lex_state = 3}, [1581] = {.lex_state = 4, .external_lex_state = 3}, - [1582] = {.lex_state = 13, .external_lex_state = 3}, - [1583] = {.lex_state = 15, .external_lex_state = 3}, - [1584] = {.lex_state = 4, .external_lex_state = 3}, - [1585] = {.lex_state = 4, .external_lex_state = 3}, - [1586] = {.lex_state = 4, .external_lex_state = 3}, - [1587] = {.lex_state = 4, .external_lex_state = 3}, - [1588] = {.lex_state = 4, .external_lex_state = 3}, - [1589] = {.lex_state = 4, .external_lex_state = 3}, - [1590] = {.lex_state = 4, .external_lex_state = 3}, - [1591] = {.lex_state = 4, .external_lex_state = 3}, - [1592] = {.lex_state = 4, .external_lex_state = 3}, - [1593] = {.lex_state = 4, .external_lex_state = 3}, - [1594] = {.lex_state = 4, .external_lex_state = 3}, - [1595] = {.lex_state = 15, .external_lex_state = 3}, - [1596] = {.lex_state = 0, .external_lex_state = 3}, - [1597] = {.lex_state = 0, .external_lex_state = 3}, + [1582] = {.lex_state = 0, .external_lex_state = 3}, + [1583] = {.lex_state = 4, .external_lex_state = 3}, + [1584] = {.lex_state = 0, .external_lex_state = 3}, + [1585] = {.lex_state = 15, .external_lex_state = 3}, + [1586] = {.lex_state = 15, .external_lex_state = 3}, + [1587] = {.lex_state = 0, .external_lex_state = 3}, + [1588] = {.lex_state = 0, .external_lex_state = 3}, + [1589] = {.lex_state = 0, .external_lex_state = 3}, + [1590] = {.lex_state = 15, .external_lex_state = 3}, + [1591] = {.lex_state = 0, .external_lex_state = 3}, + [1592] = {.lex_state = 0, .external_lex_state = 3}, + [1593] = {.lex_state = 0, .external_lex_state = 3}, + [1594] = {.lex_state = 0, .external_lex_state = 3}, + [1595] = {.lex_state = 0, .external_lex_state = 3}, + [1596] = {.lex_state = 4, .external_lex_state = 3}, + [1597] = {.lex_state = 4, .external_lex_state = 3}, [1598] = {.lex_state = 4, .external_lex_state = 3}, [1599] = {.lex_state = 4, .external_lex_state = 3}, - [1600] = {.lex_state = 0, .external_lex_state = 3}, + [1600] = {.lex_state = 4, .external_lex_state = 3}, [1601] = {.lex_state = 0, .external_lex_state = 3}, [1602] = {.lex_state = 4, .external_lex_state = 3}, - [1603] = {.lex_state = 0, .external_lex_state = 3}, + [1603] = {.lex_state = 4, .external_lex_state = 3}, [1604] = {.lex_state = 4, .external_lex_state = 3}, [1605] = {.lex_state = 4, .external_lex_state = 3}, - [1606] = {.lex_state = 0, .external_lex_state = 3}, + [1606] = {.lex_state = 4, .external_lex_state = 3}, [1607] = {.lex_state = 4, .external_lex_state = 3}, - [1608] = {.lex_state = 0, .external_lex_state = 3}, - [1609] = {.lex_state = 0, .external_lex_state = 3}, + [1608] = {.lex_state = 4, .external_lex_state = 3}, + [1609] = {.lex_state = 13, .external_lex_state = 3}, [1610] = {.lex_state = 4, .external_lex_state = 3}, [1611] = {.lex_state = 0, .external_lex_state = 3}, [1612] = {.lex_state = 4, .external_lex_state = 3}, - [1613] = {.lex_state = 0, .external_lex_state = 3}, - [1614] = {.lex_state = 4, .external_lex_state = 3}, + [1613] = {.lex_state = 4, .external_lex_state = 3}, + [1614] = {.lex_state = 9, .external_lex_state = 3}, [1615] = {.lex_state = 4, .external_lex_state = 3}, - [1616] = {.lex_state = 15, .external_lex_state = 3}, + [1616] = {.lex_state = 4, .external_lex_state = 3}, [1617] = {.lex_state = 4, .external_lex_state = 3}, - [1618] = {.lex_state = 0, .external_lex_state = 3}, - [1619] = {.lex_state = 0, .external_lex_state = 3}, + [1618] = {.lex_state = 4, .external_lex_state = 3}, + [1619] = {.lex_state = 4, .external_lex_state = 3}, [1620] = {.lex_state = 4, .external_lex_state = 3}, - [1621] = {.lex_state = 0, .external_lex_state = 3}, - [1622] = {.lex_state = 0, .external_lex_state = 3}, - [1623] = {.lex_state = 0, .external_lex_state = 3}, + [1621] = {.lex_state = 4, .external_lex_state = 3}, + [1622] = {.lex_state = 4, .external_lex_state = 3}, + [1623] = {.lex_state = 4, .external_lex_state = 3}, [1624] = {.lex_state = 4, .external_lex_state = 3}, [1625] = {.lex_state = 4, .external_lex_state = 3}, - [1626] = {.lex_state = 0, .external_lex_state = 3}, - [1627] = {.lex_state = 4, .external_lex_state = 3}, - [1628] = {.lex_state = 15, .external_lex_state = 3}, - [1629] = {.lex_state = 4, .external_lex_state = 3}, + [1626] = {.lex_state = 4, .external_lex_state = 3}, + [1627] = {.lex_state = 18, .external_lex_state = 3}, + [1628] = {.lex_state = 4, .external_lex_state = 3}, + [1629] = {.lex_state = 18, .external_lex_state = 3}, [1630] = {.lex_state = 4, .external_lex_state = 3}, - [1631] = {.lex_state = 0, .external_lex_state = 3}, - [1632] = {.lex_state = 15, .external_lex_state = 3}, + [1631] = {.lex_state = 4, .external_lex_state = 3}, + [1632] = {.lex_state = 18, .external_lex_state = 3}, [1633] = {.lex_state = 0, .external_lex_state = 3}, - [1634] = {.lex_state = 15, .external_lex_state = 3}, - [1635] = {.lex_state = 4, .external_lex_state = 3}, - [1636] = {.lex_state = 4, .external_lex_state = 3}, - [1637] = {.lex_state = 0, .external_lex_state = 3}, - [1638] = {.lex_state = 4, .external_lex_state = 3}, - [1639] = {.lex_state = 0, .external_lex_state = 3}, - [1640] = {.lex_state = 0, .external_lex_state = 3}, - [1641] = {.lex_state = 0, .external_lex_state = 3}, + [1634] = {.lex_state = 9, .external_lex_state = 3}, + [1635] = {.lex_state = 0, .external_lex_state = 3}, + [1636] = {.lex_state = 0, .external_lex_state = 3}, + [1637] = {.lex_state = 4, .external_lex_state = 3}, + [1638] = {.lex_state = 0, .external_lex_state = 3}, + [1639] = {.lex_state = 4, .external_lex_state = 3}, + [1640] = {.lex_state = 18, .external_lex_state = 3}, + [1641] = {.lex_state = 4, .external_lex_state = 3}, [1642] = {.lex_state = 4, .external_lex_state = 3}, - [1643] = {.lex_state = 4, .external_lex_state = 3}, - [1644] = {.lex_state = 4, .external_lex_state = 3}, + [1643] = {.lex_state = 18, .external_lex_state = 3}, + [1644] = {.lex_state = 18, .external_lex_state = 3}, [1645] = {.lex_state = 4, .external_lex_state = 3}, [1646] = {.lex_state = 4, .external_lex_state = 3}, - [1647] = {.lex_state = 4, .external_lex_state = 3}, - [1648] = {.lex_state = 4, .external_lex_state = 3}, - [1649] = {.lex_state = 58, .external_lex_state = 3}, - [1650] = {.lex_state = 58, .external_lex_state = 3}, + [1647] = {.lex_state = 18, .external_lex_state = 3}, + [1648] = {.lex_state = 58, .external_lex_state = 3}, + [1649] = {.lex_state = 4, .external_lex_state = 3}, + [1650] = {.lex_state = 0, .external_lex_state = 3}, [1651] = {.lex_state = 4, .external_lex_state = 3}, - [1652] = {.lex_state = 4, .external_lex_state = 3}, + [1652] = {.lex_state = 58, .external_lex_state = 3}, [1653] = {.lex_state = 0, .external_lex_state = 3}, - [1654] = {.lex_state = 18, .external_lex_state = 3}, - [1655] = {.lex_state = 18, .external_lex_state = 3}, - [1656] = {.lex_state = 18, .external_lex_state = 3}, - [1657] = {.lex_state = 18, .external_lex_state = 3}, - [1658] = {.lex_state = 18, .external_lex_state = 3}, + [1654] = {.lex_state = 4, .external_lex_state = 3}, + [1655] = {.lex_state = 4, .external_lex_state = 3}, + [1656] = {.lex_state = 4, .external_lex_state = 3}, + [1657] = {.lex_state = 4, .external_lex_state = 3}, + [1658] = {.lex_state = 4, .external_lex_state = 3}, [1659] = {.lex_state = 4, .external_lex_state = 3}, [1660] = {.lex_state = 4, .external_lex_state = 3}, - [1661] = {.lex_state = 18, .external_lex_state = 3}, + [1661] = {.lex_state = 4, .external_lex_state = 3}, [1662] = {.lex_state = 4, .external_lex_state = 3}, - [1663] = {.lex_state = 4, .external_lex_state = 3}, - [1664] = {.lex_state = 9, .external_lex_state = 3}, - [1665] = {.lex_state = 0, .external_lex_state = 3}, + [1663] = {.lex_state = 9, .external_lex_state = 3}, + [1664] = {.lex_state = 4, .external_lex_state = 3}, + [1665] = {.lex_state = 4, .external_lex_state = 3}, [1666] = {.lex_state = 4, .external_lex_state = 3}, [1667] = {.lex_state = 4, .external_lex_state = 3}, - [1668] = {.lex_state = 4, .external_lex_state = 3}, + [1668] = {.lex_state = 18, .external_lex_state = 3}, [1669] = {.lex_state = 4, .external_lex_state = 3}, [1670] = {.lex_state = 4, .external_lex_state = 3}, - [1671] = {.lex_state = 15, .external_lex_state = 3}, + [1671] = {.lex_state = 4, .external_lex_state = 3}, [1672] = {.lex_state = 4, .external_lex_state = 3}, - [1673] = {.lex_state = 4, .external_lex_state = 3}, + [1673] = {.lex_state = 18, .external_lex_state = 3}, [1674] = {.lex_state = 4, .external_lex_state = 3}, - [1675] = {.lex_state = 4, .external_lex_state = 3}, - [1676] = {.lex_state = 4, .external_lex_state = 3}, - [1677] = {.lex_state = 4, .external_lex_state = 3}, + [1675] = {.lex_state = 9, .external_lex_state = 3}, + [1676] = {.lex_state = 15, .external_lex_state = 3}, + [1677] = {.lex_state = 9, .external_lex_state = 3}, [1678] = {.lex_state = 4, .external_lex_state = 3}, [1679] = {.lex_state = 4, .external_lex_state = 3}, - [1680] = {.lex_state = 0, .external_lex_state = 3}, + [1680] = {.lex_state = 4, .external_lex_state = 3}, [1681] = {.lex_state = 4, .external_lex_state = 3}, [1682] = {.lex_state = 4, .external_lex_state = 3}, [1683] = {.lex_state = 4, .external_lex_state = 3}, - [1684] = {.lex_state = 4, .external_lex_state = 3}, + [1684] = {.lex_state = 13, .external_lex_state = 3}, [1685] = {.lex_state = 4, .external_lex_state = 3}, [1686] = {.lex_state = 4, .external_lex_state = 3}, [1687] = {.lex_state = 4, .external_lex_state = 3}, - [1688] = {.lex_state = 9, .external_lex_state = 3}, + [1688] = {.lex_state = 4, .external_lex_state = 3}, [1689] = {.lex_state = 4, .external_lex_state = 3}, [1690] = {.lex_state = 4, .external_lex_state = 3}, - [1691] = {.lex_state = 4, .external_lex_state = 3}, + [1691] = {.lex_state = 9, .external_lex_state = 3}, [1692] = {.lex_state = 4, .external_lex_state = 3}, - [1693] = {.lex_state = 9, .external_lex_state = 3}, + [1693] = {.lex_state = 4, .external_lex_state = 3}, [1694] = {.lex_state = 4, .external_lex_state = 3}, [1695] = {.lex_state = 4, .external_lex_state = 3}, - [1696] = {.lex_state = 4, .external_lex_state = 3}, + [1696] = {.lex_state = 18, .external_lex_state = 3}, [1697] = {.lex_state = 4, .external_lex_state = 3}, [1698] = {.lex_state = 4, .external_lex_state = 3}, - [1699] = {.lex_state = 4, .external_lex_state = 3}, - [1700] = {.lex_state = 13, .external_lex_state = 3}, - [1701] = {.lex_state = 4, .external_lex_state = 3}, - [1702] = {.lex_state = 18, .external_lex_state = 3}, - [1703] = {.lex_state = 0, .external_lex_state = 3}, + [1699] = {.lex_state = 0, .external_lex_state = 3}, + [1700] = {.lex_state = 18, .external_lex_state = 3}, + [1701] = {.lex_state = 0, .external_lex_state = 3}, + [1702] = {.lex_state = 4, .external_lex_state = 3}, + [1703] = {.lex_state = 4, .external_lex_state = 3}, [1704] = {.lex_state = 18, .external_lex_state = 3}, - [1705] = {.lex_state = 0, .external_lex_state = 3}, - [1706] = {.lex_state = 4, .external_lex_state = 3}, - [1707] = {.lex_state = 4, .external_lex_state = 3}, - [1708] = {.lex_state = 0, .external_lex_state = 3}, - [1709] = {.lex_state = 18, .external_lex_state = 3}, - [1710] = {.lex_state = 4, .external_lex_state = 3}, + [1705] = {.lex_state = 18, .external_lex_state = 3}, + [1706] = {.lex_state = 18, .external_lex_state = 3}, + [1707] = {.lex_state = 0, .external_lex_state = 3}, + [1708] = {.lex_state = 9, .external_lex_state = 3}, + [1709] = {.lex_state = 4, .external_lex_state = 3}, + [1710] = {.lex_state = 9, .external_lex_state = 3}, [1711] = {.lex_state = 4, .external_lex_state = 3}, [1712] = {.lex_state = 4, .external_lex_state = 3}, [1713] = {.lex_state = 4, .external_lex_state = 3}, - [1714] = {.lex_state = 9, .external_lex_state = 3}, + [1714] = {.lex_state = 4, .external_lex_state = 3}, [1715] = {.lex_state = 4, .external_lex_state = 3}, - [1716] = {.lex_state = 0, .external_lex_state = 3}, + [1716] = {.lex_state = 4, .external_lex_state = 3}, [1717] = {.lex_state = 4, .external_lex_state = 3}, - [1718] = {.lex_state = 4, .external_lex_state = 3}, - [1719] = {.lex_state = 4, .external_lex_state = 3}, + [1718] = {.lex_state = 0, .external_lex_state = 3}, + [1719] = {.lex_state = 18, .external_lex_state = 3}, [1720] = {.lex_state = 4, .external_lex_state = 3}, - [1721] = {.lex_state = 4, .external_lex_state = 3}, - [1722] = {.lex_state = 4, .external_lex_state = 3}, - [1723] = {.lex_state = 9, .external_lex_state = 3}, + [1721] = {.lex_state = 18, .external_lex_state = 3}, + [1722] = {.lex_state = 0, .external_lex_state = 3}, + [1723] = {.lex_state = 58, .external_lex_state = 3}, [1724] = {.lex_state = 4, .external_lex_state = 3}, [1725] = {.lex_state = 4, .external_lex_state = 3}, - [1726] = {.lex_state = 4, .external_lex_state = 3}, - [1727] = {.lex_state = 4, .external_lex_state = 3}, - [1728] = {.lex_state = 4, .external_lex_state = 3}, - [1729] = {.lex_state = 4, .external_lex_state = 3}, - [1730] = {.lex_state = 4, .external_lex_state = 3}, - [1731] = {.lex_state = 4, .external_lex_state = 3}, + [1726] = {.lex_state = 0, .external_lex_state = 3}, + [1727] = {.lex_state = 18, .external_lex_state = 3}, + [1728] = {.lex_state = 18, .external_lex_state = 3}, + [1729] = {.lex_state = 58, .external_lex_state = 3}, + [1730] = {.lex_state = 0, .external_lex_state = 3}, + [1731] = {.lex_state = 18, .external_lex_state = 3}, [1732] = {.lex_state = 18, .external_lex_state = 3}, - [1733] = {.lex_state = 4, .external_lex_state = 3}, - [1734] = {.lex_state = 4, .external_lex_state = 3}, - [1735] = {.lex_state = 4, .external_lex_state = 3}, - [1736] = {.lex_state = 13, .external_lex_state = 3}, - [1737] = {.lex_state = 9, .external_lex_state = 3}, + [1733] = {.lex_state = 0, .external_lex_state = 3}, + [1734] = {.lex_state = 9, .external_lex_state = 3}, + [1735] = {.lex_state = 9, .external_lex_state = 3}, + [1736] = {.lex_state = 4, .external_lex_state = 3}, + [1737] = {.lex_state = 58, .external_lex_state = 3}, [1738] = {.lex_state = 4, .external_lex_state = 3}, - [1739] = {.lex_state = 9, .external_lex_state = 3}, + [1739] = {.lex_state = 4, .external_lex_state = 3}, [1740] = {.lex_state = 4, .external_lex_state = 3}, - [1741] = {.lex_state = 58, .external_lex_state = 3}, - [1742] = {.lex_state = 58, .external_lex_state = 3}, + [1741] = {.lex_state = 4, .external_lex_state = 3}, + [1742] = {.lex_state = 18, .external_lex_state = 3}, [1743] = {.lex_state = 4, .external_lex_state = 3}, [1744] = {.lex_state = 18, .external_lex_state = 3}, [1745] = {.lex_state = 4, .external_lex_state = 3}, - [1746] = {.lex_state = 9, .external_lex_state = 3}, - [1747] = {.lex_state = 9, .external_lex_state = 3}, + [1746] = {.lex_state = 4, .external_lex_state = 3}, + [1747] = {.lex_state = 4, .external_lex_state = 3}, [1748] = {.lex_state = 18, .external_lex_state = 3}, - [1749] = {.lex_state = 18, .external_lex_state = 3}, - [1750] = {.lex_state = 4, .external_lex_state = 3}, - [1751] = {.lex_state = 18, .external_lex_state = 3}, - [1752] = {.lex_state = 4, .external_lex_state = 3}, - [1753] = {.lex_state = 0, .external_lex_state = 3}, + [1749] = {.lex_state = 9, .external_lex_state = 3}, + [1750] = {.lex_state = 9, .external_lex_state = 3}, + [1751] = {.lex_state = 4, .external_lex_state = 3}, + [1752] = {.lex_state = 58, .external_lex_state = 3}, + [1753] = {.lex_state = 58, .external_lex_state = 3}, [1754] = {.lex_state = 4, .external_lex_state = 3}, - [1755] = {.lex_state = 18, .external_lex_state = 3}, + [1755] = {.lex_state = 4, .external_lex_state = 3}, [1756] = {.lex_state = 4, .external_lex_state = 3}, - [1757] = {.lex_state = 4, .external_lex_state = 3}, + [1757] = {.lex_state = 58, .external_lex_state = 3}, [1758] = {.lex_state = 0, .external_lex_state = 3}, - [1759] = {.lex_state = 4, .external_lex_state = 3}, + [1759] = {.lex_state = 58, .external_lex_state = 3}, [1760] = {.lex_state = 4, .external_lex_state = 3}, - [1761] = {.lex_state = 0, .external_lex_state = 3}, - [1762] = {.lex_state = 0, .external_lex_state = 3}, - [1763] = {.lex_state = 0, .external_lex_state = 3}, + [1761] = {.lex_state = 4, .external_lex_state = 3}, + [1762] = {.lex_state = 58, .external_lex_state = 3}, + [1763] = {.lex_state = 58, .external_lex_state = 3}, [1764] = {.lex_state = 4, .external_lex_state = 3}, - [1765] = {.lex_state = 4, .external_lex_state = 3}, - [1766] = {.lex_state = 4, .external_lex_state = 3}, - [1767] = {.lex_state = 18, .external_lex_state = 3}, - [1768] = {.lex_state = 0, .external_lex_state = 3}, - [1769] = {.lex_state = 4, .external_lex_state = 3}, - [1770] = {.lex_state = 4, .external_lex_state = 3}, - [1771] = {.lex_state = 18, .external_lex_state = 3}, - [1772] = {.lex_state = 18, .external_lex_state = 3}, - [1773] = {.lex_state = 18, .external_lex_state = 3}, + [1765] = {.lex_state = 0, .external_lex_state = 3}, + [1766] = {.lex_state = 0, .external_lex_state = 3}, + [1767] = {.lex_state = 19, .external_lex_state = 3}, + [1768] = {.lex_state = 58, .external_lex_state = 3}, + [1769] = {.lex_state = 58, .external_lex_state = 3}, + [1770] = {.lex_state = 58, .external_lex_state = 3}, + [1771] = {.lex_state = 58, .external_lex_state = 3}, + [1772] = {.lex_state = 0, .external_lex_state = 3}, + [1773] = {.lex_state = 58, .external_lex_state = 3}, [1774] = {.lex_state = 4, .external_lex_state = 3}, - [1775] = {.lex_state = 58, .external_lex_state = 3}, + [1775] = {.lex_state = 18, .external_lex_state = 3}, [1776] = {.lex_state = 4, .external_lex_state = 3}, - [1777] = {.lex_state = 9, .external_lex_state = 3}, - [1778] = {.lex_state = 9, .external_lex_state = 3}, - [1779] = {.lex_state = 18, .external_lex_state = 3}, - [1780] = {.lex_state = 0, .external_lex_state = 3}, - [1781] = {.lex_state = 4, .external_lex_state = 3}, - [1782] = {.lex_state = 18, .external_lex_state = 3}, - [1783] = {.lex_state = 4, .external_lex_state = 3}, - [1784] = {.lex_state = 4, .external_lex_state = 3}, - [1785] = {.lex_state = 18, .external_lex_state = 3}, + [1777] = {.lex_state = 18, .external_lex_state = 3}, + [1778] = {.lex_state = 58, .external_lex_state = 3}, + [1779] = {.lex_state = 4, .external_lex_state = 3}, + [1780] = {.lex_state = 9, .external_lex_state = 3}, + [1781] = {.lex_state = 58, .external_lex_state = 3}, + [1782] = {.lex_state = 4, .external_lex_state = 3}, + [1783] = {.lex_state = 0, .external_lex_state = 3}, + [1784] = {.lex_state = 18, .external_lex_state = 3}, + [1785] = {.lex_state = 0, .external_lex_state = 3}, [1786] = {.lex_state = 4, .external_lex_state = 3}, - [1787] = {.lex_state = 4, .external_lex_state = 3}, - [1788] = {.lex_state = 0, .external_lex_state = 3}, - [1789] = {.lex_state = 4, .external_lex_state = 3}, + [1787] = {.lex_state = 58, .external_lex_state = 3}, + [1788] = {.lex_state = 58, .external_lex_state = 3}, + [1789] = {.lex_state = 58, .external_lex_state = 3}, [1790] = {.lex_state = 4, .external_lex_state = 3}, - [1791] = {.lex_state = 9, .external_lex_state = 3}, - [1792] = {.lex_state = 18, .external_lex_state = 3}, - [1793] = {.lex_state = 4, .external_lex_state = 3}, - [1794] = {.lex_state = 4, .external_lex_state = 3}, - [1795] = {.lex_state = 19, .external_lex_state = 3}, + [1791] = {.lex_state = 4, .external_lex_state = 3}, + [1792] = {.lex_state = 0, .external_lex_state = 3}, + [1793] = {.lex_state = 58, .external_lex_state = 3}, + [1794] = {.lex_state = 58, .external_lex_state = 3}, + [1795] = {.lex_state = 4, .external_lex_state = 3}, [1796] = {.lex_state = 4, .external_lex_state = 3}, - [1797] = {.lex_state = 0, .external_lex_state = 3}, - [1798] = {.lex_state = 4, .external_lex_state = 4}, - [1799] = {.lex_state = 4, .external_lex_state = 3}, - [1800] = {.lex_state = 58, .external_lex_state = 3}, - [1801] = {.lex_state = 58, .external_lex_state = 3}, - [1802] = {.lex_state = 58, .external_lex_state = 3}, - [1803] = {.lex_state = 58, .external_lex_state = 3}, - [1804] = {.lex_state = 58, .external_lex_state = 3}, - [1805] = {.lex_state = 58, .external_lex_state = 3}, - [1806] = {.lex_state = 58, .external_lex_state = 3}, + [1797] = {.lex_state = 4, .external_lex_state = 3}, + [1798] = {.lex_state = 0, .external_lex_state = 3}, + [1799] = {.lex_state = 4, .external_lex_state = 4}, + [1800] = {.lex_state = 4, .external_lex_state = 4}, + [1801] = {.lex_state = 0, .external_lex_state = 3}, + [1802] = {.lex_state = 4, .external_lex_state = 4}, + [1803] = {.lex_state = 18, .external_lex_state = 3}, + [1804] = {.lex_state = 0, .external_lex_state = 3}, + [1805] = {.lex_state = 9, .external_lex_state = 3}, + [1806] = {.lex_state = 18, .external_lex_state = 3}, [1807] = {.lex_state = 58, .external_lex_state = 3}, - [1808] = {.lex_state = 58, .external_lex_state = 3}, + [1808] = {.lex_state = 4, .external_lex_state = 3}, [1809] = {.lex_state = 4, .external_lex_state = 3}, - [1810] = {.lex_state = 18, .external_lex_state = 3}, - [1811] = {.lex_state = 18, .external_lex_state = 3}, - [1812] = {.lex_state = 4, .external_lex_state = 3}, - [1813] = {.lex_state = 4, .external_lex_state = 3}, - [1814] = {.lex_state = 58, .external_lex_state = 3}, - [1815] = {.lex_state = 9, .external_lex_state = 3}, - [1816] = {.lex_state = 58, .external_lex_state = 3}, - [1817] = {.lex_state = 18, .external_lex_state = 3}, - [1818] = {.lex_state = 4, .external_lex_state = 3}, - [1819] = {.lex_state = 58, .external_lex_state = 3}, - [1820] = {.lex_state = 0, .external_lex_state = 3}, - [1821] = {.lex_state = 4, .external_lex_state = 4}, - [1822] = {.lex_state = 18, .external_lex_state = 3}, - [1823] = {.lex_state = 58, .external_lex_state = 3}, - [1824] = {.lex_state = 4, .external_lex_state = 3}, - [1825] = {.lex_state = 58, .external_lex_state = 3}, - [1826] = {.lex_state = 19, .external_lex_state = 3}, - [1827] = {.lex_state = 58, .external_lex_state = 3}, + [1810] = {.lex_state = 0, .external_lex_state = 3}, + [1811] = {.lex_state = 4, .external_lex_state = 4}, + [1812] = {.lex_state = 0, .external_lex_state = 3}, + [1813] = {.lex_state = 4, .external_lex_state = 4}, + [1814] = {.lex_state = 0, .external_lex_state = 3}, + [1815] = {.lex_state = 4, .external_lex_state = 4}, + [1816] = {.lex_state = 4, .external_lex_state = 3}, + [1817] = {.lex_state = 19, .external_lex_state = 3}, + [1818] = {.lex_state = 58, .external_lex_state = 3}, + [1819] = {.lex_state = 4, .external_lex_state = 3}, + [1820] = {.lex_state = 4, .external_lex_state = 3}, + [1821] = {.lex_state = 18, .external_lex_state = 3}, + [1822] = {.lex_state = 4, .external_lex_state = 3}, + [1823] = {.lex_state = 0, .external_lex_state = 3}, + [1824] = {.lex_state = 58, .external_lex_state = 3}, + [1825] = {.lex_state = 4, .external_lex_state = 4}, + [1826] = {.lex_state = 4, .external_lex_state = 3}, + [1827] = {.lex_state = 4, .external_lex_state = 4}, [1828] = {.lex_state = 0, .external_lex_state = 3}, - [1829] = {.lex_state = 4, .external_lex_state = 4}, - [1830] = {.lex_state = 4, .external_lex_state = 3}, + [1829] = {.lex_state = 18, .external_lex_state = 3}, + [1830] = {.lex_state = 0, .external_lex_state = 3}, [1831] = {.lex_state = 18, .external_lex_state = 3}, - [1832] = {.lex_state = 0, .external_lex_state = 3}, + [1832] = {.lex_state = 58, .external_lex_state = 3}, [1833] = {.lex_state = 58, .external_lex_state = 3}, - [1834] = {.lex_state = 9, .external_lex_state = 3}, - [1835] = {.lex_state = 4, .external_lex_state = 3}, - [1836] = {.lex_state = 4, .external_lex_state = 3}, - [1837] = {.lex_state = 4, .external_lex_state = 3}, - [1838] = {.lex_state = 58, .external_lex_state = 3}, + [1834] = {.lex_state = 4, .external_lex_state = 3}, + [1835] = {.lex_state = 18, .external_lex_state = 3}, + [1836] = {.lex_state = 58, .external_lex_state = 3}, + [1837] = {.lex_state = 19, .external_lex_state = 3}, + [1838] = {.lex_state = 0, .external_lex_state = 3}, [1839] = {.lex_state = 4, .external_lex_state = 3}, - [1840] = {.lex_state = 0, .external_lex_state = 3}, - [1841] = {.lex_state = 4, .external_lex_state = 3}, + [1840] = {.lex_state = 4, .external_lex_state = 3}, + [1841] = {.lex_state = 4, .external_lex_state = 4}, [1842] = {.lex_state = 4, .external_lex_state = 3}, - [1843] = {.lex_state = 19, .external_lex_state = 3}, + [1843] = {.lex_state = 58, .external_lex_state = 3}, [1844] = {.lex_state = 4, .external_lex_state = 3}, - [1845] = {.lex_state = 4, .external_lex_state = 3}, + [1845] = {.lex_state = 18, .external_lex_state = 3}, [1846] = {.lex_state = 58, .external_lex_state = 3}, - [1847] = {.lex_state = 0, .external_lex_state = 3}, - [1848] = {.lex_state = 18, .external_lex_state = 3}, - [1849] = {.lex_state = 18, .external_lex_state = 3}, - [1850] = {.lex_state = 4, .external_lex_state = 3}, - [1851] = {.lex_state = 4, .external_lex_state = 4}, - [1852] = {.lex_state = 0, .external_lex_state = 3}, + [1847] = {.lex_state = 58, .external_lex_state = 3}, + [1848] = {.lex_state = 0, .external_lex_state = 3}, + [1849] = {.lex_state = 58, .external_lex_state = 3}, + [1850] = {.lex_state = 19, .external_lex_state = 3}, + [1851] = {.lex_state = 4, .external_lex_state = 3}, + [1852] = {.lex_state = 18, .external_lex_state = 3}, [1853] = {.lex_state = 58, .external_lex_state = 3}, - [1854] = {.lex_state = 0, .external_lex_state = 3}, + [1854] = {.lex_state = 4, .external_lex_state = 3}, [1855] = {.lex_state = 4, .external_lex_state = 3}, - [1856] = {.lex_state = 4, .external_lex_state = 3}, + [1856] = {.lex_state = 0, .external_lex_state = 3}, [1857] = {.lex_state = 0, .external_lex_state = 3}, - [1858] = {.lex_state = 4, .external_lex_state = 3}, - [1859] = {.lex_state = 58, .external_lex_state = 3}, - [1860] = {.lex_state = 0, .external_lex_state = 3}, - [1861] = {.lex_state = 18, .external_lex_state = 3}, - [1862] = {.lex_state = 19, .external_lex_state = 3}, - [1863] = {.lex_state = 58, .external_lex_state = 3}, - [1864] = {.lex_state = 4, .external_lex_state = 4}, - [1865] = {.lex_state = 0, .external_lex_state = 3}, + [1858] = {.lex_state = 0, .external_lex_state = 3}, + [1859] = {.lex_state = 4, .external_lex_state = 3}, + [1860] = {.lex_state = 4, .external_lex_state = 3}, + [1861] = {.lex_state = 4, .external_lex_state = 3}, + [1862] = {.lex_state = 4, .external_lex_state = 3}, + [1863] = {.lex_state = 0, .external_lex_state = 3}, + [1864] = {.lex_state = 4, .external_lex_state = 3}, + [1865] = {.lex_state = 58, .external_lex_state = 3}, [1866] = {.lex_state = 4, .external_lex_state = 3}, [1867] = {.lex_state = 0, .external_lex_state = 3}, [1868] = {.lex_state = 0, .external_lex_state = 3}, - [1869] = {.lex_state = 58, .external_lex_state = 3}, + [1869] = {.lex_state = 0, .external_lex_state = 3}, [1870] = {.lex_state = 0, .external_lex_state = 3}, - [1871] = {.lex_state = 0, .external_lex_state = 3}, - [1872] = {.lex_state = 4, .external_lex_state = 4}, - [1873] = {.lex_state = 18, .external_lex_state = 3}, - [1874] = {.lex_state = 58, .external_lex_state = 3}, - [1875] = {.lex_state = 58, .external_lex_state = 3}, + [1871] = {.lex_state = 4, .external_lex_state = 3}, + [1872] = {.lex_state = 58, .external_lex_state = 3}, + [1873] = {.lex_state = 4, .external_lex_state = 3}, + [1874] = {.lex_state = 0, .external_lex_state = 3}, + [1875] = {.lex_state = 0, .external_lex_state = 3}, [1876] = {.lex_state = 0, .external_lex_state = 3}, - [1877] = {.lex_state = 4, .external_lex_state = 4}, + [1877] = {.lex_state = 0, .external_lex_state = 3}, [1878] = {.lex_state = 0, .external_lex_state = 3}, - [1879] = {.lex_state = 4, .external_lex_state = 3}, - [1880] = {.lex_state = 18, .external_lex_state = 3}, - [1881] = {.lex_state = 4, .external_lex_state = 4}, - [1882] = {.lex_state = 18, .external_lex_state = 3}, + [1879] = {.lex_state = 9, .external_lex_state = 3}, + [1880] = {.lex_state = 0, .external_lex_state = 3}, + [1881] = {.lex_state = 58, .external_lex_state = 3}, + [1882] = {.lex_state = 58, .external_lex_state = 3}, [1883] = {.lex_state = 4, .external_lex_state = 3}, - [1884] = {.lex_state = 4, .external_lex_state = 3}, - [1885] = {.lex_state = 58, .external_lex_state = 3}, - [1886] = {.lex_state = 58, .external_lex_state = 3}, - [1887] = {.lex_state = 4, .external_lex_state = 4}, - [1888] = {.lex_state = 58, .external_lex_state = 3}, - [1889] = {.lex_state = 58, .external_lex_state = 3}, - [1890] = {.lex_state = 4, .external_lex_state = 3}, + [1884] = {.lex_state = 0, .external_lex_state = 3}, + [1885] = {.lex_state = 0, .external_lex_state = 3}, + [1886] = {.lex_state = 0, .external_lex_state = 3}, + [1887] = {.lex_state = 0, .external_lex_state = 3}, + [1888] = {.lex_state = 3, .external_lex_state = 3}, + [1889] = {.lex_state = 0, .external_lex_state = 3}, + [1890] = {.lex_state = 58, .external_lex_state = 3}, [1891] = {.lex_state = 0, .external_lex_state = 3}, - [1892] = {.lex_state = 4, .external_lex_state = 3}, - [1893] = {.lex_state = 4, .external_lex_state = 3}, + [1892] = {.lex_state = 3, .external_lex_state = 3}, + [1893] = {.lex_state = 0, .external_lex_state = 3}, [1894] = {.lex_state = 58, .external_lex_state = 3}, [1895] = {.lex_state = 0, .external_lex_state = 3}, - [1896] = {.lex_state = 3, .external_lex_state = 3}, - [1897] = {.lex_state = 58, .external_lex_state = 3}, - [1898] = {.lex_state = 58, .external_lex_state = 3}, - [1899] = {.lex_state = 4, .external_lex_state = 3}, - [1900] = {.lex_state = 3, .external_lex_state = 3}, - [1901] = {.lex_state = 3, .external_lex_state = 3}, - [1902] = {.lex_state = 58, .external_lex_state = 3}, - [1903] = {.lex_state = 58, .external_lex_state = 3}, - [1904] = {.lex_state = 0, .external_lex_state = 3}, - [1905] = {.lex_state = 0, .external_lex_state = 3}, - [1906] = {.lex_state = 0, .external_lex_state = 3}, - [1907] = {.lex_state = 0, .external_lex_state = 3}, - [1908] = {.lex_state = 4, .external_lex_state = 3}, + [1896] = {.lex_state = 0, .external_lex_state = 3}, + [1897] = {.lex_state = 0, .external_lex_state = 3}, + [1898] = {.lex_state = 0, .external_lex_state = 3}, + [1899] = {.lex_state = 0, .external_lex_state = 3}, + [1900] = {.lex_state = 58, .external_lex_state = 3}, + [1901] = {.lex_state = 58, .external_lex_state = 3}, + [1902] = {.lex_state = 0, .external_lex_state = 3}, + [1903] = {.lex_state = 3, .external_lex_state = 3}, + [1904] = {.lex_state = 4, .external_lex_state = 3}, + [1905] = {.lex_state = 58, .external_lex_state = 3}, + [1906] = {.lex_state = 58, .external_lex_state = 3}, + [1907] = {.lex_state = 58, .external_lex_state = 3}, + [1908] = {.lex_state = 0, .external_lex_state = 3}, [1909] = {.lex_state = 58, .external_lex_state = 3}, - [1910] = {.lex_state = 58, .external_lex_state = 3}, + [1910] = {.lex_state = 0, .external_lex_state = 3}, [1911] = {.lex_state = 0, .external_lex_state = 3}, [1912] = {.lex_state = 58, .external_lex_state = 3}, - [1913] = {.lex_state = 4, .external_lex_state = 3}, - [1914] = {.lex_state = 3, .external_lex_state = 3}, - [1915] = {.lex_state = 4, .external_lex_state = 3}, - [1916] = {.lex_state = 0, .external_lex_state = 3}, - [1917] = {.lex_state = 58, .external_lex_state = 3}, - [1918] = {.lex_state = 9, .external_lex_state = 3}, - [1919] = {.lex_state = 0, .external_lex_state = 3}, + [1913] = {.lex_state = 0, .external_lex_state = 3}, + [1914] = {.lex_state = 4, .external_lex_state = 3}, + [1915] = {.lex_state = 58, .external_lex_state = 3}, + [1916] = {.lex_state = 4, .external_lex_state = 3}, + [1917] = {.lex_state = 0, .external_lex_state = 3}, + [1918] = {.lex_state = 58, .external_lex_state = 3}, + [1919] = {.lex_state = 58, .external_lex_state = 3}, [1920] = {.lex_state = 9, .external_lex_state = 3}, - [1921] = {.lex_state = 58, .external_lex_state = 3}, + [1921] = {.lex_state = 0, .external_lex_state = 3}, [1922] = {.lex_state = 0, .external_lex_state = 3}, - [1923] = {.lex_state = 58, .external_lex_state = 3}, + [1923] = {.lex_state = 0, .external_lex_state = 3}, [1924] = {.lex_state = 0, .external_lex_state = 3}, [1925] = {.lex_state = 0, .external_lex_state = 3}, - [1926] = {.lex_state = 4, .external_lex_state = 3}, - [1927] = {.lex_state = 58, .external_lex_state = 3}, + [1926] = {.lex_state = 58, .external_lex_state = 3}, + [1927] = {.lex_state = 0, .external_lex_state = 3}, [1928] = {.lex_state = 0, .external_lex_state = 3}, - [1929] = {.lex_state = 58, .external_lex_state = 3}, - [1930] = {.lex_state = 58, .external_lex_state = 3}, - [1931] = {.lex_state = 3, .external_lex_state = 3}, + [1929] = {.lex_state = 0, .external_lex_state = 3}, + [1930] = {.lex_state = 0, .external_lex_state = 3}, + [1931] = {.lex_state = 4, .external_lex_state = 3}, [1932] = {.lex_state = 0, .external_lex_state = 3}, [1933] = {.lex_state = 4, .external_lex_state = 3}, - [1934] = {.lex_state = 3, .external_lex_state = 3}, - [1935] = {.lex_state = 0, .external_lex_state = 3}, - [1936] = {.lex_state = 58, .external_lex_state = 3}, - [1937] = {.lex_state = 0, .external_lex_state = 3}, - [1938] = {.lex_state = 58, .external_lex_state = 3}, - [1939] = {.lex_state = 0, .external_lex_state = 3}, - [1940] = {.lex_state = 0, .external_lex_state = 3}, + [1934] = {.lex_state = 0, .external_lex_state = 3}, + [1935] = {.lex_state = 58, .external_lex_state = 3}, + [1936] = {.lex_state = 0, .external_lex_state = 3}, + [1937] = {.lex_state = 4, .external_lex_state = 3}, + [1938] = {.lex_state = 4, .external_lex_state = 3}, + [1939] = {.lex_state = 3, .external_lex_state = 3}, + [1940] = {.lex_state = 58, .external_lex_state = 3}, [1941] = {.lex_state = 58, .external_lex_state = 3}, - [1942] = {.lex_state = 3, .external_lex_state = 3}, + [1942] = {.lex_state = 0, .external_lex_state = 3}, [1943] = {.lex_state = 0, .external_lex_state = 3}, [1944] = {.lex_state = 0, .external_lex_state = 3}, [1945] = {.lex_state = 0, .external_lex_state = 3}, - [1946] = {.lex_state = 0, .external_lex_state = 3}, - [1947] = {.lex_state = 0, .external_lex_state = 3}, + [1946] = {.lex_state = 58, .external_lex_state = 3}, + [1947] = {.lex_state = 58, .external_lex_state = 3}, [1948] = {.lex_state = 0, .external_lex_state = 3}, [1949] = {.lex_state = 0, .external_lex_state = 3}, - [1950] = {.lex_state = 0, .external_lex_state = 3}, - [1951] = {.lex_state = 58, .external_lex_state = 3}, + [1950] = {.lex_state = 4, .external_lex_state = 3}, + [1951] = {.lex_state = 0, .external_lex_state = 3}, [1952] = {.lex_state = 0, .external_lex_state = 3}, - [1953] = {.lex_state = 0, .external_lex_state = 3}, + [1953] = {.lex_state = 4, .external_lex_state = 3}, [1954] = {.lex_state = 0, .external_lex_state = 3}, [1955] = {.lex_state = 0, .external_lex_state = 3}, - [1956] = {.lex_state = 58, .external_lex_state = 3}, + [1956] = {.lex_state = 0, .external_lex_state = 3}, [1957] = {.lex_state = 0, .external_lex_state = 3}, - [1958] = {.lex_state = 0, .external_lex_state = 3}, + [1958] = {.lex_state = 58, .external_lex_state = 3}, [1959] = {.lex_state = 0, .external_lex_state = 3}, [1960] = {.lex_state = 0, .external_lex_state = 3}, - [1961] = {.lex_state = 0, .external_lex_state = 3}, + [1961] = {.lex_state = 3, .external_lex_state = 3}, [1962] = {.lex_state = 0, .external_lex_state = 3}, - [1963] = {.lex_state = 0, .external_lex_state = 3}, - [1964] = {.lex_state = 4, .external_lex_state = 3}, - [1965] = {.lex_state = 0, .external_lex_state = 3}, - [1966] = {.lex_state = 4, .external_lex_state = 3}, - [1967] = {.lex_state = 58, .external_lex_state = 3}, - [1968] = {.lex_state = 3, .external_lex_state = 3}, + [1963] = {.lex_state = 3, .external_lex_state = 3}, + [1964] = {.lex_state = 0, .external_lex_state = 3}, + [1965] = {.lex_state = 58, .external_lex_state = 3}, + [1966] = {.lex_state = 0, .external_lex_state = 3}, + [1967] = {.lex_state = 0, .external_lex_state = 3}, + [1968] = {.lex_state = 58, .external_lex_state = 3}, [1969] = {.lex_state = 0, .external_lex_state = 3}, [1970] = {.lex_state = 0, .external_lex_state = 3}, - [1971] = {.lex_state = 0, .external_lex_state = 3}, - [1972] = {.lex_state = 0, .external_lex_state = 3}, - [1973] = {.lex_state = 0, .external_lex_state = 3}, + [1971] = {.lex_state = 3, .external_lex_state = 3}, + [1972] = {.lex_state = 3, .external_lex_state = 3}, + [1973] = {.lex_state = 58, .external_lex_state = 3}, [1974] = {.lex_state = 0, .external_lex_state = 3}, [1975] = {.lex_state = 0, .external_lex_state = 3}, - [1976] = {.lex_state = 4, .external_lex_state = 3}, - [1977] = {.lex_state = 0, .external_lex_state = 3}, - [1978] = {.lex_state = 0, .external_lex_state = 3}, + [1976] = {.lex_state = 0, .external_lex_state = 3}, + [1977] = {.lex_state = 9, .external_lex_state = 3}, + [1978] = {.lex_state = 58, .external_lex_state = 3}, [1979] = {.lex_state = 0, .external_lex_state = 3}, - [1980] = {.lex_state = 0, .external_lex_state = 3}, - [1981] = {.lex_state = 0, .external_lex_state = 3}, - [1982] = {.lex_state = 0, .external_lex_state = 3}, - [1983] = {.lex_state = 0, .external_lex_state = 3}, - [1984] = {.lex_state = 3, .external_lex_state = 3}, - [1985] = {.lex_state = 0, .external_lex_state = 3}, - [1986] = {.lex_state = 4, .external_lex_state = 3}, + [1980] = {.lex_state = 58, .external_lex_state = 3}, + [1981] = {.lex_state = 58, .external_lex_state = 3}, + [1982] = {.lex_state = 4, .external_lex_state = 3}, + [1983] = {.lex_state = 3, .external_lex_state = 3}, + [1984] = {.lex_state = 0, .external_lex_state = 3}, + [1985] = {.lex_state = 3, .external_lex_state = 3}, + [1986] = {.lex_state = 3, .external_lex_state = 3}, [1987] = {.lex_state = 0, .external_lex_state = 3}, - [1988] = {.lex_state = 4, .external_lex_state = 3}, - [1989] = {.lex_state = 0, .external_lex_state = 3}, - [1990] = {.lex_state = 0, .external_lex_state = 3}, - [1991] = {.lex_state = 9, .external_lex_state = 3}, - [1992] = {.lex_state = 0, .external_lex_state = 3}, + [1988] = {.lex_state = 58, .external_lex_state = 3}, + [1989] = {.lex_state = 58, .external_lex_state = 3}, + [1990] = {.lex_state = 58, .external_lex_state = 3}, + [1991] = {.lex_state = 3, .external_lex_state = 3}, + [1992] = {.lex_state = 3, .external_lex_state = 3}, [1993] = {.lex_state = 58, .external_lex_state = 3}, [1994] = {.lex_state = 0, .external_lex_state = 3}, - [1995] = {.lex_state = 4, .external_lex_state = 3}, - [1996] = {.lex_state = 0, .external_lex_state = 3}, - [1997] = {.lex_state = 0, .external_lex_state = 3}, - [1998] = {.lex_state = 58, .external_lex_state = 3}, - [1999] = {.lex_state = 58, .external_lex_state = 3}, - [2000] = {.lex_state = 0, .external_lex_state = 3}, - [2001] = {.lex_state = 3, .external_lex_state = 3}, - [2002] = {.lex_state = 3, .external_lex_state = 3}, + [1995] = {.lex_state = 0, .external_lex_state = 3}, + [1996] = {.lex_state = 4, .external_lex_state = 3}, + [1997] = {.lex_state = 3, .external_lex_state = 3}, + [1998] = {.lex_state = 0, .external_lex_state = 3}, + [1999] = {.lex_state = 0, .external_lex_state = 3}, + [2000] = {.lex_state = 58, .external_lex_state = 3}, + [2001] = {.lex_state = 18, .external_lex_state = 3}, + [2002] = {.lex_state = 58, .external_lex_state = 3}, [2003] = {.lex_state = 0, .external_lex_state = 3}, - [2004] = {.lex_state = 4, .external_lex_state = 3}, + [2004] = {.lex_state = 9, .external_lex_state = 3}, [2005] = {.lex_state = 3, .external_lex_state = 3}, - [2006] = {.lex_state = 0, .external_lex_state = 3}, - [2007] = {.lex_state = 0, .external_lex_state = 3}, - [2008] = {.lex_state = 3, .external_lex_state = 3}, - [2009] = {.lex_state = 0, .external_lex_state = 3}, + [2006] = {.lex_state = 3, .external_lex_state = 3}, + [2007] = {.lex_state = 58, .external_lex_state = 3}, + [2008] = {.lex_state = 58, .external_lex_state = 3}, + [2009] = {.lex_state = 58, .external_lex_state = 3}, [2010] = {.lex_state = 0, .external_lex_state = 3}, - [2011] = {.lex_state = 58, .external_lex_state = 3}, + [2011] = {.lex_state = 3, .external_lex_state = 3}, [2012] = {.lex_state = 0, .external_lex_state = 3}, [2013] = {.lex_state = 0, .external_lex_state = 3}, - [2014] = {.lex_state = 0, .external_lex_state = 3}, - [2015] = {.lex_state = 58, .external_lex_state = 3}, + [2014] = {.lex_state = 9, .external_lex_state = 3}, + [2015] = {.lex_state = 3, .external_lex_state = 3}, [2016] = {.lex_state = 0, .external_lex_state = 3}, - [2017] = {.lex_state = 58, .external_lex_state = 3}, + [2017] = {.lex_state = 0, .external_lex_state = 3}, [2018] = {.lex_state = 58, .external_lex_state = 3}, - [2019] = {.lex_state = 58, .external_lex_state = 3}, - [2020] = {.lex_state = 0, .external_lex_state = 3}, + [2019] = {.lex_state = 0, .external_lex_state = 3}, + [2020] = {.lex_state = 58, .external_lex_state = 3}, [2021] = {.lex_state = 4, .external_lex_state = 3}, - [2022] = {.lex_state = 3, .external_lex_state = 3}, - [2023] = {.lex_state = 0, .external_lex_state = 3}, + [2022] = {.lex_state = 58, .external_lex_state = 3}, + [2023] = {.lex_state = 58, .external_lex_state = 3}, [2024] = {.lex_state = 0, .external_lex_state = 3}, [2025] = {.lex_state = 58, .external_lex_state = 3}, - [2026] = {.lex_state = 58, .external_lex_state = 3}, + [2026] = {.lex_state = 0, .external_lex_state = 3}, [2027] = {.lex_state = 0, .external_lex_state = 3}, - [2028] = {.lex_state = 58, .external_lex_state = 3}, - [2029] = {.lex_state = 58, .external_lex_state = 3}, - [2030] = {.lex_state = 58, .external_lex_state = 3}, + [2028] = {.lex_state = 0, .external_lex_state = 3}, + [2029] = {.lex_state = 0, .external_lex_state = 3}, + [2030] = {.lex_state = 0, .external_lex_state = 3}, [2031] = {.lex_state = 0, .external_lex_state = 3}, [2032] = {.lex_state = 58, .external_lex_state = 3}, [2033] = {.lex_state = 4, .external_lex_state = 3}, - [2034] = {.lex_state = 58, .external_lex_state = 3}, - [2035] = {.lex_state = 0, .external_lex_state = 3}, + [2034] = {.lex_state = 0, .external_lex_state = 3}, + [2035] = {.lex_state = 4, .external_lex_state = 3}, [2036] = {.lex_state = 0, .external_lex_state = 3}, [2037] = {.lex_state = 0, .external_lex_state = 3}, [2038] = {.lex_state = 0, .external_lex_state = 3}, - [2039] = {.lex_state = 58, .external_lex_state = 3}, + [2039] = {.lex_state = 0, .external_lex_state = 3}, [2040] = {.lex_state = 0, .external_lex_state = 3}, - [2041] = {.lex_state = 0, .external_lex_state = 3}, + [2041] = {.lex_state = 4, .external_lex_state = 3}, [2042] = {.lex_state = 0, .external_lex_state = 3}, - [2043] = {.lex_state = 4, .external_lex_state = 3}, + [2043] = {.lex_state = 58, .external_lex_state = 3}, [2044] = {.lex_state = 0, .external_lex_state = 3}, [2045] = {.lex_state = 0, .external_lex_state = 3}, [2046] = {.lex_state = 0, .external_lex_state = 3}, [2047] = {.lex_state = 0, .external_lex_state = 3}, - [2048] = {.lex_state = 4, .external_lex_state = 3}, - [2049] = {.lex_state = 3, .external_lex_state = 3}, + [2048] = {.lex_state = 0, .external_lex_state = 3}, + [2049] = {.lex_state = 58, .external_lex_state = 3}, [2050] = {.lex_state = 0, .external_lex_state = 3}, [2051] = {.lex_state = 0, .external_lex_state = 3}, - [2052] = {.lex_state = 58, .external_lex_state = 3}, + [2052] = {.lex_state = 0, .external_lex_state = 3}, [2053] = {.lex_state = 58, .external_lex_state = 3}, - [2054] = {.lex_state = 4, .external_lex_state = 3}, + [2054] = {.lex_state = 58, .external_lex_state = 3}, [2055] = {.lex_state = 0, .external_lex_state = 3}, [2056] = {.lex_state = 0, .external_lex_state = 3}, - [2057] = {.lex_state = 58, .external_lex_state = 3}, - [2058] = {.lex_state = 4, .external_lex_state = 3}, + [2057] = {.lex_state = 0, .external_lex_state = 3}, + [2058] = {.lex_state = 58, .external_lex_state = 3}, [2059] = {.lex_state = 0, .external_lex_state = 3}, - [2060] = {.lex_state = 0, .external_lex_state = 3}, - [2061] = {.lex_state = 58, .external_lex_state = 3}, - [2062] = {.lex_state = 0, .external_lex_state = 3}, - [2063] = {.lex_state = 4, .external_lex_state = 3}, + [2060] = {.lex_state = 58, .external_lex_state = 3}, + [2061] = {.lex_state = 0, .external_lex_state = 3}, + [2062] = {.lex_state = 3, .external_lex_state = 3}, + [2063] = {.lex_state = 0, .external_lex_state = 3}, [2064] = {.lex_state = 0, .external_lex_state = 3}, - [2065] = {.lex_state = 0, .external_lex_state = 3}, + [2065] = {.lex_state = 58, .external_lex_state = 3}, [2066] = {.lex_state = 0, .external_lex_state = 3}, [2067] = {.lex_state = 0, .external_lex_state = 3}, - [2068] = {.lex_state = 3, .external_lex_state = 3}, - [2069] = {.lex_state = 0, .external_lex_state = 3}, + [2068] = {.lex_state = 0, .external_lex_state = 3}, + [2069] = {.lex_state = 58, .external_lex_state = 3}, [2070] = {.lex_state = 0, .external_lex_state = 3}, - [2071] = {.lex_state = 0, .external_lex_state = 3}, - [2072] = {.lex_state = 0, .external_lex_state = 3}, - [2073] = {.lex_state = 0, .external_lex_state = 3}, + [2071] = {.lex_state = 58, .external_lex_state = 3}, + [2072] = {.lex_state = 4, .external_lex_state = 3}, + [2073] = {.lex_state = 58, .external_lex_state = 3}, [2074] = {.lex_state = 0, .external_lex_state = 3}, - [2075] = {.lex_state = 58, .external_lex_state = 3}, - [2076] = {.lex_state = 58, .external_lex_state = 3}, - [2077] = {.lex_state = 58, .external_lex_state = 3}, + [2075] = {.lex_state = 0, .external_lex_state = 3}, + [2076] = {.lex_state = 0, .external_lex_state = 3}, + [2077] = {.lex_state = 0, .external_lex_state = 3}, [2078] = {.lex_state = 0, .external_lex_state = 3}, [2079] = {.lex_state = 0, .external_lex_state = 3}, [2080] = {.lex_state = 0, .external_lex_state = 3}, [2081] = {.lex_state = 3, .external_lex_state = 3}, - [2082] = {.lex_state = 3, .external_lex_state = 3}, - [2083] = {.lex_state = 4, .external_lex_state = 3}, + [2082] = {.lex_state = 0, .external_lex_state = 3}, + [2083] = {.lex_state = 58, .external_lex_state = 3}, [2084] = {.lex_state = 0, .external_lex_state = 3}, - [2085] = {.lex_state = 58, .external_lex_state = 3}, - [2086] = {.lex_state = 18, .external_lex_state = 3}, + [2085] = {.lex_state = 0, .external_lex_state = 3}, + [2086] = {.lex_state = 0, .external_lex_state = 3}, [2087] = {.lex_state = 0, .external_lex_state = 3}, - [2088] = {.lex_state = 58, .external_lex_state = 3}, + [2088] = {.lex_state = 0, .external_lex_state = 3}, [2089] = {.lex_state = 58, .external_lex_state = 3}, [2090] = {.lex_state = 0, .external_lex_state = 3}, [2091] = {.lex_state = 58, .external_lex_state = 3}, [2092] = {.lex_state = 0, .external_lex_state = 3}, - [2093] = {.lex_state = 58, .external_lex_state = 3}, - [2094] = {.lex_state = 58, .external_lex_state = 3}, + [2093] = {.lex_state = 0, .external_lex_state = 3}, + [2094] = {.lex_state = 0, .external_lex_state = 3}, [2095] = {.lex_state = 58, .external_lex_state = 3}, [2096] = {.lex_state = 58, .external_lex_state = 3}, - [2097] = {.lex_state = 0, .external_lex_state = 3}, + [2097] = {.lex_state = 58, .external_lex_state = 3}, [2098] = {.lex_state = 0, .external_lex_state = 3}, - [2099] = {.lex_state = 58, .external_lex_state = 3}, - [2100] = {.lex_state = 4, .external_lex_state = 3}, - [2101] = {.lex_state = 58, .external_lex_state = 3}, - [2102] = {.lex_state = 4, .external_lex_state = 3}, + [2099] = {.lex_state = 0, .external_lex_state = 3}, + [2100] = {.lex_state = 0, .external_lex_state = 3}, + [2101] = {.lex_state = 0, .external_lex_state = 3}, + [2102] = {.lex_state = 58, .external_lex_state = 3}, [2103] = {.lex_state = 58, .external_lex_state = 3}, - [2104] = {.lex_state = 0, .external_lex_state = 3}, - [2105] = {.lex_state = 0, .external_lex_state = 3}, - [2106] = {.lex_state = 9, .external_lex_state = 3}, - [2107] = {.lex_state = 58, .external_lex_state = 3}, - [2108] = {.lex_state = 0, .external_lex_state = 3}, - [2109] = {.lex_state = 58, .external_lex_state = 3}, + [2104] = {.lex_state = 58, .external_lex_state = 3}, + [2105] = {.lex_state = 58, .external_lex_state = 3}, + [2106] = {.lex_state = 0, .external_lex_state = 3}, + [2107] = {.lex_state = 0, .external_lex_state = 3}, + [2108] = {.lex_state = 4, .external_lex_state = 3}, + [2109] = {.lex_state = 0, .external_lex_state = 3}, [2110] = {.lex_state = 0, .external_lex_state = 3}, - [2111] = {.lex_state = 4, .external_lex_state = 3}, + [2111] = {.lex_state = 0, .external_lex_state = 3}, [2112] = {.lex_state = 0, .external_lex_state = 3}, [2113] = {.lex_state = 0, .external_lex_state = 3}, - [2114] = {.lex_state = 58, .external_lex_state = 3}, - [2115] = {.lex_state = 58, .external_lex_state = 3}, - [2116] = {.lex_state = 0, .external_lex_state = 3}, - [2117] = {.lex_state = 0, .external_lex_state = 3}, - [2118] = {.lex_state = 4, .external_lex_state = 3}, - [2119] = {.lex_state = 0, .external_lex_state = 3}, - [2120] = {.lex_state = 4, .external_lex_state = 3}, - [2121] = {.lex_state = 58, .external_lex_state = 3}, + [2114] = {.lex_state = 0, .external_lex_state = 3}, + [2115] = {.lex_state = 0, .external_lex_state = 3}, + [2116] = {.lex_state = 58, .external_lex_state = 3}, + [2117] = {.lex_state = 4, .external_lex_state = 3}, + [2118] = {.lex_state = 0, .external_lex_state = 3}, + [2119] = {.lex_state = 4, .external_lex_state = 3}, + [2120] = {.lex_state = 0, .external_lex_state = 3}, + [2121] = {.lex_state = 0, .external_lex_state = 3}, [2122] = {.lex_state = 0, .external_lex_state = 3}, - [2123] = {.lex_state = 58, .external_lex_state = 3}, - [2124] = {.lex_state = 0, .external_lex_state = 3}, - [2125] = {.lex_state = 58, .external_lex_state = 3}, + [2123] = {.lex_state = 0, .external_lex_state = 3}, + [2124] = {.lex_state = 58, .external_lex_state = 3}, + [2125] = {.lex_state = 0, .external_lex_state = 3}, [2126] = {.lex_state = 0, .external_lex_state = 3}, [2127] = {.lex_state = 0, .external_lex_state = 3}, [2128] = {.lex_state = 0, .external_lex_state = 3}, - [2129] = {.lex_state = 0, .external_lex_state = 3}, - [2130] = {.lex_state = 0, .external_lex_state = 3}, - [2131] = {.lex_state = 0, .external_lex_state = 3}, - [2132] = {.lex_state = 9, .external_lex_state = 3}, - [2133] = {.lex_state = 58, .external_lex_state = 3}, + [2129] = {.lex_state = 58, .external_lex_state = 3}, + [2130] = {.lex_state = 4, .external_lex_state = 3}, + [2131] = {.lex_state = 4, .external_lex_state = 3}, + [2132] = {.lex_state = 0, .external_lex_state = 3}, + [2133] = {.lex_state = 0, .external_lex_state = 3}, [2134] = {.lex_state = 0, .external_lex_state = 3}, [2135] = {.lex_state = 4, .external_lex_state = 3}, - [2136] = {.lex_state = 0, .external_lex_state = 3}, - [2137] = {.lex_state = 58, .external_lex_state = 3}, - [2138] = {.lex_state = 0, .external_lex_state = 3}, + [2136] = {.lex_state = 58, .external_lex_state = 3}, + [2137] = {.lex_state = 0, .external_lex_state = 3}, + [2138] = {.lex_state = 4, .external_lex_state = 3}, [2139] = {.lex_state = 0, .external_lex_state = 3}, [2140] = {.lex_state = 0, .external_lex_state = 3}, [2141] = {.lex_state = 0, .external_lex_state = 3}, - [2142] = {.lex_state = 58, .external_lex_state = 3}, - [2143] = {.lex_state = 3, .external_lex_state = 3}, - [2144] = {.lex_state = 0, .external_lex_state = 3}, + [2142] = {.lex_state = 0, .external_lex_state = 3}, + [2143] = {.lex_state = 0, .external_lex_state = 3}, + [2144] = {.lex_state = 4, .external_lex_state = 3}, [2145] = {.lex_state = 0, .external_lex_state = 3}, - [2146] = {.lex_state = 0, .external_lex_state = 3}, - [2147] = {.lex_state = 0, .external_lex_state = 3}, - [2148] = {.lex_state = 0, .external_lex_state = 3}, + [2146] = {.lex_state = 58, .external_lex_state = 3}, + [2147] = {.lex_state = 4, .external_lex_state = 3}, + [2148] = {.lex_state = 4, .external_lex_state = 3}, [2149] = {.lex_state = 0, .external_lex_state = 3}, [2150] = {.lex_state = 0, .external_lex_state = 3}, - [2151] = {.lex_state = 3, .external_lex_state = 3}, - [2152] = {.lex_state = 0, .external_lex_state = 3}, - [2153] = {.lex_state = 0, .external_lex_state = 3}, + [2151] = {.lex_state = 0, .external_lex_state = 3}, + [2152] = {.lex_state = 4, .external_lex_state = 3}, + [2153] = {.lex_state = 4, .external_lex_state = 3}, [2154] = {.lex_state = 0, .external_lex_state = 3}, - [2155] = {.lex_state = 58, .external_lex_state = 3}, - [2156] = {.lex_state = 58, .external_lex_state = 3}, + [2155] = {.lex_state = 4, .external_lex_state = 3}, + [2156] = {.lex_state = 0, .external_lex_state = 3}, [2157] = {.lex_state = 0, .external_lex_state = 3}, - [2158] = {.lex_state = 0, .external_lex_state = 3}, - [2159] = {.lex_state = 4, .external_lex_state = 3}, - [2160] = {.lex_state = 4, .external_lex_state = 3}, + [2158] = {.lex_state = 18, .external_lex_state = 3}, + [2159] = {.lex_state = 0, .external_lex_state = 3}, + [2160] = {.lex_state = 0, .external_lex_state = 3}, [2161] = {.lex_state = 0, .external_lex_state = 3}, [2162] = {.lex_state = 0, .external_lex_state = 3}, [2163] = {.lex_state = 0, .external_lex_state = 3}, - [2164] = {.lex_state = 4, .external_lex_state = 3}, - [2165] = {.lex_state = 0, .external_lex_state = 3}, - [2166] = {.lex_state = 4, .external_lex_state = 3}, - [2167] = {.lex_state = 0, .external_lex_state = 3}, + [2164] = {.lex_state = 0, .external_lex_state = 3}, + [2165] = {.lex_state = 4, .external_lex_state = 3}, + [2166] = {.lex_state = 0, .external_lex_state = 3}, + [2167] = {.lex_state = 4, .external_lex_state = 3}, [2168] = {.lex_state = 0, .external_lex_state = 3}, [2169] = {.lex_state = 0, .external_lex_state = 3}, - [2170] = {.lex_state = 0, .external_lex_state = 3}, - [2171] = {.lex_state = 4, .external_lex_state = 3}, - [2172] = {.lex_state = 0, .external_lex_state = 3}, + [2170] = {.lex_state = 4, .external_lex_state = 3}, + [2171] = {.lex_state = 0, .external_lex_state = 3}, + [2172] = {.lex_state = 58, .external_lex_state = 3}, [2173] = {.lex_state = 0, .external_lex_state = 3}, - [2174] = {.lex_state = 4, .external_lex_state = 3}, - [2175] = {.lex_state = 58, .external_lex_state = 3}, + [2174] = {.lex_state = 0, .external_lex_state = 3}, + [2175] = {.lex_state = 0, .external_lex_state = 3}, [2176] = {.lex_state = 0, .external_lex_state = 3}, - [2177] = {.lex_state = 58, .external_lex_state = 3}, - [2178] = {.lex_state = 0, .external_lex_state = 3}, - [2179] = {.lex_state = 0, .external_lex_state = 3}, - [2180] = {.lex_state = 0, .external_lex_state = 3}, + [2177] = {.lex_state = 0, .external_lex_state = 3}, + [2178] = {.lex_state = 58, .external_lex_state = 3}, + [2179] = {.lex_state = 4, .external_lex_state = 3}, + [2180] = {.lex_state = 58, .external_lex_state = 3}, [2181] = {.lex_state = 4, .external_lex_state = 3}, - [2182] = {.lex_state = 0, .external_lex_state = 3}, - [2183] = {.lex_state = 58, .external_lex_state = 3}, + [2182] = {.lex_state = 18, .external_lex_state = 3}, + [2183] = {.lex_state = 0, .external_lex_state = 3}, [2184] = {.lex_state = 0, .external_lex_state = 3}, - [2185] = {.lex_state = 58, .external_lex_state = 3}, + [2185] = {.lex_state = 0, .external_lex_state = 3}, [2186] = {.lex_state = 0, .external_lex_state = 3}, - [2187] = {.lex_state = 0, .external_lex_state = 3}, + [2187] = {.lex_state = 58, .external_lex_state = 3}, [2188] = {.lex_state = 0, .external_lex_state = 3}, [2189] = {.lex_state = 0, .external_lex_state = 3}, [2190] = {.lex_state = 0, .external_lex_state = 3}, - [2191] = {.lex_state = 58, .external_lex_state = 3}, + [2191] = {.lex_state = 0, .external_lex_state = 3}, [2192] = {.lex_state = 0, .external_lex_state = 3}, - [2193] = {.lex_state = 4, .external_lex_state = 3}, - [2194] = {.lex_state = 0, .external_lex_state = 3}, - [2195] = {.lex_state = 0, .external_lex_state = 3}, - [2196] = {.lex_state = 58, .external_lex_state = 3}, - [2197] = {.lex_state = 58, .external_lex_state = 3}, + [2193] = {.lex_state = 18, .external_lex_state = 3}, + [2194] = {.lex_state = 0, .external_lex_state = 5}, + [2195] = {.lex_state = 18, .external_lex_state = 3}, + [2196] = {.lex_state = 4, .external_lex_state = 3}, + [2197] = {.lex_state = 0, .external_lex_state = 3}, [2198] = {.lex_state = 0, .external_lex_state = 3}, - [2199] = {.lex_state = 58, .external_lex_state = 3}, + [2199] = {.lex_state = 0, .external_lex_state = 3}, [2200] = {.lex_state = 0, .external_lex_state = 3}, - [2201] = {.lex_state = 0, .external_lex_state = 3}, + [2201] = {.lex_state = 18, .external_lex_state = 3}, [2202] = {.lex_state = 0, .external_lex_state = 3}, - [2203] = {.lex_state = 4, .external_lex_state = 3}, + [2203] = {.lex_state = 0, .external_lex_state = 3}, [2204] = {.lex_state = 0, .external_lex_state = 3}, - [2205] = {.lex_state = 58, .external_lex_state = 3}, + [2205] = {.lex_state = 0, .external_lex_state = 3}, [2206] = {.lex_state = 0, .external_lex_state = 3}, - [2207] = {.lex_state = 4, .external_lex_state = 3}, + [2207] = {.lex_state = 58, .external_lex_state = 3}, [2208] = {.lex_state = 0, .external_lex_state = 3}, - [2209] = {.lex_state = 4, .external_lex_state = 3}, - [2210] = {.lex_state = 0, .external_lex_state = 3}, + [2209] = {.lex_state = 0, .external_lex_state = 3}, + [2210] = {.lex_state = 4, .external_lex_state = 3}, [2211] = {.lex_state = 0, .external_lex_state = 3}, - [2212] = {.lex_state = 58, .external_lex_state = 3}, - [2213] = {.lex_state = 0, .external_lex_state = 3}, + [2212] = {.lex_state = 0, .external_lex_state = 3}, + [2213] = {.lex_state = 4, .external_lex_state = 3}, [2214] = {.lex_state = 0, .external_lex_state = 3}, [2215] = {.lex_state = 0, .external_lex_state = 3}, - [2216] = {.lex_state = 0, .external_lex_state = 3}, - [2217] = {.lex_state = 4, .external_lex_state = 3}, + [2216] = {.lex_state = 58, .external_lex_state = 3}, + [2217] = {.lex_state = 0, .external_lex_state = 3}, [2218] = {.lex_state = 0, .external_lex_state = 3}, [2219] = {.lex_state = 0, .external_lex_state = 3}, - [2220] = {.lex_state = 58, .external_lex_state = 3}, + [2220] = {.lex_state = 4, .external_lex_state = 3}, [2221] = {.lex_state = 0, .external_lex_state = 3}, - [2222] = {.lex_state = 0, .external_lex_state = 3}, + [2222] = {.lex_state = 9, .external_lex_state = 3}, [2223] = {.lex_state = 58, .external_lex_state = 3}, [2224] = {.lex_state = 0, .external_lex_state = 3}, - [2225] = {.lex_state = 58, .external_lex_state = 3}, - [2226] = {.lex_state = 4, .external_lex_state = 3}, + [2225] = {.lex_state = 0, .external_lex_state = 3}, + [2226] = {.lex_state = 0, .external_lex_state = 3}, [2227] = {.lex_state = 0, .external_lex_state = 3}, - [2228] = {.lex_state = 0, .external_lex_state = 3}, - [2229] = {.lex_state = 4, .external_lex_state = 3}, + [2228] = {.lex_state = 58, .external_lex_state = 3}, + [2229] = {.lex_state = 58, .external_lex_state = 3}, [2230] = {.lex_state = 0, .external_lex_state = 3}, [2231] = {.lex_state = 0, .external_lex_state = 3}, [2232] = {.lex_state = 0, .external_lex_state = 3}, - [2233] = {.lex_state = 58, .external_lex_state = 3}, - [2234] = {.lex_state = 4, .external_lex_state = 3}, - [2235] = {.lex_state = 58, .external_lex_state = 3}, + [2233] = {.lex_state = 0, .external_lex_state = 3}, + [2234] = {.lex_state = 0, .external_lex_state = 3}, + [2235] = {.lex_state = 0, .external_lex_state = 3}, [2236] = {.lex_state = 0, .external_lex_state = 3}, [2237] = {.lex_state = 0, .external_lex_state = 3}, - [2238] = {.lex_state = 18, .external_lex_state = 3}, + [2238] = {.lex_state = 0, .external_lex_state = 3}, [2239] = {.lex_state = 0, .external_lex_state = 3}, [2240] = {.lex_state = 58, .external_lex_state = 3}, - [2241] = {.lex_state = 58, .external_lex_state = 3}, - [2242] = {.lex_state = 58, .external_lex_state = 3}, + [2241] = {.lex_state = 0, .external_lex_state = 3}, + [2242] = {.lex_state = 18, .external_lex_state = 3}, [2243] = {.lex_state = 0, .external_lex_state = 3}, [2244] = {.lex_state = 0, .external_lex_state = 3}, [2245] = {.lex_state = 0, .external_lex_state = 3}, [2246] = {.lex_state = 0, .external_lex_state = 3}, - [2247] = {.lex_state = 0, .external_lex_state = 3}, - [2248] = {.lex_state = 58, .external_lex_state = 3}, + [2247] = {.lex_state = 4, .external_lex_state = 3}, + [2248] = {.lex_state = 0, .external_lex_state = 3}, [2249] = {.lex_state = 0, .external_lex_state = 3}, [2250] = {.lex_state = 0, .external_lex_state = 3}, [2251] = {.lex_state = 0, .external_lex_state = 3}, [2252] = {.lex_state = 0, .external_lex_state = 3}, - [2253] = {.lex_state = 4, .external_lex_state = 3}, + [2253] = {.lex_state = 58, .external_lex_state = 3}, [2254] = {.lex_state = 0, .external_lex_state = 3}, [2255] = {.lex_state = 0, .external_lex_state = 3}, [2256] = {.lex_state = 0, .external_lex_state = 3}, [2257] = {.lex_state = 0, .external_lex_state = 3}, [2258] = {.lex_state = 0, .external_lex_state = 3}, [2259] = {.lex_state = 0, .external_lex_state = 3}, - [2260] = {.lex_state = 58, .external_lex_state = 3}, + [2260] = {.lex_state = 0, .external_lex_state = 3}, [2261] = {.lex_state = 0, .external_lex_state = 3}, - [2262] = {.lex_state = 0, .external_lex_state = 3}, - [2263] = {.lex_state = 0, .external_lex_state = 3}, + [2262] = {.lex_state = 58, .external_lex_state = 3}, + [2263] = {.lex_state = 58, .external_lex_state = 3}, [2264] = {.lex_state = 0, .external_lex_state = 3}, [2265] = {.lex_state = 0, .external_lex_state = 3}, - [2266] = {.lex_state = 0, .external_lex_state = 3}, + [2266] = {.lex_state = 58, .external_lex_state = 3}, [2267] = {.lex_state = 0, .external_lex_state = 3}, - [2268] = {.lex_state = 0, .external_lex_state = 3}, - [2269] = {.lex_state = 0, .external_lex_state = 3}, - [2270] = {.lex_state = 58, .external_lex_state = 3}, - [2271] = {.lex_state = 0, .external_lex_state = 3}, - [2272] = {.lex_state = 0, .external_lex_state = 3}, - [2273] = {.lex_state = 0, .external_lex_state = 3}, - [2274] = {.lex_state = 0, .external_lex_state = 3}, - [2275] = {.lex_state = 0, .external_lex_state = 3}, + [2268] = {.lex_state = 58, .external_lex_state = 3}, + [2269] = {.lex_state = 58, .external_lex_state = 3}, + [2270] = {.lex_state = 0, .external_lex_state = 3}, + [2271] = {.lex_state = 58, .external_lex_state = 3}, + [2272] = {.lex_state = 58, .external_lex_state = 3}, + [2273] = {.lex_state = 4, .external_lex_state = 3}, + [2274] = {.lex_state = 4, .external_lex_state = 3}, + [2275] = {.lex_state = 58, .external_lex_state = 3}, [2276] = {.lex_state = 0, .external_lex_state = 3}, [2277] = {.lex_state = 4, .external_lex_state = 3}, - [2278] = {.lex_state = 58, .external_lex_state = 3}, + [2278] = {.lex_state = 0, .external_lex_state = 3}, [2279] = {.lex_state = 0, .external_lex_state = 3}, [2280] = {.lex_state = 0, .external_lex_state = 3}, [2281] = {.lex_state = 0, .external_lex_state = 3}, - [2282] = {.lex_state = 58, .external_lex_state = 3}, - [2283] = {.lex_state = 4, .external_lex_state = 3}, - [2284] = {.lex_state = 18, .external_lex_state = 3}, - [2285] = {.lex_state = 58, .external_lex_state = 3}, - [2286] = {.lex_state = 58, .external_lex_state = 3}, + [2282] = {.lex_state = 0, .external_lex_state = 3}, + [2283] = {.lex_state = 0, .external_lex_state = 3}, + [2284] = {.lex_state = 58, .external_lex_state = 3}, + [2285] = {.lex_state = 0, .external_lex_state = 3}, + [2286] = {.lex_state = 0, .external_lex_state = 3}, [2287] = {.lex_state = 0, .external_lex_state = 3}, - [2288] = {.lex_state = 18, .external_lex_state = 3}, + [2288] = {.lex_state = 58, .external_lex_state = 3}, [2289] = {.lex_state = 0, .external_lex_state = 3}, - [2290] = {.lex_state = 0, .external_lex_state = 5}, - [2291] = {.lex_state = 18, .external_lex_state = 3}, + [2290] = {.lex_state = 0, .external_lex_state = 3}, + [2291] = {.lex_state = 4, .external_lex_state = 3}, [2292] = {.lex_state = 0, .external_lex_state = 3}, - [2293] = {.lex_state = 0, .external_lex_state = 3}, - [2294] = {.lex_state = 0, .external_lex_state = 3}, - [2295] = {.lex_state = 4, .external_lex_state = 3}, + [2293] = {.lex_state = 58, .external_lex_state = 3}, + [2294] = {.lex_state = 58, .external_lex_state = 3}, + [2295] = {.lex_state = 0, .external_lex_state = 3}, [2296] = {.lex_state = 0, .external_lex_state = 3}, - [2297] = {.lex_state = 4, .external_lex_state = 3}, - [2298] = {.lex_state = 18, .external_lex_state = 3}, + [2297] = {.lex_state = 0, .external_lex_state = 3}, + [2298] = {.lex_state = 0, .external_lex_state = 3}, [2299] = {.lex_state = 0, .external_lex_state = 3}, - [2300] = {.lex_state = 4, .external_lex_state = 3}, - [2301] = {.lex_state = 4, .external_lex_state = 3}, - [2302] = {.lex_state = 4, .external_lex_state = 3}, + [2300] = {.lex_state = 0, .external_lex_state = 3}, + [2301] = {.lex_state = 0, .external_lex_state = 3}, + [2302] = {.lex_state = 0, .external_lex_state = 3}, [2303] = {.lex_state = 0, .external_lex_state = 3}, - [2304] = {.lex_state = 4, .external_lex_state = 3}, + [2304] = {.lex_state = 0, .external_lex_state = 3}, [2305] = {.lex_state = 0, .external_lex_state = 3}, - [2306] = {.lex_state = 0, .external_lex_state = 3}, + [2306] = {.lex_state = 4, .external_lex_state = 3}, [2307] = {.lex_state = 0, .external_lex_state = 3}, [2308] = {.lex_state = 0, .external_lex_state = 3}, - [2309] = {.lex_state = 0, .external_lex_state = 3}, + [2309] = {.lex_state = 58, .external_lex_state = 3}, [2310] = {.lex_state = 0, .external_lex_state = 3}, - [2311] = {.lex_state = 58, .external_lex_state = 3}, + [2311] = {.lex_state = 0, .external_lex_state = 3}, [2312] = {.lex_state = 0, .external_lex_state = 3}, [2313] = {.lex_state = 0, .external_lex_state = 3}, [2314] = {.lex_state = 0, .external_lex_state = 3}, - [2315] = {.lex_state = 58, .external_lex_state = 3}, - [2316] = {.lex_state = 58, .external_lex_state = 3}, + [2315] = {.lex_state = 0, .external_lex_state = 3}, + [2316] = {.lex_state = 0, .external_lex_state = 3}, [2317] = {.lex_state = 0, .external_lex_state = 3}, - [2318] = {.lex_state = 58, .external_lex_state = 3}, - [2319] = {.lex_state = 0, .external_lex_state = 3}, - [2320] = {.lex_state = 58, .external_lex_state = 3}, - [2321] = {.lex_state = 0, .external_lex_state = 3}, + [2318] = {.lex_state = 4, .external_lex_state = 3}, + [2319] = {.lex_state = 4, .external_lex_state = 3}, + [2320] = {.lex_state = 0, .external_lex_state = 3}, + [2321] = {.lex_state = 58, .external_lex_state = 3}, [2322] = {.lex_state = 0, .external_lex_state = 3}, - [2323] = {.lex_state = 0, .external_lex_state = 3}, - [2324] = {.lex_state = 58, .external_lex_state = 3}, - [2325] = {.lex_state = 0, .external_lex_state = 3}, - [2326] = {.lex_state = 0, .external_lex_state = 3}, - [2327] = {.lex_state = 58, .external_lex_state = 3}, + [2323] = {.lex_state = 4, .external_lex_state = 3}, + [2324] = {.lex_state = 4, .external_lex_state = 3}, + [2325] = {.lex_state = 4, .external_lex_state = 3}, + [2326] = {.lex_state = 4, .external_lex_state = 3}, + [2327] = {.lex_state = 4, .external_lex_state = 3}, [2328] = {.lex_state = 0, .external_lex_state = 3}, - [2329] = {.lex_state = 58, .external_lex_state = 3}, + [2329] = {.lex_state = 4, .external_lex_state = 3}, [2330] = {.lex_state = 4, .external_lex_state = 3}, - [2331] = {.lex_state = 58, .external_lex_state = 3}, - [2332] = {.lex_state = 4, .external_lex_state = 3}, - [2333] = {.lex_state = 58, .external_lex_state = 3}, - [2334] = {.lex_state = 0, .external_lex_state = 3}, - [2335] = {.lex_state = 9, .external_lex_state = 3}, + [2331] = {.lex_state = 4, .external_lex_state = 3}, + [2332] = {.lex_state = 0, .external_lex_state = 3}, + [2333] = {.lex_state = 4, .external_lex_state = 3}, + [2334] = {.lex_state = 4, .external_lex_state = 3}, + [2335] = {.lex_state = 4, .external_lex_state = 3}, [2336] = {.lex_state = 0, .external_lex_state = 3}, - [2337] = {.lex_state = 0, .external_lex_state = 3}, - [2338] = {.lex_state = 0, .external_lex_state = 3}, - [2339] = {.lex_state = 0, .external_lex_state = 3}, - [2340] = {.lex_state = 0, .external_lex_state = 3}, + [2337] = {.lex_state = 4, .external_lex_state = 3}, + [2338] = {.lex_state = 4, .external_lex_state = 3}, + [2339] = {.lex_state = 4, .external_lex_state = 3}, + [2340] = {.lex_state = 4, .external_lex_state = 3}, [2341] = {.lex_state = 0, .external_lex_state = 3}, [2342] = {.lex_state = 0, .external_lex_state = 3}, - [2343] = {.lex_state = 18, .external_lex_state = 3}, + [2343] = {.lex_state = 4, .external_lex_state = 3}, [2344] = {.lex_state = 0, .external_lex_state = 3}, - [2345] = {.lex_state = 0, .external_lex_state = 3}, + [2345] = {.lex_state = 4, .external_lex_state = 3}, [2346] = {.lex_state = 4, .external_lex_state = 3}, - [2347] = {.lex_state = 9, .external_lex_state = 3}, - [2348] = {.lex_state = 58, .external_lex_state = 3}, - [2349] = {.lex_state = 0, .external_lex_state = 3}, + [2347] = {.lex_state = 4, .external_lex_state = 3}, + [2348] = {.lex_state = 4, .external_lex_state = 3}, + [2349] = {.lex_state = 4, .external_lex_state = 3}, [2350] = {.lex_state = 4, .external_lex_state = 3}, - [2351] = {.lex_state = 0, .external_lex_state = 3}, + [2351] = {.lex_state = 4, .external_lex_state = 3}, [2352] = {.lex_state = 4, .external_lex_state = 3}, [2353] = {.lex_state = 4, .external_lex_state = 3}, [2354] = {.lex_state = 4, .external_lex_state = 3}, [2355] = {.lex_state = 0, .external_lex_state = 3}, - [2356] = {.lex_state = 4, .external_lex_state = 3}, - [2357] = {.lex_state = 4, .external_lex_state = 3}, + [2356] = {.lex_state = 0, .external_lex_state = 3}, + [2357] = {.lex_state = 0, .external_lex_state = 3}, [2358] = {.lex_state = 0, .external_lex_state = 3}, [2359] = {.lex_state = 0, .external_lex_state = 3}, [2360] = {.lex_state = 4, .external_lex_state = 3}, [2361] = {.lex_state = 0, .external_lex_state = 3}, [2362] = {.lex_state = 0, .external_lex_state = 3}, - [2363] = {.lex_state = 9, .external_lex_state = 3}, + [2363] = {.lex_state = 4, .external_lex_state = 3}, [2364] = {.lex_state = 4, .external_lex_state = 3}, [2365] = {.lex_state = 4, .external_lex_state = 3}, [2366] = {.lex_state = 4, .external_lex_state = 3}, - [2367] = {.lex_state = 4, .external_lex_state = 3}, + [2367] = {.lex_state = 0, .external_lex_state = 3}, [2368] = {.lex_state = 0, .external_lex_state = 3}, - [2369] = {.lex_state = 0, .external_lex_state = 3}, - [2370] = {.lex_state = 4, .external_lex_state = 3}, - [2371] = {.lex_state = 4, .external_lex_state = 3}, - [2372] = {.lex_state = 0, .external_lex_state = 3}, - [2373] = {.lex_state = 0, .external_lex_state = 3}, + [2369] = {.lex_state = 4, .external_lex_state = 3}, + [2370] = {.lex_state = 0, .external_lex_state = 3}, + [2371] = {.lex_state = 0, .external_lex_state = 3}, + [2372] = {.lex_state = 4, .external_lex_state = 3}, + [2373] = {.lex_state = 4, .external_lex_state = 3}, [2374] = {.lex_state = 0, .external_lex_state = 3}, [2375] = {.lex_state = 4, .external_lex_state = 3}, - [2376] = {.lex_state = 4, .external_lex_state = 3}, + [2376] = {.lex_state = 9, .external_lex_state = 3}, [2377] = {.lex_state = 4, .external_lex_state = 3}, - [2378] = {.lex_state = 0, .external_lex_state = 3}, - [2379] = {.lex_state = 9, .external_lex_state = 3}, + [2378] = {.lex_state = 4, .external_lex_state = 3}, + [2379] = {.lex_state = 4, .external_lex_state = 3}, [2380] = {.lex_state = 4, .external_lex_state = 3}, - [2381] = {.lex_state = 0, .external_lex_state = 3}, - [2382] = {.lex_state = 9, .external_lex_state = 3}, - [2383] = {.lex_state = 0, .external_lex_state = 3}, - [2384] = {.lex_state = 0, .external_lex_state = 3}, - [2385] = {.lex_state = 4, .external_lex_state = 3}, - [2386] = {.lex_state = 9, .external_lex_state = 3}, + [2381] = {.lex_state = 4, .external_lex_state = 3}, + [2382] = {.lex_state = 4, .external_lex_state = 3}, + [2383] = {.lex_state = 4, .external_lex_state = 3}, + [2384] = {.lex_state = 4, .external_lex_state = 3}, + [2385] = {.lex_state = 0, .external_lex_state = 3}, + [2386] = {.lex_state = 4, .external_lex_state = 3}, [2387] = {.lex_state = 4, .external_lex_state = 3}, - [2388] = {.lex_state = 0, .external_lex_state = 3}, + [2388] = {.lex_state = 4, .external_lex_state = 3}, [2389] = {.lex_state = 4, .external_lex_state = 3}, - [2390] = {.lex_state = 4, .external_lex_state = 3}, - [2391] = {.lex_state = 4, .external_lex_state = 3}, - [2392] = {.lex_state = 4, .external_lex_state = 3}, + [2390] = {.lex_state = 0, .external_lex_state = 3}, + [2391] = {.lex_state = 0, .external_lex_state = 3}, + [2392] = {.lex_state = 0, .external_lex_state = 3}, [2393] = {.lex_state = 0, .external_lex_state = 3}, - [2394] = {.lex_state = 4, .external_lex_state = 3}, - [2395] = {.lex_state = 4, .external_lex_state = 3}, - [2396] = {.lex_state = 0, .external_lex_state = 3}, + [2394] = {.lex_state = 0, .external_lex_state = 3}, + [2395] = {.lex_state = 0, .external_lex_state = 3}, + [2396] = {.lex_state = 4, .external_lex_state = 3}, [2397] = {.lex_state = 4, .external_lex_state = 3}, [2398] = {.lex_state = 0, .external_lex_state = 3}, - [2399] = {.lex_state = 4, .external_lex_state = 3}, + [2399] = {.lex_state = 0, .external_lex_state = 3}, [2400] = {.lex_state = 4, .external_lex_state = 3}, - [2401] = {.lex_state = 4, .external_lex_state = 3}, + [2401] = {.lex_state = 0, .external_lex_state = 3}, [2402] = {.lex_state = 4, .external_lex_state = 3}, [2403] = {.lex_state = 4, .external_lex_state = 3}, - [2404] = {.lex_state = 4, .external_lex_state = 3}, - [2405] = {.lex_state = 0, .external_lex_state = 3}, + [2404] = {.lex_state = 9, .external_lex_state = 3}, + [2405] = {.lex_state = 9, .external_lex_state = 3}, [2406] = {.lex_state = 4, .external_lex_state = 3}, - [2407] = {.lex_state = 4, .external_lex_state = 3}, + [2407] = {.lex_state = 0, .external_lex_state = 3}, [2408] = {.lex_state = 4, .external_lex_state = 3}, - [2409] = {.lex_state = 0, .external_lex_state = 3}, - [2410] = {.lex_state = 0, .external_lex_state = 3}, - [2411] = {.lex_state = 4, .external_lex_state = 3}, - [2412] = {.lex_state = 0, .external_lex_state = 3}, - [2413] = {.lex_state = 0, .external_lex_state = 3}, - [2414] = {.lex_state = 0, .external_lex_state = 3}, + [2409] = {.lex_state = 4, .external_lex_state = 3}, + [2410] = {.lex_state = 4, .external_lex_state = 3}, + [2411] = {.lex_state = 0, .external_lex_state = 3}, + [2412] = {.lex_state = 4, .external_lex_state = 3}, + [2413] = {.lex_state = 4, .external_lex_state = 3}, + [2414] = {.lex_state = 4, .external_lex_state = 3}, [2415] = {.lex_state = 0, .external_lex_state = 3}, [2416] = {.lex_state = 0, .external_lex_state = 3}, - [2417] = {.lex_state = 58, .external_lex_state = 3}, - [2418] = {.lex_state = 4, .external_lex_state = 3}, - [2419] = {.lex_state = 4, .external_lex_state = 3}, - [2420] = {.lex_state = 4, .external_lex_state = 3}, - [2421] = {.lex_state = 4, .external_lex_state = 3}, + [2417] = {.lex_state = 4, .external_lex_state = 3}, + [2418] = {.lex_state = 0, .external_lex_state = 3}, + [2419] = {.lex_state = 9, .external_lex_state = 3}, + [2420] = {.lex_state = 0, .external_lex_state = 3}, + [2421] = {.lex_state = 0, .external_lex_state = 3}, [2422] = {.lex_state = 0, .external_lex_state = 3}, [2423] = {.lex_state = 4, .external_lex_state = 3}, - [2424] = {.lex_state = 4, .external_lex_state = 3}, - [2425] = {.lex_state = 4, .external_lex_state = 3}, - [2426] = {.lex_state = 58, .external_lex_state = 3}, - [2427] = {.lex_state = 4, .external_lex_state = 3}, - [2428] = {.lex_state = 4, .external_lex_state = 3}, - [2429] = {.lex_state = 4, .external_lex_state = 3}, + [2424] = {.lex_state = 0, .external_lex_state = 3}, + [2425] = {.lex_state = 0, .external_lex_state = 3}, + [2426] = {.lex_state = 0, .external_lex_state = 3}, + [2427] = {.lex_state = 0, .external_lex_state = 3}, + [2428] = {.lex_state = 0, .external_lex_state = 3}, + [2429] = {.lex_state = 0, .external_lex_state = 3}, [2430] = {.lex_state = 0, .external_lex_state = 3}, - [2431] = {.lex_state = 4, .external_lex_state = 3}, - [2432] = {.lex_state = 0, .external_lex_state = 3}, - [2433] = {.lex_state = 4, .external_lex_state = 3}, - [2434] = {.lex_state = 0, .external_lex_state = 3}, - [2435] = {.lex_state = 0, .external_lex_state = 3}, + [2431] = {.lex_state = 0, .external_lex_state = 3}, + [2432] = {.lex_state = 4, .external_lex_state = 3}, + [2433] = {.lex_state = 0, .external_lex_state = 3}, + [2434] = {.lex_state = 4, .external_lex_state = 3}, + [2435] = {.lex_state = 4, .external_lex_state = 3}, [2436] = {.lex_state = 4, .external_lex_state = 3}, [2437] = {.lex_state = 4, .external_lex_state = 3}, - [2438] = {.lex_state = 0, .external_lex_state = 3}, - [2439] = {.lex_state = 0, .external_lex_state = 3}, + [2438] = {.lex_state = 4, .external_lex_state = 3}, + [2439] = {.lex_state = 9, .external_lex_state = 3}, [2440] = {.lex_state = 4, .external_lex_state = 3}, [2441] = {.lex_state = 0, .external_lex_state = 3}, [2442] = {.lex_state = 0, .external_lex_state = 3}, - [2443] = {.lex_state = 4, .external_lex_state = 3}, - [2444] = {.lex_state = 0, .external_lex_state = 3}, + [2443] = {.lex_state = 0, .external_lex_state = 3}, + [2444] = {.lex_state = 4, .external_lex_state = 3}, [2445] = {.lex_state = 0, .external_lex_state = 3}, [2446] = {.lex_state = 4, .external_lex_state = 3}, - [2447] = {.lex_state = 0, .external_lex_state = 3}, - [2448] = {.lex_state = 0, .external_lex_state = 3}, - [2449] = {.lex_state = 0, .external_lex_state = 3}, - [2450] = {.lex_state = 0, .external_lex_state = 3}, - [2451] = {.lex_state = 4, .external_lex_state = 3}, - [2452] = {.lex_state = 9, .external_lex_state = 3}, - [2453] = {.lex_state = 4, .external_lex_state = 3}, - [2454] = {.lex_state = 4, .external_lex_state = 3}, - [2455] = {.lex_state = 0, .external_lex_state = 3}, - [2456] = {.lex_state = 4, .external_lex_state = 3}, - [2457] = {.lex_state = 4, .external_lex_state = 3}, - [2458] = {.lex_state = 4, .external_lex_state = 3}, + [2447] = {.lex_state = 9, .external_lex_state = 3}, + [2448] = {.lex_state = 4, .external_lex_state = 3}, + [2449] = {.lex_state = 4, .external_lex_state = 3}, + [2450] = {.lex_state = 4, .external_lex_state = 3}, + [2451] = {.lex_state = 9, .external_lex_state = 3}, + [2452] = {.lex_state = 0, .external_lex_state = 3}, + [2453] = {.lex_state = 0, .external_lex_state = 3}, + [2454] = {.lex_state = 0, .external_lex_state = 3}, + [2455] = {.lex_state = 4, .external_lex_state = 3}, + [2456] = {.lex_state = 0, .external_lex_state = 3}, + [2457] = {.lex_state = 0, .external_lex_state = 3}, + [2458] = {.lex_state = 0, .external_lex_state = 3}, [2459] = {.lex_state = 0, .external_lex_state = 3}, - [2460] = {.lex_state = 0, .external_lex_state = 3}, - [2461] = {.lex_state = 0, .external_lex_state = 3}, - [2462] = {.lex_state = 0, .external_lex_state = 3}, + [2460] = {.lex_state = 4, .external_lex_state = 3}, + [2461] = {.lex_state = 9, .external_lex_state = 3}, + [2462] = {.lex_state = 4, .external_lex_state = 3}, [2463] = {.lex_state = 0, .external_lex_state = 3}, - [2464] = {.lex_state = 0, .external_lex_state = 3}, + [2464] = {.lex_state = 4, .external_lex_state = 3}, [2465] = {.lex_state = 0, .external_lex_state = 3}, [2466] = {.lex_state = 0, .external_lex_state = 3}, - [2467] = {.lex_state = 4, .external_lex_state = 3}, - [2468] = {.lex_state = 4, .external_lex_state = 3}, - [2469] = {.lex_state = 9, .external_lex_state = 3}, - [2470] = {.lex_state = 0, .external_lex_state = 3}, - [2471] = {.lex_state = 4, .external_lex_state = 3}, + [2467] = {.lex_state = 58, .external_lex_state = 3}, + [2468] = {.lex_state = 0, .external_lex_state = 3}, + [2469] = {.lex_state = 0, .external_lex_state = 3}, + [2470] = {.lex_state = 4, .external_lex_state = 3}, + [2471] = {.lex_state = 0, .external_lex_state = 3}, [2472] = {.lex_state = 4, .external_lex_state = 3}, - [2473] = {.lex_state = 4, .external_lex_state = 3}, + [2473] = {.lex_state = 0, .external_lex_state = 3}, [2474] = {.lex_state = 0, .external_lex_state = 3}, - [2475] = {.lex_state = 4, .external_lex_state = 3}, - [2476] = {.lex_state = 0, .external_lex_state = 3}, - [2477] = {.lex_state = 4, .external_lex_state = 3}, + [2475] = {.lex_state = 0, .external_lex_state = 3}, + [2476] = {.lex_state = 4, .external_lex_state = 3}, + [2477] = {.lex_state = 0, .external_lex_state = 3}, [2478] = {.lex_state = 0, .external_lex_state = 3}, - [2479] = {.lex_state = 0, .external_lex_state = 3}, + [2479] = {.lex_state = 4, .external_lex_state = 3}, [2480] = {.lex_state = 0, .external_lex_state = 3}, - [2481] = {.lex_state = 4, .external_lex_state = 3}, - [2482] = {.lex_state = 0, .external_lex_state = 3}, - [2483] = {.lex_state = 9, .external_lex_state = 3}, + [2481] = {.lex_state = 0, .external_lex_state = 3}, + [2482] = {.lex_state = 4, .external_lex_state = 3}, + [2483] = {.lex_state = 4, .external_lex_state = 3}, [2484] = {.lex_state = 0, .external_lex_state = 3}, [2485] = {.lex_state = 4, .external_lex_state = 3}, - [2486] = {.lex_state = 0, .external_lex_state = 3}, - [2487] = {.lex_state = 4, .external_lex_state = 3}, - [2488] = {.lex_state = 4, .external_lex_state = 3}, + [2486] = {.lex_state = 4, .external_lex_state = 3}, + [2487] = {.lex_state = 0, .external_lex_state = 3}, + [2488] = {.lex_state = 0, .external_lex_state = 3}, [2489] = {.lex_state = 0, .external_lex_state = 3}, - [2490] = {.lex_state = 9, .external_lex_state = 3}, + [2490] = {.lex_state = 4, .external_lex_state = 3}, [2491] = {.lex_state = 0, .external_lex_state = 3}, [2492] = {.lex_state = 0, .external_lex_state = 3}, [2493] = {.lex_state = 0, .external_lex_state = 3}, [2494] = {.lex_state = 4, .external_lex_state = 3}, [2495] = {.lex_state = 0, .external_lex_state = 3}, [2496] = {.lex_state = 0, .external_lex_state = 3}, - [2497] = {.lex_state = 58, .external_lex_state = 3}, + [2497] = {.lex_state = 0, .external_lex_state = 3}, [2498] = {.lex_state = 0, .external_lex_state = 3}, [2499] = {.lex_state = 4, .external_lex_state = 3}, [2500] = {.lex_state = 0, .external_lex_state = 3}, - [2501] = {.lex_state = 4, .external_lex_state = 3}, - [2502] = {.lex_state = 4, .external_lex_state = 3}, - [2503] = {.lex_state = 4, .external_lex_state = 3}, + [2501] = {.lex_state = 9, .external_lex_state = 3}, + [2502] = {.lex_state = 0, .external_lex_state = 3}, + [2503] = {.lex_state = 9, .external_lex_state = 3}, [2504] = {.lex_state = 0, .external_lex_state = 3}, - [2505] = {.lex_state = 4, .external_lex_state = 3}, - [2506] = {.lex_state = 0, .external_lex_state = 3}, + [2505] = {.lex_state = 9, .external_lex_state = 3}, + [2506] = {.lex_state = 58, .external_lex_state = 3}, [2507] = {.lex_state = 0, .external_lex_state = 3}, - [2508] = {.lex_state = 0, .external_lex_state = 3}, + [2508] = {.lex_state = 9, .external_lex_state = 3}, [2509] = {.lex_state = 0, .external_lex_state = 3}, [2510] = {.lex_state = 0, .external_lex_state = 3}, - [2511] = {.lex_state = 4, .external_lex_state = 3}, - [2512] = {.lex_state = 4, .external_lex_state = 3}, + [2511] = {.lex_state = 0, .external_lex_state = 3}, + [2512] = {.lex_state = 0, .external_lex_state = 3}, [2513] = {.lex_state = 0, .external_lex_state = 3}, - [2514] = {.lex_state = 0, .external_lex_state = 3}, + [2514] = {.lex_state = 9, .external_lex_state = 3}, [2515] = {.lex_state = 4, .external_lex_state = 3}, - [2516] = {.lex_state = 0, .external_lex_state = 3}, + [2516] = {.lex_state = 9, .external_lex_state = 3}, [2517] = {.lex_state = 0, .external_lex_state = 3}, [2518] = {.lex_state = 0, .external_lex_state = 3}, [2519] = {.lex_state = 0, .external_lex_state = 3}, - [2520] = {.lex_state = 0, .external_lex_state = 3}, - [2521] = {.lex_state = 4, .external_lex_state = 3}, - [2522] = {.lex_state = 9, .external_lex_state = 3}, - [2523] = {.lex_state = 0, .external_lex_state = 3}, - [2524] = {.lex_state = 9, .external_lex_state = 3}, + [2520] = {.lex_state = 9, .external_lex_state = 3}, + [2521] = {.lex_state = 0, .external_lex_state = 3}, + [2522] = {.lex_state = 0, .external_lex_state = 3}, + [2523] = {.lex_state = 9, .external_lex_state = 3}, + [2524] = {.lex_state = 0, .external_lex_state = 3}, [2525] = {.lex_state = 0, .external_lex_state = 3}, [2526] = {.lex_state = 0, .external_lex_state = 3}, - [2527] = {.lex_state = 4, .external_lex_state = 3}, - [2528] = {.lex_state = 4, .external_lex_state = 3}, + [2527] = {.lex_state = 0, .external_lex_state = 3}, + [2528] = {.lex_state = 0, .external_lex_state = 3}, [2529] = {.lex_state = 9, .external_lex_state = 3}, - [2530] = {.lex_state = 0, .external_lex_state = 3}, - [2531] = {.lex_state = 4, .external_lex_state = 3}, - [2532] = {.lex_state = 4, .external_lex_state = 3}, + [2530] = {.lex_state = 9, .external_lex_state = 3}, + [2531] = {.lex_state = 0, .external_lex_state = 3}, + [2532] = {.lex_state = 0, .external_lex_state = 3}, [2533] = {.lex_state = 4, .external_lex_state = 3}, [2534] = {.lex_state = 0, .external_lex_state = 3}, [2535] = {.lex_state = 0, .external_lex_state = 3}, - [2536] = {.lex_state = 0, .external_lex_state = 3}, + [2536] = {.lex_state = 4, .external_lex_state = 3}, [2537] = {.lex_state = 0, .external_lex_state = 3}, - [2538] = {.lex_state = 9, .external_lex_state = 3}, - [2539] = {.lex_state = 0, .external_lex_state = 3}, + [2538] = {.lex_state = 4, .external_lex_state = 3}, + [2539] = {.lex_state = 58, .external_lex_state = 3}, [2540] = {.lex_state = 0, .external_lex_state = 3}, - [2541] = {.lex_state = 0, .external_lex_state = 3}, + [2541] = {.lex_state = 4, .external_lex_state = 3}, [2542] = {.lex_state = 4, .external_lex_state = 3}, - [2543] = {.lex_state = 9, .external_lex_state = 3}, + [2543] = {.lex_state = 4, .external_lex_state = 3}, [2544] = {.lex_state = 0, .external_lex_state = 3}, - [2545] = {.lex_state = 4, .external_lex_state = 3}, - [2546] = {.lex_state = 9, .external_lex_state = 3}, + [2545] = {.lex_state = 0, .external_lex_state = 3}, + [2546] = {.lex_state = 4, .external_lex_state = 3}, [2547] = {.lex_state = 0, .external_lex_state = 3}, - [2548] = {.lex_state = 0, .external_lex_state = 3}, - [2549] = {.lex_state = 0, .external_lex_state = 3}, - [2550] = {.lex_state = 0, .external_lex_state = 3}, - [2551] = {.lex_state = 0, .external_lex_state = 3}, - [2552] = {.lex_state = 9, .external_lex_state = 3}, - [2553] = {.lex_state = 4, .external_lex_state = 3}, - [2554] = {.lex_state = 9, .external_lex_state = 3}, - [2555] = {.lex_state = 0, .external_lex_state = 3}, - [2556] = {.lex_state = 0, .external_lex_state = 3}, - [2557] = {.lex_state = 0, .external_lex_state = 3}, - [2558] = {.lex_state = 9, .external_lex_state = 3}, - [2559] = {.lex_state = 0, .external_lex_state = 3}, - [2560] = {.lex_state = 0, .external_lex_state = 3}, - [2561] = {.lex_state = 4, .external_lex_state = 3}, - [2562] = {.lex_state = 0, .external_lex_state = 3}, - [2563] = {.lex_state = 4, .external_lex_state = 3}, - [2564] = {.lex_state = 0, .external_lex_state = 3}, - [2565] = {.lex_state = 0, .external_lex_state = 3}, - [2566] = {.lex_state = 4, .external_lex_state = 3}, - [2567] = {.lex_state = 0, .external_lex_state = 3}, - [2568] = {.lex_state = 0, .external_lex_state = 3}, - [2569] = {.lex_state = 0, .external_lex_state = 3}, - [2570] = {.lex_state = 4, .external_lex_state = 3}, - [2571] = {.lex_state = 4, .external_lex_state = 3}, - [2572] = {.lex_state = 4, .external_lex_state = 3}, - [2573] = {.lex_state = 0, .external_lex_state = 3}, - [2574] = {.lex_state = 4, .external_lex_state = 3}, - [2575] = {.lex_state = 4, .external_lex_state = 3}, - [2576] = {.lex_state = 0, .external_lex_state = 3}, - [2577] = {.lex_state = 0, .external_lex_state = 3}, - [2578] = {.lex_state = 4, .external_lex_state = 3}, - [2579] = {.lex_state = 0, .external_lex_state = 3}, - [2580] = {.lex_state = 0, .external_lex_state = 3}, - [2581] = {.lex_state = 4, .external_lex_state = 3}, + [2548] = {.lex_state = 4, .external_lex_state = 3}, }; enum { @@ -16161,80 +16114,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(2489), - [sym__statement] = STATE(8), - [sym_empty_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_macro_definition] = STATE(8), - [sym_attribute_item] = STATE(8), - [sym_inner_attribute_item] = STATE(8), - [sym_mod_item] = STATE(8), - [sym_foreign_mod_item] = STATE(8), - [sym_struct_item] = STATE(8), - [sym_union_item] = STATE(8), - [sym_enum_item] = STATE(8), - [sym_extern_crate_declaration] = STATE(8), - [sym_const_item] = STATE(8), - [sym_static_item] = STATE(8), - [sym_type_item] = STATE(8), - [sym_function_item] = STATE(8), - [sym_function_signature_item] = STATE(8), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(8), - [sym_trait_item] = STATE(8), - [sym_associated_type] = STATE(8), - [sym_let_declaration] = STATE(8), - [sym_use_declaration] = STATE(8), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1299), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym_source_file] = STATE(2332), + [sym__statement] = STATE(14), + [sym_empty_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_macro_definition] = STATE(14), + [sym_attribute_item] = STATE(14), + [sym_inner_attribute_item] = STATE(14), + [sym_mod_item] = STATE(14), + [sym_foreign_mod_item] = STATE(14), + [sym_struct_item] = STATE(14), + [sym_union_item] = STATE(14), + [sym_enum_item] = STATE(14), + [sym_extern_crate_declaration] = STATE(14), + [sym_const_item] = STATE(14), + [sym_static_item] = STATE(14), + [sym_type_item] = STATE(14), + [sym_function_item] = STATE(14), + [sym_function_signature_item] = STATE(14), + [sym_function_modifiers] = STATE(2331), + [sym_impl_item] = STATE(14), + [sym_trait_item] = STATE(14), + [sym_associated_type] = STATE(14), + [sym_let_declaration] = STATE(14), + [sym_use_declaration] = STATE(14), + [sym_extern_modifier] = STATE(1516), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1293), + [sym_macro_invocation] = STATE(66), + [sym_scoped_identifier] = STATE(1170), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2439), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -16328,62 +16279,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(12), [sym_function_item] = STATE(12), [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2488), + [sym_function_modifiers] = STATE(2331), [sym_impl_item] = STATE(12), [sym_trait_item] = STATE(12), [sym_associated_type] = STATE(12), [sym_let_declaration] = STATE(12), [sym_use_declaration] = STATE(12), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1288), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_extern_modifier] = STATE(1516), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1204), + [sym_macro_invocation] = STATE(66), + [sym_scoped_identifier] = STATE(1170), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2439), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16460,79 +16409,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [3] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1281), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym__statement] = STATE(10), + [sym_empty_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_macro_definition] = STATE(10), + [sym_attribute_item] = STATE(10), + [sym_inner_attribute_item] = STATE(10), + [sym_mod_item] = STATE(10), + [sym_foreign_mod_item] = STATE(10), + [sym_struct_item] = STATE(10), + [sym_union_item] = STATE(10), + [sym_enum_item] = STATE(10), + [sym_extern_crate_declaration] = STATE(10), + [sym_const_item] = STATE(10), + [sym_static_item] = STATE(10), + [sym_type_item] = STATE(10), + [sym_function_item] = STATE(10), + [sym_function_signature_item] = STATE(10), + [sym_function_modifiers] = STATE(2331), + [sym_impl_item] = STATE(10), + [sym_trait_item] = STATE(10), + [sym_associated_type] = STATE(10), + [sym_let_declaration] = STATE(10), + [sym_use_declaration] = STATE(10), + [sym_extern_modifier] = STATE(1516), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1225), + [sym_macro_invocation] = STATE(66), + [sym_scoped_identifier] = STATE(1170), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2439), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16609,234 +16556,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [4] = { - [sym__statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_macro_definition] = STATE(9), - [sym_attribute_item] = STATE(9), - [sym_inner_attribute_item] = STATE(9), - [sym_mod_item] = STATE(9), - [sym_foreign_mod_item] = STATE(9), - [sym_struct_item] = STATE(9), - [sym_union_item] = STATE(9), - [sym_enum_item] = STATE(9), - [sym_extern_crate_declaration] = STATE(9), - [sym_const_item] = STATE(9), - [sym_static_item] = STATE(9), - [sym_type_item] = STATE(9), - [sym_function_item] = STATE(9), - [sym_function_signature_item] = STATE(9), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(9), - [sym_trait_item] = STATE(9), - [sym_associated_type] = STATE(9), - [sym_let_declaration] = STATE(9), - [sym_use_declaration] = STATE(9), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1282), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2331), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1516), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1293), + [sym_macro_invocation] = STATE(91), + [sym_scoped_identifier] = STATE(1170), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2439), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(109), + [anon_sym_SEMI] = ACTIONS(112), + [anon_sym_macro_rules_BANG] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(124), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_u8] = ACTIONS(132), + [anon_sym_i8] = ACTIONS(132), + [anon_sym_u16] = ACTIONS(132), + [anon_sym_i16] = ACTIONS(132), + [anon_sym_u32] = ACTIONS(132), + [anon_sym_i32] = ACTIONS(132), + [anon_sym_u64] = ACTIONS(132), + [anon_sym_i64] = ACTIONS(132), + [anon_sym_u128] = ACTIONS(132), + [anon_sym_i128] = ACTIONS(132), + [anon_sym_isize] = ACTIONS(132), + [anon_sym_usize] = ACTIONS(132), + [anon_sym_f32] = ACTIONS(132), + [anon_sym_f64] = ACTIONS(132), + [anon_sym_bool] = ACTIONS(132), + [anon_sym_str] = ACTIONS(132), + [anon_sym_char] = ACTIONS(132), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_async] = ACTIONS(138), + [anon_sym_break] = ACTIONS(141), + [anon_sym_const] = ACTIONS(144), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_default] = ACTIONS(150), + [anon_sym_enum] = ACTIONS(153), + [anon_sym_fn] = ACTIONS(156), + [anon_sym_for] = ACTIONS(159), + [anon_sym_if] = ACTIONS(162), + [anon_sym_impl] = ACTIONS(165), + [anon_sym_let] = ACTIONS(168), + [anon_sym_loop] = ACTIONS(171), + [anon_sym_match] = ACTIONS(174), + [anon_sym_mod] = ACTIONS(177), + [anon_sym_pub] = ACTIONS(180), + [anon_sym_return] = ACTIONS(183), + [anon_sym_static] = ACTIONS(186), + [anon_sym_struct] = ACTIONS(189), + [anon_sym_trait] = ACTIONS(192), + [anon_sym_type] = ACTIONS(195), + [anon_sym_union] = ACTIONS(198), + [anon_sym_unsafe] = ACTIONS(201), + [anon_sym_use] = ACTIONS(204), + [anon_sym_while] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_extern] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(216), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(222), + [anon_sym_DOT_DOT] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_yield] = ACTIONS(231), + [anon_sym_move] = ACTIONS(234), + [sym_integer_literal] = ACTIONS(237), + [aux_sym_string_literal_token1] = ACTIONS(240), + [sym_char_literal] = ACTIONS(237), + [anon_sym_true] = ACTIONS(243), + [anon_sym_false] = ACTIONS(243), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(246), + [sym_super] = ACTIONS(249), + [sym_crate] = ACTIONS(252), + [sym_metavariable] = ACTIONS(255), + [sym_raw_string_literal] = ACTIONS(237), + [sym_float_literal] = ACTIONS(237), + [sym_block_comment] = ACTIONS(3), + }, + [5] = { + [sym__statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_macro_definition] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_foreign_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_union_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_extern_crate_declaration] = STATE(7), + [sym_const_item] = STATE(7), + [sym_static_item] = STATE(7), + [sym_type_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function_modifiers] = STATE(2331), + [sym_impl_item] = STATE(7), + [sym_trait_item] = STATE(7), + [sym_associated_type] = STATE(7), + [sym_let_declaration] = STATE(7), + [sym_use_declaration] = STATE(7), + [sym_extern_modifier] = STATE(1516), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(66), + [sym_scoped_identifier] = STATE(1170), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2439), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(25), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(29), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(33), - [anon_sym_enum] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), - [anon_sym_if] = ACTIONS(41), - [anon_sym_impl] = ACTIONS(43), - [anon_sym_let] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_match] = ACTIONS(49), - [anon_sym_mod] = ACTIONS(51), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_static] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_trait] = ACTIONS(61), - [anon_sym_type] = ACTIONS(63), - [anon_sym_union] = ACTIONS(65), - [anon_sym_unsafe] = ACTIONS(67), - [anon_sym_use] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_POUND] = ACTIONS(73), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(75), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(101), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [5] = { - [sym__statement] = STATE(3), - [sym_empty_statement] = STATE(3), - [sym_expression_statement] = STATE(3), - [sym_macro_definition] = STATE(3), - [sym_attribute_item] = STATE(3), - [sym_inner_attribute_item] = STATE(3), - [sym_mod_item] = STATE(3), - [sym_foreign_mod_item] = STATE(3), - [sym_struct_item] = STATE(3), - [sym_union_item] = STATE(3), - [sym_enum_item] = STATE(3), - [sym_extern_crate_declaration] = STATE(3), - [sym_const_item] = STATE(3), - [sym_static_item] = STATE(3), - [sym_type_item] = STATE(3), - [sym_function_item] = STATE(3), - [sym_function_signature_item] = STATE(3), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(3), - [sym_trait_item] = STATE(3), - [sym_associated_type] = STATE(3), - [sym_let_declaration] = STATE(3), - [sym_use_declaration] = STATE(3), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1267), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(111), + [anon_sym_RBRACE] = ACTIONS(258), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16907,85 +16850,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [6] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1242), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym__statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_macro_definition] = STATE(9), + [sym_attribute_item] = STATE(9), + [sym_inner_attribute_item] = STATE(9), + [sym_mod_item] = STATE(9), + [sym_foreign_mod_item] = STATE(9), + [sym_struct_item] = STATE(9), + [sym_union_item] = STATE(9), + [sym_enum_item] = STATE(9), + [sym_extern_crate_declaration] = STATE(9), + [sym_const_item] = STATE(9), + [sym_static_item] = STATE(9), + [sym_type_item] = STATE(9), + [sym_function_item] = STATE(9), + [sym_function_signature_item] = STATE(9), + [sym_function_modifiers] = STATE(2331), + [sym_impl_item] = STATE(9), + [sym_trait_item] = STATE(9), + [sym_associated_type] = STATE(9), + [sym_let_declaration] = STATE(9), + [sym_use_declaration] = STATE(9), + [sym_extern_modifier] = STATE(1516), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1238), + [sym_macro_invocation] = STATE(66), + [sym_scoped_identifier] = STATE(1170), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2439), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(113), + [anon_sym_RBRACE] = ACTIONS(260), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -17056,85 +16997,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [7] = { - [sym__statement] = STATE(6), - [sym_empty_statement] = STATE(6), - [sym_expression_statement] = STATE(6), - [sym_macro_definition] = STATE(6), - [sym_attribute_item] = STATE(6), - [sym_inner_attribute_item] = STATE(6), - [sym_mod_item] = STATE(6), - [sym_foreign_mod_item] = STATE(6), - [sym_struct_item] = STATE(6), - [sym_union_item] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_extern_crate_declaration] = STATE(6), - [sym_const_item] = STATE(6), - [sym_static_item] = STATE(6), - [sym_type_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1247), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2331), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1516), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1237), + [sym_macro_invocation] = STATE(66), + [sym_scoped_identifier] = STATE(1170), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2439), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(262), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -17205,85 +17144,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [8] = { - [sym__statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_macro_definition] = STATE(10), - [sym_attribute_item] = STATE(10), - [sym_inner_attribute_item] = STATE(10), - [sym_mod_item] = STATE(10), - [sym_foreign_mod_item] = STATE(10), - [sym_struct_item] = STATE(10), - [sym_union_item] = STATE(10), - [sym_enum_item] = STATE(10), - [sym_extern_crate_declaration] = STATE(10), - [sym_const_item] = STATE(10), - [sym_static_item] = STATE(10), - [sym_type_item] = STATE(10), - [sym_function_item] = STATE(10), - [sym_function_signature_item] = STATE(10), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(10), - [sym_trait_item] = STATE(10), - [sym_associated_type] = STATE(10), - [sym_let_declaration] = STATE(10), - [sym_use_declaration] = STATE(10), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1299), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [ts_builtin_sym_end] = ACTIONS(117), + [sym__statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_macro_definition] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_foreign_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_union_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_extern_crate_declaration] = STATE(8), + [sym_const_item] = STATE(8), + [sym_static_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function_modifiers] = STATE(2331), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_extern_modifier] = STATE(1516), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1293), + [sym_macro_invocation] = STATE(66), + [sym_scoped_identifier] = STATE(1170), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2439), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [ts_builtin_sym_end] = ACTIONS(124), + [sym_identifier] = ACTIONS(109), + [anon_sym_SEMI] = ACTIONS(112), + [anon_sym_macro_rules_BANG] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_u8] = ACTIONS(132), + [anon_sym_i8] = ACTIONS(132), + [anon_sym_u16] = ACTIONS(132), + [anon_sym_i16] = ACTIONS(132), + [anon_sym_u32] = ACTIONS(132), + [anon_sym_i32] = ACTIONS(132), + [anon_sym_u64] = ACTIONS(132), + [anon_sym_i64] = ACTIONS(132), + [anon_sym_u128] = ACTIONS(132), + [anon_sym_i128] = ACTIONS(132), + [anon_sym_isize] = ACTIONS(132), + [anon_sym_usize] = ACTIONS(132), + [anon_sym_f32] = ACTIONS(132), + [anon_sym_f64] = ACTIONS(132), + [anon_sym_bool] = ACTIONS(132), + [anon_sym_str] = ACTIONS(132), + [anon_sym_char] = ACTIONS(132), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_async] = ACTIONS(138), + [anon_sym_break] = ACTIONS(141), + [anon_sym_const] = ACTIONS(144), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_default] = ACTIONS(150), + [anon_sym_enum] = ACTIONS(153), + [anon_sym_fn] = ACTIONS(156), + [anon_sym_for] = ACTIONS(159), + [anon_sym_if] = ACTIONS(162), + [anon_sym_impl] = ACTIONS(165), + [anon_sym_let] = ACTIONS(168), + [anon_sym_loop] = ACTIONS(171), + [anon_sym_match] = ACTIONS(174), + [anon_sym_mod] = ACTIONS(177), + [anon_sym_pub] = ACTIONS(180), + [anon_sym_return] = ACTIONS(183), + [anon_sym_static] = ACTIONS(186), + [anon_sym_struct] = ACTIONS(189), + [anon_sym_trait] = ACTIONS(192), + [anon_sym_type] = ACTIONS(195), + [anon_sym_union] = ACTIONS(198), + [anon_sym_unsafe] = ACTIONS(201), + [anon_sym_use] = ACTIONS(204), + [anon_sym_while] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_extern] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(216), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(222), + [anon_sym_DOT_DOT] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_yield] = ACTIONS(231), + [anon_sym_move] = ACTIONS(234), + [sym_integer_literal] = ACTIONS(237), + [aux_sym_string_literal_token1] = ACTIONS(240), + [sym_char_literal] = ACTIONS(237), + [anon_sym_true] = ACTIONS(243), + [anon_sym_false] = ACTIONS(243), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(246), + [sym_super] = ACTIONS(249), + [sym_crate] = ACTIONS(252), + [sym_metavariable] = ACTIONS(255), + [sym_raw_string_literal] = ACTIONS(237), + [sym_float_literal] = ACTIONS(237), + [sym_block_comment] = ACTIONS(3), + }, + [9] = { + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2331), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1516), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1223), + [sym_macro_invocation] = STATE(66), + [sym_scoped_identifier] = STATE(1170), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2439), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(264), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -17353,86 +17437,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [9] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1279), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [10] = { + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2331), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1516), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1201), + [sym_macro_invocation] = STATE(66), + [sym_scoped_identifier] = STATE(1170), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2439), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(119), + [anon_sym_RBRACE] = ACTIONS(266), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -17502,155 +17584,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [10] = { - [sym__statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_macro_definition] = STATE(10), - [sym_attribute_item] = STATE(10), - [sym_inner_attribute_item] = STATE(10), - [sym_mod_item] = STATE(10), - [sym_foreign_mod_item] = STATE(10), - [sym_struct_item] = STATE(10), - [sym_union_item] = STATE(10), - [sym_enum_item] = STATE(10), - [sym_extern_crate_declaration] = STATE(10), - [sym_const_item] = STATE(10), - [sym_static_item] = STATE(10), - [sym_type_item] = STATE(10), - [sym_function_item] = STATE(10), - [sym_function_signature_item] = STATE(10), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(10), - [sym_trait_item] = STATE(10), - [sym_associated_type] = STATE(10), - [sym_let_declaration] = STATE(10), - [sym_use_declaration] = STATE(10), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1299), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [ts_builtin_sym_end] = ACTIONS(121), - [sym_identifier] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(126), - [anon_sym_macro_rules_BANG] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(132), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(138), - [anon_sym_STAR] = ACTIONS(141), - [anon_sym_u8] = ACTIONS(144), - [anon_sym_i8] = ACTIONS(144), - [anon_sym_u16] = ACTIONS(144), - [anon_sym_i16] = ACTIONS(144), - [anon_sym_u32] = ACTIONS(144), - [anon_sym_i32] = ACTIONS(144), - [anon_sym_u64] = ACTIONS(144), - [anon_sym_i64] = ACTIONS(144), - [anon_sym_u128] = ACTIONS(144), - [anon_sym_i128] = ACTIONS(144), - [anon_sym_isize] = ACTIONS(144), - [anon_sym_usize] = ACTIONS(144), - [anon_sym_f32] = ACTIONS(144), - [anon_sym_f64] = ACTIONS(144), - [anon_sym_bool] = ACTIONS(144), - [anon_sym_str] = ACTIONS(144), - [anon_sym_char] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_async] = ACTIONS(150), - [anon_sym_break] = ACTIONS(153), - [anon_sym_const] = ACTIONS(156), - [anon_sym_continue] = ACTIONS(159), - [anon_sym_default] = ACTIONS(162), - [anon_sym_enum] = ACTIONS(165), - [anon_sym_fn] = ACTIONS(168), - [anon_sym_for] = ACTIONS(171), - [anon_sym_if] = ACTIONS(174), - [anon_sym_impl] = ACTIONS(177), - [anon_sym_let] = ACTIONS(180), - [anon_sym_loop] = ACTIONS(183), - [anon_sym_match] = ACTIONS(186), - [anon_sym_mod] = ACTIONS(189), - [anon_sym_pub] = ACTIONS(192), - [anon_sym_return] = ACTIONS(195), - [anon_sym_static] = ACTIONS(198), - [anon_sym_struct] = ACTIONS(201), - [anon_sym_trait] = ACTIONS(204), - [anon_sym_type] = ACTIONS(207), - [anon_sym_union] = ACTIONS(210), - [anon_sym_unsafe] = ACTIONS(213), - [anon_sym_use] = ACTIONS(216), - [anon_sym_while] = ACTIONS(219), - [anon_sym_POUND] = ACTIONS(222), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_extern] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(228), - [anon_sym_COLON_COLON] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(234), - [anon_sym_DOT_DOT] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(240), - [anon_sym_yield] = ACTIONS(243), - [anon_sym_move] = ACTIONS(246), - [sym_integer_literal] = ACTIONS(249), - [aux_sym_string_literal_token1] = ACTIONS(252), - [sym_char_literal] = ACTIONS(249), - [anon_sym_true] = ACTIONS(255), - [anon_sym_false] = ACTIONS(255), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(258), - [sym_super] = ACTIONS(261), - [sym_crate] = ACTIONS(264), - [sym_metavariable] = ACTIONS(267), - [sym_raw_string_literal] = ACTIONS(249), - [sym_float_literal] = ACTIONS(249), - [sym_block_comment] = ACTIONS(3), - }, [11] = { [sym__statement] = STATE(13), [sym_empty_statement] = STATE(13), @@ -17669,68 +17602,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(13), [sym_function_item] = STATE(13), [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2488), + [sym_function_modifiers] = STATE(2331), [sym_impl_item] = STATE(13), [sym_trait_item] = STATE(13), [sym_associated_type] = STATE(13), [sym_let_declaration] = STATE(13), [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1239), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_extern_modifier] = STATE(1516), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1251), + [sym_macro_invocation] = STATE(66), + [sym_scoped_identifier] = STATE(1170), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2439), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(270), + [anon_sym_RBRACE] = ACTIONS(268), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -17801,85 +17732,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [12] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1285), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2331), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1516), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1213), + [sym_macro_invocation] = STATE(66), + [sym_scoped_identifier] = STATE(1170), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2439), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(272), + [anon_sym_RBRACE] = ACTIONS(270), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -17950,234 +17879,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [13] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1299), - [sym_macro_invocation] = STATE(188), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(126), - [anon_sym_macro_rules_BANG] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(132), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(138), - [anon_sym_STAR] = ACTIONS(141), - [anon_sym_u8] = ACTIONS(144), - [anon_sym_i8] = ACTIONS(144), - [anon_sym_u16] = ACTIONS(144), - [anon_sym_i16] = ACTIONS(144), - [anon_sym_u32] = ACTIONS(144), - [anon_sym_i32] = ACTIONS(144), - [anon_sym_u64] = ACTIONS(144), - [anon_sym_i64] = ACTIONS(144), - [anon_sym_u128] = ACTIONS(144), - [anon_sym_i128] = ACTIONS(144), - [anon_sym_isize] = ACTIONS(144), - [anon_sym_usize] = ACTIONS(144), - [anon_sym_f32] = ACTIONS(144), - [anon_sym_f64] = ACTIONS(144), - [anon_sym_bool] = ACTIONS(144), - [anon_sym_str] = ACTIONS(144), - [anon_sym_char] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_async] = ACTIONS(150), - [anon_sym_break] = ACTIONS(153), - [anon_sym_const] = ACTIONS(156), - [anon_sym_continue] = ACTIONS(159), - [anon_sym_default] = ACTIONS(162), - [anon_sym_enum] = ACTIONS(165), - [anon_sym_fn] = ACTIONS(168), - [anon_sym_for] = ACTIONS(171), - [anon_sym_if] = ACTIONS(174), - [anon_sym_impl] = ACTIONS(177), - [anon_sym_let] = ACTIONS(180), - [anon_sym_loop] = ACTIONS(183), - [anon_sym_match] = ACTIONS(186), - [anon_sym_mod] = ACTIONS(189), - [anon_sym_pub] = ACTIONS(192), - [anon_sym_return] = ACTIONS(195), - [anon_sym_static] = ACTIONS(198), - [anon_sym_struct] = ACTIONS(201), - [anon_sym_trait] = ACTIONS(204), - [anon_sym_type] = ACTIONS(207), - [anon_sym_union] = ACTIONS(210), - [anon_sym_unsafe] = ACTIONS(213), - [anon_sym_use] = ACTIONS(216), - [anon_sym_while] = ACTIONS(219), - [anon_sym_POUND] = ACTIONS(222), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_extern] = ACTIONS(225), - [anon_sym_LT] = ACTIONS(228), - [anon_sym_COLON_COLON] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(234), - [anon_sym_DOT_DOT] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(240), - [anon_sym_yield] = ACTIONS(243), - [anon_sym_move] = ACTIONS(246), - [sym_integer_literal] = ACTIONS(249), - [aux_sym_string_literal_token1] = ACTIONS(252), - [sym_char_literal] = ACTIONS(249), - [anon_sym_true] = ACTIONS(255), - [anon_sym_false] = ACTIONS(255), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(258), - [sym_super] = ACTIONS(261), - [sym_crate] = ACTIONS(264), - [sym_metavariable] = ACTIONS(267), - [sym_raw_string_literal] = ACTIONS(249), - [sym_float_literal] = ACTIONS(249), + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2331), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1516), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1252), + [sym_macro_invocation] = STATE(66), + [sym_scoped_identifier] = STATE(1170), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2439), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(9), + [anon_sym_macro_rules_BANG] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(272), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(29), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(33), + [anon_sym_enum] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_if] = ACTIONS(41), + [anon_sym_impl] = ACTIONS(43), + [anon_sym_let] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_match] = ACTIONS(49), + [anon_sym_mod] = ACTIONS(51), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_static] = ACTIONS(57), + [anon_sym_struct] = ACTIONS(59), + [anon_sym_trait] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_union] = ACTIONS(65), + [anon_sym_unsafe] = ACTIONS(67), + [anon_sym_use] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(75), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(101), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [14] = { - [sym__statement] = STATE(11), - [sym_empty_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_macro_definition] = STATE(11), - [sym_attribute_item] = STATE(11), - [sym_inner_attribute_item] = STATE(11), - [sym_mod_item] = STATE(11), - [sym_foreign_mod_item] = STATE(11), - [sym_struct_item] = STATE(11), - [sym_union_item] = STATE(11), - [sym_enum_item] = STATE(11), - [sym_extern_crate_declaration] = STATE(11), - [sym_const_item] = STATE(11), - [sym_static_item] = STATE(11), - [sym_type_item] = STATE(11), - [sym_function_item] = STATE(11), - [sym_function_signature_item] = STATE(11), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(11), - [sym_trait_item] = STATE(11), - [sym_associated_type] = STATE(11), - [sym_let_declaration] = STATE(11), - [sym_use_declaration] = STATE(11), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1229), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym__statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_macro_definition] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_foreign_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_union_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_extern_crate_declaration] = STATE(8), + [sym_const_item] = STATE(8), + [sym_static_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function_modifiers] = STATE(2331), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_extern_modifier] = STATE(1516), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1293), + [sym_macro_invocation] = STATE(66), + [sym_scoped_identifier] = STATE(1170), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2439), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [ts_builtin_sym_end] = ACTIONS(274), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(274), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -18265,62 +18190,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(16), [sym_function_item] = STATE(16), [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(2488), + [sym_function_modifiers] = STATE(2331), [sym_impl_item] = STATE(16), [sym_trait_item] = STATE(16), [sym_associated_type] = STATE(16), [sym_let_declaration] = STATE(16), [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1273), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_extern_modifier] = STATE(1516), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1198), + [sym_macro_invocation] = STATE(66), + [sym_scoped_identifier] = STATE(1170), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2439), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -18397,79 +18320,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [16] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2488), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1361), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1190), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(76), - [sym_if_let_expression] = STATE(76), - [sym_match_expression] = STATE(76), - [sym_while_expression] = STATE(76), - [sym_while_let_expression] = STATE(76), - [sym_loop_expression] = STATE(76), - [sym_for_expression] = STATE(76), - [sym_const_block] = STATE(76), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2483), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(76), - [sym_async_block] = STATE(76), - [sym_block] = STATE(76), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1564), + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2331), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1516), + [sym_visibility_modifier] = STATE(1320), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1202), + [sym_macro_invocation] = STATE(66), + [sym_scoped_identifier] = STATE(1170), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2439), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -18546,52 +18467,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1162), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1137), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(282), [anon_sym_LPAREN] = ACTIONS(282), @@ -18688,52 +18607,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1169), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1141), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), [sym_loop_label] = STATE(17), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(310), [anon_sym_LPAREN] = ACTIONS(310), @@ -18829,63 +18746,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1172), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1097), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(316), - [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(316), [anon_sym_RPAREN] = ACTIONS(316), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_RBRACE] = ACTIONS(316), [anon_sym_EQ_GT] = ACTIONS(316), - [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(316), [anon_sym_RBRACK] = ACTIONS(316), [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_STAR] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(318), [anon_sym_QMARK] = ACTIONS(316), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -18922,17 +18837,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(308), [anon_sym_EQ] = ACTIONS(318), [anon_sym_COMMA] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(318), [anon_sym_GT] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(322), + [anon_sym_AMP] = ACTIONS(318), [anon_sym_DOT_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT] = ACTIONS(324), + [anon_sym_DOT_DOT] = ACTIONS(318), [anon_sym_DOT_DOT_EQ] = ACTIONS(316), - [anon_sym_DASH] = ACTIONS(308), + [anon_sym_DASH] = ACTIONS(318), [anon_sym_AMP_AMP] = ACTIONS(316), [anon_sym_PIPE_PIPE] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(326), + [anon_sym_PIPE] = ACTIONS(318), [anon_sym_CARET] = ACTIONS(318), [anon_sym_EQ_EQ] = ACTIONS(316), [anon_sym_BANG_EQ] = ACTIONS(316), @@ -18970,205 +18885,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1088), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(328), - [anon_sym_RPAREN] = ACTIONS(328), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(328), - [anon_sym_EQ_GT] = ACTIONS(328), - [anon_sym_LBRACK] = ACTIONS(328), - [anon_sym_RBRACK] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_STAR] = ACTIONS(330), - [anon_sym_QMARK] = ACTIONS(328), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(330), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(330), - [anon_sym_COMMA] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(330), - [anon_sym_GT] = ACTIONS(330), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT] = ACTIONS(330), - [anon_sym_DOT_DOT_EQ] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_AMP_AMP] = ACTIONS(328), - [anon_sym_PIPE_PIPE] = ACTIONS(328), - [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(330), - [anon_sym_EQ_EQ] = ACTIONS(328), - [anon_sym_BANG_EQ] = ACTIONS(328), - [anon_sym_LT_EQ] = ACTIONS(328), - [anon_sym_GT_EQ] = ACTIONS(328), - [anon_sym_LT_LT] = ACTIONS(330), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_SLASH] = ACTIONS(330), - [anon_sym_PERCENT] = ACTIONS(330), - [anon_sym_PLUS_EQ] = ACTIONS(328), - [anon_sym_DASH_EQ] = ACTIONS(328), - [anon_sym_STAR_EQ] = ACTIONS(328), - [anon_sym_SLASH_EQ] = ACTIONS(328), - [anon_sym_PERCENT_EQ] = ACTIONS(328), - [anon_sym_AMP_EQ] = ACTIONS(328), - [anon_sym_PIPE_EQ] = ACTIONS(328), - [anon_sym_CARET_EQ] = ACTIONS(328), - [anon_sym_LT_LT_EQ] = ACTIONS(328), - [anon_sym_GT_GT_EQ] = ACTIONS(328), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(330), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [21] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1088), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1139), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_SEMI] = ACTIONS(320), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(328), + [anon_sym_RPAREN] = ACTIONS(320), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(328), - [anon_sym_EQ_GT] = ACTIONS(328), - [anon_sym_LBRACK] = ACTIONS(328), - [anon_sym_RBRACK] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_STAR] = ACTIONS(330), - [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_RBRACE] = ACTIONS(320), + [anon_sym_EQ_GT] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(308), + [anon_sym_QMARK] = ACTIONS(320), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -19187,7 +18959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(330), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -19202,182 +18974,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(330), - [anon_sym_COMMA] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(330), - [anon_sym_GT] = ACTIONS(330), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_COMMA] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(324), + [anon_sym_GT] = ACTIONS(322), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT] = ACTIONS(330), - [anon_sym_DOT_DOT_EQ] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_AMP_AMP] = ACTIONS(328), - [anon_sym_PIPE_PIPE] = ACTIONS(328), + [anon_sym_AMP] = ACTIONS(326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT] = ACTIONS(328), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(330), - [anon_sym_EQ_EQ] = ACTIONS(328), - [anon_sym_BANG_EQ] = ACTIONS(328), - [anon_sym_LT_EQ] = ACTIONS(328), - [anon_sym_GT_EQ] = ACTIONS(328), - [anon_sym_LT_LT] = ACTIONS(330), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_SLASH] = ACTIONS(330), - [anon_sym_PERCENT] = ACTIONS(330), - [anon_sym_PLUS_EQ] = ACTIONS(328), - [anon_sym_DASH_EQ] = ACTIONS(328), - [anon_sym_STAR_EQ] = ACTIONS(328), - [anon_sym_SLASH_EQ] = ACTIONS(328), - [anon_sym_PERCENT_EQ] = ACTIONS(328), - [anon_sym_AMP_EQ] = ACTIONS(328), - [anon_sym_PIPE_EQ] = ACTIONS(328), - [anon_sym_CARET_EQ] = ACTIONS(328), - [anon_sym_LT_LT_EQ] = ACTIONS(328), - [anon_sym_GT_GT_EQ] = ACTIONS(328), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(330), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [22] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(332), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(332), - [anon_sym_EQ_GT] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(332), - [anon_sym_RBRACK] = ACTIONS(332), - [anon_sym_PLUS] = ACTIONS(334), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_QMARK] = ACTIONS(332), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(334), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(334), - [anon_sym_COMMA] = ACTIONS(332), - [anon_sym_LT] = ACTIONS(334), - [anon_sym_GT] = ACTIONS(334), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_DOT_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_DOT_DOT_EQ] = ACTIONS(332), - [anon_sym_DASH] = ACTIONS(334), - [anon_sym_AMP_AMP] = ACTIONS(332), - [anon_sym_PIPE_PIPE] = ACTIONS(332), - [anon_sym_PIPE] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(332), - [anon_sym_BANG_EQ] = ACTIONS(332), - [anon_sym_LT_EQ] = ACTIONS(332), - [anon_sym_GT_EQ] = ACTIONS(332), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(334), - [anon_sym_SLASH] = ACTIONS(334), - [anon_sym_PERCENT] = ACTIONS(334), - [anon_sym_PLUS_EQ] = ACTIONS(332), - [anon_sym_DASH_EQ] = ACTIONS(332), - [anon_sym_STAR_EQ] = ACTIONS(332), - [anon_sym_SLASH_EQ] = ACTIONS(332), - [anon_sym_PERCENT_EQ] = ACTIONS(332), - [anon_sym_AMP_EQ] = ACTIONS(332), - [anon_sym_PIPE_EQ] = ACTIONS(332), - [anon_sym_CARET_EQ] = ACTIONS(332), - [anon_sym_LT_LT_EQ] = ACTIONS(332), - [anon_sym_GT_GT_EQ] = ACTIONS(332), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(334), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19392,53 +19023,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [23] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [21] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1064), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(332), [anon_sym_LPAREN] = ACTIONS(332), @@ -19533,53 +19162,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [24] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1178), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [22] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1151), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(336), [anon_sym_LPAREN] = ACTIONS(13), @@ -19627,17 +19254,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(308), [anon_sym_EQ] = ACTIONS(338), [anon_sym_COMMA] = ACTIONS(336), - [anon_sym_LT] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(324), [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(322), + [anon_sym_AMP] = ACTIONS(326), [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(324), + [anon_sym_DOT_DOT] = ACTIONS(328), [anon_sym_DOT_DOT_EQ] = ACTIONS(336), [anon_sym_DASH] = ACTIONS(308), [anon_sym_AMP_AMP] = ACTIONS(336), [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(326), + [anon_sym_PIPE] = ACTIONS(330), [anon_sym_CARET] = ACTIONS(338), [anon_sym_EQ_EQ] = ACTIONS(336), [anon_sym_BANG_EQ] = ACTIONS(336), @@ -19674,53 +19301,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [23] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1097), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_RBRACE] = ACTIONS(316), + [anon_sym_EQ_GT] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(316), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(318), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(308), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(318), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [24] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1064), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(332), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_RBRACE] = ACTIONS(332), + [anon_sym_EQ_GT] = ACTIONS(332), + [anon_sym_LBRACK] = ACTIONS(332), + [anon_sym_RBRACK] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_STAR] = ACTIONS(334), + [anon_sym_QMARK] = ACTIONS(332), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(334), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(308), + [anon_sym_EQ] = ACTIONS(334), + [anon_sym_COMMA] = ACTIONS(332), + [anon_sym_LT] = ACTIONS(334), + [anon_sym_GT] = ACTIONS(334), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT] = ACTIONS(334), + [anon_sym_DOT_DOT_EQ] = ACTIONS(332), + [anon_sym_DASH] = ACTIONS(334), + [anon_sym_AMP_AMP] = ACTIONS(332), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_CARET] = ACTIONS(334), + [anon_sym_EQ_EQ] = ACTIONS(332), + [anon_sym_BANG_EQ] = ACTIONS(332), + [anon_sym_LT_EQ] = ACTIONS(332), + [anon_sym_GT_EQ] = ACTIONS(332), + [anon_sym_LT_LT] = ACTIONS(334), + [anon_sym_GT_GT] = ACTIONS(334), + [anon_sym_SLASH] = ACTIONS(334), + [anon_sym_PERCENT] = ACTIONS(334), + [anon_sym_PLUS_EQ] = ACTIONS(332), + [anon_sym_DASH_EQ] = ACTIONS(332), + [anon_sym_STAR_EQ] = ACTIONS(332), + [anon_sym_SLASH_EQ] = ACTIONS(332), + [anon_sym_PERCENT_EQ] = ACTIONS(332), + [anon_sym_AMP_EQ] = ACTIONS(332), + [anon_sym_PIPE_EQ] = ACTIONS(332), + [anon_sym_CARET_EQ] = ACTIONS(332), + [anon_sym_LT_LT_EQ] = ACTIONS(332), + [anon_sym_GT_GT_EQ] = ACTIONS(332), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(334), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, [25] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1296), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(282), [anon_sym_LBRACE] = ACTIONS(282), @@ -19811,59 +19714,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1088), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1097), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(328), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_LBRACK] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_STAR] = ACTIONS(330), - [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(316), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -19882,7 +19783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(330), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -19897,40 +19798,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(330), - [anon_sym_LT] = ACTIONS(330), - [anon_sym_GT] = ACTIONS(330), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT] = ACTIONS(330), - [anon_sym_DOT_DOT_EQ] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_AMP_AMP] = ACTIONS(328), - [anon_sym_PIPE_PIPE] = ACTIONS(328), - [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(330), - [anon_sym_EQ_EQ] = ACTIONS(328), - [anon_sym_BANG_EQ] = ACTIONS(328), - [anon_sym_LT_EQ] = ACTIONS(328), - [anon_sym_GT_EQ] = ACTIONS(328), - [anon_sym_LT_LT] = ACTIONS(330), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_SLASH] = ACTIONS(330), - [anon_sym_PERCENT] = ACTIONS(330), - [anon_sym_PLUS_EQ] = ACTIONS(328), - [anon_sym_DASH_EQ] = ACTIONS(328), - [anon_sym_STAR_EQ] = ACTIONS(328), - [anon_sym_SLASH_EQ] = ACTIONS(328), - [anon_sym_PERCENT_EQ] = ACTIONS(328), - [anon_sym_AMP_EQ] = ACTIONS(328), - [anon_sym_PIPE_EQ] = ACTIONS(328), - [anon_sym_CARET_EQ] = ACTIONS(328), - [anon_sym_LT_LT_EQ] = ACTIONS(328), - [anon_sym_GT_GT_EQ] = ACTIONS(328), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(330), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19946,54 +19847,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1205), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(332), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(350), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(338), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(324), + [anon_sym_GT] = ACTIONS(338), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT] = ACTIONS(366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(330), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [anon_sym_DOT] = ACTIONS(338), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [28] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1064), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(332), [anon_sym_LBRACK] = ACTIONS(332), [anon_sym_PLUS] = ACTIONS(334), @@ -20080,59 +20112,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [28] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1238), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [29] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1097), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_STAR] = ACTIONS(350), + [anon_sym_STAR] = ACTIONS(318), [anon_sym_QMARK] = ACTIONS(316), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), @@ -20168,17 +20198,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), [anon_sym_EQ] = ACTIONS(318), - [anon_sym_LT] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(318), [anon_sym_GT] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(364), + [anon_sym_AMP] = ACTIONS(318), [anon_sym_DOT_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT] = ACTIONS(366), + [anon_sym_DOT_DOT] = ACTIONS(318), [anon_sym_DOT_DOT_EQ] = ACTIONS(316), - [anon_sym_DASH] = ACTIONS(350), + [anon_sym_DASH] = ACTIONS(318), [anon_sym_AMP_AMP] = ACTIONS(316), [anon_sym_PIPE_PIPE] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(326), + [anon_sym_PIPE] = ACTIONS(318), [anon_sym_CARET] = ACTIONS(318), [anon_sym_EQ_EQ] = ACTIONS(316), [anon_sym_BANG_EQ] = ACTIONS(316), @@ -20215,190 +20245,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [29] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1231), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(25), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(310), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(310), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(314), - [anon_sym_as] = ACTIONS(312), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(312), - [anon_sym_LT] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(312), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(312), - [anon_sym_DOT_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_AMP_AMP] = ACTIONS(310), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_EQ_EQ] = ACTIONS(310), - [anon_sym_BANG_EQ] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(312), - [anon_sym_GT_GT] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(312), - [anon_sym_PERCENT] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(310), - [anon_sym_DASH_EQ] = ACTIONS(310), - [anon_sym_STAR_EQ] = ACTIONS(310), - [anon_sym_SLASH_EQ] = ACTIONS(310), - [anon_sym_PERCENT_EQ] = ACTIONS(310), - [anon_sym_AMP_EQ] = ACTIONS(310), - [anon_sym_PIPE_EQ] = ACTIONS(310), - [anon_sym_CARET_EQ] = ACTIONS(310), - [anon_sym_LT_LT_EQ] = ACTIONS(310), - [anon_sym_GT_GT_EQ] = ACTIONS(310), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(312), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, [30] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1064), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(332), [anon_sym_LBRACE] = ACTIONS(332), [anon_sym_LBRACK] = ACTIONS(332), [anon_sym_PLUS] = ACTIONS(334), @@ -20486,59 +20379,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [31] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1088), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1239), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(25), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_LBRACK] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_STAR] = ACTIONS(330), - [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_STAR] = ACTIONS(312), + [anon_sym_QMARK] = ACTIONS(310), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20556,8 +20447,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(342), [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(330), + [anon_sym_SQUOTE] = ACTIONS(314), + [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20572,40 +20463,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(330), - [anon_sym_LT] = ACTIONS(330), - [anon_sym_GT] = ACTIONS(330), + [anon_sym_EQ] = ACTIONS(312), + [anon_sym_LT] = ACTIONS(312), + [anon_sym_GT] = ACTIONS(312), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT] = ACTIONS(330), - [anon_sym_DOT_DOT_EQ] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_AMP_AMP] = ACTIONS(328), - [anon_sym_PIPE_PIPE] = ACTIONS(328), - [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(330), - [anon_sym_EQ_EQ] = ACTIONS(328), - [anon_sym_BANG_EQ] = ACTIONS(328), - [anon_sym_LT_EQ] = ACTIONS(328), - [anon_sym_GT_EQ] = ACTIONS(328), - [anon_sym_LT_LT] = ACTIONS(330), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_SLASH] = ACTIONS(330), - [anon_sym_PERCENT] = ACTIONS(330), - [anon_sym_PLUS_EQ] = ACTIONS(328), - [anon_sym_DASH_EQ] = ACTIONS(328), - [anon_sym_STAR_EQ] = ACTIONS(328), - [anon_sym_SLASH_EQ] = ACTIONS(328), - [anon_sym_PERCENT_EQ] = ACTIONS(328), - [anon_sym_AMP_EQ] = ACTIONS(328), - [anon_sym_PIPE_EQ] = ACTIONS(328), - [anon_sym_CARET_EQ] = ACTIONS(328), - [anon_sym_LT_LT_EQ] = ACTIONS(328), - [anon_sym_GT_GT_EQ] = ACTIONS(328), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_DOT_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(310), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(310), + [anon_sym_PIPE] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_EQ_EQ] = ACTIONS(310), + [anon_sym_BANG_EQ] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(312), + [anon_sym_SLASH] = ACTIONS(312), + [anon_sym_PERCENT] = ACTIONS(312), + [anon_sym_PLUS_EQ] = ACTIONS(310), + [anon_sym_DASH_EQ] = ACTIONS(310), + [anon_sym_STAR_EQ] = ACTIONS(310), + [anon_sym_SLASH_EQ] = ACTIONS(310), + [anon_sym_PERCENT_EQ] = ACTIONS(310), + [anon_sym_AMP_EQ] = ACTIONS(310), + [anon_sym_PIPE_EQ] = ACTIONS(310), + [anon_sym_CARET_EQ] = ACTIONS(310), + [anon_sym_LT_LT_EQ] = ACTIONS(310), + [anon_sym_GT_GT_EQ] = ACTIONS(310), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(330), + [anon_sym_DOT] = ACTIONS(312), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20621,59 +20512,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1235), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1214), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_PLUS] = ACTIONS(322), [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_QMARK] = ACTIONS(320), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20692,7 +20581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(338), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20707,40 +20596,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_LT] = ACTIONS(320), - [anon_sym_GT] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(324), + [anon_sym_GT] = ACTIONS(322), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_PERCENT] = ACTIONS(338), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(330), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20756,59 +20645,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym_attribute_item] = STATE(640), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1206), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_enum_variant_list_repeat1] = STATE(640), + [sym_attribute_item] = STATE(59), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1188), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_enum_variant_list_repeat1] = STATE(59), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(368), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(368), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -20867,54 +20754,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym_attribute_item] = STATE(33), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1204), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_enum_variant_list_repeat1] = STATE(33), + [sym_attribute_item] = STATE(621), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1184), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_enum_variant_list_repeat1] = STATE(621), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20978,59 +20863,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym_attribute_item] = STATE(43), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_enum_variant_list_repeat1] = STATE(43), + [sym_attribute_item] = STATE(34), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1185), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_enum_variant_list_repeat1] = STATE(34), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(378), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(378), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -21089,167 +20972,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym_attribute_item] = STATE(41), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1245), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_enum_variant_list_repeat1] = STATE(41), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2162), + [sym__condition] = STATE(2162), + [sym__conditions] = STATE(2164), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(382), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [37] = { - [sym_attribute_item] = STATE(40), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1268), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_enum_variant_list_repeat1] = STATE(40), + [sym_attribute_item] = STATE(57), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1243), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_enum_variant_list_repeat1] = STATE(57), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(384), + [anon_sym_RPAREN] = ACTIONS(390), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -21309,57 +21188,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [38] = { - [sym_attribute_item] = STATE(40), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1268), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_enum_variant_list_repeat1] = STATE(40), + [sym_attribute_item] = STATE(53), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_enum_variant_list_repeat1] = STATE(53), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(386), + [anon_sym_RPAREN] = ACTIONS(392), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -21419,57 +21296,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [39] = { - [sym_attribute_item] = STATE(40), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1268), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_enum_variant_list_repeat1] = STATE(40), + [sym_attribute_item] = STATE(53), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_enum_variant_list_repeat1] = STATE(53), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(388), + [anon_sym_RPAREN] = ACTIONS(394), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -21529,492 +21404,595 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [40] = { - [sym_attribute_item] = STATE(640), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1271), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_enum_variant_list_repeat1] = STATE(640), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2162), + [sym__condition] = STATE(2162), + [sym__conditions] = STATE(2157), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [41] = { - [sym_attribute_item] = STATE(640), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1306), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_enum_variant_list_repeat1] = STATE(640), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2162), + [sym__condition] = STATE(2162), + [sym__conditions] = STATE(2132), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [42] = { - [sym_attribute_item] = STATE(40), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1268), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_enum_variant_list_repeat1] = STATE(40), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2162), + [sym__condition] = STATE(2162), + [sym__conditions] = STATE(2264), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [43] = { - [sym_attribute_item] = STATE(640), - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_enum_variant_list_repeat1] = STATE(640), - [sym_identifier] = ACTIONS(280), + [sym_else_clause] = STATE(76), + [ts_builtin_sym_end] = ACTIONS(396), + [sym_identifier] = ACTIONS(398), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_macro_rules_BANG] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(396), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_PLUS] = ACTIONS(398), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_QMARK] = ACTIONS(396), + [anon_sym_u8] = ACTIONS(398), + [anon_sym_i8] = ACTIONS(398), + [anon_sym_u16] = ACTIONS(398), + [anon_sym_i16] = ACTIONS(398), + [anon_sym_u32] = ACTIONS(398), + [anon_sym_i32] = ACTIONS(398), + [anon_sym_u64] = ACTIONS(398), + [anon_sym_i64] = ACTIONS(398), + [anon_sym_u128] = ACTIONS(398), + [anon_sym_i128] = ACTIONS(398), + [anon_sym_isize] = ACTIONS(398), + [anon_sym_usize] = ACTIONS(398), + [anon_sym_f32] = ACTIONS(398), + [anon_sym_f64] = ACTIONS(398), + [anon_sym_bool] = ACTIONS(398), + [anon_sym_str] = ACTIONS(398), + [anon_sym_char] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(398), + [anon_sym_as] = ACTIONS(398), + [anon_sym_async] = ACTIONS(398), + [anon_sym_break] = ACTIONS(398), + [anon_sym_const] = ACTIONS(398), + [anon_sym_continue] = ACTIONS(398), + [anon_sym_default] = ACTIONS(398), + [anon_sym_enum] = ACTIONS(398), + [anon_sym_fn] = ACTIONS(398), + [anon_sym_for] = ACTIONS(398), + [anon_sym_if] = ACTIONS(398), + [anon_sym_impl] = ACTIONS(398), + [anon_sym_let] = ACTIONS(398), + [anon_sym_loop] = ACTIONS(398), + [anon_sym_match] = ACTIONS(398), + [anon_sym_mod] = ACTIONS(398), + [anon_sym_pub] = ACTIONS(398), + [anon_sym_return] = ACTIONS(398), + [anon_sym_static] = ACTIONS(398), + [anon_sym_struct] = ACTIONS(398), + [anon_sym_trait] = ACTIONS(398), + [anon_sym_type] = ACTIONS(398), + [anon_sym_union] = ACTIONS(398), + [anon_sym_unsafe] = ACTIONS(398), + [anon_sym_use] = ACTIONS(398), + [anon_sym_while] = ACTIONS(398), + [anon_sym_POUND] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(398), + [anon_sym_extern] = ACTIONS(398), + [anon_sym_LT] = ACTIONS(398), + [anon_sym_GT] = ACTIONS(398), + [anon_sym_COLON_COLON] = ACTIONS(396), + [anon_sym_AMP] = ACTIONS(398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(396), + [anon_sym_DOT_DOT] = ACTIONS(398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(396), + [anon_sym_DASH] = ACTIONS(398), + [anon_sym_AMP_AMP] = ACTIONS(396), + [anon_sym_PIPE_PIPE] = ACTIONS(396), + [anon_sym_PIPE] = ACTIONS(398), + [anon_sym_CARET] = ACTIONS(398), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT_LT] = ACTIONS(398), + [anon_sym_GT_GT] = ACTIONS(398), + [anon_sym_SLASH] = ACTIONS(398), + [anon_sym_PERCENT] = ACTIONS(398), + [anon_sym_PLUS_EQ] = ACTIONS(396), + [anon_sym_DASH_EQ] = ACTIONS(396), + [anon_sym_STAR_EQ] = ACTIONS(396), + [anon_sym_SLASH_EQ] = ACTIONS(396), + [anon_sym_PERCENT_EQ] = ACTIONS(396), + [anon_sym_AMP_EQ] = ACTIONS(396), + [anon_sym_PIPE_EQ] = ACTIONS(396), + [anon_sym_CARET_EQ] = ACTIONS(396), + [anon_sym_LT_LT_EQ] = ACTIONS(396), + [anon_sym_GT_GT_EQ] = ACTIONS(396), + [anon_sym_yield] = ACTIONS(398), + [anon_sym_else] = ACTIONS(400), + [anon_sym_move] = ACTIONS(398), + [anon_sym_DOT] = ACTIONS(398), + [sym_integer_literal] = ACTIONS(396), + [aux_sym_string_literal_token1] = ACTIONS(396), + [sym_char_literal] = ACTIONS(396), + [anon_sym_true] = ACTIONS(398), + [anon_sym_false] = ACTIONS(398), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(398), + [sym_super] = ACTIONS(398), + [sym_crate] = ACTIONS(398), + [sym_metavariable] = ACTIONS(396), + [sym_raw_string_literal] = ACTIONS(396), + [sym_float_literal] = ACTIONS(396), + [sym_block_comment] = ACTIONS(3), + }, + [44] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2162), + [sym__condition] = STATE(2162), + [sym__conditions] = STATE(2289), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [44] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1221), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_tuple_expression_repeat1] = STATE(47), + [45] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1268), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2304), + [sym__condition] = STATE(2304), + [sym__conditions] = STATE(2491), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(390), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -22043,6 +22021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(402), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), @@ -22072,706 +22051,383 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [45] = { - [sym_else_clause] = STATE(86), - [ts_builtin_sym_end] = ACTIONS(392), - [sym_identifier] = ACTIONS(394), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_macro_rules_BANG] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_isize] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_f32] = ACTIONS(394), - [anon_sym_f64] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_str] = ACTIONS(394), - [anon_sym_char] = ACTIONS(394), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_as] = ACTIONS(394), - [anon_sym_async] = ACTIONS(394), - [anon_sym_break] = ACTIONS(394), - [anon_sym_const] = ACTIONS(394), - [anon_sym_continue] = ACTIONS(394), - [anon_sym_default] = ACTIONS(394), - [anon_sym_enum] = ACTIONS(394), - [anon_sym_fn] = ACTIONS(394), - [anon_sym_for] = ACTIONS(394), - [anon_sym_if] = ACTIONS(394), - [anon_sym_impl] = ACTIONS(394), - [anon_sym_let] = ACTIONS(394), - [anon_sym_loop] = ACTIONS(394), - [anon_sym_match] = ACTIONS(394), - [anon_sym_mod] = ACTIONS(394), - [anon_sym_pub] = ACTIONS(394), - [anon_sym_return] = ACTIONS(394), - [anon_sym_static] = ACTIONS(394), - [anon_sym_struct] = ACTIONS(394), - [anon_sym_trait] = ACTIONS(394), - [anon_sym_type] = ACTIONS(394), - [anon_sym_union] = ACTIONS(394), - [anon_sym_unsafe] = ACTIONS(394), - [anon_sym_use] = ACTIONS(394), - [anon_sym_while] = ACTIONS(394), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_extern] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_COLON_COLON] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(394), - [anon_sym_DOT_DOT_DOT] = ACTIONS(392), - [anon_sym_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(392), - [anon_sym_PIPE_PIPE] = ACTIONS(392), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(394), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_STAR_EQ] = ACTIONS(392), - [anon_sym_SLASH_EQ] = ACTIONS(392), - [anon_sym_PERCENT_EQ] = ACTIONS(392), - [anon_sym_AMP_EQ] = ACTIONS(392), - [anon_sym_PIPE_EQ] = ACTIONS(392), - [anon_sym_CARET_EQ] = ACTIONS(392), - [anon_sym_LT_LT_EQ] = ACTIONS(392), - [anon_sym_GT_GT_EQ] = ACTIONS(392), - [anon_sym_yield] = ACTIONS(394), - [anon_sym_else] = ACTIONS(396), - [anon_sym_move] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(394), - [sym_integer_literal] = ACTIONS(392), - [aux_sym_string_literal_token1] = ACTIONS(392), - [sym_char_literal] = ACTIONS(392), - [anon_sym_true] = ACTIONS(394), - [anon_sym_false] = ACTIONS(394), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(394), - [sym_super] = ACTIONS(394), - [sym_crate] = ACTIONS(394), - [sym_metavariable] = ACTIONS(392), - [sym_raw_string_literal] = ACTIONS(392), - [sym_float_literal] = ACTIONS(392), - [sym_block_comment] = ACTIONS(3), - }, [46] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1244), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_tuple_expression_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2162), + [sym__condition] = STATE(2162), + [sym__conditions] = STATE(2197), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(398), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [47] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1283), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_tuple_expression_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2162), + [sym__condition] = STATE(2162), + [sym__conditions] = STATE(2290), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(400), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [48] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1283), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_tuple_expression_repeat1] = STATE(46), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2162), + [sym__condition] = STATE(2162), + [sym__conditions] = STATE(2305), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(400), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [49] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1310), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [aux_sym_tuple_expression_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(402), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_RPAREN] = ACTIONS(408), - [anon_sym_LBRACE] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(413), - [anon_sym_STAR] = ACTIONS(416), - [anon_sym_u8] = ACTIONS(419), - [anon_sym_i8] = ACTIONS(419), - [anon_sym_u16] = ACTIONS(419), - [anon_sym_i16] = ACTIONS(419), - [anon_sym_u32] = ACTIONS(419), - [anon_sym_i32] = ACTIONS(419), - [anon_sym_u64] = ACTIONS(419), - [anon_sym_i64] = ACTIONS(419), - [anon_sym_u128] = ACTIONS(419), - [anon_sym_i128] = ACTIONS(419), - [anon_sym_isize] = ACTIONS(419), - [anon_sym_usize] = ACTIONS(419), - [anon_sym_f32] = ACTIONS(419), - [anon_sym_f64] = ACTIONS(419), - [anon_sym_bool] = ACTIONS(419), - [anon_sym_str] = ACTIONS(419), - [anon_sym_char] = ACTIONS(419), - [anon_sym_SQUOTE] = ACTIONS(422), - [anon_sym_async] = ACTIONS(425), - [anon_sym_break] = ACTIONS(428), - [anon_sym_const] = ACTIONS(431), - [anon_sym_continue] = ACTIONS(434), - [anon_sym_default] = ACTIONS(437), - [anon_sym_for] = ACTIONS(440), - [anon_sym_if] = ACTIONS(443), - [anon_sym_loop] = ACTIONS(446), - [anon_sym_match] = ACTIONS(449), - [anon_sym_return] = ACTIONS(452), - [anon_sym_union] = ACTIONS(437), - [anon_sym_unsafe] = ACTIONS(455), - [anon_sym_while] = ACTIONS(458), - [anon_sym_BANG] = ACTIONS(416), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_COLON_COLON] = ACTIONS(464), - [anon_sym_AMP] = ACTIONS(467), - [anon_sym_DOT_DOT] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(416), - [anon_sym_PIPE] = ACTIONS(473), - [anon_sym_yield] = ACTIONS(476), - [anon_sym_move] = ACTIONS(479), - [sym_integer_literal] = ACTIONS(482), - [aux_sym_string_literal_token1] = ACTIONS(485), - [sym_char_literal] = ACTIONS(482), - [anon_sym_true] = ACTIONS(488), - [anon_sym_false] = ACTIONS(488), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(491), - [sym_super] = ACTIONS(494), - [sym_crate] = ACTIONS(494), - [sym_metavariable] = ACTIONS(497), - [sym_raw_string_literal] = ACTIONS(482), - [sym_float_literal] = ACTIONS(482), - [sym_block_comment] = ACTIONS(3), - }, - [50] = { - [sym_else_clause] = STATE(166), - [ts_builtin_sym_end] = ACTIONS(500), - [sym_identifier] = ACTIONS(502), - [anon_sym_SEMI] = ACTIONS(500), - [anon_sym_macro_rules_BANG] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACE] = ACTIONS(500), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_PLUS] = ACTIONS(502), - [anon_sym_STAR] = ACTIONS(502), - [anon_sym_QMARK] = ACTIONS(500), - [anon_sym_u8] = ACTIONS(502), - [anon_sym_i8] = ACTIONS(502), - [anon_sym_u16] = ACTIONS(502), - [anon_sym_i16] = ACTIONS(502), - [anon_sym_u32] = ACTIONS(502), - [anon_sym_i32] = ACTIONS(502), - [anon_sym_u64] = ACTIONS(502), - [anon_sym_i64] = ACTIONS(502), - [anon_sym_u128] = ACTIONS(502), - [anon_sym_i128] = ACTIONS(502), - [anon_sym_isize] = ACTIONS(502), - [anon_sym_usize] = ACTIONS(502), - [anon_sym_f32] = ACTIONS(502), - [anon_sym_f64] = ACTIONS(502), - [anon_sym_bool] = ACTIONS(502), - [anon_sym_str] = ACTIONS(502), - [anon_sym_char] = ACTIONS(502), - [anon_sym_SQUOTE] = ACTIONS(502), - [anon_sym_as] = ACTIONS(502), - [anon_sym_async] = ACTIONS(502), - [anon_sym_break] = ACTIONS(502), - [anon_sym_const] = ACTIONS(502), - [anon_sym_continue] = ACTIONS(502), - [anon_sym_default] = ACTIONS(502), - [anon_sym_enum] = ACTIONS(502), - [anon_sym_fn] = ACTIONS(502), - [anon_sym_for] = ACTIONS(502), - [anon_sym_if] = ACTIONS(502), - [anon_sym_impl] = ACTIONS(502), - [anon_sym_let] = ACTIONS(502), - [anon_sym_loop] = ACTIONS(502), - [anon_sym_match] = ACTIONS(502), - [anon_sym_mod] = ACTIONS(502), - [anon_sym_pub] = ACTIONS(502), - [anon_sym_return] = ACTIONS(502), - [anon_sym_static] = ACTIONS(502), - [anon_sym_struct] = ACTIONS(502), - [anon_sym_trait] = ACTIONS(502), - [anon_sym_type] = ACTIONS(502), - [anon_sym_union] = ACTIONS(502), - [anon_sym_unsafe] = ACTIONS(502), - [anon_sym_use] = ACTIONS(502), - [anon_sym_while] = ACTIONS(502), - [anon_sym_POUND] = ACTIONS(500), - [anon_sym_BANG] = ACTIONS(502), - [anon_sym_EQ] = ACTIONS(502), - [anon_sym_extern] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(502), - [anon_sym_GT] = ACTIONS(502), - [anon_sym_COLON_COLON] = ACTIONS(500), - [anon_sym_AMP] = ACTIONS(502), - [anon_sym_DOT_DOT_DOT] = ACTIONS(500), - [anon_sym_DOT_DOT] = ACTIONS(502), - [anon_sym_DOT_DOT_EQ] = ACTIONS(500), - [anon_sym_DASH] = ACTIONS(502), - [anon_sym_AMP_AMP] = ACTIONS(500), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_PIPE] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_EQ_EQ] = ACTIONS(500), - [anon_sym_BANG_EQ] = ACTIONS(500), - [anon_sym_LT_EQ] = ACTIONS(500), - [anon_sym_GT_EQ] = ACTIONS(500), - [anon_sym_LT_LT] = ACTIONS(502), - [anon_sym_GT_GT] = ACTIONS(502), - [anon_sym_SLASH] = ACTIONS(502), - [anon_sym_PERCENT] = ACTIONS(502), - [anon_sym_PLUS_EQ] = ACTIONS(500), - [anon_sym_DASH_EQ] = ACTIONS(500), - [anon_sym_STAR_EQ] = ACTIONS(500), - [anon_sym_SLASH_EQ] = ACTIONS(500), - [anon_sym_PERCENT_EQ] = ACTIONS(500), - [anon_sym_AMP_EQ] = ACTIONS(500), - [anon_sym_PIPE_EQ] = ACTIONS(500), - [anon_sym_CARET_EQ] = ACTIONS(500), - [anon_sym_LT_LT_EQ] = ACTIONS(500), - [anon_sym_GT_GT_EQ] = ACTIONS(500), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_else] = ACTIONS(396), - [anon_sym_move] = ACTIONS(502), - [anon_sym_DOT] = ACTIONS(502), - [sym_integer_literal] = ACTIONS(500), - [aux_sym_string_literal_token1] = ACTIONS(500), - [sym_char_literal] = ACTIONS(500), - [anon_sym_true] = ACTIONS(502), - [anon_sym_false] = ACTIONS(502), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(502), - [sym_super] = ACTIONS(502), - [sym_crate] = ACTIONS(502), - [sym_metavariable] = ACTIONS(500), - [sym_raw_string_literal] = ACTIONS(500), - [sym_float_literal] = ACTIONS(500), - [sym_block_comment] = ACTIONS(3), - }, - [51] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2162), + [sym__condition] = STATE(2162), + [sym__conditions] = STATE(2267), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22797,19 +22453,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(506), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22827,58 +22483,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [52] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1257), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [50] = { + [sym_attribute_item] = STATE(53), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_enum_variant_list_repeat1] = STATE(53), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(512), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -22911,6 +22567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), + [anon_sym_POUND] = ACTIONS(370), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -22934,58 +22591,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [53] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1256), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [51] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2162), + [sym__condition] = STATE(2162), + [sym__conditions] = STATE(2217), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23011,19 +22669,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(514), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23041,379 +22699,593 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [54] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1261), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [52] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1268), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2304), + [sym__condition] = STATE(2304), + [sym__conditions] = STATE(2197), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(516), + [anon_sym_let] = ACTIONS(402), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [55] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1220), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [53] = { + [sym_attribute_item] = STATE(621), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1197), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_enum_variant_list_repeat1] = STATE(621), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(518), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [56] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1276), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [54] = { + [ts_builtin_sym_end] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [anon_sym_SEMI] = ACTIONS(406), + [anon_sym_macro_rules_BANG] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_LBRACK] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_u8] = ACTIONS(408), + [anon_sym_i8] = ACTIONS(408), + [anon_sym_u16] = ACTIONS(408), + [anon_sym_i16] = ACTIONS(408), + [anon_sym_u32] = ACTIONS(408), + [anon_sym_i32] = ACTIONS(408), + [anon_sym_u64] = ACTIONS(408), + [anon_sym_i64] = ACTIONS(408), + [anon_sym_u128] = ACTIONS(408), + [anon_sym_i128] = ACTIONS(408), + [anon_sym_isize] = ACTIONS(408), + [anon_sym_usize] = ACTIONS(408), + [anon_sym_f32] = ACTIONS(408), + [anon_sym_f64] = ACTIONS(408), + [anon_sym_bool] = ACTIONS(408), + [anon_sym_str] = ACTIONS(408), + [anon_sym_char] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(408), + [anon_sym_as] = ACTIONS(408), + [anon_sym_async] = ACTIONS(408), + [anon_sym_break] = ACTIONS(408), + [anon_sym_const] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(408), + [anon_sym_default] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(408), + [anon_sym_fn] = ACTIONS(408), + [anon_sym_for] = ACTIONS(408), + [anon_sym_if] = ACTIONS(408), + [anon_sym_impl] = ACTIONS(408), + [anon_sym_let] = ACTIONS(408), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(408), + [anon_sym_mod] = ACTIONS(408), + [anon_sym_pub] = ACTIONS(408), + [anon_sym_return] = ACTIONS(408), + [anon_sym_static] = ACTIONS(408), + [anon_sym_struct] = ACTIONS(408), + [anon_sym_trait] = ACTIONS(408), + [anon_sym_type] = ACTIONS(408), + [anon_sym_union] = ACTIONS(408), + [anon_sym_unsafe] = ACTIONS(408), + [anon_sym_use] = ACTIONS(408), + [anon_sym_while] = ACTIONS(408), + [anon_sym_POUND] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [anon_sym_extern] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(408), + [anon_sym_GT] = ACTIONS(408), + [anon_sym_COLON_COLON] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(408), + [anon_sym_DOT_DOT_DOT] = ACTIONS(406), + [anon_sym_DOT_DOT] = ACTIONS(408), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(408), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(408), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(408), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_SLASH] = ACTIONS(408), + [anon_sym_PERCENT] = ACTIONS(408), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_PERCENT_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_CARET_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_yield] = ACTIONS(408), + [anon_sym_else] = ACTIONS(408), + [anon_sym_move] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(408), + [sym_integer_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(406), + [sym_char_literal] = ACTIONS(406), + [anon_sym_true] = ACTIONS(408), + [anon_sym_false] = ACTIONS(408), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_crate] = ACTIONS(408), + [sym_metavariable] = ACTIONS(406), + [sym_raw_string_literal] = ACTIONS(406), + [sym_float_literal] = ACTIONS(406), + [sym_block_comment] = ACTIONS(3), + }, + [55] = { + [sym_attribute_item] = STATE(53), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_enum_variant_list_repeat1] = STATE(53), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(520), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [56] = { + [ts_builtin_sym_end] = ACTIONS(410), + [sym_identifier] = ACTIONS(412), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_macro_rules_BANG] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_LBRACK] = ACTIONS(410), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_QMARK] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(412), + [anon_sym_as] = ACTIONS(412), + [anon_sym_async] = ACTIONS(412), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(412), + [anon_sym_continue] = ACTIONS(412), + [anon_sym_default] = ACTIONS(412), + [anon_sym_enum] = ACTIONS(412), + [anon_sym_fn] = ACTIONS(412), + [anon_sym_for] = ACTIONS(412), + [anon_sym_if] = ACTIONS(412), + [anon_sym_impl] = ACTIONS(412), + [anon_sym_let] = ACTIONS(412), + [anon_sym_loop] = ACTIONS(412), + [anon_sym_match] = ACTIONS(412), + [anon_sym_mod] = ACTIONS(412), + [anon_sym_pub] = ACTIONS(412), + [anon_sym_return] = ACTIONS(412), + [anon_sym_static] = ACTIONS(412), + [anon_sym_struct] = ACTIONS(412), + [anon_sym_trait] = ACTIONS(412), + [anon_sym_type] = ACTIONS(412), + [anon_sym_union] = ACTIONS(412), + [anon_sym_unsafe] = ACTIONS(412), + [anon_sym_use] = ACTIONS(412), + [anon_sym_while] = ACTIONS(412), + [anon_sym_POUND] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(412), + [anon_sym_EQ] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(412), + [anon_sym_GT] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_AMP] = ACTIONS(412), + [anon_sym_DOT_DOT_DOT] = ACTIONS(410), + [anon_sym_DOT_DOT] = ACTIONS(412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_AMP_AMP] = ACTIONS(410), + [anon_sym_PIPE_PIPE] = ACTIONS(410), + [anon_sym_PIPE] = ACTIONS(412), + [anon_sym_CARET] = ACTIONS(412), + [anon_sym_EQ_EQ] = ACTIONS(410), + [anon_sym_BANG_EQ] = ACTIONS(410), + [anon_sym_LT_EQ] = ACTIONS(410), + [anon_sym_GT_EQ] = ACTIONS(410), + [anon_sym_LT_LT] = ACTIONS(412), + [anon_sym_GT_GT] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(412), + [anon_sym_PERCENT] = ACTIONS(412), + [anon_sym_PLUS_EQ] = ACTIONS(410), + [anon_sym_DASH_EQ] = ACTIONS(410), + [anon_sym_STAR_EQ] = ACTIONS(410), + [anon_sym_SLASH_EQ] = ACTIONS(410), + [anon_sym_PERCENT_EQ] = ACTIONS(410), + [anon_sym_AMP_EQ] = ACTIONS(410), + [anon_sym_PIPE_EQ] = ACTIONS(410), + [anon_sym_CARET_EQ] = ACTIONS(410), + [anon_sym_LT_LT_EQ] = ACTIONS(410), + [anon_sym_GT_GT_EQ] = ACTIONS(410), + [anon_sym_yield] = ACTIONS(412), + [anon_sym_else] = ACTIONS(412), + [anon_sym_move] = ACTIONS(412), + [anon_sym_DOT] = ACTIONS(412), + [sym_integer_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(410), + [sym_char_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(412), + [sym_super] = ACTIONS(412), + [sym_crate] = ACTIONS(412), + [sym_metavariable] = ACTIONS(410), + [sym_raw_string_literal] = ACTIONS(410), + [sym_float_literal] = ACTIONS(410), + [sym_block_comment] = ACTIONS(3), + }, [57] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1257), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [sym_attribute_item] = STATE(621), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1289), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_enum_variant_list_repeat1] = STATE(621), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(522), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -23446,6 +23318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), + [anon_sym_POUND] = ACTIONS(370), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -23470,589 +23343,2282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [58] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1237), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [ts_builtin_sym_end] = ACTIONS(414), + [sym_identifier] = ACTIONS(416), + [anon_sym_SEMI] = ACTIONS(414), + [anon_sym_macro_rules_BANG] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE] = ACTIONS(414), + [anon_sym_LBRACK] = ACTIONS(414), + [anon_sym_PLUS] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(416), + [anon_sym_QMARK] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(416), + [anon_sym_i8] = ACTIONS(416), + [anon_sym_u16] = ACTIONS(416), + [anon_sym_i16] = ACTIONS(416), + [anon_sym_u32] = ACTIONS(416), + [anon_sym_i32] = ACTIONS(416), + [anon_sym_u64] = ACTIONS(416), + [anon_sym_i64] = ACTIONS(416), + [anon_sym_u128] = ACTIONS(416), + [anon_sym_i128] = ACTIONS(416), + [anon_sym_isize] = ACTIONS(416), + [anon_sym_usize] = ACTIONS(416), + [anon_sym_f32] = ACTIONS(416), + [anon_sym_f64] = ACTIONS(416), + [anon_sym_bool] = ACTIONS(416), + [anon_sym_str] = ACTIONS(416), + [anon_sym_char] = ACTIONS(416), + [anon_sym_SQUOTE] = ACTIONS(416), + [anon_sym_as] = ACTIONS(416), + [anon_sym_async] = ACTIONS(416), + [anon_sym_break] = ACTIONS(416), + [anon_sym_const] = ACTIONS(416), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_enum] = ACTIONS(416), + [anon_sym_fn] = ACTIONS(416), + [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(416), + [anon_sym_impl] = ACTIONS(416), + [anon_sym_let] = ACTIONS(416), + [anon_sym_loop] = ACTIONS(416), + [anon_sym_match] = ACTIONS(416), + [anon_sym_mod] = ACTIONS(416), + [anon_sym_pub] = ACTIONS(416), + [anon_sym_return] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(416), + [anon_sym_trait] = ACTIONS(416), + [anon_sym_type] = ACTIONS(416), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(416), + [anon_sym_use] = ACTIONS(416), + [anon_sym_while] = ACTIONS(416), + [anon_sym_POUND] = ACTIONS(414), + [anon_sym_BANG] = ACTIONS(416), + [anon_sym_EQ] = ACTIONS(416), + [anon_sym_extern] = ACTIONS(416), + [anon_sym_LT] = ACTIONS(416), + [anon_sym_GT] = ACTIONS(416), + [anon_sym_COLON_COLON] = ACTIONS(414), + [anon_sym_AMP] = ACTIONS(416), + [anon_sym_DOT_DOT_DOT] = ACTIONS(414), + [anon_sym_DOT_DOT] = ACTIONS(416), + [anon_sym_DOT_DOT_EQ] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(416), + [anon_sym_AMP_AMP] = ACTIONS(414), + [anon_sym_PIPE_PIPE] = ACTIONS(414), + [anon_sym_PIPE] = ACTIONS(416), + [anon_sym_CARET] = ACTIONS(416), + [anon_sym_EQ_EQ] = ACTIONS(414), + [anon_sym_BANG_EQ] = ACTIONS(414), + [anon_sym_LT_EQ] = ACTIONS(414), + [anon_sym_GT_EQ] = ACTIONS(414), + [anon_sym_LT_LT] = ACTIONS(416), + [anon_sym_GT_GT] = ACTIONS(416), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_PERCENT] = ACTIONS(416), + [anon_sym_PLUS_EQ] = ACTIONS(414), + [anon_sym_DASH_EQ] = ACTIONS(414), + [anon_sym_STAR_EQ] = ACTIONS(414), + [anon_sym_SLASH_EQ] = ACTIONS(414), + [anon_sym_PERCENT_EQ] = ACTIONS(414), + [anon_sym_AMP_EQ] = ACTIONS(414), + [anon_sym_PIPE_EQ] = ACTIONS(414), + [anon_sym_CARET_EQ] = ACTIONS(414), + [anon_sym_LT_LT_EQ] = ACTIONS(414), + [anon_sym_GT_GT_EQ] = ACTIONS(414), + [anon_sym_yield] = ACTIONS(416), + [anon_sym_else] = ACTIONS(416), + [anon_sym_move] = ACTIONS(416), + [anon_sym_DOT] = ACTIONS(416), + [sym_integer_literal] = ACTIONS(414), + [aux_sym_string_literal_token1] = ACTIONS(414), + [sym_char_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(416), + [sym_super] = ACTIONS(416), + [sym_crate] = ACTIONS(416), + [sym_metavariable] = ACTIONS(414), + [sym_raw_string_literal] = ACTIONS(414), + [sym_float_literal] = ACTIONS(414), + [sym_block_comment] = ACTIONS(3), + }, + [59] = { + [sym_attribute_item] = STATE(621), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1193), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_enum_variant_list_repeat1] = STATE(621), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [sym_mutable_specifier] = ACTIONS(524), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [59] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1236), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [60] = { + [ts_builtin_sym_end] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [anon_sym_SEMI] = ACTIONS(418), + [anon_sym_macro_rules_BANG] = ACTIONS(418), + [anon_sym_LPAREN] = ACTIONS(418), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_PLUS] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(424), + [anon_sym_u8] = ACTIONS(420), + [anon_sym_i8] = ACTIONS(420), + [anon_sym_u16] = ACTIONS(420), + [anon_sym_i16] = ACTIONS(420), + [anon_sym_u32] = ACTIONS(420), + [anon_sym_i32] = ACTIONS(420), + [anon_sym_u64] = ACTIONS(420), + [anon_sym_i64] = ACTIONS(420), + [anon_sym_u128] = ACTIONS(420), + [anon_sym_i128] = ACTIONS(420), + [anon_sym_isize] = ACTIONS(420), + [anon_sym_usize] = ACTIONS(420), + [anon_sym_f32] = ACTIONS(420), + [anon_sym_f64] = ACTIONS(420), + [anon_sym_bool] = ACTIONS(420), + [anon_sym_str] = ACTIONS(420), + [anon_sym_char] = ACTIONS(420), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_as] = ACTIONS(422), + [anon_sym_async] = ACTIONS(420), + [anon_sym_break] = ACTIONS(420), + [anon_sym_const] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(420), + [anon_sym_default] = ACTIONS(420), + [anon_sym_enum] = ACTIONS(420), + [anon_sym_fn] = ACTIONS(420), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(420), + [anon_sym_impl] = ACTIONS(420), + [anon_sym_let] = ACTIONS(420), + [anon_sym_loop] = ACTIONS(420), + [anon_sym_match] = ACTIONS(420), + [anon_sym_mod] = ACTIONS(420), + [anon_sym_pub] = ACTIONS(420), + [anon_sym_return] = ACTIONS(420), + [anon_sym_static] = ACTIONS(420), + [anon_sym_struct] = ACTIONS(420), + [anon_sym_trait] = ACTIONS(420), + [anon_sym_type] = ACTIONS(420), + [anon_sym_union] = ACTIONS(420), + [anon_sym_unsafe] = ACTIONS(420), + [anon_sym_use] = ACTIONS(420), + [anon_sym_while] = ACTIONS(420), + [anon_sym_POUND] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(420), + [anon_sym_EQ] = ACTIONS(422), + [anon_sym_extern] = ACTIONS(420), + [anon_sym_LT] = ACTIONS(420), + [anon_sym_GT] = ACTIONS(422), + [anon_sym_COLON_COLON] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(424), + [anon_sym_DOT_DOT] = ACTIONS(420), + [anon_sym_DOT_DOT_EQ] = ACTIONS(424), + [anon_sym_DASH] = ACTIONS(420), + [anon_sym_AMP_AMP] = ACTIONS(424), + [anon_sym_PIPE_PIPE] = ACTIONS(424), + [anon_sym_PIPE] = ACTIONS(420), + [anon_sym_CARET] = ACTIONS(422), + [anon_sym_EQ_EQ] = ACTIONS(424), + [anon_sym_BANG_EQ] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(424), + [anon_sym_GT_EQ] = ACTIONS(424), + [anon_sym_LT_LT] = ACTIONS(422), + [anon_sym_GT_GT] = ACTIONS(422), + [anon_sym_SLASH] = ACTIONS(422), + [anon_sym_PERCENT] = ACTIONS(422), + [anon_sym_PLUS_EQ] = ACTIONS(424), + [anon_sym_DASH_EQ] = ACTIONS(424), + [anon_sym_STAR_EQ] = ACTIONS(424), + [anon_sym_SLASH_EQ] = ACTIONS(424), + [anon_sym_PERCENT_EQ] = ACTIONS(424), + [anon_sym_AMP_EQ] = ACTIONS(424), + [anon_sym_PIPE_EQ] = ACTIONS(424), + [anon_sym_CARET_EQ] = ACTIONS(424), + [anon_sym_LT_LT_EQ] = ACTIONS(424), + [anon_sym_GT_GT_EQ] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(420), + [anon_sym_DOT] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(418), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_char_literal] = ACTIONS(418), + [anon_sym_true] = ACTIONS(420), + [anon_sym_false] = ACTIONS(420), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(420), + [sym_super] = ACTIONS(420), + [sym_crate] = ACTIONS(420), + [sym_metavariable] = ACTIONS(418), + [sym_raw_string_literal] = ACTIONS(418), + [sym_float_literal] = ACTIONS(418), + [sym_block_comment] = ACTIONS(3), + }, + [61] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1218), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_tuple_expression_repeat1] = STATE(65), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(426), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(528), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [60] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1249), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(530), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [62] = { + [ts_builtin_sym_end] = ACTIONS(428), + [sym_identifier] = ACTIONS(430), + [anon_sym_SEMI] = ACTIONS(428), + [anon_sym_macro_rules_BANG] = ACTIONS(428), + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_RBRACE] = ACTIONS(428), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_STAR] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(428), + [anon_sym_u8] = ACTIONS(430), + [anon_sym_i8] = ACTIONS(430), + [anon_sym_u16] = ACTIONS(430), + [anon_sym_i16] = ACTIONS(430), + [anon_sym_u32] = ACTIONS(430), + [anon_sym_i32] = ACTIONS(430), + [anon_sym_u64] = ACTIONS(430), + [anon_sym_i64] = ACTIONS(430), + [anon_sym_u128] = ACTIONS(430), + [anon_sym_i128] = ACTIONS(430), + [anon_sym_isize] = ACTIONS(430), + [anon_sym_usize] = ACTIONS(430), + [anon_sym_f32] = ACTIONS(430), + [anon_sym_f64] = ACTIONS(430), + [anon_sym_bool] = ACTIONS(430), + [anon_sym_str] = ACTIONS(430), + [anon_sym_char] = ACTIONS(430), + [anon_sym_SQUOTE] = ACTIONS(430), + [anon_sym_as] = ACTIONS(430), + [anon_sym_async] = ACTIONS(430), + [anon_sym_break] = ACTIONS(430), + [anon_sym_const] = ACTIONS(430), + [anon_sym_continue] = ACTIONS(430), + [anon_sym_default] = ACTIONS(430), + [anon_sym_enum] = ACTIONS(430), + [anon_sym_fn] = ACTIONS(430), + [anon_sym_for] = ACTIONS(430), + [anon_sym_if] = ACTIONS(430), + [anon_sym_impl] = ACTIONS(430), + [anon_sym_let] = ACTIONS(430), + [anon_sym_loop] = ACTIONS(430), + [anon_sym_match] = ACTIONS(430), + [anon_sym_mod] = ACTIONS(430), + [anon_sym_pub] = ACTIONS(430), + [anon_sym_return] = ACTIONS(430), + [anon_sym_static] = ACTIONS(430), + [anon_sym_struct] = ACTIONS(430), + [anon_sym_trait] = ACTIONS(430), + [anon_sym_type] = ACTIONS(430), + [anon_sym_union] = ACTIONS(430), + [anon_sym_unsafe] = ACTIONS(430), + [anon_sym_use] = ACTIONS(430), + [anon_sym_while] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(428), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_extern] = ACTIONS(430), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym_AMP] = ACTIONS(430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(428), + [anon_sym_DOT_DOT] = ACTIONS(430), + [anon_sym_DOT_DOT_EQ] = ACTIONS(428), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_AMP_AMP] = ACTIONS(428), + [anon_sym_PIPE_PIPE] = ACTIONS(428), + [anon_sym_PIPE] = ACTIONS(430), + [anon_sym_CARET] = ACTIONS(430), + [anon_sym_EQ_EQ] = ACTIONS(428), + [anon_sym_BANG_EQ] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(428), + [anon_sym_LT_LT] = ACTIONS(430), + [anon_sym_GT_GT] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(430), + [anon_sym_PERCENT] = ACTIONS(430), + [anon_sym_PLUS_EQ] = ACTIONS(428), + [anon_sym_DASH_EQ] = ACTIONS(428), + [anon_sym_STAR_EQ] = ACTIONS(428), + [anon_sym_SLASH_EQ] = ACTIONS(428), + [anon_sym_PERCENT_EQ] = ACTIONS(428), + [anon_sym_AMP_EQ] = ACTIONS(428), + [anon_sym_PIPE_EQ] = ACTIONS(428), + [anon_sym_CARET_EQ] = ACTIONS(428), + [anon_sym_LT_LT_EQ] = ACTIONS(428), + [anon_sym_GT_GT_EQ] = ACTIONS(428), + [anon_sym_yield] = ACTIONS(430), + [anon_sym_move] = ACTIONS(430), + [anon_sym_DOT] = ACTIONS(430), + [sym_integer_literal] = ACTIONS(428), + [aux_sym_string_literal_token1] = ACTIONS(428), + [sym_char_literal] = ACTIONS(428), + [anon_sym_true] = ACTIONS(430), + [anon_sym_false] = ACTIONS(430), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(430), + [sym_super] = ACTIONS(430), + [sym_crate] = ACTIONS(430), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(428), + [sym_float_literal] = ACTIONS(428), [sym_block_comment] = ACTIONS(3), }, - [61] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1252), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [63] = { + [ts_builtin_sym_end] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym_macro_rules_BANG] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_STAR] = ACTIONS(434), + [anon_sym_QMARK] = ACTIONS(432), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_isize] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_f32] = ACTIONS(434), + [anon_sym_f64] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_str] = ACTIONS(434), + [anon_sym_char] = ACTIONS(434), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_as] = ACTIONS(434), + [anon_sym_async] = ACTIONS(434), + [anon_sym_break] = ACTIONS(434), + [anon_sym_const] = ACTIONS(434), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_default] = ACTIONS(434), + [anon_sym_enum] = ACTIONS(434), + [anon_sym_fn] = ACTIONS(434), + [anon_sym_for] = ACTIONS(434), + [anon_sym_if] = ACTIONS(434), + [anon_sym_impl] = ACTIONS(434), + [anon_sym_let] = ACTIONS(434), + [anon_sym_loop] = ACTIONS(434), + [anon_sym_match] = ACTIONS(434), + [anon_sym_mod] = ACTIONS(434), + [anon_sym_pub] = ACTIONS(434), + [anon_sym_return] = ACTIONS(434), + [anon_sym_static] = ACTIONS(434), + [anon_sym_struct] = ACTIONS(434), + [anon_sym_trait] = ACTIONS(434), + [anon_sym_type] = ACTIONS(434), + [anon_sym_union] = ACTIONS(434), + [anon_sym_unsafe] = ACTIONS(434), + [anon_sym_use] = ACTIONS(434), + [anon_sym_while] = ACTIONS(434), + [anon_sym_POUND] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_EQ] = ACTIONS(434), + [anon_sym_extern] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(434), + [anon_sym_GT] = ACTIONS(434), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_AMP] = ACTIONS(434), + [anon_sym_DOT_DOT_DOT] = ACTIONS(432), + [anon_sym_DOT_DOT] = ACTIONS(434), + [anon_sym_DOT_DOT_EQ] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_AMP_AMP] = ACTIONS(432), + [anon_sym_PIPE_PIPE] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(434), + [anon_sym_CARET] = ACTIONS(434), + [anon_sym_EQ_EQ] = ACTIONS(432), + [anon_sym_BANG_EQ] = ACTIONS(432), + [anon_sym_LT_EQ] = ACTIONS(432), + [anon_sym_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT] = ACTIONS(434), + [anon_sym_GT_GT] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(434), + [anon_sym_PERCENT] = ACTIONS(434), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(434), + [anon_sym_move] = ACTIONS(434), + [anon_sym_DOT] = ACTIONS(434), + [sym_integer_literal] = ACTIONS(432), + [aux_sym_string_literal_token1] = ACTIONS(432), + [sym_char_literal] = ACTIONS(432), + [anon_sym_true] = ACTIONS(434), + [anon_sym_false] = ACTIONS(434), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(434), + [sym_super] = ACTIONS(434), + [sym_crate] = ACTIONS(434), + [sym_metavariable] = ACTIONS(432), + [sym_raw_string_literal] = ACTIONS(432), + [sym_float_literal] = ACTIONS(432), + [sym_block_comment] = ACTIONS(3), + }, + [64] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1199), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_tuple_expression_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(436), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(532), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [62] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1289), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [65] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1199), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_tuple_expression_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(436), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(534), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [63] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1163), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [66] = { + [ts_builtin_sym_end] = ACTIONS(438), + [sym_identifier] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_macro_rules_BANG] = ACTIONS(438), + [anon_sym_LPAREN] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(438), + [anon_sym_RBRACE] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(422), + [anon_sym_QMARK] = ACTIONS(424), + [anon_sym_u8] = ACTIONS(440), + [anon_sym_i8] = ACTIONS(440), + [anon_sym_u16] = ACTIONS(440), + [anon_sym_i16] = ACTIONS(440), + [anon_sym_u32] = ACTIONS(440), + [anon_sym_i32] = ACTIONS(440), + [anon_sym_u64] = ACTIONS(440), + [anon_sym_i64] = ACTIONS(440), + [anon_sym_u128] = ACTIONS(440), + [anon_sym_i128] = ACTIONS(440), + [anon_sym_isize] = ACTIONS(440), + [anon_sym_usize] = ACTIONS(440), + [anon_sym_f32] = ACTIONS(440), + [anon_sym_f64] = ACTIONS(440), + [anon_sym_bool] = ACTIONS(440), + [anon_sym_str] = ACTIONS(440), + [anon_sym_char] = ACTIONS(440), + [anon_sym_SQUOTE] = ACTIONS(440), + [anon_sym_as] = ACTIONS(422), + [anon_sym_async] = ACTIONS(440), + [anon_sym_break] = ACTIONS(440), + [anon_sym_const] = ACTIONS(440), + [anon_sym_continue] = ACTIONS(440), + [anon_sym_default] = ACTIONS(440), + [anon_sym_enum] = ACTIONS(440), + [anon_sym_fn] = ACTIONS(440), + [anon_sym_for] = ACTIONS(440), + [anon_sym_if] = ACTIONS(440), + [anon_sym_impl] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_loop] = ACTIONS(440), + [anon_sym_match] = ACTIONS(440), + [anon_sym_mod] = ACTIONS(440), + [anon_sym_pub] = ACTIONS(440), + [anon_sym_return] = ACTIONS(440), + [anon_sym_static] = ACTIONS(440), + [anon_sym_struct] = ACTIONS(440), + [anon_sym_trait] = ACTIONS(440), + [anon_sym_type] = ACTIONS(440), + [anon_sym_union] = ACTIONS(440), + [anon_sym_unsafe] = ACTIONS(440), + [anon_sym_use] = ACTIONS(440), + [anon_sym_while] = ACTIONS(440), + [anon_sym_POUND] = ACTIONS(438), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_EQ] = ACTIONS(422), + [anon_sym_extern] = ACTIONS(440), + [anon_sym_LT] = ACTIONS(422), + [anon_sym_GT] = ACTIONS(422), + [anon_sym_COLON_COLON] = ACTIONS(438), + [anon_sym_AMP] = ACTIONS(422), + [anon_sym_DOT_DOT_DOT] = ACTIONS(424), + [anon_sym_DOT_DOT] = ACTIONS(422), + [anon_sym_DOT_DOT_EQ] = ACTIONS(424), + [anon_sym_DASH] = ACTIONS(422), + [anon_sym_AMP_AMP] = ACTIONS(424), + [anon_sym_PIPE_PIPE] = ACTIONS(424), + [anon_sym_PIPE] = ACTIONS(422), + [anon_sym_CARET] = ACTIONS(422), + [anon_sym_EQ_EQ] = ACTIONS(424), + [anon_sym_BANG_EQ] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(424), + [anon_sym_GT_EQ] = ACTIONS(424), + [anon_sym_LT_LT] = ACTIONS(422), + [anon_sym_GT_GT] = ACTIONS(422), + [anon_sym_SLASH] = ACTIONS(422), + [anon_sym_PERCENT] = ACTIONS(422), + [anon_sym_PLUS_EQ] = ACTIONS(424), + [anon_sym_DASH_EQ] = ACTIONS(424), + [anon_sym_STAR_EQ] = ACTIONS(424), + [anon_sym_SLASH_EQ] = ACTIONS(424), + [anon_sym_PERCENT_EQ] = ACTIONS(424), + [anon_sym_AMP_EQ] = ACTIONS(424), + [anon_sym_PIPE_EQ] = ACTIONS(424), + [anon_sym_CARET_EQ] = ACTIONS(424), + [anon_sym_LT_LT_EQ] = ACTIONS(424), + [anon_sym_GT_GT_EQ] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(440), + [anon_sym_move] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(438), + [aux_sym_string_literal_token1] = ACTIONS(438), + [sym_char_literal] = ACTIONS(438), + [anon_sym_true] = ACTIONS(440), + [anon_sym_false] = ACTIONS(440), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(440), + [sym_super] = ACTIONS(440), + [sym_crate] = ACTIONS(440), + [sym_metavariable] = ACTIONS(438), + [sym_raw_string_literal] = ACTIONS(438), + [sym_float_literal] = ACTIONS(438), + [sym_block_comment] = ACTIONS(3), + }, + [67] = { + [ts_builtin_sym_end] = ACTIONS(442), + [sym_identifier] = ACTIONS(444), + [anon_sym_SEMI] = ACTIONS(442), + [anon_sym_macro_rules_BANG] = ACTIONS(442), + [anon_sym_LPAREN] = ACTIONS(442), + [anon_sym_LBRACE] = ACTIONS(442), + [anon_sym_RBRACE] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_STAR] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(442), + [anon_sym_u8] = ACTIONS(444), + [anon_sym_i8] = ACTIONS(444), + [anon_sym_u16] = ACTIONS(444), + [anon_sym_i16] = ACTIONS(444), + [anon_sym_u32] = ACTIONS(444), + [anon_sym_i32] = ACTIONS(444), + [anon_sym_u64] = ACTIONS(444), + [anon_sym_i64] = ACTIONS(444), + [anon_sym_u128] = ACTIONS(444), + [anon_sym_i128] = ACTIONS(444), + [anon_sym_isize] = ACTIONS(444), + [anon_sym_usize] = ACTIONS(444), + [anon_sym_f32] = ACTIONS(444), + [anon_sym_f64] = ACTIONS(444), + [anon_sym_bool] = ACTIONS(444), + [anon_sym_str] = ACTIONS(444), + [anon_sym_char] = ACTIONS(444), + [anon_sym_SQUOTE] = ACTIONS(444), + [anon_sym_as] = ACTIONS(444), + [anon_sym_async] = ACTIONS(444), + [anon_sym_break] = ACTIONS(444), + [anon_sym_const] = ACTIONS(444), + [anon_sym_continue] = ACTIONS(444), + [anon_sym_default] = ACTIONS(444), + [anon_sym_enum] = ACTIONS(444), + [anon_sym_fn] = ACTIONS(444), + [anon_sym_for] = ACTIONS(444), + [anon_sym_if] = ACTIONS(444), + [anon_sym_impl] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_loop] = ACTIONS(444), + [anon_sym_match] = ACTIONS(444), + [anon_sym_mod] = ACTIONS(444), + [anon_sym_pub] = ACTIONS(444), + [anon_sym_return] = ACTIONS(444), + [anon_sym_static] = ACTIONS(444), + [anon_sym_struct] = ACTIONS(444), + [anon_sym_trait] = ACTIONS(444), + [anon_sym_type] = ACTIONS(444), + [anon_sym_union] = ACTIONS(444), + [anon_sym_unsafe] = ACTIONS(444), + [anon_sym_use] = ACTIONS(444), + [anon_sym_while] = ACTIONS(444), + [anon_sym_POUND] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_extern] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_GT] = ACTIONS(444), + [anon_sym_COLON_COLON] = ACTIONS(442), + [anon_sym_AMP] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(442), + [anon_sym_DOT_DOT] = ACTIONS(444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_AMP_AMP] = ACTIONS(442), + [anon_sym_PIPE_PIPE] = ACTIONS(442), + [anon_sym_PIPE] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_EQ_EQ] = ACTIONS(442), + [anon_sym_BANG_EQ] = ACTIONS(442), + [anon_sym_LT_EQ] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(442), + [anon_sym_LT_LT] = ACTIONS(444), + [anon_sym_GT_GT] = ACTIONS(444), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_PERCENT] = ACTIONS(444), + [anon_sym_PLUS_EQ] = ACTIONS(442), + [anon_sym_DASH_EQ] = ACTIONS(442), + [anon_sym_STAR_EQ] = ACTIONS(442), + [anon_sym_SLASH_EQ] = ACTIONS(442), + [anon_sym_PERCENT_EQ] = ACTIONS(442), + [anon_sym_AMP_EQ] = ACTIONS(442), + [anon_sym_PIPE_EQ] = ACTIONS(442), + [anon_sym_CARET_EQ] = ACTIONS(442), + [anon_sym_LT_LT_EQ] = ACTIONS(442), + [anon_sym_GT_GT_EQ] = ACTIONS(442), + [anon_sym_yield] = ACTIONS(444), + [anon_sym_move] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(444), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(442), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(444), + [anon_sym_false] = ACTIONS(444), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(444), + [sym_super] = ACTIONS(444), + [sym_crate] = ACTIONS(444), + [sym_metavariable] = ACTIONS(442), + [sym_raw_string_literal] = ACTIONS(442), + [sym_float_literal] = ACTIONS(442), + [sym_block_comment] = ACTIONS(3), + }, + [68] = { + [ts_builtin_sym_end] = ACTIONS(446), + [sym_identifier] = ACTIONS(448), + [anon_sym_SEMI] = ACTIONS(446), + [anon_sym_macro_rules_BANG] = ACTIONS(446), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(446), + [anon_sym_RBRACE] = ACTIONS(446), + [anon_sym_LBRACK] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_STAR] = ACTIONS(448), + [anon_sym_QMARK] = ACTIONS(446), + [anon_sym_u8] = ACTIONS(448), + [anon_sym_i8] = ACTIONS(448), + [anon_sym_u16] = ACTIONS(448), + [anon_sym_i16] = ACTIONS(448), + [anon_sym_u32] = ACTIONS(448), + [anon_sym_i32] = ACTIONS(448), + [anon_sym_u64] = ACTIONS(448), + [anon_sym_i64] = ACTIONS(448), + [anon_sym_u128] = ACTIONS(448), + [anon_sym_i128] = ACTIONS(448), + [anon_sym_isize] = ACTIONS(448), + [anon_sym_usize] = ACTIONS(448), + [anon_sym_f32] = ACTIONS(448), + [anon_sym_f64] = ACTIONS(448), + [anon_sym_bool] = ACTIONS(448), + [anon_sym_str] = ACTIONS(448), + [anon_sym_char] = ACTIONS(448), + [anon_sym_SQUOTE] = ACTIONS(448), + [anon_sym_as] = ACTIONS(448), + [anon_sym_async] = ACTIONS(448), + [anon_sym_break] = ACTIONS(448), + [anon_sym_const] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(448), + [anon_sym_default] = ACTIONS(448), + [anon_sym_enum] = ACTIONS(448), + [anon_sym_fn] = ACTIONS(448), + [anon_sym_for] = ACTIONS(448), + [anon_sym_if] = ACTIONS(448), + [anon_sym_impl] = ACTIONS(448), + [anon_sym_let] = ACTIONS(448), + [anon_sym_loop] = ACTIONS(448), + [anon_sym_match] = ACTIONS(448), + [anon_sym_mod] = ACTIONS(448), + [anon_sym_pub] = ACTIONS(448), + [anon_sym_return] = ACTIONS(448), + [anon_sym_static] = ACTIONS(448), + [anon_sym_struct] = ACTIONS(448), + [anon_sym_trait] = ACTIONS(448), + [anon_sym_type] = ACTIONS(448), + [anon_sym_union] = ACTIONS(448), + [anon_sym_unsafe] = ACTIONS(448), + [anon_sym_use] = ACTIONS(448), + [anon_sym_while] = ACTIONS(448), + [anon_sym_POUND] = ACTIONS(446), + [anon_sym_BANG] = ACTIONS(448), + [anon_sym_EQ] = ACTIONS(448), + [anon_sym_extern] = ACTIONS(448), + [anon_sym_LT] = ACTIONS(448), + [anon_sym_GT] = ACTIONS(448), + [anon_sym_COLON_COLON] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(446), + [anon_sym_DOT_DOT] = ACTIONS(448), + [anon_sym_DOT_DOT_EQ] = ACTIONS(446), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_AMP_AMP] = ACTIONS(446), + [anon_sym_PIPE_PIPE] = ACTIONS(446), + [anon_sym_PIPE] = ACTIONS(448), + [anon_sym_CARET] = ACTIONS(448), + [anon_sym_EQ_EQ] = ACTIONS(446), + [anon_sym_BANG_EQ] = ACTIONS(446), + [anon_sym_LT_EQ] = ACTIONS(446), + [anon_sym_GT_EQ] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(448), + [anon_sym_GT_GT] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(448), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_yield] = ACTIONS(448), + [anon_sym_move] = ACTIONS(448), + [anon_sym_DOT] = ACTIONS(448), + [sym_integer_literal] = ACTIONS(446), + [aux_sym_string_literal_token1] = ACTIONS(446), + [sym_char_literal] = ACTIONS(446), + [anon_sym_true] = ACTIONS(448), + [anon_sym_false] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(448), + [sym_crate] = ACTIONS(448), + [sym_metavariable] = ACTIONS(446), + [sym_raw_string_literal] = ACTIONS(446), + [sym_float_literal] = ACTIONS(446), + [sym_block_comment] = ACTIONS(3), + }, + [69] = { + [ts_builtin_sym_end] = ACTIONS(450), + [sym_identifier] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(450), + [anon_sym_macro_rules_BANG] = ACTIONS(450), + [anon_sym_LPAREN] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(450), + [anon_sym_RBRACE] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_STAR] = ACTIONS(452), + [anon_sym_QMARK] = ACTIONS(450), + [anon_sym_u8] = ACTIONS(452), + [anon_sym_i8] = ACTIONS(452), + [anon_sym_u16] = ACTIONS(452), + [anon_sym_i16] = ACTIONS(452), + [anon_sym_u32] = ACTIONS(452), + [anon_sym_i32] = ACTIONS(452), + [anon_sym_u64] = ACTIONS(452), + [anon_sym_i64] = ACTIONS(452), + [anon_sym_u128] = ACTIONS(452), + [anon_sym_i128] = ACTIONS(452), + [anon_sym_isize] = ACTIONS(452), + [anon_sym_usize] = ACTIONS(452), + [anon_sym_f32] = ACTIONS(452), + [anon_sym_f64] = ACTIONS(452), + [anon_sym_bool] = ACTIONS(452), + [anon_sym_str] = ACTIONS(452), + [anon_sym_char] = ACTIONS(452), + [anon_sym_SQUOTE] = ACTIONS(452), + [anon_sym_as] = ACTIONS(452), + [anon_sym_async] = ACTIONS(452), + [anon_sym_break] = ACTIONS(452), + [anon_sym_const] = ACTIONS(452), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_default] = ACTIONS(452), + [anon_sym_enum] = ACTIONS(452), + [anon_sym_fn] = ACTIONS(452), + [anon_sym_for] = ACTIONS(452), + [anon_sym_if] = ACTIONS(452), + [anon_sym_impl] = ACTIONS(452), + [anon_sym_let] = ACTIONS(452), + [anon_sym_loop] = ACTIONS(452), + [anon_sym_match] = ACTIONS(452), + [anon_sym_mod] = ACTIONS(452), + [anon_sym_pub] = ACTIONS(452), + [anon_sym_return] = ACTIONS(452), + [anon_sym_static] = ACTIONS(452), + [anon_sym_struct] = ACTIONS(452), + [anon_sym_trait] = ACTIONS(452), + [anon_sym_type] = ACTIONS(452), + [anon_sym_union] = ACTIONS(452), + [anon_sym_unsafe] = ACTIONS(452), + [anon_sym_use] = ACTIONS(452), + [anon_sym_while] = ACTIONS(452), + [anon_sym_POUND] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_EQ] = ACTIONS(452), + [anon_sym_extern] = ACTIONS(452), + [anon_sym_LT] = ACTIONS(452), + [anon_sym_GT] = ACTIONS(452), + [anon_sym_COLON_COLON] = ACTIONS(450), + [anon_sym_AMP] = ACTIONS(452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), + [anon_sym_DOT_DOT] = ACTIONS(452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_AMP_AMP] = ACTIONS(450), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_PIPE] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_EQ_EQ] = ACTIONS(450), + [anon_sym_BANG_EQ] = ACTIONS(450), + [anon_sym_LT_EQ] = ACTIONS(450), + [anon_sym_GT_EQ] = ACTIONS(450), + [anon_sym_LT_LT] = ACTIONS(452), + [anon_sym_GT_GT] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(452), + [anon_sym_PERCENT] = ACTIONS(452), + [anon_sym_PLUS_EQ] = ACTIONS(450), + [anon_sym_DASH_EQ] = ACTIONS(450), + [anon_sym_STAR_EQ] = ACTIONS(450), + [anon_sym_SLASH_EQ] = ACTIONS(450), + [anon_sym_PERCENT_EQ] = ACTIONS(450), + [anon_sym_AMP_EQ] = ACTIONS(450), + [anon_sym_PIPE_EQ] = ACTIONS(450), + [anon_sym_CARET_EQ] = ACTIONS(450), + [anon_sym_LT_LT_EQ] = ACTIONS(450), + [anon_sym_GT_GT_EQ] = ACTIONS(450), + [anon_sym_yield] = ACTIONS(452), + [anon_sym_move] = ACTIONS(452), + [anon_sym_DOT] = ACTIONS(452), + [sym_integer_literal] = ACTIONS(450), + [aux_sym_string_literal_token1] = ACTIONS(450), + [sym_char_literal] = ACTIONS(450), + [anon_sym_true] = ACTIONS(452), + [anon_sym_false] = ACTIONS(452), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(452), + [sym_super] = ACTIONS(452), + [sym_crate] = ACTIONS(452), + [sym_metavariable] = ACTIONS(450), + [sym_raw_string_literal] = ACTIONS(450), + [sym_float_literal] = ACTIONS(450), + [sym_block_comment] = ACTIONS(3), + }, + [70] = { + [ts_builtin_sym_end] = ACTIONS(454), + [sym_identifier] = ACTIONS(456), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_macro_rules_BANG] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(454), + [anon_sym_RBRACE] = ACTIONS(454), + [anon_sym_LBRACK] = ACTIONS(454), + [anon_sym_PLUS] = ACTIONS(456), + [anon_sym_STAR] = ACTIONS(456), + [anon_sym_QMARK] = ACTIONS(454), + [anon_sym_u8] = ACTIONS(456), + [anon_sym_i8] = ACTIONS(456), + [anon_sym_u16] = ACTIONS(456), + [anon_sym_i16] = ACTIONS(456), + [anon_sym_u32] = ACTIONS(456), + [anon_sym_i32] = ACTIONS(456), + [anon_sym_u64] = ACTIONS(456), + [anon_sym_i64] = ACTIONS(456), + [anon_sym_u128] = ACTIONS(456), + [anon_sym_i128] = ACTIONS(456), + [anon_sym_isize] = ACTIONS(456), + [anon_sym_usize] = ACTIONS(456), + [anon_sym_f32] = ACTIONS(456), + [anon_sym_f64] = ACTIONS(456), + [anon_sym_bool] = ACTIONS(456), + [anon_sym_str] = ACTIONS(456), + [anon_sym_char] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(456), + [anon_sym_as] = ACTIONS(456), + [anon_sym_async] = ACTIONS(456), + [anon_sym_break] = ACTIONS(456), + [anon_sym_const] = ACTIONS(456), + [anon_sym_continue] = ACTIONS(456), + [anon_sym_default] = ACTIONS(456), + [anon_sym_enum] = ACTIONS(456), + [anon_sym_fn] = ACTIONS(456), + [anon_sym_for] = ACTIONS(456), + [anon_sym_if] = ACTIONS(456), + [anon_sym_impl] = ACTIONS(456), + [anon_sym_let] = ACTIONS(456), + [anon_sym_loop] = ACTIONS(456), + [anon_sym_match] = ACTIONS(456), + [anon_sym_mod] = ACTIONS(456), + [anon_sym_pub] = ACTIONS(456), + [anon_sym_return] = ACTIONS(456), + [anon_sym_static] = ACTIONS(456), + [anon_sym_struct] = ACTIONS(456), + [anon_sym_trait] = ACTIONS(456), + [anon_sym_type] = ACTIONS(456), + [anon_sym_union] = ACTIONS(456), + [anon_sym_unsafe] = ACTIONS(456), + [anon_sym_use] = ACTIONS(456), + [anon_sym_while] = ACTIONS(456), + [anon_sym_POUND] = ACTIONS(454), + [anon_sym_BANG] = ACTIONS(456), + [anon_sym_EQ] = ACTIONS(456), + [anon_sym_extern] = ACTIONS(456), + [anon_sym_LT] = ACTIONS(456), + [anon_sym_GT] = ACTIONS(456), + [anon_sym_COLON_COLON] = ACTIONS(454), + [anon_sym_AMP] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(454), + [anon_sym_DOT_DOT] = ACTIONS(456), + [anon_sym_DOT_DOT_EQ] = ACTIONS(454), + [anon_sym_DASH] = ACTIONS(456), + [anon_sym_AMP_AMP] = ACTIONS(454), + [anon_sym_PIPE_PIPE] = ACTIONS(454), + [anon_sym_PIPE] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(454), + [anon_sym_BANG_EQ] = ACTIONS(454), + [anon_sym_LT_EQ] = ACTIONS(454), + [anon_sym_GT_EQ] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(456), + [anon_sym_GT_GT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(456), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_PLUS_EQ] = ACTIONS(454), + [anon_sym_DASH_EQ] = ACTIONS(454), + [anon_sym_STAR_EQ] = ACTIONS(454), + [anon_sym_SLASH_EQ] = ACTIONS(454), + [anon_sym_PERCENT_EQ] = ACTIONS(454), + [anon_sym_AMP_EQ] = ACTIONS(454), + [anon_sym_PIPE_EQ] = ACTIONS(454), + [anon_sym_CARET_EQ] = ACTIONS(454), + [anon_sym_LT_LT_EQ] = ACTIONS(454), + [anon_sym_GT_GT_EQ] = ACTIONS(454), + [anon_sym_yield] = ACTIONS(456), + [anon_sym_move] = ACTIONS(456), + [anon_sym_DOT] = ACTIONS(456), + [sym_integer_literal] = ACTIONS(454), + [aux_sym_string_literal_token1] = ACTIONS(454), + [sym_char_literal] = ACTIONS(454), + [anon_sym_true] = ACTIONS(456), + [anon_sym_false] = ACTIONS(456), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(456), + [sym_super] = ACTIONS(456), + [sym_crate] = ACTIONS(456), + [sym_metavariable] = ACTIONS(454), + [sym_raw_string_literal] = ACTIONS(454), + [sym_float_literal] = ACTIONS(454), + [sym_block_comment] = ACTIONS(3), + }, + [71] = { + [ts_builtin_sym_end] = ACTIONS(458), + [sym_identifier] = ACTIONS(460), + [anon_sym_SEMI] = ACTIONS(458), + [anon_sym_macro_rules_BANG] = ACTIONS(458), + [anon_sym_LPAREN] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(458), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(460), + [anon_sym_QMARK] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(460), + [anon_sym_i8] = ACTIONS(460), + [anon_sym_u16] = ACTIONS(460), + [anon_sym_i16] = ACTIONS(460), + [anon_sym_u32] = ACTIONS(460), + [anon_sym_i32] = ACTIONS(460), + [anon_sym_u64] = ACTIONS(460), + [anon_sym_i64] = ACTIONS(460), + [anon_sym_u128] = ACTIONS(460), + [anon_sym_i128] = ACTIONS(460), + [anon_sym_isize] = ACTIONS(460), + [anon_sym_usize] = ACTIONS(460), + [anon_sym_f32] = ACTIONS(460), + [anon_sym_f64] = ACTIONS(460), + [anon_sym_bool] = ACTIONS(460), + [anon_sym_str] = ACTIONS(460), + [anon_sym_char] = ACTIONS(460), + [anon_sym_SQUOTE] = ACTIONS(460), + [anon_sym_as] = ACTIONS(460), + [anon_sym_async] = ACTIONS(460), + [anon_sym_break] = ACTIONS(460), + [anon_sym_const] = ACTIONS(460), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_default] = ACTIONS(460), + [anon_sym_enum] = ACTIONS(460), + [anon_sym_fn] = ACTIONS(460), + [anon_sym_for] = ACTIONS(460), + [anon_sym_if] = ACTIONS(460), + [anon_sym_impl] = ACTIONS(460), + [anon_sym_let] = ACTIONS(460), + [anon_sym_loop] = ACTIONS(460), + [anon_sym_match] = ACTIONS(460), + [anon_sym_mod] = ACTIONS(460), + [anon_sym_pub] = ACTIONS(460), + [anon_sym_return] = ACTIONS(460), + [anon_sym_static] = ACTIONS(460), + [anon_sym_struct] = ACTIONS(460), + [anon_sym_trait] = ACTIONS(460), + [anon_sym_type] = ACTIONS(460), + [anon_sym_union] = ACTIONS(460), + [anon_sym_unsafe] = ACTIONS(460), + [anon_sym_use] = ACTIONS(460), + [anon_sym_while] = ACTIONS(460), + [anon_sym_POUND] = ACTIONS(458), + [anon_sym_BANG] = ACTIONS(460), + [anon_sym_EQ] = ACTIONS(460), + [anon_sym_extern] = ACTIONS(460), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_COLON_COLON] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(458), + [anon_sym_DOT_DOT] = ACTIONS(460), + [anon_sym_DOT_DOT_EQ] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(460), + [anon_sym_AMP_AMP] = ACTIONS(458), + [anon_sym_PIPE_PIPE] = ACTIONS(458), + [anon_sym_PIPE] = ACTIONS(460), + [anon_sym_CARET] = ACTIONS(460), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT_EQ] = ACTIONS(458), + [anon_sym_GT_EQ] = ACTIONS(458), + [anon_sym_LT_LT] = ACTIONS(460), + [anon_sym_GT_GT] = ACTIONS(460), + [anon_sym_SLASH] = ACTIONS(460), + [anon_sym_PERCENT] = ACTIONS(460), + [anon_sym_PLUS_EQ] = ACTIONS(458), + [anon_sym_DASH_EQ] = ACTIONS(458), + [anon_sym_STAR_EQ] = ACTIONS(458), + [anon_sym_SLASH_EQ] = ACTIONS(458), + [anon_sym_PERCENT_EQ] = ACTIONS(458), + [anon_sym_AMP_EQ] = ACTIONS(458), + [anon_sym_PIPE_EQ] = ACTIONS(458), + [anon_sym_CARET_EQ] = ACTIONS(458), + [anon_sym_LT_LT_EQ] = ACTIONS(458), + [anon_sym_GT_GT_EQ] = ACTIONS(458), + [anon_sym_yield] = ACTIONS(460), + [anon_sym_move] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(460), + [sym_integer_literal] = ACTIONS(458), + [aux_sym_string_literal_token1] = ACTIONS(458), + [sym_char_literal] = ACTIONS(458), + [anon_sym_true] = ACTIONS(460), + [anon_sym_false] = ACTIONS(460), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(460), + [sym_super] = ACTIONS(460), + [sym_crate] = ACTIONS(460), + [sym_metavariable] = ACTIONS(458), + [sym_raw_string_literal] = ACTIONS(458), + [sym_float_literal] = ACTIONS(458), + [sym_block_comment] = ACTIONS(3), + }, + [72] = { + [ts_builtin_sym_end] = ACTIONS(462), + [sym_identifier] = ACTIONS(464), + [anon_sym_SEMI] = ACTIONS(462), + [anon_sym_macro_rules_BANG] = ACTIONS(462), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_RBRACE] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(464), + [anon_sym_QMARK] = ACTIONS(462), + [anon_sym_u8] = ACTIONS(464), + [anon_sym_i8] = ACTIONS(464), + [anon_sym_u16] = ACTIONS(464), + [anon_sym_i16] = ACTIONS(464), + [anon_sym_u32] = ACTIONS(464), + [anon_sym_i32] = ACTIONS(464), + [anon_sym_u64] = ACTIONS(464), + [anon_sym_i64] = ACTIONS(464), + [anon_sym_u128] = ACTIONS(464), + [anon_sym_i128] = ACTIONS(464), + [anon_sym_isize] = ACTIONS(464), + [anon_sym_usize] = ACTIONS(464), + [anon_sym_f32] = ACTIONS(464), + [anon_sym_f64] = ACTIONS(464), + [anon_sym_bool] = ACTIONS(464), + [anon_sym_str] = ACTIONS(464), + [anon_sym_char] = ACTIONS(464), + [anon_sym_SQUOTE] = ACTIONS(464), + [anon_sym_as] = ACTIONS(464), + [anon_sym_async] = ACTIONS(464), + [anon_sym_break] = ACTIONS(464), + [anon_sym_const] = ACTIONS(464), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_default] = ACTIONS(464), + [anon_sym_enum] = ACTIONS(464), + [anon_sym_fn] = ACTIONS(464), + [anon_sym_for] = ACTIONS(464), + [anon_sym_if] = ACTIONS(464), + [anon_sym_impl] = ACTIONS(464), + [anon_sym_let] = ACTIONS(464), + [anon_sym_loop] = ACTIONS(464), + [anon_sym_match] = ACTIONS(464), + [anon_sym_mod] = ACTIONS(464), + [anon_sym_pub] = ACTIONS(464), + [anon_sym_return] = ACTIONS(464), + [anon_sym_static] = ACTIONS(464), + [anon_sym_struct] = ACTIONS(464), + [anon_sym_trait] = ACTIONS(464), + [anon_sym_type] = ACTIONS(464), + [anon_sym_union] = ACTIONS(464), + [anon_sym_unsafe] = ACTIONS(464), + [anon_sym_use] = ACTIONS(464), + [anon_sym_while] = ACTIONS(464), + [anon_sym_POUND] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(464), + [anon_sym_extern] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(464), + [anon_sym_GT] = ACTIONS(464), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_AMP] = ACTIONS(464), + [anon_sym_DOT_DOT_DOT] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(464), + [anon_sym_DOT_DOT_EQ] = ACTIONS(462), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_AMP_AMP] = ACTIONS(462), + [anon_sym_PIPE_PIPE] = ACTIONS(462), + [anon_sym_PIPE] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_EQ_EQ] = ACTIONS(462), + [anon_sym_BANG_EQ] = ACTIONS(462), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_PLUS_EQ] = ACTIONS(462), + [anon_sym_DASH_EQ] = ACTIONS(462), + [anon_sym_STAR_EQ] = ACTIONS(462), + [anon_sym_SLASH_EQ] = ACTIONS(462), + [anon_sym_PERCENT_EQ] = ACTIONS(462), + [anon_sym_AMP_EQ] = ACTIONS(462), + [anon_sym_PIPE_EQ] = ACTIONS(462), + [anon_sym_CARET_EQ] = ACTIONS(462), + [anon_sym_LT_LT_EQ] = ACTIONS(462), + [anon_sym_GT_GT_EQ] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_move] = ACTIONS(464), + [anon_sym_DOT] = ACTIONS(464), + [sym_integer_literal] = ACTIONS(462), + [aux_sym_string_literal_token1] = ACTIONS(462), + [sym_char_literal] = ACTIONS(462), + [anon_sym_true] = ACTIONS(464), + [anon_sym_false] = ACTIONS(464), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(464), + [sym_super] = ACTIONS(464), + [sym_crate] = ACTIONS(464), + [sym_metavariable] = ACTIONS(462), + [sym_raw_string_literal] = ACTIONS(462), + [sym_float_literal] = ACTIONS(462), + [sym_block_comment] = ACTIONS(3), + }, + [73] = { + [ts_builtin_sym_end] = ACTIONS(466), + [sym_identifier] = ACTIONS(468), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_macro_rules_BANG] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_PLUS] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(468), + [anon_sym_QMARK] = ACTIONS(466), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_SQUOTE] = ACTIONS(468), + [anon_sym_as] = ACTIONS(468), + [anon_sym_async] = ACTIONS(468), + [anon_sym_break] = ACTIONS(468), + [anon_sym_const] = ACTIONS(468), + [anon_sym_continue] = ACTIONS(468), + [anon_sym_default] = ACTIONS(468), + [anon_sym_enum] = ACTIONS(468), + [anon_sym_fn] = ACTIONS(468), + [anon_sym_for] = ACTIONS(468), + [anon_sym_if] = ACTIONS(468), + [anon_sym_impl] = ACTIONS(468), + [anon_sym_let] = ACTIONS(468), + [anon_sym_loop] = ACTIONS(468), + [anon_sym_match] = ACTIONS(468), + [anon_sym_mod] = ACTIONS(468), + [anon_sym_pub] = ACTIONS(468), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(468), + [anon_sym_struct] = ACTIONS(468), + [anon_sym_trait] = ACTIONS(468), + [anon_sym_type] = ACTIONS(468), + [anon_sym_union] = ACTIONS(468), + [anon_sym_unsafe] = ACTIONS(468), + [anon_sym_use] = ACTIONS(468), + [anon_sym_while] = ACTIONS(468), + [anon_sym_POUND] = ACTIONS(466), + [anon_sym_BANG] = ACTIONS(468), + [anon_sym_EQ] = ACTIONS(468), + [anon_sym_extern] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(468), + [anon_sym_COLON_COLON] = ACTIONS(466), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_DOT_DOT_DOT] = ACTIONS(466), + [anon_sym_DOT_DOT] = ACTIONS(468), + [anon_sym_DOT_DOT_EQ] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(468), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), + [anon_sym_PIPE] = ACTIONS(468), + [anon_sym_CARET] = ACTIONS(468), + [anon_sym_EQ_EQ] = ACTIONS(466), + [anon_sym_BANG_EQ] = ACTIONS(466), + [anon_sym_LT_EQ] = ACTIONS(466), + [anon_sym_GT_EQ] = ACTIONS(466), + [anon_sym_LT_LT] = ACTIONS(468), + [anon_sym_GT_GT] = ACTIONS(468), + [anon_sym_SLASH] = ACTIONS(468), + [anon_sym_PERCENT] = ACTIONS(468), + [anon_sym_PLUS_EQ] = ACTIONS(466), + [anon_sym_DASH_EQ] = ACTIONS(466), + [anon_sym_STAR_EQ] = ACTIONS(466), + [anon_sym_SLASH_EQ] = ACTIONS(466), + [anon_sym_PERCENT_EQ] = ACTIONS(466), + [anon_sym_AMP_EQ] = ACTIONS(466), + [anon_sym_PIPE_EQ] = ACTIONS(466), + [anon_sym_CARET_EQ] = ACTIONS(466), + [anon_sym_LT_LT_EQ] = ACTIONS(466), + [anon_sym_GT_GT_EQ] = ACTIONS(466), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_move] = ACTIONS(468), + [anon_sym_DOT] = ACTIONS(468), + [sym_integer_literal] = ACTIONS(466), + [aux_sym_string_literal_token1] = ACTIONS(466), + [sym_char_literal] = ACTIONS(466), + [anon_sym_true] = ACTIONS(468), + [anon_sym_false] = ACTIONS(468), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(468), + [sym_super] = ACTIONS(468), + [sym_crate] = ACTIONS(468), + [sym_metavariable] = ACTIONS(466), + [sym_raw_string_literal] = ACTIONS(466), + [sym_float_literal] = ACTIONS(466), + [sym_block_comment] = ACTIONS(3), + }, + [74] = { + [ts_builtin_sym_end] = ACTIONS(470), + [sym_identifier] = ACTIONS(472), + [anon_sym_SEMI] = ACTIONS(470), + [anon_sym_macro_rules_BANG] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACE] = ACTIONS(470), + [anon_sym_RBRACE] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_STAR] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(472), + [anon_sym_i8] = ACTIONS(472), + [anon_sym_u16] = ACTIONS(472), + [anon_sym_i16] = ACTIONS(472), + [anon_sym_u32] = ACTIONS(472), + [anon_sym_i32] = ACTIONS(472), + [anon_sym_u64] = ACTIONS(472), + [anon_sym_i64] = ACTIONS(472), + [anon_sym_u128] = ACTIONS(472), + [anon_sym_i128] = ACTIONS(472), + [anon_sym_isize] = ACTIONS(472), + [anon_sym_usize] = ACTIONS(472), + [anon_sym_f32] = ACTIONS(472), + [anon_sym_f64] = ACTIONS(472), + [anon_sym_bool] = ACTIONS(472), + [anon_sym_str] = ACTIONS(472), + [anon_sym_char] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(472), + [anon_sym_as] = ACTIONS(472), + [anon_sym_async] = ACTIONS(472), + [anon_sym_break] = ACTIONS(472), + [anon_sym_const] = ACTIONS(472), + [anon_sym_continue] = ACTIONS(472), + [anon_sym_default] = ACTIONS(472), + [anon_sym_enum] = ACTIONS(472), + [anon_sym_fn] = ACTIONS(472), + [anon_sym_for] = ACTIONS(472), + [anon_sym_if] = ACTIONS(472), + [anon_sym_impl] = ACTIONS(472), + [anon_sym_let] = ACTIONS(472), + [anon_sym_loop] = ACTIONS(472), + [anon_sym_match] = ACTIONS(472), + [anon_sym_mod] = ACTIONS(472), + [anon_sym_pub] = ACTIONS(472), + [anon_sym_return] = ACTIONS(472), + [anon_sym_static] = ACTIONS(472), + [anon_sym_struct] = ACTIONS(472), + [anon_sym_trait] = ACTIONS(472), + [anon_sym_type] = ACTIONS(472), + [anon_sym_union] = ACTIONS(472), + [anon_sym_unsafe] = ACTIONS(472), + [anon_sym_use] = ACTIONS(472), + [anon_sym_while] = ACTIONS(472), + [anon_sym_POUND] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_EQ] = ACTIONS(472), + [anon_sym_extern] = ACTIONS(472), + [anon_sym_LT] = ACTIONS(472), + [anon_sym_GT] = ACTIONS(472), + [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(472), + [anon_sym_DOT_DOT_EQ] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_AMP_AMP] = ACTIONS(470), + [anon_sym_PIPE_PIPE] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_CARET] = ACTIONS(472), + [anon_sym_EQ_EQ] = ACTIONS(470), + [anon_sym_BANG_EQ] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(470), + [anon_sym_LT_LT] = ACTIONS(472), + [anon_sym_GT_GT] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_PERCENT] = ACTIONS(472), + [anon_sym_PLUS_EQ] = ACTIONS(470), + [anon_sym_DASH_EQ] = ACTIONS(470), + [anon_sym_STAR_EQ] = ACTIONS(470), + [anon_sym_SLASH_EQ] = ACTIONS(470), + [anon_sym_PERCENT_EQ] = ACTIONS(470), + [anon_sym_AMP_EQ] = ACTIONS(470), + [anon_sym_PIPE_EQ] = ACTIONS(470), + [anon_sym_CARET_EQ] = ACTIONS(470), + [anon_sym_LT_LT_EQ] = ACTIONS(470), + [anon_sym_GT_GT_EQ] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(472), + [anon_sym_DOT] = ACTIONS(472), + [sym_integer_literal] = ACTIONS(470), + [aux_sym_string_literal_token1] = ACTIONS(470), + [sym_char_literal] = ACTIONS(470), + [anon_sym_true] = ACTIONS(472), + [anon_sym_false] = ACTIONS(472), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(472), + [sym_super] = ACTIONS(472), + [sym_crate] = ACTIONS(472), + [sym_metavariable] = ACTIONS(470), + [sym_raw_string_literal] = ACTIONS(470), + [sym_float_literal] = ACTIONS(470), + [sym_block_comment] = ACTIONS(3), + }, + [75] = { + [ts_builtin_sym_end] = ACTIONS(474), + [sym_identifier] = ACTIONS(476), + [anon_sym_SEMI] = ACTIONS(474), + [anon_sym_macro_rules_BANG] = ACTIONS(474), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LBRACE] = ACTIONS(474), + [anon_sym_RBRACE] = ACTIONS(474), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(474), + [anon_sym_u8] = ACTIONS(476), + [anon_sym_i8] = ACTIONS(476), + [anon_sym_u16] = ACTIONS(476), + [anon_sym_i16] = ACTIONS(476), + [anon_sym_u32] = ACTIONS(476), + [anon_sym_i32] = ACTIONS(476), + [anon_sym_u64] = ACTIONS(476), + [anon_sym_i64] = ACTIONS(476), + [anon_sym_u128] = ACTIONS(476), + [anon_sym_i128] = ACTIONS(476), + [anon_sym_isize] = ACTIONS(476), + [anon_sym_usize] = ACTIONS(476), + [anon_sym_f32] = ACTIONS(476), + [anon_sym_f64] = ACTIONS(476), + [anon_sym_bool] = ACTIONS(476), + [anon_sym_str] = ACTIONS(476), + [anon_sym_char] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(476), + [anon_sym_as] = ACTIONS(476), + [anon_sym_async] = ACTIONS(476), + [anon_sym_break] = ACTIONS(476), + [anon_sym_const] = ACTIONS(476), + [anon_sym_continue] = ACTIONS(476), + [anon_sym_default] = ACTIONS(476), + [anon_sym_enum] = ACTIONS(476), + [anon_sym_fn] = ACTIONS(476), + [anon_sym_for] = ACTIONS(476), + [anon_sym_if] = ACTIONS(476), + [anon_sym_impl] = ACTIONS(476), + [anon_sym_let] = ACTIONS(476), + [anon_sym_loop] = ACTIONS(476), + [anon_sym_match] = ACTIONS(476), + [anon_sym_mod] = ACTIONS(476), + [anon_sym_pub] = ACTIONS(476), + [anon_sym_return] = ACTIONS(476), + [anon_sym_static] = ACTIONS(476), + [anon_sym_struct] = ACTIONS(476), + [anon_sym_trait] = ACTIONS(476), + [anon_sym_type] = ACTIONS(476), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(476), + [anon_sym_use] = ACTIONS(476), + [anon_sym_while] = ACTIONS(476), + [anon_sym_POUND] = ACTIONS(474), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_extern] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(474), + [anon_sym_DOT_DOT] = ACTIONS(476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(474), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_AMP_AMP] = ACTIONS(474), + [anon_sym_PIPE_PIPE] = ACTIONS(474), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_EQ_EQ] = ACTIONS(474), + [anon_sym_BANG_EQ] = ACTIONS(474), + [anon_sym_LT_EQ] = ACTIONS(474), + [anon_sym_GT_EQ] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(476), + [anon_sym_GT_GT] = ACTIONS(476), + [anon_sym_SLASH] = ACTIONS(476), + [anon_sym_PERCENT] = ACTIONS(476), + [anon_sym_PLUS_EQ] = ACTIONS(474), + [anon_sym_DASH_EQ] = ACTIONS(474), + [anon_sym_STAR_EQ] = ACTIONS(474), + [anon_sym_SLASH_EQ] = ACTIONS(474), + [anon_sym_PERCENT_EQ] = ACTIONS(474), + [anon_sym_AMP_EQ] = ACTIONS(474), + [anon_sym_PIPE_EQ] = ACTIONS(474), + [anon_sym_CARET_EQ] = ACTIONS(474), + [anon_sym_LT_LT_EQ] = ACTIONS(474), + [anon_sym_GT_GT_EQ] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(476), + [anon_sym_move] = ACTIONS(476), + [anon_sym_DOT] = ACTIONS(476), + [sym_integer_literal] = ACTIONS(474), + [aux_sym_string_literal_token1] = ACTIONS(474), + [sym_char_literal] = ACTIONS(474), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(476), + [sym_crate] = ACTIONS(476), + [sym_metavariable] = ACTIONS(474), + [sym_raw_string_literal] = ACTIONS(474), + [sym_float_literal] = ACTIONS(474), + [sym_block_comment] = ACTIONS(3), + }, + [76] = { + [ts_builtin_sym_end] = ACTIONS(478), + [sym_identifier] = ACTIONS(480), + [anon_sym_SEMI] = ACTIONS(478), + [anon_sym_macro_rules_BANG] = ACTIONS(478), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_u8] = ACTIONS(480), + [anon_sym_i8] = ACTIONS(480), + [anon_sym_u16] = ACTIONS(480), + [anon_sym_i16] = ACTIONS(480), + [anon_sym_u32] = ACTIONS(480), + [anon_sym_i32] = ACTIONS(480), + [anon_sym_u64] = ACTIONS(480), + [anon_sym_i64] = ACTIONS(480), + [anon_sym_u128] = ACTIONS(480), + [anon_sym_i128] = ACTIONS(480), + [anon_sym_isize] = ACTIONS(480), + [anon_sym_usize] = ACTIONS(480), + [anon_sym_f32] = ACTIONS(480), + [anon_sym_f64] = ACTIONS(480), + [anon_sym_bool] = ACTIONS(480), + [anon_sym_str] = ACTIONS(480), + [anon_sym_char] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_as] = ACTIONS(480), + [anon_sym_async] = ACTIONS(480), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_default] = ACTIONS(480), + [anon_sym_enum] = ACTIONS(480), + [anon_sym_fn] = ACTIONS(480), + [anon_sym_for] = ACTIONS(480), + [anon_sym_if] = ACTIONS(480), + [anon_sym_impl] = ACTIONS(480), + [anon_sym_let] = ACTIONS(480), + [anon_sym_loop] = ACTIONS(480), + [anon_sym_match] = ACTIONS(480), + [anon_sym_mod] = ACTIONS(480), + [anon_sym_pub] = ACTIONS(480), + [anon_sym_return] = ACTIONS(480), + [anon_sym_static] = ACTIONS(480), + [anon_sym_struct] = ACTIONS(480), + [anon_sym_trait] = ACTIONS(480), + [anon_sym_type] = ACTIONS(480), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(480), + [anon_sym_use] = ACTIONS(480), + [anon_sym_while] = ACTIONS(480), + [anon_sym_POUND] = ACTIONS(478), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_EQ] = ACTIONS(480), + [anon_sym_extern] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_COLON_COLON] = ACTIONS(478), + [anon_sym_AMP] = ACTIONS(480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(478), + [anon_sym_DOT_DOT] = ACTIONS(480), + [anon_sym_DOT_DOT_EQ] = ACTIONS(478), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_AMP_AMP] = ACTIONS(478), + [anon_sym_PIPE_PIPE] = ACTIONS(478), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_CARET] = ACTIONS(480), + [anon_sym_EQ_EQ] = ACTIONS(478), + [anon_sym_BANG_EQ] = ACTIONS(478), + [anon_sym_LT_EQ] = ACTIONS(478), + [anon_sym_GT_EQ] = ACTIONS(478), + [anon_sym_LT_LT] = ACTIONS(480), + [anon_sym_GT_GT] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_PERCENT] = ACTIONS(480), + [anon_sym_PLUS_EQ] = ACTIONS(478), + [anon_sym_DASH_EQ] = ACTIONS(478), + [anon_sym_STAR_EQ] = ACTIONS(478), + [anon_sym_SLASH_EQ] = ACTIONS(478), + [anon_sym_PERCENT_EQ] = ACTIONS(478), + [anon_sym_AMP_EQ] = ACTIONS(478), + [anon_sym_PIPE_EQ] = ACTIONS(478), + [anon_sym_CARET_EQ] = ACTIONS(478), + [anon_sym_LT_LT_EQ] = ACTIONS(478), + [anon_sym_GT_GT_EQ] = ACTIONS(478), + [anon_sym_yield] = ACTIONS(480), + [anon_sym_move] = ACTIONS(480), + [anon_sym_DOT] = ACTIONS(480), + [sym_integer_literal] = ACTIONS(478), + [aux_sym_string_literal_token1] = ACTIONS(478), + [sym_char_literal] = ACTIONS(478), + [anon_sym_true] = ACTIONS(480), + [anon_sym_false] = ACTIONS(480), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(480), + [sym_super] = ACTIONS(480), + [sym_crate] = ACTIONS(480), + [sym_metavariable] = ACTIONS(478), + [sym_raw_string_literal] = ACTIONS(478), + [sym_float_literal] = ACTIONS(478), + [sym_block_comment] = ACTIONS(3), + }, + [77] = { + [ts_builtin_sym_end] = ACTIONS(482), + [sym_identifier] = ACTIONS(484), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym_macro_rules_BANG] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_STAR] = ACTIONS(484), + [anon_sym_QMARK] = ACTIONS(482), + [anon_sym_u8] = ACTIONS(484), + [anon_sym_i8] = ACTIONS(484), + [anon_sym_u16] = ACTIONS(484), + [anon_sym_i16] = ACTIONS(484), + [anon_sym_u32] = ACTIONS(484), + [anon_sym_i32] = ACTIONS(484), + [anon_sym_u64] = ACTIONS(484), + [anon_sym_i64] = ACTIONS(484), + [anon_sym_u128] = ACTIONS(484), + [anon_sym_i128] = ACTIONS(484), + [anon_sym_isize] = ACTIONS(484), + [anon_sym_usize] = ACTIONS(484), + [anon_sym_f32] = ACTIONS(484), + [anon_sym_f64] = ACTIONS(484), + [anon_sym_bool] = ACTIONS(484), + [anon_sym_str] = ACTIONS(484), + [anon_sym_char] = ACTIONS(484), + [anon_sym_SQUOTE] = ACTIONS(484), + [anon_sym_as] = ACTIONS(484), + [anon_sym_async] = ACTIONS(484), + [anon_sym_break] = ACTIONS(484), + [anon_sym_const] = ACTIONS(484), + [anon_sym_continue] = ACTIONS(484), + [anon_sym_default] = ACTIONS(484), + [anon_sym_enum] = ACTIONS(484), + [anon_sym_fn] = ACTIONS(484), + [anon_sym_for] = ACTIONS(484), + [anon_sym_if] = ACTIONS(484), + [anon_sym_impl] = ACTIONS(484), + [anon_sym_let] = ACTIONS(484), + [anon_sym_loop] = ACTIONS(484), + [anon_sym_match] = ACTIONS(484), + [anon_sym_mod] = ACTIONS(484), + [anon_sym_pub] = ACTIONS(484), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(484), + [anon_sym_struct] = ACTIONS(484), + [anon_sym_trait] = ACTIONS(484), + [anon_sym_type] = ACTIONS(484), + [anon_sym_union] = ACTIONS(484), + [anon_sym_unsafe] = ACTIONS(484), + [anon_sym_use] = ACTIONS(484), + [anon_sym_while] = ACTIONS(484), + [anon_sym_POUND] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(484), + [anon_sym_EQ] = ACTIONS(484), + [anon_sym_extern] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_COLON_COLON] = ACTIONS(482), + [anon_sym_AMP] = ACTIONS(484), + [anon_sym_DOT_DOT_DOT] = ACTIONS(482), + [anon_sym_DOT_DOT] = ACTIONS(484), + [anon_sym_DOT_DOT_EQ] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(482), + [anon_sym_PIPE_PIPE] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(484), + [anon_sym_CARET] = ACTIONS(484), + [anon_sym_EQ_EQ] = ACTIONS(482), + [anon_sym_BANG_EQ] = ACTIONS(482), + [anon_sym_LT_EQ] = ACTIONS(482), + [anon_sym_GT_EQ] = ACTIONS(482), + [anon_sym_LT_LT] = ACTIONS(484), + [anon_sym_GT_GT] = ACTIONS(484), + [anon_sym_SLASH] = ACTIONS(484), + [anon_sym_PERCENT] = ACTIONS(484), + [anon_sym_PLUS_EQ] = ACTIONS(482), + [anon_sym_DASH_EQ] = ACTIONS(482), + [anon_sym_STAR_EQ] = ACTIONS(482), + [anon_sym_SLASH_EQ] = ACTIONS(482), + [anon_sym_PERCENT_EQ] = ACTIONS(482), + [anon_sym_AMP_EQ] = ACTIONS(482), + [anon_sym_PIPE_EQ] = ACTIONS(482), + [anon_sym_CARET_EQ] = ACTIONS(482), + [anon_sym_LT_LT_EQ] = ACTIONS(482), + [anon_sym_GT_GT_EQ] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(484), + [anon_sym_move] = ACTIONS(484), + [anon_sym_DOT] = ACTIONS(484), + [sym_integer_literal] = ACTIONS(482), + [aux_sym_string_literal_token1] = ACTIONS(482), + [sym_char_literal] = ACTIONS(482), + [anon_sym_true] = ACTIONS(484), + [anon_sym_false] = ACTIONS(484), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(484), + [sym_super] = ACTIONS(484), + [sym_crate] = ACTIONS(484), + [sym_metavariable] = ACTIONS(482), + [sym_raw_string_literal] = ACTIONS(482), + [sym_float_literal] = ACTIONS(482), + [sym_block_comment] = ACTIONS(3), + }, + [78] = { + [ts_builtin_sym_end] = ACTIONS(486), + [sym_identifier] = ACTIONS(488), + [anon_sym_SEMI] = ACTIONS(486), + [anon_sym_macro_rules_BANG] = ACTIONS(486), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(486), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_STAR] = ACTIONS(488), + [anon_sym_QMARK] = ACTIONS(486), + [anon_sym_u8] = ACTIONS(488), + [anon_sym_i8] = ACTIONS(488), + [anon_sym_u16] = ACTIONS(488), + [anon_sym_i16] = ACTIONS(488), + [anon_sym_u32] = ACTIONS(488), + [anon_sym_i32] = ACTIONS(488), + [anon_sym_u64] = ACTIONS(488), + [anon_sym_i64] = ACTIONS(488), + [anon_sym_u128] = ACTIONS(488), + [anon_sym_i128] = ACTIONS(488), + [anon_sym_isize] = ACTIONS(488), + [anon_sym_usize] = ACTIONS(488), + [anon_sym_f32] = ACTIONS(488), + [anon_sym_f64] = ACTIONS(488), + [anon_sym_bool] = ACTIONS(488), + [anon_sym_str] = ACTIONS(488), + [anon_sym_char] = ACTIONS(488), + [anon_sym_SQUOTE] = ACTIONS(488), + [anon_sym_as] = ACTIONS(488), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(488), + [anon_sym_const] = ACTIONS(488), + [anon_sym_continue] = ACTIONS(488), + [anon_sym_default] = ACTIONS(488), + [anon_sym_enum] = ACTIONS(488), + [anon_sym_fn] = ACTIONS(488), + [anon_sym_for] = ACTIONS(488), + [anon_sym_if] = ACTIONS(488), + [anon_sym_impl] = ACTIONS(488), + [anon_sym_let] = ACTIONS(488), + [anon_sym_loop] = ACTIONS(488), + [anon_sym_match] = ACTIONS(488), + [anon_sym_mod] = ACTIONS(488), + [anon_sym_pub] = ACTIONS(488), + [anon_sym_return] = ACTIONS(488), + [anon_sym_static] = ACTIONS(488), + [anon_sym_struct] = ACTIONS(488), + [anon_sym_trait] = ACTIONS(488), + [anon_sym_type] = ACTIONS(488), + [anon_sym_union] = ACTIONS(488), + [anon_sym_unsafe] = ACTIONS(488), + [anon_sym_use] = ACTIONS(488), + [anon_sym_while] = ACTIONS(488), + [anon_sym_POUND] = ACTIONS(486), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_EQ] = ACTIONS(488), + [anon_sym_extern] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_AMP] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(486), + [anon_sym_DOT_DOT] = ACTIONS(488), + [anon_sym_DOT_DOT_EQ] = ACTIONS(486), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [anon_sym_PIPE] = ACTIONS(488), + [anon_sym_CARET] = ACTIONS(488), + [anon_sym_EQ_EQ] = ACTIONS(486), + [anon_sym_BANG_EQ] = ACTIONS(486), + [anon_sym_LT_EQ] = ACTIONS(486), + [anon_sym_GT_EQ] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(488), + [anon_sym_GT_GT] = ACTIONS(488), + [anon_sym_SLASH] = ACTIONS(488), + [anon_sym_PERCENT] = ACTIONS(488), + [anon_sym_PLUS_EQ] = ACTIONS(486), + [anon_sym_DASH_EQ] = ACTIONS(486), + [anon_sym_STAR_EQ] = ACTIONS(486), + [anon_sym_SLASH_EQ] = ACTIONS(486), + [anon_sym_PERCENT_EQ] = ACTIONS(486), + [anon_sym_AMP_EQ] = ACTIONS(486), + [anon_sym_PIPE_EQ] = ACTIONS(486), + [anon_sym_CARET_EQ] = ACTIONS(486), + [anon_sym_LT_LT_EQ] = ACTIONS(486), + [anon_sym_GT_GT_EQ] = ACTIONS(486), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_move] = ACTIONS(488), + [anon_sym_DOT] = ACTIONS(488), + [sym_integer_literal] = ACTIONS(486), + [aux_sym_string_literal_token1] = ACTIONS(486), + [sym_char_literal] = ACTIONS(486), + [anon_sym_true] = ACTIONS(488), + [anon_sym_false] = ACTIONS(488), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(488), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(486), + [sym_raw_string_literal] = ACTIONS(486), + [sym_float_literal] = ACTIONS(486), + [sym_block_comment] = ACTIONS(3), + }, + [79] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1248), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_tuple_expression_repeat1] = STATE(86), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(490), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -24088,12 +25654,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(536), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(308), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -24111,58 +25676,798 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [64] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1257), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [80] = { + [ts_builtin_sym_end] = ACTIONS(492), + [sym_identifier] = ACTIONS(494), + [anon_sym_SEMI] = ACTIONS(492), + [anon_sym_macro_rules_BANG] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_STAR] = ACTIONS(494), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_u8] = ACTIONS(494), + [anon_sym_i8] = ACTIONS(494), + [anon_sym_u16] = ACTIONS(494), + [anon_sym_i16] = ACTIONS(494), + [anon_sym_u32] = ACTIONS(494), + [anon_sym_i32] = ACTIONS(494), + [anon_sym_u64] = ACTIONS(494), + [anon_sym_i64] = ACTIONS(494), + [anon_sym_u128] = ACTIONS(494), + [anon_sym_i128] = ACTIONS(494), + [anon_sym_isize] = ACTIONS(494), + [anon_sym_usize] = ACTIONS(494), + [anon_sym_f32] = ACTIONS(494), + [anon_sym_f64] = ACTIONS(494), + [anon_sym_bool] = ACTIONS(494), + [anon_sym_str] = ACTIONS(494), + [anon_sym_char] = ACTIONS(494), + [anon_sym_SQUOTE] = ACTIONS(494), + [anon_sym_as] = ACTIONS(494), + [anon_sym_async] = ACTIONS(494), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(494), + [anon_sym_continue] = ACTIONS(494), + [anon_sym_default] = ACTIONS(494), + [anon_sym_enum] = ACTIONS(494), + [anon_sym_fn] = ACTIONS(494), + [anon_sym_for] = ACTIONS(494), + [anon_sym_if] = ACTIONS(494), + [anon_sym_impl] = ACTIONS(494), + [anon_sym_let] = ACTIONS(494), + [anon_sym_loop] = ACTIONS(494), + [anon_sym_match] = ACTIONS(494), + [anon_sym_mod] = ACTIONS(494), + [anon_sym_pub] = ACTIONS(494), + [anon_sym_return] = ACTIONS(494), + [anon_sym_static] = ACTIONS(494), + [anon_sym_struct] = ACTIONS(494), + [anon_sym_trait] = ACTIONS(494), + [anon_sym_type] = ACTIONS(494), + [anon_sym_union] = ACTIONS(494), + [anon_sym_unsafe] = ACTIONS(494), + [anon_sym_use] = ACTIONS(494), + [anon_sym_while] = ACTIONS(494), + [anon_sym_POUND] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(494), + [anon_sym_extern] = ACTIONS(494), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(494), + [anon_sym_DOT_DOT_DOT] = ACTIONS(492), + [anon_sym_DOT_DOT] = ACTIONS(494), + [anon_sym_DOT_DOT_EQ] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_AMP_AMP] = ACTIONS(492), + [anon_sym_PIPE_PIPE] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(494), + [anon_sym_CARET] = ACTIONS(494), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(494), + [anon_sym_PERCENT] = ACTIONS(494), + [anon_sym_PLUS_EQ] = ACTIONS(492), + [anon_sym_DASH_EQ] = ACTIONS(492), + [anon_sym_STAR_EQ] = ACTIONS(492), + [anon_sym_SLASH_EQ] = ACTIONS(492), + [anon_sym_PERCENT_EQ] = ACTIONS(492), + [anon_sym_AMP_EQ] = ACTIONS(492), + [anon_sym_PIPE_EQ] = ACTIONS(492), + [anon_sym_CARET_EQ] = ACTIONS(492), + [anon_sym_LT_LT_EQ] = ACTIONS(492), + [anon_sym_GT_GT_EQ] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(494), + [anon_sym_move] = ACTIONS(494), + [anon_sym_DOT] = ACTIONS(494), + [sym_integer_literal] = ACTIONS(492), + [aux_sym_string_literal_token1] = ACTIONS(492), + [sym_char_literal] = ACTIONS(492), + [anon_sym_true] = ACTIONS(494), + [anon_sym_false] = ACTIONS(494), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(492), + [sym_raw_string_literal] = ACTIONS(492), + [sym_float_literal] = ACTIONS(492), + [sym_block_comment] = ACTIONS(3), + }, + [81] = { + [ts_builtin_sym_end] = ACTIONS(496), + [sym_identifier] = ACTIONS(498), + [anon_sym_SEMI] = ACTIONS(496), + [anon_sym_macro_rules_BANG] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(496), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_LBRACK] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(498), + [anon_sym_QMARK] = ACTIONS(496), + [anon_sym_u8] = ACTIONS(498), + [anon_sym_i8] = ACTIONS(498), + [anon_sym_u16] = ACTIONS(498), + [anon_sym_i16] = ACTIONS(498), + [anon_sym_u32] = ACTIONS(498), + [anon_sym_i32] = ACTIONS(498), + [anon_sym_u64] = ACTIONS(498), + [anon_sym_i64] = ACTIONS(498), + [anon_sym_u128] = ACTIONS(498), + [anon_sym_i128] = ACTIONS(498), + [anon_sym_isize] = ACTIONS(498), + [anon_sym_usize] = ACTIONS(498), + [anon_sym_f32] = ACTIONS(498), + [anon_sym_f64] = ACTIONS(498), + [anon_sym_bool] = ACTIONS(498), + [anon_sym_str] = ACTIONS(498), + [anon_sym_char] = ACTIONS(498), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_as] = ACTIONS(498), + [anon_sym_async] = ACTIONS(498), + [anon_sym_break] = ACTIONS(498), + [anon_sym_const] = ACTIONS(498), + [anon_sym_continue] = ACTIONS(498), + [anon_sym_default] = ACTIONS(498), + [anon_sym_enum] = ACTIONS(498), + [anon_sym_fn] = ACTIONS(498), + [anon_sym_for] = ACTIONS(498), + [anon_sym_if] = ACTIONS(498), + [anon_sym_impl] = ACTIONS(498), + [anon_sym_let] = ACTIONS(498), + [anon_sym_loop] = ACTIONS(498), + [anon_sym_match] = ACTIONS(498), + [anon_sym_mod] = ACTIONS(498), + [anon_sym_pub] = ACTIONS(498), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(498), + [anon_sym_struct] = ACTIONS(498), + [anon_sym_trait] = ACTIONS(498), + [anon_sym_type] = ACTIONS(498), + [anon_sym_union] = ACTIONS(498), + [anon_sym_unsafe] = ACTIONS(498), + [anon_sym_use] = ACTIONS(498), + [anon_sym_while] = ACTIONS(498), + [anon_sym_POUND] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(498), + [anon_sym_extern] = ACTIONS(498), + [anon_sym_LT] = ACTIONS(498), + [anon_sym_GT] = ACTIONS(498), + [anon_sym_COLON_COLON] = ACTIONS(496), + [anon_sym_AMP] = ACTIONS(498), + [anon_sym_DOT_DOT_DOT] = ACTIONS(496), + [anon_sym_DOT_DOT] = ACTIONS(498), + [anon_sym_DOT_DOT_EQ] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(498), + [anon_sym_AMP_AMP] = ACTIONS(496), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(498), + [anon_sym_EQ_EQ] = ACTIONS(496), + [anon_sym_BANG_EQ] = ACTIONS(496), + [anon_sym_LT_EQ] = ACTIONS(496), + [anon_sym_GT_EQ] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_GT_GT] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_PLUS_EQ] = ACTIONS(496), + [anon_sym_DASH_EQ] = ACTIONS(496), + [anon_sym_STAR_EQ] = ACTIONS(496), + [anon_sym_SLASH_EQ] = ACTIONS(496), + [anon_sym_PERCENT_EQ] = ACTIONS(496), + [anon_sym_AMP_EQ] = ACTIONS(496), + [anon_sym_PIPE_EQ] = ACTIONS(496), + [anon_sym_CARET_EQ] = ACTIONS(496), + [anon_sym_LT_LT_EQ] = ACTIONS(496), + [anon_sym_GT_GT_EQ] = ACTIONS(496), + [anon_sym_yield] = ACTIONS(498), + [anon_sym_move] = ACTIONS(498), + [anon_sym_DOT] = ACTIONS(498), + [sym_integer_literal] = ACTIONS(496), + [aux_sym_string_literal_token1] = ACTIONS(496), + [sym_char_literal] = ACTIONS(496), + [anon_sym_true] = ACTIONS(498), + [anon_sym_false] = ACTIONS(498), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(498), + [sym_super] = ACTIONS(498), + [sym_crate] = ACTIONS(498), + [sym_metavariable] = ACTIONS(496), + [sym_raw_string_literal] = ACTIONS(496), + [sym_float_literal] = ACTIONS(496), + [sym_block_comment] = ACTIONS(3), + }, + [82] = { + [ts_builtin_sym_end] = ACTIONS(500), + [sym_identifier] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(500), + [anon_sym_macro_rules_BANG] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(502), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_u8] = ACTIONS(502), + [anon_sym_i8] = ACTIONS(502), + [anon_sym_u16] = ACTIONS(502), + [anon_sym_i16] = ACTIONS(502), + [anon_sym_u32] = ACTIONS(502), + [anon_sym_i32] = ACTIONS(502), + [anon_sym_u64] = ACTIONS(502), + [anon_sym_i64] = ACTIONS(502), + [anon_sym_u128] = ACTIONS(502), + [anon_sym_i128] = ACTIONS(502), + [anon_sym_isize] = ACTIONS(502), + [anon_sym_usize] = ACTIONS(502), + [anon_sym_f32] = ACTIONS(502), + [anon_sym_f64] = ACTIONS(502), + [anon_sym_bool] = ACTIONS(502), + [anon_sym_str] = ACTIONS(502), + [anon_sym_char] = ACTIONS(502), + [anon_sym_SQUOTE] = ACTIONS(502), + [anon_sym_as] = ACTIONS(502), + [anon_sym_async] = ACTIONS(502), + [anon_sym_break] = ACTIONS(502), + [anon_sym_const] = ACTIONS(502), + [anon_sym_continue] = ACTIONS(502), + [anon_sym_default] = ACTIONS(502), + [anon_sym_enum] = ACTIONS(502), + [anon_sym_fn] = ACTIONS(502), + [anon_sym_for] = ACTIONS(502), + [anon_sym_if] = ACTIONS(502), + [anon_sym_impl] = ACTIONS(502), + [anon_sym_let] = ACTIONS(502), + [anon_sym_loop] = ACTIONS(502), + [anon_sym_match] = ACTIONS(502), + [anon_sym_mod] = ACTIONS(502), + [anon_sym_pub] = ACTIONS(502), + [anon_sym_return] = ACTIONS(502), + [anon_sym_static] = ACTIONS(502), + [anon_sym_struct] = ACTIONS(502), + [anon_sym_trait] = ACTIONS(502), + [anon_sym_type] = ACTIONS(502), + [anon_sym_union] = ACTIONS(502), + [anon_sym_unsafe] = ACTIONS(502), + [anon_sym_use] = ACTIONS(502), + [anon_sym_while] = ACTIONS(502), + [anon_sym_POUND] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(502), + [anon_sym_extern] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(502), + [anon_sym_GT] = ACTIONS(502), + [anon_sym_COLON_COLON] = ACTIONS(500), + [anon_sym_AMP] = ACTIONS(502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(500), + [anon_sym_DOT_DOT] = ACTIONS(502), + [anon_sym_DOT_DOT_EQ] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_AMP_AMP] = ACTIONS(500), + [anon_sym_PIPE_PIPE] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_EQ_EQ] = ACTIONS(500), + [anon_sym_BANG_EQ] = ACTIONS(500), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT_EQ] = ACTIONS(500), + [anon_sym_LT_LT] = ACTIONS(502), + [anon_sym_GT_GT] = ACTIONS(502), + [anon_sym_SLASH] = ACTIONS(502), + [anon_sym_PERCENT] = ACTIONS(502), + [anon_sym_PLUS_EQ] = ACTIONS(500), + [anon_sym_DASH_EQ] = ACTIONS(500), + [anon_sym_STAR_EQ] = ACTIONS(500), + [anon_sym_SLASH_EQ] = ACTIONS(500), + [anon_sym_PERCENT_EQ] = ACTIONS(500), + [anon_sym_AMP_EQ] = ACTIONS(500), + [anon_sym_PIPE_EQ] = ACTIONS(500), + [anon_sym_CARET_EQ] = ACTIONS(500), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_GT_GT_EQ] = ACTIONS(500), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(502), + [anon_sym_DOT] = ACTIONS(502), + [sym_integer_literal] = ACTIONS(500), + [aux_sym_string_literal_token1] = ACTIONS(500), + [sym_char_literal] = ACTIONS(500), + [anon_sym_true] = ACTIONS(502), + [anon_sym_false] = ACTIONS(502), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(502), + [sym_super] = ACTIONS(502), + [sym_crate] = ACTIONS(502), + [sym_metavariable] = ACTIONS(500), + [sym_raw_string_literal] = ACTIONS(500), + [sym_float_literal] = ACTIONS(500), + [sym_block_comment] = ACTIONS(3), + }, + [83] = { + [ts_builtin_sym_end] = ACTIONS(504), + [sym_identifier] = ACTIONS(506), + [anon_sym_SEMI] = ACTIONS(504), + [anon_sym_macro_rules_BANG] = ACTIONS(504), + [anon_sym_LPAREN] = ACTIONS(504), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_RBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(506), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_QMARK] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(506), + [anon_sym_i8] = ACTIONS(506), + [anon_sym_u16] = ACTIONS(506), + [anon_sym_i16] = ACTIONS(506), + [anon_sym_u32] = ACTIONS(506), + [anon_sym_i32] = ACTIONS(506), + [anon_sym_u64] = ACTIONS(506), + [anon_sym_i64] = ACTIONS(506), + [anon_sym_u128] = ACTIONS(506), + [anon_sym_i128] = ACTIONS(506), + [anon_sym_isize] = ACTIONS(506), + [anon_sym_usize] = ACTIONS(506), + [anon_sym_f32] = ACTIONS(506), + [anon_sym_f64] = ACTIONS(506), + [anon_sym_bool] = ACTIONS(506), + [anon_sym_str] = ACTIONS(506), + [anon_sym_char] = ACTIONS(506), + [anon_sym_SQUOTE] = ACTIONS(506), + [anon_sym_as] = ACTIONS(506), + [anon_sym_async] = ACTIONS(506), + [anon_sym_break] = ACTIONS(506), + [anon_sym_const] = ACTIONS(506), + [anon_sym_continue] = ACTIONS(506), + [anon_sym_default] = ACTIONS(506), + [anon_sym_enum] = ACTIONS(506), + [anon_sym_fn] = ACTIONS(506), + [anon_sym_for] = ACTIONS(506), + [anon_sym_if] = ACTIONS(506), + [anon_sym_impl] = ACTIONS(506), + [anon_sym_let] = ACTIONS(506), + [anon_sym_loop] = ACTIONS(506), + [anon_sym_match] = ACTIONS(506), + [anon_sym_mod] = ACTIONS(506), + [anon_sym_pub] = ACTIONS(506), + [anon_sym_return] = ACTIONS(506), + [anon_sym_static] = ACTIONS(506), + [anon_sym_struct] = ACTIONS(506), + [anon_sym_trait] = ACTIONS(506), + [anon_sym_type] = ACTIONS(506), + [anon_sym_union] = ACTIONS(506), + [anon_sym_unsafe] = ACTIONS(506), + [anon_sym_use] = ACTIONS(506), + [anon_sym_while] = ACTIONS(506), + [anon_sym_POUND] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(506), + [anon_sym_extern] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(506), + [anon_sym_GT] = ACTIONS(506), + [anon_sym_COLON_COLON] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT_DOT] = ACTIONS(504), + [anon_sym_DOT_DOT] = ACTIONS(506), + [anon_sym_DOT_DOT_EQ] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_AMP_AMP] = ACTIONS(504), + [anon_sym_PIPE_PIPE] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(506), + [anon_sym_EQ_EQ] = ACTIONS(504), + [anon_sym_BANG_EQ] = ACTIONS(504), + [anon_sym_LT_EQ] = ACTIONS(504), + [anon_sym_GT_EQ] = ACTIONS(504), + [anon_sym_LT_LT] = ACTIONS(506), + [anon_sym_GT_GT] = ACTIONS(506), + [anon_sym_SLASH] = ACTIONS(506), + [anon_sym_PERCENT] = ACTIONS(506), + [anon_sym_PLUS_EQ] = ACTIONS(504), + [anon_sym_DASH_EQ] = ACTIONS(504), + [anon_sym_STAR_EQ] = ACTIONS(504), + [anon_sym_SLASH_EQ] = ACTIONS(504), + [anon_sym_PERCENT_EQ] = ACTIONS(504), + [anon_sym_AMP_EQ] = ACTIONS(504), + [anon_sym_PIPE_EQ] = ACTIONS(504), + [anon_sym_CARET_EQ] = ACTIONS(504), + [anon_sym_LT_LT_EQ] = ACTIONS(504), + [anon_sym_GT_GT_EQ] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(506), + [anon_sym_move] = ACTIONS(506), + [anon_sym_DOT] = ACTIONS(506), + [sym_integer_literal] = ACTIONS(504), + [aux_sym_string_literal_token1] = ACTIONS(504), + [sym_char_literal] = ACTIONS(504), + [anon_sym_true] = ACTIONS(506), + [anon_sym_false] = ACTIONS(506), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(506), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(504), + [sym_raw_string_literal] = ACTIONS(504), + [sym_float_literal] = ACTIONS(504), + [sym_block_comment] = ACTIONS(3), + }, + [84] = { + [ts_builtin_sym_end] = ACTIONS(508), + [sym_identifier] = ACTIONS(510), + [anon_sym_SEMI] = ACTIONS(508), + [anon_sym_macro_rules_BANG] = ACTIONS(508), + [anon_sym_LPAREN] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(508), + [anon_sym_RBRACE] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(510), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_QMARK] = ACTIONS(508), + [anon_sym_u8] = ACTIONS(510), + [anon_sym_i8] = ACTIONS(510), + [anon_sym_u16] = ACTIONS(510), + [anon_sym_i16] = ACTIONS(510), + [anon_sym_u32] = ACTIONS(510), + [anon_sym_i32] = ACTIONS(510), + [anon_sym_u64] = ACTIONS(510), + [anon_sym_i64] = ACTIONS(510), + [anon_sym_u128] = ACTIONS(510), + [anon_sym_i128] = ACTIONS(510), + [anon_sym_isize] = ACTIONS(510), + [anon_sym_usize] = ACTIONS(510), + [anon_sym_f32] = ACTIONS(510), + [anon_sym_f64] = ACTIONS(510), + [anon_sym_bool] = ACTIONS(510), + [anon_sym_str] = ACTIONS(510), + [anon_sym_char] = ACTIONS(510), + [anon_sym_SQUOTE] = ACTIONS(510), + [anon_sym_as] = ACTIONS(510), + [anon_sym_async] = ACTIONS(510), + [anon_sym_break] = ACTIONS(510), + [anon_sym_const] = ACTIONS(510), + [anon_sym_continue] = ACTIONS(510), + [anon_sym_default] = ACTIONS(510), + [anon_sym_enum] = ACTIONS(510), + [anon_sym_fn] = ACTIONS(510), + [anon_sym_for] = ACTIONS(510), + [anon_sym_if] = ACTIONS(510), + [anon_sym_impl] = ACTIONS(510), + [anon_sym_let] = ACTIONS(510), + [anon_sym_loop] = ACTIONS(510), + [anon_sym_match] = ACTIONS(510), + [anon_sym_mod] = ACTIONS(510), + [anon_sym_pub] = ACTIONS(510), + [anon_sym_return] = ACTIONS(510), + [anon_sym_static] = ACTIONS(510), + [anon_sym_struct] = ACTIONS(510), + [anon_sym_trait] = ACTIONS(510), + [anon_sym_type] = ACTIONS(510), + [anon_sym_union] = ACTIONS(510), + [anon_sym_unsafe] = ACTIONS(510), + [anon_sym_use] = ACTIONS(510), + [anon_sym_while] = ACTIONS(510), + [anon_sym_POUND] = ACTIONS(508), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(510), + [anon_sym_extern] = ACTIONS(510), + [anon_sym_LT] = ACTIONS(510), + [anon_sym_GT] = ACTIONS(510), + [anon_sym_COLON_COLON] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT_DOT] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DOT_DOT_EQ] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(508), + [anon_sym_PIPE_PIPE] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_CARET] = ACTIONS(510), + [anon_sym_EQ_EQ] = ACTIONS(508), + [anon_sym_BANG_EQ] = ACTIONS(508), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(510), + [anon_sym_GT_GT] = ACTIONS(510), + [anon_sym_SLASH] = ACTIONS(510), + [anon_sym_PERCENT] = ACTIONS(510), + [anon_sym_PLUS_EQ] = ACTIONS(508), + [anon_sym_DASH_EQ] = ACTIONS(508), + [anon_sym_STAR_EQ] = ACTIONS(508), + [anon_sym_SLASH_EQ] = ACTIONS(508), + [anon_sym_PERCENT_EQ] = ACTIONS(508), + [anon_sym_AMP_EQ] = ACTIONS(508), + [anon_sym_PIPE_EQ] = ACTIONS(508), + [anon_sym_CARET_EQ] = ACTIONS(508), + [anon_sym_LT_LT_EQ] = ACTIONS(508), + [anon_sym_GT_GT_EQ] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_move] = ACTIONS(510), + [anon_sym_DOT] = ACTIONS(510), + [sym_integer_literal] = ACTIONS(508), + [aux_sym_string_literal_token1] = ACTIONS(508), + [sym_char_literal] = ACTIONS(508), + [anon_sym_true] = ACTIONS(510), + [anon_sym_false] = ACTIONS(510), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(510), + [sym_super] = ACTIONS(510), + [sym_crate] = ACTIONS(510), + [sym_metavariable] = ACTIONS(508), + [sym_raw_string_literal] = ACTIONS(508), + [sym_float_literal] = ACTIONS(508), + [sym_block_comment] = ACTIONS(3), + }, + [85] = { + [ts_builtin_sym_end] = ACTIONS(512), + [sym_identifier] = ACTIONS(514), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_macro_rules_BANG] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(512), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_RBRACE] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(514), + [anon_sym_STAR] = ACTIONS(514), + [anon_sym_QMARK] = ACTIONS(512), + [anon_sym_u8] = ACTIONS(514), + [anon_sym_i8] = ACTIONS(514), + [anon_sym_u16] = ACTIONS(514), + [anon_sym_i16] = ACTIONS(514), + [anon_sym_u32] = ACTIONS(514), + [anon_sym_i32] = ACTIONS(514), + [anon_sym_u64] = ACTIONS(514), + [anon_sym_i64] = ACTIONS(514), + [anon_sym_u128] = ACTIONS(514), + [anon_sym_i128] = ACTIONS(514), + [anon_sym_isize] = ACTIONS(514), + [anon_sym_usize] = ACTIONS(514), + [anon_sym_f32] = ACTIONS(514), + [anon_sym_f64] = ACTIONS(514), + [anon_sym_bool] = ACTIONS(514), + [anon_sym_str] = ACTIONS(514), + [anon_sym_char] = ACTIONS(514), + [anon_sym_SQUOTE] = ACTIONS(514), + [anon_sym_as] = ACTIONS(514), + [anon_sym_async] = ACTIONS(514), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(514), + [anon_sym_continue] = ACTIONS(514), + [anon_sym_default] = ACTIONS(514), + [anon_sym_enum] = ACTIONS(514), + [anon_sym_fn] = ACTIONS(514), + [anon_sym_for] = ACTIONS(514), + [anon_sym_if] = ACTIONS(514), + [anon_sym_impl] = ACTIONS(514), + [anon_sym_let] = ACTIONS(514), + [anon_sym_loop] = ACTIONS(514), + [anon_sym_match] = ACTIONS(514), + [anon_sym_mod] = ACTIONS(514), + [anon_sym_pub] = ACTIONS(514), + [anon_sym_return] = ACTIONS(514), + [anon_sym_static] = ACTIONS(514), + [anon_sym_struct] = ACTIONS(514), + [anon_sym_trait] = ACTIONS(514), + [anon_sym_type] = ACTIONS(514), + [anon_sym_union] = ACTIONS(514), + [anon_sym_unsafe] = ACTIONS(514), + [anon_sym_use] = ACTIONS(514), + [anon_sym_while] = ACTIONS(514), + [anon_sym_POUND] = ACTIONS(512), + [anon_sym_BANG] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [anon_sym_extern] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(514), + [anon_sym_GT] = ACTIONS(514), + [anon_sym_COLON_COLON] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(514), + [anon_sym_AMP_AMP] = ACTIONS(512), + [anon_sym_PIPE_PIPE] = ACTIONS(512), + [anon_sym_PIPE] = ACTIONS(514), + [anon_sym_CARET] = ACTIONS(514), + [anon_sym_EQ_EQ] = ACTIONS(512), + [anon_sym_BANG_EQ] = ACTIONS(512), + [anon_sym_LT_EQ] = ACTIONS(512), + [anon_sym_GT_EQ] = ACTIONS(512), + [anon_sym_LT_LT] = ACTIONS(514), + [anon_sym_GT_GT] = ACTIONS(514), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_PLUS_EQ] = ACTIONS(512), + [anon_sym_DASH_EQ] = ACTIONS(512), + [anon_sym_STAR_EQ] = ACTIONS(512), + [anon_sym_SLASH_EQ] = ACTIONS(512), + [anon_sym_PERCENT_EQ] = ACTIONS(512), + [anon_sym_AMP_EQ] = ACTIONS(512), + [anon_sym_PIPE_EQ] = ACTIONS(512), + [anon_sym_CARET_EQ] = ACTIONS(512), + [anon_sym_LT_LT_EQ] = ACTIONS(512), + [anon_sym_GT_GT_EQ] = ACTIONS(512), + [anon_sym_yield] = ACTIONS(514), + [anon_sym_move] = ACTIONS(514), + [anon_sym_DOT] = ACTIONS(514), + [sym_integer_literal] = ACTIONS(512), + [aux_sym_string_literal_token1] = ACTIONS(512), + [sym_char_literal] = ACTIONS(512), + [anon_sym_true] = ACTIONS(514), + [anon_sym_false] = ACTIONS(514), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(514), + [sym_super] = ACTIONS(514), + [sym_crate] = ACTIONS(514), + [sym_metavariable] = ACTIONS(512), + [sym_raw_string_literal] = ACTIONS(512), + [sym_float_literal] = ACTIONS(512), + [sym_block_comment] = ACTIONS(3), + }, + [86] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [aux_sym_tuple_expression_repeat1] = STATE(86), + [sym_identifier] = ACTIONS(516), + [anon_sym_LPAREN] = ACTIONS(519), + [anon_sym_RPAREN] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_u8] = ACTIONS(533), + [anon_sym_i8] = ACTIONS(533), + [anon_sym_u16] = ACTIONS(533), + [anon_sym_i16] = ACTIONS(533), + [anon_sym_u32] = ACTIONS(533), + [anon_sym_i32] = ACTIONS(533), + [anon_sym_u64] = ACTIONS(533), + [anon_sym_i64] = ACTIONS(533), + [anon_sym_u128] = ACTIONS(533), + [anon_sym_i128] = ACTIONS(533), + [anon_sym_isize] = ACTIONS(533), + [anon_sym_usize] = ACTIONS(533), + [anon_sym_f32] = ACTIONS(533), + [anon_sym_f64] = ACTIONS(533), + [anon_sym_bool] = ACTIONS(533), + [anon_sym_str] = ACTIONS(533), + [anon_sym_char] = ACTIONS(533), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_async] = ACTIONS(539), + [anon_sym_break] = ACTIONS(542), + [anon_sym_const] = ACTIONS(545), + [anon_sym_continue] = ACTIONS(548), + [anon_sym_default] = ACTIONS(551), + [anon_sym_for] = ACTIONS(554), + [anon_sym_if] = ACTIONS(557), + [anon_sym_loop] = ACTIONS(560), + [anon_sym_match] = ACTIONS(563), + [anon_sym_return] = ACTIONS(566), + [anon_sym_union] = ACTIONS(551), + [anon_sym_unsafe] = ACTIONS(569), + [anon_sym_while] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_COLON_COLON] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_DOT_DOT] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(530), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(590), + [anon_sym_move] = ACTIONS(593), + [sym_integer_literal] = ACTIONS(596), + [aux_sym_string_literal_token1] = ACTIONS(599), + [sym_char_literal] = ACTIONS(596), + [anon_sym_true] = ACTIONS(602), + [anon_sym_false] = ACTIONS(602), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(605), + [sym_super] = ACTIONS(608), + [sym_crate] = ACTIONS(608), + [sym_metavariable] = ACTIONS(611), + [sym_raw_string_literal] = ACTIONS(596), + [sym_float_literal] = ACTIONS(596), + [sym_block_comment] = ACTIONS(3), + }, + [87] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1244), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(540), + [anon_sym_RBRACK] = ACTIONS(614), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -24218,160 +26523,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [65] = { - [ts_builtin_sym_end] = ACTIONS(542), - [sym_identifier] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(542), - [anon_sym_macro_rules_BANG] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_RBRACE] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(542), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(542), - [anon_sym_u8] = ACTIONS(544), - [anon_sym_i8] = ACTIONS(544), - [anon_sym_u16] = ACTIONS(544), - [anon_sym_i16] = ACTIONS(544), - [anon_sym_u32] = ACTIONS(544), - [anon_sym_i32] = ACTIONS(544), - [anon_sym_u64] = ACTIONS(544), - [anon_sym_i64] = ACTIONS(544), - [anon_sym_u128] = ACTIONS(544), - [anon_sym_i128] = ACTIONS(544), - [anon_sym_isize] = ACTIONS(544), - [anon_sym_usize] = ACTIONS(544), - [anon_sym_f32] = ACTIONS(544), - [anon_sym_f64] = ACTIONS(544), - [anon_sym_bool] = ACTIONS(544), - [anon_sym_str] = ACTIONS(544), - [anon_sym_char] = ACTIONS(544), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_as] = ACTIONS(544), - [anon_sym_async] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_const] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_default] = ACTIONS(544), - [anon_sym_enum] = ACTIONS(544), - [anon_sym_fn] = ACTIONS(544), - [anon_sym_for] = ACTIONS(544), - [anon_sym_if] = ACTIONS(544), - [anon_sym_impl] = ACTIONS(544), - [anon_sym_let] = ACTIONS(544), - [anon_sym_loop] = ACTIONS(544), - [anon_sym_match] = ACTIONS(544), - [anon_sym_mod] = ACTIONS(544), - [anon_sym_pub] = ACTIONS(544), - [anon_sym_return] = ACTIONS(544), - [anon_sym_static] = ACTIONS(544), - [anon_sym_struct] = ACTIONS(544), - [anon_sym_trait] = ACTIONS(544), - [anon_sym_type] = ACTIONS(544), - [anon_sym_union] = ACTIONS(544), - [anon_sym_unsafe] = ACTIONS(544), - [anon_sym_use] = ACTIONS(544), - [anon_sym_while] = ACTIONS(544), - [anon_sym_POUND] = ACTIONS(542), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_extern] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_COLON_COLON] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_DOT_DOT_DOT] = ACTIONS(542), - [anon_sym_DOT_DOT] = ACTIONS(544), - [anon_sym_DOT_DOT_EQ] = ACTIONS(542), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_EQ_EQ] = ACTIONS(542), - [anon_sym_BANG_EQ] = ACTIONS(542), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_PLUS_EQ] = ACTIONS(542), - [anon_sym_DASH_EQ] = ACTIONS(542), - [anon_sym_STAR_EQ] = ACTIONS(542), - [anon_sym_SLASH_EQ] = ACTIONS(542), - [anon_sym_PERCENT_EQ] = ACTIONS(542), - [anon_sym_AMP_EQ] = ACTIONS(542), - [anon_sym_PIPE_EQ] = ACTIONS(542), - [anon_sym_CARET_EQ] = ACTIONS(542), - [anon_sym_LT_LT_EQ] = ACTIONS(542), - [anon_sym_GT_GT_EQ] = ACTIONS(542), - [anon_sym_yield] = ACTIONS(544), - [anon_sym_else] = ACTIONS(544), - [anon_sym_move] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [sym_integer_literal] = ACTIONS(542), - [aux_sym_string_literal_token1] = ACTIONS(542), - [sym_char_literal] = ACTIONS(542), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(544), - [sym_super] = ACTIONS(544), - [sym_crate] = ACTIONS(544), - [sym_metavariable] = ACTIONS(542), - [sym_raw_string_literal] = ACTIONS(542), - [sym_float_literal] = ACTIONS(542), - [sym_block_comment] = ACTIONS(3), - }, - [66] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1157), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [88] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1148), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24409,11 +26605,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(546), + [anon_sym_DASH_GT] = ACTIONS(616), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(618), [anon_sym_DASH] = ACTIONS(308), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -24432,165 +26628,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [67] = { - [ts_builtin_sym_end] = ACTIONS(548), - [sym_identifier] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(548), - [anon_sym_macro_rules_BANG] = ACTIONS(548), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_QMARK] = ACTIONS(548), - [anon_sym_u8] = ACTIONS(550), - [anon_sym_i8] = ACTIONS(550), - [anon_sym_u16] = ACTIONS(550), - [anon_sym_i16] = ACTIONS(550), - [anon_sym_u32] = ACTIONS(550), - [anon_sym_i32] = ACTIONS(550), - [anon_sym_u64] = ACTIONS(550), - [anon_sym_i64] = ACTIONS(550), - [anon_sym_u128] = ACTIONS(550), - [anon_sym_i128] = ACTIONS(550), - [anon_sym_isize] = ACTIONS(550), - [anon_sym_usize] = ACTIONS(550), - [anon_sym_f32] = ACTIONS(550), - [anon_sym_f64] = ACTIONS(550), - [anon_sym_bool] = ACTIONS(550), - [anon_sym_str] = ACTIONS(550), - [anon_sym_char] = ACTIONS(550), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_as] = ACTIONS(550), - [anon_sym_async] = ACTIONS(550), - [anon_sym_break] = ACTIONS(550), - [anon_sym_const] = ACTIONS(550), - [anon_sym_continue] = ACTIONS(550), - [anon_sym_default] = ACTIONS(550), - [anon_sym_enum] = ACTIONS(550), - [anon_sym_fn] = ACTIONS(550), - [anon_sym_for] = ACTIONS(550), - [anon_sym_if] = ACTIONS(550), - [anon_sym_impl] = ACTIONS(550), - [anon_sym_let] = ACTIONS(550), - [anon_sym_loop] = ACTIONS(550), - [anon_sym_match] = ACTIONS(550), - [anon_sym_mod] = ACTIONS(550), - [anon_sym_pub] = ACTIONS(550), - [anon_sym_return] = ACTIONS(550), - [anon_sym_static] = ACTIONS(550), - [anon_sym_struct] = ACTIONS(550), - [anon_sym_trait] = ACTIONS(550), - [anon_sym_type] = ACTIONS(550), - [anon_sym_union] = ACTIONS(550), - [anon_sym_unsafe] = ACTIONS(550), - [anon_sym_use] = ACTIONS(550), - [anon_sym_while] = ACTIONS(550), - [anon_sym_POUND] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(550), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_extern] = ACTIONS(550), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_COLON_COLON] = ACTIONS(548), - [anon_sym_AMP] = ACTIONS(550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(548), - [anon_sym_DOT_DOT] = ACTIONS(550), - [anon_sym_DOT_DOT_EQ] = ACTIONS(548), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_AMP_AMP] = ACTIONS(548), - [anon_sym_PIPE_PIPE] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT_EQ] = ACTIONS(548), - [anon_sym_GT_EQ] = ACTIONS(548), - [anon_sym_LT_LT] = ACTIONS(550), - [anon_sym_GT_GT] = ACTIONS(550), - [anon_sym_SLASH] = ACTIONS(550), - [anon_sym_PERCENT] = ACTIONS(550), - [anon_sym_PLUS_EQ] = ACTIONS(548), - [anon_sym_DASH_EQ] = ACTIONS(548), - [anon_sym_STAR_EQ] = ACTIONS(548), - [anon_sym_SLASH_EQ] = ACTIONS(548), - [anon_sym_PERCENT_EQ] = ACTIONS(548), - [anon_sym_AMP_EQ] = ACTIONS(548), - [anon_sym_PIPE_EQ] = ACTIONS(548), - [anon_sym_CARET_EQ] = ACTIONS(548), - [anon_sym_LT_LT_EQ] = ACTIONS(548), - [anon_sym_GT_GT_EQ] = ACTIONS(548), - [anon_sym_yield] = ACTIONS(550), - [anon_sym_else] = ACTIONS(550), - [anon_sym_move] = ACTIONS(550), - [anon_sym_DOT] = ACTIONS(550), - [sym_integer_literal] = ACTIONS(548), - [aux_sym_string_literal_token1] = ACTIONS(548), - [sym_char_literal] = ACTIONS(548), - [anon_sym_true] = ACTIONS(550), - [anon_sym_false] = ACTIONS(550), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(550), - [sym_super] = ACTIONS(550), - [sym_crate] = ACTIONS(550), - [sym_metavariable] = ACTIONS(548), - [sym_raw_string_literal] = ACTIONS(548), - [sym_float_literal] = ACTIONS(548), - [sym_block_comment] = ACTIONS(3), - }, - [68] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1284), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [89] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1208), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -24622,13 +26709,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_DASH_GT] = ACTIONS(536), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP] = ACTIONS(386), + [sym_mutable_specifier] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -24646,53 +26733,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [69] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1158), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [90] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1146), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24733,8 +26818,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [sym_mutable_specifier] = ACTIONS(552), - [anon_sym_DOT_DOT] = ACTIONS(538), + [sym_mutable_specifier] = ACTIONS(624), + [anon_sym_DOT_DOT] = ACTIONS(618), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -24753,58 +26838,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [70] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1240), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [91] = { + [sym_identifier] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_macro_rules_BANG] = ACTIONS(438), + [anon_sym_LPAREN] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(438), + [anon_sym_RBRACE] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(422), + [anon_sym_QMARK] = ACTIONS(424), + [anon_sym_u8] = ACTIONS(440), + [anon_sym_i8] = ACTIONS(440), + [anon_sym_u16] = ACTIONS(440), + [anon_sym_i16] = ACTIONS(440), + [anon_sym_u32] = ACTIONS(440), + [anon_sym_i32] = ACTIONS(440), + [anon_sym_u64] = ACTIONS(440), + [anon_sym_i64] = ACTIONS(440), + [anon_sym_u128] = ACTIONS(440), + [anon_sym_i128] = ACTIONS(440), + [anon_sym_isize] = ACTIONS(440), + [anon_sym_usize] = ACTIONS(440), + [anon_sym_f32] = ACTIONS(440), + [anon_sym_f64] = ACTIONS(440), + [anon_sym_bool] = ACTIONS(440), + [anon_sym_str] = ACTIONS(440), + [anon_sym_char] = ACTIONS(440), + [anon_sym_SQUOTE] = ACTIONS(440), + [anon_sym_as] = ACTIONS(422), + [anon_sym_async] = ACTIONS(440), + [anon_sym_break] = ACTIONS(440), + [anon_sym_const] = ACTIONS(440), + [anon_sym_continue] = ACTIONS(440), + [anon_sym_default] = ACTIONS(440), + [anon_sym_enum] = ACTIONS(440), + [anon_sym_fn] = ACTIONS(440), + [anon_sym_for] = ACTIONS(440), + [anon_sym_if] = ACTIONS(440), + [anon_sym_impl] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_loop] = ACTIONS(440), + [anon_sym_match] = ACTIONS(440), + [anon_sym_mod] = ACTIONS(440), + [anon_sym_pub] = ACTIONS(440), + [anon_sym_return] = ACTIONS(440), + [anon_sym_static] = ACTIONS(440), + [anon_sym_struct] = ACTIONS(440), + [anon_sym_trait] = ACTIONS(440), + [anon_sym_type] = ACTIONS(440), + [anon_sym_union] = ACTIONS(440), + [anon_sym_unsafe] = ACTIONS(440), + [anon_sym_use] = ACTIONS(440), + [anon_sym_while] = ACTIONS(440), + [anon_sym_POUND] = ACTIONS(438), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_EQ] = ACTIONS(422), + [anon_sym_extern] = ACTIONS(440), + [anon_sym_LT] = ACTIONS(422), + [anon_sym_GT] = ACTIONS(422), + [anon_sym_COLON_COLON] = ACTIONS(438), + [anon_sym_AMP] = ACTIONS(422), + [anon_sym_DOT_DOT_DOT] = ACTIONS(424), + [anon_sym_DOT_DOT] = ACTIONS(422), + [anon_sym_DOT_DOT_EQ] = ACTIONS(424), + [anon_sym_DASH] = ACTIONS(422), + [anon_sym_AMP_AMP] = ACTIONS(424), + [anon_sym_PIPE_PIPE] = ACTIONS(424), + [anon_sym_PIPE] = ACTIONS(422), + [anon_sym_CARET] = ACTIONS(422), + [anon_sym_EQ_EQ] = ACTIONS(424), + [anon_sym_BANG_EQ] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(424), + [anon_sym_GT_EQ] = ACTIONS(424), + [anon_sym_LT_LT] = ACTIONS(422), + [anon_sym_GT_GT] = ACTIONS(422), + [anon_sym_SLASH] = ACTIONS(422), + [anon_sym_PERCENT] = ACTIONS(422), + [anon_sym_PLUS_EQ] = ACTIONS(424), + [anon_sym_DASH_EQ] = ACTIONS(424), + [anon_sym_STAR_EQ] = ACTIONS(424), + [anon_sym_SLASH_EQ] = ACTIONS(424), + [anon_sym_PERCENT_EQ] = ACTIONS(424), + [anon_sym_AMP_EQ] = ACTIONS(424), + [anon_sym_PIPE_EQ] = ACTIONS(424), + [anon_sym_CARET_EQ] = ACTIONS(424), + [anon_sym_LT_LT_EQ] = ACTIONS(424), + [anon_sym_GT_GT_EQ] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(440), + [anon_sym_move] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(438), + [aux_sym_string_literal_token1] = ACTIONS(438), + [sym_char_literal] = ACTIONS(438), + [anon_sym_true] = ACTIONS(440), + [anon_sym_false] = ACTIONS(440), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(440), + [sym_super] = ACTIONS(440), + [sym_crate] = ACTIONS(440), + [sym_metavariable] = ACTIONS(438), + [sym_raw_string_literal] = ACTIONS(438), + [sym_float_literal] = ACTIONS(438), + [sym_block_comment] = ACTIONS(3), + }, + [92] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1224), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -24836,12 +27024,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_DASH_GT] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_DASH_GT] = ACTIONS(626), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(622), [anon_sym_DASH] = ACTIONS(350), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -24860,271 +27048,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [71] = { - [ts_builtin_sym_end] = ACTIONS(554), - [sym_identifier] = ACTIONS(556), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_macro_rules_BANG] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(556), - [anon_sym_i8] = ACTIONS(556), - [anon_sym_u16] = ACTIONS(556), - [anon_sym_i16] = ACTIONS(556), - [anon_sym_u32] = ACTIONS(556), - [anon_sym_i32] = ACTIONS(556), - [anon_sym_u64] = ACTIONS(556), - [anon_sym_i64] = ACTIONS(556), - [anon_sym_u128] = ACTIONS(556), - [anon_sym_i128] = ACTIONS(556), - [anon_sym_isize] = ACTIONS(556), - [anon_sym_usize] = ACTIONS(556), - [anon_sym_f32] = ACTIONS(556), - [anon_sym_f64] = ACTIONS(556), - [anon_sym_bool] = ACTIONS(556), - [anon_sym_str] = ACTIONS(556), - [anon_sym_char] = ACTIONS(556), - [anon_sym_SQUOTE] = ACTIONS(556), - [anon_sym_as] = ACTIONS(556), - [anon_sym_async] = ACTIONS(556), - [anon_sym_break] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_continue] = ACTIONS(556), - [anon_sym_default] = ACTIONS(556), - [anon_sym_enum] = ACTIONS(556), - [anon_sym_fn] = ACTIONS(556), - [anon_sym_for] = ACTIONS(556), - [anon_sym_if] = ACTIONS(556), - [anon_sym_impl] = ACTIONS(556), - [anon_sym_let] = ACTIONS(556), - [anon_sym_loop] = ACTIONS(556), - [anon_sym_match] = ACTIONS(556), - [anon_sym_mod] = ACTIONS(556), - [anon_sym_pub] = ACTIONS(556), - [anon_sym_return] = ACTIONS(556), - [anon_sym_static] = ACTIONS(556), - [anon_sym_struct] = ACTIONS(556), - [anon_sym_trait] = ACTIONS(556), - [anon_sym_type] = ACTIONS(556), - [anon_sym_union] = ACTIONS(556), - [anon_sym_unsafe] = ACTIONS(556), - [anon_sym_use] = ACTIONS(556), - [anon_sym_while] = ACTIONS(556), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_extern] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(556), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [anon_sym_DOT_DOT] = ACTIONS(556), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(556), - [anon_sym_CARET] = ACTIONS(556), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(556), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(556), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_yield] = ACTIONS(556), - [anon_sym_else] = ACTIONS(556), - [anon_sym_move] = ACTIONS(556), - [anon_sym_DOT] = ACTIONS(556), - [sym_integer_literal] = ACTIONS(554), - [aux_sym_string_literal_token1] = ACTIONS(554), - [sym_char_literal] = ACTIONS(554), - [anon_sym_true] = ACTIONS(556), - [anon_sym_false] = ACTIONS(556), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(556), - [sym_super] = ACTIONS(556), - [sym_crate] = ACTIONS(556), - [sym_metavariable] = ACTIONS(554), - [sym_raw_string_literal] = ACTIONS(554), - [sym_float_literal] = ACTIONS(554), - [sym_block_comment] = ACTIONS(3), - }, - [72] = { - [ts_builtin_sym_end] = ACTIONS(558), - [sym_identifier] = ACTIONS(560), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_macro_rules_BANG] = ACTIONS(558), - [anon_sym_LPAREN] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(558), - [anon_sym_RBRACE] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(558), - [anon_sym_PLUS] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_QMARK] = ACTIONS(558), - [anon_sym_u8] = ACTIONS(560), - [anon_sym_i8] = ACTIONS(560), - [anon_sym_u16] = ACTIONS(560), - [anon_sym_i16] = ACTIONS(560), - [anon_sym_u32] = ACTIONS(560), - [anon_sym_i32] = ACTIONS(560), - [anon_sym_u64] = ACTIONS(560), - [anon_sym_i64] = ACTIONS(560), - [anon_sym_u128] = ACTIONS(560), - [anon_sym_i128] = ACTIONS(560), - [anon_sym_isize] = ACTIONS(560), - [anon_sym_usize] = ACTIONS(560), - [anon_sym_f32] = ACTIONS(560), - [anon_sym_f64] = ACTIONS(560), - [anon_sym_bool] = ACTIONS(560), - [anon_sym_str] = ACTIONS(560), - [anon_sym_char] = ACTIONS(560), - [anon_sym_SQUOTE] = ACTIONS(560), - [anon_sym_as] = ACTIONS(560), - [anon_sym_async] = ACTIONS(560), - [anon_sym_break] = ACTIONS(560), - [anon_sym_const] = ACTIONS(560), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_default] = ACTIONS(560), - [anon_sym_enum] = ACTIONS(560), - [anon_sym_fn] = ACTIONS(560), - [anon_sym_for] = ACTIONS(560), - [anon_sym_if] = ACTIONS(560), - [anon_sym_impl] = ACTIONS(560), - [anon_sym_let] = ACTIONS(560), - [anon_sym_loop] = ACTIONS(560), - [anon_sym_match] = ACTIONS(560), - [anon_sym_mod] = ACTIONS(560), - [anon_sym_pub] = ACTIONS(560), - [anon_sym_return] = ACTIONS(560), - [anon_sym_static] = ACTIONS(560), - [anon_sym_struct] = ACTIONS(560), - [anon_sym_trait] = ACTIONS(560), - [anon_sym_type] = ACTIONS(560), - [anon_sym_union] = ACTIONS(560), - [anon_sym_unsafe] = ACTIONS(560), - [anon_sym_use] = ACTIONS(560), - [anon_sym_while] = ACTIONS(560), - [anon_sym_POUND] = ACTIONS(558), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_EQ] = ACTIONS(560), - [anon_sym_extern] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_COLON_COLON] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(558), - [anon_sym_DOT_DOT] = ACTIONS(560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(560), - [anon_sym_AMP_AMP] = ACTIONS(558), - [anon_sym_PIPE_PIPE] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(560), - [anon_sym_CARET] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(558), - [anon_sym_BANG_EQ] = ACTIONS(558), - [anon_sym_LT_EQ] = ACTIONS(558), - [anon_sym_GT_EQ] = ACTIONS(558), - [anon_sym_LT_LT] = ACTIONS(560), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(560), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_PLUS_EQ] = ACTIONS(558), - [anon_sym_DASH_EQ] = ACTIONS(558), - [anon_sym_STAR_EQ] = ACTIONS(558), - [anon_sym_SLASH_EQ] = ACTIONS(558), - [anon_sym_PERCENT_EQ] = ACTIONS(558), - [anon_sym_AMP_EQ] = ACTIONS(558), - [anon_sym_PIPE_EQ] = ACTIONS(558), - [anon_sym_CARET_EQ] = ACTIONS(558), - [anon_sym_LT_LT_EQ] = ACTIONS(558), - [anon_sym_GT_GT_EQ] = ACTIONS(558), - [anon_sym_yield] = ACTIONS(560), - [anon_sym_move] = ACTIONS(560), - [anon_sym_DOT] = ACTIONS(560), - [sym_integer_literal] = ACTIONS(558), - [aux_sym_string_literal_token1] = ACTIONS(558), - [sym_char_literal] = ACTIONS(558), - [anon_sym_true] = ACTIONS(560), - [anon_sym_false] = ACTIONS(560), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(560), - [sym_super] = ACTIONS(560), - [sym_crate] = ACTIONS(560), - [sym_metavariable] = ACTIONS(558), - [sym_raw_string_literal] = ACTIONS(558), - [sym_float_literal] = ACTIONS(558), - [sym_block_comment] = ACTIONS(3), - }, - [73] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1241), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [93] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1215), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -25156,12 +27129,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_DASH_GT] = ACTIONS(616), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(350), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -25179,159 +27153,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [74] = { - [ts_builtin_sym_end] = ACTIONS(562), - [sym_identifier] = ACTIONS(564), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_macro_rules_BANG] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_u8] = ACTIONS(564), - [anon_sym_i8] = ACTIONS(564), - [anon_sym_u16] = ACTIONS(564), - [anon_sym_i16] = ACTIONS(564), - [anon_sym_u32] = ACTIONS(564), - [anon_sym_i32] = ACTIONS(564), - [anon_sym_u64] = ACTIONS(564), - [anon_sym_i64] = ACTIONS(564), - [anon_sym_u128] = ACTIONS(564), - [anon_sym_i128] = ACTIONS(564), - [anon_sym_isize] = ACTIONS(564), - [anon_sym_usize] = ACTIONS(564), - [anon_sym_f32] = ACTIONS(564), - [anon_sym_f64] = ACTIONS(564), - [anon_sym_bool] = ACTIONS(564), - [anon_sym_str] = ACTIONS(564), - [anon_sym_char] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_as] = ACTIONS(568), - [anon_sym_async] = ACTIONS(564), - [anon_sym_break] = ACTIONS(564), - [anon_sym_const] = ACTIONS(564), - [anon_sym_continue] = ACTIONS(564), - [anon_sym_default] = ACTIONS(564), - [anon_sym_enum] = ACTIONS(564), - [anon_sym_fn] = ACTIONS(564), - [anon_sym_for] = ACTIONS(564), - [anon_sym_if] = ACTIONS(564), - [anon_sym_impl] = ACTIONS(564), - [anon_sym_let] = ACTIONS(564), - [anon_sym_loop] = ACTIONS(564), - [anon_sym_match] = ACTIONS(564), - [anon_sym_mod] = ACTIONS(564), - [anon_sym_pub] = ACTIONS(564), - [anon_sym_return] = ACTIONS(564), - [anon_sym_static] = ACTIONS(564), - [anon_sym_struct] = ACTIONS(564), - [anon_sym_trait] = ACTIONS(564), - [anon_sym_type] = ACTIONS(564), - [anon_sym_union] = ACTIONS(564), - [anon_sym_unsafe] = ACTIONS(564), - [anon_sym_use] = ACTIONS(564), - [anon_sym_while] = ACTIONS(564), - [anon_sym_POUND] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_extern] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(568), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(568), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_move] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(568), - [sym_integer_literal] = ACTIONS(562), - [aux_sym_string_literal_token1] = ACTIONS(562), - [sym_char_literal] = ACTIONS(562), - [anon_sym_true] = ACTIONS(564), - [anon_sym_false] = ACTIONS(564), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(564), - [sym_super] = ACTIONS(564), - [sym_crate] = ACTIONS(564), - [sym_metavariable] = ACTIONS(562), - [sym_raw_string_literal] = ACTIONS(562), - [sym_float_literal] = ACTIONS(562), - [sym_block_comment] = ACTIONS(3), - }, - [75] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1321), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [94] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1154), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25369,11 +27235,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(626), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DASH] = ACTIONS(308), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -25391,269 +27258,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [76] = { - [ts_builtin_sym_end] = ACTIONS(570), - [sym_identifier] = ACTIONS(572), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_macro_rules_BANG] = ACTIONS(570), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_u8] = ACTIONS(572), - [anon_sym_i8] = ACTIONS(572), - [anon_sym_u16] = ACTIONS(572), - [anon_sym_i16] = ACTIONS(572), - [anon_sym_u32] = ACTIONS(572), - [anon_sym_i32] = ACTIONS(572), - [anon_sym_u64] = ACTIONS(572), - [anon_sym_i64] = ACTIONS(572), - [anon_sym_u128] = ACTIONS(572), - [anon_sym_i128] = ACTIONS(572), - [anon_sym_isize] = ACTIONS(572), - [anon_sym_usize] = ACTIONS(572), - [anon_sym_f32] = ACTIONS(572), - [anon_sym_f64] = ACTIONS(572), - [anon_sym_bool] = ACTIONS(572), - [anon_sym_str] = ACTIONS(572), - [anon_sym_char] = ACTIONS(572), - [anon_sym_SQUOTE] = ACTIONS(572), - [anon_sym_as] = ACTIONS(568), - [anon_sym_async] = ACTIONS(572), - [anon_sym_break] = ACTIONS(572), - [anon_sym_const] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(572), - [anon_sym_default] = ACTIONS(572), - [anon_sym_enum] = ACTIONS(572), - [anon_sym_fn] = ACTIONS(572), - [anon_sym_for] = ACTIONS(572), - [anon_sym_if] = ACTIONS(572), - [anon_sym_impl] = ACTIONS(572), - [anon_sym_let] = ACTIONS(572), - [anon_sym_loop] = ACTIONS(572), - [anon_sym_match] = ACTIONS(572), - [anon_sym_mod] = ACTIONS(572), - [anon_sym_pub] = ACTIONS(572), - [anon_sym_return] = ACTIONS(572), - [anon_sym_static] = ACTIONS(572), - [anon_sym_struct] = ACTIONS(572), - [anon_sym_trait] = ACTIONS(572), - [anon_sym_type] = ACTIONS(572), - [anon_sym_union] = ACTIONS(572), - [anon_sym_unsafe] = ACTIONS(572), - [anon_sym_use] = ACTIONS(572), - [anon_sym_while] = ACTIONS(572), - [anon_sym_POUND] = ACTIONS(570), - [anon_sym_BANG] = ACTIONS(572), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_extern] = ACTIONS(572), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(572), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_yield] = ACTIONS(572), - [anon_sym_move] = ACTIONS(572), - [anon_sym_DOT] = ACTIONS(568), - [sym_integer_literal] = ACTIONS(570), - [aux_sym_string_literal_token1] = ACTIONS(570), - [sym_char_literal] = ACTIONS(570), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(572), - [sym_super] = ACTIONS(572), - [sym_crate] = ACTIONS(572), - [sym_metavariable] = ACTIONS(570), - [sym_raw_string_literal] = ACTIONS(570), - [sym_float_literal] = ACTIONS(570), - [sym_block_comment] = ACTIONS(3), - }, - [77] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1263), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [78] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1314), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [95] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1244), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(628), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -25709,163 +27363,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [79] = { - [ts_builtin_sym_end] = ACTIONS(574), - [sym_identifier] = ACTIONS(576), - [anon_sym_SEMI] = ACTIONS(574), - [anon_sym_macro_rules_BANG] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_RBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(574), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_STAR] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(574), - [anon_sym_u8] = ACTIONS(576), - [anon_sym_i8] = ACTIONS(576), - [anon_sym_u16] = ACTIONS(576), - [anon_sym_i16] = ACTIONS(576), - [anon_sym_u32] = ACTIONS(576), - [anon_sym_i32] = ACTIONS(576), - [anon_sym_u64] = ACTIONS(576), - [anon_sym_i64] = ACTIONS(576), - [anon_sym_u128] = ACTIONS(576), - [anon_sym_i128] = ACTIONS(576), - [anon_sym_isize] = ACTIONS(576), - [anon_sym_usize] = ACTIONS(576), - [anon_sym_f32] = ACTIONS(576), - [anon_sym_f64] = ACTIONS(576), - [anon_sym_bool] = ACTIONS(576), - [anon_sym_str] = ACTIONS(576), - [anon_sym_char] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(576), - [anon_sym_as] = ACTIONS(576), - [anon_sym_async] = ACTIONS(576), - [anon_sym_break] = ACTIONS(576), - [anon_sym_const] = ACTIONS(576), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_default] = ACTIONS(576), - [anon_sym_enum] = ACTIONS(576), - [anon_sym_fn] = ACTIONS(576), - [anon_sym_for] = ACTIONS(576), - [anon_sym_if] = ACTIONS(576), - [anon_sym_impl] = ACTIONS(576), - [anon_sym_let] = ACTIONS(576), - [anon_sym_loop] = ACTIONS(576), - [anon_sym_match] = ACTIONS(576), - [anon_sym_mod] = ACTIONS(576), - [anon_sym_pub] = ACTIONS(576), - [anon_sym_return] = ACTIONS(576), - [anon_sym_static] = ACTIONS(576), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_trait] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_union] = ACTIONS(576), - [anon_sym_unsafe] = ACTIONS(576), - [anon_sym_use] = ACTIONS(576), - [anon_sym_while] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(576), - [anon_sym_extern] = ACTIONS(576), - [anon_sym_LT] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(574), - [anon_sym_AMP] = ACTIONS(576), - [anon_sym_DOT_DOT_DOT] = ACTIONS(574), - [anon_sym_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_AMP_AMP] = ACTIONS(574), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_PIPE] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_EQ_EQ] = ACTIONS(574), - [anon_sym_BANG_EQ] = ACTIONS(574), - [anon_sym_LT_EQ] = ACTIONS(574), - [anon_sym_GT_EQ] = ACTIONS(574), - [anon_sym_LT_LT] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(576), - [anon_sym_SLASH] = ACTIONS(576), - [anon_sym_PERCENT] = ACTIONS(576), - [anon_sym_PLUS_EQ] = ACTIONS(574), - [anon_sym_DASH_EQ] = ACTIONS(574), - [anon_sym_STAR_EQ] = ACTIONS(574), - [anon_sym_SLASH_EQ] = ACTIONS(574), - [anon_sym_PERCENT_EQ] = ACTIONS(574), - [anon_sym_AMP_EQ] = ACTIONS(574), - [anon_sym_PIPE_EQ] = ACTIONS(574), - [anon_sym_CARET_EQ] = ACTIONS(574), - [anon_sym_LT_LT_EQ] = ACTIONS(574), - [anon_sym_GT_GT_EQ] = ACTIONS(574), - [anon_sym_yield] = ACTIONS(576), - [anon_sym_move] = ACTIONS(576), - [anon_sym_DOT] = ACTIONS(576), - [sym_integer_literal] = ACTIONS(574), - [aux_sym_string_literal_token1] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [anon_sym_true] = ACTIONS(576), - [anon_sym_false] = ACTIONS(576), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(576), - [sym_super] = ACTIONS(576), - [sym_crate] = ACTIONS(576), - [sym_metavariable] = ACTIONS(574), - [sym_raw_string_literal] = ACTIONS(574), - [sym_float_literal] = ACTIONS(574), - [sym_block_comment] = ACTIONS(3), - }, - [80] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1325), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [96] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1244), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(630), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -25921,53 +27468,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [81] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1327), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [97] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1236), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26027,53 +27572,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [82] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1317), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [98] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1211), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26133,53 +27676,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [83] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1328), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [99] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1292), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26239,164 +27780,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [84] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1258), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [100] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1133), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [85] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1270), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [101] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1244), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [102] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1250), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -26428,12 +28069,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -26451,164 +28092,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [86] = { - [ts_builtin_sym_end] = ACTIONS(578), - [sym_identifier] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(578), - [anon_sym_macro_rules_BANG] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u128] = ACTIONS(580), - [anon_sym_i128] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_str] = ACTIONS(580), - [anon_sym_char] = ACTIONS(580), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_as] = ACTIONS(580), - [anon_sym_async] = ACTIONS(580), - [anon_sym_break] = ACTIONS(580), - [anon_sym_const] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(580), - [anon_sym_default] = ACTIONS(580), - [anon_sym_enum] = ACTIONS(580), - [anon_sym_fn] = ACTIONS(580), - [anon_sym_for] = ACTIONS(580), - [anon_sym_if] = ACTIONS(580), - [anon_sym_impl] = ACTIONS(580), - [anon_sym_let] = ACTIONS(580), - [anon_sym_loop] = ACTIONS(580), - [anon_sym_match] = ACTIONS(580), - [anon_sym_mod] = ACTIONS(580), - [anon_sym_pub] = ACTIONS(580), - [anon_sym_return] = ACTIONS(580), - [anon_sym_static] = ACTIONS(580), - [anon_sym_struct] = ACTIONS(580), - [anon_sym_trait] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_union] = ACTIONS(580), - [anon_sym_unsafe] = ACTIONS(580), - [anon_sym_use] = ACTIONS(580), - [anon_sym_while] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_extern] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_COLON_COLON] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [anon_sym_DOT_DOT] = ACTIONS(580), - [anon_sym_DOT_DOT_EQ] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(578), - [anon_sym_BANG_EQ] = ACTIONS(578), - [anon_sym_LT_EQ] = ACTIONS(578), - [anon_sym_GT_EQ] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(580), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_PLUS_EQ] = ACTIONS(578), - [anon_sym_DASH_EQ] = ACTIONS(578), - [anon_sym_STAR_EQ] = ACTIONS(578), - [anon_sym_SLASH_EQ] = ACTIONS(578), - [anon_sym_PERCENT_EQ] = ACTIONS(578), - [anon_sym_AMP_EQ] = ACTIONS(578), - [anon_sym_PIPE_EQ] = ACTIONS(578), - [anon_sym_CARET_EQ] = ACTIONS(578), - [anon_sym_LT_LT_EQ] = ACTIONS(578), - [anon_sym_GT_GT_EQ] = ACTIONS(578), - [anon_sym_yield] = ACTIONS(580), - [anon_sym_move] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [sym_integer_literal] = ACTIONS(578), - [aux_sym_string_literal_token1] = ACTIONS(578), - [sym_char_literal] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(580), - [sym_super] = ACTIONS(580), - [sym_crate] = ACTIONS(580), - [sym_metavariable] = ACTIONS(578), - [sym_raw_string_literal] = ACTIONS(578), - [sym_float_literal] = ACTIONS(578), - [sym_block_comment] = ACTIONS(3), - }, - [87] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1253), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [103] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1246), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -26640,12 +28173,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -26663,53 +28196,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [88] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1255), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [104] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1271), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26769,53 +28300,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [89] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1311), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [105] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1260), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26875,265 +28404,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [90] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1225), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [106] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1261), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(226), + [sym_match_expression] = STATE(226), + [sym_while_expression] = STATE(226), + [sym_loop_expression] = STATE(226), + [sym_for_expression] = STATE(226), + [sym_const_block] = STATE(226), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2530), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(226), + [sym_async_block] = STATE(226), + [sym_block] = STATE(226), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(632), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), + [anon_sym_async] = ACTIONS(634), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(636), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(638), + [anon_sym_if] = ACTIONS(640), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(644), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [91] = { - [ts_builtin_sym_end] = ACTIONS(582), - [sym_identifier] = ACTIONS(584), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_macro_rules_BANG] = ACTIONS(582), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_QMARK] = ACTIONS(582), - [anon_sym_u8] = ACTIONS(584), - [anon_sym_i8] = ACTIONS(584), - [anon_sym_u16] = ACTIONS(584), - [anon_sym_i16] = ACTIONS(584), - [anon_sym_u32] = ACTIONS(584), - [anon_sym_i32] = ACTIONS(584), - [anon_sym_u64] = ACTIONS(584), - [anon_sym_i64] = ACTIONS(584), - [anon_sym_u128] = ACTIONS(584), - [anon_sym_i128] = ACTIONS(584), - [anon_sym_isize] = ACTIONS(584), - [anon_sym_usize] = ACTIONS(584), - [anon_sym_f32] = ACTIONS(584), - [anon_sym_f64] = ACTIONS(584), - [anon_sym_bool] = ACTIONS(584), - [anon_sym_str] = ACTIONS(584), - [anon_sym_char] = ACTIONS(584), - [anon_sym_SQUOTE] = ACTIONS(584), - [anon_sym_as] = ACTIONS(584), - [anon_sym_async] = ACTIONS(584), - [anon_sym_break] = ACTIONS(584), - [anon_sym_const] = ACTIONS(584), - [anon_sym_continue] = ACTIONS(584), - [anon_sym_default] = ACTIONS(584), - [anon_sym_enum] = ACTIONS(584), - [anon_sym_fn] = ACTIONS(584), - [anon_sym_for] = ACTIONS(584), - [anon_sym_if] = ACTIONS(584), - [anon_sym_impl] = ACTIONS(584), - [anon_sym_let] = ACTIONS(584), - [anon_sym_loop] = ACTIONS(584), - [anon_sym_match] = ACTIONS(584), - [anon_sym_mod] = ACTIONS(584), - [anon_sym_pub] = ACTIONS(584), - [anon_sym_return] = ACTIONS(584), - [anon_sym_static] = ACTIONS(584), - [anon_sym_struct] = ACTIONS(584), - [anon_sym_trait] = ACTIONS(584), - [anon_sym_type] = ACTIONS(584), - [anon_sym_union] = ACTIONS(584), - [anon_sym_unsafe] = ACTIONS(584), - [anon_sym_use] = ACTIONS(584), - [anon_sym_while] = ACTIONS(584), - [anon_sym_POUND] = ACTIONS(582), - [anon_sym_BANG] = ACTIONS(584), - [anon_sym_EQ] = ACTIONS(584), - [anon_sym_extern] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_COLON_COLON] = ACTIONS(582), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(582), - [anon_sym_DOT_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT_EQ] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(582), - [anon_sym_PIPE_PIPE] = ACTIONS(582), - [anon_sym_PIPE] = ACTIONS(584), - [anon_sym_CARET] = ACTIONS(584), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_LT_LT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_PLUS_EQ] = ACTIONS(582), - [anon_sym_DASH_EQ] = ACTIONS(582), - [anon_sym_STAR_EQ] = ACTIONS(582), - [anon_sym_SLASH_EQ] = ACTIONS(582), - [anon_sym_PERCENT_EQ] = ACTIONS(582), - [anon_sym_AMP_EQ] = ACTIONS(582), - [anon_sym_PIPE_EQ] = ACTIONS(582), - [anon_sym_CARET_EQ] = ACTIONS(582), - [anon_sym_LT_LT_EQ] = ACTIONS(582), - [anon_sym_GT_GT_EQ] = ACTIONS(582), - [anon_sym_yield] = ACTIONS(584), - [anon_sym_move] = ACTIONS(584), - [anon_sym_DOT] = ACTIONS(584), - [sym_integer_literal] = ACTIONS(582), - [aux_sym_string_literal_token1] = ACTIONS(582), - [sym_char_literal] = ACTIONS(582), - [anon_sym_true] = ACTIONS(584), - [anon_sym_false] = ACTIONS(584), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(584), - [sym_super] = ACTIONS(584), - [sym_crate] = ACTIONS(584), - [sym_metavariable] = ACTIONS(582), - [sym_raw_string_literal] = ACTIONS(582), - [sym_float_literal] = ACTIONS(582), - [sym_block_comment] = ACTIONS(3), - }, - [92] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1179), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [107] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1253), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27174,7 +28593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27193,53 +28612,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [93] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1294), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [108] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1147), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27280,7 +28697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(618), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27299,53 +28716,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [94] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1316), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [109] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1143), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27386,7 +28801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(618), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27405,53 +28820,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [95] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1298), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [110] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1140), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27492,7 +28905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(618), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27511,53 +28924,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [96] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1177), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [111] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1150), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27598,7 +29009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(618), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27617,53 +29028,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [97] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1333), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [112] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1135), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27704,7 +29113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(618), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27723,53 +29132,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [98] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1176), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [113] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1145), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27810,7 +29217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(618), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27829,53 +29236,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [99] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1175), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [114] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1097), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27916,7 +29321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27935,53 +29340,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [100] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1174), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [115] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1144), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28022,7 +29425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(618), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28041,53 +29444,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [101] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1330), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [116] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1142), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28128,7 +29529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(618), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28147,53 +29548,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [102] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1173), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [117] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1138), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28234,7 +29633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(618), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28253,53 +29652,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [103] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1309), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [118] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1274), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28359,53 +29756,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [104] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1233), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [119] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1149), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28446,7 +29841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(618), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28465,159 +29860,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [105] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1254), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [106] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [120] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1155), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28658,7 +29945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(618), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28677,56 +29964,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [107] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1171), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [121] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1219), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(226), + [sym_match_expression] = STATE(226), + [sym_while_expression] = STATE(226), + [sym_loop_expression] = STATE(226), + [sym_for_expression] = STATE(226), + [sym_const_block] = STATE(226), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2530), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(226), + [sym_async_block] = STATE(226), + [sym_block] = STATE(226), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(632), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -28747,24 +30032,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(634), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(636), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(638), + [anon_sym_if] = ACTIONS(640), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(644), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28783,53 +30068,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [108] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1304), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [122] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1262), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28889,53 +30172,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [109] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1168), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [123] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1270), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28976,7 +30257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28995,270 +30276,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [110] = { - [ts_builtin_sym_end] = ACTIONS(586), - [sym_identifier] = ACTIONS(588), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_macro_rules_BANG] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_RBRACE] = ACTIONS(586), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_STAR] = ACTIONS(588), - [anon_sym_QMARK] = ACTIONS(586), - [anon_sym_u8] = ACTIONS(588), - [anon_sym_i8] = ACTIONS(588), - [anon_sym_u16] = ACTIONS(588), - [anon_sym_i16] = ACTIONS(588), - [anon_sym_u32] = ACTIONS(588), - [anon_sym_i32] = ACTIONS(588), - [anon_sym_u64] = ACTIONS(588), - [anon_sym_i64] = ACTIONS(588), - [anon_sym_u128] = ACTIONS(588), - [anon_sym_i128] = ACTIONS(588), - [anon_sym_isize] = ACTIONS(588), - [anon_sym_usize] = ACTIONS(588), - [anon_sym_f32] = ACTIONS(588), - [anon_sym_f64] = ACTIONS(588), - [anon_sym_bool] = ACTIONS(588), - [anon_sym_str] = ACTIONS(588), - [anon_sym_char] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(588), - [anon_sym_as] = ACTIONS(588), - [anon_sym_async] = ACTIONS(588), - [anon_sym_break] = ACTIONS(588), - [anon_sym_const] = ACTIONS(588), - [anon_sym_continue] = ACTIONS(588), - [anon_sym_default] = ACTIONS(588), - [anon_sym_enum] = ACTIONS(588), - [anon_sym_fn] = ACTIONS(588), - [anon_sym_for] = ACTIONS(588), - [anon_sym_if] = ACTIONS(588), - [anon_sym_impl] = ACTIONS(588), - [anon_sym_let] = ACTIONS(588), - [anon_sym_loop] = ACTIONS(588), - [anon_sym_match] = ACTIONS(588), - [anon_sym_mod] = ACTIONS(588), - [anon_sym_pub] = ACTIONS(588), - [anon_sym_return] = ACTIONS(588), - [anon_sym_static] = ACTIONS(588), - [anon_sym_struct] = ACTIONS(588), - [anon_sym_trait] = ACTIONS(588), - [anon_sym_type] = ACTIONS(588), - [anon_sym_union] = ACTIONS(588), - [anon_sym_unsafe] = ACTIONS(588), - [anon_sym_use] = ACTIONS(588), - [anon_sym_while] = ACTIONS(588), - [anon_sym_POUND] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_EQ] = ACTIONS(588), - [anon_sym_extern] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(588), - [anon_sym_COLON_COLON] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(588), - [anon_sym_DOT_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(588), - [anon_sym_DOT_DOT_EQ] = ACTIONS(586), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(588), - [anon_sym_EQ_EQ] = ACTIONS(586), - [anon_sym_BANG_EQ] = ACTIONS(586), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(588), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(588), - [anon_sym_PERCENT] = ACTIONS(588), - [anon_sym_PLUS_EQ] = ACTIONS(586), - [anon_sym_DASH_EQ] = ACTIONS(586), - [anon_sym_STAR_EQ] = ACTIONS(586), - [anon_sym_SLASH_EQ] = ACTIONS(586), - [anon_sym_PERCENT_EQ] = ACTIONS(586), - [anon_sym_AMP_EQ] = ACTIONS(586), - [anon_sym_PIPE_EQ] = ACTIONS(586), - [anon_sym_CARET_EQ] = ACTIONS(586), - [anon_sym_LT_LT_EQ] = ACTIONS(586), - [anon_sym_GT_GT_EQ] = ACTIONS(586), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_move] = ACTIONS(588), - [anon_sym_DOT] = ACTIONS(588), - [sym_integer_literal] = ACTIONS(586), - [aux_sym_string_literal_token1] = ACTIONS(586), - [sym_char_literal] = ACTIONS(586), - [anon_sym_true] = ACTIONS(588), - [anon_sym_false] = ACTIONS(588), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(588), - [sym_super] = ACTIONS(588), - [sym_crate] = ACTIONS(588), - [sym_metavariable] = ACTIONS(586), - [sym_raw_string_literal] = ACTIONS(586), - [sym_float_literal] = ACTIONS(586), - [sym_block_comment] = ACTIONS(3), - }, - [111] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1302), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [124] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1245), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [112] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1286), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [125] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1230), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -29290,12 +30461,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -29313,56 +30484,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [113] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1166), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [126] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(242), + [sym_match_expression] = STATE(242), + [sym_while_expression] = STATE(242), + [sym_loop_expression] = STATE(242), + [sym_for_expression] = STATE(242), + [sym_const_block] = STATE(242), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2530), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(242), + [sym_async_block] = STATE(242), + [sym_block] = STATE(242), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(632), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -29383,24 +30552,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(634), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(636), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(638), + [anon_sym_if] = ACTIONS(640), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(644), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29419,53 +30588,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [114] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1329), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [127] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1221), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29525,159 +30692,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [115] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1320), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [128] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1207), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [116] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1165), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [129] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1234), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29718,7 +30881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29737,53 +30900,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [117] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1164), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [130] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1294), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29824,7 +30985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29843,53 +31004,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [118] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1322), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [131] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1097), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [132] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29949,159 +31212,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [119] = { - [ts_builtin_sym_end] = ACTIONS(590), - [sym_identifier] = ACTIONS(592), - [anon_sym_SEMI] = ACTIONS(590), - [anon_sym_macro_rules_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(590), - [anon_sym_RBRACE] = ACTIONS(590), - [anon_sym_LBRACK] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_STAR] = ACTIONS(592), - [anon_sym_QMARK] = ACTIONS(590), - [anon_sym_u8] = ACTIONS(592), - [anon_sym_i8] = ACTIONS(592), - [anon_sym_u16] = ACTIONS(592), - [anon_sym_i16] = ACTIONS(592), - [anon_sym_u32] = ACTIONS(592), - [anon_sym_i32] = ACTIONS(592), - [anon_sym_u64] = ACTIONS(592), - [anon_sym_i64] = ACTIONS(592), - [anon_sym_u128] = ACTIONS(592), - [anon_sym_i128] = ACTIONS(592), - [anon_sym_isize] = ACTIONS(592), - [anon_sym_usize] = ACTIONS(592), - [anon_sym_f32] = ACTIONS(592), - [anon_sym_f64] = ACTIONS(592), - [anon_sym_bool] = ACTIONS(592), - [anon_sym_str] = ACTIONS(592), - [anon_sym_char] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_as] = ACTIONS(592), - [anon_sym_async] = ACTIONS(592), - [anon_sym_break] = ACTIONS(592), - [anon_sym_const] = ACTIONS(592), - [anon_sym_continue] = ACTIONS(592), - [anon_sym_default] = ACTIONS(592), - [anon_sym_enum] = ACTIONS(592), - [anon_sym_fn] = ACTIONS(592), - [anon_sym_for] = ACTIONS(592), - [anon_sym_if] = ACTIONS(592), - [anon_sym_impl] = ACTIONS(592), - [anon_sym_let] = ACTIONS(592), - [anon_sym_loop] = ACTIONS(592), - [anon_sym_match] = ACTIONS(592), - [anon_sym_mod] = ACTIONS(592), - [anon_sym_pub] = ACTIONS(592), - [anon_sym_return] = ACTIONS(592), - [anon_sym_static] = ACTIONS(592), - [anon_sym_struct] = ACTIONS(592), - [anon_sym_trait] = ACTIONS(592), - [anon_sym_type] = ACTIONS(592), - [anon_sym_union] = ACTIONS(592), - [anon_sym_unsafe] = ACTIONS(592), - [anon_sym_use] = ACTIONS(592), - [anon_sym_while] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(592), - [anon_sym_extern] = ACTIONS(592), - [anon_sym_LT] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(590), - [anon_sym_AMP] = ACTIONS(592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(590), - [anon_sym_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_AMP_AMP] = ACTIONS(590), - [anon_sym_PIPE_PIPE] = ACTIONS(590), - [anon_sym_PIPE] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_EQ_EQ] = ACTIONS(590), - [anon_sym_BANG_EQ] = ACTIONS(590), - [anon_sym_LT_EQ] = ACTIONS(590), - [anon_sym_GT_EQ] = ACTIONS(590), - [anon_sym_LT_LT] = ACTIONS(592), - [anon_sym_GT_GT] = ACTIONS(592), - [anon_sym_SLASH] = ACTIONS(592), - [anon_sym_PERCENT] = ACTIONS(592), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_STAR_EQ] = ACTIONS(590), - [anon_sym_SLASH_EQ] = ACTIONS(590), - [anon_sym_PERCENT_EQ] = ACTIONS(590), - [anon_sym_AMP_EQ] = ACTIONS(590), - [anon_sym_PIPE_EQ] = ACTIONS(590), - [anon_sym_CARET_EQ] = ACTIONS(590), - [anon_sym_LT_LT_EQ] = ACTIONS(590), - [anon_sym_GT_GT_EQ] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_move] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(592), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(590), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(592), - [anon_sym_false] = ACTIONS(592), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(592), - [sym_super] = ACTIONS(592), - [sym_crate] = ACTIONS(592), - [sym_metavariable] = ACTIONS(590), - [sym_raw_string_literal] = ACTIONS(590), - [sym_float_literal] = ACTIONS(590), - [sym_block_comment] = ACTIONS(3), - }, - [120] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1264), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [133] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1265), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30161,159 +31316,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [121] = { - [ts_builtin_sym_end] = ACTIONS(594), - [sym_identifier] = ACTIONS(596), - [anon_sym_SEMI] = ACTIONS(594), - [anon_sym_macro_rules_BANG] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(594), - [anon_sym_RBRACE] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_STAR] = ACTIONS(596), - [anon_sym_QMARK] = ACTIONS(594), - [anon_sym_u8] = ACTIONS(596), - [anon_sym_i8] = ACTIONS(596), - [anon_sym_u16] = ACTIONS(596), - [anon_sym_i16] = ACTIONS(596), - [anon_sym_u32] = ACTIONS(596), - [anon_sym_i32] = ACTIONS(596), - [anon_sym_u64] = ACTIONS(596), - [anon_sym_i64] = ACTIONS(596), - [anon_sym_u128] = ACTIONS(596), - [anon_sym_i128] = ACTIONS(596), - [anon_sym_isize] = ACTIONS(596), - [anon_sym_usize] = ACTIONS(596), - [anon_sym_f32] = ACTIONS(596), - [anon_sym_f64] = ACTIONS(596), - [anon_sym_bool] = ACTIONS(596), - [anon_sym_str] = ACTIONS(596), - [anon_sym_char] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(596), - [anon_sym_as] = ACTIONS(596), - [anon_sym_async] = ACTIONS(596), - [anon_sym_break] = ACTIONS(596), - [anon_sym_const] = ACTIONS(596), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_default] = ACTIONS(596), - [anon_sym_enum] = ACTIONS(596), - [anon_sym_fn] = ACTIONS(596), - [anon_sym_for] = ACTIONS(596), - [anon_sym_if] = ACTIONS(596), - [anon_sym_impl] = ACTIONS(596), - [anon_sym_let] = ACTIONS(596), - [anon_sym_loop] = ACTIONS(596), - [anon_sym_match] = ACTIONS(596), - [anon_sym_mod] = ACTIONS(596), - [anon_sym_pub] = ACTIONS(596), - [anon_sym_return] = ACTIONS(596), - [anon_sym_static] = ACTIONS(596), - [anon_sym_struct] = ACTIONS(596), - [anon_sym_trait] = ACTIONS(596), - [anon_sym_type] = ACTIONS(596), - [anon_sym_union] = ACTIONS(596), - [anon_sym_unsafe] = ACTIONS(596), - [anon_sym_use] = ACTIONS(596), - [anon_sym_while] = ACTIONS(596), - [anon_sym_POUND] = ACTIONS(594), - [anon_sym_BANG] = ACTIONS(596), - [anon_sym_EQ] = ACTIONS(596), - [anon_sym_extern] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(596), - [anon_sym_GT] = ACTIONS(596), - [anon_sym_COLON_COLON] = ACTIONS(594), - [anon_sym_AMP] = ACTIONS(596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), - [anon_sym_DOT_DOT] = ACTIONS(596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(594), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_AMP_AMP] = ACTIONS(594), - [anon_sym_PIPE_PIPE] = ACTIONS(594), - [anon_sym_PIPE] = ACTIONS(596), - [anon_sym_CARET] = ACTIONS(596), - [anon_sym_EQ_EQ] = ACTIONS(594), - [anon_sym_BANG_EQ] = ACTIONS(594), - [anon_sym_LT_EQ] = ACTIONS(594), - [anon_sym_GT_EQ] = ACTIONS(594), - [anon_sym_LT_LT] = ACTIONS(596), - [anon_sym_GT_GT] = ACTIONS(596), - [anon_sym_SLASH] = ACTIONS(596), - [anon_sym_PERCENT] = ACTIONS(596), - [anon_sym_PLUS_EQ] = ACTIONS(594), - [anon_sym_DASH_EQ] = ACTIONS(594), - [anon_sym_STAR_EQ] = ACTIONS(594), - [anon_sym_SLASH_EQ] = ACTIONS(594), - [anon_sym_PERCENT_EQ] = ACTIONS(594), - [anon_sym_AMP_EQ] = ACTIONS(594), - [anon_sym_PIPE_EQ] = ACTIONS(594), - [anon_sym_CARET_EQ] = ACTIONS(594), - [anon_sym_LT_LT_EQ] = ACTIONS(594), - [anon_sym_GT_GT_EQ] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_move] = ACTIONS(596), - [anon_sym_DOT] = ACTIONS(596), - [sym_integer_literal] = ACTIONS(594), - [aux_sym_string_literal_token1] = ACTIONS(594), - [sym_char_literal] = ACTIONS(594), - [anon_sym_true] = ACTIONS(596), - [anon_sym_false] = ACTIONS(596), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(596), - [sym_super] = ACTIONS(596), - [sym_crate] = ACTIONS(596), - [sym_metavariable] = ACTIONS(594), - [sym_raw_string_literal] = ACTIONS(594), - [sym_float_literal] = ACTIONS(594), - [sym_block_comment] = ACTIONS(3), - }, - [122] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1305), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [134] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1285), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30373,265 +31420,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [123] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [124] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1274), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [125] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1318), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [135] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1280), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30691,164 +31524,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [126] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1223), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [136] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1290), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [127] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1275), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [137] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1196), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -30880,12 +31709,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -30903,162 +31732,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [128] = { - [ts_builtin_sym_end] = ACTIONS(598), - [sym_identifier] = ACTIONS(600), - [anon_sym_SEMI] = ACTIONS(598), - [anon_sym_macro_rules_BANG] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_RBRACE] = ACTIONS(598), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_PLUS] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_QMARK] = ACTIONS(598), - [anon_sym_u8] = ACTIONS(600), - [anon_sym_i8] = ACTIONS(600), - [anon_sym_u16] = ACTIONS(600), - [anon_sym_i16] = ACTIONS(600), - [anon_sym_u32] = ACTIONS(600), - [anon_sym_i32] = ACTIONS(600), - [anon_sym_u64] = ACTIONS(600), - [anon_sym_i64] = ACTIONS(600), - [anon_sym_u128] = ACTIONS(600), - [anon_sym_i128] = ACTIONS(600), - [anon_sym_isize] = ACTIONS(600), - [anon_sym_usize] = ACTIONS(600), - [anon_sym_f32] = ACTIONS(600), - [anon_sym_f64] = ACTIONS(600), - [anon_sym_bool] = ACTIONS(600), - [anon_sym_str] = ACTIONS(600), - [anon_sym_char] = ACTIONS(600), - [anon_sym_SQUOTE] = ACTIONS(600), - [anon_sym_as] = ACTIONS(600), - [anon_sym_async] = ACTIONS(600), - [anon_sym_break] = ACTIONS(600), - [anon_sym_const] = ACTIONS(600), - [anon_sym_continue] = ACTIONS(600), - [anon_sym_default] = ACTIONS(600), - [anon_sym_enum] = ACTIONS(600), - [anon_sym_fn] = ACTIONS(600), - [anon_sym_for] = ACTIONS(600), - [anon_sym_if] = ACTIONS(600), - [anon_sym_impl] = ACTIONS(600), - [anon_sym_let] = ACTIONS(600), - [anon_sym_loop] = ACTIONS(600), - [anon_sym_match] = ACTIONS(600), - [anon_sym_mod] = ACTIONS(600), - [anon_sym_pub] = ACTIONS(600), - [anon_sym_return] = ACTIONS(600), - [anon_sym_static] = ACTIONS(600), - [anon_sym_struct] = ACTIONS(600), - [anon_sym_trait] = ACTIONS(600), - [anon_sym_type] = ACTIONS(600), - [anon_sym_union] = ACTIONS(600), - [anon_sym_unsafe] = ACTIONS(600), - [anon_sym_use] = ACTIONS(600), - [anon_sym_while] = ACTIONS(600), - [anon_sym_POUND] = ACTIONS(598), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(600), - [anon_sym_extern] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(600), - [anon_sym_GT] = ACTIONS(600), - [anon_sym_COLON_COLON] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(600), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_DOT_DOT] = ACTIONS(600), - [anon_sym_DOT_DOT_EQ] = ACTIONS(598), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_PIPE] = ACTIONS(600), - [anon_sym_CARET] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(598), - [anon_sym_BANG_EQ] = ACTIONS(598), - [anon_sym_LT_EQ] = ACTIONS(598), - [anon_sym_GT_EQ] = ACTIONS(598), - [anon_sym_LT_LT] = ACTIONS(600), - [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_PERCENT] = ACTIONS(600), - [anon_sym_PLUS_EQ] = ACTIONS(598), - [anon_sym_DASH_EQ] = ACTIONS(598), - [anon_sym_STAR_EQ] = ACTIONS(598), - [anon_sym_SLASH_EQ] = ACTIONS(598), - [anon_sym_PERCENT_EQ] = ACTIONS(598), - [anon_sym_AMP_EQ] = ACTIONS(598), - [anon_sym_PIPE_EQ] = ACTIONS(598), - [anon_sym_CARET_EQ] = ACTIONS(598), - [anon_sym_LT_LT_EQ] = ACTIONS(598), - [anon_sym_GT_GT_EQ] = ACTIONS(598), - [anon_sym_yield] = ACTIONS(600), - [anon_sym_move] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(600), - [sym_integer_literal] = ACTIONS(598), - [aux_sym_string_literal_token1] = ACTIONS(598), - [sym_char_literal] = ACTIONS(598), - [anon_sym_true] = ACTIONS(600), - [anon_sym_false] = ACTIONS(600), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_crate] = ACTIONS(600), - [sym_metavariable] = ACTIONS(598), - [sym_raw_string_literal] = ACTIONS(598), - [sym_float_literal] = ACTIONS(598), - [sym_block_comment] = ACTIONS(3), - }, - [129] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1312), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(241), - [sym_if_let_expression] = STATE(241), - [sym_match_expression] = STATE(241), - [sym_while_expression] = STATE(241), - [sym_while_let_expression] = STATE(241), - [sym_loop_expression] = STATE(241), - [sym_for_expression] = STATE(241), - [sym_const_block] = STATE(241), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2554), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(241), - [sym_async_block] = STATE(241), - [sym_block] = STATE(241), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [138] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1282), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -31079,19 +31800,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(604), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(606), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(608), - [anon_sym_if] = ACTIONS(610), - [anon_sym_loop] = ACTIONS(612), - [anon_sym_match] = ACTIONS(614), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(616), - [anon_sym_while] = ACTIONS(618), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -31115,53 +31836,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [130] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1297), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [139] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1210), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31221,265 +31940,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [131] = { - [ts_builtin_sym_end] = ACTIONS(620), - [sym_identifier] = ACTIONS(622), - [anon_sym_SEMI] = ACTIONS(620), - [anon_sym_macro_rules_BANG] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(620), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(622), - [anon_sym_STAR] = ACTIONS(622), - [anon_sym_QMARK] = ACTIONS(620), - [anon_sym_u8] = ACTIONS(622), - [anon_sym_i8] = ACTIONS(622), - [anon_sym_u16] = ACTIONS(622), - [anon_sym_i16] = ACTIONS(622), - [anon_sym_u32] = ACTIONS(622), - [anon_sym_i32] = ACTIONS(622), - [anon_sym_u64] = ACTIONS(622), - [anon_sym_i64] = ACTIONS(622), - [anon_sym_u128] = ACTIONS(622), - [anon_sym_i128] = ACTIONS(622), - [anon_sym_isize] = ACTIONS(622), - [anon_sym_usize] = ACTIONS(622), - [anon_sym_f32] = ACTIONS(622), - [anon_sym_f64] = ACTIONS(622), - [anon_sym_bool] = ACTIONS(622), - [anon_sym_str] = ACTIONS(622), - [anon_sym_char] = ACTIONS(622), - [anon_sym_SQUOTE] = ACTIONS(622), - [anon_sym_as] = ACTIONS(622), - [anon_sym_async] = ACTIONS(622), - [anon_sym_break] = ACTIONS(622), - [anon_sym_const] = ACTIONS(622), - [anon_sym_continue] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), - [anon_sym_enum] = ACTIONS(622), - [anon_sym_fn] = ACTIONS(622), - [anon_sym_for] = ACTIONS(622), - [anon_sym_if] = ACTIONS(622), - [anon_sym_impl] = ACTIONS(622), - [anon_sym_let] = ACTIONS(622), - [anon_sym_loop] = ACTIONS(622), - [anon_sym_match] = ACTIONS(622), - [anon_sym_mod] = ACTIONS(622), - [anon_sym_pub] = ACTIONS(622), - [anon_sym_return] = ACTIONS(622), - [anon_sym_static] = ACTIONS(622), - [anon_sym_struct] = ACTIONS(622), - [anon_sym_trait] = ACTIONS(622), - [anon_sym_type] = ACTIONS(622), - [anon_sym_union] = ACTIONS(622), - [anon_sym_unsafe] = ACTIONS(622), - [anon_sym_use] = ACTIONS(622), - [anon_sym_while] = ACTIONS(622), - [anon_sym_POUND] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_EQ] = ACTIONS(622), - [anon_sym_extern] = ACTIONS(622), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(622), - [anon_sym_COLON_COLON] = ACTIONS(620), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_DOT_DOT_DOT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(622), - [anon_sym_DOT_DOT_EQ] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(622), - [anon_sym_AMP_AMP] = ACTIONS(620), - [anon_sym_PIPE_PIPE] = ACTIONS(620), - [anon_sym_PIPE] = ACTIONS(622), - [anon_sym_CARET] = ACTIONS(622), - [anon_sym_EQ_EQ] = ACTIONS(620), - [anon_sym_BANG_EQ] = ACTIONS(620), - [anon_sym_LT_EQ] = ACTIONS(620), - [anon_sym_GT_EQ] = ACTIONS(620), - [anon_sym_LT_LT] = ACTIONS(622), - [anon_sym_GT_GT] = ACTIONS(622), - [anon_sym_SLASH] = ACTIONS(622), - [anon_sym_PERCENT] = ACTIONS(622), - [anon_sym_PLUS_EQ] = ACTIONS(620), - [anon_sym_DASH_EQ] = ACTIONS(620), - [anon_sym_STAR_EQ] = ACTIONS(620), - [anon_sym_SLASH_EQ] = ACTIONS(620), - [anon_sym_PERCENT_EQ] = ACTIONS(620), - [anon_sym_AMP_EQ] = ACTIONS(620), - [anon_sym_PIPE_EQ] = ACTIONS(620), - [anon_sym_CARET_EQ] = ACTIONS(620), - [anon_sym_LT_LT_EQ] = ACTIONS(620), - [anon_sym_GT_GT_EQ] = ACTIONS(620), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_move] = ACTIONS(622), - [anon_sym_DOT] = ACTIONS(622), - [sym_integer_literal] = ACTIONS(620), - [aux_sym_string_literal_token1] = ACTIONS(620), - [sym_char_literal] = ACTIONS(620), - [anon_sym_true] = ACTIONS(622), - [anon_sym_false] = ACTIONS(622), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(622), - [sym_super] = ACTIONS(622), - [sym_crate] = ACTIONS(622), - [sym_metavariable] = ACTIONS(620), - [sym_raw_string_literal] = ACTIONS(620), - [sym_float_literal] = ACTIONS(620), - [sym_block_comment] = ACTIONS(3), - }, - [132] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1287), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [133] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1290), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [140] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31539,53 +32044,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [134] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1332), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [141] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1266), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31645,159 +32148,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [135] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [142] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [136] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1313), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [143] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31857,53 +32356,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [137] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1324), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [144] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1258), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31963,58 +32460,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [138] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1280), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [145] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1203), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -32046,12 +32541,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -32069,270 +32564,368 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [139] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1246), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [146] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1249), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(242), + [sym_match_expression] = STATE(242), + [sym_while_expression] = STATE(242), + [sym_loop_expression] = STATE(242), + [sym_for_expression] = STATE(242), + [sym_const_block] = STATE(242), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2530), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(242), + [sym_async_block] = STATE(242), + [sym_block] = STATE(242), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(634), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(636), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(638), + [anon_sym_if] = ACTIONS(640), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(644), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [147] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1257), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [140] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [148] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1206), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [141] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1292), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [149] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1097), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -32364,12 +32957,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -32387,689 +32980,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [142] = { - [ts_builtin_sym_end] = ACTIONS(624), - [sym_identifier] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(624), - [anon_sym_macro_rules_BANG] = ACTIONS(624), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_LBRACE] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(624), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_PLUS] = ACTIONS(626), - [anon_sym_STAR] = ACTIONS(626), - [anon_sym_QMARK] = ACTIONS(624), - [anon_sym_u8] = ACTIONS(626), - [anon_sym_i8] = ACTIONS(626), - [anon_sym_u16] = ACTIONS(626), - [anon_sym_i16] = ACTIONS(626), - [anon_sym_u32] = ACTIONS(626), - [anon_sym_i32] = ACTIONS(626), - [anon_sym_u64] = ACTIONS(626), - [anon_sym_i64] = ACTIONS(626), - [anon_sym_u128] = ACTIONS(626), - [anon_sym_i128] = ACTIONS(626), - [anon_sym_isize] = ACTIONS(626), - [anon_sym_usize] = ACTIONS(626), - [anon_sym_f32] = ACTIONS(626), - [anon_sym_f64] = ACTIONS(626), - [anon_sym_bool] = ACTIONS(626), - [anon_sym_str] = ACTIONS(626), - [anon_sym_char] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(626), - [anon_sym_as] = ACTIONS(626), - [anon_sym_async] = ACTIONS(626), - [anon_sym_break] = ACTIONS(626), - [anon_sym_const] = ACTIONS(626), - [anon_sym_continue] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_enum] = ACTIONS(626), - [anon_sym_fn] = ACTIONS(626), - [anon_sym_for] = ACTIONS(626), - [anon_sym_if] = ACTIONS(626), - [anon_sym_impl] = ACTIONS(626), - [anon_sym_let] = ACTIONS(626), - [anon_sym_loop] = ACTIONS(626), - [anon_sym_match] = ACTIONS(626), - [anon_sym_mod] = ACTIONS(626), - [anon_sym_pub] = ACTIONS(626), - [anon_sym_return] = ACTIONS(626), - [anon_sym_static] = ACTIONS(626), - [anon_sym_struct] = ACTIONS(626), - [anon_sym_trait] = ACTIONS(626), - [anon_sym_type] = ACTIONS(626), - [anon_sym_union] = ACTIONS(626), - [anon_sym_unsafe] = ACTIONS(626), - [anon_sym_use] = ACTIONS(626), - [anon_sym_while] = ACTIONS(626), - [anon_sym_POUND] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(626), - [anon_sym_EQ] = ACTIONS(626), - [anon_sym_extern] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_GT] = ACTIONS(626), - [anon_sym_COLON_COLON] = ACTIONS(624), - [anon_sym_AMP] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(624), - [anon_sym_DOT_DOT] = ACTIONS(626), - [anon_sym_DOT_DOT_EQ] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(626), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(626), - [anon_sym_CARET] = ACTIONS(626), - [anon_sym_EQ_EQ] = ACTIONS(624), - [anon_sym_BANG_EQ] = ACTIONS(624), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(626), - [anon_sym_GT_GT] = ACTIONS(626), - [anon_sym_SLASH] = ACTIONS(626), - [anon_sym_PERCENT] = ACTIONS(626), - [anon_sym_PLUS_EQ] = ACTIONS(624), - [anon_sym_DASH_EQ] = ACTIONS(624), - [anon_sym_STAR_EQ] = ACTIONS(624), - [anon_sym_SLASH_EQ] = ACTIONS(624), - [anon_sym_PERCENT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(624), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_move] = ACTIONS(626), - [anon_sym_DOT] = ACTIONS(626), - [sym_integer_literal] = ACTIONS(624), - [aux_sym_string_literal_token1] = ACTIONS(624), - [sym_char_literal] = ACTIONS(624), - [anon_sym_true] = ACTIONS(626), - [anon_sym_false] = ACTIONS(626), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_crate] = ACTIONS(626), - [sym_metavariable] = ACTIONS(624), - [sym_raw_string_literal] = ACTIONS(624), - [sym_float_literal] = ACTIONS(624), - [sym_block_comment] = ACTIONS(3), - }, - [143] = { - [ts_builtin_sym_end] = ACTIONS(628), - [sym_identifier] = ACTIONS(630), - [anon_sym_SEMI] = ACTIONS(628), - [anon_sym_macro_rules_BANG] = ACTIONS(628), - [anon_sym_LPAREN] = ACTIONS(628), - [anon_sym_LBRACE] = ACTIONS(628), - [anon_sym_RBRACE] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_PLUS] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(630), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_u8] = ACTIONS(630), - [anon_sym_i8] = ACTIONS(630), - [anon_sym_u16] = ACTIONS(630), - [anon_sym_i16] = ACTIONS(630), - [anon_sym_u32] = ACTIONS(630), - [anon_sym_i32] = ACTIONS(630), - [anon_sym_u64] = ACTIONS(630), - [anon_sym_i64] = ACTIONS(630), - [anon_sym_u128] = ACTIONS(630), - [anon_sym_i128] = ACTIONS(630), - [anon_sym_isize] = ACTIONS(630), - [anon_sym_usize] = ACTIONS(630), - [anon_sym_f32] = ACTIONS(630), - [anon_sym_f64] = ACTIONS(630), - [anon_sym_bool] = ACTIONS(630), - [anon_sym_str] = ACTIONS(630), - [anon_sym_char] = ACTIONS(630), - [anon_sym_SQUOTE] = ACTIONS(630), - [anon_sym_as] = ACTIONS(630), - [anon_sym_async] = ACTIONS(630), - [anon_sym_break] = ACTIONS(630), - [anon_sym_const] = ACTIONS(630), - [anon_sym_continue] = ACTIONS(630), - [anon_sym_default] = ACTIONS(630), - [anon_sym_enum] = ACTIONS(630), - [anon_sym_fn] = ACTIONS(630), - [anon_sym_for] = ACTIONS(630), - [anon_sym_if] = ACTIONS(630), - [anon_sym_impl] = ACTIONS(630), - [anon_sym_let] = ACTIONS(630), - [anon_sym_loop] = ACTIONS(630), - [anon_sym_match] = ACTIONS(630), - [anon_sym_mod] = ACTIONS(630), - [anon_sym_pub] = ACTIONS(630), - [anon_sym_return] = ACTIONS(630), - [anon_sym_static] = ACTIONS(630), - [anon_sym_struct] = ACTIONS(630), - [anon_sym_trait] = ACTIONS(630), - [anon_sym_type] = ACTIONS(630), - [anon_sym_union] = ACTIONS(630), - [anon_sym_unsafe] = ACTIONS(630), - [anon_sym_use] = ACTIONS(630), - [anon_sym_while] = ACTIONS(630), - [anon_sym_POUND] = ACTIONS(628), - [anon_sym_BANG] = ACTIONS(630), - [anon_sym_EQ] = ACTIONS(630), - [anon_sym_extern] = ACTIONS(630), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_GT] = ACTIONS(630), - [anon_sym_COLON_COLON] = ACTIONS(628), - [anon_sym_AMP] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [anon_sym_DOT_DOT] = ACTIONS(630), - [anon_sym_DOT_DOT_EQ] = ACTIONS(628), - [anon_sym_DASH] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(628), - [anon_sym_PIPE_PIPE] = ACTIONS(628), - [anon_sym_PIPE] = ACTIONS(630), - [anon_sym_CARET] = ACTIONS(630), - [anon_sym_EQ_EQ] = ACTIONS(628), - [anon_sym_BANG_EQ] = ACTIONS(628), - [anon_sym_LT_EQ] = ACTIONS(628), - [anon_sym_GT_EQ] = ACTIONS(628), - [anon_sym_LT_LT] = ACTIONS(630), - [anon_sym_GT_GT] = ACTIONS(630), - [anon_sym_SLASH] = ACTIONS(630), - [anon_sym_PERCENT] = ACTIONS(630), - [anon_sym_PLUS_EQ] = ACTIONS(628), - [anon_sym_DASH_EQ] = ACTIONS(628), - [anon_sym_STAR_EQ] = ACTIONS(628), - [anon_sym_SLASH_EQ] = ACTIONS(628), - [anon_sym_PERCENT_EQ] = ACTIONS(628), - [anon_sym_AMP_EQ] = ACTIONS(628), - [anon_sym_PIPE_EQ] = ACTIONS(628), - [anon_sym_CARET_EQ] = ACTIONS(628), - [anon_sym_LT_LT_EQ] = ACTIONS(628), - [anon_sym_GT_GT_EQ] = ACTIONS(628), - [anon_sym_yield] = ACTIONS(630), - [anon_sym_move] = ACTIONS(630), - [anon_sym_DOT] = ACTIONS(630), - [sym_integer_literal] = ACTIONS(628), - [aux_sym_string_literal_token1] = ACTIONS(628), - [sym_char_literal] = ACTIONS(628), - [anon_sym_true] = ACTIONS(630), - [anon_sym_false] = ACTIONS(630), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(630), - [sym_super] = ACTIONS(630), - [sym_crate] = ACTIONS(630), - [sym_metavariable] = ACTIONS(628), - [sym_raw_string_literal] = ACTIONS(628), - [sym_float_literal] = ACTIONS(628), - [sym_block_comment] = ACTIONS(3), - }, - [144] = { - [ts_builtin_sym_end] = ACTIONS(632), - [sym_identifier] = ACTIONS(634), - [anon_sym_SEMI] = ACTIONS(632), - [anon_sym_macro_rules_BANG] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_RBRACE] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(632), - [anon_sym_PLUS] = ACTIONS(634), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_u8] = ACTIONS(634), - [anon_sym_i8] = ACTIONS(634), - [anon_sym_u16] = ACTIONS(634), - [anon_sym_i16] = ACTIONS(634), - [anon_sym_u32] = ACTIONS(634), - [anon_sym_i32] = ACTIONS(634), - [anon_sym_u64] = ACTIONS(634), - [anon_sym_i64] = ACTIONS(634), - [anon_sym_u128] = ACTIONS(634), - [anon_sym_i128] = ACTIONS(634), - [anon_sym_isize] = ACTIONS(634), - [anon_sym_usize] = ACTIONS(634), - [anon_sym_f32] = ACTIONS(634), - [anon_sym_f64] = ACTIONS(634), - [anon_sym_bool] = ACTIONS(634), - [anon_sym_str] = ACTIONS(634), - [anon_sym_char] = ACTIONS(634), - [anon_sym_SQUOTE] = ACTIONS(634), - [anon_sym_as] = ACTIONS(634), - [anon_sym_async] = ACTIONS(634), - [anon_sym_break] = ACTIONS(634), - [anon_sym_const] = ACTIONS(634), - [anon_sym_continue] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_enum] = ACTIONS(634), - [anon_sym_fn] = ACTIONS(634), - [anon_sym_for] = ACTIONS(634), - [anon_sym_if] = ACTIONS(634), - [anon_sym_impl] = ACTIONS(634), - [anon_sym_let] = ACTIONS(634), - [anon_sym_loop] = ACTIONS(634), - [anon_sym_match] = ACTIONS(634), - [anon_sym_mod] = ACTIONS(634), - [anon_sym_pub] = ACTIONS(634), - [anon_sym_return] = ACTIONS(634), - [anon_sym_static] = ACTIONS(634), - [anon_sym_struct] = ACTIONS(634), - [anon_sym_trait] = ACTIONS(634), - [anon_sym_type] = ACTIONS(634), - [anon_sym_union] = ACTIONS(634), - [anon_sym_unsafe] = ACTIONS(634), - [anon_sym_use] = ACTIONS(634), - [anon_sym_while] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(632), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_EQ] = ACTIONS(634), - [anon_sym_extern] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(634), - [anon_sym_COLON_COLON] = ACTIONS(632), - [anon_sym_AMP] = ACTIONS(634), - [anon_sym_DOT_DOT_DOT] = ACTIONS(632), - [anon_sym_DOT_DOT] = ACTIONS(634), - [anon_sym_DOT_DOT_EQ] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(634), - [anon_sym_AMP_AMP] = ACTIONS(632), - [anon_sym_PIPE_PIPE] = ACTIONS(632), - [anon_sym_PIPE] = ACTIONS(634), - [anon_sym_CARET] = ACTIONS(634), - [anon_sym_EQ_EQ] = ACTIONS(632), - [anon_sym_BANG_EQ] = ACTIONS(632), - [anon_sym_LT_EQ] = ACTIONS(632), - [anon_sym_GT_EQ] = ACTIONS(632), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_SLASH] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(634), - [anon_sym_PLUS_EQ] = ACTIONS(632), - [anon_sym_DASH_EQ] = ACTIONS(632), - [anon_sym_STAR_EQ] = ACTIONS(632), - [anon_sym_SLASH_EQ] = ACTIONS(632), - [anon_sym_PERCENT_EQ] = ACTIONS(632), - [anon_sym_AMP_EQ] = ACTIONS(632), - [anon_sym_PIPE_EQ] = ACTIONS(632), - [anon_sym_CARET_EQ] = ACTIONS(632), - [anon_sym_LT_LT_EQ] = ACTIONS(632), - [anon_sym_GT_GT_EQ] = ACTIONS(632), - [anon_sym_yield] = ACTIONS(634), - [anon_sym_move] = ACTIONS(634), - [anon_sym_DOT] = ACTIONS(634), - [sym_integer_literal] = ACTIONS(632), - [aux_sym_string_literal_token1] = ACTIONS(632), - [sym_char_literal] = ACTIONS(632), - [anon_sym_true] = ACTIONS(634), - [anon_sym_false] = ACTIONS(634), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(634), - [sym_super] = ACTIONS(634), - [sym_crate] = ACTIONS(634), - [sym_metavariable] = ACTIONS(632), - [sym_raw_string_literal] = ACTIONS(632), - [sym_float_literal] = ACTIONS(632), - [sym_block_comment] = ACTIONS(3), - }, - [145] = { - [ts_builtin_sym_end] = ACTIONS(636), - [sym_identifier] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_macro_rules_BANG] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(638), - [anon_sym_STAR] = ACTIONS(638), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_SQUOTE] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_async] = ACTIONS(638), - [anon_sym_break] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_continue] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_enum] = ACTIONS(638), - [anon_sym_fn] = ACTIONS(638), - [anon_sym_for] = ACTIONS(638), - [anon_sym_if] = ACTIONS(638), - [anon_sym_impl] = ACTIONS(638), - [anon_sym_let] = ACTIONS(638), - [anon_sym_loop] = ACTIONS(638), - [anon_sym_match] = ACTIONS(638), - [anon_sym_mod] = ACTIONS(638), - [anon_sym_pub] = ACTIONS(638), - [anon_sym_return] = ACTIONS(638), - [anon_sym_static] = ACTIONS(638), - [anon_sym_struct] = ACTIONS(638), - [anon_sym_trait] = ACTIONS(638), - [anon_sym_type] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_unsafe] = ACTIONS(638), - [anon_sym_use] = ACTIONS(638), - [anon_sym_while] = ACTIONS(638), - [anon_sym_POUND] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_EQ] = ACTIONS(638), - [anon_sym_extern] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(638), - [anon_sym_COLON_COLON] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_DOT_DOT_DOT] = ACTIONS(636), - [anon_sym_DOT_DOT] = ACTIONS(638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(638), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(638), - [anon_sym_CARET] = ACTIONS(638), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_LT_LT] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_SLASH] = ACTIONS(638), - [anon_sym_PERCENT] = ACTIONS(638), - [anon_sym_PLUS_EQ] = ACTIONS(636), - [anon_sym_DASH_EQ] = ACTIONS(636), - [anon_sym_STAR_EQ] = ACTIONS(636), - [anon_sym_SLASH_EQ] = ACTIONS(636), - [anon_sym_PERCENT_EQ] = ACTIONS(636), - [anon_sym_AMP_EQ] = ACTIONS(636), - [anon_sym_PIPE_EQ] = ACTIONS(636), - [anon_sym_CARET_EQ] = ACTIONS(636), - [anon_sym_LT_LT_EQ] = ACTIONS(636), - [anon_sym_GT_GT_EQ] = ACTIONS(636), - [anon_sym_yield] = ACTIONS(638), - [anon_sym_move] = ACTIONS(638), - [anon_sym_DOT] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(636), - [aux_sym_string_literal_token1] = ACTIONS(636), - [sym_char_literal] = ACTIONS(636), - [anon_sym_true] = ACTIONS(638), - [anon_sym_false] = ACTIONS(638), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(636), - [sym_raw_string_literal] = ACTIONS(636), - [sym_float_literal] = ACTIONS(636), - [sym_block_comment] = ACTIONS(3), - }, - [146] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1295), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [150] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1209), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [147] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1230), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [151] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1276), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [148] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1303), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [152] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33129,58 +33292,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [149] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [153] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1222), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -33212,12 +33373,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -33235,56 +33396,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [150] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1331), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(233), - [sym_if_let_expression] = STATE(233), - [sym_match_expression] = STATE(233), - [sym_while_expression] = STATE(233), - [sym_while_let_expression] = STATE(233), - [sym_loop_expression] = STATE(233), - [sym_for_expression] = STATE(233), - [sym_const_block] = STATE(233), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2554), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(233), - [sym_async_block] = STATE(233), - [sym_block] = STATE(233), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [154] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1284), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -33305,19 +33464,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(604), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(606), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(608), - [anon_sym_if] = ACTIONS(610), - [anon_sym_loop] = ACTIONS(612), - [anon_sym_match] = ACTIONS(614), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(616), - [anon_sym_while] = ACTIONS(618), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -33341,53 +33500,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [151] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1326), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [155] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1263), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33447,482 +33604,576 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [152] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1232), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [156] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1278), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [153] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1293), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [157] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1267), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [154] = { - [ts_builtin_sym_end] = ACTIONS(640), - [sym_identifier] = ACTIONS(642), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_macro_rules_BANG] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(640), - [anon_sym_PLUS] = ACTIONS(642), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(642), - [anon_sym_i8] = ACTIONS(642), - [anon_sym_u16] = ACTIONS(642), - [anon_sym_i16] = ACTIONS(642), - [anon_sym_u32] = ACTIONS(642), - [anon_sym_i32] = ACTIONS(642), - [anon_sym_u64] = ACTIONS(642), - [anon_sym_i64] = ACTIONS(642), - [anon_sym_u128] = ACTIONS(642), - [anon_sym_i128] = ACTIONS(642), - [anon_sym_isize] = ACTIONS(642), - [anon_sym_usize] = ACTIONS(642), - [anon_sym_f32] = ACTIONS(642), - [anon_sym_f64] = ACTIONS(642), - [anon_sym_bool] = ACTIONS(642), - [anon_sym_str] = ACTIONS(642), - [anon_sym_char] = ACTIONS(642), - [anon_sym_SQUOTE] = ACTIONS(642), - [anon_sym_as] = ACTIONS(642), - [anon_sym_async] = ACTIONS(642), - [anon_sym_break] = ACTIONS(642), - [anon_sym_const] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(642), - [anon_sym_default] = ACTIONS(642), - [anon_sym_enum] = ACTIONS(642), - [anon_sym_fn] = ACTIONS(642), - [anon_sym_for] = ACTIONS(642), - [anon_sym_if] = ACTIONS(642), - [anon_sym_impl] = ACTIONS(642), - [anon_sym_let] = ACTIONS(642), - [anon_sym_loop] = ACTIONS(642), - [anon_sym_match] = ACTIONS(642), - [anon_sym_mod] = ACTIONS(642), - [anon_sym_pub] = ACTIONS(642), - [anon_sym_return] = ACTIONS(642), - [anon_sym_static] = ACTIONS(642), - [anon_sym_struct] = ACTIONS(642), - [anon_sym_trait] = ACTIONS(642), - [anon_sym_type] = ACTIONS(642), - [anon_sym_union] = ACTIONS(642), - [anon_sym_unsafe] = ACTIONS(642), - [anon_sym_use] = ACTIONS(642), - [anon_sym_while] = ACTIONS(642), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(642), - [anon_sym_EQ] = ACTIONS(642), - [anon_sym_extern] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(642), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_AMP] = ACTIONS(642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(642), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_CARET] = ACTIONS(642), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(642), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(642), - [anon_sym_move] = ACTIONS(642), - [anon_sym_DOT] = ACTIONS(642), - [sym_integer_literal] = ACTIONS(640), - [aux_sym_string_literal_token1] = ACTIONS(640), - [sym_char_literal] = ACTIONS(640), - [anon_sym_true] = ACTIONS(642), - [anon_sym_false] = ACTIONS(642), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(642), - [sym_super] = ACTIONS(642), - [sym_crate] = ACTIONS(642), - [sym_metavariable] = ACTIONS(640), - [sym_raw_string_literal] = ACTIONS(640), - [sym_float_literal] = ACTIONS(640), + [158] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1264), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [155] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1277), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), + [159] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1275), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [156] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1278), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [160] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1287), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [161] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1220), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -33954,12 +34205,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -33977,58 +34228,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [157] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1234), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [162] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1232), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -34060,12 +34309,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -34083,58 +34332,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [158] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1228), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [163] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1241), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -34166,12 +34413,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -34189,164 +34436,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [159] = { - [ts_builtin_sym_end] = ACTIONS(644), - [sym_identifier] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(644), - [anon_sym_macro_rules_BANG] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_u8] = ACTIONS(646), - [anon_sym_i8] = ACTIONS(646), - [anon_sym_u16] = ACTIONS(646), - [anon_sym_i16] = ACTIONS(646), - [anon_sym_u32] = ACTIONS(646), - [anon_sym_i32] = ACTIONS(646), - [anon_sym_u64] = ACTIONS(646), - [anon_sym_i64] = ACTIONS(646), - [anon_sym_u128] = ACTIONS(646), - [anon_sym_i128] = ACTIONS(646), - [anon_sym_isize] = ACTIONS(646), - [anon_sym_usize] = ACTIONS(646), - [anon_sym_f32] = ACTIONS(646), - [anon_sym_f64] = ACTIONS(646), - [anon_sym_bool] = ACTIONS(646), - [anon_sym_str] = ACTIONS(646), - [anon_sym_char] = ACTIONS(646), - [anon_sym_SQUOTE] = ACTIONS(646), - [anon_sym_as] = ACTIONS(646), - [anon_sym_async] = ACTIONS(646), - [anon_sym_break] = ACTIONS(646), - [anon_sym_const] = ACTIONS(646), - [anon_sym_continue] = ACTIONS(646), - [anon_sym_default] = ACTIONS(646), - [anon_sym_enum] = ACTIONS(646), - [anon_sym_fn] = ACTIONS(646), - [anon_sym_for] = ACTIONS(646), - [anon_sym_if] = ACTIONS(646), - [anon_sym_impl] = ACTIONS(646), - [anon_sym_let] = ACTIONS(646), - [anon_sym_loop] = ACTIONS(646), - [anon_sym_match] = ACTIONS(646), - [anon_sym_mod] = ACTIONS(646), - [anon_sym_pub] = ACTIONS(646), - [anon_sym_return] = ACTIONS(646), - [anon_sym_static] = ACTIONS(646), - [anon_sym_struct] = ACTIONS(646), - [anon_sym_trait] = ACTIONS(646), - [anon_sym_type] = ACTIONS(646), - [anon_sym_union] = ACTIONS(646), - [anon_sym_unsafe] = ACTIONS(646), - [anon_sym_use] = ACTIONS(646), - [anon_sym_while] = ACTIONS(646), - [anon_sym_POUND] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(646), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_extern] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(646), - [anon_sym_GT] = ACTIONS(646), - [anon_sym_COLON_COLON] = ACTIONS(644), - [anon_sym_AMP] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [anon_sym_DOT_DOT] = ACTIONS(646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(646), - [anon_sym_CARET] = ACTIONS(646), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_LT_LT] = ACTIONS(646), - [anon_sym_GT_GT] = ACTIONS(646), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(646), - [anon_sym_PLUS_EQ] = ACTIONS(644), - [anon_sym_DASH_EQ] = ACTIONS(644), - [anon_sym_STAR_EQ] = ACTIONS(644), - [anon_sym_SLASH_EQ] = ACTIONS(644), - [anon_sym_PERCENT_EQ] = ACTIONS(644), - [anon_sym_AMP_EQ] = ACTIONS(644), - [anon_sym_PIPE_EQ] = ACTIONS(644), - [anon_sym_CARET_EQ] = ACTIONS(644), - [anon_sym_LT_LT_EQ] = ACTIONS(644), - [anon_sym_GT_GT_EQ] = ACTIONS(644), - [anon_sym_yield] = ACTIONS(646), - [anon_sym_move] = ACTIONS(646), - [anon_sym_DOT] = ACTIONS(646), - [sym_integer_literal] = ACTIONS(644), - [aux_sym_string_literal_token1] = ACTIONS(644), - [sym_char_literal] = ACTIONS(644), - [anon_sym_true] = ACTIONS(646), - [anon_sym_false] = ACTIONS(646), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(646), - [sym_super] = ACTIONS(646), - [sym_crate] = ACTIONS(646), - [sym_metavariable] = ACTIONS(644), - [sym_raw_string_literal] = ACTIONS(644), - [sym_float_literal] = ACTIONS(644), - [sym_block_comment] = ACTIONS(3), - }, - [160] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1260), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [164] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1255), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -34378,12 +34517,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -34401,159 +34540,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [161] = { - [ts_builtin_sym_end] = ACTIONS(648), - [sym_identifier] = ACTIONS(650), - [anon_sym_SEMI] = ACTIONS(648), - [anon_sym_macro_rules_BANG] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_RBRACE] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(648), - [anon_sym_u8] = ACTIONS(650), - [anon_sym_i8] = ACTIONS(650), - [anon_sym_u16] = ACTIONS(650), - [anon_sym_i16] = ACTIONS(650), - [anon_sym_u32] = ACTIONS(650), - [anon_sym_i32] = ACTIONS(650), - [anon_sym_u64] = ACTIONS(650), - [anon_sym_i64] = ACTIONS(650), - [anon_sym_u128] = ACTIONS(650), - [anon_sym_i128] = ACTIONS(650), - [anon_sym_isize] = ACTIONS(650), - [anon_sym_usize] = ACTIONS(650), - [anon_sym_f32] = ACTIONS(650), - [anon_sym_f64] = ACTIONS(650), - [anon_sym_bool] = ACTIONS(650), - [anon_sym_str] = ACTIONS(650), - [anon_sym_char] = ACTIONS(650), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_as] = ACTIONS(650), - [anon_sym_async] = ACTIONS(650), - [anon_sym_break] = ACTIONS(650), - [anon_sym_const] = ACTIONS(650), - [anon_sym_continue] = ACTIONS(650), - [anon_sym_default] = ACTIONS(650), - [anon_sym_enum] = ACTIONS(650), - [anon_sym_fn] = ACTIONS(650), - [anon_sym_for] = ACTIONS(650), - [anon_sym_if] = ACTIONS(650), - [anon_sym_impl] = ACTIONS(650), - [anon_sym_let] = ACTIONS(650), - [anon_sym_loop] = ACTIONS(650), - [anon_sym_match] = ACTIONS(650), - [anon_sym_mod] = ACTIONS(650), - [anon_sym_pub] = ACTIONS(650), - [anon_sym_return] = ACTIONS(650), - [anon_sym_static] = ACTIONS(650), - [anon_sym_struct] = ACTIONS(650), - [anon_sym_trait] = ACTIONS(650), - [anon_sym_type] = ACTIONS(650), - [anon_sym_union] = ACTIONS(650), - [anon_sym_unsafe] = ACTIONS(650), - [anon_sym_use] = ACTIONS(650), - [anon_sym_while] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(648), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_extern] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_COLON_COLON] = ACTIONS(648), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(648), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_EQ] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(648), - [anon_sym_PIPE_PIPE] = ACTIONS(648), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(648), - [anon_sym_BANG_EQ] = ACTIONS(648), - [anon_sym_LT_EQ] = ACTIONS(648), - [anon_sym_GT_EQ] = ACTIONS(648), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_yield] = ACTIONS(650), - [anon_sym_move] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [sym_integer_literal] = ACTIONS(648), - [aux_sym_string_literal_token1] = ACTIONS(648), - [sym_char_literal] = ACTIONS(648), - [anon_sym_true] = ACTIONS(650), - [anon_sym_false] = ACTIONS(650), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(650), - [sym_super] = ACTIONS(650), - [sym_crate] = ACTIONS(650), - [sym_metavariable] = ACTIONS(648), - [sym_raw_string_literal] = ACTIONS(648), - [sym_float_literal] = ACTIONS(648), - [sym_block_comment] = ACTIONS(3), - }, - [162] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1122), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [165] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1256), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34594,7 +34625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -34613,265 +34644,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [163] = { - [ts_builtin_sym_end] = ACTIONS(652), - [sym_identifier] = ACTIONS(654), - [anon_sym_SEMI] = ACTIONS(652), - [anon_sym_macro_rules_BANG] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(654), - [anon_sym_i8] = ACTIONS(654), - [anon_sym_u16] = ACTIONS(654), - [anon_sym_i16] = ACTIONS(654), - [anon_sym_u32] = ACTIONS(654), - [anon_sym_i32] = ACTIONS(654), - [anon_sym_u64] = ACTIONS(654), - [anon_sym_i64] = ACTIONS(654), - [anon_sym_u128] = ACTIONS(654), - [anon_sym_i128] = ACTIONS(654), - [anon_sym_isize] = ACTIONS(654), - [anon_sym_usize] = ACTIONS(654), - [anon_sym_f32] = ACTIONS(654), - [anon_sym_f64] = ACTIONS(654), - [anon_sym_bool] = ACTIONS(654), - [anon_sym_str] = ACTIONS(654), - [anon_sym_char] = ACTIONS(654), - [anon_sym_SQUOTE] = ACTIONS(654), - [anon_sym_as] = ACTIONS(654), - [anon_sym_async] = ACTIONS(654), - [anon_sym_break] = ACTIONS(654), - [anon_sym_const] = ACTIONS(654), - [anon_sym_continue] = ACTIONS(654), - [anon_sym_default] = ACTIONS(654), - [anon_sym_enum] = ACTIONS(654), - [anon_sym_fn] = ACTIONS(654), - [anon_sym_for] = ACTIONS(654), - [anon_sym_if] = ACTIONS(654), - [anon_sym_impl] = ACTIONS(654), - [anon_sym_let] = ACTIONS(654), - [anon_sym_loop] = ACTIONS(654), - [anon_sym_match] = ACTIONS(654), - [anon_sym_mod] = ACTIONS(654), - [anon_sym_pub] = ACTIONS(654), - [anon_sym_return] = ACTIONS(654), - [anon_sym_static] = ACTIONS(654), - [anon_sym_struct] = ACTIONS(654), - [anon_sym_trait] = ACTIONS(654), - [anon_sym_type] = ACTIONS(654), - [anon_sym_union] = ACTIONS(654), - [anon_sym_unsafe] = ACTIONS(654), - [anon_sym_use] = ACTIONS(654), - [anon_sym_while] = ACTIONS(654), - [anon_sym_POUND] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_extern] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_COLON_COLON] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(652), - [anon_sym_DOT_DOT] = ACTIONS(654), - [anon_sym_DOT_DOT_EQ] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_PERCENT] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_SLASH_EQ] = ACTIONS(652), - [anon_sym_PERCENT_EQ] = ACTIONS(652), - [anon_sym_AMP_EQ] = ACTIONS(652), - [anon_sym_PIPE_EQ] = ACTIONS(652), - [anon_sym_CARET_EQ] = ACTIONS(652), - [anon_sym_LT_LT_EQ] = ACTIONS(652), - [anon_sym_GT_GT_EQ] = ACTIONS(652), - [anon_sym_yield] = ACTIONS(654), - [anon_sym_move] = ACTIONS(654), - [anon_sym_DOT] = ACTIONS(654), - [sym_integer_literal] = ACTIONS(652), - [aux_sym_string_literal_token1] = ACTIONS(652), - [sym_char_literal] = ACTIONS(652), - [anon_sym_true] = ACTIONS(654), - [anon_sym_false] = ACTIONS(654), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(654), - [sym_super] = ACTIONS(654), - [sym_crate] = ACTIONS(654), - [sym_metavariable] = ACTIONS(652), - [sym_raw_string_literal] = ACTIONS(652), - [sym_float_literal] = ACTIONS(652), + [166] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1254), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [164] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1262), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(233), - [sym_if_let_expression] = STATE(233), - [sym_match_expression] = STATE(233), - [sym_while_expression] = STATE(233), - [sym_while_let_expression] = STATE(233), - [sym_loop_expression] = STATE(233), - [sym_for_expression] = STATE(233), - [sym_const_block] = STATE(233), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2554), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(233), - [sym_async_block] = STATE(233), - [sym_block] = STATE(233), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [167] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1247), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(604), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(606), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(608), - [anon_sym_if] = ACTIONS(610), - [anon_sym_loop] = ACTIONS(612), - [anon_sym_match] = ACTIONS(614), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(616), - [anon_sym_while] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [165] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1250), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [168] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1152), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34912,7 +34937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(618), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -34931,265 +34956,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [166] = { - [ts_builtin_sym_end] = ACTIONS(656), - [sym_identifier] = ACTIONS(658), - [anon_sym_SEMI] = ACTIONS(656), - [anon_sym_macro_rules_BANG] = ACTIONS(656), - [anon_sym_LPAREN] = ACTIONS(656), - [anon_sym_LBRACE] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(656), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_QMARK] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(658), - [anon_sym_i8] = ACTIONS(658), - [anon_sym_u16] = ACTIONS(658), - [anon_sym_i16] = ACTIONS(658), - [anon_sym_u32] = ACTIONS(658), - [anon_sym_i32] = ACTIONS(658), - [anon_sym_u64] = ACTIONS(658), - [anon_sym_i64] = ACTIONS(658), - [anon_sym_u128] = ACTIONS(658), - [anon_sym_i128] = ACTIONS(658), - [anon_sym_isize] = ACTIONS(658), - [anon_sym_usize] = ACTIONS(658), - [anon_sym_f32] = ACTIONS(658), - [anon_sym_f64] = ACTIONS(658), - [anon_sym_bool] = ACTIONS(658), - [anon_sym_str] = ACTIONS(658), - [anon_sym_char] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_as] = ACTIONS(658), - [anon_sym_async] = ACTIONS(658), - [anon_sym_break] = ACTIONS(658), - [anon_sym_const] = ACTIONS(658), - [anon_sym_continue] = ACTIONS(658), - [anon_sym_default] = ACTIONS(658), - [anon_sym_enum] = ACTIONS(658), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(658), - [anon_sym_if] = ACTIONS(658), - [anon_sym_impl] = ACTIONS(658), - [anon_sym_let] = ACTIONS(658), - [anon_sym_loop] = ACTIONS(658), - [anon_sym_match] = ACTIONS(658), - [anon_sym_mod] = ACTIONS(658), - [anon_sym_pub] = ACTIONS(658), - [anon_sym_return] = ACTIONS(658), - [anon_sym_static] = ACTIONS(658), - [anon_sym_struct] = ACTIONS(658), - [anon_sym_trait] = ACTIONS(658), - [anon_sym_type] = ACTIONS(658), - [anon_sym_union] = ACTIONS(658), - [anon_sym_unsafe] = ACTIONS(658), - [anon_sym_use] = ACTIONS(658), - [anon_sym_while] = ACTIONS(658), - [anon_sym_POUND] = ACTIONS(656), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_EQ] = ACTIONS(658), - [anon_sym_extern] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_COLON_COLON] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_DOT_DOT_EQ] = ACTIONS(656), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_AMP_AMP] = ACTIONS(656), - [anon_sym_PIPE_PIPE] = ACTIONS(656), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(656), - [anon_sym_BANG_EQ] = ACTIONS(656), - [anon_sym_LT_EQ] = ACTIONS(656), - [anon_sym_GT_EQ] = ACTIONS(656), - [anon_sym_LT_LT] = ACTIONS(658), - [anon_sym_GT_GT] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_PERCENT] = ACTIONS(658), - [anon_sym_PLUS_EQ] = ACTIONS(656), - [anon_sym_DASH_EQ] = ACTIONS(656), - [anon_sym_STAR_EQ] = ACTIONS(656), - [anon_sym_SLASH_EQ] = ACTIONS(656), - [anon_sym_PERCENT_EQ] = ACTIONS(656), - [anon_sym_AMP_EQ] = ACTIONS(656), - [anon_sym_PIPE_EQ] = ACTIONS(656), - [anon_sym_CARET_EQ] = ACTIONS(656), - [anon_sym_LT_LT_EQ] = ACTIONS(656), - [anon_sym_GT_GT_EQ] = ACTIONS(656), - [anon_sym_yield] = ACTIONS(658), - [anon_sym_move] = ACTIONS(658), - [anon_sym_DOT] = ACTIONS(658), - [sym_integer_literal] = ACTIONS(656), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(656), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(658), - [sym_super] = ACTIONS(658), - [sym_crate] = ACTIONS(658), - [sym_metavariable] = ACTIONS(656), - [sym_raw_string_literal] = ACTIONS(656), - [sym_float_literal] = ACTIONS(656), - [sym_block_comment] = ACTIONS(3), - }, - [167] = { - [ts_builtin_sym_end] = ACTIONS(660), - [sym_identifier] = ACTIONS(662), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_macro_rules_BANG] = ACTIONS(660), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_LBRACE] = ACTIONS(660), - [anon_sym_RBRACE] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(660), - [anon_sym_u8] = ACTIONS(662), - [anon_sym_i8] = ACTIONS(662), - [anon_sym_u16] = ACTIONS(662), - [anon_sym_i16] = ACTIONS(662), - [anon_sym_u32] = ACTIONS(662), - [anon_sym_i32] = ACTIONS(662), - [anon_sym_u64] = ACTIONS(662), - [anon_sym_i64] = ACTIONS(662), - [anon_sym_u128] = ACTIONS(662), - [anon_sym_i128] = ACTIONS(662), - [anon_sym_isize] = ACTIONS(662), - [anon_sym_usize] = ACTIONS(662), - [anon_sym_f32] = ACTIONS(662), - [anon_sym_f64] = ACTIONS(662), - [anon_sym_bool] = ACTIONS(662), - [anon_sym_str] = ACTIONS(662), - [anon_sym_char] = ACTIONS(662), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_as] = ACTIONS(662), - [anon_sym_async] = ACTIONS(662), - [anon_sym_break] = ACTIONS(662), - [anon_sym_const] = ACTIONS(662), - [anon_sym_continue] = ACTIONS(662), - [anon_sym_default] = ACTIONS(662), - [anon_sym_enum] = ACTIONS(662), - [anon_sym_fn] = ACTIONS(662), - [anon_sym_for] = ACTIONS(662), - [anon_sym_if] = ACTIONS(662), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_let] = ACTIONS(662), - [anon_sym_loop] = ACTIONS(662), - [anon_sym_match] = ACTIONS(662), - [anon_sym_mod] = ACTIONS(662), - [anon_sym_pub] = ACTIONS(662), - [anon_sym_return] = ACTIONS(662), - [anon_sym_static] = ACTIONS(662), - [anon_sym_struct] = ACTIONS(662), - [anon_sym_trait] = ACTIONS(662), - [anon_sym_type] = ACTIONS(662), - [anon_sym_union] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(662), - [anon_sym_use] = ACTIONS(662), - [anon_sym_while] = ACTIONS(662), - [anon_sym_POUND] = ACTIONS(660), - [anon_sym_BANG] = ACTIONS(662), - [anon_sym_EQ] = ACTIONS(662), - [anon_sym_extern] = ACTIONS(662), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_COLON_COLON] = ACTIONS(660), - [anon_sym_AMP] = ACTIONS(662), - [anon_sym_DOT_DOT_DOT] = ACTIONS(660), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_DOT_DOT_EQ] = ACTIONS(660), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_AMP_AMP] = ACTIONS(660), - [anon_sym_PIPE_PIPE] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(662), - [anon_sym_CARET] = ACTIONS(662), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT_EQ] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(660), - [anon_sym_LT_LT] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(662), - [anon_sym_SLASH] = ACTIONS(662), - [anon_sym_PERCENT] = ACTIONS(662), - [anon_sym_PLUS_EQ] = ACTIONS(660), - [anon_sym_DASH_EQ] = ACTIONS(660), - [anon_sym_STAR_EQ] = ACTIONS(660), - [anon_sym_SLASH_EQ] = ACTIONS(660), - [anon_sym_PERCENT_EQ] = ACTIONS(660), - [anon_sym_AMP_EQ] = ACTIONS(660), - [anon_sym_PIPE_EQ] = ACTIONS(660), - [anon_sym_CARET_EQ] = ACTIONS(660), - [anon_sym_LT_LT_EQ] = ACTIONS(660), - [anon_sym_GT_GT_EQ] = ACTIONS(660), - [anon_sym_yield] = ACTIONS(662), - [anon_sym_move] = ACTIONS(662), - [anon_sym_DOT] = ACTIONS(662), - [sym_integer_literal] = ACTIONS(660), - [aux_sym_string_literal_token1] = ACTIONS(660), - [sym_char_literal] = ACTIONS(660), - [anon_sym_true] = ACTIONS(662), - [anon_sym_false] = ACTIONS(662), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(662), - [sym_super] = ACTIONS(662), - [sym_crate] = ACTIONS(662), - [sym_metavariable] = ACTIONS(660), - [sym_raw_string_literal] = ACTIONS(660), - [sym_float_literal] = ACTIONS(660), - [sym_block_comment] = ACTIONS(3), - }, - [168] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1323), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [169] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1097), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35230,7 +35041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(618), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -35249,694 +35060,472 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [169] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1300), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [170] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1242), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [170] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1243), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [171] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1315), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1231), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [172] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1159), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1229), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [173] = { - [ts_builtin_sym_end] = ACTIONS(664), - [sym_identifier] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(664), - [anon_sym_macro_rules_BANG] = ACTIONS(664), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(664), - [anon_sym_RBRACE] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_SQUOTE] = ACTIONS(666), - [anon_sym_as] = ACTIONS(666), - [anon_sym_async] = ACTIONS(666), - [anon_sym_break] = ACTIONS(666), - [anon_sym_const] = ACTIONS(666), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_default] = ACTIONS(666), - [anon_sym_enum] = ACTIONS(666), - [anon_sym_fn] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_if] = ACTIONS(666), - [anon_sym_impl] = ACTIONS(666), - [anon_sym_let] = ACTIONS(666), - [anon_sym_loop] = ACTIONS(666), - [anon_sym_match] = ACTIONS(666), - [anon_sym_mod] = ACTIONS(666), - [anon_sym_pub] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_static] = ACTIONS(666), - [anon_sym_struct] = ACTIONS(666), - [anon_sym_trait] = ACTIONS(666), - [anon_sym_type] = ACTIONS(666), - [anon_sym_union] = ACTIONS(666), - [anon_sym_unsafe] = ACTIONS(666), - [anon_sym_use] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(666), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_extern] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_COLON_COLON] = ACTIONS(664), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(664), - [anon_sym_DOT_DOT] = ACTIONS(666), - [anon_sym_DOT_DOT_EQ] = ACTIONS(664), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS_EQ] = ACTIONS(664), - [anon_sym_DASH_EQ] = ACTIONS(664), - [anon_sym_STAR_EQ] = ACTIONS(664), - [anon_sym_SLASH_EQ] = ACTIONS(664), - [anon_sym_PERCENT_EQ] = ACTIONS(664), - [anon_sym_AMP_EQ] = ACTIONS(664), - [anon_sym_PIPE_EQ] = ACTIONS(664), - [anon_sym_CARET_EQ] = ACTIONS(664), - [anon_sym_LT_LT_EQ] = ACTIONS(664), - [anon_sym_GT_GT_EQ] = ACTIONS(664), - [anon_sym_yield] = ACTIONS(666), - [anon_sym_move] = ACTIONS(666), - [anon_sym_DOT] = ACTIONS(666), - [sym_integer_literal] = ACTIONS(664), - [aux_sym_string_literal_token1] = ACTIONS(664), - [sym_char_literal] = ACTIONS(664), - [anon_sym_true] = ACTIONS(666), - [anon_sym_false] = ACTIONS(666), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(666), - [sym_super] = ACTIONS(666), - [sym_crate] = ACTIONS(666), - [sym_metavariable] = ACTIONS(664), - [sym_raw_string_literal] = ACTIONS(664), - [sym_float_literal] = ACTIONS(664), - [sym_block_comment] = ACTIONS(3), - }, - [174] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1248), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1233), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [175] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1227), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [174] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1228), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -35968,12 +35557,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -35991,159 +35580,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [176] = { - [ts_builtin_sym_end] = ACTIONS(668), - [sym_identifier] = ACTIONS(670), - [anon_sym_SEMI] = ACTIONS(668), - [anon_sym_macro_rules_BANG] = ACTIONS(668), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(668), - [anon_sym_RBRACE] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(668), - [anon_sym_u8] = ACTIONS(670), - [anon_sym_i8] = ACTIONS(670), - [anon_sym_u16] = ACTIONS(670), - [anon_sym_i16] = ACTIONS(670), - [anon_sym_u32] = ACTIONS(670), - [anon_sym_i32] = ACTIONS(670), - [anon_sym_u64] = ACTIONS(670), - [anon_sym_i64] = ACTIONS(670), - [anon_sym_u128] = ACTIONS(670), - [anon_sym_i128] = ACTIONS(670), - [anon_sym_isize] = ACTIONS(670), - [anon_sym_usize] = ACTIONS(670), - [anon_sym_f32] = ACTIONS(670), - [anon_sym_f64] = ACTIONS(670), - [anon_sym_bool] = ACTIONS(670), - [anon_sym_str] = ACTIONS(670), - [anon_sym_char] = ACTIONS(670), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_as] = ACTIONS(670), - [anon_sym_async] = ACTIONS(670), - [anon_sym_break] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_enum] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(670), - [anon_sym_if] = ACTIONS(670), - [anon_sym_impl] = ACTIONS(670), - [anon_sym_let] = ACTIONS(670), - [anon_sym_loop] = ACTIONS(670), - [anon_sym_match] = ACTIONS(670), - [anon_sym_mod] = ACTIONS(670), - [anon_sym_pub] = ACTIONS(670), - [anon_sym_return] = ACTIONS(670), - [anon_sym_static] = ACTIONS(670), - [anon_sym_struct] = ACTIONS(670), - [anon_sym_trait] = ACTIONS(670), - [anon_sym_type] = ACTIONS(670), - [anon_sym_union] = ACTIONS(670), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_use] = ACTIONS(670), - [anon_sym_while] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(670), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_extern] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_COLON_COLON] = ACTIONS(668), - [anon_sym_AMP] = ACTIONS(670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [anon_sym_DOT_DOT] = ACTIONS(670), - [anon_sym_DOT_DOT_EQ] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_AMP_AMP] = ACTIONS(668), - [anon_sym_PIPE_PIPE] = ACTIONS(668), - [anon_sym_PIPE] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_EQ_EQ] = ACTIONS(668), - [anon_sym_BANG_EQ] = ACTIONS(668), - [anon_sym_LT_EQ] = ACTIONS(668), - [anon_sym_GT_EQ] = ACTIONS(668), - [anon_sym_LT_LT] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_PERCENT] = ACTIONS(670), - [anon_sym_PLUS_EQ] = ACTIONS(668), - [anon_sym_DASH_EQ] = ACTIONS(668), - [anon_sym_STAR_EQ] = ACTIONS(668), - [anon_sym_SLASH_EQ] = ACTIONS(668), - [anon_sym_PERCENT_EQ] = ACTIONS(668), - [anon_sym_AMP_EQ] = ACTIONS(668), - [anon_sym_PIPE_EQ] = ACTIONS(668), - [anon_sym_CARET_EQ] = ACTIONS(668), - [anon_sym_LT_LT_EQ] = ACTIONS(668), - [anon_sym_GT_GT_EQ] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(670), - [anon_sym_move] = ACTIONS(670), - [anon_sym_DOT] = ACTIONS(670), - [sym_integer_literal] = ACTIONS(668), - [aux_sym_string_literal_token1] = ACTIONS(668), - [sym_char_literal] = ACTIONS(668), - [anon_sym_true] = ACTIONS(670), - [anon_sym_false] = ACTIONS(670), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(670), - [sym_super] = ACTIONS(670), - [sym_crate] = ACTIONS(670), - [sym_metavariable] = ACTIONS(668), - [sym_raw_string_literal] = ACTIONS(668), - [sym_float_literal] = ACTIONS(668), - [sym_block_comment] = ACTIONS(3), - }, - [177] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1307), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [175] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1974), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1281), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -36203,58 +35684,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [178] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1226), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [176] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -36286,12 +35765,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -36309,58 +35788,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [179] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1224), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), + [177] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1240), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -36392,12 +35869,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -36415,2886 +35892,3202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [180] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1266), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(241), - [sym_if_let_expression] = STATE(241), - [sym_match_expression] = STATE(241), - [sym_while_expression] = STATE(241), - [sym_while_let_expression] = STATE(241), - [sym_loop_expression] = STATE(241), - [sym_for_expression] = STATE(241), - [sym_const_block] = STATE(241), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2554), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(241), - [sym_async_block] = STATE(241), - [sym_block] = STATE(241), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [178] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1286), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(604), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(606), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(608), - [anon_sym_if] = ACTIONS(610), - [anon_sym_loop] = ACTIONS(612), - [anon_sym_match] = ACTIONS(614), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(616), - [anon_sym_while] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [181] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1257), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), + [179] = { + [sym_bracketed_type] = STATE(2322), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1949), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1217), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1186), + [sym_scoped_type_identifier_in_expression_position] = STATE(2311), + [sym_range_expression] = STATE(1078), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2501), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(869), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1079), + [sym_boolean_literal] = STATE(1079), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [180] = { + [sym_attribute_item] = STATE(193), + [sym_function_modifiers] = STATE(2432), + [sym_self_parameter] = STATE(1863), + [sym_variadic_parameter] = STATE(1863), + [sym_parameter] = STATE(1863), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1762), + [sym_bracketed_type] = STATE(2488), + [sym_lifetime] = STATE(1864), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2489), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2158), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(668), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(676), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(682), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(694), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(710), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [181] = { + [sym_attribute_item] = STATE(193), + [sym_function_modifiers] = STATE(2432), + [sym_self_parameter] = STATE(1863), + [sym_variadic_parameter] = STATE(1863), + [sym_parameter] = STATE(1863), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1762), + [sym_bracketed_type] = STATE(2492), + [sym_lifetime] = STATE(1864), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2493), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1706), + [sym_scoped_identifier] = STATE(1502), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1705), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_RPAREN] = ACTIONS(720), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(724), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(726), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(728), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(730), + [anon_sym__] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(694), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(736), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, [182] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1167), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [sym_attribute_item] = STATE(193), + [sym_function_modifiers] = STATE(2432), + [sym_self_parameter] = STATE(1863), + [sym_variadic_parameter] = STATE(1863), + [sym_parameter] = STATE(1863), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1762), + [sym_bracketed_type] = STATE(2492), + [sym_lifetime] = STATE(1864), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2493), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1706), + [sym_scoped_identifier] = STATE(1502), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1705), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_RPAREN] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(724), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(726), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [anon_sym_COLON_COLON] = ACTIONS(730), + [anon_sym__] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(694), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(736), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [183] = { - [ts_builtin_sym_end] = ACTIONS(672), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(672), - [anon_sym_macro_rules_BANG] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(672), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_LBRACK] = ACTIONS(672), - [anon_sym_PLUS] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(674), - [anon_sym_QMARK] = ACTIONS(672), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), + [sym_attribute_item] = STATE(194), + [sym_function_modifiers] = STATE(2432), + [sym_self_parameter] = STATE(1856), + [sym_variadic_parameter] = STATE(1856), + [sym_parameter] = STATE(1856), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1759), + [sym_bracketed_type] = STATE(2488), + [sym_lifetime] = STATE(1864), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2489), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2158), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(746), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(668), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [anon_sym_POUND] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(674), - [anon_sym_EQ] = ACTIONS(674), - [anon_sym_extern] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(674), - [anon_sym_GT] = ACTIONS(674), - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym_AMP] = ACTIONS(674), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [anon_sym_DOT_DOT] = ACTIONS(674), - [anon_sym_DOT_DOT_EQ] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(674), - [anon_sym_AMP_AMP] = ACTIONS(672), - [anon_sym_PIPE_PIPE] = ACTIONS(672), - [anon_sym_PIPE] = ACTIONS(674), - [anon_sym_CARET] = ACTIONS(674), - [anon_sym_EQ_EQ] = ACTIONS(672), - [anon_sym_BANG_EQ] = ACTIONS(672), - [anon_sym_LT_EQ] = ACTIONS(672), - [anon_sym_GT_EQ] = ACTIONS(672), - [anon_sym_LT_LT] = ACTIONS(674), - [anon_sym_GT_GT] = ACTIONS(674), - [anon_sym_SLASH] = ACTIONS(674), - [anon_sym_PERCENT] = ACTIONS(674), - [anon_sym_PLUS_EQ] = ACTIONS(672), - [anon_sym_DASH_EQ] = ACTIONS(672), - [anon_sym_STAR_EQ] = ACTIONS(672), - [anon_sym_SLASH_EQ] = ACTIONS(672), - [anon_sym_PERCENT_EQ] = ACTIONS(672), - [anon_sym_AMP_EQ] = ACTIONS(672), - [anon_sym_PIPE_EQ] = ACTIONS(672), - [anon_sym_CARET_EQ] = ACTIONS(672), - [anon_sym_LT_LT_EQ] = ACTIONS(672), - [anon_sym_GT_GT_EQ] = ACTIONS(672), - [anon_sym_yield] = ACTIONS(674), - [anon_sym_move] = ACTIONS(674), - [anon_sym_DOT] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(672), - [aux_sym_string_literal_token1] = ACTIONS(672), - [sym_char_literal] = ACTIONS(672), - [anon_sym_true] = ACTIONS(674), - [anon_sym_false] = ACTIONS(674), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym_metavariable] = ACTIONS(672), - [sym_raw_string_literal] = ACTIONS(672), - [sym_float_literal] = ACTIONS(672), + [anon_sym_union] = ACTIONS(676), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(748), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(694), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(710), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [184] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1222), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [sym_attribute_item] = STATE(193), + [sym_function_modifiers] = STATE(2432), + [sym_self_parameter] = STATE(1863), + [sym_variadic_parameter] = STATE(1863), + [sym_parameter] = STATE(1863), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1762), + [sym_bracketed_type] = STATE(2492), + [sym_lifetime] = STATE(1864), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2493), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1706), + [sym_scoped_identifier] = STATE(1502), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1705), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_RPAREN] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(724), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(726), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(754), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [anon_sym_COLON_COLON] = ACTIONS(730), + [anon_sym__] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(694), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(736), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [185] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(2037), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1259), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(1209), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(68), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(504), + [sym_attribute_item] = STATE(192), + [sym_function_modifiers] = STATE(2432), + [sym_self_parameter] = STATE(2276), + [sym_variadic_parameter] = STATE(2276), + [sym_parameter] = STATE(2276), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1946), + [sym_bracketed_type] = STATE(2488), + [sym_lifetime] = STATE(1864), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2489), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2158), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(668), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(676), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(694), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(710), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [186] = { - [ts_builtin_sym_end] = ACTIONS(676), - [sym_identifier] = ACTIONS(678), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_macro_rules_BANG] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(676), - [anon_sym_RBRACE] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(678), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_SQUOTE] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_async] = ACTIONS(678), - [anon_sym_break] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_enum] = ACTIONS(678), - [anon_sym_fn] = ACTIONS(678), - [anon_sym_for] = ACTIONS(678), - [anon_sym_if] = ACTIONS(678), - [anon_sym_impl] = ACTIONS(678), - [anon_sym_let] = ACTIONS(678), - [anon_sym_loop] = ACTIONS(678), - [anon_sym_match] = ACTIONS(678), - [anon_sym_mod] = ACTIONS(678), - [anon_sym_pub] = ACTIONS(678), - [anon_sym_return] = ACTIONS(678), - [anon_sym_static] = ACTIONS(678), - [anon_sym_struct] = ACTIONS(678), - [anon_sym_trait] = ACTIONS(678), - [anon_sym_type] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_unsafe] = ACTIONS(678), - [anon_sym_use] = ACTIONS(678), - [anon_sym_while] = ACTIONS(678), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(678), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_extern] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT] = ACTIONS(678), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(678), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(678), - [anon_sym_CARET] = ACTIONS(678), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(678), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_PERCENT] = ACTIONS(678), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(678), - [anon_sym_move] = ACTIONS(678), - [anon_sym_DOT] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(676), - [aux_sym_string_literal_token1] = ACTIONS(676), - [sym_char_literal] = ACTIONS(676), - [anon_sym_true] = ACTIONS(678), - [anon_sym_false] = ACTIONS(678), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym_metavariable] = ACTIONS(676), - [sym_raw_string_literal] = ACTIONS(676), - [sym_float_literal] = ACTIONS(676), + [sym_attribute_item] = STATE(192), + [sym_function_modifiers] = STATE(2432), + [sym_self_parameter] = STATE(2276), + [sym_variadic_parameter] = STATE(2276), + [sym_parameter] = STATE(2276), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1946), + [sym_bracketed_type] = STATE(2488), + [sym_lifetime] = STATE(1864), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2489), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2158), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(668), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(676), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(694), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(710), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [187] = { - [sym_bracketed_type] = STATE(2486), - [sym_generic_function] = STATE(801), - [sym_generic_type_with_turbofish] = STATE(1989), - [sym__expression_except_range] = STATE(801), - [sym__expression] = STATE(1308), - [sym_macro_invocation] = STATE(801), - [sym_scoped_identifier] = STATE(807), - [sym_scoped_type_identifier_in_expression_position] = STATE(2256), - [sym_range_expression] = STATE(1076), - [sym_unary_expression] = STATE(801), - [sym_try_expression] = STATE(801), - [sym_reference_expression] = STATE(801), - [sym_binary_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_compound_assignment_expr] = STATE(801), - [sym_type_cast_expression] = STATE(801), - [sym_return_expression] = STATE(801), - [sym_yield_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_array_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_tuple_expression] = STATE(801), - [sym_unit_expression] = STATE(801), - [sym_struct_expression] = STATE(801), - [sym_if_expression] = STATE(801), - [sym_if_let_expression] = STATE(801), - [sym_match_expression] = STATE(801), - [sym_while_expression] = STATE(801), - [sym_while_let_expression] = STATE(801), - [sym_loop_expression] = STATE(801), - [sym_for_expression] = STATE(801), - [sym_const_block] = STATE(801), - [sym_closure_expression] = STATE(801), - [sym_closure_parameters] = STATE(63), - [sym_loop_label] = STATE(2522), - [sym_break_expression] = STATE(801), - [sym_continue_expression] = STATE(801), - [sym_index_expression] = STATE(801), - [sym_await_expression] = STATE(801), - [sym_field_expression] = STATE(802), - [sym_unsafe_block] = STATE(801), - [sym_async_block] = STATE(801), - [sym_block] = STATE(801), - [sym__literal] = STATE(801), - [sym_string_literal] = STATE(1085), - [sym_boolean_literal] = STATE(1085), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [sym_attribute_item] = STATE(192), + [sym_function_modifiers] = STATE(2432), + [sym_self_parameter] = STATE(2276), + [sym_variadic_parameter] = STATE(2276), + [sym_parameter] = STATE(2276), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1946), + [sym_bracketed_type] = STATE(2488), + [sym_lifetime] = STATE(1864), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2489), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2158), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(668), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(676), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(694), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(710), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [188] = { - [sym_identifier] = ACTIONS(564), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_macro_rules_BANG] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_RBRACE] = ACTIONS(562), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_u8] = ACTIONS(564), - [anon_sym_i8] = ACTIONS(564), - [anon_sym_u16] = ACTIONS(564), - [anon_sym_i16] = ACTIONS(564), - [anon_sym_u32] = ACTIONS(564), - [anon_sym_i32] = ACTIONS(564), - [anon_sym_u64] = ACTIONS(564), - [anon_sym_i64] = ACTIONS(564), - [anon_sym_u128] = ACTIONS(564), - [anon_sym_i128] = ACTIONS(564), - [anon_sym_isize] = ACTIONS(564), - [anon_sym_usize] = ACTIONS(564), - [anon_sym_f32] = ACTIONS(564), - [anon_sym_f64] = ACTIONS(564), - [anon_sym_bool] = ACTIONS(564), - [anon_sym_str] = ACTIONS(564), - [anon_sym_char] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_as] = ACTIONS(568), - [anon_sym_async] = ACTIONS(564), - [anon_sym_break] = ACTIONS(564), - [anon_sym_const] = ACTIONS(564), - [anon_sym_continue] = ACTIONS(564), - [anon_sym_default] = ACTIONS(564), - [anon_sym_enum] = ACTIONS(564), - [anon_sym_fn] = ACTIONS(564), - [anon_sym_for] = ACTIONS(564), - [anon_sym_if] = ACTIONS(564), - [anon_sym_impl] = ACTIONS(564), - [anon_sym_let] = ACTIONS(564), - [anon_sym_loop] = ACTIONS(564), - [anon_sym_match] = ACTIONS(564), - [anon_sym_mod] = ACTIONS(564), - [anon_sym_pub] = ACTIONS(564), - [anon_sym_return] = ACTIONS(564), - [anon_sym_static] = ACTIONS(564), - [anon_sym_struct] = ACTIONS(564), - [anon_sym_trait] = ACTIONS(564), - [anon_sym_type] = ACTIONS(564), - [anon_sym_union] = ACTIONS(564), - [anon_sym_unsafe] = ACTIONS(564), - [anon_sym_use] = ACTIONS(564), - [anon_sym_while] = ACTIONS(564), - [anon_sym_POUND] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_extern] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(568), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(568), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_yield] = ACTIONS(564), - [anon_sym_move] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(568), - [sym_integer_literal] = ACTIONS(562), - [aux_sym_string_literal_token1] = ACTIONS(562), - [sym_char_literal] = ACTIONS(562), - [anon_sym_true] = ACTIONS(564), - [anon_sym_false] = ACTIONS(564), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(564), - [sym_super] = ACTIONS(564), - [sym_crate] = ACTIONS(564), - [sym_metavariable] = ACTIONS(562), - [sym_raw_string_literal] = ACTIONS(562), - [sym_float_literal] = ACTIONS(562), + [sym_attribute_item] = STATE(192), + [sym_function_modifiers] = STATE(2432), + [sym_self_parameter] = STATE(2276), + [sym_variadic_parameter] = STATE(2276), + [sym_parameter] = STATE(2276), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1946), + [sym_bracketed_type] = STATE(2488), + [sym_lifetime] = STATE(1864), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2489), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2158), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(668), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(676), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(694), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(710), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [189] = { - [sym_attribute_item] = STATE(202), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2087), - [sym_variadic_parameter] = STATE(2087), - [sym_parameter] = STATE(2087), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1805), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(712), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym_attribute_item] = STATE(192), + [sym_function_modifiers] = STATE(2432), + [sym_self_parameter] = STATE(2276), + [sym_variadic_parameter] = STATE(2276), + [sym_parameter] = STATE(2276), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1946), + [sym_bracketed_type] = STATE(2488), + [sym_lifetime] = STATE(1864), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2489), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2158), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(766), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(668), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(676), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(720), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(694), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(710), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [190] = { - [sym_attribute_item] = STATE(203), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(1962), - [sym_variadic_parameter] = STATE(1962), - [sym_parameter] = STATE(1962), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1833), - [sym_bracketed_type] = STATE(2513), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2514), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1744), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1755), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(758), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym_attribute_item] = STATE(192), + [sym_function_modifiers] = STATE(2432), + [sym_self_parameter] = STATE(2276), + [sym_variadic_parameter] = STATE(2276), + [sym_parameter] = STATE(2276), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1946), + [sym_bracketed_type] = STATE(2488), + [sym_lifetime] = STATE(1864), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2489), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2158), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(768), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(668), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(676), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(694), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(710), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [191] = { - [sym_attribute_item] = STATE(203), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(1962), - [sym_variadic_parameter] = STATE(1962), - [sym_parameter] = STATE(1962), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1833), - [sym_bracketed_type] = STATE(2513), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2514), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1744), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1755), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(774), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym_attribute_item] = STATE(192), + [sym_function_modifiers] = STATE(2432), + [sym_self_parameter] = STATE(2276), + [sym_variadic_parameter] = STATE(2276), + [sym_parameter] = STATE(2276), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1946), + [sym_bracketed_type] = STATE(2488), + [sym_lifetime] = STATE(1864), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2489), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2158), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(668), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(676), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(694), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(710), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [192] = { - [sym_attribute_item] = STATE(203), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(1962), - [sym_variadic_parameter] = STATE(1962), - [sym_parameter] = STATE(1962), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1833), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(776), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(778), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_self_parameter] = STATE(2190), + [sym_variadic_parameter] = STATE(2190), + [sym_parameter] = STATE(2190), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(2069), + [sym_bracketed_type] = STATE(2488), + [sym_lifetime] = STATE(1864), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2489), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2158), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(668), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(676), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(770), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(694), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(710), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [193] = { - [sym_attribute_item] = STATE(203), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(1962), - [sym_variadic_parameter] = STATE(1962), - [sym_parameter] = STATE(1962), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1833), - [sym_bracketed_type] = STATE(2513), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2514), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1744), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1755), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(756), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(784), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_self_parameter] = STATE(2052), + [sym_variadic_parameter] = STATE(2052), + [sym_parameter] = STATE(2052), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1773), + [sym_bracketed_type] = STATE(2488), + [sym_lifetime] = STATE(1864), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2489), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2158), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(668), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(676), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(766), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(772), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(694), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(710), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [194] = { - [sym_attribute_item] = STATE(201), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2232), - [sym_variadic_parameter] = STATE(2232), - [sym_parameter] = STATE(2232), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1929), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(786), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_self_parameter] = STATE(2110), + [sym_variadic_parameter] = STATE(2110), + [sym_parameter] = STATE(2110), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1769), + [sym_bracketed_type] = STATE(2488), + [sym_lifetime] = STATE(1864), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2489), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2158), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(668), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(676), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(774), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(694), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(710), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [195] = { - [sym_attribute_item] = STATE(201), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2232), - [sym_variadic_parameter] = STATE(2232), - [sym_parameter] = STATE(2232), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1929), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(2103), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1737), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1787), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_RBRACK] = ACTIONS(780), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(782), + [anon_sym_i8] = ACTIONS(782), + [anon_sym_u16] = ACTIONS(782), + [anon_sym_i16] = ACTIONS(782), + [anon_sym_u32] = ACTIONS(782), + [anon_sym_i32] = ACTIONS(782), + [anon_sym_u64] = ACTIONS(782), + [anon_sym_i64] = ACTIONS(782), + [anon_sym_u128] = ACTIONS(782), + [anon_sym_i128] = ACTIONS(782), + [anon_sym_isize] = ACTIONS(782), + [anon_sym_usize] = ACTIONS(782), + [anon_sym_f32] = ACTIONS(782), + [anon_sym_f64] = ACTIONS(782), + [anon_sym_bool] = ACTIONS(782), + [anon_sym_str] = ACTIONS(782), + [anon_sym_char] = ACTIONS(782), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(784), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(786), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(790), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(800), + [sym_super] = ACTIONS(800), + [sym_crate] = ACTIONS(800), + [sym_metavariable] = ACTIONS(802), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [196] = { - [sym_attribute_item] = STATE(201), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2232), - [sym_variadic_parameter] = STATE(2232), - [sym_parameter] = STATE(2232), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1929), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1770), + [sym_bracketed_type] = STATE(2492), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2493), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1706), + [sym_scoped_identifier] = STATE(1502), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1789), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_RPAREN] = ACTIONS(804), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(806), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(808), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(810), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(730), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(812), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(738), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [197] = { - [sym_attribute_item] = STATE(201), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2232), - [sym_variadic_parameter] = STATE(2232), - [sym_parameter] = STATE(2232), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1929), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1770), + [sym_bracketed_type] = STATE(2492), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2493), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1706), + [sym_scoped_identifier] = STATE(1502), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1789), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_RPAREN] = ACTIONS(814), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(806), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(808), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(810), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(730), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(812), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(738), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [198] = { - [sym_attribute_item] = STATE(201), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2232), - [sym_variadic_parameter] = STATE(2232), - [sym_parameter] = STATE(2232), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1929), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(796), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1770), + [sym_bracketed_type] = STATE(2492), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2493), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1706), + [sym_scoped_identifier] = STATE(1502), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1789), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_RPAREN] = ACTIONS(816), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(806), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(808), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(810), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(730), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(812), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(738), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [199] = { - [sym_attribute_item] = STATE(201), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2232), - [sym_variadic_parameter] = STATE(2232), - [sym_parameter] = STATE(2232), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1929), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_identifier] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(820), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_RBRACK] = ACTIONS(820), + [anon_sym_COLON] = ACTIONS(818), + [anon_sym_PLUS] = ACTIONS(818), + [anon_sym_STAR] = ACTIONS(818), + [anon_sym_QMARK] = ACTIONS(820), + [anon_sym_u8] = ACTIONS(818), + [anon_sym_i8] = ACTIONS(818), + [anon_sym_u16] = ACTIONS(818), + [anon_sym_i16] = ACTIONS(818), + [anon_sym_u32] = ACTIONS(818), + [anon_sym_i32] = ACTIONS(818), + [anon_sym_u64] = ACTIONS(818), + [anon_sym_i64] = ACTIONS(818), + [anon_sym_u128] = ACTIONS(818), + [anon_sym_i128] = ACTIONS(818), + [anon_sym_isize] = ACTIONS(818), + [anon_sym_usize] = ACTIONS(818), + [anon_sym_f32] = ACTIONS(818), + [anon_sym_f64] = ACTIONS(818), + [anon_sym_bool] = ACTIONS(818), + [anon_sym_str] = ACTIONS(818), + [anon_sym_char] = ACTIONS(818), + [anon_sym_SQUOTE] = ACTIONS(818), + [anon_sym_as] = ACTIONS(818), + [anon_sym_async] = ACTIONS(818), + [anon_sym_break] = ACTIONS(818), + [anon_sym_const] = ACTIONS(818), + [anon_sym_continue] = ACTIONS(818), + [anon_sym_default] = ACTIONS(818), + [anon_sym_for] = ACTIONS(818), + [anon_sym_if] = ACTIONS(818), + [anon_sym_loop] = ACTIONS(818), + [anon_sym_match] = ACTIONS(818), + [anon_sym_return] = ACTIONS(818), + [anon_sym_union] = ACTIONS(818), + [anon_sym_unsafe] = ACTIONS(818), + [anon_sym_while] = ACTIONS(818), + [anon_sym_BANG] = ACTIONS(818), + [anon_sym_EQ] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(820), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_GT] = ACTIONS(818), + [anon_sym_COLON_COLON] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(818), + [anon_sym_DOT_DOT_DOT] = ACTIONS(820), + [anon_sym_DOT_DOT] = ACTIONS(818), + [anon_sym_DOT_DOT_EQ] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(818), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_CARET] = ACTIONS(818), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(820), + [anon_sym_GT_EQ] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(818), + [anon_sym_GT_GT] = ACTIONS(818), + [anon_sym_SLASH] = ACTIONS(818), + [anon_sym_PERCENT] = ACTIONS(818), + [anon_sym_PLUS_EQ] = ACTIONS(820), + [anon_sym_DASH_EQ] = ACTIONS(820), + [anon_sym_STAR_EQ] = ACTIONS(820), + [anon_sym_SLASH_EQ] = ACTIONS(820), + [anon_sym_PERCENT_EQ] = ACTIONS(820), + [anon_sym_AMP_EQ] = ACTIONS(820), + [anon_sym_PIPE_EQ] = ACTIONS(820), + [anon_sym_CARET_EQ] = ACTIONS(820), + [anon_sym_LT_LT_EQ] = ACTIONS(820), + [anon_sym_GT_GT_EQ] = ACTIONS(820), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_move] = ACTIONS(818), + [anon_sym_DOT] = ACTIONS(818), + [sym_integer_literal] = ACTIONS(820), + [aux_sym_string_literal_token1] = ACTIONS(820), + [sym_char_literal] = ACTIONS(820), + [anon_sym_true] = ACTIONS(818), + [anon_sym_false] = ACTIONS(818), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(818), + [sym_super] = ACTIONS(818), + [sym_crate] = ACTIONS(818), + [sym_metavariable] = ACTIONS(820), + [sym_raw_string_literal] = ACTIONS(820), + [sym_float_literal] = ACTIONS(820), [sym_block_comment] = ACTIONS(3), }, [200] = { - [sym_attribute_item] = STATE(201), - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2232), - [sym_variadic_parameter] = STATE(2232), - [sym_parameter] = STATE(2232), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1929), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(708), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1382), + [sym_bracketed_type] = STATE(2492), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2493), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1706), + [sym_scoped_identifier] = STATE(1502), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1426), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(806), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(808), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(788), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(730), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(812), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(738), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [201] = { - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2184), - [sym_variadic_parameter] = STATE(2184), - [sym_parameter] = STATE(2184), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2061), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1382), + [sym_bracketed_type] = STATE(2488), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2489), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1426), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(822), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(824), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(800), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [202] = { - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2150), - [sym_variadic_parameter] = STATE(2150), - [sym_parameter] = STATE(2150), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1889), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1393), + [sym_bracketed_type] = STATE(2488), + [sym_lifetime] = STATE(622), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2489), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1448), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(828), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(822), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(824), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(830), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(832), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [203] = { - [sym_function_modifiers] = STATE(2420), - [sym_self_parameter] = STATE(2149), - [sym_variadic_parameter] = STATE(2149), - [sym_parameter] = STATE(2149), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1886), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(1964), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2343), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(698), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(706), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1382), + [sym_bracketed_type] = STATE(2488), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2489), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1426), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(822), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(824), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(804), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_DOT_DOT_DOT] = ACTIONS(724), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(740), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(834), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [204] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1894), - [sym_bracketed_type] = STATE(2513), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2514), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1744), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1827), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(812), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1382), + [sym_bracketed_type] = STATE(2492), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2493), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1706), + [sym_scoped_identifier] = STATE(1502), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1426), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(806), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(808), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(768), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(730), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(812), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(836), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [205] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2156), - [sym_bracketed_type] = STATE(2516), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2517), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1741), - [sym_scoped_identifier] = STATE(1585), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1814), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(826), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(828), - [anon_sym_i8] = ACTIONS(828), - [anon_sym_u16] = ACTIONS(828), - [anon_sym_i16] = ACTIONS(828), - [anon_sym_u32] = ACTIONS(828), - [anon_sym_i32] = ACTIONS(828), - [anon_sym_u64] = ACTIONS(828), - [anon_sym_i64] = ACTIONS(828), - [anon_sym_u128] = ACTIONS(828), - [anon_sym_i128] = ACTIONS(828), - [anon_sym_isize] = ACTIONS(828), - [anon_sym_usize] = ACTIONS(828), - [anon_sym_f32] = ACTIONS(828), - [anon_sym_f64] = ACTIONS(828), - [anon_sym_bool] = ACTIONS(828), - [anon_sym_str] = ACTIONS(828), - [anon_sym_char] = ACTIONS(828), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(830), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(832), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1393), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(624), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1737), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1448), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(782), + [anon_sym_i8] = ACTIONS(782), + [anon_sym_u16] = ACTIONS(782), + [anon_sym_i16] = ACTIONS(782), + [anon_sym_u32] = ACTIONS(782), + [anon_sym_i32] = ACTIONS(782), + [anon_sym_u64] = ACTIONS(782), + [anon_sym_i64] = ACTIONS(782), + [anon_sym_u128] = ACTIONS(782), + [anon_sym_i128] = ACTIONS(782), + [anon_sym_isize] = ACTIONS(782), + [anon_sym_usize] = ACTIONS(782), + [anon_sym_f32] = ACTIONS(782), + [anon_sym_f64] = ACTIONS(782), + [anon_sym_bool] = ACTIONS(782), + [anon_sym_str] = ACTIONS(782), + [anon_sym_char] = ACTIONS(782), + [anon_sym_SQUOTE] = ACTIONS(828), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(784), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(786), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(836), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(838), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(840), - [sym_super] = ACTIONS(840), - [sym_crate] = ACTIONS(840), - [sym_metavariable] = ACTIONS(842), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(790), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(838), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(800), + [sym_super] = ACTIONS(800), + [sym_crate] = ACTIONS(800), + [sym_metavariable] = ACTIONS(802), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [206] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1894), - [sym_bracketed_type] = STATE(2513), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2514), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1744), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1827), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(812), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1393), + [sym_bracketed_type] = STATE(2488), + [sym_lifetime] = STATE(624), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2489), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1448), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(828), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(822), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(824), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(768), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(840), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [207] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1894), - [sym_bracketed_type] = STATE(2513), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2514), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1744), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1827), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(812), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1393), + [sym_bracketed_type] = STATE(2492), + [sym_lifetime] = STATE(622), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2493), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1706), + [sym_scoped_identifier] = STATE(1502), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1448), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), + [anon_sym_SQUOTE] = ACTIONS(828), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(806), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(808), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(768), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(730), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(812), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(842), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(844), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [208] = { + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1382), + [sym_bracketed_type] = STATE(2495), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2496), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1737), + [sym_scoped_identifier] = STATE(1548), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1426), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(782), + [anon_sym_i8] = ACTIONS(782), + [anon_sym_u16] = ACTIONS(782), + [anon_sym_i16] = ACTIONS(782), + [anon_sym_u32] = ACTIONS(782), + [anon_sym_i32] = ACTIONS(782), + [anon_sym_u64] = ACTIONS(782), + [anon_sym_i64] = ACTIONS(782), + [anon_sym_u128] = ACTIONS(782), + [anon_sym_i128] = ACTIONS(782), + [anon_sym_isize] = ACTIONS(782), + [anon_sym_usize] = ACTIONS(782), + [anon_sym_f32] = ACTIONS(782), + [anon_sym_f64] = ACTIONS(782), + [anon_sym_bool] = ACTIONS(782), + [anon_sym_str] = ACTIONS(782), + [anon_sym_char] = ACTIONS(782), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(784), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(786), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(790), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(800), + [sym_super] = ACTIONS(800), + [sym_crate] = ACTIONS(800), + [sym_metavariable] = ACTIONS(802), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [209] = { + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1393), + [sym_bracketed_type] = STATE(2492), + [sym_lifetime] = STATE(624), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2493), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1706), + [sym_scoped_identifier] = STATE(1502), + [sym_scoped_type_identifier] = STATE(1468), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1448), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), + [anon_sym_SQUOTE] = ACTIONS(828), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(806), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(808), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(730), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(812), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(846), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(738), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [210] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1450), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), [sym_identifier] = ACTIONS(848), - [anon_sym_SEMI] = ACTIONS(850), [anon_sym_LPAREN] = ACTIONS(850), - [anon_sym_RPAREN] = ACTIONS(850), [anon_sym_LBRACE] = ACTIONS(850), - [anon_sym_RBRACE] = ACTIONS(850), - [anon_sym_EQ_GT] = ACTIONS(850), [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_RBRACK] = ACTIONS(850), - [anon_sym_COLON] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(848), - [anon_sym_STAR] = ACTIONS(848), - [anon_sym_QMARK] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(850), [anon_sym_u8] = ACTIONS(848), [anon_sym_i8] = ACTIONS(848), [anon_sym_u16] = ACTIONS(848), @@ -39313,7 +39106,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(848), [anon_sym_char] = ACTIONS(848), [anon_sym_SQUOTE] = ACTIONS(848), - [anon_sym_as] = ACTIONS(848), [anon_sym_async] = ACTIONS(848), [anon_sym_break] = ACTIONS(848), [anon_sym_const] = ACTIONS(848), @@ -39327,42 +39119,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(848), [anon_sym_unsafe] = ACTIONS(848), [anon_sym_while] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(848), - [anon_sym_EQ] = ACTIONS(848), - [anon_sym_COMMA] = ACTIONS(850), - [anon_sym_LT] = ACTIONS(848), - [anon_sym_GT] = ACTIONS(848), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_DASH_GT] = ACTIONS(850), + [anon_sym_LT] = ACTIONS(850), [anon_sym_COLON_COLON] = ACTIONS(850), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_DOT_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(848), - [anon_sym_DOT_DOT_EQ] = ACTIONS(850), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(850), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(850), [anon_sym_DASH] = ACTIONS(848), - [anon_sym_AMP_AMP] = ACTIONS(850), - [anon_sym_PIPE_PIPE] = ACTIONS(850), - [anon_sym_PIPE] = ACTIONS(848), - [anon_sym_CARET] = ACTIONS(848), - [anon_sym_EQ_EQ] = ACTIONS(850), - [anon_sym_BANG_EQ] = ACTIONS(850), - [anon_sym_LT_EQ] = ACTIONS(850), - [anon_sym_GT_EQ] = ACTIONS(850), - [anon_sym_LT_LT] = ACTIONS(848), - [anon_sym_GT_GT] = ACTIONS(848), - [anon_sym_SLASH] = ACTIONS(848), - [anon_sym_PERCENT] = ACTIONS(848), - [anon_sym_PLUS_EQ] = ACTIONS(850), - [anon_sym_DASH_EQ] = ACTIONS(850), - [anon_sym_STAR_EQ] = ACTIONS(850), - [anon_sym_SLASH_EQ] = ACTIONS(850), - [anon_sym_PERCENT_EQ] = ACTIONS(850), - [anon_sym_AMP_EQ] = ACTIONS(850), - [anon_sym_PIPE_EQ] = ACTIONS(850), - [anon_sym_CARET_EQ] = ACTIONS(850), - [anon_sym_LT_LT_EQ] = ACTIONS(850), - [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), [anon_sym_yield] = ACTIONS(848), [anon_sym_move] = ACTIONS(848), - [anon_sym_DOT] = ACTIONS(848), [sym_integer_literal] = ACTIONS(850), [aux_sym_string_literal_token1] = ACTIONS(850), [sym_char_literal] = ACTIONS(850), @@ -39377,985 +39146,1418 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(850), [sym_block_comment] = ACTIONS(3), }, - [209] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1429), - [sym_bracketed_type] = STATE(2513), - [sym_lifetime] = STATE(644), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2514), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1744), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(852), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(854), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(768), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [210] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1429), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(644), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(852), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(856), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(858), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(860), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(862), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(742), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, [211] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1429), - [sym_bracketed_type] = STATE(2516), - [sym_lifetime] = STATE(644), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2517), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1741), - [sym_scoped_identifier] = STATE(1585), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(828), - [anon_sym_i8] = ACTIONS(828), - [anon_sym_u16] = ACTIONS(828), - [anon_sym_i16] = ACTIONS(828), - [anon_sym_u32] = ACTIONS(828), - [anon_sym_i32] = ACTIONS(828), - [anon_sym_u64] = ACTIONS(828), - [anon_sym_i64] = ACTIONS(828), - [anon_sym_u128] = ACTIONS(828), - [anon_sym_i128] = ACTIONS(828), - [anon_sym_isize] = ACTIONS(828), - [anon_sym_usize] = ACTIONS(828), - [anon_sym_f32] = ACTIONS(828), - [anon_sym_f64] = ACTIONS(828), - [anon_sym_bool] = ACTIONS(828), - [anon_sym_str] = ACTIONS(828), - [anon_sym_char] = ACTIONS(828), - [anon_sym_SQUOTE] = ACTIONS(852), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(830), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(832), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym__attr] = STATE(2336), + [sym_custom_attr] = STATE(2336), + [sym_built_in_attr] = STATE(2336), + [sym__built_in_attr_path] = STATE(1766), + [sym_bracketed_type] = STATE(2322), + [sym_generic_type_with_turbofish] = STATE(2525), + [sym_scoped_identifier] = STATE(1563), + [sym_identifier] = ACTIONS(852), + [anon_sym_path] = ACTIONS(854), + [anon_sym_u8] = ACTIONS(856), + [anon_sym_i8] = ACTIONS(856), + [anon_sym_u16] = ACTIONS(856), + [anon_sym_i16] = ACTIONS(856), + [anon_sym_u32] = ACTIONS(856), + [anon_sym_i32] = ACTIONS(856), + [anon_sym_u64] = ACTIONS(856), + [anon_sym_i64] = ACTIONS(856), + [anon_sym_u128] = ACTIONS(856), + [anon_sym_i128] = ACTIONS(856), + [anon_sym_isize] = ACTIONS(856), + [anon_sym_usize] = ACTIONS(856), + [anon_sym_f32] = ACTIONS(856), + [anon_sym_f64] = ACTIONS(856), + [anon_sym_bool] = ACTIONS(856), + [anon_sym_str] = ACTIONS(856), + [anon_sym_char] = ACTIONS(856), + [anon_sym_default] = ACTIONS(856), + [anon_sym_union] = ACTIONS(856), + [anon_sym_cfg] = ACTIONS(854), + [anon_sym_cfg_attr] = ACTIONS(854), + [anon_sym_test] = ACTIONS(854), + [anon_sym_ignore] = ACTIONS(854), + [anon_sym_should_panic] = ACTIONS(854), + [anon_sym_derive] = ACTIONS(854), + [anon_sym_automatically_derived] = ACTIONS(854), + [anon_sym_macro_export] = ACTIONS(854), + [anon_sym_macro_use] = ACTIONS(854), + [anon_sym_proc_macro] = ACTIONS(854), + [anon_sym_proc_macro_derive] = ACTIONS(854), + [anon_sym_proc_macro_attribute] = ACTIONS(854), + [anon_sym_allow] = ACTIONS(854), + [anon_sym_warn] = ACTIONS(854), + [anon_sym_deny] = ACTIONS(854), + [anon_sym_forbid] = ACTIONS(854), + [anon_sym_deprecated] = ACTIONS(854), + [anon_sym_must_use] = ACTIONS(854), + [anon_sym_link] = ACTIONS(854), + [anon_sym_link_name] = ACTIONS(854), + [anon_sym_no_link] = ACTIONS(854), + [anon_sym_repr] = ACTIONS(854), + [anon_sym_crate_type] = ACTIONS(854), + [anon_sym_no_main] = ACTIONS(854), + [anon_sym_export_name] = ACTIONS(854), + [anon_sym_link_section] = ACTIONS(854), + [anon_sym_no_mangle] = ACTIONS(854), + [anon_sym_used] = ACTIONS(854), + [anon_sym_crate_name] = ACTIONS(854), + [anon_sym_inline] = ACTIONS(854), + [anon_sym_cold] = ACTIONS(854), + [anon_sym_no_builtins] = ACTIONS(854), + [anon_sym_target_feature] = ACTIONS(854), + [anon_sym_track_caller] = ACTIONS(854), + [anon_sym_doc] = ACTIONS(854), + [anon_sym_no_std] = ACTIONS(854), + [anon_sym_no_implicit_prelude] = ACTIONS(854), + [anon_sym_recursion_limit] = ACTIONS(854), + [anon_sym_type_length_limit] = ACTIONS(854), + [anon_sym_panic_handler] = ACTIONS(854), + [anon_sym_global_allocator] = ACTIONS(854), + [anon_sym_windows_subsystem] = ACTIONS(854), + [anon_sym_feature] = ACTIONS(854), + [anon_sym_non_exhaustive] = ACTIONS(854), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(836), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(838), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(864), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(840), - [sym_super] = ACTIONS(840), - [sym_crate] = ACTIONS(840), - [sym_metavariable] = ACTIONS(842), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(858), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_crate] = ACTIONS(860), + [sym_metavariable] = ACTIONS(862), [sym_block_comment] = ACTIONS(3), }, [212] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1433), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1502), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), + [sym__attr] = STATE(2547), + [sym_custom_attr] = STATE(2547), + [sym_built_in_attr] = STATE(2547), + [sym__built_in_attr_path] = STATE(1766), + [sym_bracketed_type] = STATE(2322), + [sym_generic_type_with_turbofish] = STATE(2525), + [sym_scoped_identifier] = STATE(1563), + [sym_identifier] = ACTIONS(852), + [anon_sym_path] = ACTIONS(854), + [anon_sym_u8] = ACTIONS(856), + [anon_sym_i8] = ACTIONS(856), + [anon_sym_u16] = ACTIONS(856), + [anon_sym_i16] = ACTIONS(856), + [anon_sym_u32] = ACTIONS(856), + [anon_sym_i32] = ACTIONS(856), + [anon_sym_u64] = ACTIONS(856), + [anon_sym_i64] = ACTIONS(856), + [anon_sym_u128] = ACTIONS(856), + [anon_sym_i128] = ACTIONS(856), + [anon_sym_isize] = ACTIONS(856), + [anon_sym_usize] = ACTIONS(856), + [anon_sym_f32] = ACTIONS(856), + [anon_sym_f64] = ACTIONS(856), + [anon_sym_bool] = ACTIONS(856), + [anon_sym_str] = ACTIONS(856), + [anon_sym_char] = ACTIONS(856), [anon_sym_default] = ACTIONS(856), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(858), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [anon_sym_union] = ACTIONS(856), + [anon_sym_cfg] = ACTIONS(854), + [anon_sym_cfg_attr] = ACTIONS(854), + [anon_sym_test] = ACTIONS(854), + [anon_sym_ignore] = ACTIONS(854), + [anon_sym_should_panic] = ACTIONS(854), + [anon_sym_derive] = ACTIONS(854), + [anon_sym_automatically_derived] = ACTIONS(854), + [anon_sym_macro_export] = ACTIONS(854), + [anon_sym_macro_use] = ACTIONS(854), + [anon_sym_proc_macro] = ACTIONS(854), + [anon_sym_proc_macro_derive] = ACTIONS(854), + [anon_sym_proc_macro_attribute] = ACTIONS(854), + [anon_sym_allow] = ACTIONS(854), + [anon_sym_warn] = ACTIONS(854), + [anon_sym_deny] = ACTIONS(854), + [anon_sym_forbid] = ACTIONS(854), + [anon_sym_deprecated] = ACTIONS(854), + [anon_sym_must_use] = ACTIONS(854), + [anon_sym_link] = ACTIONS(854), + [anon_sym_link_name] = ACTIONS(854), + [anon_sym_no_link] = ACTIONS(854), + [anon_sym_repr] = ACTIONS(854), + [anon_sym_crate_type] = ACTIONS(854), + [anon_sym_no_main] = ACTIONS(854), + [anon_sym_export_name] = ACTIONS(854), + [anon_sym_link_section] = ACTIONS(854), + [anon_sym_no_mangle] = ACTIONS(854), + [anon_sym_used] = ACTIONS(854), + [anon_sym_crate_name] = ACTIONS(854), + [anon_sym_inline] = ACTIONS(854), + [anon_sym_cold] = ACTIONS(854), + [anon_sym_no_builtins] = ACTIONS(854), + [anon_sym_target_feature] = ACTIONS(854), + [anon_sym_track_caller] = ACTIONS(854), + [anon_sym_doc] = ACTIONS(854), + [anon_sym_no_std] = ACTIONS(854), + [anon_sym_no_implicit_prelude] = ACTIONS(854), + [anon_sym_recursion_limit] = ACTIONS(854), + [anon_sym_type_length_limit] = ACTIONS(854), + [anon_sym_panic_handler] = ACTIONS(854), + [anon_sym_global_allocator] = ACTIONS(854), + [anon_sym_windows_subsystem] = ACTIONS(854), + [anon_sym_feature] = ACTIONS(854), + [anon_sym_non_exhaustive] = ACTIONS(854), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(860), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(858), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(866), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_crate] = ACTIONS(860), + [sym_metavariable] = ACTIONS(862), [sym_block_comment] = ACTIONS(3), }, [213] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1433), - [sym_bracketed_type] = STATE(2513), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2514), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1744), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1502), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(768), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_else_clause] = STATE(223), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_PLUS] = ACTIONS(398), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_QMARK] = ACTIONS(396), + [anon_sym_u8] = ACTIONS(398), + [anon_sym_i8] = ACTIONS(398), + [anon_sym_u16] = ACTIONS(398), + [anon_sym_i16] = ACTIONS(398), + [anon_sym_u32] = ACTIONS(398), + [anon_sym_i32] = ACTIONS(398), + [anon_sym_u64] = ACTIONS(398), + [anon_sym_i64] = ACTIONS(398), + [anon_sym_u128] = ACTIONS(398), + [anon_sym_i128] = ACTIONS(398), + [anon_sym_isize] = ACTIONS(398), + [anon_sym_usize] = ACTIONS(398), + [anon_sym_f32] = ACTIONS(398), + [anon_sym_f64] = ACTIONS(398), + [anon_sym_bool] = ACTIONS(398), + [anon_sym_str] = ACTIONS(398), + [anon_sym_char] = ACTIONS(398), + [anon_sym_as] = ACTIONS(398), + [anon_sym_const] = ACTIONS(398), + [anon_sym_default] = ACTIONS(398), + [anon_sym_union] = ACTIONS(398), + [anon_sym_POUND] = ACTIONS(396), + [anon_sym_EQ] = ACTIONS(398), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_ref] = ACTIONS(398), + [anon_sym_LT] = ACTIONS(398), + [anon_sym_GT] = ACTIONS(398), + [anon_sym_COLON_COLON] = ACTIONS(396), + [anon_sym__] = ACTIONS(398), + [anon_sym_AMP] = ACTIONS(398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(396), + [sym_mutable_specifier] = ACTIONS(398), + [anon_sym_DOT_DOT] = ACTIONS(398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(396), + [anon_sym_DASH] = ACTIONS(398), + [anon_sym_AMP_AMP] = ACTIONS(396), + [anon_sym_PIPE_PIPE] = ACTIONS(396), + [anon_sym_PIPE] = ACTIONS(398), + [anon_sym_CARET] = ACTIONS(398), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT_LT] = ACTIONS(398), + [anon_sym_GT_GT] = ACTIONS(398), + [anon_sym_SLASH] = ACTIONS(398), + [anon_sym_PERCENT] = ACTIONS(398), + [anon_sym_PLUS_EQ] = ACTIONS(396), + [anon_sym_DASH_EQ] = ACTIONS(396), + [anon_sym_STAR_EQ] = ACTIONS(396), + [anon_sym_SLASH_EQ] = ACTIONS(396), + [anon_sym_PERCENT_EQ] = ACTIONS(396), + [anon_sym_AMP_EQ] = ACTIONS(396), + [anon_sym_PIPE_EQ] = ACTIONS(396), + [anon_sym_CARET_EQ] = ACTIONS(396), + [anon_sym_LT_LT_EQ] = ACTIONS(396), + [anon_sym_GT_GT_EQ] = ACTIONS(396), + [anon_sym_else] = ACTIONS(864), + [anon_sym_DOT] = ACTIONS(398), + [sym_integer_literal] = ACTIONS(396), + [aux_sym_string_literal_token1] = ACTIONS(396), + [sym_char_literal] = ACTIONS(396), + [anon_sym_true] = ACTIONS(398), + [anon_sym_false] = ACTIONS(398), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(398), + [sym_super] = ACTIONS(398), + [sym_crate] = ACTIONS(398), + [sym_metavariable] = ACTIONS(396), + [sym_raw_string_literal] = ACTIONS(396), + [sym_float_literal] = ACTIONS(396), [sym_block_comment] = ACTIONS(3), }, [214] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1429), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(641), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(852), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), + [sym__attr] = STATE(2535), + [sym_custom_attr] = STATE(2535), + [sym_built_in_attr] = STATE(2535), + [sym__built_in_attr_path] = STATE(1766), + [sym_bracketed_type] = STATE(2322), + [sym_generic_type_with_turbofish] = STATE(2525), + [sym_scoped_identifier] = STATE(1563), + [sym_identifier] = ACTIONS(852), + [anon_sym_path] = ACTIONS(854), + [anon_sym_u8] = ACTIONS(856), + [anon_sym_i8] = ACTIONS(856), + [anon_sym_u16] = ACTIONS(856), + [anon_sym_i16] = ACTIONS(856), + [anon_sym_u32] = ACTIONS(856), + [anon_sym_i32] = ACTIONS(856), + [anon_sym_u64] = ACTIONS(856), + [anon_sym_i64] = ACTIONS(856), + [anon_sym_u128] = ACTIONS(856), + [anon_sym_i128] = ACTIONS(856), + [anon_sym_isize] = ACTIONS(856), + [anon_sym_usize] = ACTIONS(856), + [anon_sym_f32] = ACTIONS(856), + [anon_sym_f64] = ACTIONS(856), + [anon_sym_bool] = ACTIONS(856), + [anon_sym_str] = ACTIONS(856), + [anon_sym_char] = ACTIONS(856), [anon_sym_default] = ACTIONS(856), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(858), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [anon_sym_union] = ACTIONS(856), + [anon_sym_cfg] = ACTIONS(854), + [anon_sym_cfg_attr] = ACTIONS(854), + [anon_sym_test] = ACTIONS(854), + [anon_sym_ignore] = ACTIONS(854), + [anon_sym_should_panic] = ACTIONS(854), + [anon_sym_derive] = ACTIONS(854), + [anon_sym_automatically_derived] = ACTIONS(854), + [anon_sym_macro_export] = ACTIONS(854), + [anon_sym_macro_use] = ACTIONS(854), + [anon_sym_proc_macro] = ACTIONS(854), + [anon_sym_proc_macro_derive] = ACTIONS(854), + [anon_sym_proc_macro_attribute] = ACTIONS(854), + [anon_sym_allow] = ACTIONS(854), + [anon_sym_warn] = ACTIONS(854), + [anon_sym_deny] = ACTIONS(854), + [anon_sym_forbid] = ACTIONS(854), + [anon_sym_deprecated] = ACTIONS(854), + [anon_sym_must_use] = ACTIONS(854), + [anon_sym_link] = ACTIONS(854), + [anon_sym_link_name] = ACTIONS(854), + [anon_sym_no_link] = ACTIONS(854), + [anon_sym_repr] = ACTIONS(854), + [anon_sym_crate_type] = ACTIONS(854), + [anon_sym_no_main] = ACTIONS(854), + [anon_sym_export_name] = ACTIONS(854), + [anon_sym_link_section] = ACTIONS(854), + [anon_sym_no_mangle] = ACTIONS(854), + [anon_sym_used] = ACTIONS(854), + [anon_sym_crate_name] = ACTIONS(854), + [anon_sym_inline] = ACTIONS(854), + [anon_sym_cold] = ACTIONS(854), + [anon_sym_no_builtins] = ACTIONS(854), + [anon_sym_target_feature] = ACTIONS(854), + [anon_sym_track_caller] = ACTIONS(854), + [anon_sym_doc] = ACTIONS(854), + [anon_sym_no_std] = ACTIONS(854), + [anon_sym_no_implicit_prelude] = ACTIONS(854), + [anon_sym_recursion_limit] = ACTIONS(854), + [anon_sym_type_length_limit] = ACTIONS(854), + [anon_sym_panic_handler] = ACTIONS(854), + [anon_sym_global_allocator] = ACTIONS(854), + [anon_sym_windows_subsystem] = ACTIONS(854), + [anon_sym_feature] = ACTIONS(854), + [anon_sym_non_exhaustive] = ACTIONS(854), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(860), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(868), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(870), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(858), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_crate] = ACTIONS(860), + [sym_metavariable] = ACTIONS(862), [sym_block_comment] = ACTIONS(3), }, [215] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1429), - [sym_bracketed_type] = STATE(2513), - [sym_lifetime] = STATE(641), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2514), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1744), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(852), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym__attr] = STATE(2314), + [sym_custom_attr] = STATE(2314), + [sym_built_in_attr] = STATE(2314), + [sym__built_in_attr_path] = STATE(1766), + [sym_bracketed_type] = STATE(2322), + [sym_generic_type_with_turbofish] = STATE(2525), + [sym_scoped_identifier] = STATE(1563), + [sym_identifier] = ACTIONS(852), + [anon_sym_path] = ACTIONS(854), + [anon_sym_u8] = ACTIONS(856), + [anon_sym_i8] = ACTIONS(856), + [anon_sym_u16] = ACTIONS(856), + [anon_sym_i16] = ACTIONS(856), + [anon_sym_u32] = ACTIONS(856), + [anon_sym_i32] = ACTIONS(856), + [anon_sym_u64] = ACTIONS(856), + [anon_sym_i64] = ACTIONS(856), + [anon_sym_u128] = ACTIONS(856), + [anon_sym_i128] = ACTIONS(856), + [anon_sym_isize] = ACTIONS(856), + [anon_sym_usize] = ACTIONS(856), + [anon_sym_f32] = ACTIONS(856), + [anon_sym_f64] = ACTIONS(856), + [anon_sym_bool] = ACTIONS(856), + [anon_sym_str] = ACTIONS(856), + [anon_sym_char] = ACTIONS(856), + [anon_sym_default] = ACTIONS(856), + [anon_sym_union] = ACTIONS(856), + [anon_sym_cfg] = ACTIONS(854), + [anon_sym_cfg_attr] = ACTIONS(854), + [anon_sym_test] = ACTIONS(854), + [anon_sym_ignore] = ACTIONS(854), + [anon_sym_should_panic] = ACTIONS(854), + [anon_sym_derive] = ACTIONS(854), + [anon_sym_automatically_derived] = ACTIONS(854), + [anon_sym_macro_export] = ACTIONS(854), + [anon_sym_macro_use] = ACTIONS(854), + [anon_sym_proc_macro] = ACTIONS(854), + [anon_sym_proc_macro_derive] = ACTIONS(854), + [anon_sym_proc_macro_attribute] = ACTIONS(854), + [anon_sym_allow] = ACTIONS(854), + [anon_sym_warn] = ACTIONS(854), + [anon_sym_deny] = ACTIONS(854), + [anon_sym_forbid] = ACTIONS(854), + [anon_sym_deprecated] = ACTIONS(854), + [anon_sym_must_use] = ACTIONS(854), + [anon_sym_link] = ACTIONS(854), + [anon_sym_link_name] = ACTIONS(854), + [anon_sym_no_link] = ACTIONS(854), + [anon_sym_repr] = ACTIONS(854), + [anon_sym_crate_type] = ACTIONS(854), + [anon_sym_no_main] = ACTIONS(854), + [anon_sym_export_name] = ACTIONS(854), + [anon_sym_link_section] = ACTIONS(854), + [anon_sym_no_mangle] = ACTIONS(854), + [anon_sym_used] = ACTIONS(854), + [anon_sym_crate_name] = ACTIONS(854), + [anon_sym_inline] = ACTIONS(854), + [anon_sym_cold] = ACTIONS(854), + [anon_sym_no_builtins] = ACTIONS(854), + [anon_sym_target_feature] = ACTIONS(854), + [anon_sym_track_caller] = ACTIONS(854), + [anon_sym_doc] = ACTIONS(854), + [anon_sym_no_std] = ACTIONS(854), + [anon_sym_no_implicit_prelude] = ACTIONS(854), + [anon_sym_recursion_limit] = ACTIONS(854), + [anon_sym_type_length_limit] = ACTIONS(854), + [anon_sym_panic_handler] = ACTIONS(854), + [anon_sym_global_allocator] = ACTIONS(854), + [anon_sym_windows_subsystem] = ACTIONS(854), + [anon_sym_feature] = ACTIONS(854), + [anon_sym_non_exhaustive] = ACTIONS(854), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(872), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(874), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(858), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_crate] = ACTIONS(860), + [sym_metavariable] = ACTIONS(862), [sym_block_comment] = ACTIONS(3), }, [216] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1433), - [sym_bracketed_type] = STATE(2516), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2517), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1741), - [sym_scoped_identifier] = STATE(1585), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1502), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(822), - [anon_sym_LPAREN] = ACTIONS(824), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(828), - [anon_sym_i8] = ACTIONS(828), - [anon_sym_u16] = ACTIONS(828), - [anon_sym_i16] = ACTIONS(828), - [anon_sym_u32] = ACTIONS(828), - [anon_sym_i32] = ACTIONS(828), - [anon_sym_u64] = ACTIONS(828), - [anon_sym_i64] = ACTIONS(828), - [anon_sym_u128] = ACTIONS(828), - [anon_sym_i128] = ACTIONS(828), - [anon_sym_isize] = ACTIONS(828), - [anon_sym_usize] = ACTIONS(828), - [anon_sym_f32] = ACTIONS(828), - [anon_sym_f64] = ACTIONS(828), - [anon_sym_bool] = ACTIONS(828), - [anon_sym_str] = ACTIONS(828), - [anon_sym_char] = ACTIONS(828), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(830), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(832), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym__attr] = STATE(2362), + [sym_custom_attr] = STATE(2362), + [sym_built_in_attr] = STATE(2362), + [sym__built_in_attr_path] = STATE(1766), + [sym_bracketed_type] = STATE(2322), + [sym_generic_type_with_turbofish] = STATE(2525), + [sym_scoped_identifier] = STATE(1563), + [sym_identifier] = ACTIONS(852), + [anon_sym_path] = ACTIONS(854), + [anon_sym_u8] = ACTIONS(856), + [anon_sym_i8] = ACTIONS(856), + [anon_sym_u16] = ACTIONS(856), + [anon_sym_i16] = ACTIONS(856), + [anon_sym_u32] = ACTIONS(856), + [anon_sym_i32] = ACTIONS(856), + [anon_sym_u64] = ACTIONS(856), + [anon_sym_i64] = ACTIONS(856), + [anon_sym_u128] = ACTIONS(856), + [anon_sym_i128] = ACTIONS(856), + [anon_sym_isize] = ACTIONS(856), + [anon_sym_usize] = ACTIONS(856), + [anon_sym_f32] = ACTIONS(856), + [anon_sym_f64] = ACTIONS(856), + [anon_sym_bool] = ACTIONS(856), + [anon_sym_str] = ACTIONS(856), + [anon_sym_char] = ACTIONS(856), + [anon_sym_default] = ACTIONS(856), + [anon_sym_union] = ACTIONS(856), + [anon_sym_cfg] = ACTIONS(854), + [anon_sym_cfg_attr] = ACTIONS(854), + [anon_sym_test] = ACTIONS(854), + [anon_sym_ignore] = ACTIONS(854), + [anon_sym_should_panic] = ACTIONS(854), + [anon_sym_derive] = ACTIONS(854), + [anon_sym_automatically_derived] = ACTIONS(854), + [anon_sym_macro_export] = ACTIONS(854), + [anon_sym_macro_use] = ACTIONS(854), + [anon_sym_proc_macro] = ACTIONS(854), + [anon_sym_proc_macro_derive] = ACTIONS(854), + [anon_sym_proc_macro_attribute] = ACTIONS(854), + [anon_sym_allow] = ACTIONS(854), + [anon_sym_warn] = ACTIONS(854), + [anon_sym_deny] = ACTIONS(854), + [anon_sym_forbid] = ACTIONS(854), + [anon_sym_deprecated] = ACTIONS(854), + [anon_sym_must_use] = ACTIONS(854), + [anon_sym_link] = ACTIONS(854), + [anon_sym_link_name] = ACTIONS(854), + [anon_sym_no_link] = ACTIONS(854), + [anon_sym_repr] = ACTIONS(854), + [anon_sym_crate_type] = ACTIONS(854), + [anon_sym_no_main] = ACTIONS(854), + [anon_sym_export_name] = ACTIONS(854), + [anon_sym_link_section] = ACTIONS(854), + [anon_sym_no_mangle] = ACTIONS(854), + [anon_sym_used] = ACTIONS(854), + [anon_sym_crate_name] = ACTIONS(854), + [anon_sym_inline] = ACTIONS(854), + [anon_sym_cold] = ACTIONS(854), + [anon_sym_no_builtins] = ACTIONS(854), + [anon_sym_target_feature] = ACTIONS(854), + [anon_sym_track_caller] = ACTIONS(854), + [anon_sym_doc] = ACTIONS(854), + [anon_sym_no_std] = ACTIONS(854), + [anon_sym_no_implicit_prelude] = ACTIONS(854), + [anon_sym_recursion_limit] = ACTIONS(854), + [anon_sym_type_length_limit] = ACTIONS(854), + [anon_sym_panic_handler] = ACTIONS(854), + [anon_sym_global_allocator] = ACTIONS(854), + [anon_sym_windows_subsystem] = ACTIONS(854), + [anon_sym_feature] = ACTIONS(854), + [anon_sym_non_exhaustive] = ACTIONS(854), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(836), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(838), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(840), - [sym_super] = ACTIONS(840), - [sym_crate] = ACTIONS(840), - [sym_metavariable] = ACTIONS(842), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(858), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_crate] = ACTIONS(860), + [sym_metavariable] = ACTIONS(862), [sym_block_comment] = ACTIONS(3), }, [217] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1433), - [sym_bracketed_type] = STATE(2509), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2510), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1779), - [sym_scoped_identifier] = STATE(1598), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1502), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(682), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(690), - [anon_sym_i8] = ACTIONS(690), - [anon_sym_u16] = ACTIONS(690), - [anon_sym_i16] = ACTIONS(690), - [anon_sym_u32] = ACTIONS(690), - [anon_sym_i32] = ACTIONS(690), - [anon_sym_u64] = ACTIONS(690), - [anon_sym_i64] = ACTIONS(690), - [anon_sym_u128] = ACTIONS(690), - [anon_sym_i128] = ACTIONS(690), - [anon_sym_isize] = ACTIONS(690), - [anon_sym_usize] = ACTIONS(690), - [anon_sym_f32] = ACTIONS(690), - [anon_sym_f64] = ACTIONS(690), - [anon_sym_bool] = ACTIONS(690), - [anon_sym_str] = ACTIONS(690), - [anon_sym_char] = ACTIONS(690), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), + [sym__attr] = STATE(2426), + [sym_custom_attr] = STATE(2426), + [sym_built_in_attr] = STATE(2426), + [sym__built_in_attr_path] = STATE(1766), + [sym_bracketed_type] = STATE(2322), + [sym_generic_type_with_turbofish] = STATE(2525), + [sym_scoped_identifier] = STATE(1563), + [sym_identifier] = ACTIONS(852), + [anon_sym_path] = ACTIONS(854), + [anon_sym_u8] = ACTIONS(856), + [anon_sym_i8] = ACTIONS(856), + [anon_sym_u16] = ACTIONS(856), + [anon_sym_i16] = ACTIONS(856), + [anon_sym_u32] = ACTIONS(856), + [anon_sym_i32] = ACTIONS(856), + [anon_sym_u64] = ACTIONS(856), + [anon_sym_i64] = ACTIONS(856), + [anon_sym_u128] = ACTIONS(856), + [anon_sym_i128] = ACTIONS(856), + [anon_sym_isize] = ACTIONS(856), + [anon_sym_usize] = ACTIONS(856), + [anon_sym_f32] = ACTIONS(856), + [anon_sym_f64] = ACTIONS(856), + [anon_sym_bool] = ACTIONS(856), + [anon_sym_str] = ACTIONS(856), + [anon_sym_char] = ACTIONS(856), [anon_sym_default] = ACTIONS(856), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(858), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [anon_sym_union] = ACTIONS(856), + [anon_sym_cfg] = ACTIONS(854), + [anon_sym_cfg_attr] = ACTIONS(854), + [anon_sym_test] = ACTIONS(854), + [anon_sym_ignore] = ACTIONS(854), + [anon_sym_should_panic] = ACTIONS(854), + [anon_sym_derive] = ACTIONS(854), + [anon_sym_automatically_derived] = ACTIONS(854), + [anon_sym_macro_export] = ACTIONS(854), + [anon_sym_macro_use] = ACTIONS(854), + [anon_sym_proc_macro] = ACTIONS(854), + [anon_sym_proc_macro_derive] = ACTIONS(854), + [anon_sym_proc_macro_attribute] = ACTIONS(854), + [anon_sym_allow] = ACTIONS(854), + [anon_sym_warn] = ACTIONS(854), + [anon_sym_deny] = ACTIONS(854), + [anon_sym_forbid] = ACTIONS(854), + [anon_sym_deprecated] = ACTIONS(854), + [anon_sym_must_use] = ACTIONS(854), + [anon_sym_link] = ACTIONS(854), + [anon_sym_link_name] = ACTIONS(854), + [anon_sym_no_link] = ACTIONS(854), + [anon_sym_repr] = ACTIONS(854), + [anon_sym_crate_type] = ACTIONS(854), + [anon_sym_no_main] = ACTIONS(854), + [anon_sym_export_name] = ACTIONS(854), + [anon_sym_link_section] = ACTIONS(854), + [anon_sym_no_mangle] = ACTIONS(854), + [anon_sym_used] = ACTIONS(854), + [anon_sym_crate_name] = ACTIONS(854), + [anon_sym_inline] = ACTIONS(854), + [anon_sym_cold] = ACTIONS(854), + [anon_sym_no_builtins] = ACTIONS(854), + [anon_sym_target_feature] = ACTIONS(854), + [anon_sym_track_caller] = ACTIONS(854), + [anon_sym_doc] = ACTIONS(854), + [anon_sym_no_std] = ACTIONS(854), + [anon_sym_no_implicit_prelude] = ACTIONS(854), + [anon_sym_recursion_limit] = ACTIONS(854), + [anon_sym_type_length_limit] = ACTIONS(854), + [anon_sym_panic_handler] = ACTIONS(854), + [anon_sym_global_allocator] = ACTIONS(854), + [anon_sym_windows_subsystem] = ACTIONS(854), + [anon_sym_feature] = ACTIONS(854), + [anon_sym_non_exhaustive] = ACTIONS(854), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(718), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(860), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(742), - [sym_super] = ACTIONS(742), - [sym_crate] = ACTIONS(742), - [sym_metavariable] = ACTIONS(744), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(858), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_crate] = ACTIONS(860), + [sym_metavariable] = ACTIONS(862), [sym_block_comment] = ACTIONS(3), }, [218] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1433), - [sym_bracketed_type] = STATE(2513), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2514), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1744), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1505), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1502), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(752), - [anon_sym_i8] = ACTIONS(752), - [anon_sym_u16] = ACTIONS(752), - [anon_sym_i16] = ACTIONS(752), - [anon_sym_u32] = ACTIONS(752), - [anon_sym_i32] = ACTIONS(752), - [anon_sym_u64] = ACTIONS(752), - [anon_sym_i64] = ACTIONS(752), - [anon_sym_u128] = ACTIONS(752), - [anon_sym_i128] = ACTIONS(752), - [anon_sym_isize] = ACTIONS(752), - [anon_sym_usize] = ACTIONS(752), - [anon_sym_f32] = ACTIONS(752), - [anon_sym_f64] = ACTIONS(752), - [anon_sym_bool] = ACTIONS(752), - [anon_sym_str] = ACTIONS(752), - [anon_sym_char] = ACTIONS(752), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(696), - [anon_sym_default] = ACTIONS(808), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(810), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_ref] = ACTIONS(716), + [sym__attr] = STATE(2328), + [sym_custom_attr] = STATE(2328), + [sym_built_in_attr] = STATE(2328), + [sym__built_in_attr_path] = STATE(1766), + [sym_bracketed_type] = STATE(2322), + [sym_generic_type_with_turbofish] = STATE(2525), + [sym_scoped_identifier] = STATE(1563), + [sym_identifier] = ACTIONS(852), + [anon_sym_path] = ACTIONS(854), + [anon_sym_u8] = ACTIONS(856), + [anon_sym_i8] = ACTIONS(856), + [anon_sym_u16] = ACTIONS(856), + [anon_sym_i16] = ACTIONS(856), + [anon_sym_u32] = ACTIONS(856), + [anon_sym_i32] = ACTIONS(856), + [anon_sym_u64] = ACTIONS(856), + [anon_sym_i64] = ACTIONS(856), + [anon_sym_u128] = ACTIONS(856), + [anon_sym_i128] = ACTIONS(856), + [anon_sym_isize] = ACTIONS(856), + [anon_sym_usize] = ACTIONS(856), + [anon_sym_f32] = ACTIONS(856), + [anon_sym_f64] = ACTIONS(856), + [anon_sym_bool] = ACTIONS(856), + [anon_sym_str] = ACTIONS(856), + [anon_sym_char] = ACTIONS(856), + [anon_sym_default] = ACTIONS(856), + [anon_sym_union] = ACTIONS(856), + [anon_sym_cfg] = ACTIONS(854), + [anon_sym_cfg_attr] = ACTIONS(854), + [anon_sym_test] = ACTIONS(854), + [anon_sym_ignore] = ACTIONS(854), + [anon_sym_should_panic] = ACTIONS(854), + [anon_sym_derive] = ACTIONS(854), + [anon_sym_automatically_derived] = ACTIONS(854), + [anon_sym_macro_export] = ACTIONS(854), + [anon_sym_macro_use] = ACTIONS(854), + [anon_sym_proc_macro] = ACTIONS(854), + [anon_sym_proc_macro_derive] = ACTIONS(854), + [anon_sym_proc_macro_attribute] = ACTIONS(854), + [anon_sym_allow] = ACTIONS(854), + [anon_sym_warn] = ACTIONS(854), + [anon_sym_deny] = ACTIONS(854), + [anon_sym_forbid] = ACTIONS(854), + [anon_sym_deprecated] = ACTIONS(854), + [anon_sym_must_use] = ACTIONS(854), + [anon_sym_link] = ACTIONS(854), + [anon_sym_link_name] = ACTIONS(854), + [anon_sym_no_link] = ACTIONS(854), + [anon_sym_repr] = ACTIONS(854), + [anon_sym_crate_type] = ACTIONS(854), + [anon_sym_no_main] = ACTIONS(854), + [anon_sym_export_name] = ACTIONS(854), + [anon_sym_link_section] = ACTIONS(854), + [anon_sym_no_mangle] = ACTIONS(854), + [anon_sym_used] = ACTIONS(854), + [anon_sym_crate_name] = ACTIONS(854), + [anon_sym_inline] = ACTIONS(854), + [anon_sym_cold] = ACTIONS(854), + [anon_sym_no_builtins] = ACTIONS(854), + [anon_sym_target_feature] = ACTIONS(854), + [anon_sym_track_caller] = ACTIONS(854), + [anon_sym_doc] = ACTIONS(854), + [anon_sym_no_std] = ACTIONS(854), + [anon_sym_no_implicit_prelude] = ACTIONS(854), + [anon_sym_recursion_limit] = ACTIONS(854), + [anon_sym_type_length_limit] = ACTIONS(854), + [anon_sym_panic_handler] = ACTIONS(854), + [anon_sym_global_allocator] = ACTIONS(854), + [anon_sym_windows_subsystem] = ACTIONS(854), + [anon_sym_feature] = ACTIONS(854), + [anon_sym_non_exhaustive] = ACTIONS(854), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(816), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(768), - [sym_crate] = ACTIONS(768), - [sym_metavariable] = ACTIONS(770), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(858), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_crate] = ACTIONS(860), + [sym_metavariable] = ACTIONS(862), [sym_block_comment] = ACTIONS(3), }, [219] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1480), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(878), - [anon_sym_LPAREN] = ACTIONS(880), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(880), + [sym_identifier] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_LBRACK] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_u8] = ACTIONS(408), + [anon_sym_i8] = ACTIONS(408), + [anon_sym_u16] = ACTIONS(408), + [anon_sym_i16] = ACTIONS(408), + [anon_sym_u32] = ACTIONS(408), + [anon_sym_i32] = ACTIONS(408), + [anon_sym_u64] = ACTIONS(408), + [anon_sym_i64] = ACTIONS(408), + [anon_sym_u128] = ACTIONS(408), + [anon_sym_i128] = ACTIONS(408), + [anon_sym_isize] = ACTIONS(408), + [anon_sym_usize] = ACTIONS(408), + [anon_sym_f32] = ACTIONS(408), + [anon_sym_f64] = ACTIONS(408), + [anon_sym_bool] = ACTIONS(408), + [anon_sym_str] = ACTIONS(408), + [anon_sym_char] = ACTIONS(408), + [anon_sym_as] = ACTIONS(408), + [anon_sym_const] = ACTIONS(408), + [anon_sym_default] = ACTIONS(408), + [anon_sym_union] = ACTIONS(408), + [anon_sym_POUND] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(408), + [anon_sym_COMMA] = ACTIONS(406), + [anon_sym_ref] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(408), + [anon_sym_GT] = ACTIONS(408), + [anon_sym_COLON_COLON] = ACTIONS(406), + [anon_sym__] = ACTIONS(408), + [anon_sym_AMP] = ACTIONS(408), + [anon_sym_DOT_DOT_DOT] = ACTIONS(406), + [sym_mutable_specifier] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(408), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(408), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(408), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(408), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_SLASH] = ACTIONS(408), + [anon_sym_PERCENT] = ACTIONS(408), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_PERCENT_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_CARET_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_else] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(408), + [sym_integer_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(406), + [sym_char_literal] = ACTIONS(406), + [anon_sym_true] = ACTIONS(408), + [anon_sym_false] = ACTIONS(408), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_crate] = ACTIONS(408), + [sym_metavariable] = ACTIONS(406), + [sym_raw_string_literal] = ACTIONS(406), + [sym_float_literal] = ACTIONS(406), + [sym_block_comment] = ACTIONS(3), + }, + [220] = { + [sym_identifier] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(410), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_LBRACK] = ACTIONS(410), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_QMARK] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_as] = ACTIONS(412), + [anon_sym_const] = ACTIONS(412), + [anon_sym_default] = ACTIONS(412), + [anon_sym_union] = ACTIONS(412), + [anon_sym_POUND] = ACTIONS(410), + [anon_sym_EQ] = ACTIONS(412), + [anon_sym_COMMA] = ACTIONS(410), + [anon_sym_ref] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(412), + [anon_sym_GT] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym__] = ACTIONS(412), + [anon_sym_AMP] = ACTIONS(412), + [anon_sym_DOT_DOT_DOT] = ACTIONS(410), + [sym_mutable_specifier] = ACTIONS(412), + [anon_sym_DOT_DOT] = ACTIONS(412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_AMP_AMP] = ACTIONS(410), + [anon_sym_PIPE_PIPE] = ACTIONS(410), + [anon_sym_PIPE] = ACTIONS(412), + [anon_sym_CARET] = ACTIONS(412), + [anon_sym_EQ_EQ] = ACTIONS(410), + [anon_sym_BANG_EQ] = ACTIONS(410), + [anon_sym_LT_EQ] = ACTIONS(410), + [anon_sym_GT_EQ] = ACTIONS(410), + [anon_sym_LT_LT] = ACTIONS(412), + [anon_sym_GT_GT] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(412), + [anon_sym_PERCENT] = ACTIONS(412), + [anon_sym_PLUS_EQ] = ACTIONS(410), + [anon_sym_DASH_EQ] = ACTIONS(410), + [anon_sym_STAR_EQ] = ACTIONS(410), + [anon_sym_SLASH_EQ] = ACTIONS(410), + [anon_sym_PERCENT_EQ] = ACTIONS(410), + [anon_sym_AMP_EQ] = ACTIONS(410), + [anon_sym_PIPE_EQ] = ACTIONS(410), + [anon_sym_CARET_EQ] = ACTIONS(410), + [anon_sym_LT_LT_EQ] = ACTIONS(410), + [anon_sym_GT_GT_EQ] = ACTIONS(410), + [anon_sym_else] = ACTIONS(412), + [anon_sym_DOT] = ACTIONS(412), + [sym_integer_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(410), + [sym_char_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(412), + [sym_super] = ACTIONS(412), + [sym_crate] = ACTIONS(412), + [sym_metavariable] = ACTIONS(410), + [sym_raw_string_literal] = ACTIONS(410), + [sym_float_literal] = ACTIONS(410), + [sym_block_comment] = ACTIONS(3), + }, + [221] = { + [sym_identifier] = ACTIONS(416), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_RBRACE] = ACTIONS(414), + [anon_sym_LBRACK] = ACTIONS(414), + [anon_sym_PLUS] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(416), + [anon_sym_QMARK] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(416), + [anon_sym_i8] = ACTIONS(416), + [anon_sym_u16] = ACTIONS(416), + [anon_sym_i16] = ACTIONS(416), + [anon_sym_u32] = ACTIONS(416), + [anon_sym_i32] = ACTIONS(416), + [anon_sym_u64] = ACTIONS(416), + [anon_sym_i64] = ACTIONS(416), + [anon_sym_u128] = ACTIONS(416), + [anon_sym_i128] = ACTIONS(416), + [anon_sym_isize] = ACTIONS(416), + [anon_sym_usize] = ACTIONS(416), + [anon_sym_f32] = ACTIONS(416), + [anon_sym_f64] = ACTIONS(416), + [anon_sym_bool] = ACTIONS(416), + [anon_sym_str] = ACTIONS(416), + [anon_sym_char] = ACTIONS(416), + [anon_sym_as] = ACTIONS(416), + [anon_sym_const] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_union] = ACTIONS(416), + [anon_sym_POUND] = ACTIONS(414), + [anon_sym_EQ] = ACTIONS(416), + [anon_sym_COMMA] = ACTIONS(414), + [anon_sym_ref] = ACTIONS(416), + [anon_sym_LT] = ACTIONS(416), + [anon_sym_GT] = ACTIONS(416), + [anon_sym_COLON_COLON] = ACTIONS(414), + [anon_sym__] = ACTIONS(416), + [anon_sym_AMP] = ACTIONS(416), + [anon_sym_DOT_DOT_DOT] = ACTIONS(414), + [sym_mutable_specifier] = ACTIONS(416), + [anon_sym_DOT_DOT] = ACTIONS(416), + [anon_sym_DOT_DOT_EQ] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(416), + [anon_sym_AMP_AMP] = ACTIONS(414), + [anon_sym_PIPE_PIPE] = ACTIONS(414), + [anon_sym_PIPE] = ACTIONS(416), + [anon_sym_CARET] = ACTIONS(416), + [anon_sym_EQ_EQ] = ACTIONS(414), + [anon_sym_BANG_EQ] = ACTIONS(414), + [anon_sym_LT_EQ] = ACTIONS(414), + [anon_sym_GT_EQ] = ACTIONS(414), + [anon_sym_LT_LT] = ACTIONS(416), + [anon_sym_GT_GT] = ACTIONS(416), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_PERCENT] = ACTIONS(416), + [anon_sym_PLUS_EQ] = ACTIONS(414), + [anon_sym_DASH_EQ] = ACTIONS(414), + [anon_sym_STAR_EQ] = ACTIONS(414), + [anon_sym_SLASH_EQ] = ACTIONS(414), + [anon_sym_PERCENT_EQ] = ACTIONS(414), + [anon_sym_AMP_EQ] = ACTIONS(414), + [anon_sym_PIPE_EQ] = ACTIONS(414), + [anon_sym_CARET_EQ] = ACTIONS(414), + [anon_sym_LT_LT_EQ] = ACTIONS(414), + [anon_sym_GT_GT_EQ] = ACTIONS(414), + [anon_sym_else] = ACTIONS(416), + [anon_sym_DOT] = ACTIONS(416), + [sym_integer_literal] = ACTIONS(414), + [aux_sym_string_literal_token1] = ACTIONS(414), + [sym_char_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(416), + [sym_super] = ACTIONS(416), + [sym_crate] = ACTIONS(416), + [sym_metavariable] = ACTIONS(414), + [sym_raw_string_literal] = ACTIONS(414), + [sym_float_literal] = ACTIONS(414), + [sym_block_comment] = ACTIONS(3), + }, + [222] = { + [sym_identifier] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(512), + [anon_sym_RBRACE] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(514), + [anon_sym_STAR] = ACTIONS(514), + [anon_sym_QMARK] = ACTIONS(512), + [anon_sym_u8] = ACTIONS(514), + [anon_sym_i8] = ACTIONS(514), + [anon_sym_u16] = ACTIONS(514), + [anon_sym_i16] = ACTIONS(514), + [anon_sym_u32] = ACTIONS(514), + [anon_sym_i32] = ACTIONS(514), + [anon_sym_u64] = ACTIONS(514), + [anon_sym_i64] = ACTIONS(514), + [anon_sym_u128] = ACTIONS(514), + [anon_sym_i128] = ACTIONS(514), + [anon_sym_isize] = ACTIONS(514), + [anon_sym_usize] = ACTIONS(514), + [anon_sym_f32] = ACTIONS(514), + [anon_sym_f64] = ACTIONS(514), + [anon_sym_bool] = ACTIONS(514), + [anon_sym_str] = ACTIONS(514), + [anon_sym_char] = ACTIONS(514), + [anon_sym_as] = ACTIONS(514), + [anon_sym_const] = ACTIONS(514), + [anon_sym_default] = ACTIONS(514), + [anon_sym_union] = ACTIONS(514), + [anon_sym_POUND] = ACTIONS(512), + [anon_sym_EQ] = ACTIONS(514), + [anon_sym_COMMA] = ACTIONS(512), + [anon_sym_ref] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(514), + [anon_sym_GT] = ACTIONS(514), + [anon_sym_COLON_COLON] = ACTIONS(512), + [anon_sym__] = ACTIONS(514), + [anon_sym_AMP] = ACTIONS(514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(512), + [sym_mutable_specifier] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(514), + [anon_sym_AMP_AMP] = ACTIONS(512), + [anon_sym_PIPE_PIPE] = ACTIONS(512), + [anon_sym_PIPE] = ACTIONS(514), + [anon_sym_CARET] = ACTIONS(514), + [anon_sym_EQ_EQ] = ACTIONS(512), + [anon_sym_BANG_EQ] = ACTIONS(512), + [anon_sym_LT_EQ] = ACTIONS(512), + [anon_sym_GT_EQ] = ACTIONS(512), + [anon_sym_LT_LT] = ACTIONS(514), + [anon_sym_GT_GT] = ACTIONS(514), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_PLUS_EQ] = ACTIONS(512), + [anon_sym_DASH_EQ] = ACTIONS(512), + [anon_sym_STAR_EQ] = ACTIONS(512), + [anon_sym_SLASH_EQ] = ACTIONS(512), + [anon_sym_PERCENT_EQ] = ACTIONS(512), + [anon_sym_AMP_EQ] = ACTIONS(512), + [anon_sym_PIPE_EQ] = ACTIONS(512), + [anon_sym_CARET_EQ] = ACTIONS(512), + [anon_sym_LT_LT_EQ] = ACTIONS(512), + [anon_sym_GT_GT_EQ] = ACTIONS(512), + [anon_sym_DOT] = ACTIONS(514), + [sym_integer_literal] = ACTIONS(512), + [aux_sym_string_literal_token1] = ACTIONS(512), + [sym_char_literal] = ACTIONS(512), + [anon_sym_true] = ACTIONS(514), + [anon_sym_false] = ACTIONS(514), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(514), + [sym_super] = ACTIONS(514), + [sym_crate] = ACTIONS(514), + [sym_metavariable] = ACTIONS(512), + [sym_raw_string_literal] = ACTIONS(512), + [sym_float_literal] = ACTIONS(512), + [sym_block_comment] = ACTIONS(3), + }, + [223] = { + [sym_identifier] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_u8] = ACTIONS(480), + [anon_sym_i8] = ACTIONS(480), + [anon_sym_u16] = ACTIONS(480), + [anon_sym_i16] = ACTIONS(480), + [anon_sym_u32] = ACTIONS(480), + [anon_sym_i32] = ACTIONS(480), + [anon_sym_u64] = ACTIONS(480), + [anon_sym_i64] = ACTIONS(480), + [anon_sym_u128] = ACTIONS(480), + [anon_sym_i128] = ACTIONS(480), + [anon_sym_isize] = ACTIONS(480), + [anon_sym_usize] = ACTIONS(480), + [anon_sym_f32] = ACTIONS(480), + [anon_sym_f64] = ACTIONS(480), + [anon_sym_bool] = ACTIONS(480), + [anon_sym_str] = ACTIONS(480), + [anon_sym_char] = ACTIONS(480), + [anon_sym_as] = ACTIONS(480), + [anon_sym_const] = ACTIONS(480), + [anon_sym_default] = ACTIONS(480), + [anon_sym_union] = ACTIONS(480), + [anon_sym_POUND] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(480), + [anon_sym_COMMA] = ACTIONS(478), + [anon_sym_ref] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_COLON_COLON] = ACTIONS(478), + [anon_sym__] = ACTIONS(480), + [anon_sym_AMP] = ACTIONS(480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(478), + [sym_mutable_specifier] = ACTIONS(480), + [anon_sym_DOT_DOT] = ACTIONS(480), + [anon_sym_DOT_DOT_EQ] = ACTIONS(478), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_AMP_AMP] = ACTIONS(478), + [anon_sym_PIPE_PIPE] = ACTIONS(478), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_CARET] = ACTIONS(480), + [anon_sym_EQ_EQ] = ACTIONS(478), + [anon_sym_BANG_EQ] = ACTIONS(478), + [anon_sym_LT_EQ] = ACTIONS(478), + [anon_sym_GT_EQ] = ACTIONS(478), + [anon_sym_LT_LT] = ACTIONS(480), + [anon_sym_GT_GT] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_PERCENT] = ACTIONS(480), + [anon_sym_PLUS_EQ] = ACTIONS(478), + [anon_sym_DASH_EQ] = ACTIONS(478), + [anon_sym_STAR_EQ] = ACTIONS(478), + [anon_sym_SLASH_EQ] = ACTIONS(478), + [anon_sym_PERCENT_EQ] = ACTIONS(478), + [anon_sym_AMP_EQ] = ACTIONS(478), + [anon_sym_PIPE_EQ] = ACTIONS(478), + [anon_sym_CARET_EQ] = ACTIONS(478), + [anon_sym_LT_LT_EQ] = ACTIONS(478), + [anon_sym_GT_GT_EQ] = ACTIONS(478), + [anon_sym_DOT] = ACTIONS(480), + [sym_integer_literal] = ACTIONS(478), + [aux_sym_string_literal_token1] = ACTIONS(478), + [sym_char_literal] = ACTIONS(478), + [anon_sym_true] = ACTIONS(480), + [anon_sym_false] = ACTIONS(480), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(480), + [sym_super] = ACTIONS(480), + [sym_crate] = ACTIONS(480), + [sym_metavariable] = ACTIONS(478), + [sym_raw_string_literal] = ACTIONS(478), + [sym_float_literal] = ACTIONS(478), + [sym_block_comment] = ACTIONS(3), + }, + [224] = { + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(458), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(460), + [anon_sym_QMARK] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(460), + [anon_sym_i8] = ACTIONS(460), + [anon_sym_u16] = ACTIONS(460), + [anon_sym_i16] = ACTIONS(460), + [anon_sym_u32] = ACTIONS(460), + [anon_sym_i32] = ACTIONS(460), + [anon_sym_u64] = ACTIONS(460), + [anon_sym_i64] = ACTIONS(460), + [anon_sym_u128] = ACTIONS(460), + [anon_sym_i128] = ACTIONS(460), + [anon_sym_isize] = ACTIONS(460), + [anon_sym_usize] = ACTIONS(460), + [anon_sym_f32] = ACTIONS(460), + [anon_sym_f64] = ACTIONS(460), + [anon_sym_bool] = ACTIONS(460), + [anon_sym_str] = ACTIONS(460), + [anon_sym_char] = ACTIONS(460), + [anon_sym_as] = ACTIONS(460), + [anon_sym_const] = ACTIONS(460), + [anon_sym_default] = ACTIONS(460), + [anon_sym_union] = ACTIONS(460), + [anon_sym_POUND] = ACTIONS(458), + [anon_sym_EQ] = ACTIONS(460), + [anon_sym_COMMA] = ACTIONS(458), + [anon_sym_ref] = ACTIONS(460), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_COLON_COLON] = ACTIONS(458), + [anon_sym__] = ACTIONS(460), + [anon_sym_AMP] = ACTIONS(460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(458), + [sym_mutable_specifier] = ACTIONS(460), + [anon_sym_DOT_DOT] = ACTIONS(460), + [anon_sym_DOT_DOT_EQ] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(460), + [anon_sym_AMP_AMP] = ACTIONS(458), + [anon_sym_PIPE_PIPE] = ACTIONS(458), + [anon_sym_PIPE] = ACTIONS(460), + [anon_sym_CARET] = ACTIONS(460), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT_EQ] = ACTIONS(458), + [anon_sym_GT_EQ] = ACTIONS(458), + [anon_sym_LT_LT] = ACTIONS(460), + [anon_sym_GT_GT] = ACTIONS(460), + [anon_sym_SLASH] = ACTIONS(460), + [anon_sym_PERCENT] = ACTIONS(460), + [anon_sym_PLUS_EQ] = ACTIONS(458), + [anon_sym_DASH_EQ] = ACTIONS(458), + [anon_sym_STAR_EQ] = ACTIONS(458), + [anon_sym_SLASH_EQ] = ACTIONS(458), + [anon_sym_PERCENT_EQ] = ACTIONS(458), + [anon_sym_AMP_EQ] = ACTIONS(458), + [anon_sym_PIPE_EQ] = ACTIONS(458), + [anon_sym_CARET_EQ] = ACTIONS(458), + [anon_sym_LT_LT_EQ] = ACTIONS(458), + [anon_sym_GT_GT_EQ] = ACTIONS(458), + [anon_sym_DOT] = ACTIONS(460), + [sym_integer_literal] = ACTIONS(458), + [aux_sym_string_literal_token1] = ACTIONS(458), + [sym_char_literal] = ACTIONS(458), + [anon_sym_true] = ACTIONS(460), + [anon_sym_false] = ACTIONS(460), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(460), + [sym_super] = ACTIONS(460), + [sym_crate] = ACTIONS(460), + [sym_metavariable] = ACTIONS(458), + [sym_raw_string_literal] = ACTIONS(458), + [sym_float_literal] = ACTIONS(458), + [sym_block_comment] = ACTIONS(3), + }, + [225] = { + [sym_identifier] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_RBRACE] = ACTIONS(474), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(474), + [anon_sym_u8] = ACTIONS(476), + [anon_sym_i8] = ACTIONS(476), + [anon_sym_u16] = ACTIONS(476), + [anon_sym_i16] = ACTIONS(476), + [anon_sym_u32] = ACTIONS(476), + [anon_sym_i32] = ACTIONS(476), + [anon_sym_u64] = ACTIONS(476), + [anon_sym_i64] = ACTIONS(476), + [anon_sym_u128] = ACTIONS(476), + [anon_sym_i128] = ACTIONS(476), + [anon_sym_isize] = ACTIONS(476), + [anon_sym_usize] = ACTIONS(476), + [anon_sym_f32] = ACTIONS(476), + [anon_sym_f64] = ACTIONS(476), + [anon_sym_bool] = ACTIONS(476), + [anon_sym_str] = ACTIONS(476), + [anon_sym_char] = ACTIONS(476), + [anon_sym_as] = ACTIONS(476), + [anon_sym_const] = ACTIONS(476), + [anon_sym_default] = ACTIONS(476), + [anon_sym_union] = ACTIONS(476), + [anon_sym_POUND] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_COMMA] = ACTIONS(474), + [anon_sym_ref] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(474), + [anon_sym__] = ACTIONS(476), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(474), + [sym_mutable_specifier] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(474), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_AMP_AMP] = ACTIONS(474), + [anon_sym_PIPE_PIPE] = ACTIONS(474), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_EQ_EQ] = ACTIONS(474), + [anon_sym_BANG_EQ] = ACTIONS(474), + [anon_sym_LT_EQ] = ACTIONS(474), + [anon_sym_GT_EQ] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(476), + [anon_sym_GT_GT] = ACTIONS(476), + [anon_sym_SLASH] = ACTIONS(476), + [anon_sym_PERCENT] = ACTIONS(476), + [anon_sym_PLUS_EQ] = ACTIONS(474), + [anon_sym_DASH_EQ] = ACTIONS(474), + [anon_sym_STAR_EQ] = ACTIONS(474), + [anon_sym_SLASH_EQ] = ACTIONS(474), + [anon_sym_PERCENT_EQ] = ACTIONS(474), + [anon_sym_AMP_EQ] = ACTIONS(474), + [anon_sym_PIPE_EQ] = ACTIONS(474), + [anon_sym_CARET_EQ] = ACTIONS(474), + [anon_sym_LT_LT_EQ] = ACTIONS(474), + [anon_sym_GT_GT_EQ] = ACTIONS(474), + [anon_sym_DOT] = ACTIONS(476), + [sym_integer_literal] = ACTIONS(474), + [aux_sym_string_literal_token1] = ACTIONS(474), + [sym_char_literal] = ACTIONS(474), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(476), + [sym_crate] = ACTIONS(476), + [sym_metavariable] = ACTIONS(474), + [sym_raw_string_literal] = ACTIONS(474), + [sym_float_literal] = ACTIONS(474), + [sym_block_comment] = ACTIONS(3), + }, + [226] = { + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RBRACE] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(422), + [anon_sym_QMARK] = ACTIONS(424), + [anon_sym_u8] = ACTIONS(866), + [anon_sym_i8] = ACTIONS(866), + [anon_sym_u16] = ACTIONS(866), + [anon_sym_i16] = ACTIONS(866), + [anon_sym_u32] = ACTIONS(866), + [anon_sym_i32] = ACTIONS(866), + [anon_sym_u64] = ACTIONS(866), + [anon_sym_i64] = ACTIONS(866), + [anon_sym_u128] = ACTIONS(866), + [anon_sym_i128] = ACTIONS(866), + [anon_sym_isize] = ACTIONS(866), + [anon_sym_usize] = ACTIONS(866), + [anon_sym_f32] = ACTIONS(866), + [anon_sym_f64] = ACTIONS(866), + [anon_sym_bool] = ACTIONS(866), + [anon_sym_str] = ACTIONS(866), + [anon_sym_char] = ACTIONS(866), + [anon_sym_as] = ACTIONS(422), + [anon_sym_const] = ACTIONS(866), + [anon_sym_default] = ACTIONS(866), + [anon_sym_union] = ACTIONS(866), + [anon_sym_POUND] = ACTIONS(868), + [anon_sym_EQ] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(424), + [anon_sym_ref] = ACTIONS(866), + [anon_sym_LT] = ACTIONS(866), + [anon_sym_GT] = ACTIONS(422), + [anon_sym_COLON_COLON] = ACTIONS(868), + [anon_sym__] = ACTIONS(866), + [anon_sym_AMP] = ACTIONS(866), + [anon_sym_DOT_DOT_DOT] = ACTIONS(424), + [sym_mutable_specifier] = ACTIONS(866), + [anon_sym_DOT_DOT] = ACTIONS(866), + [anon_sym_DOT_DOT_EQ] = ACTIONS(424), + [anon_sym_DASH] = ACTIONS(866), + [anon_sym_AMP_AMP] = ACTIONS(424), + [anon_sym_PIPE_PIPE] = ACTIONS(424), + [anon_sym_PIPE] = ACTIONS(422), + [anon_sym_CARET] = ACTIONS(422), + [anon_sym_EQ_EQ] = ACTIONS(424), + [anon_sym_BANG_EQ] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(424), + [anon_sym_GT_EQ] = ACTIONS(424), + [anon_sym_LT_LT] = ACTIONS(422), + [anon_sym_GT_GT] = ACTIONS(422), + [anon_sym_SLASH] = ACTIONS(422), + [anon_sym_PERCENT] = ACTIONS(422), + [anon_sym_PLUS_EQ] = ACTIONS(424), + [anon_sym_DASH_EQ] = ACTIONS(424), + [anon_sym_STAR_EQ] = ACTIONS(424), + [anon_sym_SLASH_EQ] = ACTIONS(424), + [anon_sym_PERCENT_EQ] = ACTIONS(424), + [anon_sym_AMP_EQ] = ACTIONS(424), + [anon_sym_PIPE_EQ] = ACTIONS(424), + [anon_sym_CARET_EQ] = ACTIONS(424), + [anon_sym_LT_LT_EQ] = ACTIONS(424), + [anon_sym_GT_GT_EQ] = ACTIONS(424), + [anon_sym_DOT] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(868), + [aux_sym_string_literal_token1] = ACTIONS(868), + [sym_char_literal] = ACTIONS(868), + [anon_sym_true] = ACTIONS(866), + [anon_sym_false] = ACTIONS(866), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(866), + [sym_super] = ACTIONS(866), + [sym_crate] = ACTIONS(866), + [sym_metavariable] = ACTIONS(868), + [sym_raw_string_literal] = ACTIONS(868), + [sym_float_literal] = ACTIONS(868), + [sym_block_comment] = ACTIONS(3), + }, + [227] = { + [sym_identifier] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(442), + [anon_sym_RBRACE] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_STAR] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(442), + [anon_sym_u8] = ACTIONS(444), + [anon_sym_i8] = ACTIONS(444), + [anon_sym_u16] = ACTIONS(444), + [anon_sym_i16] = ACTIONS(444), + [anon_sym_u32] = ACTIONS(444), + [anon_sym_i32] = ACTIONS(444), + [anon_sym_u64] = ACTIONS(444), + [anon_sym_i64] = ACTIONS(444), + [anon_sym_u128] = ACTIONS(444), + [anon_sym_i128] = ACTIONS(444), + [anon_sym_isize] = ACTIONS(444), + [anon_sym_usize] = ACTIONS(444), + [anon_sym_f32] = ACTIONS(444), + [anon_sym_f64] = ACTIONS(444), + [anon_sym_bool] = ACTIONS(444), + [anon_sym_str] = ACTIONS(444), + [anon_sym_char] = ACTIONS(444), + [anon_sym_as] = ACTIONS(444), + [anon_sym_const] = ACTIONS(444), + [anon_sym_default] = ACTIONS(444), + [anon_sym_union] = ACTIONS(444), + [anon_sym_POUND] = ACTIONS(442), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_COMMA] = ACTIONS(442), + [anon_sym_ref] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_GT] = ACTIONS(444), + [anon_sym_COLON_COLON] = ACTIONS(442), + [anon_sym__] = ACTIONS(444), + [anon_sym_AMP] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(442), + [sym_mutable_specifier] = ACTIONS(444), + [anon_sym_DOT_DOT] = ACTIONS(444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_AMP_AMP] = ACTIONS(442), + [anon_sym_PIPE_PIPE] = ACTIONS(442), + [anon_sym_PIPE] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_EQ_EQ] = ACTIONS(442), + [anon_sym_BANG_EQ] = ACTIONS(442), + [anon_sym_LT_EQ] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(442), + [anon_sym_LT_LT] = ACTIONS(444), + [anon_sym_GT_GT] = ACTIONS(444), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_PERCENT] = ACTIONS(444), + [anon_sym_PLUS_EQ] = ACTIONS(442), + [anon_sym_DASH_EQ] = ACTIONS(442), + [anon_sym_STAR_EQ] = ACTIONS(442), + [anon_sym_SLASH_EQ] = ACTIONS(442), + [anon_sym_PERCENT_EQ] = ACTIONS(442), + [anon_sym_AMP_EQ] = ACTIONS(442), + [anon_sym_PIPE_EQ] = ACTIONS(442), + [anon_sym_CARET_EQ] = ACTIONS(442), + [anon_sym_LT_LT_EQ] = ACTIONS(442), + [anon_sym_GT_GT_EQ] = ACTIONS(442), + [anon_sym_DOT] = ACTIONS(444), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(442), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(444), + [anon_sym_false] = ACTIONS(444), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(444), + [sym_super] = ACTIONS(444), + [sym_crate] = ACTIONS(444), + [sym_metavariable] = ACTIONS(442), + [sym_raw_string_literal] = ACTIONS(442), + [sym_float_literal] = ACTIONS(442), + [sym_block_comment] = ACTIONS(3), + }, + [228] = { + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1990), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2002), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_type_binding] = STATE(2275), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [sym_block] = STATE(2275), + [sym__literal] = STATE(2275), + [sym_string_literal] = STATE(2136), + [sym_boolean_literal] = STATE(2136), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), [anon_sym_u8] = ACTIONS(878), [anon_sym_i8] = ACTIONS(878), [anon_sym_u16] = ACTIONS(878), @@ -40373,6385 +40575,5262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(878), [anon_sym_str] = ACTIONS(878), [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(878), - [anon_sym_async] = ACTIONS(878), - [anon_sym_break] = ACTIONS(878), - [anon_sym_const] = ACTIONS(878), - [anon_sym_continue] = ACTIONS(878), - [anon_sym_default] = ACTIONS(878), - [anon_sym_for] = ACTIONS(878), - [anon_sym_if] = ACTIONS(878), - [anon_sym_loop] = ACTIONS(878), - [anon_sym_match] = ACTIONS(878), - [anon_sym_return] = ACTIONS(878), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(878), - [anon_sym_while] = ACTIONS(878), - [anon_sym_BANG] = ACTIONS(880), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_DASH_GT] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_COLON_COLON] = ACTIONS(880), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(880), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(880), - [anon_sym_DASH] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(880), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_move] = ACTIONS(878), - [sym_integer_literal] = ACTIONS(880), - [aux_sym_string_literal_token1] = ACTIONS(880), - [sym_char_literal] = ACTIONS(880), - [anon_sym_true] = ACTIONS(878), - [anon_sym_false] = ACTIONS(878), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(878), - [sym_super] = ACTIONS(878), - [sym_crate] = ACTIONS(878), - [sym_metavariable] = ACTIONS(880), - [sym_raw_string_literal] = ACTIONS(880), - [sym_float_literal] = ACTIONS(880), - [sym_block_comment] = ACTIONS(3), - }, - [220] = { - [sym_else_clause] = STATE(247), - [sym_identifier] = ACTIONS(394), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(394), - [anon_sym_i8] = ACTIONS(394), - [anon_sym_u16] = ACTIONS(394), - [anon_sym_i16] = ACTIONS(394), - [anon_sym_u32] = ACTIONS(394), - [anon_sym_i32] = ACTIONS(394), - [anon_sym_u64] = ACTIONS(394), - [anon_sym_i64] = ACTIONS(394), - [anon_sym_u128] = ACTIONS(394), - [anon_sym_i128] = ACTIONS(394), - [anon_sym_isize] = ACTIONS(394), - [anon_sym_usize] = ACTIONS(394), - [anon_sym_f32] = ACTIONS(394), - [anon_sym_f64] = ACTIONS(394), - [anon_sym_bool] = ACTIONS(394), - [anon_sym_str] = ACTIONS(394), - [anon_sym_char] = ACTIONS(394), - [anon_sym_as] = ACTIONS(394), - [anon_sym_const] = ACTIONS(394), - [anon_sym_default] = ACTIONS(394), - [anon_sym_union] = ACTIONS(394), - [anon_sym_POUND] = ACTIONS(392), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_COMMA] = ACTIONS(392), - [anon_sym_ref] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_COLON_COLON] = ACTIONS(392), - [anon_sym__] = ACTIONS(394), - [anon_sym_AMP] = ACTIONS(394), - [anon_sym_DOT_DOT_DOT] = ACTIONS(392), - [sym_mutable_specifier] = ACTIONS(394), - [anon_sym_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(392), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(392), - [anon_sym_PIPE_PIPE] = ACTIONS(392), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(394), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_STAR_EQ] = ACTIONS(392), - [anon_sym_SLASH_EQ] = ACTIONS(392), - [anon_sym_PERCENT_EQ] = ACTIONS(392), - [anon_sym_AMP_EQ] = ACTIONS(392), - [anon_sym_PIPE_EQ] = ACTIONS(392), - [anon_sym_CARET_EQ] = ACTIONS(392), - [anon_sym_LT_LT_EQ] = ACTIONS(392), - [anon_sym_GT_GT_EQ] = ACTIONS(392), - [anon_sym_else] = ACTIONS(882), - [anon_sym_DOT] = ACTIONS(394), - [sym_integer_literal] = ACTIONS(392), - [aux_sym_string_literal_token1] = ACTIONS(392), - [sym_char_literal] = ACTIONS(392), - [anon_sym_true] = ACTIONS(394), - [anon_sym_false] = ACTIONS(394), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(394), - [sym_super] = ACTIONS(394), - [sym_crate] = ACTIONS(394), - [sym_metavariable] = ACTIONS(392), - [sym_raw_string_literal] = ACTIONS(392), - [sym_float_literal] = ACTIONS(392), - [sym_block_comment] = ACTIONS(3), - }, - [221] = { - [sym__attr] = STATE(2576), - [sym_custom_attr] = STATE(2576), - [sym_built_in_attr] = STATE(2576), - [sym__built_in_attr_path] = STATE(1867), - [sym_bracketed_type] = STATE(2486), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_scoped_identifier] = STATE(1626), - [sym_identifier] = ACTIONS(884), - [anon_sym_path] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_default] = ACTIONS(888), - [anon_sym_union] = ACTIONS(888), - [anon_sym_cfg] = ACTIONS(886), - [anon_sym_cfg_attr] = ACTIONS(886), - [anon_sym_test] = ACTIONS(886), - [anon_sym_ignore] = ACTIONS(886), - [anon_sym_should_panic] = ACTIONS(886), - [anon_sym_derive] = ACTIONS(886), - [anon_sym_automatically_derived] = ACTIONS(886), - [anon_sym_macro_export] = ACTIONS(886), - [anon_sym_macro_use] = ACTIONS(886), - [anon_sym_proc_macro] = ACTIONS(886), - [anon_sym_proc_macro_derive] = ACTIONS(886), - [anon_sym_proc_macro_attribute] = ACTIONS(886), - [anon_sym_allow] = ACTIONS(886), - [anon_sym_warn] = ACTIONS(886), - [anon_sym_deny] = ACTIONS(886), - [anon_sym_forbid] = ACTIONS(886), - [anon_sym_deprecated] = ACTIONS(886), - [anon_sym_must_use] = ACTIONS(886), - [anon_sym_link] = ACTIONS(886), - [anon_sym_link_name] = ACTIONS(886), - [anon_sym_no_link] = ACTIONS(886), - [anon_sym_repr] = ACTIONS(886), - [anon_sym_crate_type] = ACTIONS(886), - [anon_sym_no_main] = ACTIONS(886), - [anon_sym_export_name] = ACTIONS(886), - [anon_sym_link_section] = ACTIONS(886), - [anon_sym_no_mangle] = ACTIONS(886), - [anon_sym_used] = ACTIONS(886), - [anon_sym_crate_name] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(886), - [anon_sym_cold] = ACTIONS(886), - [anon_sym_no_builtins] = ACTIONS(886), - [anon_sym_target_feature] = ACTIONS(886), - [anon_sym_track_caller] = ACTIONS(886), - [anon_sym_doc] = ACTIONS(886), - [anon_sym_no_std] = ACTIONS(886), - [anon_sym_no_implicit_prelude] = ACTIONS(886), - [anon_sym_recursion_limit] = ACTIONS(886), - [anon_sym_type_length_limit] = ACTIONS(886), - [anon_sym_panic_handler] = ACTIONS(886), - [anon_sym_global_allocator] = ACTIONS(886), - [anon_sym_windows_subsystem] = ACTIONS(886), - [anon_sym_feature] = ACTIONS(886), - [anon_sym_non_exhaustive] = ACTIONS(886), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(890), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(890), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(892), [sym_super] = ACTIONS(892), [sym_crate] = ACTIONS(892), [sym_metavariable] = ACTIONS(894), + [sym_raw_string_literal] = ACTIONS(890), + [sym_float_literal] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [222] = { - [sym__attr] = STATE(2373), - [sym_custom_attr] = STATE(2373), - [sym_built_in_attr] = STATE(2373), - [sym__built_in_attr_path] = STATE(1867), - [sym_bracketed_type] = STATE(2486), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_scoped_identifier] = STATE(1626), - [sym_identifier] = ACTIONS(884), - [anon_sym_path] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_default] = ACTIONS(888), - [anon_sym_union] = ACTIONS(888), - [anon_sym_cfg] = ACTIONS(886), - [anon_sym_cfg_attr] = ACTIONS(886), - [anon_sym_test] = ACTIONS(886), - [anon_sym_ignore] = ACTIONS(886), - [anon_sym_should_panic] = ACTIONS(886), - [anon_sym_derive] = ACTIONS(886), - [anon_sym_automatically_derived] = ACTIONS(886), - [anon_sym_macro_export] = ACTIONS(886), - [anon_sym_macro_use] = ACTIONS(886), - [anon_sym_proc_macro] = ACTIONS(886), - [anon_sym_proc_macro_derive] = ACTIONS(886), - [anon_sym_proc_macro_attribute] = ACTIONS(886), - [anon_sym_allow] = ACTIONS(886), - [anon_sym_warn] = ACTIONS(886), - [anon_sym_deny] = ACTIONS(886), - [anon_sym_forbid] = ACTIONS(886), - [anon_sym_deprecated] = ACTIONS(886), - [anon_sym_must_use] = ACTIONS(886), - [anon_sym_link] = ACTIONS(886), - [anon_sym_link_name] = ACTIONS(886), - [anon_sym_no_link] = ACTIONS(886), - [anon_sym_repr] = ACTIONS(886), - [anon_sym_crate_type] = ACTIONS(886), - [anon_sym_no_main] = ACTIONS(886), - [anon_sym_export_name] = ACTIONS(886), - [anon_sym_link_section] = ACTIONS(886), - [anon_sym_no_mangle] = ACTIONS(886), - [anon_sym_used] = ACTIONS(886), - [anon_sym_crate_name] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(886), - [anon_sym_cold] = ACTIONS(886), - [anon_sym_no_builtins] = ACTIONS(886), - [anon_sym_target_feature] = ACTIONS(886), - [anon_sym_track_caller] = ACTIONS(886), - [anon_sym_doc] = ACTIONS(886), - [anon_sym_no_std] = ACTIONS(886), - [anon_sym_no_implicit_prelude] = ACTIONS(886), - [anon_sym_recursion_limit] = ACTIONS(886), - [anon_sym_type_length_limit] = ACTIONS(886), - [anon_sym_panic_handler] = ACTIONS(886), - [anon_sym_global_allocator] = ACTIONS(886), - [anon_sym_windows_subsystem] = ACTIONS(886), - [anon_sym_feature] = ACTIONS(886), - [anon_sym_non_exhaustive] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [229] = { + [sym_identifier] = ACTIONS(434), + [anon_sym_LPAREN] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_STAR] = ACTIONS(434), + [anon_sym_QMARK] = ACTIONS(432), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_isize] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_f32] = ACTIONS(434), + [anon_sym_f64] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_str] = ACTIONS(434), + [anon_sym_char] = ACTIONS(434), + [anon_sym_as] = ACTIONS(434), + [anon_sym_const] = ACTIONS(434), + [anon_sym_default] = ACTIONS(434), + [anon_sym_union] = ACTIONS(434), + [anon_sym_POUND] = ACTIONS(432), + [anon_sym_EQ] = ACTIONS(434), + [anon_sym_COMMA] = ACTIONS(432), + [anon_sym_ref] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(434), + [anon_sym_GT] = ACTIONS(434), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym__] = ACTIONS(434), + [anon_sym_AMP] = ACTIONS(434), + [anon_sym_DOT_DOT_DOT] = ACTIONS(432), + [sym_mutable_specifier] = ACTIONS(434), + [anon_sym_DOT_DOT] = ACTIONS(434), + [anon_sym_DOT_DOT_EQ] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_AMP_AMP] = ACTIONS(432), + [anon_sym_PIPE_PIPE] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(434), + [anon_sym_CARET] = ACTIONS(434), + [anon_sym_EQ_EQ] = ACTIONS(432), + [anon_sym_BANG_EQ] = ACTIONS(432), + [anon_sym_LT_EQ] = ACTIONS(432), + [anon_sym_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT] = ACTIONS(434), + [anon_sym_GT_GT] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(434), + [anon_sym_PERCENT] = ACTIONS(434), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(434), + [sym_integer_literal] = ACTIONS(432), + [aux_sym_string_literal_token1] = ACTIONS(432), + [sym_char_literal] = ACTIONS(432), + [anon_sym_true] = ACTIONS(434), + [anon_sym_false] = ACTIONS(434), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(434), + [sym_super] = ACTIONS(434), + [sym_crate] = ACTIONS(434), + [sym_metavariable] = ACTIONS(432), + [sym_raw_string_literal] = ACTIONS(432), + [sym_float_literal] = ACTIONS(432), [sym_block_comment] = ACTIONS(3), }, - [223] = { - [sym__attr] = STATE(2470), - [sym_custom_attr] = STATE(2470), - [sym_built_in_attr] = STATE(2470), - [sym__built_in_attr_path] = STATE(1867), - [sym_bracketed_type] = STATE(2486), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_scoped_identifier] = STATE(1626), - [sym_identifier] = ACTIONS(884), - [anon_sym_path] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_default] = ACTIONS(888), - [anon_sym_union] = ACTIONS(888), - [anon_sym_cfg] = ACTIONS(886), - [anon_sym_cfg_attr] = ACTIONS(886), - [anon_sym_test] = ACTIONS(886), - [anon_sym_ignore] = ACTIONS(886), - [anon_sym_should_panic] = ACTIONS(886), - [anon_sym_derive] = ACTIONS(886), - [anon_sym_automatically_derived] = ACTIONS(886), - [anon_sym_macro_export] = ACTIONS(886), - [anon_sym_macro_use] = ACTIONS(886), - [anon_sym_proc_macro] = ACTIONS(886), - [anon_sym_proc_macro_derive] = ACTIONS(886), - [anon_sym_proc_macro_attribute] = ACTIONS(886), - [anon_sym_allow] = ACTIONS(886), - [anon_sym_warn] = ACTIONS(886), - [anon_sym_deny] = ACTIONS(886), - [anon_sym_forbid] = ACTIONS(886), - [anon_sym_deprecated] = ACTIONS(886), - [anon_sym_must_use] = ACTIONS(886), - [anon_sym_link] = ACTIONS(886), - [anon_sym_link_name] = ACTIONS(886), - [anon_sym_no_link] = ACTIONS(886), - [anon_sym_repr] = ACTIONS(886), - [anon_sym_crate_type] = ACTIONS(886), - [anon_sym_no_main] = ACTIONS(886), - [anon_sym_export_name] = ACTIONS(886), - [anon_sym_link_section] = ACTIONS(886), - [anon_sym_no_mangle] = ACTIONS(886), - [anon_sym_used] = ACTIONS(886), - [anon_sym_crate_name] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(886), - [anon_sym_cold] = ACTIONS(886), - [anon_sym_no_builtins] = ACTIONS(886), - [anon_sym_target_feature] = ACTIONS(886), - [anon_sym_track_caller] = ACTIONS(886), - [anon_sym_doc] = ACTIONS(886), - [anon_sym_no_std] = ACTIONS(886), - [anon_sym_no_implicit_prelude] = ACTIONS(886), - [anon_sym_recursion_limit] = ACTIONS(886), - [anon_sym_type_length_limit] = ACTIONS(886), - [anon_sym_panic_handler] = ACTIONS(886), - [anon_sym_global_allocator] = ACTIONS(886), - [anon_sym_windows_subsystem] = ACTIONS(886), - [anon_sym_feature] = ACTIONS(886), - [anon_sym_non_exhaustive] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [230] = { + [sym_identifier] = ACTIONS(506), + [anon_sym_LPAREN] = ACTIONS(504), + [anon_sym_RBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(506), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_QMARK] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(506), + [anon_sym_i8] = ACTIONS(506), + [anon_sym_u16] = ACTIONS(506), + [anon_sym_i16] = ACTIONS(506), + [anon_sym_u32] = ACTIONS(506), + [anon_sym_i32] = ACTIONS(506), + [anon_sym_u64] = ACTIONS(506), + [anon_sym_i64] = ACTIONS(506), + [anon_sym_u128] = ACTIONS(506), + [anon_sym_i128] = ACTIONS(506), + [anon_sym_isize] = ACTIONS(506), + [anon_sym_usize] = ACTIONS(506), + [anon_sym_f32] = ACTIONS(506), + [anon_sym_f64] = ACTIONS(506), + [anon_sym_bool] = ACTIONS(506), + [anon_sym_str] = ACTIONS(506), + [anon_sym_char] = ACTIONS(506), + [anon_sym_as] = ACTIONS(506), + [anon_sym_const] = ACTIONS(506), + [anon_sym_default] = ACTIONS(506), + [anon_sym_union] = ACTIONS(506), + [anon_sym_POUND] = ACTIONS(504), + [anon_sym_EQ] = ACTIONS(506), + [anon_sym_COMMA] = ACTIONS(504), + [anon_sym_ref] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(506), + [anon_sym_GT] = ACTIONS(506), + [anon_sym_COLON_COLON] = ACTIONS(504), + [anon_sym__] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_DOT_DOT_DOT] = ACTIONS(504), + [sym_mutable_specifier] = ACTIONS(506), + [anon_sym_DOT_DOT] = ACTIONS(506), + [anon_sym_DOT_DOT_EQ] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_AMP_AMP] = ACTIONS(504), + [anon_sym_PIPE_PIPE] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(506), + [anon_sym_EQ_EQ] = ACTIONS(504), + [anon_sym_BANG_EQ] = ACTIONS(504), + [anon_sym_LT_EQ] = ACTIONS(504), + [anon_sym_GT_EQ] = ACTIONS(504), + [anon_sym_LT_LT] = ACTIONS(506), + [anon_sym_GT_GT] = ACTIONS(506), + [anon_sym_SLASH] = ACTIONS(506), + [anon_sym_PERCENT] = ACTIONS(506), + [anon_sym_PLUS_EQ] = ACTIONS(504), + [anon_sym_DASH_EQ] = ACTIONS(504), + [anon_sym_STAR_EQ] = ACTIONS(504), + [anon_sym_SLASH_EQ] = ACTIONS(504), + [anon_sym_PERCENT_EQ] = ACTIONS(504), + [anon_sym_AMP_EQ] = ACTIONS(504), + [anon_sym_PIPE_EQ] = ACTIONS(504), + [anon_sym_CARET_EQ] = ACTIONS(504), + [anon_sym_LT_LT_EQ] = ACTIONS(504), + [anon_sym_GT_GT_EQ] = ACTIONS(504), + [anon_sym_DOT] = ACTIONS(506), + [sym_integer_literal] = ACTIONS(504), + [aux_sym_string_literal_token1] = ACTIONS(504), + [sym_char_literal] = ACTIONS(504), + [anon_sym_true] = ACTIONS(506), + [anon_sym_false] = ACTIONS(506), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(506), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(504), + [sym_raw_string_literal] = ACTIONS(504), + [sym_float_literal] = ACTIONS(504), [sym_block_comment] = ACTIONS(3), }, - [224] = { - [sym__attr] = STATE(2415), - [sym_custom_attr] = STATE(2415), - [sym_built_in_attr] = STATE(2415), - [sym__built_in_attr_path] = STATE(1867), - [sym_bracketed_type] = STATE(2486), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_scoped_identifier] = STATE(1626), - [sym_identifier] = ACTIONS(884), - [anon_sym_path] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_default] = ACTIONS(888), - [anon_sym_union] = ACTIONS(888), - [anon_sym_cfg] = ACTIONS(886), - [anon_sym_cfg_attr] = ACTIONS(886), - [anon_sym_test] = ACTIONS(886), - [anon_sym_ignore] = ACTIONS(886), - [anon_sym_should_panic] = ACTIONS(886), - [anon_sym_derive] = ACTIONS(886), - [anon_sym_automatically_derived] = ACTIONS(886), - [anon_sym_macro_export] = ACTIONS(886), - [anon_sym_macro_use] = ACTIONS(886), - [anon_sym_proc_macro] = ACTIONS(886), - [anon_sym_proc_macro_derive] = ACTIONS(886), - [anon_sym_proc_macro_attribute] = ACTIONS(886), - [anon_sym_allow] = ACTIONS(886), - [anon_sym_warn] = ACTIONS(886), - [anon_sym_deny] = ACTIONS(886), - [anon_sym_forbid] = ACTIONS(886), - [anon_sym_deprecated] = ACTIONS(886), - [anon_sym_must_use] = ACTIONS(886), - [anon_sym_link] = ACTIONS(886), - [anon_sym_link_name] = ACTIONS(886), - [anon_sym_no_link] = ACTIONS(886), - [anon_sym_repr] = ACTIONS(886), - [anon_sym_crate_type] = ACTIONS(886), - [anon_sym_no_main] = ACTIONS(886), - [anon_sym_export_name] = ACTIONS(886), - [anon_sym_link_section] = ACTIONS(886), - [anon_sym_no_mangle] = ACTIONS(886), - [anon_sym_used] = ACTIONS(886), - [anon_sym_crate_name] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(886), - [anon_sym_cold] = ACTIONS(886), - [anon_sym_no_builtins] = ACTIONS(886), - [anon_sym_target_feature] = ACTIONS(886), - [anon_sym_track_caller] = ACTIONS(886), - [anon_sym_doc] = ACTIONS(886), - [anon_sym_no_std] = ACTIONS(886), - [anon_sym_no_implicit_prelude] = ACTIONS(886), - [anon_sym_recursion_limit] = ACTIONS(886), - [anon_sym_type_length_limit] = ACTIONS(886), - [anon_sym_panic_handler] = ACTIONS(886), - [anon_sym_global_allocator] = ACTIONS(886), - [anon_sym_windows_subsystem] = ACTIONS(886), - [anon_sym_feature] = ACTIONS(886), - [anon_sym_non_exhaustive] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [231] = { + [sym_identifier] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_STAR] = ACTIONS(494), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_u8] = ACTIONS(494), + [anon_sym_i8] = ACTIONS(494), + [anon_sym_u16] = ACTIONS(494), + [anon_sym_i16] = ACTIONS(494), + [anon_sym_u32] = ACTIONS(494), + [anon_sym_i32] = ACTIONS(494), + [anon_sym_u64] = ACTIONS(494), + [anon_sym_i64] = ACTIONS(494), + [anon_sym_u128] = ACTIONS(494), + [anon_sym_i128] = ACTIONS(494), + [anon_sym_isize] = ACTIONS(494), + [anon_sym_usize] = ACTIONS(494), + [anon_sym_f32] = ACTIONS(494), + [anon_sym_f64] = ACTIONS(494), + [anon_sym_bool] = ACTIONS(494), + [anon_sym_str] = ACTIONS(494), + [anon_sym_char] = ACTIONS(494), + [anon_sym_as] = ACTIONS(494), + [anon_sym_const] = ACTIONS(494), + [anon_sym_default] = ACTIONS(494), + [anon_sym_union] = ACTIONS(494), + [anon_sym_POUND] = ACTIONS(492), + [anon_sym_EQ] = ACTIONS(494), + [anon_sym_COMMA] = ACTIONS(492), + [anon_sym_ref] = ACTIONS(494), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym__] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(494), + [anon_sym_DOT_DOT_DOT] = ACTIONS(492), + [sym_mutable_specifier] = ACTIONS(494), + [anon_sym_DOT_DOT] = ACTIONS(494), + [anon_sym_DOT_DOT_EQ] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_AMP_AMP] = ACTIONS(492), + [anon_sym_PIPE_PIPE] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(494), + [anon_sym_CARET] = ACTIONS(494), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(494), + [anon_sym_PERCENT] = ACTIONS(494), + [anon_sym_PLUS_EQ] = ACTIONS(492), + [anon_sym_DASH_EQ] = ACTIONS(492), + [anon_sym_STAR_EQ] = ACTIONS(492), + [anon_sym_SLASH_EQ] = ACTIONS(492), + [anon_sym_PERCENT_EQ] = ACTIONS(492), + [anon_sym_AMP_EQ] = ACTIONS(492), + [anon_sym_PIPE_EQ] = ACTIONS(492), + [anon_sym_CARET_EQ] = ACTIONS(492), + [anon_sym_LT_LT_EQ] = ACTIONS(492), + [anon_sym_GT_GT_EQ] = ACTIONS(492), + [anon_sym_DOT] = ACTIONS(494), + [sym_integer_literal] = ACTIONS(492), + [aux_sym_string_literal_token1] = ACTIONS(492), + [sym_char_literal] = ACTIONS(492), + [anon_sym_true] = ACTIONS(494), + [anon_sym_false] = ACTIONS(494), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(492), + [sym_raw_string_literal] = ACTIONS(492), + [sym_float_literal] = ACTIONS(492), [sym_block_comment] = ACTIONS(3), }, - [225] = { - [sym__attr] = STATE(2537), - [sym_custom_attr] = STATE(2537), - [sym_built_in_attr] = STATE(2537), - [sym__built_in_attr_path] = STATE(1867), - [sym_bracketed_type] = STATE(2486), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_scoped_identifier] = STATE(1626), - [sym_identifier] = ACTIONS(884), - [anon_sym_path] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_default] = ACTIONS(888), - [anon_sym_union] = ACTIONS(888), - [anon_sym_cfg] = ACTIONS(886), - [anon_sym_cfg_attr] = ACTIONS(886), - [anon_sym_test] = ACTIONS(886), - [anon_sym_ignore] = ACTIONS(886), - [anon_sym_should_panic] = ACTIONS(886), - [anon_sym_derive] = ACTIONS(886), - [anon_sym_automatically_derived] = ACTIONS(886), - [anon_sym_macro_export] = ACTIONS(886), - [anon_sym_macro_use] = ACTIONS(886), - [anon_sym_proc_macro] = ACTIONS(886), - [anon_sym_proc_macro_derive] = ACTIONS(886), - [anon_sym_proc_macro_attribute] = ACTIONS(886), - [anon_sym_allow] = ACTIONS(886), - [anon_sym_warn] = ACTIONS(886), - [anon_sym_deny] = ACTIONS(886), - [anon_sym_forbid] = ACTIONS(886), - [anon_sym_deprecated] = ACTIONS(886), - [anon_sym_must_use] = ACTIONS(886), - [anon_sym_link] = ACTIONS(886), - [anon_sym_link_name] = ACTIONS(886), - [anon_sym_no_link] = ACTIONS(886), - [anon_sym_repr] = ACTIONS(886), - [anon_sym_crate_type] = ACTIONS(886), - [anon_sym_no_main] = ACTIONS(886), - [anon_sym_export_name] = ACTIONS(886), - [anon_sym_link_section] = ACTIONS(886), - [anon_sym_no_mangle] = ACTIONS(886), - [anon_sym_used] = ACTIONS(886), - [anon_sym_crate_name] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(886), - [anon_sym_cold] = ACTIONS(886), - [anon_sym_no_builtins] = ACTIONS(886), - [anon_sym_target_feature] = ACTIONS(886), - [anon_sym_track_caller] = ACTIONS(886), - [anon_sym_doc] = ACTIONS(886), - [anon_sym_no_std] = ACTIONS(886), - [anon_sym_no_implicit_prelude] = ACTIONS(886), - [anon_sym_recursion_limit] = ACTIONS(886), - [anon_sym_type_length_limit] = ACTIONS(886), - [anon_sym_panic_handler] = ACTIONS(886), - [anon_sym_global_allocator] = ACTIONS(886), - [anon_sym_windows_subsystem] = ACTIONS(886), - [anon_sym_feature] = ACTIONS(886), - [anon_sym_non_exhaustive] = ACTIONS(886), + [232] = { + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1990), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2002), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_type_binding] = STATE(2275), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [sym_block] = STATE(2275), + [sym__literal] = STATE(2275), + [sym_string_literal] = STATE(2136), + [sym_boolean_literal] = STATE(2136), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_GT] = ACTIONS(896), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(890), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(890), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(892), [sym_super] = ACTIONS(892), [sym_crate] = ACTIONS(892), [sym_metavariable] = ACTIONS(894), + [sym_raw_string_literal] = ACTIONS(890), + [sym_float_literal] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [226] = { - [sym_else_clause] = STATE(242), - [sym_identifier] = ACTIONS(502), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_PLUS] = ACTIONS(502), - [anon_sym_STAR] = ACTIONS(502), - [anon_sym_QMARK] = ACTIONS(500), - [anon_sym_u8] = ACTIONS(502), - [anon_sym_i8] = ACTIONS(502), - [anon_sym_u16] = ACTIONS(502), - [anon_sym_i16] = ACTIONS(502), - [anon_sym_u32] = ACTIONS(502), - [anon_sym_i32] = ACTIONS(502), - [anon_sym_u64] = ACTIONS(502), - [anon_sym_i64] = ACTIONS(502), - [anon_sym_u128] = ACTIONS(502), - [anon_sym_i128] = ACTIONS(502), - [anon_sym_isize] = ACTIONS(502), - [anon_sym_usize] = ACTIONS(502), - [anon_sym_f32] = ACTIONS(502), - [anon_sym_f64] = ACTIONS(502), - [anon_sym_bool] = ACTIONS(502), - [anon_sym_str] = ACTIONS(502), - [anon_sym_char] = ACTIONS(502), - [anon_sym_as] = ACTIONS(502), - [anon_sym_const] = ACTIONS(502), - [anon_sym_default] = ACTIONS(502), - [anon_sym_union] = ACTIONS(502), - [anon_sym_POUND] = ACTIONS(500), - [anon_sym_EQ] = ACTIONS(502), - [anon_sym_COMMA] = ACTIONS(500), - [anon_sym_ref] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(502), - [anon_sym_GT] = ACTIONS(502), - [anon_sym_COLON_COLON] = ACTIONS(500), - [anon_sym__] = ACTIONS(502), - [anon_sym_AMP] = ACTIONS(502), - [anon_sym_DOT_DOT_DOT] = ACTIONS(500), - [sym_mutable_specifier] = ACTIONS(502), - [anon_sym_DOT_DOT] = ACTIONS(502), - [anon_sym_DOT_DOT_EQ] = ACTIONS(500), - [anon_sym_DASH] = ACTIONS(502), - [anon_sym_AMP_AMP] = ACTIONS(500), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_PIPE] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_EQ_EQ] = ACTIONS(500), - [anon_sym_BANG_EQ] = ACTIONS(500), - [anon_sym_LT_EQ] = ACTIONS(500), - [anon_sym_GT_EQ] = ACTIONS(500), - [anon_sym_LT_LT] = ACTIONS(502), - [anon_sym_GT_GT] = ACTIONS(502), - [anon_sym_SLASH] = ACTIONS(502), - [anon_sym_PERCENT] = ACTIONS(502), - [anon_sym_PLUS_EQ] = ACTIONS(500), - [anon_sym_DASH_EQ] = ACTIONS(500), - [anon_sym_STAR_EQ] = ACTIONS(500), - [anon_sym_SLASH_EQ] = ACTIONS(500), - [anon_sym_PERCENT_EQ] = ACTIONS(500), - [anon_sym_AMP_EQ] = ACTIONS(500), - [anon_sym_PIPE_EQ] = ACTIONS(500), - [anon_sym_CARET_EQ] = ACTIONS(500), - [anon_sym_LT_LT_EQ] = ACTIONS(500), - [anon_sym_GT_GT_EQ] = ACTIONS(500), - [anon_sym_else] = ACTIONS(882), - [anon_sym_DOT] = ACTIONS(502), - [sym_integer_literal] = ACTIONS(500), - [aux_sym_string_literal_token1] = ACTIONS(500), - [sym_char_literal] = ACTIONS(500), - [anon_sym_true] = ACTIONS(502), - [anon_sym_false] = ACTIONS(502), + [233] = { + [sym_identifier] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_STAR] = ACTIONS(488), + [anon_sym_QMARK] = ACTIONS(486), + [anon_sym_u8] = ACTIONS(488), + [anon_sym_i8] = ACTIONS(488), + [anon_sym_u16] = ACTIONS(488), + [anon_sym_i16] = ACTIONS(488), + [anon_sym_u32] = ACTIONS(488), + [anon_sym_i32] = ACTIONS(488), + [anon_sym_u64] = ACTIONS(488), + [anon_sym_i64] = ACTIONS(488), + [anon_sym_u128] = ACTIONS(488), + [anon_sym_i128] = ACTIONS(488), + [anon_sym_isize] = ACTIONS(488), + [anon_sym_usize] = ACTIONS(488), + [anon_sym_f32] = ACTIONS(488), + [anon_sym_f64] = ACTIONS(488), + [anon_sym_bool] = ACTIONS(488), + [anon_sym_str] = ACTIONS(488), + [anon_sym_char] = ACTIONS(488), + [anon_sym_as] = ACTIONS(488), + [anon_sym_const] = ACTIONS(488), + [anon_sym_default] = ACTIONS(488), + [anon_sym_union] = ACTIONS(488), + [anon_sym_POUND] = ACTIONS(486), + [anon_sym_EQ] = ACTIONS(488), + [anon_sym_COMMA] = ACTIONS(486), + [anon_sym_ref] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym__] = ACTIONS(488), + [anon_sym_AMP] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(486), + [sym_mutable_specifier] = ACTIONS(488), + [anon_sym_DOT_DOT] = ACTIONS(488), + [anon_sym_DOT_DOT_EQ] = ACTIONS(486), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_AMP_AMP] = ACTIONS(486), + [anon_sym_PIPE_PIPE] = ACTIONS(486), + [anon_sym_PIPE] = ACTIONS(488), + [anon_sym_CARET] = ACTIONS(488), + [anon_sym_EQ_EQ] = ACTIONS(486), + [anon_sym_BANG_EQ] = ACTIONS(486), + [anon_sym_LT_EQ] = ACTIONS(486), + [anon_sym_GT_EQ] = ACTIONS(486), + [anon_sym_LT_LT] = ACTIONS(488), + [anon_sym_GT_GT] = ACTIONS(488), + [anon_sym_SLASH] = ACTIONS(488), + [anon_sym_PERCENT] = ACTIONS(488), + [anon_sym_PLUS_EQ] = ACTIONS(486), + [anon_sym_DASH_EQ] = ACTIONS(486), + [anon_sym_STAR_EQ] = ACTIONS(486), + [anon_sym_SLASH_EQ] = ACTIONS(486), + [anon_sym_PERCENT_EQ] = ACTIONS(486), + [anon_sym_AMP_EQ] = ACTIONS(486), + [anon_sym_PIPE_EQ] = ACTIONS(486), + [anon_sym_CARET_EQ] = ACTIONS(486), + [anon_sym_LT_LT_EQ] = ACTIONS(486), + [anon_sym_GT_GT_EQ] = ACTIONS(486), + [anon_sym_DOT] = ACTIONS(488), + [sym_integer_literal] = ACTIONS(486), + [aux_sym_string_literal_token1] = ACTIONS(486), + [sym_char_literal] = ACTIONS(486), + [anon_sym_true] = ACTIONS(488), + [anon_sym_false] = ACTIONS(488), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(502), - [sym_super] = ACTIONS(502), - [sym_crate] = ACTIONS(502), - [sym_metavariable] = ACTIONS(500), - [sym_raw_string_literal] = ACTIONS(500), - [sym_float_literal] = ACTIONS(500), + [sym_self] = ACTIONS(488), + [sym_super] = ACTIONS(488), + [sym_crate] = ACTIONS(488), + [sym_metavariable] = ACTIONS(486), + [sym_raw_string_literal] = ACTIONS(486), + [sym_float_literal] = ACTIONS(486), [sym_block_comment] = ACTIONS(3), }, - [227] = { - [sym__attr] = STATE(2449), - [sym_custom_attr] = STATE(2449), - [sym_built_in_attr] = STATE(2449), - [sym__built_in_attr_path] = STATE(1867), - [sym_bracketed_type] = STATE(2486), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_scoped_identifier] = STATE(1626), - [sym_identifier] = ACTIONS(884), - [anon_sym_path] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_default] = ACTIONS(888), - [anon_sym_union] = ACTIONS(888), - [anon_sym_cfg] = ACTIONS(886), - [anon_sym_cfg_attr] = ACTIONS(886), - [anon_sym_test] = ACTIONS(886), - [anon_sym_ignore] = ACTIONS(886), - [anon_sym_should_panic] = ACTIONS(886), - [anon_sym_derive] = ACTIONS(886), - [anon_sym_automatically_derived] = ACTIONS(886), - [anon_sym_macro_export] = ACTIONS(886), - [anon_sym_macro_use] = ACTIONS(886), - [anon_sym_proc_macro] = ACTIONS(886), - [anon_sym_proc_macro_derive] = ACTIONS(886), - [anon_sym_proc_macro_attribute] = ACTIONS(886), - [anon_sym_allow] = ACTIONS(886), - [anon_sym_warn] = ACTIONS(886), - [anon_sym_deny] = ACTIONS(886), - [anon_sym_forbid] = ACTIONS(886), - [anon_sym_deprecated] = ACTIONS(886), - [anon_sym_must_use] = ACTIONS(886), - [anon_sym_link] = ACTIONS(886), - [anon_sym_link_name] = ACTIONS(886), - [anon_sym_no_link] = ACTIONS(886), - [anon_sym_repr] = ACTIONS(886), - [anon_sym_crate_type] = ACTIONS(886), - [anon_sym_no_main] = ACTIONS(886), - [anon_sym_export_name] = ACTIONS(886), - [anon_sym_link_section] = ACTIONS(886), - [anon_sym_no_mangle] = ACTIONS(886), - [anon_sym_used] = ACTIONS(886), - [anon_sym_crate_name] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(886), - [anon_sym_cold] = ACTIONS(886), - [anon_sym_no_builtins] = ACTIONS(886), - [anon_sym_target_feature] = ACTIONS(886), - [anon_sym_track_caller] = ACTIONS(886), - [anon_sym_doc] = ACTIONS(886), - [anon_sym_no_std] = ACTIONS(886), - [anon_sym_no_implicit_prelude] = ACTIONS(886), - [anon_sym_recursion_limit] = ACTIONS(886), - [anon_sym_type_length_limit] = ACTIONS(886), - [anon_sym_panic_handler] = ACTIONS(886), - [anon_sym_global_allocator] = ACTIONS(886), - [anon_sym_windows_subsystem] = ACTIONS(886), - [anon_sym_feature] = ACTIONS(886), - [anon_sym_non_exhaustive] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [228] = { - [sym__attr] = STATE(2396), - [sym_custom_attr] = STATE(2396), - [sym_built_in_attr] = STATE(2396), - [sym__built_in_attr_path] = STATE(1867), - [sym_bracketed_type] = STATE(2486), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_scoped_identifier] = STATE(1626), - [sym_identifier] = ACTIONS(884), - [anon_sym_path] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_default] = ACTIONS(888), - [anon_sym_union] = ACTIONS(888), - [anon_sym_cfg] = ACTIONS(886), - [anon_sym_cfg_attr] = ACTIONS(886), - [anon_sym_test] = ACTIONS(886), - [anon_sym_ignore] = ACTIONS(886), - [anon_sym_should_panic] = ACTIONS(886), - [anon_sym_derive] = ACTIONS(886), - [anon_sym_automatically_derived] = ACTIONS(886), - [anon_sym_macro_export] = ACTIONS(886), - [anon_sym_macro_use] = ACTIONS(886), - [anon_sym_proc_macro] = ACTIONS(886), - [anon_sym_proc_macro_derive] = ACTIONS(886), - [anon_sym_proc_macro_attribute] = ACTIONS(886), - [anon_sym_allow] = ACTIONS(886), - [anon_sym_warn] = ACTIONS(886), - [anon_sym_deny] = ACTIONS(886), - [anon_sym_forbid] = ACTIONS(886), - [anon_sym_deprecated] = ACTIONS(886), - [anon_sym_must_use] = ACTIONS(886), - [anon_sym_link] = ACTIONS(886), - [anon_sym_link_name] = ACTIONS(886), - [anon_sym_no_link] = ACTIONS(886), - [anon_sym_repr] = ACTIONS(886), - [anon_sym_crate_type] = ACTIONS(886), - [anon_sym_no_main] = ACTIONS(886), - [anon_sym_export_name] = ACTIONS(886), - [anon_sym_link_section] = ACTIONS(886), - [anon_sym_no_mangle] = ACTIONS(886), - [anon_sym_used] = ACTIONS(886), - [anon_sym_crate_name] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(886), - [anon_sym_cold] = ACTIONS(886), - [anon_sym_no_builtins] = ACTIONS(886), - [anon_sym_target_feature] = ACTIONS(886), - [anon_sym_track_caller] = ACTIONS(886), - [anon_sym_doc] = ACTIONS(886), - [anon_sym_no_std] = ACTIONS(886), - [anon_sym_no_implicit_prelude] = ACTIONS(886), - [anon_sym_recursion_limit] = ACTIONS(886), - [anon_sym_type_length_limit] = ACTIONS(886), - [anon_sym_panic_handler] = ACTIONS(886), - [anon_sym_global_allocator] = ACTIONS(886), - [anon_sym_windows_subsystem] = ACTIONS(886), - [anon_sym_feature] = ACTIONS(886), - [anon_sym_non_exhaustive] = ACTIONS(886), + [234] = { + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1990), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2002), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_type_binding] = STATE(2275), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [sym_block] = STATE(2275), + [sym__literal] = STATE(2275), + [sym_string_literal] = STATE(2136), + [sym_boolean_literal] = STATE(2136), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), + [anon_sym_GT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(890), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(890), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(892), [sym_super] = ACTIONS(892), [sym_crate] = ACTIONS(892), [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [229] = { - [sym_identifier] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_QMARK] = ACTIONS(548), - [anon_sym_u8] = ACTIONS(550), - [anon_sym_i8] = ACTIONS(550), - [anon_sym_u16] = ACTIONS(550), - [anon_sym_i16] = ACTIONS(550), - [anon_sym_u32] = ACTIONS(550), - [anon_sym_i32] = ACTIONS(550), - [anon_sym_u64] = ACTIONS(550), - [anon_sym_i64] = ACTIONS(550), - [anon_sym_u128] = ACTIONS(550), - [anon_sym_i128] = ACTIONS(550), - [anon_sym_isize] = ACTIONS(550), - [anon_sym_usize] = ACTIONS(550), - [anon_sym_f32] = ACTIONS(550), - [anon_sym_f64] = ACTIONS(550), - [anon_sym_bool] = ACTIONS(550), - [anon_sym_str] = ACTIONS(550), - [anon_sym_char] = ACTIONS(550), - [anon_sym_as] = ACTIONS(550), - [anon_sym_const] = ACTIONS(550), - [anon_sym_default] = ACTIONS(550), - [anon_sym_union] = ACTIONS(550), - [anon_sym_POUND] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_COMMA] = ACTIONS(548), - [anon_sym_ref] = ACTIONS(550), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_COLON_COLON] = ACTIONS(548), - [anon_sym__] = ACTIONS(550), - [anon_sym_AMP] = ACTIONS(550), - [anon_sym_DOT_DOT_DOT] = ACTIONS(548), - [sym_mutable_specifier] = ACTIONS(550), - [anon_sym_DOT_DOT] = ACTIONS(550), - [anon_sym_DOT_DOT_EQ] = ACTIONS(548), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_AMP_AMP] = ACTIONS(548), - [anon_sym_PIPE_PIPE] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT_EQ] = ACTIONS(548), - [anon_sym_GT_EQ] = ACTIONS(548), - [anon_sym_LT_LT] = ACTIONS(550), - [anon_sym_GT_GT] = ACTIONS(550), - [anon_sym_SLASH] = ACTIONS(550), - [anon_sym_PERCENT] = ACTIONS(550), - [anon_sym_PLUS_EQ] = ACTIONS(548), - [anon_sym_DASH_EQ] = ACTIONS(548), - [anon_sym_STAR_EQ] = ACTIONS(548), - [anon_sym_SLASH_EQ] = ACTIONS(548), - [anon_sym_PERCENT_EQ] = ACTIONS(548), - [anon_sym_AMP_EQ] = ACTIONS(548), - [anon_sym_PIPE_EQ] = ACTIONS(548), - [anon_sym_CARET_EQ] = ACTIONS(548), - [anon_sym_LT_LT_EQ] = ACTIONS(548), - [anon_sym_GT_GT_EQ] = ACTIONS(548), - [anon_sym_else] = ACTIONS(550), - [anon_sym_DOT] = ACTIONS(550), - [sym_integer_literal] = ACTIONS(548), - [aux_sym_string_literal_token1] = ACTIONS(548), - [sym_char_literal] = ACTIONS(548), - [anon_sym_true] = ACTIONS(550), - [anon_sym_false] = ACTIONS(550), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(550), - [sym_super] = ACTIONS(550), - [sym_crate] = ACTIONS(550), - [sym_metavariable] = ACTIONS(548), - [sym_raw_string_literal] = ACTIONS(548), - [sym_float_literal] = ACTIONS(548), - [sym_block_comment] = ACTIONS(3), - }, - [230] = { - [sym_identifier] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_RBRACE] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(542), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(542), - [anon_sym_u8] = ACTIONS(544), - [anon_sym_i8] = ACTIONS(544), - [anon_sym_u16] = ACTIONS(544), - [anon_sym_i16] = ACTIONS(544), - [anon_sym_u32] = ACTIONS(544), - [anon_sym_i32] = ACTIONS(544), - [anon_sym_u64] = ACTIONS(544), - [anon_sym_i64] = ACTIONS(544), - [anon_sym_u128] = ACTIONS(544), - [anon_sym_i128] = ACTIONS(544), - [anon_sym_isize] = ACTIONS(544), - [anon_sym_usize] = ACTIONS(544), - [anon_sym_f32] = ACTIONS(544), - [anon_sym_f64] = ACTIONS(544), - [anon_sym_bool] = ACTIONS(544), - [anon_sym_str] = ACTIONS(544), - [anon_sym_char] = ACTIONS(544), - [anon_sym_as] = ACTIONS(544), - [anon_sym_const] = ACTIONS(544), - [anon_sym_default] = ACTIONS(544), - [anon_sym_union] = ACTIONS(544), - [anon_sym_POUND] = ACTIONS(542), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(542), - [anon_sym_ref] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_COLON_COLON] = ACTIONS(542), - [anon_sym__] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_DOT_DOT_DOT] = ACTIONS(542), - [sym_mutable_specifier] = ACTIONS(544), - [anon_sym_DOT_DOT] = ACTIONS(544), - [anon_sym_DOT_DOT_EQ] = ACTIONS(542), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_EQ_EQ] = ACTIONS(542), - [anon_sym_BANG_EQ] = ACTIONS(542), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_PLUS_EQ] = ACTIONS(542), - [anon_sym_DASH_EQ] = ACTIONS(542), - [anon_sym_STAR_EQ] = ACTIONS(542), - [anon_sym_SLASH_EQ] = ACTIONS(542), - [anon_sym_PERCENT_EQ] = ACTIONS(542), - [anon_sym_AMP_EQ] = ACTIONS(542), - [anon_sym_PIPE_EQ] = ACTIONS(542), - [anon_sym_CARET_EQ] = ACTIONS(542), - [anon_sym_LT_LT_EQ] = ACTIONS(542), - [anon_sym_GT_GT_EQ] = ACTIONS(542), - [anon_sym_else] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [sym_integer_literal] = ACTIONS(542), - [aux_sym_string_literal_token1] = ACTIONS(542), - [sym_char_literal] = ACTIONS(542), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(544), - [sym_super] = ACTIONS(544), - [sym_crate] = ACTIONS(544), - [sym_metavariable] = ACTIONS(542), - [sym_raw_string_literal] = ACTIONS(542), - [sym_float_literal] = ACTIONS(542), - [sym_block_comment] = ACTIONS(3), - }, - [231] = { - [sym_identifier] = ACTIONS(556), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_STAR] = ACTIONS(556), - [anon_sym_QMARK] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(556), - [anon_sym_i8] = ACTIONS(556), - [anon_sym_u16] = ACTIONS(556), - [anon_sym_i16] = ACTIONS(556), - [anon_sym_u32] = ACTIONS(556), - [anon_sym_i32] = ACTIONS(556), - [anon_sym_u64] = ACTIONS(556), - [anon_sym_i64] = ACTIONS(556), - [anon_sym_u128] = ACTIONS(556), - [anon_sym_i128] = ACTIONS(556), - [anon_sym_isize] = ACTIONS(556), - [anon_sym_usize] = ACTIONS(556), - [anon_sym_f32] = ACTIONS(556), - [anon_sym_f64] = ACTIONS(556), - [anon_sym_bool] = ACTIONS(556), - [anon_sym_str] = ACTIONS(556), - [anon_sym_char] = ACTIONS(556), - [anon_sym_as] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_default] = ACTIONS(556), - [anon_sym_union] = ACTIONS(556), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_ref] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(556), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym__] = ACTIONS(556), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(554), - [sym_mutable_specifier] = ACTIONS(556), - [anon_sym_DOT_DOT] = ACTIONS(556), - [anon_sym_DOT_DOT_EQ] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(556), - [anon_sym_CARET] = ACTIONS(556), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(556), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_SLASH] = ACTIONS(556), - [anon_sym_PERCENT] = ACTIONS(556), - [anon_sym_PLUS_EQ] = ACTIONS(554), - [anon_sym_DASH_EQ] = ACTIONS(554), - [anon_sym_STAR_EQ] = ACTIONS(554), - [anon_sym_SLASH_EQ] = ACTIONS(554), - [anon_sym_PERCENT_EQ] = ACTIONS(554), - [anon_sym_AMP_EQ] = ACTIONS(554), - [anon_sym_PIPE_EQ] = ACTIONS(554), - [anon_sym_CARET_EQ] = ACTIONS(554), - [anon_sym_LT_LT_EQ] = ACTIONS(554), - [anon_sym_GT_GT_EQ] = ACTIONS(554), - [anon_sym_else] = ACTIONS(556), - [anon_sym_DOT] = ACTIONS(556), - [sym_integer_literal] = ACTIONS(554), - [aux_sym_string_literal_token1] = ACTIONS(554), - [sym_char_literal] = ACTIONS(554), - [anon_sym_true] = ACTIONS(556), - [anon_sym_false] = ACTIONS(556), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(556), - [sym_super] = ACTIONS(556), - [sym_crate] = ACTIONS(556), - [sym_metavariable] = ACTIONS(554), - [sym_raw_string_literal] = ACTIONS(554), - [sym_float_literal] = ACTIONS(554), - [sym_block_comment] = ACTIONS(3), - }, - [232] = { - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_RBRACE] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(648), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(648), - [anon_sym_u8] = ACTIONS(650), - [anon_sym_i8] = ACTIONS(650), - [anon_sym_u16] = ACTIONS(650), - [anon_sym_i16] = ACTIONS(650), - [anon_sym_u32] = ACTIONS(650), - [anon_sym_i32] = ACTIONS(650), - [anon_sym_u64] = ACTIONS(650), - [anon_sym_i64] = ACTIONS(650), - [anon_sym_u128] = ACTIONS(650), - [anon_sym_i128] = ACTIONS(650), - [anon_sym_isize] = ACTIONS(650), - [anon_sym_usize] = ACTIONS(650), - [anon_sym_f32] = ACTIONS(650), - [anon_sym_f64] = ACTIONS(650), - [anon_sym_bool] = ACTIONS(650), - [anon_sym_str] = ACTIONS(650), - [anon_sym_char] = ACTIONS(650), - [anon_sym_as] = ACTIONS(650), - [anon_sym_const] = ACTIONS(650), - [anon_sym_default] = ACTIONS(650), - [anon_sym_union] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(648), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_COMMA] = ACTIONS(648), - [anon_sym_ref] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_COLON_COLON] = ACTIONS(648), - [anon_sym__] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(648), - [sym_mutable_specifier] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_EQ] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(648), - [anon_sym_PIPE_PIPE] = ACTIONS(648), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(648), - [anon_sym_BANG_EQ] = ACTIONS(648), - [anon_sym_LT_EQ] = ACTIONS(648), - [anon_sym_GT_EQ] = ACTIONS(648), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(648), - [anon_sym_DASH_EQ] = ACTIONS(648), - [anon_sym_STAR_EQ] = ACTIONS(648), - [anon_sym_SLASH_EQ] = ACTIONS(648), - [anon_sym_PERCENT_EQ] = ACTIONS(648), - [anon_sym_AMP_EQ] = ACTIONS(648), - [anon_sym_PIPE_EQ] = ACTIONS(648), - [anon_sym_CARET_EQ] = ACTIONS(648), - [anon_sym_LT_LT_EQ] = ACTIONS(648), - [anon_sym_GT_GT_EQ] = ACTIONS(648), - [anon_sym_DOT] = ACTIONS(650), - [sym_integer_literal] = ACTIONS(648), - [aux_sym_string_literal_token1] = ACTIONS(648), - [sym_char_literal] = ACTIONS(648), - [anon_sym_true] = ACTIONS(650), - [anon_sym_false] = ACTIONS(650), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(650), - [sym_super] = ACTIONS(650), - [sym_crate] = ACTIONS(650), - [sym_metavariable] = ACTIONS(648), - [sym_raw_string_literal] = ACTIONS(648), - [sym_float_literal] = ACTIONS(648), - [sym_block_comment] = ACTIONS(3), - }, - [233] = { - [sym_identifier] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_u8] = ACTIONS(896), - [anon_sym_i8] = ACTIONS(896), - [anon_sym_u16] = ACTIONS(896), - [anon_sym_i16] = ACTIONS(896), - [anon_sym_u32] = ACTIONS(896), - [anon_sym_i32] = ACTIONS(896), - [anon_sym_u64] = ACTIONS(896), - [anon_sym_i64] = ACTIONS(896), - [anon_sym_u128] = ACTIONS(896), - [anon_sym_i128] = ACTIONS(896), - [anon_sym_isize] = ACTIONS(896), - [anon_sym_usize] = ACTIONS(896), - [anon_sym_f32] = ACTIONS(896), - [anon_sym_f64] = ACTIONS(896), - [anon_sym_bool] = ACTIONS(896), - [anon_sym_str] = ACTIONS(896), - [anon_sym_char] = ACTIONS(896), - [anon_sym_as] = ACTIONS(568), - [anon_sym_const] = ACTIONS(896), - [anon_sym_default] = ACTIONS(896), - [anon_sym_union] = ACTIONS(896), - [anon_sym_POUND] = ACTIONS(898), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(566), - [anon_sym_ref] = ACTIONS(896), - [anon_sym_LT] = ACTIONS(896), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(898), - [anon_sym__] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [sym_mutable_specifier] = ACTIONS(896), - [anon_sym_DOT_DOT] = ACTIONS(896), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_DOT] = ACTIONS(568), - [sym_integer_literal] = ACTIONS(898), - [aux_sym_string_literal_token1] = ACTIONS(898), - [sym_char_literal] = ACTIONS(898), - [anon_sym_true] = ACTIONS(896), - [anon_sym_false] = ACTIONS(896), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(896), - [sym_super] = ACTIONS(896), - [sym_crate] = ACTIONS(896), - [sym_metavariable] = ACTIONS(898), - [sym_raw_string_literal] = ACTIONS(898), - [sym_float_literal] = ACTIONS(898), - [sym_block_comment] = ACTIONS(3), - }, - [234] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2026), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(1897), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_type_binding] = STATE(2225), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [sym_block] = STATE(2225), - [sym__literal] = STATE(2225), - [sym_string_literal] = STATE(2318), - [sym_boolean_literal] = STATE(2318), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(900), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(914), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(920), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(920), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_raw_string_literal] = ACTIONS(920), - [sym_float_literal] = ACTIONS(920), + [sym_raw_string_literal] = ACTIONS(890), + [sym_float_literal] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, [235] = { - [sym_identifier] = ACTIONS(646), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(644), - [anon_sym_u8] = ACTIONS(646), - [anon_sym_i8] = ACTIONS(646), - [anon_sym_u16] = ACTIONS(646), - [anon_sym_i16] = ACTIONS(646), - [anon_sym_u32] = ACTIONS(646), - [anon_sym_i32] = ACTIONS(646), - [anon_sym_u64] = ACTIONS(646), - [anon_sym_i64] = ACTIONS(646), - [anon_sym_u128] = ACTIONS(646), - [anon_sym_i128] = ACTIONS(646), - [anon_sym_isize] = ACTIONS(646), - [anon_sym_usize] = ACTIONS(646), - [anon_sym_f32] = ACTIONS(646), - [anon_sym_f64] = ACTIONS(646), - [anon_sym_bool] = ACTIONS(646), - [anon_sym_str] = ACTIONS(646), - [anon_sym_char] = ACTIONS(646), - [anon_sym_as] = ACTIONS(646), - [anon_sym_const] = ACTIONS(646), - [anon_sym_default] = ACTIONS(646), - [anon_sym_union] = ACTIONS(646), - [anon_sym_POUND] = ACTIONS(644), - [anon_sym_EQ] = ACTIONS(646), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_ref] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(646), - [anon_sym_GT] = ACTIONS(646), - [anon_sym_COLON_COLON] = ACTIONS(644), - [anon_sym__] = ACTIONS(646), - [anon_sym_AMP] = ACTIONS(646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(644), - [sym_mutable_specifier] = ACTIONS(646), - [anon_sym_DOT_DOT] = ACTIONS(646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(646), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(646), - [anon_sym_CARET] = ACTIONS(646), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_LT_LT] = ACTIONS(646), - [anon_sym_GT_GT] = ACTIONS(646), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(646), - [anon_sym_PLUS_EQ] = ACTIONS(644), - [anon_sym_DASH_EQ] = ACTIONS(644), - [anon_sym_STAR_EQ] = ACTIONS(644), - [anon_sym_SLASH_EQ] = ACTIONS(644), - [anon_sym_PERCENT_EQ] = ACTIONS(644), - [anon_sym_AMP_EQ] = ACTIONS(644), - [anon_sym_PIPE_EQ] = ACTIONS(644), - [anon_sym_CARET_EQ] = ACTIONS(644), - [anon_sym_LT_LT_EQ] = ACTIONS(644), - [anon_sym_GT_GT_EQ] = ACTIONS(644), - [anon_sym_DOT] = ACTIONS(646), - [sym_integer_literal] = ACTIONS(644), - [aux_sym_string_literal_token1] = ACTIONS(644), - [sym_char_literal] = ACTIONS(644), - [anon_sym_true] = ACTIONS(646), - [anon_sym_false] = ACTIONS(646), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(646), - [sym_super] = ACTIONS(646), - [sym_crate] = ACTIONS(646), - [sym_metavariable] = ACTIONS(644), - [sym_raw_string_literal] = ACTIONS(644), - [sym_float_literal] = ACTIONS(644), + [sym_identifier] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_RBRACE] = ACTIONS(428), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_STAR] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(428), + [anon_sym_u8] = ACTIONS(430), + [anon_sym_i8] = ACTIONS(430), + [anon_sym_u16] = ACTIONS(430), + [anon_sym_i16] = ACTIONS(430), + [anon_sym_u32] = ACTIONS(430), + [anon_sym_i32] = ACTIONS(430), + [anon_sym_u64] = ACTIONS(430), + [anon_sym_i64] = ACTIONS(430), + [anon_sym_u128] = ACTIONS(430), + [anon_sym_i128] = ACTIONS(430), + [anon_sym_isize] = ACTIONS(430), + [anon_sym_usize] = ACTIONS(430), + [anon_sym_f32] = ACTIONS(430), + [anon_sym_f64] = ACTIONS(430), + [anon_sym_bool] = ACTIONS(430), + [anon_sym_str] = ACTIONS(430), + [anon_sym_char] = ACTIONS(430), + [anon_sym_as] = ACTIONS(430), + [anon_sym_const] = ACTIONS(430), + [anon_sym_default] = ACTIONS(430), + [anon_sym_union] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(428), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_COMMA] = ACTIONS(428), + [anon_sym_ref] = ACTIONS(430), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_COLON_COLON] = ACTIONS(428), + [anon_sym__] = ACTIONS(430), + [anon_sym_AMP] = ACTIONS(430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(428), + [sym_mutable_specifier] = ACTIONS(430), + [anon_sym_DOT_DOT] = ACTIONS(430), + [anon_sym_DOT_DOT_EQ] = ACTIONS(428), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_AMP_AMP] = ACTIONS(428), + [anon_sym_PIPE_PIPE] = ACTIONS(428), + [anon_sym_PIPE] = ACTIONS(430), + [anon_sym_CARET] = ACTIONS(430), + [anon_sym_EQ_EQ] = ACTIONS(428), + [anon_sym_BANG_EQ] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(428), + [anon_sym_LT_LT] = ACTIONS(430), + [anon_sym_GT_GT] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(430), + [anon_sym_PERCENT] = ACTIONS(430), + [anon_sym_PLUS_EQ] = ACTIONS(428), + [anon_sym_DASH_EQ] = ACTIONS(428), + [anon_sym_STAR_EQ] = ACTIONS(428), + [anon_sym_SLASH_EQ] = ACTIONS(428), + [anon_sym_PERCENT_EQ] = ACTIONS(428), + [anon_sym_AMP_EQ] = ACTIONS(428), + [anon_sym_PIPE_EQ] = ACTIONS(428), + [anon_sym_CARET_EQ] = ACTIONS(428), + [anon_sym_LT_LT_EQ] = ACTIONS(428), + [anon_sym_GT_GT_EQ] = ACTIONS(428), + [anon_sym_DOT] = ACTIONS(430), + [sym_integer_literal] = ACTIONS(428), + [aux_sym_string_literal_token1] = ACTIONS(428), + [sym_char_literal] = ACTIONS(428), + [anon_sym_true] = ACTIONS(430), + [anon_sym_false] = ACTIONS(430), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(430), + [sym_super] = ACTIONS(430), + [sym_crate] = ACTIONS(430), + [sym_metavariable] = ACTIONS(428), + [sym_raw_string_literal] = ACTIONS(428), + [sym_float_literal] = ACTIONS(428), [sym_block_comment] = ACTIONS(3), }, [236] = { - [sym_identifier] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_RBRACE] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(666), - [anon_sym_QMARK] = ACTIONS(664), - [anon_sym_u8] = ACTIONS(666), - [anon_sym_i8] = ACTIONS(666), - [anon_sym_u16] = ACTIONS(666), - [anon_sym_i16] = ACTIONS(666), - [anon_sym_u32] = ACTIONS(666), - [anon_sym_i32] = ACTIONS(666), - [anon_sym_u64] = ACTIONS(666), - [anon_sym_i64] = ACTIONS(666), - [anon_sym_u128] = ACTIONS(666), - [anon_sym_i128] = ACTIONS(666), - [anon_sym_isize] = ACTIONS(666), - [anon_sym_usize] = ACTIONS(666), - [anon_sym_f32] = ACTIONS(666), - [anon_sym_f64] = ACTIONS(666), - [anon_sym_bool] = ACTIONS(666), - [anon_sym_str] = ACTIONS(666), - [anon_sym_char] = ACTIONS(666), - [anon_sym_as] = ACTIONS(666), - [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(666), - [anon_sym_union] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(664), - [anon_sym_ref] = ACTIONS(666), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_COLON_COLON] = ACTIONS(664), - [anon_sym__] = ACTIONS(666), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(664), - [sym_mutable_specifier] = ACTIONS(666), - [anon_sym_DOT_DOT] = ACTIONS(666), - [anon_sym_DOT_DOT_EQ] = ACTIONS(664), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(666), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_LT_LT] = ACTIONS(666), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PERCENT] = ACTIONS(666), - [anon_sym_PLUS_EQ] = ACTIONS(664), - [anon_sym_DASH_EQ] = ACTIONS(664), - [anon_sym_STAR_EQ] = ACTIONS(664), - [anon_sym_SLASH_EQ] = ACTIONS(664), - [anon_sym_PERCENT_EQ] = ACTIONS(664), - [anon_sym_AMP_EQ] = ACTIONS(664), - [anon_sym_PIPE_EQ] = ACTIONS(664), - [anon_sym_CARET_EQ] = ACTIONS(664), - [anon_sym_LT_LT_EQ] = ACTIONS(664), - [anon_sym_GT_GT_EQ] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(666), - [sym_integer_literal] = ACTIONS(664), - [aux_sym_string_literal_token1] = ACTIONS(664), - [sym_char_literal] = ACTIONS(664), - [anon_sym_true] = ACTIONS(666), - [anon_sym_false] = ACTIONS(666), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(666), - [sym_super] = ACTIONS(666), - [sym_crate] = ACTIONS(666), - [sym_metavariable] = ACTIONS(664), - [sym_raw_string_literal] = ACTIONS(664), - [sym_float_literal] = ACTIONS(664), + [sym_identifier] = ACTIONS(510), + [anon_sym_LPAREN] = ACTIONS(508), + [anon_sym_RBRACE] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(510), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_QMARK] = ACTIONS(508), + [anon_sym_u8] = ACTIONS(510), + [anon_sym_i8] = ACTIONS(510), + [anon_sym_u16] = ACTIONS(510), + [anon_sym_i16] = ACTIONS(510), + [anon_sym_u32] = ACTIONS(510), + [anon_sym_i32] = ACTIONS(510), + [anon_sym_u64] = ACTIONS(510), + [anon_sym_i64] = ACTIONS(510), + [anon_sym_u128] = ACTIONS(510), + [anon_sym_i128] = ACTIONS(510), + [anon_sym_isize] = ACTIONS(510), + [anon_sym_usize] = ACTIONS(510), + [anon_sym_f32] = ACTIONS(510), + [anon_sym_f64] = ACTIONS(510), + [anon_sym_bool] = ACTIONS(510), + [anon_sym_str] = ACTIONS(510), + [anon_sym_char] = ACTIONS(510), + [anon_sym_as] = ACTIONS(510), + [anon_sym_const] = ACTIONS(510), + [anon_sym_default] = ACTIONS(510), + [anon_sym_union] = ACTIONS(510), + [anon_sym_POUND] = ACTIONS(508), + [anon_sym_EQ] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(508), + [anon_sym_ref] = ACTIONS(510), + [anon_sym_LT] = ACTIONS(510), + [anon_sym_GT] = ACTIONS(510), + [anon_sym_COLON_COLON] = ACTIONS(508), + [anon_sym__] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_DOT_DOT_DOT] = ACTIONS(508), + [sym_mutable_specifier] = ACTIONS(510), + [anon_sym_DOT_DOT] = ACTIONS(510), + [anon_sym_DOT_DOT_EQ] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(508), + [anon_sym_PIPE_PIPE] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_CARET] = ACTIONS(510), + [anon_sym_EQ_EQ] = ACTIONS(508), + [anon_sym_BANG_EQ] = ACTIONS(508), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(510), + [anon_sym_GT_GT] = ACTIONS(510), + [anon_sym_SLASH] = ACTIONS(510), + [anon_sym_PERCENT] = ACTIONS(510), + [anon_sym_PLUS_EQ] = ACTIONS(508), + [anon_sym_DASH_EQ] = ACTIONS(508), + [anon_sym_STAR_EQ] = ACTIONS(508), + [anon_sym_SLASH_EQ] = ACTIONS(508), + [anon_sym_PERCENT_EQ] = ACTIONS(508), + [anon_sym_AMP_EQ] = ACTIONS(508), + [anon_sym_PIPE_EQ] = ACTIONS(508), + [anon_sym_CARET_EQ] = ACTIONS(508), + [anon_sym_LT_LT_EQ] = ACTIONS(508), + [anon_sym_GT_GT_EQ] = ACTIONS(508), + [anon_sym_DOT] = ACTIONS(510), + [sym_integer_literal] = ACTIONS(508), + [aux_sym_string_literal_token1] = ACTIONS(508), + [sym_char_literal] = ACTIONS(508), + [anon_sym_true] = ACTIONS(510), + [anon_sym_false] = ACTIONS(510), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(510), + [sym_super] = ACTIONS(510), + [sym_crate] = ACTIONS(510), + [sym_metavariable] = ACTIONS(508), + [sym_raw_string_literal] = ACTIONS(508), + [sym_float_literal] = ACTIONS(508), [sym_block_comment] = ACTIONS(3), }, [237] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2026), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(1897), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_type_binding] = STATE(2225), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [sym_block] = STATE(2225), - [sym__literal] = STATE(2225), - [sym_string_literal] = STATE(2318), - [sym_boolean_literal] = STATE(2318), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(900), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(926), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(920), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(920), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_raw_string_literal] = ACTIONS(920), - [sym_float_literal] = ACTIONS(920), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(454), + [anon_sym_RBRACE] = ACTIONS(454), + [anon_sym_LBRACK] = ACTIONS(454), + [anon_sym_PLUS] = ACTIONS(456), + [anon_sym_STAR] = ACTIONS(456), + [anon_sym_QMARK] = ACTIONS(454), + [anon_sym_u8] = ACTIONS(456), + [anon_sym_i8] = ACTIONS(456), + [anon_sym_u16] = ACTIONS(456), + [anon_sym_i16] = ACTIONS(456), + [anon_sym_u32] = ACTIONS(456), + [anon_sym_i32] = ACTIONS(456), + [anon_sym_u64] = ACTIONS(456), + [anon_sym_i64] = ACTIONS(456), + [anon_sym_u128] = ACTIONS(456), + [anon_sym_i128] = ACTIONS(456), + [anon_sym_isize] = ACTIONS(456), + [anon_sym_usize] = ACTIONS(456), + [anon_sym_f32] = ACTIONS(456), + [anon_sym_f64] = ACTIONS(456), + [anon_sym_bool] = ACTIONS(456), + [anon_sym_str] = ACTIONS(456), + [anon_sym_char] = ACTIONS(456), + [anon_sym_as] = ACTIONS(456), + [anon_sym_const] = ACTIONS(456), + [anon_sym_default] = ACTIONS(456), + [anon_sym_union] = ACTIONS(456), + [anon_sym_POUND] = ACTIONS(454), + [anon_sym_EQ] = ACTIONS(456), + [anon_sym_COMMA] = ACTIONS(454), + [anon_sym_ref] = ACTIONS(456), + [anon_sym_LT] = ACTIONS(456), + [anon_sym_GT] = ACTIONS(456), + [anon_sym_COLON_COLON] = ACTIONS(454), + [anon_sym__] = ACTIONS(456), + [anon_sym_AMP] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(454), + [sym_mutable_specifier] = ACTIONS(456), + [anon_sym_DOT_DOT] = ACTIONS(456), + [anon_sym_DOT_DOT_EQ] = ACTIONS(454), + [anon_sym_DASH] = ACTIONS(456), + [anon_sym_AMP_AMP] = ACTIONS(454), + [anon_sym_PIPE_PIPE] = ACTIONS(454), + [anon_sym_PIPE] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(454), + [anon_sym_BANG_EQ] = ACTIONS(454), + [anon_sym_LT_EQ] = ACTIONS(454), + [anon_sym_GT_EQ] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(456), + [anon_sym_GT_GT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(456), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_PLUS_EQ] = ACTIONS(454), + [anon_sym_DASH_EQ] = ACTIONS(454), + [anon_sym_STAR_EQ] = ACTIONS(454), + [anon_sym_SLASH_EQ] = ACTIONS(454), + [anon_sym_PERCENT_EQ] = ACTIONS(454), + [anon_sym_AMP_EQ] = ACTIONS(454), + [anon_sym_PIPE_EQ] = ACTIONS(454), + [anon_sym_CARET_EQ] = ACTIONS(454), + [anon_sym_LT_LT_EQ] = ACTIONS(454), + [anon_sym_GT_GT_EQ] = ACTIONS(454), + [anon_sym_DOT] = ACTIONS(456), + [sym_integer_literal] = ACTIONS(454), + [aux_sym_string_literal_token1] = ACTIONS(454), + [sym_char_literal] = ACTIONS(454), + [anon_sym_true] = ACTIONS(456), + [anon_sym_false] = ACTIONS(456), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(456), + [sym_super] = ACTIONS(456), + [sym_crate] = ACTIONS(456), + [sym_metavariable] = ACTIONS(454), + [sym_raw_string_literal] = ACTIONS(454), + [sym_float_literal] = ACTIONS(454), [sym_block_comment] = ACTIONS(3), }, [238] = { - [sym_identifier] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_RBRACE] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_STAR] = ACTIONS(596), - [anon_sym_QMARK] = ACTIONS(594), - [anon_sym_u8] = ACTIONS(596), - [anon_sym_i8] = ACTIONS(596), - [anon_sym_u16] = ACTIONS(596), - [anon_sym_i16] = ACTIONS(596), - [anon_sym_u32] = ACTIONS(596), - [anon_sym_i32] = ACTIONS(596), - [anon_sym_u64] = ACTIONS(596), - [anon_sym_i64] = ACTIONS(596), - [anon_sym_u128] = ACTIONS(596), - [anon_sym_i128] = ACTIONS(596), - [anon_sym_isize] = ACTIONS(596), - [anon_sym_usize] = ACTIONS(596), - [anon_sym_f32] = ACTIONS(596), - [anon_sym_f64] = ACTIONS(596), - [anon_sym_bool] = ACTIONS(596), - [anon_sym_str] = ACTIONS(596), - [anon_sym_char] = ACTIONS(596), - [anon_sym_as] = ACTIONS(596), - [anon_sym_const] = ACTIONS(596), - [anon_sym_default] = ACTIONS(596), - [anon_sym_union] = ACTIONS(596), - [anon_sym_POUND] = ACTIONS(594), - [anon_sym_EQ] = ACTIONS(596), - [anon_sym_COMMA] = ACTIONS(594), - [anon_sym_ref] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(596), - [anon_sym_GT] = ACTIONS(596), - [anon_sym_COLON_COLON] = ACTIONS(594), - [anon_sym__] = ACTIONS(596), - [anon_sym_AMP] = ACTIONS(596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), - [sym_mutable_specifier] = ACTIONS(596), - [anon_sym_DOT_DOT] = ACTIONS(596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(594), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_AMP_AMP] = ACTIONS(594), - [anon_sym_PIPE_PIPE] = ACTIONS(594), - [anon_sym_PIPE] = ACTIONS(596), - [anon_sym_CARET] = ACTIONS(596), - [anon_sym_EQ_EQ] = ACTIONS(594), - [anon_sym_BANG_EQ] = ACTIONS(594), - [anon_sym_LT_EQ] = ACTIONS(594), - [anon_sym_GT_EQ] = ACTIONS(594), - [anon_sym_LT_LT] = ACTIONS(596), - [anon_sym_GT_GT] = ACTIONS(596), - [anon_sym_SLASH] = ACTIONS(596), - [anon_sym_PERCENT] = ACTIONS(596), - [anon_sym_PLUS_EQ] = ACTIONS(594), - [anon_sym_DASH_EQ] = ACTIONS(594), - [anon_sym_STAR_EQ] = ACTIONS(594), - [anon_sym_SLASH_EQ] = ACTIONS(594), - [anon_sym_PERCENT_EQ] = ACTIONS(594), - [anon_sym_AMP_EQ] = ACTIONS(594), - [anon_sym_PIPE_EQ] = ACTIONS(594), - [anon_sym_CARET_EQ] = ACTIONS(594), - [anon_sym_LT_LT_EQ] = ACTIONS(594), - [anon_sym_GT_GT_EQ] = ACTIONS(594), - [anon_sym_DOT] = ACTIONS(596), - [sym_integer_literal] = ACTIONS(594), - [aux_sym_string_literal_token1] = ACTIONS(594), - [sym_char_literal] = ACTIONS(594), - [anon_sym_true] = ACTIONS(596), - [anon_sym_false] = ACTIONS(596), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(596), - [sym_super] = ACTIONS(596), - [sym_crate] = ACTIONS(596), - [sym_metavariable] = ACTIONS(594), - [sym_raw_string_literal] = ACTIONS(594), - [sym_float_literal] = ACTIONS(594), + [sym_identifier] = ACTIONS(472), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_RBRACE] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_STAR] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(472), + [anon_sym_i8] = ACTIONS(472), + [anon_sym_u16] = ACTIONS(472), + [anon_sym_i16] = ACTIONS(472), + [anon_sym_u32] = ACTIONS(472), + [anon_sym_i32] = ACTIONS(472), + [anon_sym_u64] = ACTIONS(472), + [anon_sym_i64] = ACTIONS(472), + [anon_sym_u128] = ACTIONS(472), + [anon_sym_i128] = ACTIONS(472), + [anon_sym_isize] = ACTIONS(472), + [anon_sym_usize] = ACTIONS(472), + [anon_sym_f32] = ACTIONS(472), + [anon_sym_f64] = ACTIONS(472), + [anon_sym_bool] = ACTIONS(472), + [anon_sym_str] = ACTIONS(472), + [anon_sym_char] = ACTIONS(472), + [anon_sym_as] = ACTIONS(472), + [anon_sym_const] = ACTIONS(472), + [anon_sym_default] = ACTIONS(472), + [anon_sym_union] = ACTIONS(472), + [anon_sym_POUND] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(472), + [anon_sym_COMMA] = ACTIONS(470), + [anon_sym_ref] = ACTIONS(472), + [anon_sym_LT] = ACTIONS(472), + [anon_sym_GT] = ACTIONS(472), + [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym__] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(470), + [sym_mutable_specifier] = ACTIONS(472), + [anon_sym_DOT_DOT] = ACTIONS(472), + [anon_sym_DOT_DOT_EQ] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_AMP_AMP] = ACTIONS(470), + [anon_sym_PIPE_PIPE] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_CARET] = ACTIONS(472), + [anon_sym_EQ_EQ] = ACTIONS(470), + [anon_sym_BANG_EQ] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(470), + [anon_sym_LT_LT] = ACTIONS(472), + [anon_sym_GT_GT] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_PERCENT] = ACTIONS(472), + [anon_sym_PLUS_EQ] = ACTIONS(470), + [anon_sym_DASH_EQ] = ACTIONS(470), + [anon_sym_STAR_EQ] = ACTIONS(470), + [anon_sym_SLASH_EQ] = ACTIONS(470), + [anon_sym_PERCENT_EQ] = ACTIONS(470), + [anon_sym_AMP_EQ] = ACTIONS(470), + [anon_sym_PIPE_EQ] = ACTIONS(470), + [anon_sym_CARET_EQ] = ACTIONS(470), + [anon_sym_LT_LT_EQ] = ACTIONS(470), + [anon_sym_GT_GT_EQ] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(472), + [sym_integer_literal] = ACTIONS(470), + [aux_sym_string_literal_token1] = ACTIONS(470), + [sym_char_literal] = ACTIONS(470), + [anon_sym_true] = ACTIONS(472), + [anon_sym_false] = ACTIONS(472), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(472), + [sym_super] = ACTIONS(472), + [sym_crate] = ACTIONS(472), + [sym_metavariable] = ACTIONS(470), + [sym_raw_string_literal] = ACTIONS(470), + [sym_float_literal] = ACTIONS(470), [sym_block_comment] = ACTIONS(3), }, [239] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2026), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(1897), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_type_binding] = STATE(2225), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [sym_block] = STATE(2225), - [sym__literal] = STATE(2225), - [sym_string_literal] = STATE(2318), - [sym_boolean_literal] = STATE(2318), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(900), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(920), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(920), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_raw_string_literal] = ACTIONS(920), - [sym_float_literal] = ACTIONS(920), + [sym_identifier] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_STAR] = ACTIONS(484), + [anon_sym_QMARK] = ACTIONS(482), + [anon_sym_u8] = ACTIONS(484), + [anon_sym_i8] = ACTIONS(484), + [anon_sym_u16] = ACTIONS(484), + [anon_sym_i16] = ACTIONS(484), + [anon_sym_u32] = ACTIONS(484), + [anon_sym_i32] = ACTIONS(484), + [anon_sym_u64] = ACTIONS(484), + [anon_sym_i64] = ACTIONS(484), + [anon_sym_u128] = ACTIONS(484), + [anon_sym_i128] = ACTIONS(484), + [anon_sym_isize] = ACTIONS(484), + [anon_sym_usize] = ACTIONS(484), + [anon_sym_f32] = ACTIONS(484), + [anon_sym_f64] = ACTIONS(484), + [anon_sym_bool] = ACTIONS(484), + [anon_sym_str] = ACTIONS(484), + [anon_sym_char] = ACTIONS(484), + [anon_sym_as] = ACTIONS(484), + [anon_sym_const] = ACTIONS(484), + [anon_sym_default] = ACTIONS(484), + [anon_sym_union] = ACTIONS(484), + [anon_sym_POUND] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(484), + [anon_sym_COMMA] = ACTIONS(482), + [anon_sym_ref] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_COLON_COLON] = ACTIONS(482), + [anon_sym__] = ACTIONS(484), + [anon_sym_AMP] = ACTIONS(484), + [anon_sym_DOT_DOT_DOT] = ACTIONS(482), + [sym_mutable_specifier] = ACTIONS(484), + [anon_sym_DOT_DOT] = ACTIONS(484), + [anon_sym_DOT_DOT_EQ] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(482), + [anon_sym_PIPE_PIPE] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(484), + [anon_sym_CARET] = ACTIONS(484), + [anon_sym_EQ_EQ] = ACTIONS(482), + [anon_sym_BANG_EQ] = ACTIONS(482), + [anon_sym_LT_EQ] = ACTIONS(482), + [anon_sym_GT_EQ] = ACTIONS(482), + [anon_sym_LT_LT] = ACTIONS(484), + [anon_sym_GT_GT] = ACTIONS(484), + [anon_sym_SLASH] = ACTIONS(484), + [anon_sym_PERCENT] = ACTIONS(484), + [anon_sym_PLUS_EQ] = ACTIONS(482), + [anon_sym_DASH_EQ] = ACTIONS(482), + [anon_sym_STAR_EQ] = ACTIONS(482), + [anon_sym_SLASH_EQ] = ACTIONS(482), + [anon_sym_PERCENT_EQ] = ACTIONS(482), + [anon_sym_AMP_EQ] = ACTIONS(482), + [anon_sym_PIPE_EQ] = ACTIONS(482), + [anon_sym_CARET_EQ] = ACTIONS(482), + [anon_sym_LT_LT_EQ] = ACTIONS(482), + [anon_sym_GT_GT_EQ] = ACTIONS(482), + [anon_sym_DOT] = ACTIONS(484), + [sym_integer_literal] = ACTIONS(482), + [aux_sym_string_literal_token1] = ACTIONS(482), + [sym_char_literal] = ACTIONS(482), + [anon_sym_true] = ACTIONS(484), + [anon_sym_false] = ACTIONS(484), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(484), + [sym_super] = ACTIONS(484), + [sym_crate] = ACTIONS(484), + [sym_metavariable] = ACTIONS(482), + [sym_raw_string_literal] = ACTIONS(482), + [sym_float_literal] = ACTIONS(482), [sym_block_comment] = ACTIONS(3), }, [240] = { - [sym_identifier] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_RBRACE] = ACTIONS(590), - [anon_sym_LBRACK] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_STAR] = ACTIONS(592), - [anon_sym_QMARK] = ACTIONS(590), - [anon_sym_u8] = ACTIONS(592), - [anon_sym_i8] = ACTIONS(592), - [anon_sym_u16] = ACTIONS(592), - [anon_sym_i16] = ACTIONS(592), - [anon_sym_u32] = ACTIONS(592), - [anon_sym_i32] = ACTIONS(592), - [anon_sym_u64] = ACTIONS(592), - [anon_sym_i64] = ACTIONS(592), - [anon_sym_u128] = ACTIONS(592), - [anon_sym_i128] = ACTIONS(592), - [anon_sym_isize] = ACTIONS(592), - [anon_sym_usize] = ACTIONS(592), - [anon_sym_f32] = ACTIONS(592), - [anon_sym_f64] = ACTIONS(592), - [anon_sym_bool] = ACTIONS(592), - [anon_sym_str] = ACTIONS(592), - [anon_sym_char] = ACTIONS(592), - [anon_sym_as] = ACTIONS(592), - [anon_sym_const] = ACTIONS(592), - [anon_sym_default] = ACTIONS(592), - [anon_sym_union] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(590), - [anon_sym_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(590), - [anon_sym_ref] = ACTIONS(592), - [anon_sym_LT] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(590), - [anon_sym__] = ACTIONS(592), - [anon_sym_AMP] = ACTIONS(592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(590), - [sym_mutable_specifier] = ACTIONS(592), - [anon_sym_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_AMP_AMP] = ACTIONS(590), - [anon_sym_PIPE_PIPE] = ACTIONS(590), - [anon_sym_PIPE] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_EQ_EQ] = ACTIONS(590), - [anon_sym_BANG_EQ] = ACTIONS(590), - [anon_sym_LT_EQ] = ACTIONS(590), - [anon_sym_GT_EQ] = ACTIONS(590), - [anon_sym_LT_LT] = ACTIONS(592), - [anon_sym_GT_GT] = ACTIONS(592), - [anon_sym_SLASH] = ACTIONS(592), - [anon_sym_PERCENT] = ACTIONS(592), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_STAR_EQ] = ACTIONS(590), - [anon_sym_SLASH_EQ] = ACTIONS(590), - [anon_sym_PERCENT_EQ] = ACTIONS(590), - [anon_sym_AMP_EQ] = ACTIONS(590), - [anon_sym_PIPE_EQ] = ACTIONS(590), - [anon_sym_CARET_EQ] = ACTIONS(590), - [anon_sym_LT_LT_EQ] = ACTIONS(590), - [anon_sym_GT_GT_EQ] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(592), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(590), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(592), - [anon_sym_false] = ACTIONS(592), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(592), - [sym_super] = ACTIONS(592), - [sym_crate] = ACTIONS(592), - [sym_metavariable] = ACTIONS(590), - [sym_raw_string_literal] = ACTIONS(590), - [sym_float_literal] = ACTIONS(590), + [sym_identifier] = ACTIONS(498), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_LBRACK] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(498), + [anon_sym_QMARK] = ACTIONS(496), + [anon_sym_u8] = ACTIONS(498), + [anon_sym_i8] = ACTIONS(498), + [anon_sym_u16] = ACTIONS(498), + [anon_sym_i16] = ACTIONS(498), + [anon_sym_u32] = ACTIONS(498), + [anon_sym_i32] = ACTIONS(498), + [anon_sym_u64] = ACTIONS(498), + [anon_sym_i64] = ACTIONS(498), + [anon_sym_u128] = ACTIONS(498), + [anon_sym_i128] = ACTIONS(498), + [anon_sym_isize] = ACTIONS(498), + [anon_sym_usize] = ACTIONS(498), + [anon_sym_f32] = ACTIONS(498), + [anon_sym_f64] = ACTIONS(498), + [anon_sym_bool] = ACTIONS(498), + [anon_sym_str] = ACTIONS(498), + [anon_sym_char] = ACTIONS(498), + [anon_sym_as] = ACTIONS(498), + [anon_sym_const] = ACTIONS(498), + [anon_sym_default] = ACTIONS(498), + [anon_sym_union] = ACTIONS(498), + [anon_sym_POUND] = ACTIONS(496), + [anon_sym_EQ] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(496), + [anon_sym_ref] = ACTIONS(498), + [anon_sym_LT] = ACTIONS(498), + [anon_sym_GT] = ACTIONS(498), + [anon_sym_COLON_COLON] = ACTIONS(496), + [anon_sym__] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(498), + [anon_sym_DOT_DOT_DOT] = ACTIONS(496), + [sym_mutable_specifier] = ACTIONS(498), + [anon_sym_DOT_DOT] = ACTIONS(498), + [anon_sym_DOT_DOT_EQ] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(498), + [anon_sym_AMP_AMP] = ACTIONS(496), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(498), + [anon_sym_EQ_EQ] = ACTIONS(496), + [anon_sym_BANG_EQ] = ACTIONS(496), + [anon_sym_LT_EQ] = ACTIONS(496), + [anon_sym_GT_EQ] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_GT_GT] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_PLUS_EQ] = ACTIONS(496), + [anon_sym_DASH_EQ] = ACTIONS(496), + [anon_sym_STAR_EQ] = ACTIONS(496), + [anon_sym_SLASH_EQ] = ACTIONS(496), + [anon_sym_PERCENT_EQ] = ACTIONS(496), + [anon_sym_AMP_EQ] = ACTIONS(496), + [anon_sym_PIPE_EQ] = ACTIONS(496), + [anon_sym_CARET_EQ] = ACTIONS(496), + [anon_sym_LT_LT_EQ] = ACTIONS(496), + [anon_sym_GT_GT_EQ] = ACTIONS(496), + [anon_sym_DOT] = ACTIONS(498), + [sym_integer_literal] = ACTIONS(496), + [aux_sym_string_literal_token1] = ACTIONS(496), + [sym_char_literal] = ACTIONS(496), + [anon_sym_true] = ACTIONS(498), + [anon_sym_false] = ACTIONS(498), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(498), + [sym_super] = ACTIONS(498), + [sym_crate] = ACTIONS(498), + [sym_metavariable] = ACTIONS(496), + [sym_raw_string_literal] = ACTIONS(496), + [sym_float_literal] = ACTIONS(496), [sym_block_comment] = ACTIONS(3), }, [241] = { - [sym_identifier] = ACTIONS(930), - [anon_sym_LPAREN] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_u8] = ACTIONS(930), - [anon_sym_i8] = ACTIONS(930), - [anon_sym_u16] = ACTIONS(930), - [anon_sym_i16] = ACTIONS(930), - [anon_sym_u32] = ACTIONS(930), - [anon_sym_i32] = ACTIONS(930), - [anon_sym_u64] = ACTIONS(930), - [anon_sym_i64] = ACTIONS(930), - [anon_sym_u128] = ACTIONS(930), - [anon_sym_i128] = ACTIONS(930), - [anon_sym_isize] = ACTIONS(930), - [anon_sym_usize] = ACTIONS(930), - [anon_sym_f32] = ACTIONS(930), - [anon_sym_f64] = ACTIONS(930), - [anon_sym_bool] = ACTIONS(930), - [anon_sym_str] = ACTIONS(930), - [anon_sym_char] = ACTIONS(930), - [anon_sym_as] = ACTIONS(568), - [anon_sym_const] = ACTIONS(930), - [anon_sym_default] = ACTIONS(930), - [anon_sym_union] = ACTIONS(930), - [anon_sym_POUND] = ACTIONS(932), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(566), - [anon_sym_ref] = ACTIONS(930), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_COLON_COLON] = ACTIONS(932), - [anon_sym__] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(930), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [sym_mutable_specifier] = ACTIONS(930), - [anon_sym_DOT_DOT] = ACTIONS(930), - [anon_sym_DOT_DOT_EQ] = ACTIONS(566), - [anon_sym_DASH] = ACTIONS(930), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_DOT] = ACTIONS(568), - [sym_integer_literal] = ACTIONS(932), - [aux_sym_string_literal_token1] = ACTIONS(932), - [sym_char_literal] = ACTIONS(932), - [anon_sym_true] = ACTIONS(930), - [anon_sym_false] = ACTIONS(930), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(930), - [sym_super] = ACTIONS(930), - [sym_crate] = ACTIONS(930), - [sym_metavariable] = ACTIONS(932), - [sym_raw_string_literal] = ACTIONS(932), - [sym_float_literal] = ACTIONS(932), + [sym_identifier] = ACTIONS(452), + [anon_sym_LPAREN] = ACTIONS(450), + [anon_sym_RBRACE] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_STAR] = ACTIONS(452), + [anon_sym_QMARK] = ACTIONS(450), + [anon_sym_u8] = ACTIONS(452), + [anon_sym_i8] = ACTIONS(452), + [anon_sym_u16] = ACTIONS(452), + [anon_sym_i16] = ACTIONS(452), + [anon_sym_u32] = ACTIONS(452), + [anon_sym_i32] = ACTIONS(452), + [anon_sym_u64] = ACTIONS(452), + [anon_sym_i64] = ACTIONS(452), + [anon_sym_u128] = ACTIONS(452), + [anon_sym_i128] = ACTIONS(452), + [anon_sym_isize] = ACTIONS(452), + [anon_sym_usize] = ACTIONS(452), + [anon_sym_f32] = ACTIONS(452), + [anon_sym_f64] = ACTIONS(452), + [anon_sym_bool] = ACTIONS(452), + [anon_sym_str] = ACTIONS(452), + [anon_sym_char] = ACTIONS(452), + [anon_sym_as] = ACTIONS(452), + [anon_sym_const] = ACTIONS(452), + [anon_sym_default] = ACTIONS(452), + [anon_sym_union] = ACTIONS(452), + [anon_sym_POUND] = ACTIONS(450), + [anon_sym_EQ] = ACTIONS(452), + [anon_sym_COMMA] = ACTIONS(450), + [anon_sym_ref] = ACTIONS(452), + [anon_sym_LT] = ACTIONS(452), + [anon_sym_GT] = ACTIONS(452), + [anon_sym_COLON_COLON] = ACTIONS(450), + [anon_sym__] = ACTIONS(452), + [anon_sym_AMP] = ACTIONS(452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), + [sym_mutable_specifier] = ACTIONS(452), + [anon_sym_DOT_DOT] = ACTIONS(452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_AMP_AMP] = ACTIONS(450), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_PIPE] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_EQ_EQ] = ACTIONS(450), + [anon_sym_BANG_EQ] = ACTIONS(450), + [anon_sym_LT_EQ] = ACTIONS(450), + [anon_sym_GT_EQ] = ACTIONS(450), + [anon_sym_LT_LT] = ACTIONS(452), + [anon_sym_GT_GT] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(452), + [anon_sym_PERCENT] = ACTIONS(452), + [anon_sym_PLUS_EQ] = ACTIONS(450), + [anon_sym_DASH_EQ] = ACTIONS(450), + [anon_sym_STAR_EQ] = ACTIONS(450), + [anon_sym_SLASH_EQ] = ACTIONS(450), + [anon_sym_PERCENT_EQ] = ACTIONS(450), + [anon_sym_AMP_EQ] = ACTIONS(450), + [anon_sym_PIPE_EQ] = ACTIONS(450), + [anon_sym_CARET_EQ] = ACTIONS(450), + [anon_sym_LT_LT_EQ] = ACTIONS(450), + [anon_sym_GT_GT_EQ] = ACTIONS(450), + [anon_sym_DOT] = ACTIONS(452), + [sym_integer_literal] = ACTIONS(450), + [aux_sym_string_literal_token1] = ACTIONS(450), + [sym_char_literal] = ACTIONS(450), + [anon_sym_true] = ACTIONS(452), + [anon_sym_false] = ACTIONS(452), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(452), + [sym_super] = ACTIONS(452), + [sym_crate] = ACTIONS(452), + [sym_metavariable] = ACTIONS(450), + [sym_raw_string_literal] = ACTIONS(450), + [sym_float_literal] = ACTIONS(450), [sym_block_comment] = ACTIONS(3), }, [242] = { - [sym_identifier] = ACTIONS(658), - [anon_sym_LPAREN] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(656), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_QMARK] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(658), - [anon_sym_i8] = ACTIONS(658), - [anon_sym_u16] = ACTIONS(658), - [anon_sym_i16] = ACTIONS(658), - [anon_sym_u32] = ACTIONS(658), - [anon_sym_i32] = ACTIONS(658), - [anon_sym_u64] = ACTIONS(658), - [anon_sym_i64] = ACTIONS(658), - [anon_sym_u128] = ACTIONS(658), - [anon_sym_i128] = ACTIONS(658), - [anon_sym_isize] = ACTIONS(658), - [anon_sym_usize] = ACTIONS(658), - [anon_sym_f32] = ACTIONS(658), - [anon_sym_f64] = ACTIONS(658), - [anon_sym_bool] = ACTIONS(658), - [anon_sym_str] = ACTIONS(658), - [anon_sym_char] = ACTIONS(658), - [anon_sym_as] = ACTIONS(658), - [anon_sym_const] = ACTIONS(658), - [anon_sym_default] = ACTIONS(658), - [anon_sym_union] = ACTIONS(658), - [anon_sym_POUND] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(658), - [anon_sym_COMMA] = ACTIONS(656), - [anon_sym_ref] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_COLON_COLON] = ACTIONS(656), - [anon_sym__] = ACTIONS(658), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_DOT_DOT_DOT] = ACTIONS(656), - [sym_mutable_specifier] = ACTIONS(658), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_DOT_DOT_EQ] = ACTIONS(656), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_AMP_AMP] = ACTIONS(656), - [anon_sym_PIPE_PIPE] = ACTIONS(656), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_EQ_EQ] = ACTIONS(656), - [anon_sym_BANG_EQ] = ACTIONS(656), - [anon_sym_LT_EQ] = ACTIONS(656), - [anon_sym_GT_EQ] = ACTIONS(656), - [anon_sym_LT_LT] = ACTIONS(658), - [anon_sym_GT_GT] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_PERCENT] = ACTIONS(658), - [anon_sym_PLUS_EQ] = ACTIONS(656), - [anon_sym_DASH_EQ] = ACTIONS(656), - [anon_sym_STAR_EQ] = ACTIONS(656), - [anon_sym_SLASH_EQ] = ACTIONS(656), - [anon_sym_PERCENT_EQ] = ACTIONS(656), - [anon_sym_AMP_EQ] = ACTIONS(656), - [anon_sym_PIPE_EQ] = ACTIONS(656), - [anon_sym_CARET_EQ] = ACTIONS(656), - [anon_sym_LT_LT_EQ] = ACTIONS(656), - [anon_sym_GT_GT_EQ] = ACTIONS(656), - [anon_sym_DOT] = ACTIONS(658), - [sym_integer_literal] = ACTIONS(656), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(656), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(658), - [sym_super] = ACTIONS(658), - [sym_crate] = ACTIONS(658), - [sym_metavariable] = ACTIONS(656), - [sym_raw_string_literal] = ACTIONS(656), - [sym_float_literal] = ACTIONS(656), + [sym_identifier] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RBRACE] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(422), + [anon_sym_QMARK] = ACTIONS(424), + [anon_sym_u8] = ACTIONS(900), + [anon_sym_i8] = ACTIONS(900), + [anon_sym_u16] = ACTIONS(900), + [anon_sym_i16] = ACTIONS(900), + [anon_sym_u32] = ACTIONS(900), + [anon_sym_i32] = ACTIONS(900), + [anon_sym_u64] = ACTIONS(900), + [anon_sym_i64] = ACTIONS(900), + [anon_sym_u128] = ACTIONS(900), + [anon_sym_i128] = ACTIONS(900), + [anon_sym_isize] = ACTIONS(900), + [anon_sym_usize] = ACTIONS(900), + [anon_sym_f32] = ACTIONS(900), + [anon_sym_f64] = ACTIONS(900), + [anon_sym_bool] = ACTIONS(900), + [anon_sym_str] = ACTIONS(900), + [anon_sym_char] = ACTIONS(900), + [anon_sym_as] = ACTIONS(422), + [anon_sym_const] = ACTIONS(900), + [anon_sym_default] = ACTIONS(900), + [anon_sym_union] = ACTIONS(900), + [anon_sym_POUND] = ACTIONS(902), + [anon_sym_EQ] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(424), + [anon_sym_ref] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_GT] = ACTIONS(422), + [anon_sym_COLON_COLON] = ACTIONS(902), + [anon_sym__] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(424), + [sym_mutable_specifier] = ACTIONS(900), + [anon_sym_DOT_DOT] = ACTIONS(900), + [anon_sym_DOT_DOT_EQ] = ACTIONS(424), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_AMP_AMP] = ACTIONS(424), + [anon_sym_PIPE_PIPE] = ACTIONS(424), + [anon_sym_PIPE] = ACTIONS(422), + [anon_sym_CARET] = ACTIONS(422), + [anon_sym_EQ_EQ] = ACTIONS(424), + [anon_sym_BANG_EQ] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(424), + [anon_sym_GT_EQ] = ACTIONS(424), + [anon_sym_LT_LT] = ACTIONS(422), + [anon_sym_GT_GT] = ACTIONS(422), + [anon_sym_SLASH] = ACTIONS(422), + [anon_sym_PERCENT] = ACTIONS(422), + [anon_sym_PLUS_EQ] = ACTIONS(424), + [anon_sym_DASH_EQ] = ACTIONS(424), + [anon_sym_STAR_EQ] = ACTIONS(424), + [anon_sym_SLASH_EQ] = ACTIONS(424), + [anon_sym_PERCENT_EQ] = ACTIONS(424), + [anon_sym_AMP_EQ] = ACTIONS(424), + [anon_sym_PIPE_EQ] = ACTIONS(424), + [anon_sym_CARET_EQ] = ACTIONS(424), + [anon_sym_LT_LT_EQ] = ACTIONS(424), + [anon_sym_GT_GT_EQ] = ACTIONS(424), + [anon_sym_DOT] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(902), + [aux_sym_string_literal_token1] = ACTIONS(902), + [sym_char_literal] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(900), + [sym_super] = ACTIONS(900), + [sym_crate] = ACTIONS(900), + [sym_metavariable] = ACTIONS(902), + [sym_raw_string_literal] = ACTIONS(902), + [sym_float_literal] = ACTIONS(902), [sym_block_comment] = ACTIONS(3), }, [243] = { - [sym_identifier] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(654), - [anon_sym_i8] = ACTIONS(654), - [anon_sym_u16] = ACTIONS(654), - [anon_sym_i16] = ACTIONS(654), - [anon_sym_u32] = ACTIONS(654), - [anon_sym_i32] = ACTIONS(654), - [anon_sym_u64] = ACTIONS(654), - [anon_sym_i64] = ACTIONS(654), - [anon_sym_u128] = ACTIONS(654), - [anon_sym_i128] = ACTIONS(654), - [anon_sym_isize] = ACTIONS(654), - [anon_sym_usize] = ACTIONS(654), - [anon_sym_f32] = ACTIONS(654), - [anon_sym_f64] = ACTIONS(654), - [anon_sym_bool] = ACTIONS(654), - [anon_sym_str] = ACTIONS(654), - [anon_sym_char] = ACTIONS(654), - [anon_sym_as] = ACTIONS(654), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(654), - [anon_sym_union] = ACTIONS(654), - [anon_sym_POUND] = ACTIONS(652), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_COMMA] = ACTIONS(652), - [anon_sym_ref] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_COLON_COLON] = ACTIONS(652), - [anon_sym__] = ACTIONS(654), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(652), - [sym_mutable_specifier] = ACTIONS(654), - [anon_sym_DOT_DOT] = ACTIONS(654), - [anon_sym_DOT_DOT_EQ] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(654), - [anon_sym_CARET] = ACTIONS(654), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(654), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_PERCENT] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_SLASH_EQ] = ACTIONS(652), - [anon_sym_PERCENT_EQ] = ACTIONS(652), - [anon_sym_AMP_EQ] = ACTIONS(652), - [anon_sym_PIPE_EQ] = ACTIONS(652), - [anon_sym_CARET_EQ] = ACTIONS(652), - [anon_sym_LT_LT_EQ] = ACTIONS(652), - [anon_sym_GT_GT_EQ] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(654), - [sym_integer_literal] = ACTIONS(652), - [aux_sym_string_literal_token1] = ACTIONS(652), - [sym_char_literal] = ACTIONS(652), - [anon_sym_true] = ACTIONS(654), - [anon_sym_false] = ACTIONS(654), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(654), - [sym_super] = ACTIONS(654), - [sym_crate] = ACTIONS(654), - [sym_metavariable] = ACTIONS(652), - [sym_raw_string_literal] = ACTIONS(652), - [sym_float_literal] = ACTIONS(652), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1990), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2002), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_type_binding] = STATE(2275), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [sym_block] = STATE(2275), + [sym__literal] = STATE(2275), + [sym_string_literal] = STATE(2136), + [sym_boolean_literal] = STATE(2136), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(904), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(890), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(890), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_raw_string_literal] = ACTIONS(890), + [sym_float_literal] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, [244] = { - [sym_identifier] = ACTIONS(630), - [anon_sym_LPAREN] = ACTIONS(628), - [anon_sym_RBRACE] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_PLUS] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(630), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_u8] = ACTIONS(630), - [anon_sym_i8] = ACTIONS(630), - [anon_sym_u16] = ACTIONS(630), - [anon_sym_i16] = ACTIONS(630), - [anon_sym_u32] = ACTIONS(630), - [anon_sym_i32] = ACTIONS(630), - [anon_sym_u64] = ACTIONS(630), - [anon_sym_i64] = ACTIONS(630), - [anon_sym_u128] = ACTIONS(630), - [anon_sym_i128] = ACTIONS(630), - [anon_sym_isize] = ACTIONS(630), - [anon_sym_usize] = ACTIONS(630), - [anon_sym_f32] = ACTIONS(630), - [anon_sym_f64] = ACTIONS(630), - [anon_sym_bool] = ACTIONS(630), - [anon_sym_str] = ACTIONS(630), - [anon_sym_char] = ACTIONS(630), - [anon_sym_as] = ACTIONS(630), - [anon_sym_const] = ACTIONS(630), - [anon_sym_default] = ACTIONS(630), - [anon_sym_union] = ACTIONS(630), - [anon_sym_POUND] = ACTIONS(628), - [anon_sym_EQ] = ACTIONS(630), - [anon_sym_COMMA] = ACTIONS(628), - [anon_sym_ref] = ACTIONS(630), - [anon_sym_LT] = ACTIONS(630), - [anon_sym_GT] = ACTIONS(630), - [anon_sym_COLON_COLON] = ACTIONS(628), - [anon_sym__] = ACTIONS(630), - [anon_sym_AMP] = ACTIONS(630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(628), - [sym_mutable_specifier] = ACTIONS(630), - [anon_sym_DOT_DOT] = ACTIONS(630), - [anon_sym_DOT_DOT_EQ] = ACTIONS(628), - [anon_sym_DASH] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(628), - [anon_sym_PIPE_PIPE] = ACTIONS(628), - [anon_sym_PIPE] = ACTIONS(630), - [anon_sym_CARET] = ACTIONS(630), - [anon_sym_EQ_EQ] = ACTIONS(628), - [anon_sym_BANG_EQ] = ACTIONS(628), - [anon_sym_LT_EQ] = ACTIONS(628), - [anon_sym_GT_EQ] = ACTIONS(628), - [anon_sym_LT_LT] = ACTIONS(630), - [anon_sym_GT_GT] = ACTIONS(630), - [anon_sym_SLASH] = ACTIONS(630), - [anon_sym_PERCENT] = ACTIONS(630), - [anon_sym_PLUS_EQ] = ACTIONS(628), - [anon_sym_DASH_EQ] = ACTIONS(628), - [anon_sym_STAR_EQ] = ACTIONS(628), - [anon_sym_SLASH_EQ] = ACTIONS(628), - [anon_sym_PERCENT_EQ] = ACTIONS(628), - [anon_sym_AMP_EQ] = ACTIONS(628), - [anon_sym_PIPE_EQ] = ACTIONS(628), - [anon_sym_CARET_EQ] = ACTIONS(628), - [anon_sym_LT_LT_EQ] = ACTIONS(628), - [anon_sym_GT_GT_EQ] = ACTIONS(628), - [anon_sym_DOT] = ACTIONS(630), - [sym_integer_literal] = ACTIONS(628), - [aux_sym_string_literal_token1] = ACTIONS(628), - [sym_char_literal] = ACTIONS(628), - [anon_sym_true] = ACTIONS(630), - [anon_sym_false] = ACTIONS(630), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(630), - [sym_super] = ACTIONS(630), - [sym_crate] = ACTIONS(630), - [sym_metavariable] = ACTIONS(628), - [sym_raw_string_literal] = ACTIONS(628), - [sym_float_literal] = ACTIONS(628), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1990), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2002), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_type_binding] = STATE(2275), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [sym_block] = STATE(2275), + [sym__literal] = STATE(2275), + [sym_string_literal] = STATE(2136), + [sym_boolean_literal] = STATE(2136), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(890), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(890), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_raw_string_literal] = ACTIONS(890), + [sym_float_literal] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, [245] = { - [sym_identifier] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(636), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(638), - [anon_sym_STAR] = ACTIONS(638), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_u8] = ACTIONS(638), - [anon_sym_i8] = ACTIONS(638), - [anon_sym_u16] = ACTIONS(638), - [anon_sym_i16] = ACTIONS(638), - [anon_sym_u32] = ACTIONS(638), - [anon_sym_i32] = ACTIONS(638), - [anon_sym_u64] = ACTIONS(638), - [anon_sym_i64] = ACTIONS(638), - [anon_sym_u128] = ACTIONS(638), - [anon_sym_i128] = ACTIONS(638), - [anon_sym_isize] = ACTIONS(638), - [anon_sym_usize] = ACTIONS(638), - [anon_sym_f32] = ACTIONS(638), - [anon_sym_f64] = ACTIONS(638), - [anon_sym_bool] = ACTIONS(638), - [anon_sym_str] = ACTIONS(638), - [anon_sym_char] = ACTIONS(638), - [anon_sym_as] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_default] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [anon_sym_POUND] = ACTIONS(636), - [anon_sym_EQ] = ACTIONS(638), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_ref] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(638), - [anon_sym_COLON_COLON] = ACTIONS(636), - [anon_sym__] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_DOT_DOT_DOT] = ACTIONS(636), - [sym_mutable_specifier] = ACTIONS(638), - [anon_sym_DOT_DOT] = ACTIONS(638), - [anon_sym_DOT_DOT_EQ] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(638), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_PIPE] = ACTIONS(638), - [anon_sym_CARET] = ACTIONS(638), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_LT_LT] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(638), - [anon_sym_SLASH] = ACTIONS(638), - [anon_sym_PERCENT] = ACTIONS(638), - [anon_sym_PLUS_EQ] = ACTIONS(636), - [anon_sym_DASH_EQ] = ACTIONS(636), - [anon_sym_STAR_EQ] = ACTIONS(636), - [anon_sym_SLASH_EQ] = ACTIONS(636), - [anon_sym_PERCENT_EQ] = ACTIONS(636), - [anon_sym_AMP_EQ] = ACTIONS(636), - [anon_sym_PIPE_EQ] = ACTIONS(636), - [anon_sym_CARET_EQ] = ACTIONS(636), - [anon_sym_LT_LT_EQ] = ACTIONS(636), - [anon_sym_GT_GT_EQ] = ACTIONS(636), - [anon_sym_DOT] = ACTIONS(638), - [sym_integer_literal] = ACTIONS(636), - [aux_sym_string_literal_token1] = ACTIONS(636), - [sym_char_literal] = ACTIONS(636), - [anon_sym_true] = ACTIONS(638), - [anon_sym_false] = ACTIONS(638), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(638), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(636), - [sym_raw_string_literal] = ACTIONS(636), - [sym_float_literal] = ACTIONS(636), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1849), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(1843), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_type_binding] = STATE(1890), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [sym_block] = STATE(1890), + [sym__literal] = STATE(1890), + [sym_string_literal] = STATE(2136), + [sym_boolean_literal] = STATE(2136), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(890), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(890), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_raw_string_literal] = ACTIONS(890), + [sym_float_literal] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, [246] = { - [sym_identifier] = ACTIONS(678), - [anon_sym_LPAREN] = ACTIONS(676), - [anon_sym_RBRACE] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(678), - [anon_sym_STAR] = ACTIONS(678), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(678), - [anon_sym_i8] = ACTIONS(678), - [anon_sym_u16] = ACTIONS(678), - [anon_sym_i16] = ACTIONS(678), - [anon_sym_u32] = ACTIONS(678), - [anon_sym_i32] = ACTIONS(678), - [anon_sym_u64] = ACTIONS(678), - [anon_sym_i64] = ACTIONS(678), - [anon_sym_u128] = ACTIONS(678), - [anon_sym_i128] = ACTIONS(678), - [anon_sym_isize] = ACTIONS(678), - [anon_sym_usize] = ACTIONS(678), - [anon_sym_f32] = ACTIONS(678), - [anon_sym_f64] = ACTIONS(678), - [anon_sym_bool] = ACTIONS(678), - [anon_sym_str] = ACTIONS(678), - [anon_sym_char] = ACTIONS(678), - [anon_sym_as] = ACTIONS(678), - [anon_sym_const] = ACTIONS(678), - [anon_sym_default] = ACTIONS(678), - [anon_sym_union] = ACTIONS(678), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(678), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_ref] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(678), - [anon_sym_GT] = ACTIONS(678), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym__] = ACTIONS(678), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [sym_mutable_specifier] = ACTIONS(678), - [anon_sym_DOT_DOT] = ACTIONS(678), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(678), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(678), - [anon_sym_CARET] = ACTIONS(678), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(678), - [anon_sym_GT_GT] = ACTIONS(678), - [anon_sym_SLASH] = ACTIONS(678), - [anon_sym_PERCENT] = ACTIONS(678), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(678), - [sym_integer_literal] = ACTIONS(676), - [aux_sym_string_literal_token1] = ACTIONS(676), - [sym_char_literal] = ACTIONS(676), - [anon_sym_true] = ACTIONS(678), - [anon_sym_false] = ACTIONS(678), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(678), - [sym_super] = ACTIONS(678), - [sym_crate] = ACTIONS(678), - [sym_metavariable] = ACTIONS(676), - [sym_raw_string_literal] = ACTIONS(676), - [sym_float_literal] = ACTIONS(676), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1753), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(1752), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_type_binding] = STATE(2083), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [sym_block] = STATE(2083), + [sym__literal] = STATE(2083), + [sym_string_literal] = STATE(2136), + [sym_boolean_literal] = STATE(2136), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(890), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(890), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_raw_string_literal] = ACTIONS(890), + [sym_float_literal] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, [247] = { - [sym_identifier] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(578), - [anon_sym_u8] = ACTIONS(580), - [anon_sym_i8] = ACTIONS(580), - [anon_sym_u16] = ACTIONS(580), - [anon_sym_i16] = ACTIONS(580), - [anon_sym_u32] = ACTIONS(580), - [anon_sym_i32] = ACTIONS(580), - [anon_sym_u64] = ACTIONS(580), - [anon_sym_i64] = ACTIONS(580), - [anon_sym_u128] = ACTIONS(580), - [anon_sym_i128] = ACTIONS(580), - [anon_sym_isize] = ACTIONS(580), - [anon_sym_usize] = ACTIONS(580), - [anon_sym_f32] = ACTIONS(580), - [anon_sym_f64] = ACTIONS(580), - [anon_sym_bool] = ACTIONS(580), - [anon_sym_str] = ACTIONS(580), - [anon_sym_char] = ACTIONS(580), - [anon_sym_as] = ACTIONS(580), - [anon_sym_const] = ACTIONS(580), - [anon_sym_default] = ACTIONS(580), - [anon_sym_union] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_EQ] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(578), - [anon_sym_ref] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_COLON_COLON] = ACTIONS(578), - [anon_sym__] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(578), - [sym_mutable_specifier] = ACTIONS(580), - [anon_sym_DOT_DOT] = ACTIONS(580), - [anon_sym_DOT_DOT_EQ] = ACTIONS(578), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(580), - [anon_sym_EQ_EQ] = ACTIONS(578), - [anon_sym_BANG_EQ] = ACTIONS(578), - [anon_sym_LT_EQ] = ACTIONS(578), - [anon_sym_GT_EQ] = ACTIONS(578), - [anon_sym_LT_LT] = ACTIONS(580), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PERCENT] = ACTIONS(580), - [anon_sym_PLUS_EQ] = ACTIONS(578), - [anon_sym_DASH_EQ] = ACTIONS(578), - [anon_sym_STAR_EQ] = ACTIONS(578), - [anon_sym_SLASH_EQ] = ACTIONS(578), - [anon_sym_PERCENT_EQ] = ACTIONS(578), - [anon_sym_AMP_EQ] = ACTIONS(578), - [anon_sym_PIPE_EQ] = ACTIONS(578), - [anon_sym_CARET_EQ] = ACTIONS(578), - [anon_sym_LT_LT_EQ] = ACTIONS(578), - [anon_sym_GT_GT_EQ] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(580), - [sym_integer_literal] = ACTIONS(578), - [aux_sym_string_literal_token1] = ACTIONS(578), - [sym_char_literal] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(580), - [sym_super] = ACTIONS(580), - [sym_crate] = ACTIONS(580), - [sym_metavariable] = ACTIONS(578), - [sym_raw_string_literal] = ACTIONS(578), - [sym_float_literal] = ACTIONS(578), + [sym_empty_statement] = STATE(251), + [sym_macro_definition] = STATE(251), + [sym_attribute_item] = STATE(251), + [sym_inner_attribute_item] = STATE(251), + [sym_mod_item] = STATE(251), + [sym_foreign_mod_item] = STATE(251), + [sym_struct_item] = STATE(251), + [sym_union_item] = STATE(251), + [sym_enum_item] = STATE(251), + [sym_extern_crate_declaration] = STATE(251), + [sym_const_item] = STATE(251), + [sym_static_item] = STATE(251), + [sym_type_item] = STATE(251), + [sym_function_item] = STATE(251), + [sym_function_signature_item] = STATE(251), + [sym_function_modifiers] = STATE(2536), + [sym_impl_item] = STATE(251), + [sym_trait_item] = STATE(251), + [sym_associated_type] = STATE(251), + [sym_let_declaration] = STATE(251), + [sym_use_declaration] = STATE(251), + [sym_extern_modifier] = STATE(1481), + [sym_visibility_modifier] = STATE(1324), + [sym_bracketed_type] = STATE(2358), + [sym_generic_type_with_turbofish] = STATE(2525), + [sym_macro_invocation] = STATE(251), + [sym_scoped_identifier] = STATE(2268), + [aux_sym_declaration_list_repeat1] = STATE(251), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(906), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_macro_rules_BANG] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(912), + [anon_sym_u8] = ACTIONS(914), + [anon_sym_i8] = ACTIONS(914), + [anon_sym_u16] = ACTIONS(914), + [anon_sym_i16] = ACTIONS(914), + [anon_sym_u32] = ACTIONS(914), + [anon_sym_i32] = ACTIONS(914), + [anon_sym_u64] = ACTIONS(914), + [anon_sym_i64] = ACTIONS(914), + [anon_sym_u128] = ACTIONS(914), + [anon_sym_i128] = ACTIONS(914), + [anon_sym_isize] = ACTIONS(914), + [anon_sym_usize] = ACTIONS(914), + [anon_sym_f32] = ACTIONS(914), + [anon_sym_f64] = ACTIONS(914), + [anon_sym_bool] = ACTIONS(914), + [anon_sym_str] = ACTIONS(914), + [anon_sym_char] = ACTIONS(914), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(916), + [anon_sym_default] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(922), + [anon_sym_impl] = ACTIONS(924), + [anon_sym_let] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(928), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(930), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_trait] = ACTIONS(934), + [anon_sym_type] = ACTIONS(936), + [anon_sym_union] = ACTIONS(938), + [anon_sym_unsafe] = ACTIONS(940), + [anon_sym_use] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(946), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(858), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(948), + [sym_super] = ACTIONS(948), + [sym_crate] = ACTIONS(950), + [sym_metavariable] = ACTIONS(952), [sym_block_comment] = ACTIONS(3), }, [248] = { - [sym_identifier] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_QMARK] = ACTIONS(582), - [anon_sym_u8] = ACTIONS(584), - [anon_sym_i8] = ACTIONS(584), - [anon_sym_u16] = ACTIONS(584), - [anon_sym_i16] = ACTIONS(584), - [anon_sym_u32] = ACTIONS(584), - [anon_sym_i32] = ACTIONS(584), - [anon_sym_u64] = ACTIONS(584), - [anon_sym_i64] = ACTIONS(584), - [anon_sym_u128] = ACTIONS(584), - [anon_sym_i128] = ACTIONS(584), - [anon_sym_isize] = ACTIONS(584), - [anon_sym_usize] = ACTIONS(584), - [anon_sym_f32] = ACTIONS(584), - [anon_sym_f64] = ACTIONS(584), - [anon_sym_bool] = ACTIONS(584), - [anon_sym_str] = ACTIONS(584), - [anon_sym_char] = ACTIONS(584), - [anon_sym_as] = ACTIONS(584), - [anon_sym_const] = ACTIONS(584), - [anon_sym_default] = ACTIONS(584), - [anon_sym_union] = ACTIONS(584), - [anon_sym_POUND] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_ref] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_COLON_COLON] = ACTIONS(582), - [anon_sym__] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_DOT_DOT_DOT] = ACTIONS(582), - [sym_mutable_specifier] = ACTIONS(584), - [anon_sym_DOT_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT_EQ] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(582), - [anon_sym_PIPE_PIPE] = ACTIONS(582), - [anon_sym_PIPE] = ACTIONS(584), - [anon_sym_CARET] = ACTIONS(584), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_LT_LT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_PLUS_EQ] = ACTIONS(582), - [anon_sym_DASH_EQ] = ACTIONS(582), - [anon_sym_STAR_EQ] = ACTIONS(582), - [anon_sym_SLASH_EQ] = ACTIONS(582), - [anon_sym_PERCENT_EQ] = ACTIONS(582), - [anon_sym_AMP_EQ] = ACTIONS(582), - [anon_sym_PIPE_EQ] = ACTIONS(582), - [anon_sym_CARET_EQ] = ACTIONS(582), - [anon_sym_LT_LT_EQ] = ACTIONS(582), - [anon_sym_GT_GT_EQ] = ACTIONS(582), - [anon_sym_DOT] = ACTIONS(584), - [sym_integer_literal] = ACTIONS(582), - [aux_sym_string_literal_token1] = ACTIONS(582), - [sym_char_literal] = ACTIONS(582), - [anon_sym_true] = ACTIONS(584), - [anon_sym_false] = ACTIONS(584), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(584), - [sym_super] = ACTIONS(584), - [sym_crate] = ACTIONS(584), - [sym_metavariable] = ACTIONS(582), - [sym_raw_string_literal] = ACTIONS(582), - [sym_float_literal] = ACTIONS(582), + [sym_empty_statement] = STATE(247), + [sym_macro_definition] = STATE(247), + [sym_attribute_item] = STATE(247), + [sym_inner_attribute_item] = STATE(247), + [sym_mod_item] = STATE(247), + [sym_foreign_mod_item] = STATE(247), + [sym_struct_item] = STATE(247), + [sym_union_item] = STATE(247), + [sym_enum_item] = STATE(247), + [sym_extern_crate_declaration] = STATE(247), + [sym_const_item] = STATE(247), + [sym_static_item] = STATE(247), + [sym_type_item] = STATE(247), + [sym_function_item] = STATE(247), + [sym_function_signature_item] = STATE(247), + [sym_function_modifiers] = STATE(2536), + [sym_impl_item] = STATE(247), + [sym_trait_item] = STATE(247), + [sym_associated_type] = STATE(247), + [sym_let_declaration] = STATE(247), + [sym_use_declaration] = STATE(247), + [sym_extern_modifier] = STATE(1481), + [sym_visibility_modifier] = STATE(1324), + [sym_bracketed_type] = STATE(2358), + [sym_generic_type_with_turbofish] = STATE(2525), + [sym_macro_invocation] = STATE(247), + [sym_scoped_identifier] = STATE(2268), + [aux_sym_declaration_list_repeat1] = STATE(247), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(906), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_macro_rules_BANG] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_u8] = ACTIONS(914), + [anon_sym_i8] = ACTIONS(914), + [anon_sym_u16] = ACTIONS(914), + [anon_sym_i16] = ACTIONS(914), + [anon_sym_u32] = ACTIONS(914), + [anon_sym_i32] = ACTIONS(914), + [anon_sym_u64] = ACTIONS(914), + [anon_sym_i64] = ACTIONS(914), + [anon_sym_u128] = ACTIONS(914), + [anon_sym_i128] = ACTIONS(914), + [anon_sym_isize] = ACTIONS(914), + [anon_sym_usize] = ACTIONS(914), + [anon_sym_f32] = ACTIONS(914), + [anon_sym_f64] = ACTIONS(914), + [anon_sym_bool] = ACTIONS(914), + [anon_sym_str] = ACTIONS(914), + [anon_sym_char] = ACTIONS(914), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(916), + [anon_sym_default] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(922), + [anon_sym_impl] = ACTIONS(924), + [anon_sym_let] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(928), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(930), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_trait] = ACTIONS(934), + [anon_sym_type] = ACTIONS(936), + [anon_sym_union] = ACTIONS(938), + [anon_sym_unsafe] = ACTIONS(940), + [anon_sym_use] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(946), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(858), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(948), + [sym_super] = ACTIONS(948), + [sym_crate] = ACTIONS(950), + [sym_metavariable] = ACTIONS(952), [sym_block_comment] = ACTIONS(3), }, [249] = { - [sym_identifier] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(598), - [anon_sym_RBRACE] = ACTIONS(598), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_PLUS] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_QMARK] = ACTIONS(598), - [anon_sym_u8] = ACTIONS(600), - [anon_sym_i8] = ACTIONS(600), - [anon_sym_u16] = ACTIONS(600), - [anon_sym_i16] = ACTIONS(600), - [anon_sym_u32] = ACTIONS(600), - [anon_sym_i32] = ACTIONS(600), - [anon_sym_u64] = ACTIONS(600), - [anon_sym_i64] = ACTIONS(600), - [anon_sym_u128] = ACTIONS(600), - [anon_sym_i128] = ACTIONS(600), - [anon_sym_isize] = ACTIONS(600), - [anon_sym_usize] = ACTIONS(600), - [anon_sym_f32] = ACTIONS(600), - [anon_sym_f64] = ACTIONS(600), - [anon_sym_bool] = ACTIONS(600), - [anon_sym_str] = ACTIONS(600), - [anon_sym_char] = ACTIONS(600), - [anon_sym_as] = ACTIONS(600), - [anon_sym_const] = ACTIONS(600), - [anon_sym_default] = ACTIONS(600), - [anon_sym_union] = ACTIONS(600), - [anon_sym_POUND] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(600), - [anon_sym_COMMA] = ACTIONS(598), - [anon_sym_ref] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(600), - [anon_sym_GT] = ACTIONS(600), - [anon_sym_COLON_COLON] = ACTIONS(598), - [anon_sym__] = ACTIONS(600), - [anon_sym_AMP] = ACTIONS(600), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [sym_mutable_specifier] = ACTIONS(600), - [anon_sym_DOT_DOT] = ACTIONS(600), - [anon_sym_DOT_DOT_EQ] = ACTIONS(598), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(598), - [anon_sym_PIPE_PIPE] = ACTIONS(598), - [anon_sym_PIPE] = ACTIONS(600), - [anon_sym_CARET] = ACTIONS(600), - [anon_sym_EQ_EQ] = ACTIONS(598), - [anon_sym_BANG_EQ] = ACTIONS(598), - [anon_sym_LT_EQ] = ACTIONS(598), - [anon_sym_GT_EQ] = ACTIONS(598), - [anon_sym_LT_LT] = ACTIONS(600), - [anon_sym_GT_GT] = ACTIONS(600), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_PERCENT] = ACTIONS(600), - [anon_sym_PLUS_EQ] = ACTIONS(598), - [anon_sym_DASH_EQ] = ACTIONS(598), - [anon_sym_STAR_EQ] = ACTIONS(598), - [anon_sym_SLASH_EQ] = ACTIONS(598), - [anon_sym_PERCENT_EQ] = ACTIONS(598), - [anon_sym_AMP_EQ] = ACTIONS(598), - [anon_sym_PIPE_EQ] = ACTIONS(598), - [anon_sym_CARET_EQ] = ACTIONS(598), - [anon_sym_LT_LT_EQ] = ACTIONS(598), - [anon_sym_GT_GT_EQ] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(600), - [sym_integer_literal] = ACTIONS(598), - [aux_sym_string_literal_token1] = ACTIONS(598), - [sym_char_literal] = ACTIONS(598), - [anon_sym_true] = ACTIONS(600), - [anon_sym_false] = ACTIONS(600), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_crate] = ACTIONS(600), - [sym_metavariable] = ACTIONS(598), - [sym_raw_string_literal] = ACTIONS(598), - [sym_float_literal] = ACTIONS(598), + [sym_empty_statement] = STATE(251), + [sym_macro_definition] = STATE(251), + [sym_attribute_item] = STATE(251), + [sym_inner_attribute_item] = STATE(251), + [sym_mod_item] = STATE(251), + [sym_foreign_mod_item] = STATE(251), + [sym_struct_item] = STATE(251), + [sym_union_item] = STATE(251), + [sym_enum_item] = STATE(251), + [sym_extern_crate_declaration] = STATE(251), + [sym_const_item] = STATE(251), + [sym_static_item] = STATE(251), + [sym_type_item] = STATE(251), + [sym_function_item] = STATE(251), + [sym_function_signature_item] = STATE(251), + [sym_function_modifiers] = STATE(2536), + [sym_impl_item] = STATE(251), + [sym_trait_item] = STATE(251), + [sym_associated_type] = STATE(251), + [sym_let_declaration] = STATE(251), + [sym_use_declaration] = STATE(251), + [sym_extern_modifier] = STATE(1481), + [sym_visibility_modifier] = STATE(1324), + [sym_bracketed_type] = STATE(2358), + [sym_generic_type_with_turbofish] = STATE(2525), + [sym_macro_invocation] = STATE(251), + [sym_scoped_identifier] = STATE(2268), + [aux_sym_declaration_list_repeat1] = STATE(251), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(906), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_macro_rules_BANG] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_u8] = ACTIONS(914), + [anon_sym_i8] = ACTIONS(914), + [anon_sym_u16] = ACTIONS(914), + [anon_sym_i16] = ACTIONS(914), + [anon_sym_u32] = ACTIONS(914), + [anon_sym_i32] = ACTIONS(914), + [anon_sym_u64] = ACTIONS(914), + [anon_sym_i64] = ACTIONS(914), + [anon_sym_u128] = ACTIONS(914), + [anon_sym_i128] = ACTIONS(914), + [anon_sym_isize] = ACTIONS(914), + [anon_sym_usize] = ACTIONS(914), + [anon_sym_f32] = ACTIONS(914), + [anon_sym_f64] = ACTIONS(914), + [anon_sym_bool] = ACTIONS(914), + [anon_sym_str] = ACTIONS(914), + [anon_sym_char] = ACTIONS(914), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(916), + [anon_sym_default] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(922), + [anon_sym_impl] = ACTIONS(924), + [anon_sym_let] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(928), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(930), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_trait] = ACTIONS(934), + [anon_sym_type] = ACTIONS(936), + [anon_sym_union] = ACTIONS(938), + [anon_sym_unsafe] = ACTIONS(940), + [anon_sym_use] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(946), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(858), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(948), + [sym_super] = ACTIONS(948), + [sym_crate] = ACTIONS(950), + [sym_metavariable] = ACTIONS(952), [sym_block_comment] = ACTIONS(3), }, [250] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2026), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(1897), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_type_binding] = STATE(2225), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [sym_block] = STATE(2225), - [sym__literal] = STATE(2225), - [sym_string_literal] = STATE(2318), - [sym_boolean_literal] = STATE(2318), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(900), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [sym_empty_statement] = STATE(249), + [sym_macro_definition] = STATE(249), + [sym_attribute_item] = STATE(249), + [sym_inner_attribute_item] = STATE(249), + [sym_mod_item] = STATE(249), + [sym_foreign_mod_item] = STATE(249), + [sym_struct_item] = STATE(249), + [sym_union_item] = STATE(249), + [sym_enum_item] = STATE(249), + [sym_extern_crate_declaration] = STATE(249), + [sym_const_item] = STATE(249), + [sym_static_item] = STATE(249), + [sym_type_item] = STATE(249), + [sym_function_item] = STATE(249), + [sym_function_signature_item] = STATE(249), + [sym_function_modifiers] = STATE(2536), + [sym_impl_item] = STATE(249), + [sym_trait_item] = STATE(249), + [sym_associated_type] = STATE(249), + [sym_let_declaration] = STATE(249), + [sym_use_declaration] = STATE(249), + [sym_extern_modifier] = STATE(1481), + [sym_visibility_modifier] = STATE(1324), + [sym_bracketed_type] = STATE(2358), + [sym_generic_type_with_turbofish] = STATE(2525), + [sym_macro_invocation] = STATE(249), + [sym_scoped_identifier] = STATE(2268), + [aux_sym_declaration_list_repeat1] = STATE(249), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(906), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_macro_rules_BANG] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_u8] = ACTIONS(914), + [anon_sym_i8] = ACTIONS(914), + [anon_sym_u16] = ACTIONS(914), + [anon_sym_i16] = ACTIONS(914), + [anon_sym_u32] = ACTIONS(914), + [anon_sym_i32] = ACTIONS(914), + [anon_sym_u64] = ACTIONS(914), + [anon_sym_i64] = ACTIONS(914), + [anon_sym_u128] = ACTIONS(914), + [anon_sym_i128] = ACTIONS(914), + [anon_sym_isize] = ACTIONS(914), + [anon_sym_usize] = ACTIONS(914), + [anon_sym_f32] = ACTIONS(914), + [anon_sym_f64] = ACTIONS(914), + [anon_sym_bool] = ACTIONS(914), + [anon_sym_str] = ACTIONS(914), + [anon_sym_char] = ACTIONS(914), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(916), + [anon_sym_default] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(922), + [anon_sym_impl] = ACTIONS(924), + [anon_sym_let] = ACTIONS(926), + [anon_sym_mod] = ACTIONS(928), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(930), + [anon_sym_struct] = ACTIONS(932), + [anon_sym_trait] = ACTIONS(934), + [anon_sym_type] = ACTIONS(936), + [anon_sym_union] = ACTIONS(938), + [anon_sym_unsafe] = ACTIONS(940), + [anon_sym_use] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(944), + [anon_sym_extern] = ACTIONS(946), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(934), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(920), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(920), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_raw_string_literal] = ACTIONS(920), - [sym_float_literal] = ACTIONS(920), + [anon_sym_COLON_COLON] = ACTIONS(858), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(948), + [sym_super] = ACTIONS(948), + [sym_crate] = ACTIONS(950), + [sym_metavariable] = ACTIONS(952), [sym_block_comment] = ACTIONS(3), }, [251] = { - [sym_identifier] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(632), - [anon_sym_RBRACE] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(632), - [anon_sym_PLUS] = ACTIONS(634), - [anon_sym_STAR] = ACTIONS(634), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_u8] = ACTIONS(634), - [anon_sym_i8] = ACTIONS(634), - [anon_sym_u16] = ACTIONS(634), - [anon_sym_i16] = ACTIONS(634), - [anon_sym_u32] = ACTIONS(634), - [anon_sym_i32] = ACTIONS(634), - [anon_sym_u64] = ACTIONS(634), - [anon_sym_i64] = ACTIONS(634), - [anon_sym_u128] = ACTIONS(634), - [anon_sym_i128] = ACTIONS(634), - [anon_sym_isize] = ACTIONS(634), - [anon_sym_usize] = ACTIONS(634), - [anon_sym_f32] = ACTIONS(634), - [anon_sym_f64] = ACTIONS(634), - [anon_sym_bool] = ACTIONS(634), - [anon_sym_str] = ACTIONS(634), - [anon_sym_char] = ACTIONS(634), - [anon_sym_as] = ACTIONS(634), - [anon_sym_const] = ACTIONS(634), - [anon_sym_default] = ACTIONS(634), - [anon_sym_union] = ACTIONS(634), - [anon_sym_POUND] = ACTIONS(632), - [anon_sym_EQ] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(632), - [anon_sym_ref] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(634), - [anon_sym_GT] = ACTIONS(634), - [anon_sym_COLON_COLON] = ACTIONS(632), - [anon_sym__] = ACTIONS(634), - [anon_sym_AMP] = ACTIONS(634), - [anon_sym_DOT_DOT_DOT] = ACTIONS(632), - [sym_mutable_specifier] = ACTIONS(634), - [anon_sym_DOT_DOT] = ACTIONS(634), - [anon_sym_DOT_DOT_EQ] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(634), - [anon_sym_AMP_AMP] = ACTIONS(632), - [anon_sym_PIPE_PIPE] = ACTIONS(632), - [anon_sym_PIPE] = ACTIONS(634), - [anon_sym_CARET] = ACTIONS(634), - [anon_sym_EQ_EQ] = ACTIONS(632), - [anon_sym_BANG_EQ] = ACTIONS(632), - [anon_sym_LT_EQ] = ACTIONS(632), - [anon_sym_GT_EQ] = ACTIONS(632), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_GT_GT] = ACTIONS(634), - [anon_sym_SLASH] = ACTIONS(634), - [anon_sym_PERCENT] = ACTIONS(634), - [anon_sym_PLUS_EQ] = ACTIONS(632), - [anon_sym_DASH_EQ] = ACTIONS(632), - [anon_sym_STAR_EQ] = ACTIONS(632), - [anon_sym_SLASH_EQ] = ACTIONS(632), - [anon_sym_PERCENT_EQ] = ACTIONS(632), - [anon_sym_AMP_EQ] = ACTIONS(632), - [anon_sym_PIPE_EQ] = ACTIONS(632), - [anon_sym_CARET_EQ] = ACTIONS(632), - [anon_sym_LT_LT_EQ] = ACTIONS(632), - [anon_sym_GT_GT_EQ] = ACTIONS(632), - [anon_sym_DOT] = ACTIONS(634), - [sym_integer_literal] = ACTIONS(632), - [aux_sym_string_literal_token1] = ACTIONS(632), - [sym_char_literal] = ACTIONS(632), - [anon_sym_true] = ACTIONS(634), - [anon_sym_false] = ACTIONS(634), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(634), - [sym_super] = ACTIONS(634), - [sym_crate] = ACTIONS(634), - [sym_metavariable] = ACTIONS(632), - [sym_raw_string_literal] = ACTIONS(632), - [sym_float_literal] = ACTIONS(632), + [sym_empty_statement] = STATE(251), + [sym_macro_definition] = STATE(251), + [sym_attribute_item] = STATE(251), + [sym_inner_attribute_item] = STATE(251), + [sym_mod_item] = STATE(251), + [sym_foreign_mod_item] = STATE(251), + [sym_struct_item] = STATE(251), + [sym_union_item] = STATE(251), + [sym_enum_item] = STATE(251), + [sym_extern_crate_declaration] = STATE(251), + [sym_const_item] = STATE(251), + [sym_static_item] = STATE(251), + [sym_type_item] = STATE(251), + [sym_function_item] = STATE(251), + [sym_function_signature_item] = STATE(251), + [sym_function_modifiers] = STATE(2536), + [sym_impl_item] = STATE(251), + [sym_trait_item] = STATE(251), + [sym_associated_type] = STATE(251), + [sym_let_declaration] = STATE(251), + [sym_use_declaration] = STATE(251), + [sym_extern_modifier] = STATE(1481), + [sym_visibility_modifier] = STATE(1324), + [sym_bracketed_type] = STATE(2358), + [sym_generic_type_with_turbofish] = STATE(2525), + [sym_macro_invocation] = STATE(251), + [sym_scoped_identifier] = STATE(2268), + [aux_sym_declaration_list_repeat1] = STATE(251), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_macro_rules_BANG] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_u8] = ACTIONS(971), + [anon_sym_i8] = ACTIONS(971), + [anon_sym_u16] = ACTIONS(971), + [anon_sym_i16] = ACTIONS(971), + [anon_sym_u32] = ACTIONS(971), + [anon_sym_i32] = ACTIONS(971), + [anon_sym_u64] = ACTIONS(971), + [anon_sym_i64] = ACTIONS(971), + [anon_sym_u128] = ACTIONS(971), + [anon_sym_i128] = ACTIONS(971), + [anon_sym_isize] = ACTIONS(971), + [anon_sym_usize] = ACTIONS(971), + [anon_sym_f32] = ACTIONS(971), + [anon_sym_f64] = ACTIONS(971), + [anon_sym_bool] = ACTIONS(971), + [anon_sym_str] = ACTIONS(971), + [anon_sym_char] = ACTIONS(971), + [anon_sym_async] = ACTIONS(974), + [anon_sym_const] = ACTIONS(977), + [anon_sym_default] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(983), + [anon_sym_fn] = ACTIONS(986), + [anon_sym_impl] = ACTIONS(989), + [anon_sym_let] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(995), + [anon_sym_pub] = ACTIONS(998), + [anon_sym_static] = ACTIONS(1001), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_trait] = ACTIONS(1007), + [anon_sym_type] = ACTIONS(1010), + [anon_sym_union] = ACTIONS(1013), + [anon_sym_unsafe] = ACTIONS(1016), + [anon_sym_use] = ACTIONS(1019), + [anon_sym_POUND] = ACTIONS(1022), + [anon_sym_extern] = ACTIONS(1025), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1031), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_crate] = ACTIONS(1037), + [sym_metavariable] = ACTIONS(1040), [sym_block_comment] = ACTIONS(3), }, [252] = { - [sym_identifier] = ACTIONS(642), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(640), - [anon_sym_PLUS] = ACTIONS(642), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_QMARK] = ACTIONS(640), - [anon_sym_u8] = ACTIONS(642), - [anon_sym_i8] = ACTIONS(642), - [anon_sym_u16] = ACTIONS(642), - [anon_sym_i16] = ACTIONS(642), - [anon_sym_u32] = ACTIONS(642), - [anon_sym_i32] = ACTIONS(642), - [anon_sym_u64] = ACTIONS(642), - [anon_sym_i64] = ACTIONS(642), - [anon_sym_u128] = ACTIONS(642), - [anon_sym_i128] = ACTIONS(642), - [anon_sym_isize] = ACTIONS(642), - [anon_sym_usize] = ACTIONS(642), - [anon_sym_f32] = ACTIONS(642), - [anon_sym_f64] = ACTIONS(642), - [anon_sym_bool] = ACTIONS(642), - [anon_sym_str] = ACTIONS(642), - [anon_sym_char] = ACTIONS(642), - [anon_sym_as] = ACTIONS(642), - [anon_sym_const] = ACTIONS(642), - [anon_sym_default] = ACTIONS(642), - [anon_sym_union] = ACTIONS(642), - [anon_sym_POUND] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(642), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_ref] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(642), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym__] = ACTIONS(642), - [anon_sym_AMP] = ACTIONS(642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [sym_mutable_specifier] = ACTIONS(642), - [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(642), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_CARET] = ACTIONS(642), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(642), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_DOT] = ACTIONS(642), - [sym_integer_literal] = ACTIONS(640), - [aux_sym_string_literal_token1] = ACTIONS(640), - [sym_char_literal] = ACTIONS(640), - [anon_sym_true] = ACTIONS(642), - [anon_sym_false] = ACTIONS(642), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(642), - [sym_super] = ACTIONS(642), - [sym_crate] = ACTIONS(642), - [sym_metavariable] = ACTIONS(640), - [sym_raw_string_literal] = ACTIONS(640), - [sym_float_literal] = ACTIONS(640), + [sym__token_pattern] = STATE(252), + [sym_token_tree_pattern] = STATE(252), + [sym_token_binding_pattern] = STATE(252), + [sym_token_repetition_pattern] = STATE(252), + [sym__literal] = STATE(252), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_pattern_repeat1] = STATE(252), + [sym_identifier] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_RPAREN] = ACTIONS(1049), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1049), + [anon_sym_LBRACK] = ACTIONS(1054), + [anon_sym_RBRACK] = ACTIONS(1049), + [anon_sym_DOLLAR] = ACTIONS(1057), + [anon_sym_u8] = ACTIONS(1043), + [anon_sym_i8] = ACTIONS(1043), + [anon_sym_u16] = ACTIONS(1043), + [anon_sym_i16] = ACTIONS(1043), + [anon_sym_u32] = ACTIONS(1043), + [anon_sym_i32] = ACTIONS(1043), + [anon_sym_u64] = ACTIONS(1043), + [anon_sym_i64] = ACTIONS(1043), + [anon_sym_u128] = ACTIONS(1043), + [anon_sym_i128] = ACTIONS(1043), + [anon_sym_isize] = ACTIONS(1043), + [anon_sym_usize] = ACTIONS(1043), + [anon_sym_f32] = ACTIONS(1043), + [anon_sym_f64] = ACTIONS(1043), + [anon_sym_bool] = ACTIONS(1043), + [anon_sym_str] = ACTIONS(1043), + [anon_sym_char] = ACTIONS(1043), + [aux_sym__non_special_token_token1] = ACTIONS(1043), + [anon_sym_SQUOTE] = ACTIONS(1043), + [anon_sym_as] = ACTIONS(1043), + [anon_sym_async] = ACTIONS(1043), + [anon_sym_await] = ACTIONS(1043), + [anon_sym_break] = ACTIONS(1043), + [anon_sym_const] = ACTIONS(1043), + [anon_sym_continue] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), + [anon_sym_enum] = ACTIONS(1043), + [anon_sym_fn] = ACTIONS(1043), + [anon_sym_for] = ACTIONS(1043), + [anon_sym_if] = ACTIONS(1043), + [anon_sym_impl] = ACTIONS(1043), + [anon_sym_let] = ACTIONS(1043), + [anon_sym_loop] = ACTIONS(1043), + [anon_sym_match] = ACTIONS(1043), + [anon_sym_mod] = ACTIONS(1043), + [anon_sym_pub] = ACTIONS(1043), + [anon_sym_return] = ACTIONS(1043), + [anon_sym_static] = ACTIONS(1043), + [anon_sym_struct] = ACTIONS(1043), + [anon_sym_trait] = ACTIONS(1043), + [anon_sym_type] = ACTIONS(1043), + [anon_sym_union] = ACTIONS(1043), + [anon_sym_unsafe] = ACTIONS(1043), + [anon_sym_use] = ACTIONS(1043), + [anon_sym_where] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(1043), + [sym_mutable_specifier] = ACTIONS(1043), + [sym_integer_literal] = ACTIONS(1060), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1060), + [anon_sym_true] = ACTIONS(1066), + [anon_sym_false] = ACTIONS(1066), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(1043), + [sym_super] = ACTIONS(1043), + [sym_crate] = ACTIONS(1043), + [sym_metavariable] = ACTIONS(1071), + [sym_raw_string_literal] = ACTIONS(1060), + [sym_float_literal] = ACTIONS(1060), [sym_block_comment] = ACTIONS(3), }, [253] = { - [sym_identifier] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(558), - [anon_sym_RBRACE] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(558), - [anon_sym_PLUS] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(560), - [anon_sym_QMARK] = ACTIONS(558), - [anon_sym_u8] = ACTIONS(560), - [anon_sym_i8] = ACTIONS(560), - [anon_sym_u16] = ACTIONS(560), - [anon_sym_i16] = ACTIONS(560), - [anon_sym_u32] = ACTIONS(560), - [anon_sym_i32] = ACTIONS(560), - [anon_sym_u64] = ACTIONS(560), - [anon_sym_i64] = ACTIONS(560), - [anon_sym_u128] = ACTIONS(560), - [anon_sym_i128] = ACTIONS(560), - [anon_sym_isize] = ACTIONS(560), - [anon_sym_usize] = ACTIONS(560), - [anon_sym_f32] = ACTIONS(560), - [anon_sym_f64] = ACTIONS(560), - [anon_sym_bool] = ACTIONS(560), - [anon_sym_str] = ACTIONS(560), - [anon_sym_char] = ACTIONS(560), - [anon_sym_as] = ACTIONS(560), - [anon_sym_const] = ACTIONS(560), - [anon_sym_default] = ACTIONS(560), - [anon_sym_union] = ACTIONS(560), - [anon_sym_POUND] = ACTIONS(558), - [anon_sym_EQ] = ACTIONS(560), - [anon_sym_COMMA] = ACTIONS(558), - [anon_sym_ref] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_COLON_COLON] = ACTIONS(558), - [anon_sym__] = ACTIONS(560), - [anon_sym_AMP] = ACTIONS(560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(558), - [sym_mutable_specifier] = ACTIONS(560), - [anon_sym_DOT_DOT] = ACTIONS(560), - [anon_sym_DOT_DOT_EQ] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(560), - [anon_sym_AMP_AMP] = ACTIONS(558), - [anon_sym_PIPE_PIPE] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(560), - [anon_sym_CARET] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(558), - [anon_sym_BANG_EQ] = ACTIONS(558), - [anon_sym_LT_EQ] = ACTIONS(558), - [anon_sym_GT_EQ] = ACTIONS(558), - [anon_sym_LT_LT] = ACTIONS(560), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(560), - [anon_sym_PERCENT] = ACTIONS(560), - [anon_sym_PLUS_EQ] = ACTIONS(558), - [anon_sym_DASH_EQ] = ACTIONS(558), - [anon_sym_STAR_EQ] = ACTIONS(558), - [anon_sym_SLASH_EQ] = ACTIONS(558), - [anon_sym_PERCENT_EQ] = ACTIONS(558), - [anon_sym_AMP_EQ] = ACTIONS(558), - [anon_sym_PIPE_EQ] = ACTIONS(558), - [anon_sym_CARET_EQ] = ACTIONS(558), - [anon_sym_LT_LT_EQ] = ACTIONS(558), - [anon_sym_GT_GT_EQ] = ACTIONS(558), - [anon_sym_DOT] = ACTIONS(560), - [sym_integer_literal] = ACTIONS(558), - [aux_sym_string_literal_token1] = ACTIONS(558), - [sym_char_literal] = ACTIONS(558), - [anon_sym_true] = ACTIONS(560), - [anon_sym_false] = ACTIONS(560), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(560), - [sym_super] = ACTIONS(560), - [sym_crate] = ACTIONS(560), - [sym_metavariable] = ACTIONS(558), - [sym_raw_string_literal] = ACTIONS(558), - [sym_float_literal] = ACTIONS(558), + [ts_builtin_sym_end] = ACTIONS(1074), + [sym_identifier] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_macro_rules_BANG] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_u8] = ACTIONS(1076), + [anon_sym_i8] = ACTIONS(1076), + [anon_sym_u16] = ACTIONS(1076), + [anon_sym_i16] = ACTIONS(1076), + [anon_sym_u32] = ACTIONS(1076), + [anon_sym_i32] = ACTIONS(1076), + [anon_sym_u64] = ACTIONS(1076), + [anon_sym_i64] = ACTIONS(1076), + [anon_sym_u128] = ACTIONS(1076), + [anon_sym_i128] = ACTIONS(1076), + [anon_sym_isize] = ACTIONS(1076), + [anon_sym_usize] = ACTIONS(1076), + [anon_sym_f32] = ACTIONS(1076), + [anon_sym_f64] = ACTIONS(1076), + [anon_sym_bool] = ACTIONS(1076), + [anon_sym_str] = ACTIONS(1076), + [anon_sym_char] = ACTIONS(1076), + [anon_sym_SQUOTE] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(1076), + [anon_sym_break] = ACTIONS(1076), + [anon_sym_const] = ACTIONS(1076), + [anon_sym_continue] = ACTIONS(1076), + [anon_sym_default] = ACTIONS(1076), + [anon_sym_enum] = ACTIONS(1076), + [anon_sym_fn] = ACTIONS(1076), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_if] = ACTIONS(1076), + [anon_sym_impl] = ACTIONS(1076), + [anon_sym_let] = ACTIONS(1076), + [anon_sym_loop] = ACTIONS(1076), + [anon_sym_match] = ACTIONS(1076), + [anon_sym_mod] = ACTIONS(1076), + [anon_sym_pub] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1076), + [anon_sym_static] = ACTIONS(1076), + [anon_sym_struct] = ACTIONS(1076), + [anon_sym_trait] = ACTIONS(1076), + [anon_sym_type] = ACTIONS(1076), + [anon_sym_union] = ACTIONS(1076), + [anon_sym_unsafe] = ACTIONS(1076), + [anon_sym_use] = ACTIONS(1076), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_POUND] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_COLON_COLON] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_PIPE] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(1076), + [anon_sym_move] = ACTIONS(1076), + [sym_integer_literal] = ACTIONS(1074), + [aux_sym_string_literal_token1] = ACTIONS(1074), + [sym_char_literal] = ACTIONS(1074), + [anon_sym_true] = ACTIONS(1076), + [anon_sym_false] = ACTIONS(1076), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1076), + [sym_super] = ACTIONS(1076), + [sym_crate] = ACTIONS(1076), + [sym_metavariable] = ACTIONS(1074), + [sym_raw_string_literal] = ACTIONS(1074), + [sym_float_literal] = ACTIONS(1074), [sym_block_comment] = ACTIONS(3), }, [254] = { - [sym_identifier] = ACTIONS(626), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(624), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_PLUS] = ACTIONS(626), - [anon_sym_STAR] = ACTIONS(626), - [anon_sym_QMARK] = ACTIONS(624), - [anon_sym_u8] = ACTIONS(626), - [anon_sym_i8] = ACTIONS(626), - [anon_sym_u16] = ACTIONS(626), - [anon_sym_i16] = ACTIONS(626), - [anon_sym_u32] = ACTIONS(626), - [anon_sym_i32] = ACTIONS(626), - [anon_sym_u64] = ACTIONS(626), - [anon_sym_i64] = ACTIONS(626), - [anon_sym_u128] = ACTIONS(626), - [anon_sym_i128] = ACTIONS(626), - [anon_sym_isize] = ACTIONS(626), - [anon_sym_usize] = ACTIONS(626), - [anon_sym_f32] = ACTIONS(626), - [anon_sym_f64] = ACTIONS(626), - [anon_sym_bool] = ACTIONS(626), - [anon_sym_str] = ACTIONS(626), - [anon_sym_char] = ACTIONS(626), - [anon_sym_as] = ACTIONS(626), - [anon_sym_const] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_union] = ACTIONS(626), - [anon_sym_POUND] = ACTIONS(624), - [anon_sym_EQ] = ACTIONS(626), - [anon_sym_COMMA] = ACTIONS(624), - [anon_sym_ref] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_GT] = ACTIONS(626), - [anon_sym_COLON_COLON] = ACTIONS(624), - [anon_sym__] = ACTIONS(626), - [anon_sym_AMP] = ACTIONS(626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(624), - [sym_mutable_specifier] = ACTIONS(626), - [anon_sym_DOT_DOT] = ACTIONS(626), - [anon_sym_DOT_DOT_EQ] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(626), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(626), - [anon_sym_CARET] = ACTIONS(626), - [anon_sym_EQ_EQ] = ACTIONS(624), - [anon_sym_BANG_EQ] = ACTIONS(624), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(626), - [anon_sym_GT_GT] = ACTIONS(626), - [anon_sym_SLASH] = ACTIONS(626), - [anon_sym_PERCENT] = ACTIONS(626), - [anon_sym_PLUS_EQ] = ACTIONS(624), - [anon_sym_DASH_EQ] = ACTIONS(624), - [anon_sym_STAR_EQ] = ACTIONS(624), - [anon_sym_SLASH_EQ] = ACTIONS(624), - [anon_sym_PERCENT_EQ] = ACTIONS(624), - [anon_sym_AMP_EQ] = ACTIONS(624), - [anon_sym_PIPE_EQ] = ACTIONS(624), - [anon_sym_CARET_EQ] = ACTIONS(624), - [anon_sym_LT_LT_EQ] = ACTIONS(624), - [anon_sym_GT_GT_EQ] = ACTIONS(624), - [anon_sym_DOT] = ACTIONS(626), - [sym_integer_literal] = ACTIONS(624), - [aux_sym_string_literal_token1] = ACTIONS(624), - [sym_char_literal] = ACTIONS(624), - [anon_sym_true] = ACTIONS(626), - [anon_sym_false] = ACTIONS(626), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_crate] = ACTIONS(626), - [sym_metavariable] = ACTIONS(624), - [sym_raw_string_literal] = ACTIONS(624), - [sym_float_literal] = ACTIONS(624), + [ts_builtin_sym_end] = ACTIONS(1078), + [sym_identifier] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_macro_rules_BANG] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym_SQUOTE] = ACTIONS(1080), + [anon_sym_async] = ACTIONS(1080), + [anon_sym_break] = ACTIONS(1080), + [anon_sym_const] = ACTIONS(1080), + [anon_sym_continue] = ACTIONS(1080), + [anon_sym_default] = ACTIONS(1080), + [anon_sym_enum] = ACTIONS(1080), + [anon_sym_fn] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1080), + [anon_sym_impl] = ACTIONS(1080), + [anon_sym_let] = ACTIONS(1080), + [anon_sym_loop] = ACTIONS(1080), + [anon_sym_match] = ACTIONS(1080), + [anon_sym_mod] = ACTIONS(1080), + [anon_sym_pub] = ACTIONS(1080), + [anon_sym_return] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1080), + [anon_sym_struct] = ACTIONS(1080), + [anon_sym_trait] = ACTIONS(1080), + [anon_sym_type] = ACTIONS(1080), + [anon_sym_union] = ACTIONS(1080), + [anon_sym_unsafe] = ACTIONS(1080), + [anon_sym_use] = ACTIONS(1080), + [anon_sym_while] = ACTIONS(1080), + [anon_sym_POUND] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_COLON_COLON] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_DOT_DOT] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_move] = ACTIONS(1080), + [sym_integer_literal] = ACTIONS(1078), + [aux_sym_string_literal_token1] = ACTIONS(1078), + [sym_char_literal] = ACTIONS(1078), + [anon_sym_true] = ACTIONS(1080), + [anon_sym_false] = ACTIONS(1080), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1080), + [sym_super] = ACTIONS(1080), + [sym_crate] = ACTIONS(1080), + [sym_metavariable] = ACTIONS(1078), + [sym_raw_string_literal] = ACTIONS(1078), + [sym_float_literal] = ACTIONS(1078), [sym_block_comment] = ACTIONS(3), }, [255] = { - [sym_identifier] = ACTIONS(662), - [anon_sym_LPAREN] = ACTIONS(660), - [anon_sym_RBRACE] = ACTIONS(660), - [anon_sym_LBRACK] = ACTIONS(660), - [anon_sym_PLUS] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(660), - [anon_sym_u8] = ACTIONS(662), - [anon_sym_i8] = ACTIONS(662), - [anon_sym_u16] = ACTIONS(662), - [anon_sym_i16] = ACTIONS(662), - [anon_sym_u32] = ACTIONS(662), - [anon_sym_i32] = ACTIONS(662), - [anon_sym_u64] = ACTIONS(662), - [anon_sym_i64] = ACTIONS(662), - [anon_sym_u128] = ACTIONS(662), - [anon_sym_i128] = ACTIONS(662), - [anon_sym_isize] = ACTIONS(662), - [anon_sym_usize] = ACTIONS(662), - [anon_sym_f32] = ACTIONS(662), - [anon_sym_f64] = ACTIONS(662), - [anon_sym_bool] = ACTIONS(662), - [anon_sym_str] = ACTIONS(662), - [anon_sym_char] = ACTIONS(662), - [anon_sym_as] = ACTIONS(662), - [anon_sym_const] = ACTIONS(662), - [anon_sym_default] = ACTIONS(662), - [anon_sym_union] = ACTIONS(662), - [anon_sym_POUND] = ACTIONS(660), - [anon_sym_EQ] = ACTIONS(662), - [anon_sym_COMMA] = ACTIONS(660), - [anon_sym_ref] = ACTIONS(662), - [anon_sym_LT] = ACTIONS(662), - [anon_sym_GT] = ACTIONS(662), - [anon_sym_COLON_COLON] = ACTIONS(660), - [anon_sym__] = ACTIONS(662), - [anon_sym_AMP] = ACTIONS(662), - [anon_sym_DOT_DOT_DOT] = ACTIONS(660), - [sym_mutable_specifier] = ACTIONS(662), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_DOT_DOT_EQ] = ACTIONS(660), - [anon_sym_DASH] = ACTIONS(662), - [anon_sym_AMP_AMP] = ACTIONS(660), - [anon_sym_PIPE_PIPE] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(662), - [anon_sym_CARET] = ACTIONS(662), - [anon_sym_EQ_EQ] = ACTIONS(660), - [anon_sym_BANG_EQ] = ACTIONS(660), - [anon_sym_LT_EQ] = ACTIONS(660), - [anon_sym_GT_EQ] = ACTIONS(660), - [anon_sym_LT_LT] = ACTIONS(662), - [anon_sym_GT_GT] = ACTIONS(662), - [anon_sym_SLASH] = ACTIONS(662), - [anon_sym_PERCENT] = ACTIONS(662), - [anon_sym_PLUS_EQ] = ACTIONS(660), - [anon_sym_DASH_EQ] = ACTIONS(660), - [anon_sym_STAR_EQ] = ACTIONS(660), - [anon_sym_SLASH_EQ] = ACTIONS(660), - [anon_sym_PERCENT_EQ] = ACTIONS(660), - [anon_sym_AMP_EQ] = ACTIONS(660), - [anon_sym_PIPE_EQ] = ACTIONS(660), - [anon_sym_CARET_EQ] = ACTIONS(660), - [anon_sym_LT_LT_EQ] = ACTIONS(660), - [anon_sym_GT_GT_EQ] = ACTIONS(660), - [anon_sym_DOT] = ACTIONS(662), - [sym_integer_literal] = ACTIONS(660), - [aux_sym_string_literal_token1] = ACTIONS(660), - [sym_char_literal] = ACTIONS(660), - [anon_sym_true] = ACTIONS(662), - [anon_sym_false] = ACTIONS(662), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(662), - [sym_super] = ACTIONS(662), - [sym_crate] = ACTIONS(662), - [sym_metavariable] = ACTIONS(660), - [sym_raw_string_literal] = ACTIONS(660), - [sym_float_literal] = ACTIONS(660), + [ts_builtin_sym_end] = ACTIONS(1082), + [sym_identifier] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1082), + [anon_sym_macro_rules_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1082), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1084), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1084), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_enum] = ACTIONS(1084), + [anon_sym_fn] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1084), + [anon_sym_if] = ACTIONS(1084), + [anon_sym_impl] = ACTIONS(1084), + [anon_sym_let] = ACTIONS(1084), + [anon_sym_loop] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1084), + [anon_sym_mod] = ACTIONS(1084), + [anon_sym_pub] = ACTIONS(1084), + [anon_sym_return] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1084), + [anon_sym_struct] = ACTIONS(1084), + [anon_sym_trait] = ACTIONS(1084), + [anon_sym_type] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_unsafe] = ACTIONS(1084), + [anon_sym_use] = ACTIONS(1084), + [anon_sym_while] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(1082), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1084), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1082), + [anon_sym_DOT_DOT] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_PIPE] = ACTIONS(1082), + [anon_sym_yield] = ACTIONS(1084), + [anon_sym_move] = ACTIONS(1084), + [sym_integer_literal] = ACTIONS(1082), + [aux_sym_string_literal_token1] = ACTIONS(1082), + [sym_char_literal] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1084), + [anon_sym_false] = ACTIONS(1084), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1084), + [sym_super] = ACTIONS(1084), + [sym_crate] = ACTIONS(1084), + [sym_metavariable] = ACTIONS(1082), + [sym_raw_string_literal] = ACTIONS(1082), + [sym_float_literal] = ACTIONS(1082), [sym_block_comment] = ACTIONS(3), }, [256] = { - [sym_identifier] = ACTIONS(670), - [anon_sym_LPAREN] = ACTIONS(668), - [anon_sym_RBRACE] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(668), - [anon_sym_u8] = ACTIONS(670), - [anon_sym_i8] = ACTIONS(670), - [anon_sym_u16] = ACTIONS(670), - [anon_sym_i16] = ACTIONS(670), - [anon_sym_u32] = ACTIONS(670), - [anon_sym_i32] = ACTIONS(670), - [anon_sym_u64] = ACTIONS(670), - [anon_sym_i64] = ACTIONS(670), - [anon_sym_u128] = ACTIONS(670), - [anon_sym_i128] = ACTIONS(670), - [anon_sym_isize] = ACTIONS(670), - [anon_sym_usize] = ACTIONS(670), - [anon_sym_f32] = ACTIONS(670), - [anon_sym_f64] = ACTIONS(670), - [anon_sym_bool] = ACTIONS(670), - [anon_sym_str] = ACTIONS(670), - [anon_sym_char] = ACTIONS(670), - [anon_sym_as] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_union] = ACTIONS(670), - [anon_sym_POUND] = ACTIONS(668), - [anon_sym_EQ] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(668), - [anon_sym_ref] = ACTIONS(670), - [anon_sym_LT] = ACTIONS(670), - [anon_sym_GT] = ACTIONS(670), - [anon_sym_COLON_COLON] = ACTIONS(668), - [anon_sym__] = ACTIONS(670), - [anon_sym_AMP] = ACTIONS(670), - [anon_sym_DOT_DOT_DOT] = ACTIONS(668), - [sym_mutable_specifier] = ACTIONS(670), - [anon_sym_DOT_DOT] = ACTIONS(670), - [anon_sym_DOT_DOT_EQ] = ACTIONS(668), - [anon_sym_DASH] = ACTIONS(670), - [anon_sym_AMP_AMP] = ACTIONS(668), - [anon_sym_PIPE_PIPE] = ACTIONS(668), - [anon_sym_PIPE] = ACTIONS(670), - [anon_sym_CARET] = ACTIONS(670), - [anon_sym_EQ_EQ] = ACTIONS(668), - [anon_sym_BANG_EQ] = ACTIONS(668), - [anon_sym_LT_EQ] = ACTIONS(668), - [anon_sym_GT_EQ] = ACTIONS(668), - [anon_sym_LT_LT] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(670), - [anon_sym_SLASH] = ACTIONS(670), - [anon_sym_PERCENT] = ACTIONS(670), - [anon_sym_PLUS_EQ] = ACTIONS(668), - [anon_sym_DASH_EQ] = ACTIONS(668), - [anon_sym_STAR_EQ] = ACTIONS(668), - [anon_sym_SLASH_EQ] = ACTIONS(668), - [anon_sym_PERCENT_EQ] = ACTIONS(668), - [anon_sym_AMP_EQ] = ACTIONS(668), - [anon_sym_PIPE_EQ] = ACTIONS(668), - [anon_sym_CARET_EQ] = ACTIONS(668), - [anon_sym_LT_LT_EQ] = ACTIONS(668), - [anon_sym_GT_GT_EQ] = ACTIONS(668), - [anon_sym_DOT] = ACTIONS(670), - [sym_integer_literal] = ACTIONS(668), - [aux_sym_string_literal_token1] = ACTIONS(668), - [sym_char_literal] = ACTIONS(668), - [anon_sym_true] = ACTIONS(670), - [anon_sym_false] = ACTIONS(670), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(670), - [sym_super] = ACTIONS(670), - [sym_crate] = ACTIONS(670), - [sym_metavariable] = ACTIONS(668), - [sym_raw_string_literal] = ACTIONS(668), - [sym_float_literal] = ACTIONS(668), + [ts_builtin_sym_end] = ACTIONS(1086), + [sym_identifier] = ACTIONS(1088), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_macro_rules_BANG] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_STAR] = ACTIONS(1086), + [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_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1088), + [anon_sym_break] = ACTIONS(1088), + [anon_sym_const] = ACTIONS(1088), + [anon_sym_continue] = ACTIONS(1088), + [anon_sym_default] = ACTIONS(1088), + [anon_sym_enum] = ACTIONS(1088), + [anon_sym_fn] = ACTIONS(1088), + [anon_sym_for] = ACTIONS(1088), + [anon_sym_if] = ACTIONS(1088), + [anon_sym_impl] = ACTIONS(1088), + [anon_sym_let] = ACTIONS(1088), + [anon_sym_loop] = ACTIONS(1088), + [anon_sym_match] = ACTIONS(1088), + [anon_sym_mod] = ACTIONS(1088), + [anon_sym_pub] = ACTIONS(1088), + [anon_sym_return] = ACTIONS(1088), + [anon_sym_static] = ACTIONS(1088), + [anon_sym_struct] = ACTIONS(1088), + [anon_sym_trait] = ACTIONS(1088), + [anon_sym_type] = ACTIONS(1088), + [anon_sym_union] = ACTIONS(1088), + [anon_sym_unsafe] = ACTIONS(1088), + [anon_sym_use] = ACTIONS(1088), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_POUND] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1088), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1086), + [anon_sym_DOT_DOT] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_PIPE] = ACTIONS(1086), + [anon_sym_yield] = ACTIONS(1088), + [anon_sym_move] = ACTIONS(1088), + [sym_integer_literal] = ACTIONS(1086), + [aux_sym_string_literal_token1] = ACTIONS(1086), + [sym_char_literal] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1088), + [anon_sym_false] = ACTIONS(1088), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1088), + [sym_super] = ACTIONS(1088), + [sym_crate] = ACTIONS(1088), + [sym_metavariable] = ACTIONS(1086), + [sym_raw_string_literal] = ACTIONS(1086), + [sym_float_literal] = ACTIONS(1086), [sym_block_comment] = ACTIONS(3), }, [257] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(1808), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_type_binding] = STATE(2093), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [sym_block] = STATE(2093), - [sym__literal] = STATE(2093), - [sym_string_literal] = STATE(2318), - [sym_boolean_literal] = STATE(2318), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(900), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(920), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(920), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_raw_string_literal] = ACTIONS(920), - [sym_float_literal] = ACTIONS(920), + [ts_builtin_sym_end] = ACTIONS(1090), + [sym_identifier] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1090), + [anon_sym_macro_rules_BANG] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1090), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_u8] = ACTIONS(1092), + [anon_sym_i8] = ACTIONS(1092), + [anon_sym_u16] = ACTIONS(1092), + [anon_sym_i16] = ACTIONS(1092), + [anon_sym_u32] = ACTIONS(1092), + [anon_sym_i32] = ACTIONS(1092), + [anon_sym_u64] = ACTIONS(1092), + [anon_sym_i64] = ACTIONS(1092), + [anon_sym_u128] = ACTIONS(1092), + [anon_sym_i128] = ACTIONS(1092), + [anon_sym_isize] = ACTIONS(1092), + [anon_sym_usize] = ACTIONS(1092), + [anon_sym_f32] = ACTIONS(1092), + [anon_sym_f64] = ACTIONS(1092), + [anon_sym_bool] = ACTIONS(1092), + [anon_sym_str] = ACTIONS(1092), + [anon_sym_char] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1092), + [anon_sym_async] = ACTIONS(1092), + [anon_sym_break] = ACTIONS(1092), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_continue] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_enum] = ACTIONS(1092), + [anon_sym_fn] = ACTIONS(1092), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_if] = ACTIONS(1092), + [anon_sym_impl] = ACTIONS(1092), + [anon_sym_let] = ACTIONS(1092), + [anon_sym_loop] = ACTIONS(1092), + [anon_sym_match] = ACTIONS(1092), + [anon_sym_mod] = ACTIONS(1092), + [anon_sym_pub] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_static] = ACTIONS(1092), + [anon_sym_struct] = ACTIONS(1092), + [anon_sym_trait] = ACTIONS(1092), + [anon_sym_type] = ACTIONS(1092), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_unsafe] = ACTIONS(1092), + [anon_sym_use] = ACTIONS(1092), + [anon_sym_while] = ACTIONS(1092), + [anon_sym_POUND] = ACTIONS(1090), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_extern] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_COLON_COLON] = ACTIONS(1090), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_DOT_DOT] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_yield] = ACTIONS(1092), + [anon_sym_move] = ACTIONS(1092), + [sym_integer_literal] = ACTIONS(1090), + [aux_sym_string_literal_token1] = ACTIONS(1090), + [sym_char_literal] = ACTIONS(1090), + [anon_sym_true] = ACTIONS(1092), + [anon_sym_false] = ACTIONS(1092), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1092), + [sym_super] = ACTIONS(1092), + [sym_crate] = ACTIONS(1092), + [sym_metavariable] = ACTIONS(1090), + [sym_raw_string_literal] = ACTIONS(1090), + [sym_float_literal] = ACTIONS(1090), [sym_block_comment] = ACTIONS(3), }, [258] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2026), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(1897), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_type_binding] = STATE(2225), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [sym_block] = STATE(2225), - [sym__literal] = STATE(2225), - [sym_string_literal] = STATE(2318), - [sym_boolean_literal] = STATE(2318), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(900), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(920), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(920), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_raw_string_literal] = ACTIONS(920), - [sym_float_literal] = ACTIONS(920), + [ts_builtin_sym_end] = ACTIONS(1094), + [sym_identifier] = ACTIONS(1096), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_macro_rules_BANG] = ACTIONS(1094), + [anon_sym_LPAREN] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(1094), + [anon_sym_RBRACE] = ACTIONS(1094), + [anon_sym_LBRACK] = ACTIONS(1094), + [anon_sym_STAR] = ACTIONS(1094), + [anon_sym_u8] = ACTIONS(1096), + [anon_sym_i8] = ACTIONS(1096), + [anon_sym_u16] = ACTIONS(1096), + [anon_sym_i16] = ACTIONS(1096), + [anon_sym_u32] = ACTIONS(1096), + [anon_sym_i32] = ACTIONS(1096), + [anon_sym_u64] = ACTIONS(1096), + [anon_sym_i64] = ACTIONS(1096), + [anon_sym_u128] = ACTIONS(1096), + [anon_sym_i128] = ACTIONS(1096), + [anon_sym_isize] = ACTIONS(1096), + [anon_sym_usize] = ACTIONS(1096), + [anon_sym_f32] = ACTIONS(1096), + [anon_sym_f64] = ACTIONS(1096), + [anon_sym_bool] = ACTIONS(1096), + [anon_sym_str] = ACTIONS(1096), + [anon_sym_char] = ACTIONS(1096), + [anon_sym_SQUOTE] = ACTIONS(1096), + [anon_sym_async] = ACTIONS(1096), + [anon_sym_break] = ACTIONS(1096), + [anon_sym_const] = ACTIONS(1096), + [anon_sym_continue] = ACTIONS(1096), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_enum] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_if] = ACTIONS(1096), + [anon_sym_impl] = ACTIONS(1096), + [anon_sym_let] = ACTIONS(1096), + [anon_sym_loop] = ACTIONS(1096), + [anon_sym_match] = ACTIONS(1096), + [anon_sym_mod] = ACTIONS(1096), + [anon_sym_pub] = ACTIONS(1096), + [anon_sym_return] = ACTIONS(1096), + [anon_sym_static] = ACTIONS(1096), + [anon_sym_struct] = ACTIONS(1096), + [anon_sym_trait] = ACTIONS(1096), + [anon_sym_type] = ACTIONS(1096), + [anon_sym_union] = ACTIONS(1096), + [anon_sym_unsafe] = ACTIONS(1096), + [anon_sym_use] = ACTIONS(1096), + [anon_sym_while] = ACTIONS(1096), + [anon_sym_POUND] = ACTIONS(1094), + [anon_sym_BANG] = ACTIONS(1094), + [anon_sym_extern] = ACTIONS(1096), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_COLON_COLON] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_DOT_DOT] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_yield] = ACTIONS(1096), + [anon_sym_move] = ACTIONS(1096), + [sym_integer_literal] = ACTIONS(1094), + [aux_sym_string_literal_token1] = ACTIONS(1094), + [sym_char_literal] = ACTIONS(1094), + [anon_sym_true] = ACTIONS(1096), + [anon_sym_false] = ACTIONS(1096), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1096), + [sym_super] = ACTIONS(1096), + [sym_crate] = ACTIONS(1096), + [sym_metavariable] = ACTIONS(1094), + [sym_raw_string_literal] = ACTIONS(1094), + [sym_float_literal] = ACTIONS(1094), [sym_block_comment] = ACTIONS(3), }, [259] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1803), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(1802), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_type_binding] = STATE(1999), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [sym_block] = STATE(1999), - [sym__literal] = STATE(1999), - [sym_string_literal] = STATE(2318), - [sym_boolean_literal] = STATE(2318), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(900), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_integer_literal] = ACTIONS(920), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(920), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_raw_string_literal] = ACTIONS(920), - [sym_float_literal] = ACTIONS(920), + [ts_builtin_sym_end] = ACTIONS(1098), + [sym_identifier] = ACTIONS(1100), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym_macro_rules_BANG] = ACTIONS(1098), + [anon_sym_LPAREN] = ACTIONS(1098), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_RBRACE] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1098), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_u8] = ACTIONS(1100), + [anon_sym_i8] = ACTIONS(1100), + [anon_sym_u16] = ACTIONS(1100), + [anon_sym_i16] = ACTIONS(1100), + [anon_sym_u32] = ACTIONS(1100), + [anon_sym_i32] = ACTIONS(1100), + [anon_sym_u64] = ACTIONS(1100), + [anon_sym_i64] = ACTIONS(1100), + [anon_sym_u128] = ACTIONS(1100), + [anon_sym_i128] = ACTIONS(1100), + [anon_sym_isize] = ACTIONS(1100), + [anon_sym_usize] = ACTIONS(1100), + [anon_sym_f32] = ACTIONS(1100), + [anon_sym_f64] = ACTIONS(1100), + [anon_sym_bool] = ACTIONS(1100), + [anon_sym_str] = ACTIONS(1100), + [anon_sym_char] = ACTIONS(1100), + [anon_sym_SQUOTE] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(1100), + [anon_sym_break] = ACTIONS(1100), + [anon_sym_const] = ACTIONS(1100), + [anon_sym_continue] = ACTIONS(1100), + [anon_sym_default] = ACTIONS(1100), + [anon_sym_enum] = ACTIONS(1100), + [anon_sym_fn] = ACTIONS(1100), + [anon_sym_for] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1100), + [anon_sym_let] = ACTIONS(1100), + [anon_sym_loop] = ACTIONS(1100), + [anon_sym_match] = ACTIONS(1100), + [anon_sym_mod] = ACTIONS(1100), + [anon_sym_pub] = ACTIONS(1100), + [anon_sym_return] = ACTIONS(1100), + [anon_sym_static] = ACTIONS(1100), + [anon_sym_struct] = ACTIONS(1100), + [anon_sym_trait] = ACTIONS(1100), + [anon_sym_type] = ACTIONS(1100), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1100), + [anon_sym_use] = ACTIONS(1100), + [anon_sym_while] = ACTIONS(1100), + [anon_sym_POUND] = ACTIONS(1098), + [anon_sym_BANG] = ACTIONS(1098), + [anon_sym_extern] = ACTIONS(1100), + [anon_sym_LT] = ACTIONS(1098), + [anon_sym_COLON_COLON] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1098), + [anon_sym_DOT_DOT] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1098), + [anon_sym_PIPE] = ACTIONS(1098), + [anon_sym_yield] = ACTIONS(1100), + [anon_sym_move] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1098), + [aux_sym_string_literal_token1] = ACTIONS(1098), + [sym_char_literal] = ACTIONS(1098), + [anon_sym_true] = ACTIONS(1100), + [anon_sym_false] = ACTIONS(1100), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1100), + [sym_super] = ACTIONS(1100), + [sym_crate] = ACTIONS(1100), + [sym_metavariable] = ACTIONS(1098), + [sym_raw_string_literal] = ACTIONS(1098), + [sym_float_literal] = ACTIONS(1098), [sym_block_comment] = ACTIONS(3), }, [260] = { - [sym_empty_statement] = STATE(265), - [sym_macro_definition] = STATE(265), - [sym_attribute_item] = STATE(265), - [sym_inner_attribute_item] = STATE(265), - [sym_mod_item] = STATE(265), - [sym_foreign_mod_item] = STATE(265), - [sym_struct_item] = STATE(265), - [sym_union_item] = STATE(265), - [sym_enum_item] = STATE(265), - [sym_extern_crate_declaration] = STATE(265), - [sym_const_item] = STATE(265), - [sym_static_item] = STATE(265), - [sym_type_item] = STATE(265), - [sym_function_item] = STATE(265), - [sym_function_signature_item] = STATE(265), - [sym_function_modifiers] = STATE(2563), - [sym_impl_item] = STATE(265), - [sym_trait_item] = STATE(265), - [sym_associated_type] = STATE(265), - [sym_let_declaration] = STATE(265), - [sym_use_declaration] = STATE(265), - [sym_extern_modifier] = STATE(1518), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2374), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(2286), - [aux_sym_declaration_list_repeat1] = STATE(265), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_macro_rules_BANG] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(942), - [anon_sym_u8] = ACTIONS(944), - [anon_sym_i8] = ACTIONS(944), - [anon_sym_u16] = ACTIONS(944), - [anon_sym_i16] = ACTIONS(944), - [anon_sym_u32] = ACTIONS(944), - [anon_sym_i32] = ACTIONS(944), - [anon_sym_u64] = ACTIONS(944), - [anon_sym_i64] = ACTIONS(944), - [anon_sym_u128] = ACTIONS(944), - [anon_sym_i128] = ACTIONS(944), - [anon_sym_isize] = ACTIONS(944), - [anon_sym_usize] = ACTIONS(944), - [anon_sym_f32] = ACTIONS(944), - [anon_sym_f64] = ACTIONS(944), - [anon_sym_bool] = ACTIONS(944), - [anon_sym_str] = ACTIONS(944), - [anon_sym_char] = ACTIONS(944), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(946), - [anon_sym_default] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(950), - [anon_sym_fn] = ACTIONS(952), - [anon_sym_impl] = ACTIONS(954), - [anon_sym_let] = ACTIONS(956), - [anon_sym_mod] = ACTIONS(958), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_trait] = ACTIONS(964), - [anon_sym_type] = ACTIONS(966), - [anon_sym_union] = ACTIONS(968), - [anon_sym_unsafe] = ACTIONS(970), - [anon_sym_use] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(978), - [sym_super] = ACTIONS(978), - [sym_crate] = ACTIONS(980), - [sym_metavariable] = ACTIONS(982), + [ts_builtin_sym_end] = ACTIONS(1102), + [sym_identifier] = ACTIONS(1104), + [anon_sym_SEMI] = ACTIONS(1102), + [anon_sym_macro_rules_BANG] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_RBRACE] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_u8] = ACTIONS(1104), + [anon_sym_i8] = ACTIONS(1104), + [anon_sym_u16] = ACTIONS(1104), + [anon_sym_i16] = ACTIONS(1104), + [anon_sym_u32] = ACTIONS(1104), + [anon_sym_i32] = ACTIONS(1104), + [anon_sym_u64] = ACTIONS(1104), + [anon_sym_i64] = ACTIONS(1104), + [anon_sym_u128] = ACTIONS(1104), + [anon_sym_i128] = ACTIONS(1104), + [anon_sym_isize] = ACTIONS(1104), + [anon_sym_usize] = ACTIONS(1104), + [anon_sym_f32] = ACTIONS(1104), + [anon_sym_f64] = ACTIONS(1104), + [anon_sym_bool] = ACTIONS(1104), + [anon_sym_str] = ACTIONS(1104), + [anon_sym_char] = ACTIONS(1104), + [anon_sym_SQUOTE] = ACTIONS(1104), + [anon_sym_async] = ACTIONS(1104), + [anon_sym_break] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1104), + [anon_sym_continue] = ACTIONS(1104), + [anon_sym_default] = ACTIONS(1104), + [anon_sym_enum] = ACTIONS(1104), + [anon_sym_fn] = ACTIONS(1104), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_impl] = ACTIONS(1104), + [anon_sym_let] = ACTIONS(1104), + [anon_sym_loop] = ACTIONS(1104), + [anon_sym_match] = ACTIONS(1104), + [anon_sym_mod] = ACTIONS(1104), + [anon_sym_pub] = ACTIONS(1104), + [anon_sym_return] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_struct] = ACTIONS(1104), + [anon_sym_trait] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1104), + [anon_sym_union] = ACTIONS(1104), + [anon_sym_unsafe] = ACTIONS(1104), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_POUND] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_COLON_COLON] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_DOT_DOT] = ACTIONS(1102), + [anon_sym_DASH] = ACTIONS(1102), + [anon_sym_PIPE] = ACTIONS(1102), + [anon_sym_yield] = ACTIONS(1104), + [anon_sym_move] = ACTIONS(1104), + [sym_integer_literal] = ACTIONS(1102), + [aux_sym_string_literal_token1] = ACTIONS(1102), + [sym_char_literal] = ACTIONS(1102), + [anon_sym_true] = ACTIONS(1104), + [anon_sym_false] = ACTIONS(1104), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1104), + [sym_super] = ACTIONS(1104), + [sym_crate] = ACTIONS(1104), + [sym_metavariable] = ACTIONS(1102), + [sym_raw_string_literal] = ACTIONS(1102), + [sym_float_literal] = ACTIONS(1102), [sym_block_comment] = ACTIONS(3), }, [261] = { - [sym_empty_statement] = STATE(262), - [sym_macro_definition] = STATE(262), - [sym_attribute_item] = STATE(262), - [sym_inner_attribute_item] = STATE(262), - [sym_mod_item] = STATE(262), - [sym_foreign_mod_item] = STATE(262), - [sym_struct_item] = STATE(262), - [sym_union_item] = STATE(262), - [sym_enum_item] = STATE(262), - [sym_extern_crate_declaration] = STATE(262), - [sym_const_item] = STATE(262), - [sym_static_item] = STATE(262), - [sym_type_item] = STATE(262), - [sym_function_item] = STATE(262), - [sym_function_signature_item] = STATE(262), - [sym_function_modifiers] = STATE(2563), - [sym_impl_item] = STATE(262), - [sym_trait_item] = STATE(262), - [sym_associated_type] = STATE(262), - [sym_let_declaration] = STATE(262), - [sym_use_declaration] = STATE(262), - [sym_extern_modifier] = STATE(1518), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2374), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_macro_invocation] = STATE(262), - [sym_scoped_identifier] = STATE(2286), - [aux_sym_declaration_list_repeat1] = STATE(262), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_macro_rules_BANG] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_u8] = ACTIONS(944), - [anon_sym_i8] = ACTIONS(944), - [anon_sym_u16] = ACTIONS(944), - [anon_sym_i16] = ACTIONS(944), - [anon_sym_u32] = ACTIONS(944), - [anon_sym_i32] = ACTIONS(944), - [anon_sym_u64] = ACTIONS(944), - [anon_sym_i64] = ACTIONS(944), - [anon_sym_u128] = ACTIONS(944), - [anon_sym_i128] = ACTIONS(944), - [anon_sym_isize] = ACTIONS(944), - [anon_sym_usize] = ACTIONS(944), - [anon_sym_f32] = ACTIONS(944), - [anon_sym_f64] = ACTIONS(944), - [anon_sym_bool] = ACTIONS(944), - [anon_sym_str] = ACTIONS(944), - [anon_sym_char] = ACTIONS(944), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(946), - [anon_sym_default] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(950), - [anon_sym_fn] = ACTIONS(952), - [anon_sym_impl] = ACTIONS(954), - [anon_sym_let] = ACTIONS(956), - [anon_sym_mod] = ACTIONS(958), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_trait] = ACTIONS(964), - [anon_sym_type] = ACTIONS(966), - [anon_sym_union] = ACTIONS(968), - [anon_sym_unsafe] = ACTIONS(970), - [anon_sym_use] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(978), - [sym_super] = ACTIONS(978), - [sym_crate] = ACTIONS(980), - [sym_metavariable] = ACTIONS(982), + [ts_builtin_sym_end] = ACTIONS(1106), + [sym_identifier] = ACTIONS(1108), + [anon_sym_SEMI] = ACTIONS(1106), + [anon_sym_macro_rules_BANG] = ACTIONS(1106), + [anon_sym_LPAREN] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_RBRACE] = ACTIONS(1106), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_STAR] = ACTIONS(1106), + [anon_sym_u8] = ACTIONS(1108), + [anon_sym_i8] = ACTIONS(1108), + [anon_sym_u16] = ACTIONS(1108), + [anon_sym_i16] = ACTIONS(1108), + [anon_sym_u32] = ACTIONS(1108), + [anon_sym_i32] = ACTIONS(1108), + [anon_sym_u64] = ACTIONS(1108), + [anon_sym_i64] = ACTIONS(1108), + [anon_sym_u128] = ACTIONS(1108), + [anon_sym_i128] = ACTIONS(1108), + [anon_sym_isize] = ACTIONS(1108), + [anon_sym_usize] = ACTIONS(1108), + [anon_sym_f32] = ACTIONS(1108), + [anon_sym_f64] = ACTIONS(1108), + [anon_sym_bool] = ACTIONS(1108), + [anon_sym_str] = ACTIONS(1108), + [anon_sym_char] = ACTIONS(1108), + [anon_sym_SQUOTE] = ACTIONS(1108), + [anon_sym_async] = ACTIONS(1108), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1108), + [anon_sym_enum] = ACTIONS(1108), + [anon_sym_fn] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1108), + [anon_sym_impl] = ACTIONS(1108), + [anon_sym_let] = ACTIONS(1108), + [anon_sym_loop] = ACTIONS(1108), + [anon_sym_match] = ACTIONS(1108), + [anon_sym_mod] = ACTIONS(1108), + [anon_sym_pub] = ACTIONS(1108), + [anon_sym_return] = ACTIONS(1108), + [anon_sym_static] = ACTIONS(1108), + [anon_sym_struct] = ACTIONS(1108), + [anon_sym_trait] = ACTIONS(1108), + [anon_sym_type] = ACTIONS(1108), + [anon_sym_union] = ACTIONS(1108), + [anon_sym_unsafe] = ACTIONS(1108), + [anon_sym_use] = ACTIONS(1108), + [anon_sym_while] = ACTIONS(1108), + [anon_sym_POUND] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_extern] = ACTIONS(1108), + [anon_sym_LT] = ACTIONS(1106), + [anon_sym_COLON_COLON] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1106), + [anon_sym_DOT_DOT] = ACTIONS(1106), + [anon_sym_DASH] = ACTIONS(1106), + [anon_sym_PIPE] = ACTIONS(1106), + [anon_sym_yield] = ACTIONS(1108), + [anon_sym_move] = ACTIONS(1108), + [sym_integer_literal] = ACTIONS(1106), + [aux_sym_string_literal_token1] = ACTIONS(1106), + [sym_char_literal] = ACTIONS(1106), + [anon_sym_true] = ACTIONS(1108), + [anon_sym_false] = ACTIONS(1108), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1108), + [sym_super] = ACTIONS(1108), + [sym_crate] = ACTIONS(1108), + [sym_metavariable] = ACTIONS(1106), + [sym_raw_string_literal] = ACTIONS(1106), + [sym_float_literal] = ACTIONS(1106), [sym_block_comment] = ACTIONS(3), }, [262] = { - [sym_empty_statement] = STATE(262), - [sym_macro_definition] = STATE(262), - [sym_attribute_item] = STATE(262), - [sym_inner_attribute_item] = STATE(262), - [sym_mod_item] = STATE(262), - [sym_foreign_mod_item] = STATE(262), - [sym_struct_item] = STATE(262), - [sym_union_item] = STATE(262), - [sym_enum_item] = STATE(262), - [sym_extern_crate_declaration] = STATE(262), - [sym_const_item] = STATE(262), - [sym_static_item] = STATE(262), - [sym_type_item] = STATE(262), - [sym_function_item] = STATE(262), - [sym_function_signature_item] = STATE(262), - [sym_function_modifiers] = STATE(2563), - [sym_impl_item] = STATE(262), - [sym_trait_item] = STATE(262), - [sym_associated_type] = STATE(262), - [sym_let_declaration] = STATE(262), - [sym_use_declaration] = STATE(262), - [sym_extern_modifier] = STATE(1518), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2374), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_macro_invocation] = STATE(262), - [sym_scoped_identifier] = STATE(2286), - [aux_sym_declaration_list_repeat1] = STATE(262), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(989), - [anon_sym_macro_rules_BANG] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_u8] = ACTIONS(997), - [anon_sym_i8] = ACTIONS(997), - [anon_sym_u16] = ACTIONS(997), - [anon_sym_i16] = ACTIONS(997), - [anon_sym_u32] = ACTIONS(997), - [anon_sym_i32] = ACTIONS(997), - [anon_sym_u64] = ACTIONS(997), - [anon_sym_i64] = ACTIONS(997), - [anon_sym_u128] = ACTIONS(997), - [anon_sym_i128] = ACTIONS(997), - [anon_sym_isize] = ACTIONS(997), - [anon_sym_usize] = ACTIONS(997), - [anon_sym_f32] = ACTIONS(997), - [anon_sym_f64] = ACTIONS(997), - [anon_sym_bool] = ACTIONS(997), - [anon_sym_str] = ACTIONS(997), - [anon_sym_char] = ACTIONS(997), - [anon_sym_async] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1003), - [anon_sym_default] = ACTIONS(1006), - [anon_sym_enum] = ACTIONS(1009), - [anon_sym_fn] = ACTIONS(1012), - [anon_sym_impl] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_mod] = ACTIONS(1021), - [anon_sym_pub] = ACTIONS(1024), - [anon_sym_static] = ACTIONS(1027), - [anon_sym_struct] = ACTIONS(1030), - [anon_sym_trait] = ACTIONS(1033), - [anon_sym_type] = ACTIONS(1036), - [anon_sym_union] = ACTIONS(1039), - [anon_sym_unsafe] = ACTIONS(1042), - [anon_sym_use] = ACTIONS(1045), - [anon_sym_POUND] = ACTIONS(1048), - [anon_sym_extern] = ACTIONS(1051), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_COLON_COLON] = ACTIONS(1057), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1060), - [sym_super] = ACTIONS(1060), - [sym_crate] = ACTIONS(1063), - [sym_metavariable] = ACTIONS(1066), + [ts_builtin_sym_end] = ACTIONS(1110), + [sym_identifier] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym_macro_rules_BANG] = ACTIONS(1110), + [anon_sym_LPAREN] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_u8] = ACTIONS(1112), + [anon_sym_i8] = ACTIONS(1112), + [anon_sym_u16] = ACTIONS(1112), + [anon_sym_i16] = ACTIONS(1112), + [anon_sym_u32] = ACTIONS(1112), + [anon_sym_i32] = ACTIONS(1112), + [anon_sym_u64] = ACTIONS(1112), + [anon_sym_i64] = ACTIONS(1112), + [anon_sym_u128] = ACTIONS(1112), + [anon_sym_i128] = ACTIONS(1112), + [anon_sym_isize] = ACTIONS(1112), + [anon_sym_usize] = ACTIONS(1112), + [anon_sym_f32] = ACTIONS(1112), + [anon_sym_f64] = ACTIONS(1112), + [anon_sym_bool] = ACTIONS(1112), + [anon_sym_str] = ACTIONS(1112), + [anon_sym_char] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_async] = ACTIONS(1112), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1112), + [anon_sym_continue] = ACTIONS(1112), + [anon_sym_default] = ACTIONS(1112), + [anon_sym_enum] = ACTIONS(1112), + [anon_sym_fn] = ACTIONS(1112), + [anon_sym_for] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_impl] = ACTIONS(1112), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_loop] = ACTIONS(1112), + [anon_sym_match] = ACTIONS(1112), + [anon_sym_mod] = ACTIONS(1112), + [anon_sym_pub] = ACTIONS(1112), + [anon_sym_return] = ACTIONS(1112), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_struct] = ACTIONS(1112), + [anon_sym_trait] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_union] = ACTIONS(1112), + [anon_sym_unsafe] = ACTIONS(1112), + [anon_sym_use] = ACTIONS(1112), + [anon_sym_while] = ACTIONS(1112), + [anon_sym_POUND] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_extern] = ACTIONS(1112), + [anon_sym_LT] = ACTIONS(1110), + [anon_sym_COLON_COLON] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1110), + [anon_sym_DOT_DOT] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_PIPE] = ACTIONS(1110), + [anon_sym_yield] = ACTIONS(1112), + [anon_sym_move] = ACTIONS(1112), + [sym_integer_literal] = ACTIONS(1110), + [aux_sym_string_literal_token1] = ACTIONS(1110), + [sym_char_literal] = ACTIONS(1110), + [anon_sym_true] = ACTIONS(1112), + [anon_sym_false] = ACTIONS(1112), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1112), + [sym_super] = ACTIONS(1112), + [sym_crate] = ACTIONS(1112), + [sym_metavariable] = ACTIONS(1110), + [sym_raw_string_literal] = ACTIONS(1110), + [sym_float_literal] = ACTIONS(1110), [sym_block_comment] = ACTIONS(3), }, [263] = { - [sym_empty_statement] = STATE(261), - [sym_macro_definition] = STATE(261), - [sym_attribute_item] = STATE(261), - [sym_inner_attribute_item] = STATE(261), - [sym_mod_item] = STATE(261), - [sym_foreign_mod_item] = STATE(261), - [sym_struct_item] = STATE(261), - [sym_union_item] = STATE(261), - [sym_enum_item] = STATE(261), - [sym_extern_crate_declaration] = STATE(261), - [sym_const_item] = STATE(261), - [sym_static_item] = STATE(261), - [sym_type_item] = STATE(261), - [sym_function_item] = STATE(261), - [sym_function_signature_item] = STATE(261), - [sym_function_modifiers] = STATE(2563), - [sym_impl_item] = STATE(261), - [sym_trait_item] = STATE(261), - [sym_associated_type] = STATE(261), - [sym_let_declaration] = STATE(261), - [sym_use_declaration] = STATE(261), - [sym_extern_modifier] = STATE(1518), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2374), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_macro_invocation] = STATE(261), - [sym_scoped_identifier] = STATE(2286), - [aux_sym_declaration_list_repeat1] = STATE(261), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_macro_rules_BANG] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(1069), - [anon_sym_u8] = ACTIONS(944), - [anon_sym_i8] = ACTIONS(944), - [anon_sym_u16] = ACTIONS(944), - [anon_sym_i16] = ACTIONS(944), - [anon_sym_u32] = ACTIONS(944), - [anon_sym_i32] = ACTIONS(944), - [anon_sym_u64] = ACTIONS(944), - [anon_sym_i64] = ACTIONS(944), - [anon_sym_u128] = ACTIONS(944), - [anon_sym_i128] = ACTIONS(944), - [anon_sym_isize] = ACTIONS(944), - [anon_sym_usize] = ACTIONS(944), - [anon_sym_f32] = ACTIONS(944), - [anon_sym_f64] = ACTIONS(944), - [anon_sym_bool] = ACTIONS(944), - [anon_sym_str] = ACTIONS(944), - [anon_sym_char] = ACTIONS(944), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(946), - [anon_sym_default] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(950), - [anon_sym_fn] = ACTIONS(952), - [anon_sym_impl] = ACTIONS(954), - [anon_sym_let] = ACTIONS(956), - [anon_sym_mod] = ACTIONS(958), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_trait] = ACTIONS(964), - [anon_sym_type] = ACTIONS(966), - [anon_sym_union] = ACTIONS(968), - [anon_sym_unsafe] = ACTIONS(970), - [anon_sym_use] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(978), - [sym_super] = ACTIONS(978), - [sym_crate] = ACTIONS(980), - [sym_metavariable] = ACTIONS(982), + [ts_builtin_sym_end] = ACTIONS(1114), + [sym_identifier] = ACTIONS(1116), + [anon_sym_SEMI] = ACTIONS(1114), + [anon_sym_macro_rules_BANG] = ACTIONS(1114), + [anon_sym_LPAREN] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1114), + [anon_sym_RBRACE] = ACTIONS(1114), + [anon_sym_LBRACK] = ACTIONS(1114), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_u8] = ACTIONS(1116), + [anon_sym_i8] = ACTIONS(1116), + [anon_sym_u16] = ACTIONS(1116), + [anon_sym_i16] = ACTIONS(1116), + [anon_sym_u32] = ACTIONS(1116), + [anon_sym_i32] = ACTIONS(1116), + [anon_sym_u64] = ACTIONS(1116), + [anon_sym_i64] = ACTIONS(1116), + [anon_sym_u128] = ACTIONS(1116), + [anon_sym_i128] = ACTIONS(1116), + [anon_sym_isize] = ACTIONS(1116), + [anon_sym_usize] = ACTIONS(1116), + [anon_sym_f32] = ACTIONS(1116), + [anon_sym_f64] = ACTIONS(1116), + [anon_sym_bool] = ACTIONS(1116), + [anon_sym_str] = ACTIONS(1116), + [anon_sym_char] = ACTIONS(1116), + [anon_sym_SQUOTE] = ACTIONS(1116), + [anon_sym_async] = ACTIONS(1116), + [anon_sym_break] = ACTIONS(1116), + [anon_sym_const] = ACTIONS(1116), + [anon_sym_continue] = ACTIONS(1116), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_enum] = ACTIONS(1116), + [anon_sym_fn] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_impl] = ACTIONS(1116), + [anon_sym_let] = ACTIONS(1116), + [anon_sym_loop] = ACTIONS(1116), + [anon_sym_match] = ACTIONS(1116), + [anon_sym_mod] = ACTIONS(1116), + [anon_sym_pub] = ACTIONS(1116), + [anon_sym_return] = ACTIONS(1116), + [anon_sym_static] = ACTIONS(1116), + [anon_sym_struct] = ACTIONS(1116), + [anon_sym_trait] = ACTIONS(1116), + [anon_sym_type] = ACTIONS(1116), + [anon_sym_union] = ACTIONS(1116), + [anon_sym_unsafe] = ACTIONS(1116), + [anon_sym_use] = ACTIONS(1116), + [anon_sym_while] = ACTIONS(1116), + [anon_sym_POUND] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_extern] = ACTIONS(1116), + [anon_sym_LT] = ACTIONS(1114), + [anon_sym_COLON_COLON] = ACTIONS(1114), + [anon_sym_AMP] = ACTIONS(1114), + [anon_sym_DOT_DOT] = ACTIONS(1114), + [anon_sym_DASH] = ACTIONS(1114), + [anon_sym_PIPE] = ACTIONS(1114), + [anon_sym_yield] = ACTIONS(1116), + [anon_sym_move] = ACTIONS(1116), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1114), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1116), + [anon_sym_false] = ACTIONS(1116), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1116), + [sym_super] = ACTIONS(1116), + [sym_crate] = ACTIONS(1116), + [sym_metavariable] = ACTIONS(1114), + [sym_raw_string_literal] = ACTIONS(1114), + [sym_float_literal] = ACTIONS(1114), [sym_block_comment] = ACTIONS(3), }, [264] = { - [sym__token_pattern] = STATE(264), - [sym_token_tree_pattern] = STATE(264), - [sym_token_binding_pattern] = STATE(264), - [sym_token_repetition_pattern] = STATE(264), - [sym__literal] = STATE(264), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(1074), - [anon_sym_RPAREN] = ACTIONS(1077), - [anon_sym_LBRACE] = ACTIONS(1079), - [anon_sym_RBRACE] = ACTIONS(1077), - [anon_sym_LBRACK] = ACTIONS(1082), - [anon_sym_RBRACK] = ACTIONS(1077), - [anon_sym_DOLLAR] = ACTIONS(1085), - [anon_sym_u8] = ACTIONS(1071), - [anon_sym_i8] = ACTIONS(1071), - [anon_sym_u16] = ACTIONS(1071), - [anon_sym_i16] = ACTIONS(1071), - [anon_sym_u32] = ACTIONS(1071), - [anon_sym_i32] = ACTIONS(1071), - [anon_sym_u64] = ACTIONS(1071), - [anon_sym_i64] = ACTIONS(1071), - [anon_sym_u128] = ACTIONS(1071), - [anon_sym_i128] = ACTIONS(1071), - [anon_sym_isize] = ACTIONS(1071), - [anon_sym_usize] = ACTIONS(1071), - [anon_sym_f32] = ACTIONS(1071), - [anon_sym_f64] = ACTIONS(1071), - [anon_sym_bool] = ACTIONS(1071), - [anon_sym_str] = ACTIONS(1071), - [anon_sym_char] = ACTIONS(1071), - [aux_sym__non_special_token_token1] = ACTIONS(1071), - [anon_sym_SQUOTE] = ACTIONS(1071), - [anon_sym_as] = ACTIONS(1071), - [anon_sym_async] = ACTIONS(1071), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_break] = ACTIONS(1071), - [anon_sym_const] = ACTIONS(1071), - [anon_sym_continue] = ACTIONS(1071), - [anon_sym_default] = ACTIONS(1071), - [anon_sym_enum] = ACTIONS(1071), - [anon_sym_fn] = ACTIONS(1071), - [anon_sym_for] = ACTIONS(1071), - [anon_sym_if] = ACTIONS(1071), - [anon_sym_impl] = ACTIONS(1071), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_loop] = ACTIONS(1071), - [anon_sym_match] = ACTIONS(1071), - [anon_sym_mod] = ACTIONS(1071), - [anon_sym_pub] = ACTIONS(1071), - [anon_sym_return] = ACTIONS(1071), - [anon_sym_static] = ACTIONS(1071), - [anon_sym_struct] = ACTIONS(1071), - [anon_sym_trait] = ACTIONS(1071), - [anon_sym_type] = ACTIONS(1071), - [anon_sym_union] = ACTIONS(1071), - [anon_sym_unsafe] = ACTIONS(1071), - [anon_sym_use] = ACTIONS(1071), - [anon_sym_where] = ACTIONS(1071), - [anon_sym_while] = ACTIONS(1071), - [sym_mutable_specifier] = ACTIONS(1071), - [sym_integer_literal] = ACTIONS(1088), - [aux_sym_string_literal_token1] = ACTIONS(1091), - [sym_char_literal] = ACTIONS(1088), - [anon_sym_true] = ACTIONS(1094), - [anon_sym_false] = ACTIONS(1094), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(1071), - [sym_super] = ACTIONS(1071), - [sym_crate] = ACTIONS(1071), - [sym_metavariable] = ACTIONS(1099), - [sym_raw_string_literal] = ACTIONS(1088), - [sym_float_literal] = ACTIONS(1088), + [ts_builtin_sym_end] = ACTIONS(1118), + [sym_identifier] = ACTIONS(1120), + [anon_sym_SEMI] = ACTIONS(1118), + [anon_sym_macro_rules_BANG] = ACTIONS(1118), + [anon_sym_LPAREN] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_RBRACE] = ACTIONS(1118), + [anon_sym_LBRACK] = ACTIONS(1118), + [anon_sym_STAR] = ACTIONS(1118), + [anon_sym_u8] = ACTIONS(1120), + [anon_sym_i8] = ACTIONS(1120), + [anon_sym_u16] = ACTIONS(1120), + [anon_sym_i16] = ACTIONS(1120), + [anon_sym_u32] = ACTIONS(1120), + [anon_sym_i32] = ACTIONS(1120), + [anon_sym_u64] = ACTIONS(1120), + [anon_sym_i64] = ACTIONS(1120), + [anon_sym_u128] = ACTIONS(1120), + [anon_sym_i128] = ACTIONS(1120), + [anon_sym_isize] = ACTIONS(1120), + [anon_sym_usize] = ACTIONS(1120), + [anon_sym_f32] = ACTIONS(1120), + [anon_sym_f64] = ACTIONS(1120), + [anon_sym_bool] = ACTIONS(1120), + [anon_sym_str] = ACTIONS(1120), + [anon_sym_char] = ACTIONS(1120), + [anon_sym_SQUOTE] = ACTIONS(1120), + [anon_sym_async] = ACTIONS(1120), + [anon_sym_break] = ACTIONS(1120), + [anon_sym_const] = ACTIONS(1120), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_default] = ACTIONS(1120), + [anon_sym_enum] = ACTIONS(1120), + [anon_sym_fn] = ACTIONS(1120), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1120), + [anon_sym_impl] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(1120), + [anon_sym_loop] = ACTIONS(1120), + [anon_sym_match] = ACTIONS(1120), + [anon_sym_mod] = ACTIONS(1120), + [anon_sym_pub] = ACTIONS(1120), + [anon_sym_return] = ACTIONS(1120), + [anon_sym_static] = ACTIONS(1120), + [anon_sym_struct] = ACTIONS(1120), + [anon_sym_trait] = ACTIONS(1120), + [anon_sym_type] = ACTIONS(1120), + [anon_sym_union] = ACTIONS(1120), + [anon_sym_unsafe] = ACTIONS(1120), + [anon_sym_use] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1120), + [anon_sym_POUND] = ACTIONS(1118), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_extern] = ACTIONS(1120), + [anon_sym_LT] = ACTIONS(1118), + [anon_sym_COLON_COLON] = ACTIONS(1118), + [anon_sym_AMP] = ACTIONS(1118), + [anon_sym_DOT_DOT] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_PIPE] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_move] = ACTIONS(1120), + [sym_integer_literal] = ACTIONS(1118), + [aux_sym_string_literal_token1] = ACTIONS(1118), + [sym_char_literal] = ACTIONS(1118), + [anon_sym_true] = ACTIONS(1120), + [anon_sym_false] = ACTIONS(1120), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1120), + [sym_crate] = ACTIONS(1120), + [sym_metavariable] = ACTIONS(1118), + [sym_raw_string_literal] = ACTIONS(1118), + [sym_float_literal] = ACTIONS(1118), [sym_block_comment] = ACTIONS(3), }, [265] = { - [sym_empty_statement] = STATE(262), - [sym_macro_definition] = STATE(262), - [sym_attribute_item] = STATE(262), - [sym_inner_attribute_item] = STATE(262), - [sym_mod_item] = STATE(262), - [sym_foreign_mod_item] = STATE(262), - [sym_struct_item] = STATE(262), - [sym_union_item] = STATE(262), - [sym_enum_item] = STATE(262), - [sym_extern_crate_declaration] = STATE(262), - [sym_const_item] = STATE(262), - [sym_static_item] = STATE(262), - [sym_type_item] = STATE(262), - [sym_function_item] = STATE(262), - [sym_function_signature_item] = STATE(262), - [sym_function_modifiers] = STATE(2563), - [sym_impl_item] = STATE(262), - [sym_trait_item] = STATE(262), - [sym_associated_type] = STATE(262), - [sym_let_declaration] = STATE(262), - [sym_use_declaration] = STATE(262), - [sym_extern_modifier] = STATE(1518), - [sym_visibility_modifier] = STATE(1365), - [sym_bracketed_type] = STATE(2374), - [sym_generic_type_with_turbofish] = STATE(2359), - [sym_macro_invocation] = STATE(262), - [sym_scoped_identifier] = STATE(2286), - [aux_sym_declaration_list_repeat1] = STATE(262), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_macro_rules_BANG] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(1102), - [anon_sym_u8] = ACTIONS(944), - [anon_sym_i8] = ACTIONS(944), - [anon_sym_u16] = ACTIONS(944), - [anon_sym_i16] = ACTIONS(944), - [anon_sym_u32] = ACTIONS(944), - [anon_sym_i32] = ACTIONS(944), - [anon_sym_u64] = ACTIONS(944), - [anon_sym_i64] = ACTIONS(944), - [anon_sym_u128] = ACTIONS(944), - [anon_sym_i128] = ACTIONS(944), - [anon_sym_isize] = ACTIONS(944), - [anon_sym_usize] = ACTIONS(944), - [anon_sym_f32] = ACTIONS(944), - [anon_sym_f64] = ACTIONS(944), - [anon_sym_bool] = ACTIONS(944), - [anon_sym_str] = ACTIONS(944), - [anon_sym_char] = ACTIONS(944), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(946), - [anon_sym_default] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(950), - [anon_sym_fn] = ACTIONS(952), - [anon_sym_impl] = ACTIONS(954), - [anon_sym_let] = ACTIONS(956), - [anon_sym_mod] = ACTIONS(958), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_trait] = ACTIONS(964), - [anon_sym_type] = ACTIONS(966), - [anon_sym_union] = ACTIONS(968), - [anon_sym_unsafe] = ACTIONS(970), - [anon_sym_use] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(890), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(978), - [sym_super] = ACTIONS(978), - [sym_crate] = ACTIONS(980), - [sym_metavariable] = ACTIONS(982), + [ts_builtin_sym_end] = ACTIONS(1122), + [sym_identifier] = ACTIONS(1124), + [anon_sym_SEMI] = ACTIONS(1122), + [anon_sym_macro_rules_BANG] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(1122), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_RBRACE] = ACTIONS(1122), + [anon_sym_LBRACK] = ACTIONS(1122), + [anon_sym_STAR] = ACTIONS(1122), + [anon_sym_u8] = ACTIONS(1124), + [anon_sym_i8] = ACTIONS(1124), + [anon_sym_u16] = ACTIONS(1124), + [anon_sym_i16] = ACTIONS(1124), + [anon_sym_u32] = ACTIONS(1124), + [anon_sym_i32] = ACTIONS(1124), + [anon_sym_u64] = ACTIONS(1124), + [anon_sym_i64] = ACTIONS(1124), + [anon_sym_u128] = ACTIONS(1124), + [anon_sym_i128] = ACTIONS(1124), + [anon_sym_isize] = ACTIONS(1124), + [anon_sym_usize] = ACTIONS(1124), + [anon_sym_f32] = ACTIONS(1124), + [anon_sym_f64] = ACTIONS(1124), + [anon_sym_bool] = ACTIONS(1124), + [anon_sym_str] = ACTIONS(1124), + [anon_sym_char] = ACTIONS(1124), + [anon_sym_SQUOTE] = ACTIONS(1124), + [anon_sym_async] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1124), + [anon_sym_const] = ACTIONS(1124), + [anon_sym_continue] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1124), + [anon_sym_fn] = ACTIONS(1124), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1124), + [anon_sym_impl] = ACTIONS(1124), + [anon_sym_let] = ACTIONS(1124), + [anon_sym_loop] = ACTIONS(1124), + [anon_sym_match] = ACTIONS(1124), + [anon_sym_mod] = ACTIONS(1124), + [anon_sym_pub] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_struct] = ACTIONS(1124), + [anon_sym_trait] = ACTIONS(1124), + [anon_sym_type] = ACTIONS(1124), + [anon_sym_union] = ACTIONS(1124), + [anon_sym_unsafe] = ACTIONS(1124), + [anon_sym_use] = ACTIONS(1124), + [anon_sym_while] = ACTIONS(1124), + [anon_sym_POUND] = ACTIONS(1122), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_extern] = ACTIONS(1124), + [anon_sym_LT] = ACTIONS(1122), + [anon_sym_COLON_COLON] = ACTIONS(1122), + [anon_sym_AMP] = ACTIONS(1122), + [anon_sym_DOT_DOT] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1122), + [anon_sym_PIPE] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_move] = ACTIONS(1124), + [sym_integer_literal] = ACTIONS(1122), + [aux_sym_string_literal_token1] = ACTIONS(1122), + [sym_char_literal] = ACTIONS(1122), + [anon_sym_true] = ACTIONS(1124), + [anon_sym_false] = ACTIONS(1124), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1124), + [sym_super] = ACTIONS(1124), + [sym_crate] = ACTIONS(1124), + [sym_metavariable] = ACTIONS(1122), + [sym_raw_string_literal] = ACTIONS(1122), + [sym_float_literal] = ACTIONS(1122), [sym_block_comment] = ACTIONS(3), }, [266] = { - [ts_builtin_sym_end] = ACTIONS(1104), - [sym_identifier] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1104), - [anon_sym_macro_rules_BANG] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1104), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_RBRACE] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1104), - [anon_sym_u8] = ACTIONS(1106), - [anon_sym_i8] = ACTIONS(1106), - [anon_sym_u16] = ACTIONS(1106), - [anon_sym_i16] = ACTIONS(1106), - [anon_sym_u32] = ACTIONS(1106), - [anon_sym_i32] = ACTIONS(1106), - [anon_sym_u64] = ACTIONS(1106), - [anon_sym_i64] = ACTIONS(1106), - [anon_sym_u128] = ACTIONS(1106), - [anon_sym_i128] = ACTIONS(1106), - [anon_sym_isize] = ACTIONS(1106), - [anon_sym_usize] = ACTIONS(1106), - [anon_sym_f32] = ACTIONS(1106), - [anon_sym_f64] = ACTIONS(1106), - [anon_sym_bool] = ACTIONS(1106), - [anon_sym_str] = ACTIONS(1106), - [anon_sym_char] = ACTIONS(1106), - [anon_sym_SQUOTE] = ACTIONS(1106), - [anon_sym_async] = ACTIONS(1106), - [anon_sym_break] = ACTIONS(1106), - [anon_sym_const] = ACTIONS(1106), - [anon_sym_continue] = ACTIONS(1106), - [anon_sym_default] = ACTIONS(1106), - [anon_sym_enum] = ACTIONS(1106), - [anon_sym_fn] = ACTIONS(1106), - [anon_sym_for] = ACTIONS(1106), - [anon_sym_if] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1106), - [anon_sym_let] = ACTIONS(1106), - [anon_sym_loop] = ACTIONS(1106), - [anon_sym_match] = ACTIONS(1106), - [anon_sym_mod] = ACTIONS(1106), - [anon_sym_pub] = ACTIONS(1106), - [anon_sym_return] = ACTIONS(1106), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_struct] = ACTIONS(1106), - [anon_sym_trait] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1106), - [anon_sym_use] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1106), - [anon_sym_POUND] = ACTIONS(1104), - [anon_sym_BANG] = ACTIONS(1104), - [anon_sym_extern] = ACTIONS(1106), - [anon_sym_LT] = ACTIONS(1104), - [anon_sym_COLON_COLON] = ACTIONS(1104), - [anon_sym_AMP] = ACTIONS(1104), - [anon_sym_DOT_DOT] = ACTIONS(1104), - [anon_sym_DASH] = ACTIONS(1104), - [anon_sym_PIPE] = ACTIONS(1104), - [anon_sym_yield] = ACTIONS(1106), - [anon_sym_move] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1104), - [aux_sym_string_literal_token1] = ACTIONS(1104), - [sym_char_literal] = ACTIONS(1104), - [anon_sym_true] = ACTIONS(1106), - [anon_sym_false] = ACTIONS(1106), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1106), - [sym_super] = ACTIONS(1106), - [sym_crate] = ACTIONS(1106), - [sym_metavariable] = ACTIONS(1104), - [sym_raw_string_literal] = ACTIONS(1104), - [sym_float_literal] = ACTIONS(1104), + [ts_builtin_sym_end] = ACTIONS(1126), + [sym_identifier] = ACTIONS(1128), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_macro_rules_BANG] = ACTIONS(1126), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_RBRACE] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_STAR] = ACTIONS(1126), + [anon_sym_u8] = ACTIONS(1128), + [anon_sym_i8] = ACTIONS(1128), + [anon_sym_u16] = ACTIONS(1128), + [anon_sym_i16] = ACTIONS(1128), + [anon_sym_u32] = ACTIONS(1128), + [anon_sym_i32] = ACTIONS(1128), + [anon_sym_u64] = ACTIONS(1128), + [anon_sym_i64] = ACTIONS(1128), + [anon_sym_u128] = ACTIONS(1128), + [anon_sym_i128] = ACTIONS(1128), + [anon_sym_isize] = ACTIONS(1128), + [anon_sym_usize] = ACTIONS(1128), + [anon_sym_f32] = ACTIONS(1128), + [anon_sym_f64] = ACTIONS(1128), + [anon_sym_bool] = ACTIONS(1128), + [anon_sym_str] = ACTIONS(1128), + [anon_sym_char] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_const] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1128), + [anon_sym_default] = ACTIONS(1128), + [anon_sym_enum] = ACTIONS(1128), + [anon_sym_fn] = ACTIONS(1128), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1128), + [anon_sym_impl] = ACTIONS(1128), + [anon_sym_let] = ACTIONS(1128), + [anon_sym_loop] = ACTIONS(1128), + [anon_sym_match] = ACTIONS(1128), + [anon_sym_mod] = ACTIONS(1128), + [anon_sym_pub] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1128), + [anon_sym_static] = ACTIONS(1128), + [anon_sym_struct] = ACTIONS(1128), + [anon_sym_trait] = ACTIONS(1128), + [anon_sym_type] = ACTIONS(1128), + [anon_sym_union] = ACTIONS(1128), + [anon_sym_unsafe] = ACTIONS(1128), + [anon_sym_use] = ACTIONS(1128), + [anon_sym_while] = ACTIONS(1128), + [anon_sym_POUND] = ACTIONS(1126), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_extern] = ACTIONS(1128), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_COLON_COLON] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + [anon_sym_DOT_DOT] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_PIPE] = ACTIONS(1126), + [anon_sym_yield] = ACTIONS(1128), + [anon_sym_move] = ACTIONS(1128), + [sym_integer_literal] = ACTIONS(1126), + [aux_sym_string_literal_token1] = ACTIONS(1126), + [sym_char_literal] = ACTIONS(1126), + [anon_sym_true] = ACTIONS(1128), + [anon_sym_false] = ACTIONS(1128), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1128), + [sym_super] = ACTIONS(1128), + [sym_crate] = ACTIONS(1128), + [sym_metavariable] = ACTIONS(1126), + [sym_raw_string_literal] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1126), [sym_block_comment] = ACTIONS(3), }, [267] = { - [ts_builtin_sym_end] = ACTIONS(1108), - [sym_identifier] = ACTIONS(1110), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_macro_rules_BANG] = ACTIONS(1108), - [anon_sym_LPAREN] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_RBRACE] = ACTIONS(1108), - [anon_sym_LBRACK] = ACTIONS(1108), - [anon_sym_STAR] = ACTIONS(1108), - [anon_sym_u8] = ACTIONS(1110), - [anon_sym_i8] = ACTIONS(1110), - [anon_sym_u16] = ACTIONS(1110), - [anon_sym_i16] = ACTIONS(1110), - [anon_sym_u32] = ACTIONS(1110), - [anon_sym_i32] = ACTIONS(1110), - [anon_sym_u64] = ACTIONS(1110), - [anon_sym_i64] = ACTIONS(1110), - [anon_sym_u128] = ACTIONS(1110), - [anon_sym_i128] = ACTIONS(1110), - [anon_sym_isize] = ACTIONS(1110), - [anon_sym_usize] = ACTIONS(1110), - [anon_sym_f32] = ACTIONS(1110), - [anon_sym_f64] = ACTIONS(1110), - [anon_sym_bool] = ACTIONS(1110), - [anon_sym_str] = ACTIONS(1110), - [anon_sym_char] = ACTIONS(1110), - [anon_sym_SQUOTE] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_const] = ACTIONS(1110), - [anon_sym_continue] = ACTIONS(1110), - [anon_sym_default] = ACTIONS(1110), - [anon_sym_enum] = ACTIONS(1110), - [anon_sym_fn] = ACTIONS(1110), - [anon_sym_for] = ACTIONS(1110), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_impl] = ACTIONS(1110), - [anon_sym_let] = ACTIONS(1110), - [anon_sym_loop] = ACTIONS(1110), - [anon_sym_match] = ACTIONS(1110), - [anon_sym_mod] = ACTIONS(1110), - [anon_sym_pub] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1110), - [anon_sym_static] = ACTIONS(1110), - [anon_sym_struct] = ACTIONS(1110), - [anon_sym_trait] = ACTIONS(1110), - [anon_sym_type] = ACTIONS(1110), - [anon_sym_union] = ACTIONS(1110), - [anon_sym_unsafe] = ACTIONS(1110), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_while] = ACTIONS(1110), - [anon_sym_POUND] = ACTIONS(1108), - [anon_sym_BANG] = ACTIONS(1108), - [anon_sym_extern] = ACTIONS(1110), - [anon_sym_LT] = ACTIONS(1108), - [anon_sym_COLON_COLON] = ACTIONS(1108), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_DOT_DOT] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1108), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_move] = ACTIONS(1110), - [sym_integer_literal] = ACTIONS(1108), - [aux_sym_string_literal_token1] = ACTIONS(1108), - [sym_char_literal] = ACTIONS(1108), - [anon_sym_true] = ACTIONS(1110), - [anon_sym_false] = ACTIONS(1110), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1110), - [sym_super] = ACTIONS(1110), - [sym_crate] = ACTIONS(1110), - [sym_metavariable] = ACTIONS(1108), - [sym_raw_string_literal] = ACTIONS(1108), - [sym_float_literal] = ACTIONS(1108), + [ts_builtin_sym_end] = ACTIONS(1130), + [sym_identifier] = ACTIONS(1132), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym_macro_rules_BANG] = ACTIONS(1130), + [anon_sym_LPAREN] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(1130), + [anon_sym_RBRACE] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1130), + [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_SQUOTE] = ACTIONS(1132), + [anon_sym_async] = ACTIONS(1132), + [anon_sym_break] = ACTIONS(1132), + [anon_sym_const] = ACTIONS(1132), + [anon_sym_continue] = ACTIONS(1132), + [anon_sym_default] = ACTIONS(1132), + [anon_sym_enum] = ACTIONS(1132), + [anon_sym_fn] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1132), + [anon_sym_if] = ACTIONS(1132), + [anon_sym_impl] = ACTIONS(1132), + [anon_sym_let] = ACTIONS(1132), + [anon_sym_loop] = ACTIONS(1132), + [anon_sym_match] = ACTIONS(1132), + [anon_sym_mod] = ACTIONS(1132), + [anon_sym_pub] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1132), + [anon_sym_static] = ACTIONS(1132), + [anon_sym_struct] = ACTIONS(1132), + [anon_sym_trait] = ACTIONS(1132), + [anon_sym_type] = ACTIONS(1132), + [anon_sym_union] = ACTIONS(1132), + [anon_sym_unsafe] = ACTIONS(1132), + [anon_sym_use] = ACTIONS(1132), + [anon_sym_while] = ACTIONS(1132), + [anon_sym_POUND] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_COLON_COLON] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [anon_sym_DOT_DOT] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1130), + [anon_sym_yield] = ACTIONS(1132), + [anon_sym_move] = ACTIONS(1132), + [sym_integer_literal] = ACTIONS(1130), + [aux_sym_string_literal_token1] = ACTIONS(1130), + [sym_char_literal] = ACTIONS(1130), + [anon_sym_true] = ACTIONS(1132), + [anon_sym_false] = ACTIONS(1132), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1132), + [sym_super] = ACTIONS(1132), + [sym_crate] = ACTIONS(1132), + [sym_metavariable] = ACTIONS(1130), + [sym_raw_string_literal] = ACTIONS(1130), + [sym_float_literal] = ACTIONS(1130), [sym_block_comment] = ACTIONS(3), }, [268] = { - [ts_builtin_sym_end] = ACTIONS(1112), - [sym_identifier] = ACTIONS(1114), - [anon_sym_SEMI] = ACTIONS(1112), - [anon_sym_macro_rules_BANG] = ACTIONS(1112), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_LBRACE] = ACTIONS(1112), - [anon_sym_RBRACE] = ACTIONS(1112), - [anon_sym_LBRACK] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1112), - [anon_sym_u8] = ACTIONS(1114), - [anon_sym_i8] = ACTIONS(1114), - [anon_sym_u16] = ACTIONS(1114), - [anon_sym_i16] = ACTIONS(1114), - [anon_sym_u32] = ACTIONS(1114), - [anon_sym_i32] = ACTIONS(1114), - [anon_sym_u64] = ACTIONS(1114), - [anon_sym_i64] = ACTIONS(1114), - [anon_sym_u128] = ACTIONS(1114), - [anon_sym_i128] = ACTIONS(1114), - [anon_sym_isize] = ACTIONS(1114), - [anon_sym_usize] = ACTIONS(1114), - [anon_sym_f32] = ACTIONS(1114), - [anon_sym_f64] = ACTIONS(1114), - [anon_sym_bool] = ACTIONS(1114), - [anon_sym_str] = ACTIONS(1114), - [anon_sym_char] = ACTIONS(1114), - [anon_sym_SQUOTE] = ACTIONS(1114), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_break] = ACTIONS(1114), - [anon_sym_const] = ACTIONS(1114), - [anon_sym_continue] = ACTIONS(1114), - [anon_sym_default] = ACTIONS(1114), - [anon_sym_enum] = ACTIONS(1114), - [anon_sym_fn] = ACTIONS(1114), - [anon_sym_for] = ACTIONS(1114), - [anon_sym_if] = ACTIONS(1114), - [anon_sym_impl] = ACTIONS(1114), - [anon_sym_let] = ACTIONS(1114), - [anon_sym_loop] = ACTIONS(1114), - [anon_sym_match] = ACTIONS(1114), - [anon_sym_mod] = ACTIONS(1114), - [anon_sym_pub] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(1114), - [anon_sym_static] = ACTIONS(1114), - [anon_sym_struct] = ACTIONS(1114), - [anon_sym_trait] = ACTIONS(1114), - [anon_sym_type] = ACTIONS(1114), - [anon_sym_union] = ACTIONS(1114), - [anon_sym_unsafe] = ACTIONS(1114), - [anon_sym_use] = ACTIONS(1114), - [anon_sym_while] = ACTIONS(1114), - [anon_sym_POUND] = ACTIONS(1112), - [anon_sym_BANG] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1114), - [anon_sym_LT] = ACTIONS(1112), - [anon_sym_COLON_COLON] = ACTIONS(1112), - [anon_sym_AMP] = ACTIONS(1112), - [anon_sym_DOT_DOT] = ACTIONS(1112), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_PIPE] = ACTIONS(1112), - [anon_sym_yield] = ACTIONS(1114), - [anon_sym_move] = ACTIONS(1114), - [sym_integer_literal] = ACTIONS(1112), - [aux_sym_string_literal_token1] = ACTIONS(1112), - [sym_char_literal] = ACTIONS(1112), - [anon_sym_true] = ACTIONS(1114), - [anon_sym_false] = ACTIONS(1114), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1114), - [sym_super] = ACTIONS(1114), - [sym_crate] = ACTIONS(1114), - [sym_metavariable] = ACTIONS(1112), - [sym_raw_string_literal] = ACTIONS(1112), - [sym_float_literal] = ACTIONS(1112), + [ts_builtin_sym_end] = ACTIONS(1134), + [sym_identifier] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1134), + [anon_sym_macro_rules_BANG] = ACTIONS(1134), + [anon_sym_LPAREN] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(1134), + [anon_sym_RBRACE] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(1134), + [anon_sym_u8] = ACTIONS(1136), + [anon_sym_i8] = ACTIONS(1136), + [anon_sym_u16] = ACTIONS(1136), + [anon_sym_i16] = ACTIONS(1136), + [anon_sym_u32] = ACTIONS(1136), + [anon_sym_i32] = ACTIONS(1136), + [anon_sym_u64] = ACTIONS(1136), + [anon_sym_i64] = ACTIONS(1136), + [anon_sym_u128] = ACTIONS(1136), + [anon_sym_i128] = ACTIONS(1136), + [anon_sym_isize] = ACTIONS(1136), + [anon_sym_usize] = ACTIONS(1136), + [anon_sym_f32] = ACTIONS(1136), + [anon_sym_f64] = ACTIONS(1136), + [anon_sym_bool] = ACTIONS(1136), + [anon_sym_str] = ACTIONS(1136), + [anon_sym_char] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1136), + [anon_sym_async] = ACTIONS(1136), + [anon_sym_break] = ACTIONS(1136), + [anon_sym_const] = ACTIONS(1136), + [anon_sym_continue] = ACTIONS(1136), + [anon_sym_default] = ACTIONS(1136), + [anon_sym_enum] = ACTIONS(1136), + [anon_sym_fn] = ACTIONS(1136), + [anon_sym_for] = ACTIONS(1136), + [anon_sym_if] = ACTIONS(1136), + [anon_sym_impl] = ACTIONS(1136), + [anon_sym_let] = ACTIONS(1136), + [anon_sym_loop] = ACTIONS(1136), + [anon_sym_match] = ACTIONS(1136), + [anon_sym_mod] = ACTIONS(1136), + [anon_sym_pub] = ACTIONS(1136), + [anon_sym_return] = ACTIONS(1136), + [anon_sym_static] = ACTIONS(1136), + [anon_sym_struct] = ACTIONS(1136), + [anon_sym_trait] = ACTIONS(1136), + [anon_sym_type] = ACTIONS(1136), + [anon_sym_union] = ACTIONS(1136), + [anon_sym_unsafe] = ACTIONS(1136), + [anon_sym_use] = ACTIONS(1136), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_POUND] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1134), + [anon_sym_extern] = ACTIONS(1136), + [anon_sym_LT] = ACTIONS(1134), + [anon_sym_COLON_COLON] = ACTIONS(1134), + [anon_sym_AMP] = ACTIONS(1134), + [anon_sym_DOT_DOT] = ACTIONS(1134), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_PIPE] = ACTIONS(1134), + [anon_sym_yield] = ACTIONS(1136), + [anon_sym_move] = ACTIONS(1136), + [sym_integer_literal] = ACTIONS(1134), + [aux_sym_string_literal_token1] = ACTIONS(1134), + [sym_char_literal] = ACTIONS(1134), + [anon_sym_true] = ACTIONS(1136), + [anon_sym_false] = ACTIONS(1136), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1136), + [sym_super] = ACTIONS(1136), + [sym_crate] = ACTIONS(1136), + [sym_metavariable] = ACTIONS(1134), + [sym_raw_string_literal] = ACTIONS(1134), + [sym_float_literal] = ACTIONS(1134), [sym_block_comment] = ACTIONS(3), }, [269] = { - [ts_builtin_sym_end] = ACTIONS(1116), - [sym_identifier] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1116), - [anon_sym_macro_rules_BANG] = ACTIONS(1116), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_LBRACE] = ACTIONS(1116), - [anon_sym_RBRACE] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1116), - [anon_sym_u8] = ACTIONS(1118), - [anon_sym_i8] = ACTIONS(1118), - [anon_sym_u16] = ACTIONS(1118), - [anon_sym_i16] = ACTIONS(1118), - [anon_sym_u32] = ACTIONS(1118), - [anon_sym_i32] = ACTIONS(1118), - [anon_sym_u64] = ACTIONS(1118), - [anon_sym_i64] = ACTIONS(1118), - [anon_sym_u128] = ACTIONS(1118), - [anon_sym_i128] = ACTIONS(1118), - [anon_sym_isize] = ACTIONS(1118), - [anon_sym_usize] = ACTIONS(1118), - [anon_sym_f32] = ACTIONS(1118), - [anon_sym_f64] = ACTIONS(1118), - [anon_sym_bool] = ACTIONS(1118), - [anon_sym_str] = ACTIONS(1118), - [anon_sym_char] = ACTIONS(1118), - [anon_sym_SQUOTE] = ACTIONS(1118), - [anon_sym_async] = ACTIONS(1118), - [anon_sym_break] = ACTIONS(1118), - [anon_sym_const] = ACTIONS(1118), - [anon_sym_continue] = ACTIONS(1118), - [anon_sym_default] = ACTIONS(1118), - [anon_sym_enum] = ACTIONS(1118), - [anon_sym_fn] = ACTIONS(1118), - [anon_sym_for] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1118), - [anon_sym_impl] = ACTIONS(1118), - [anon_sym_let] = ACTIONS(1118), - [anon_sym_loop] = ACTIONS(1118), - [anon_sym_match] = ACTIONS(1118), - [anon_sym_mod] = ACTIONS(1118), - [anon_sym_pub] = ACTIONS(1118), - [anon_sym_return] = ACTIONS(1118), - [anon_sym_static] = ACTIONS(1118), - [anon_sym_struct] = ACTIONS(1118), - [anon_sym_trait] = ACTIONS(1118), - [anon_sym_type] = ACTIONS(1118), - [anon_sym_union] = ACTIONS(1118), - [anon_sym_unsafe] = ACTIONS(1118), - [anon_sym_use] = ACTIONS(1118), - [anon_sym_while] = ACTIONS(1118), - [anon_sym_POUND] = ACTIONS(1116), - [anon_sym_BANG] = ACTIONS(1116), - [anon_sym_extern] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1116), - [anon_sym_COLON_COLON] = ACTIONS(1116), - [anon_sym_AMP] = ACTIONS(1116), - [anon_sym_DOT_DOT] = ACTIONS(1116), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_PIPE] = ACTIONS(1116), - [anon_sym_yield] = ACTIONS(1118), - [anon_sym_move] = ACTIONS(1118), - [sym_integer_literal] = ACTIONS(1116), - [aux_sym_string_literal_token1] = ACTIONS(1116), - [sym_char_literal] = ACTIONS(1116), - [anon_sym_true] = ACTIONS(1118), - [anon_sym_false] = ACTIONS(1118), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1118), - [sym_super] = ACTIONS(1118), - [sym_crate] = ACTIONS(1118), - [sym_metavariable] = ACTIONS(1116), - [sym_raw_string_literal] = ACTIONS(1116), - [sym_float_literal] = ACTIONS(1116), + [ts_builtin_sym_end] = ACTIONS(1138), + [sym_identifier] = ACTIONS(1140), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_macro_rules_BANG] = ACTIONS(1138), + [anon_sym_LPAREN] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1138), + [anon_sym_RBRACE] = ACTIONS(1138), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_STAR] = ACTIONS(1138), + [anon_sym_u8] = ACTIONS(1140), + [anon_sym_i8] = ACTIONS(1140), + [anon_sym_u16] = ACTIONS(1140), + [anon_sym_i16] = ACTIONS(1140), + [anon_sym_u32] = ACTIONS(1140), + [anon_sym_i32] = ACTIONS(1140), + [anon_sym_u64] = ACTIONS(1140), + [anon_sym_i64] = ACTIONS(1140), + [anon_sym_u128] = ACTIONS(1140), + [anon_sym_i128] = ACTIONS(1140), + [anon_sym_isize] = ACTIONS(1140), + [anon_sym_usize] = ACTIONS(1140), + [anon_sym_f32] = ACTIONS(1140), + [anon_sym_f64] = ACTIONS(1140), + [anon_sym_bool] = ACTIONS(1140), + [anon_sym_str] = ACTIONS(1140), + [anon_sym_char] = ACTIONS(1140), + [anon_sym_SQUOTE] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(1140), + [anon_sym_break] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1140), + [anon_sym_continue] = ACTIONS(1140), + [anon_sym_default] = ACTIONS(1140), + [anon_sym_enum] = ACTIONS(1140), + [anon_sym_fn] = ACTIONS(1140), + [anon_sym_for] = ACTIONS(1140), + [anon_sym_if] = ACTIONS(1140), + [anon_sym_impl] = ACTIONS(1140), + [anon_sym_let] = ACTIONS(1140), + [anon_sym_loop] = ACTIONS(1140), + [anon_sym_match] = ACTIONS(1140), + [anon_sym_mod] = ACTIONS(1140), + [anon_sym_pub] = ACTIONS(1140), + [anon_sym_return] = ACTIONS(1140), + [anon_sym_static] = ACTIONS(1140), + [anon_sym_struct] = ACTIONS(1140), + [anon_sym_trait] = ACTIONS(1140), + [anon_sym_type] = ACTIONS(1140), + [anon_sym_union] = ACTIONS(1140), + [anon_sym_unsafe] = ACTIONS(1140), + [anon_sym_use] = ACTIONS(1140), + [anon_sym_while] = ACTIONS(1140), + [anon_sym_POUND] = ACTIONS(1138), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_extern] = ACTIONS(1140), + [anon_sym_LT] = ACTIONS(1138), + [anon_sym_COLON_COLON] = ACTIONS(1138), + [anon_sym_AMP] = ACTIONS(1138), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [anon_sym_DASH] = ACTIONS(1138), + [anon_sym_PIPE] = ACTIONS(1138), + [anon_sym_yield] = ACTIONS(1140), + [anon_sym_move] = ACTIONS(1140), + [sym_integer_literal] = ACTIONS(1138), + [aux_sym_string_literal_token1] = ACTIONS(1138), + [sym_char_literal] = ACTIONS(1138), + [anon_sym_true] = ACTIONS(1140), + [anon_sym_false] = ACTIONS(1140), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1140), + [sym_super] = ACTIONS(1140), + [sym_crate] = ACTIONS(1140), + [sym_metavariable] = ACTIONS(1138), + [sym_raw_string_literal] = ACTIONS(1138), + [sym_float_literal] = ACTIONS(1138), [sym_block_comment] = ACTIONS(3), }, [270] = { - [ts_builtin_sym_end] = ACTIONS(1120), - [sym_identifier] = ACTIONS(1122), - [anon_sym_SEMI] = ACTIONS(1120), - [anon_sym_macro_rules_BANG] = ACTIONS(1120), - [anon_sym_LPAREN] = ACTIONS(1120), - [anon_sym_LBRACE] = ACTIONS(1120), - [anon_sym_RBRACE] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_u8] = ACTIONS(1122), - [anon_sym_i8] = ACTIONS(1122), - [anon_sym_u16] = ACTIONS(1122), - [anon_sym_i16] = ACTIONS(1122), - [anon_sym_u32] = ACTIONS(1122), - [anon_sym_i32] = ACTIONS(1122), - [anon_sym_u64] = ACTIONS(1122), - [anon_sym_i64] = ACTIONS(1122), - [anon_sym_u128] = ACTIONS(1122), - [anon_sym_i128] = ACTIONS(1122), - [anon_sym_isize] = ACTIONS(1122), - [anon_sym_usize] = ACTIONS(1122), - [anon_sym_f32] = ACTIONS(1122), - [anon_sym_f64] = ACTIONS(1122), - [anon_sym_bool] = ACTIONS(1122), - [anon_sym_str] = ACTIONS(1122), - [anon_sym_char] = ACTIONS(1122), - [anon_sym_SQUOTE] = ACTIONS(1122), - [anon_sym_async] = ACTIONS(1122), - [anon_sym_break] = ACTIONS(1122), - [anon_sym_const] = ACTIONS(1122), - [anon_sym_continue] = ACTIONS(1122), - [anon_sym_default] = ACTIONS(1122), - [anon_sym_enum] = ACTIONS(1122), - [anon_sym_fn] = ACTIONS(1122), - [anon_sym_for] = ACTIONS(1122), - [anon_sym_if] = ACTIONS(1122), - [anon_sym_impl] = ACTIONS(1122), - [anon_sym_let] = ACTIONS(1122), - [anon_sym_loop] = ACTIONS(1122), - [anon_sym_match] = ACTIONS(1122), - [anon_sym_mod] = ACTIONS(1122), - [anon_sym_pub] = ACTIONS(1122), - [anon_sym_return] = ACTIONS(1122), - [anon_sym_static] = ACTIONS(1122), - [anon_sym_struct] = ACTIONS(1122), - [anon_sym_trait] = ACTIONS(1122), - [anon_sym_type] = ACTIONS(1122), - [anon_sym_union] = ACTIONS(1122), - [anon_sym_unsafe] = ACTIONS(1122), - [anon_sym_use] = ACTIONS(1122), - [anon_sym_while] = ACTIONS(1122), - [anon_sym_POUND] = ACTIONS(1120), - [anon_sym_BANG] = ACTIONS(1120), - [anon_sym_extern] = ACTIONS(1122), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_COLON_COLON] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1120), - [anon_sym_DOT_DOT] = ACTIONS(1120), - [anon_sym_DASH] = ACTIONS(1120), - [anon_sym_PIPE] = ACTIONS(1120), - [anon_sym_yield] = ACTIONS(1122), - [anon_sym_move] = ACTIONS(1122), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1120), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1122), - [anon_sym_false] = ACTIONS(1122), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1122), - [sym_super] = ACTIONS(1122), - [sym_crate] = ACTIONS(1122), - [sym_metavariable] = ACTIONS(1120), - [sym_raw_string_literal] = ACTIONS(1120), - [sym_float_literal] = ACTIONS(1120), + [ts_builtin_sym_end] = ACTIONS(1142), + [sym_identifier] = ACTIONS(1144), + [anon_sym_SEMI] = ACTIONS(1142), + [anon_sym_macro_rules_BANG] = ACTIONS(1142), + [anon_sym_LPAREN] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(1142), + [anon_sym_RBRACE] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1142), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_u8] = ACTIONS(1144), + [anon_sym_i8] = ACTIONS(1144), + [anon_sym_u16] = ACTIONS(1144), + [anon_sym_i16] = ACTIONS(1144), + [anon_sym_u32] = ACTIONS(1144), + [anon_sym_i32] = ACTIONS(1144), + [anon_sym_u64] = ACTIONS(1144), + [anon_sym_i64] = ACTIONS(1144), + [anon_sym_u128] = ACTIONS(1144), + [anon_sym_i128] = ACTIONS(1144), + [anon_sym_isize] = ACTIONS(1144), + [anon_sym_usize] = ACTIONS(1144), + [anon_sym_f32] = ACTIONS(1144), + [anon_sym_f64] = ACTIONS(1144), + [anon_sym_bool] = ACTIONS(1144), + [anon_sym_str] = ACTIONS(1144), + [anon_sym_char] = ACTIONS(1144), + [anon_sym_SQUOTE] = ACTIONS(1144), + [anon_sym_async] = ACTIONS(1144), + [anon_sym_break] = ACTIONS(1144), + [anon_sym_const] = ACTIONS(1144), + [anon_sym_continue] = ACTIONS(1144), + [anon_sym_default] = ACTIONS(1144), + [anon_sym_enum] = ACTIONS(1144), + [anon_sym_fn] = ACTIONS(1144), + [anon_sym_for] = ACTIONS(1144), + [anon_sym_if] = ACTIONS(1144), + [anon_sym_impl] = ACTIONS(1144), + [anon_sym_let] = ACTIONS(1144), + [anon_sym_loop] = ACTIONS(1144), + [anon_sym_match] = ACTIONS(1144), + [anon_sym_mod] = ACTIONS(1144), + [anon_sym_pub] = ACTIONS(1144), + [anon_sym_return] = ACTIONS(1144), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_struct] = ACTIONS(1144), + [anon_sym_trait] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_union] = ACTIONS(1144), + [anon_sym_unsafe] = ACTIONS(1144), + [anon_sym_use] = ACTIONS(1144), + [anon_sym_while] = ACTIONS(1144), + [anon_sym_POUND] = ACTIONS(1142), + [anon_sym_BANG] = ACTIONS(1142), + [anon_sym_extern] = ACTIONS(1144), + [anon_sym_LT] = ACTIONS(1142), + [anon_sym_COLON_COLON] = ACTIONS(1142), + [anon_sym_AMP] = ACTIONS(1142), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_PIPE] = ACTIONS(1142), + [anon_sym_yield] = ACTIONS(1144), + [anon_sym_move] = ACTIONS(1144), + [sym_integer_literal] = ACTIONS(1142), + [aux_sym_string_literal_token1] = ACTIONS(1142), + [sym_char_literal] = ACTIONS(1142), + [anon_sym_true] = ACTIONS(1144), + [anon_sym_false] = ACTIONS(1144), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1144), + [sym_super] = ACTIONS(1144), + [sym_crate] = ACTIONS(1144), + [sym_metavariable] = ACTIONS(1142), + [sym_raw_string_literal] = ACTIONS(1142), + [sym_float_literal] = ACTIONS(1142), [sym_block_comment] = ACTIONS(3), }, [271] = { - [ts_builtin_sym_end] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym_macro_rules_BANG] = ACTIONS(1124), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(1124), - [anon_sym_RBRACE] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(1124), - [anon_sym_STAR] = ACTIONS(1124), - [anon_sym_u8] = ACTIONS(1126), - [anon_sym_i8] = ACTIONS(1126), - [anon_sym_u16] = ACTIONS(1126), - [anon_sym_i16] = ACTIONS(1126), - [anon_sym_u32] = ACTIONS(1126), - [anon_sym_i32] = ACTIONS(1126), - [anon_sym_u64] = ACTIONS(1126), - [anon_sym_i64] = ACTIONS(1126), - [anon_sym_u128] = ACTIONS(1126), - [anon_sym_i128] = ACTIONS(1126), - [anon_sym_isize] = ACTIONS(1126), - [anon_sym_usize] = ACTIONS(1126), - [anon_sym_f32] = ACTIONS(1126), - [anon_sym_f64] = ACTIONS(1126), - [anon_sym_bool] = ACTIONS(1126), - [anon_sym_str] = ACTIONS(1126), - [anon_sym_char] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1126), - [anon_sym_async] = ACTIONS(1126), - [anon_sym_break] = ACTIONS(1126), - [anon_sym_const] = ACTIONS(1126), - [anon_sym_continue] = ACTIONS(1126), - [anon_sym_default] = ACTIONS(1126), - [anon_sym_enum] = ACTIONS(1126), - [anon_sym_fn] = ACTIONS(1126), - [anon_sym_for] = ACTIONS(1126), - [anon_sym_if] = ACTIONS(1126), - [anon_sym_impl] = ACTIONS(1126), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_loop] = ACTIONS(1126), - [anon_sym_match] = ACTIONS(1126), - [anon_sym_mod] = ACTIONS(1126), - [anon_sym_pub] = ACTIONS(1126), - [anon_sym_return] = ACTIONS(1126), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_struct] = ACTIONS(1126), - [anon_sym_trait] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_union] = ACTIONS(1126), - [anon_sym_unsafe] = ACTIONS(1126), - [anon_sym_use] = ACTIONS(1126), - [anon_sym_while] = ACTIONS(1126), - [anon_sym_POUND] = ACTIONS(1124), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_extern] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(1124), - [anon_sym_COLON_COLON] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1124), - [anon_sym_DOT_DOT] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1124), - [anon_sym_PIPE] = ACTIONS(1124), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_move] = ACTIONS(1126), - [sym_integer_literal] = ACTIONS(1124), - [aux_sym_string_literal_token1] = ACTIONS(1124), - [sym_char_literal] = ACTIONS(1124), - [anon_sym_true] = ACTIONS(1126), - [anon_sym_false] = ACTIONS(1126), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1126), - [sym_crate] = ACTIONS(1126), - [sym_metavariable] = ACTIONS(1124), - [sym_raw_string_literal] = ACTIONS(1124), - [sym_float_literal] = ACTIONS(1124), + [ts_builtin_sym_end] = ACTIONS(1146), + [sym_identifier] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1146), + [anon_sym_macro_rules_BANG] = ACTIONS(1146), + [anon_sym_LPAREN] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1146), + [anon_sym_RBRACE] = ACTIONS(1146), + [anon_sym_LBRACK] = ACTIONS(1146), + [anon_sym_STAR] = ACTIONS(1146), + [anon_sym_u8] = ACTIONS(1148), + [anon_sym_i8] = ACTIONS(1148), + [anon_sym_u16] = ACTIONS(1148), + [anon_sym_i16] = ACTIONS(1148), + [anon_sym_u32] = ACTIONS(1148), + [anon_sym_i32] = ACTIONS(1148), + [anon_sym_u64] = ACTIONS(1148), + [anon_sym_i64] = ACTIONS(1148), + [anon_sym_u128] = ACTIONS(1148), + [anon_sym_i128] = ACTIONS(1148), + [anon_sym_isize] = ACTIONS(1148), + [anon_sym_usize] = ACTIONS(1148), + [anon_sym_f32] = ACTIONS(1148), + [anon_sym_f64] = ACTIONS(1148), + [anon_sym_bool] = ACTIONS(1148), + [anon_sym_str] = ACTIONS(1148), + [anon_sym_char] = ACTIONS(1148), + [anon_sym_SQUOTE] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1148), + [anon_sym_break] = ACTIONS(1148), + [anon_sym_const] = ACTIONS(1148), + [anon_sym_continue] = ACTIONS(1148), + [anon_sym_default] = ACTIONS(1148), + [anon_sym_enum] = ACTIONS(1148), + [anon_sym_fn] = ACTIONS(1148), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_if] = ACTIONS(1148), + [anon_sym_impl] = ACTIONS(1148), + [anon_sym_let] = ACTIONS(1148), + [anon_sym_loop] = ACTIONS(1148), + [anon_sym_match] = ACTIONS(1148), + [anon_sym_mod] = ACTIONS(1148), + [anon_sym_pub] = ACTIONS(1148), + [anon_sym_return] = ACTIONS(1148), + [anon_sym_static] = ACTIONS(1148), + [anon_sym_struct] = ACTIONS(1148), + [anon_sym_trait] = ACTIONS(1148), + [anon_sym_type] = ACTIONS(1148), + [anon_sym_union] = ACTIONS(1148), + [anon_sym_unsafe] = ACTIONS(1148), + [anon_sym_use] = ACTIONS(1148), + [anon_sym_while] = ACTIONS(1148), + [anon_sym_POUND] = ACTIONS(1146), + [anon_sym_BANG] = ACTIONS(1146), + [anon_sym_extern] = ACTIONS(1148), + [anon_sym_LT] = ACTIONS(1146), + [anon_sym_COLON_COLON] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_DOT_DOT] = ACTIONS(1146), + [anon_sym_DASH] = ACTIONS(1146), + [anon_sym_PIPE] = ACTIONS(1146), + [anon_sym_yield] = ACTIONS(1148), + [anon_sym_move] = ACTIONS(1148), + [sym_integer_literal] = ACTIONS(1146), + [aux_sym_string_literal_token1] = ACTIONS(1146), + [sym_char_literal] = ACTIONS(1146), + [anon_sym_true] = ACTIONS(1148), + [anon_sym_false] = ACTIONS(1148), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1148), + [sym_super] = ACTIONS(1148), + [sym_crate] = ACTIONS(1148), + [sym_metavariable] = ACTIONS(1146), + [sym_raw_string_literal] = ACTIONS(1146), + [sym_float_literal] = ACTIONS(1146), [sym_block_comment] = ACTIONS(3), }, [272] = { - [ts_builtin_sym_end] = ACTIONS(1128), - [sym_identifier] = ACTIONS(1130), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_macro_rules_BANG] = ACTIONS(1128), - [anon_sym_LPAREN] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1128), - [anon_sym_RBRACE] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1128), - [anon_sym_STAR] = ACTIONS(1128), - [anon_sym_u8] = ACTIONS(1130), - [anon_sym_i8] = ACTIONS(1130), - [anon_sym_u16] = ACTIONS(1130), - [anon_sym_i16] = ACTIONS(1130), - [anon_sym_u32] = ACTIONS(1130), - [anon_sym_i32] = ACTIONS(1130), - [anon_sym_u64] = ACTIONS(1130), - [anon_sym_i64] = ACTIONS(1130), - [anon_sym_u128] = ACTIONS(1130), - [anon_sym_i128] = ACTIONS(1130), - [anon_sym_isize] = ACTIONS(1130), - [anon_sym_usize] = ACTIONS(1130), - [anon_sym_f32] = ACTIONS(1130), - [anon_sym_f64] = ACTIONS(1130), - [anon_sym_bool] = ACTIONS(1130), - [anon_sym_str] = ACTIONS(1130), - [anon_sym_char] = ACTIONS(1130), - [anon_sym_SQUOTE] = ACTIONS(1130), - [anon_sym_async] = ACTIONS(1130), - [anon_sym_break] = ACTIONS(1130), - [anon_sym_const] = ACTIONS(1130), - [anon_sym_continue] = ACTIONS(1130), - [anon_sym_default] = ACTIONS(1130), - [anon_sym_enum] = ACTIONS(1130), - [anon_sym_fn] = ACTIONS(1130), - [anon_sym_for] = ACTIONS(1130), - [anon_sym_if] = ACTIONS(1130), - [anon_sym_impl] = ACTIONS(1130), - [anon_sym_let] = ACTIONS(1130), - [anon_sym_loop] = ACTIONS(1130), - [anon_sym_match] = ACTIONS(1130), - [anon_sym_mod] = ACTIONS(1130), - [anon_sym_pub] = ACTIONS(1130), - [anon_sym_return] = ACTIONS(1130), - [anon_sym_static] = ACTIONS(1130), - [anon_sym_struct] = ACTIONS(1130), - [anon_sym_trait] = ACTIONS(1130), - [anon_sym_type] = ACTIONS(1130), - [anon_sym_union] = ACTIONS(1130), - [anon_sym_unsafe] = ACTIONS(1130), - [anon_sym_use] = ACTIONS(1130), - [anon_sym_while] = ACTIONS(1130), - [anon_sym_POUND] = ACTIONS(1128), - [anon_sym_BANG] = ACTIONS(1128), - [anon_sym_extern] = ACTIONS(1130), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_COLON_COLON] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_DOT_DOT] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_yield] = ACTIONS(1130), - [anon_sym_move] = ACTIONS(1130), - [sym_integer_literal] = ACTIONS(1128), - [aux_sym_string_literal_token1] = ACTIONS(1128), - [sym_char_literal] = ACTIONS(1128), - [anon_sym_true] = ACTIONS(1130), - [anon_sym_false] = ACTIONS(1130), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1130), - [sym_super] = ACTIONS(1130), - [sym_crate] = ACTIONS(1130), - [sym_metavariable] = ACTIONS(1128), - [sym_raw_string_literal] = ACTIONS(1128), - [sym_float_literal] = ACTIONS(1128), + [ts_builtin_sym_end] = ACTIONS(1150), + [sym_identifier] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1150), + [anon_sym_macro_rules_BANG] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_RBRACE] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(1150), + [anon_sym_STAR] = ACTIONS(1150), + [anon_sym_u8] = ACTIONS(1152), + [anon_sym_i8] = ACTIONS(1152), + [anon_sym_u16] = ACTIONS(1152), + [anon_sym_i16] = ACTIONS(1152), + [anon_sym_u32] = ACTIONS(1152), + [anon_sym_i32] = ACTIONS(1152), + [anon_sym_u64] = ACTIONS(1152), + [anon_sym_i64] = ACTIONS(1152), + [anon_sym_u128] = ACTIONS(1152), + [anon_sym_i128] = ACTIONS(1152), + [anon_sym_isize] = ACTIONS(1152), + [anon_sym_usize] = ACTIONS(1152), + [anon_sym_f32] = ACTIONS(1152), + [anon_sym_f64] = ACTIONS(1152), + [anon_sym_bool] = ACTIONS(1152), + [anon_sym_str] = ACTIONS(1152), + [anon_sym_char] = ACTIONS(1152), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_async] = ACTIONS(1152), + [anon_sym_break] = ACTIONS(1152), + [anon_sym_const] = ACTIONS(1152), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_default] = ACTIONS(1152), + [anon_sym_enum] = ACTIONS(1152), + [anon_sym_fn] = ACTIONS(1152), + [anon_sym_for] = ACTIONS(1152), + [anon_sym_if] = ACTIONS(1152), + [anon_sym_impl] = ACTIONS(1152), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_loop] = ACTIONS(1152), + [anon_sym_match] = ACTIONS(1152), + [anon_sym_mod] = ACTIONS(1152), + [anon_sym_pub] = ACTIONS(1152), + [anon_sym_return] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_struct] = ACTIONS(1152), + [anon_sym_trait] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_union] = ACTIONS(1152), + [anon_sym_unsafe] = ACTIONS(1152), + [anon_sym_use] = ACTIONS(1152), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_POUND] = ACTIONS(1150), + [anon_sym_BANG] = ACTIONS(1150), + [anon_sym_extern] = ACTIONS(1152), + [anon_sym_LT] = ACTIONS(1150), + [anon_sym_COLON_COLON] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_DOT_DOT] = ACTIONS(1150), + [anon_sym_DASH] = ACTIONS(1150), + [anon_sym_PIPE] = ACTIONS(1150), + [anon_sym_yield] = ACTIONS(1152), + [anon_sym_move] = ACTIONS(1152), + [sym_integer_literal] = ACTIONS(1150), + [aux_sym_string_literal_token1] = ACTIONS(1150), + [sym_char_literal] = ACTIONS(1150), + [anon_sym_true] = ACTIONS(1152), + [anon_sym_false] = ACTIONS(1152), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1152), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1150), + [sym_raw_string_literal] = ACTIONS(1150), + [sym_float_literal] = ACTIONS(1150), [sym_block_comment] = ACTIONS(3), }, [273] = { - [ts_builtin_sym_end] = ACTIONS(1132), - [sym_identifier] = ACTIONS(1134), - [anon_sym_SEMI] = ACTIONS(1132), - [anon_sym_macro_rules_BANG] = ACTIONS(1132), - [anon_sym_LPAREN] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(1132), - [anon_sym_RBRACE] = ACTIONS(1132), - [anon_sym_LBRACK] = ACTIONS(1132), - [anon_sym_STAR] = ACTIONS(1132), - [anon_sym_u8] = ACTIONS(1134), - [anon_sym_i8] = ACTIONS(1134), - [anon_sym_u16] = ACTIONS(1134), - [anon_sym_i16] = ACTIONS(1134), - [anon_sym_u32] = ACTIONS(1134), - [anon_sym_i32] = ACTIONS(1134), - [anon_sym_u64] = ACTIONS(1134), - [anon_sym_i64] = ACTIONS(1134), - [anon_sym_u128] = ACTIONS(1134), - [anon_sym_i128] = ACTIONS(1134), - [anon_sym_isize] = ACTIONS(1134), - [anon_sym_usize] = ACTIONS(1134), - [anon_sym_f32] = ACTIONS(1134), - [anon_sym_f64] = ACTIONS(1134), - [anon_sym_bool] = ACTIONS(1134), - [anon_sym_str] = ACTIONS(1134), - [anon_sym_char] = ACTIONS(1134), - [anon_sym_SQUOTE] = ACTIONS(1134), - [anon_sym_async] = ACTIONS(1134), - [anon_sym_break] = ACTIONS(1134), - [anon_sym_const] = ACTIONS(1134), - [anon_sym_continue] = ACTIONS(1134), - [anon_sym_default] = ACTIONS(1134), - [anon_sym_enum] = ACTIONS(1134), - [anon_sym_fn] = ACTIONS(1134), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_if] = ACTIONS(1134), - [anon_sym_impl] = ACTIONS(1134), - [anon_sym_let] = ACTIONS(1134), - [anon_sym_loop] = ACTIONS(1134), - [anon_sym_match] = ACTIONS(1134), - [anon_sym_mod] = ACTIONS(1134), - [anon_sym_pub] = ACTIONS(1134), - [anon_sym_return] = ACTIONS(1134), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_struct] = ACTIONS(1134), - [anon_sym_trait] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_union] = ACTIONS(1134), - [anon_sym_unsafe] = ACTIONS(1134), - [anon_sym_use] = ACTIONS(1134), - [anon_sym_while] = ACTIONS(1134), - [anon_sym_POUND] = ACTIONS(1132), - [anon_sym_BANG] = ACTIONS(1132), - [anon_sym_extern] = ACTIONS(1134), - [anon_sym_LT] = ACTIONS(1132), - [anon_sym_COLON_COLON] = ACTIONS(1132), - [anon_sym_AMP] = ACTIONS(1132), - [anon_sym_DOT_DOT] = ACTIONS(1132), - [anon_sym_DASH] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1132), - [anon_sym_yield] = ACTIONS(1134), - [anon_sym_move] = ACTIONS(1134), - [sym_integer_literal] = ACTIONS(1132), - [aux_sym_string_literal_token1] = ACTIONS(1132), - [sym_char_literal] = ACTIONS(1132), - [anon_sym_true] = ACTIONS(1134), - [anon_sym_false] = ACTIONS(1134), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1134), - [sym_super] = ACTIONS(1134), - [sym_crate] = ACTIONS(1134), - [sym_metavariable] = ACTIONS(1132), - [sym_raw_string_literal] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1132), + [ts_builtin_sym_end] = ACTIONS(1154), + [sym_identifier] = ACTIONS(1156), + [anon_sym_SEMI] = ACTIONS(1154), + [anon_sym_macro_rules_BANG] = ACTIONS(1154), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1154), + [anon_sym_RBRACE] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1154), + [anon_sym_u8] = ACTIONS(1156), + [anon_sym_i8] = ACTIONS(1156), + [anon_sym_u16] = ACTIONS(1156), + [anon_sym_i16] = ACTIONS(1156), + [anon_sym_u32] = ACTIONS(1156), + [anon_sym_i32] = ACTIONS(1156), + [anon_sym_u64] = ACTIONS(1156), + [anon_sym_i64] = ACTIONS(1156), + [anon_sym_u128] = ACTIONS(1156), + [anon_sym_i128] = ACTIONS(1156), + [anon_sym_isize] = ACTIONS(1156), + [anon_sym_usize] = ACTIONS(1156), + [anon_sym_f32] = ACTIONS(1156), + [anon_sym_f64] = ACTIONS(1156), + [anon_sym_bool] = ACTIONS(1156), + [anon_sym_str] = ACTIONS(1156), + [anon_sym_char] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(1156), + [anon_sym_async] = ACTIONS(1156), + [anon_sym_break] = ACTIONS(1156), + [anon_sym_const] = ACTIONS(1156), + [anon_sym_continue] = ACTIONS(1156), + [anon_sym_default] = ACTIONS(1156), + [anon_sym_enum] = ACTIONS(1156), + [anon_sym_fn] = ACTIONS(1156), + [anon_sym_for] = ACTIONS(1156), + [anon_sym_if] = ACTIONS(1156), + [anon_sym_impl] = ACTIONS(1156), + [anon_sym_let] = ACTIONS(1156), + [anon_sym_loop] = ACTIONS(1156), + [anon_sym_match] = ACTIONS(1156), + [anon_sym_mod] = ACTIONS(1156), + [anon_sym_pub] = ACTIONS(1156), + [anon_sym_return] = ACTIONS(1156), + [anon_sym_static] = ACTIONS(1156), + [anon_sym_struct] = ACTIONS(1156), + [anon_sym_trait] = ACTIONS(1156), + [anon_sym_type] = ACTIONS(1156), + [anon_sym_union] = ACTIONS(1156), + [anon_sym_unsafe] = ACTIONS(1156), + [anon_sym_use] = ACTIONS(1156), + [anon_sym_while] = ACTIONS(1156), + [anon_sym_POUND] = ACTIONS(1154), + [anon_sym_BANG] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1156), + [anon_sym_LT] = ACTIONS(1154), + [anon_sym_COLON_COLON] = ACTIONS(1154), + [anon_sym_AMP] = ACTIONS(1154), + [anon_sym_DOT_DOT] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_move] = ACTIONS(1156), + [sym_integer_literal] = ACTIONS(1154), + [aux_sym_string_literal_token1] = ACTIONS(1154), + [sym_char_literal] = ACTIONS(1154), + [anon_sym_true] = ACTIONS(1156), + [anon_sym_false] = ACTIONS(1156), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1156), + [sym_super] = ACTIONS(1156), + [sym_crate] = ACTIONS(1156), + [sym_metavariable] = ACTIONS(1154), + [sym_raw_string_literal] = ACTIONS(1154), + [sym_float_literal] = ACTIONS(1154), [sym_block_comment] = ACTIONS(3), }, [274] = { - [ts_builtin_sym_end] = ACTIONS(1136), - [sym_identifier] = ACTIONS(1138), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym_macro_rules_BANG] = ACTIONS(1136), - [anon_sym_LPAREN] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1136), - [anon_sym_RBRACE] = ACTIONS(1136), - [anon_sym_LBRACK] = ACTIONS(1136), - [anon_sym_STAR] = ACTIONS(1136), - [anon_sym_u8] = ACTIONS(1138), - [anon_sym_i8] = ACTIONS(1138), - [anon_sym_u16] = ACTIONS(1138), - [anon_sym_i16] = ACTIONS(1138), - [anon_sym_u32] = ACTIONS(1138), - [anon_sym_i32] = ACTIONS(1138), - [anon_sym_u64] = ACTIONS(1138), - [anon_sym_i64] = ACTIONS(1138), - [anon_sym_u128] = ACTIONS(1138), - [anon_sym_i128] = ACTIONS(1138), - [anon_sym_isize] = ACTIONS(1138), - [anon_sym_usize] = ACTIONS(1138), - [anon_sym_f32] = ACTIONS(1138), - [anon_sym_f64] = ACTIONS(1138), - [anon_sym_bool] = ACTIONS(1138), - [anon_sym_str] = ACTIONS(1138), - [anon_sym_char] = ACTIONS(1138), - [anon_sym_SQUOTE] = ACTIONS(1138), - [anon_sym_async] = ACTIONS(1138), - [anon_sym_break] = ACTIONS(1138), - [anon_sym_const] = ACTIONS(1138), - [anon_sym_continue] = ACTIONS(1138), - [anon_sym_default] = ACTIONS(1138), - [anon_sym_enum] = ACTIONS(1138), - [anon_sym_fn] = ACTIONS(1138), - [anon_sym_for] = ACTIONS(1138), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_impl] = ACTIONS(1138), - [anon_sym_let] = ACTIONS(1138), - [anon_sym_loop] = ACTIONS(1138), - [anon_sym_match] = ACTIONS(1138), - [anon_sym_mod] = ACTIONS(1138), - [anon_sym_pub] = ACTIONS(1138), - [anon_sym_return] = ACTIONS(1138), - [anon_sym_static] = ACTIONS(1138), - [anon_sym_struct] = ACTIONS(1138), - [anon_sym_trait] = ACTIONS(1138), - [anon_sym_type] = ACTIONS(1138), - [anon_sym_union] = ACTIONS(1138), - [anon_sym_unsafe] = ACTIONS(1138), - [anon_sym_use] = ACTIONS(1138), - [anon_sym_while] = ACTIONS(1138), - [anon_sym_POUND] = ACTIONS(1136), - [anon_sym_BANG] = ACTIONS(1136), - [anon_sym_extern] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1136), - [anon_sym_COLON_COLON] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1136), - [anon_sym_DOT_DOT] = ACTIONS(1136), - [anon_sym_DASH] = ACTIONS(1136), - [anon_sym_PIPE] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_move] = ACTIONS(1138), - [sym_integer_literal] = ACTIONS(1136), - [aux_sym_string_literal_token1] = ACTIONS(1136), - [sym_char_literal] = ACTIONS(1136), - [anon_sym_true] = ACTIONS(1138), - [anon_sym_false] = ACTIONS(1138), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1138), - [sym_super] = ACTIONS(1138), - [sym_crate] = ACTIONS(1138), - [sym_metavariable] = ACTIONS(1136), - [sym_raw_string_literal] = ACTIONS(1136), - [sym_float_literal] = ACTIONS(1136), + [ts_builtin_sym_end] = ACTIONS(1158), + [sym_identifier] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(1158), + [anon_sym_macro_rules_BANG] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(1158), + [anon_sym_LBRACE] = ACTIONS(1158), + [anon_sym_RBRACE] = ACTIONS(1158), + [anon_sym_LBRACK] = ACTIONS(1158), + [anon_sym_STAR] = ACTIONS(1158), + [anon_sym_u8] = ACTIONS(1160), + [anon_sym_i8] = ACTIONS(1160), + [anon_sym_u16] = ACTIONS(1160), + [anon_sym_i16] = ACTIONS(1160), + [anon_sym_u32] = ACTIONS(1160), + [anon_sym_i32] = ACTIONS(1160), + [anon_sym_u64] = ACTIONS(1160), + [anon_sym_i64] = ACTIONS(1160), + [anon_sym_u128] = ACTIONS(1160), + [anon_sym_i128] = ACTIONS(1160), + [anon_sym_isize] = ACTIONS(1160), + [anon_sym_usize] = ACTIONS(1160), + [anon_sym_f32] = ACTIONS(1160), + [anon_sym_f64] = ACTIONS(1160), + [anon_sym_bool] = ACTIONS(1160), + [anon_sym_str] = ACTIONS(1160), + [anon_sym_char] = ACTIONS(1160), + [anon_sym_SQUOTE] = ACTIONS(1160), + [anon_sym_async] = ACTIONS(1160), + [anon_sym_break] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1160), + [anon_sym_continue] = ACTIONS(1160), + [anon_sym_default] = ACTIONS(1160), + [anon_sym_enum] = ACTIONS(1160), + [anon_sym_fn] = ACTIONS(1160), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_if] = ACTIONS(1160), + [anon_sym_impl] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_loop] = ACTIONS(1160), + [anon_sym_match] = ACTIONS(1160), + [anon_sym_mod] = ACTIONS(1160), + [anon_sym_pub] = ACTIONS(1160), + [anon_sym_return] = ACTIONS(1160), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_struct] = ACTIONS(1160), + [anon_sym_trait] = ACTIONS(1160), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_union] = ACTIONS(1160), + [anon_sym_unsafe] = ACTIONS(1160), + [anon_sym_use] = ACTIONS(1160), + [anon_sym_while] = ACTIONS(1160), + [anon_sym_POUND] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1158), + [anon_sym_COLON_COLON] = ACTIONS(1158), + [anon_sym_AMP] = ACTIONS(1158), + [anon_sym_DOT_DOT] = ACTIONS(1158), + [anon_sym_DASH] = ACTIONS(1158), + [anon_sym_PIPE] = ACTIONS(1158), + [anon_sym_yield] = ACTIONS(1160), + [anon_sym_move] = ACTIONS(1160), + [sym_integer_literal] = ACTIONS(1158), + [aux_sym_string_literal_token1] = ACTIONS(1158), + [sym_char_literal] = ACTIONS(1158), + [anon_sym_true] = ACTIONS(1160), + [anon_sym_false] = ACTIONS(1160), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1160), + [sym_super] = ACTIONS(1160), + [sym_crate] = ACTIONS(1160), + [sym_metavariable] = ACTIONS(1158), + [sym_raw_string_literal] = ACTIONS(1158), + [sym_float_literal] = ACTIONS(1158), [sym_block_comment] = ACTIONS(3), }, [275] = { - [ts_builtin_sym_end] = ACTIONS(1140), - [sym_identifier] = ACTIONS(1142), - [anon_sym_SEMI] = ACTIONS(1140), - [anon_sym_macro_rules_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_RBRACE] = ACTIONS(1140), - [anon_sym_LBRACK] = ACTIONS(1140), - [anon_sym_STAR] = ACTIONS(1140), - [anon_sym_u8] = ACTIONS(1142), - [anon_sym_i8] = ACTIONS(1142), - [anon_sym_u16] = ACTIONS(1142), - [anon_sym_i16] = ACTIONS(1142), - [anon_sym_u32] = ACTIONS(1142), - [anon_sym_i32] = ACTIONS(1142), - [anon_sym_u64] = ACTIONS(1142), - [anon_sym_i64] = ACTIONS(1142), - [anon_sym_u128] = ACTIONS(1142), - [anon_sym_i128] = ACTIONS(1142), - [anon_sym_isize] = ACTIONS(1142), - [anon_sym_usize] = ACTIONS(1142), - [anon_sym_f32] = ACTIONS(1142), - [anon_sym_f64] = ACTIONS(1142), - [anon_sym_bool] = ACTIONS(1142), - [anon_sym_str] = ACTIONS(1142), - [anon_sym_char] = ACTIONS(1142), - [anon_sym_SQUOTE] = ACTIONS(1142), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_break] = ACTIONS(1142), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_continue] = ACTIONS(1142), - [anon_sym_default] = ACTIONS(1142), - [anon_sym_enum] = ACTIONS(1142), - [anon_sym_fn] = ACTIONS(1142), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_if] = ACTIONS(1142), - [anon_sym_impl] = ACTIONS(1142), - [anon_sym_let] = ACTIONS(1142), - [anon_sym_loop] = ACTIONS(1142), - [anon_sym_match] = ACTIONS(1142), - [anon_sym_mod] = ACTIONS(1142), - [anon_sym_pub] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(1142), - [anon_sym_static] = ACTIONS(1142), - [anon_sym_struct] = ACTIONS(1142), - [anon_sym_trait] = ACTIONS(1142), - [anon_sym_type] = ACTIONS(1142), - [anon_sym_union] = ACTIONS(1142), - [anon_sym_unsafe] = ACTIONS(1142), - [anon_sym_use] = ACTIONS(1142), - [anon_sym_while] = ACTIONS(1142), - [anon_sym_POUND] = ACTIONS(1140), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_extern] = ACTIONS(1142), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_COLON_COLON] = ACTIONS(1140), - [anon_sym_AMP] = ACTIONS(1140), - [anon_sym_DOT_DOT] = ACTIONS(1140), - [anon_sym_DASH] = ACTIONS(1140), - [anon_sym_PIPE] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1142), - [anon_sym_move] = ACTIONS(1142), - [sym_integer_literal] = ACTIONS(1140), - [aux_sym_string_literal_token1] = ACTIONS(1140), - [sym_char_literal] = ACTIONS(1140), - [anon_sym_true] = ACTIONS(1142), - [anon_sym_false] = ACTIONS(1142), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1142), - [sym_super] = ACTIONS(1142), - [sym_crate] = ACTIONS(1142), - [sym_metavariable] = ACTIONS(1140), - [sym_raw_string_literal] = ACTIONS(1140), - [sym_float_literal] = ACTIONS(1140), + [ts_builtin_sym_end] = ACTIONS(1162), + [sym_identifier] = ACTIONS(1164), + [anon_sym_SEMI] = ACTIONS(1162), + [anon_sym_macro_rules_BANG] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_RBRACE] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1162), + [anon_sym_STAR] = ACTIONS(1162), + [anon_sym_u8] = ACTIONS(1164), + [anon_sym_i8] = ACTIONS(1164), + [anon_sym_u16] = ACTIONS(1164), + [anon_sym_i16] = ACTIONS(1164), + [anon_sym_u32] = ACTIONS(1164), + [anon_sym_i32] = ACTIONS(1164), + [anon_sym_u64] = ACTIONS(1164), + [anon_sym_i64] = ACTIONS(1164), + [anon_sym_u128] = ACTIONS(1164), + [anon_sym_i128] = ACTIONS(1164), + [anon_sym_isize] = ACTIONS(1164), + [anon_sym_usize] = ACTIONS(1164), + [anon_sym_f32] = ACTIONS(1164), + [anon_sym_f64] = ACTIONS(1164), + [anon_sym_bool] = ACTIONS(1164), + [anon_sym_str] = ACTIONS(1164), + [anon_sym_char] = ACTIONS(1164), + [anon_sym_SQUOTE] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_break] = ACTIONS(1164), + [anon_sym_const] = ACTIONS(1164), + [anon_sym_continue] = ACTIONS(1164), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_enum] = ACTIONS(1164), + [anon_sym_fn] = ACTIONS(1164), + [anon_sym_for] = ACTIONS(1164), + [anon_sym_if] = ACTIONS(1164), + [anon_sym_impl] = ACTIONS(1164), + [anon_sym_let] = ACTIONS(1164), + [anon_sym_loop] = ACTIONS(1164), + [anon_sym_match] = ACTIONS(1164), + [anon_sym_mod] = ACTIONS(1164), + [anon_sym_pub] = ACTIONS(1164), + [anon_sym_return] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(1164), + [anon_sym_struct] = ACTIONS(1164), + [anon_sym_trait] = ACTIONS(1164), + [anon_sym_type] = ACTIONS(1164), + [anon_sym_union] = ACTIONS(1164), + [anon_sym_unsafe] = ACTIONS(1164), + [anon_sym_use] = ACTIONS(1164), + [anon_sym_while] = ACTIONS(1164), + [anon_sym_POUND] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1162), + [anon_sym_extern] = ACTIONS(1164), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_COLON_COLON] = ACTIONS(1162), + [anon_sym_AMP] = ACTIONS(1162), + [anon_sym_DOT_DOT] = ACTIONS(1162), + [anon_sym_DASH] = ACTIONS(1162), + [anon_sym_PIPE] = ACTIONS(1162), + [anon_sym_yield] = ACTIONS(1164), + [anon_sym_move] = ACTIONS(1164), + [sym_integer_literal] = ACTIONS(1162), + [aux_sym_string_literal_token1] = ACTIONS(1162), + [sym_char_literal] = ACTIONS(1162), + [anon_sym_true] = ACTIONS(1164), + [anon_sym_false] = ACTIONS(1164), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1164), + [sym_super] = ACTIONS(1164), + [sym_crate] = ACTIONS(1164), + [sym_metavariable] = ACTIONS(1162), + [sym_raw_string_literal] = ACTIONS(1162), + [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, [276] = { - [ts_builtin_sym_end] = ACTIONS(1144), - [sym_identifier] = ACTIONS(1146), - [anon_sym_SEMI] = ACTIONS(1144), - [anon_sym_macro_rules_BANG] = ACTIONS(1144), - [anon_sym_LPAREN] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_RBRACE] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1144), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_u8] = ACTIONS(1146), - [anon_sym_i8] = ACTIONS(1146), - [anon_sym_u16] = ACTIONS(1146), - [anon_sym_i16] = ACTIONS(1146), - [anon_sym_u32] = ACTIONS(1146), - [anon_sym_i32] = ACTIONS(1146), - [anon_sym_u64] = ACTIONS(1146), - [anon_sym_i64] = ACTIONS(1146), - [anon_sym_u128] = ACTIONS(1146), - [anon_sym_i128] = ACTIONS(1146), - [anon_sym_isize] = ACTIONS(1146), - [anon_sym_usize] = ACTIONS(1146), - [anon_sym_f32] = ACTIONS(1146), - [anon_sym_f64] = ACTIONS(1146), - [anon_sym_bool] = ACTIONS(1146), - [anon_sym_str] = ACTIONS(1146), - [anon_sym_char] = ACTIONS(1146), - [anon_sym_SQUOTE] = ACTIONS(1146), - [anon_sym_async] = ACTIONS(1146), - [anon_sym_break] = ACTIONS(1146), - [anon_sym_const] = ACTIONS(1146), - [anon_sym_continue] = ACTIONS(1146), - [anon_sym_default] = ACTIONS(1146), - [anon_sym_enum] = ACTIONS(1146), - [anon_sym_fn] = ACTIONS(1146), - [anon_sym_for] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1146), - [anon_sym_impl] = ACTIONS(1146), - [anon_sym_let] = ACTIONS(1146), - [anon_sym_loop] = ACTIONS(1146), - [anon_sym_match] = ACTIONS(1146), - [anon_sym_mod] = ACTIONS(1146), - [anon_sym_pub] = ACTIONS(1146), - [anon_sym_return] = ACTIONS(1146), - [anon_sym_static] = ACTIONS(1146), - [anon_sym_struct] = ACTIONS(1146), - [anon_sym_trait] = ACTIONS(1146), - [anon_sym_type] = ACTIONS(1146), - [anon_sym_union] = ACTIONS(1146), - [anon_sym_unsafe] = ACTIONS(1146), - [anon_sym_use] = ACTIONS(1146), - [anon_sym_while] = ACTIONS(1146), - [anon_sym_POUND] = ACTIONS(1144), - [anon_sym_BANG] = ACTIONS(1144), - [anon_sym_extern] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(1144), - [anon_sym_AMP] = ACTIONS(1144), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1144), - [anon_sym_PIPE] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1146), - [anon_sym_move] = ACTIONS(1146), - [sym_integer_literal] = ACTIONS(1144), - [aux_sym_string_literal_token1] = ACTIONS(1144), - [sym_char_literal] = ACTIONS(1144), - [anon_sym_true] = ACTIONS(1146), - [anon_sym_false] = ACTIONS(1146), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1146), - [sym_super] = ACTIONS(1146), - [sym_crate] = ACTIONS(1146), - [sym_metavariable] = ACTIONS(1144), - [sym_raw_string_literal] = ACTIONS(1144), - [sym_float_literal] = ACTIONS(1144), + [ts_builtin_sym_end] = ACTIONS(1166), + [sym_identifier] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(1166), + [anon_sym_macro_rules_BANG] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_RBRACE] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1166), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_u8] = ACTIONS(1168), + [anon_sym_i8] = ACTIONS(1168), + [anon_sym_u16] = ACTIONS(1168), + [anon_sym_i16] = ACTIONS(1168), + [anon_sym_u32] = ACTIONS(1168), + [anon_sym_i32] = ACTIONS(1168), + [anon_sym_u64] = ACTIONS(1168), + [anon_sym_i64] = ACTIONS(1168), + [anon_sym_u128] = ACTIONS(1168), + [anon_sym_i128] = ACTIONS(1168), + [anon_sym_isize] = ACTIONS(1168), + [anon_sym_usize] = ACTIONS(1168), + [anon_sym_f32] = ACTIONS(1168), + [anon_sym_f64] = ACTIONS(1168), + [anon_sym_bool] = ACTIONS(1168), + [anon_sym_str] = ACTIONS(1168), + [anon_sym_char] = ACTIONS(1168), + [anon_sym_SQUOTE] = ACTIONS(1168), + [anon_sym_async] = ACTIONS(1168), + [anon_sym_break] = ACTIONS(1168), + [anon_sym_const] = ACTIONS(1168), + [anon_sym_continue] = ACTIONS(1168), + [anon_sym_default] = ACTIONS(1168), + [anon_sym_enum] = ACTIONS(1168), + [anon_sym_fn] = ACTIONS(1168), + [anon_sym_for] = ACTIONS(1168), + [anon_sym_if] = ACTIONS(1168), + [anon_sym_impl] = ACTIONS(1168), + [anon_sym_let] = ACTIONS(1168), + [anon_sym_loop] = ACTIONS(1168), + [anon_sym_match] = ACTIONS(1168), + [anon_sym_mod] = ACTIONS(1168), + [anon_sym_pub] = ACTIONS(1168), + [anon_sym_return] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1168), + [anon_sym_struct] = ACTIONS(1168), + [anon_sym_trait] = ACTIONS(1168), + [anon_sym_type] = ACTIONS(1168), + [anon_sym_union] = ACTIONS(1168), + [anon_sym_unsafe] = ACTIONS(1168), + [anon_sym_use] = ACTIONS(1168), + [anon_sym_while] = ACTIONS(1168), + [anon_sym_POUND] = ACTIONS(1166), + [anon_sym_BANG] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1168), + [anon_sym_LT] = ACTIONS(1166), + [anon_sym_COLON_COLON] = ACTIONS(1166), + [anon_sym_AMP] = ACTIONS(1166), + [anon_sym_DOT_DOT] = ACTIONS(1166), + [anon_sym_DASH] = ACTIONS(1166), + [anon_sym_PIPE] = ACTIONS(1166), + [anon_sym_yield] = ACTIONS(1168), + [anon_sym_move] = ACTIONS(1168), + [sym_integer_literal] = ACTIONS(1166), + [aux_sym_string_literal_token1] = ACTIONS(1166), + [sym_char_literal] = ACTIONS(1166), + [anon_sym_true] = ACTIONS(1168), + [anon_sym_false] = ACTIONS(1168), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1168), + [sym_super] = ACTIONS(1168), + [sym_crate] = ACTIONS(1168), + [sym_metavariable] = ACTIONS(1166), + [sym_raw_string_literal] = ACTIONS(1166), + [sym_float_literal] = ACTIONS(1166), [sym_block_comment] = ACTIONS(3), }, [277] = { - [ts_builtin_sym_end] = ACTIONS(1148), - [sym_identifier] = ACTIONS(1150), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym_macro_rules_BANG] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1148), - [anon_sym_RBRACE] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_u8] = ACTIONS(1150), - [anon_sym_i8] = ACTIONS(1150), - [anon_sym_u16] = ACTIONS(1150), - [anon_sym_i16] = ACTIONS(1150), - [anon_sym_u32] = ACTIONS(1150), - [anon_sym_i32] = ACTIONS(1150), - [anon_sym_u64] = ACTIONS(1150), - [anon_sym_i64] = ACTIONS(1150), - [anon_sym_u128] = ACTIONS(1150), - [anon_sym_i128] = ACTIONS(1150), - [anon_sym_isize] = ACTIONS(1150), - [anon_sym_usize] = ACTIONS(1150), - [anon_sym_f32] = ACTIONS(1150), - [anon_sym_f64] = ACTIONS(1150), - [anon_sym_bool] = ACTIONS(1150), - [anon_sym_str] = ACTIONS(1150), - [anon_sym_char] = ACTIONS(1150), - [anon_sym_SQUOTE] = ACTIONS(1150), - [anon_sym_async] = ACTIONS(1150), - [anon_sym_break] = ACTIONS(1150), - [anon_sym_const] = ACTIONS(1150), - [anon_sym_continue] = ACTIONS(1150), - [anon_sym_default] = ACTIONS(1150), - [anon_sym_enum] = ACTIONS(1150), - [anon_sym_fn] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_impl] = ACTIONS(1150), - [anon_sym_let] = ACTIONS(1150), - [anon_sym_loop] = ACTIONS(1150), - [anon_sym_match] = ACTIONS(1150), - [anon_sym_mod] = ACTIONS(1150), - [anon_sym_pub] = ACTIONS(1150), - [anon_sym_return] = ACTIONS(1150), - [anon_sym_static] = ACTIONS(1150), - [anon_sym_struct] = ACTIONS(1150), - [anon_sym_trait] = ACTIONS(1150), - [anon_sym_type] = ACTIONS(1150), - [anon_sym_union] = ACTIONS(1150), - [anon_sym_unsafe] = ACTIONS(1150), - [anon_sym_use] = ACTIONS(1150), - [anon_sym_while] = ACTIONS(1150), - [anon_sym_POUND] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_extern] = ACTIONS(1150), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_COLON_COLON] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), - [anon_sym_DOT_DOT] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1150), - [anon_sym_move] = ACTIONS(1150), - [sym_integer_literal] = ACTIONS(1148), - [aux_sym_string_literal_token1] = ACTIONS(1148), - [sym_char_literal] = ACTIONS(1148), - [anon_sym_true] = ACTIONS(1150), - [anon_sym_false] = ACTIONS(1150), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1150), - [sym_super] = ACTIONS(1150), - [sym_crate] = ACTIONS(1150), - [sym_metavariable] = ACTIONS(1148), - [sym_raw_string_literal] = ACTIONS(1148), - [sym_float_literal] = ACTIONS(1148), + [ts_builtin_sym_end] = ACTIONS(1170), + [sym_identifier] = ACTIONS(1172), + [anon_sym_SEMI] = ACTIONS(1170), + [anon_sym_macro_rules_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(1170), + [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1170), + [anon_sym_STAR] = ACTIONS(1170), + [anon_sym_u8] = ACTIONS(1172), + [anon_sym_i8] = ACTIONS(1172), + [anon_sym_u16] = ACTIONS(1172), + [anon_sym_i16] = ACTIONS(1172), + [anon_sym_u32] = ACTIONS(1172), + [anon_sym_i32] = ACTIONS(1172), + [anon_sym_u64] = ACTIONS(1172), + [anon_sym_i64] = ACTIONS(1172), + [anon_sym_u128] = ACTIONS(1172), + [anon_sym_i128] = ACTIONS(1172), + [anon_sym_isize] = ACTIONS(1172), + [anon_sym_usize] = ACTIONS(1172), + [anon_sym_f32] = ACTIONS(1172), + [anon_sym_f64] = ACTIONS(1172), + [anon_sym_bool] = ACTIONS(1172), + [anon_sym_str] = ACTIONS(1172), + [anon_sym_char] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1172), + [anon_sym_async] = ACTIONS(1172), + [anon_sym_break] = ACTIONS(1172), + [anon_sym_const] = ACTIONS(1172), + [anon_sym_continue] = ACTIONS(1172), + [anon_sym_default] = ACTIONS(1172), + [anon_sym_enum] = ACTIONS(1172), + [anon_sym_fn] = ACTIONS(1172), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_if] = ACTIONS(1172), + [anon_sym_impl] = ACTIONS(1172), + [anon_sym_let] = ACTIONS(1172), + [anon_sym_loop] = ACTIONS(1172), + [anon_sym_match] = ACTIONS(1172), + [anon_sym_mod] = ACTIONS(1172), + [anon_sym_pub] = ACTIONS(1172), + [anon_sym_return] = ACTIONS(1172), + [anon_sym_static] = ACTIONS(1172), + [anon_sym_struct] = ACTIONS(1172), + [anon_sym_trait] = ACTIONS(1172), + [anon_sym_type] = ACTIONS(1172), + [anon_sym_union] = ACTIONS(1172), + [anon_sym_unsafe] = ACTIONS(1172), + [anon_sym_use] = ACTIONS(1172), + [anon_sym_while] = ACTIONS(1172), + [anon_sym_POUND] = ACTIONS(1170), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_extern] = ACTIONS(1172), + [anon_sym_LT] = ACTIONS(1170), + [anon_sym_COLON_COLON] = ACTIONS(1170), + [anon_sym_AMP] = ACTIONS(1170), + [anon_sym_DOT_DOT] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_PIPE] = ACTIONS(1170), + [anon_sym_yield] = ACTIONS(1172), + [anon_sym_move] = ACTIONS(1172), + [sym_integer_literal] = ACTIONS(1170), + [aux_sym_string_literal_token1] = ACTIONS(1170), + [sym_char_literal] = ACTIONS(1170), + [anon_sym_true] = ACTIONS(1172), + [anon_sym_false] = ACTIONS(1172), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1172), + [sym_super] = ACTIONS(1172), + [sym_crate] = ACTIONS(1172), + [sym_metavariable] = ACTIONS(1170), + [sym_raw_string_literal] = ACTIONS(1170), + [sym_float_literal] = ACTIONS(1170), [sym_block_comment] = ACTIONS(3), }, [278] = { - [ts_builtin_sym_end] = ACTIONS(1152), - [sym_identifier] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym_macro_rules_BANG] = ACTIONS(1152), - [anon_sym_LPAREN] = ACTIONS(1152), - [anon_sym_LBRACE] = ACTIONS(1152), - [anon_sym_RBRACE] = ACTIONS(1152), - [anon_sym_LBRACK] = ACTIONS(1152), - [anon_sym_STAR] = ACTIONS(1152), - [anon_sym_u8] = ACTIONS(1154), - [anon_sym_i8] = ACTIONS(1154), - [anon_sym_u16] = ACTIONS(1154), - [anon_sym_i16] = ACTIONS(1154), - [anon_sym_u32] = ACTIONS(1154), - [anon_sym_i32] = ACTIONS(1154), - [anon_sym_u64] = ACTIONS(1154), - [anon_sym_i64] = ACTIONS(1154), - [anon_sym_u128] = ACTIONS(1154), - [anon_sym_i128] = ACTIONS(1154), - [anon_sym_isize] = ACTIONS(1154), - [anon_sym_usize] = ACTIONS(1154), - [anon_sym_f32] = ACTIONS(1154), - [anon_sym_f64] = ACTIONS(1154), - [anon_sym_bool] = ACTIONS(1154), - [anon_sym_str] = ACTIONS(1154), - [anon_sym_char] = ACTIONS(1154), - [anon_sym_SQUOTE] = ACTIONS(1154), - [anon_sym_async] = ACTIONS(1154), - [anon_sym_break] = ACTIONS(1154), - [anon_sym_const] = ACTIONS(1154), - [anon_sym_continue] = ACTIONS(1154), - [anon_sym_default] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1154), - [anon_sym_fn] = ACTIONS(1154), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1154), - [anon_sym_impl] = ACTIONS(1154), - [anon_sym_let] = ACTIONS(1154), - [anon_sym_loop] = ACTIONS(1154), - [anon_sym_match] = ACTIONS(1154), - [anon_sym_mod] = ACTIONS(1154), - [anon_sym_pub] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_static] = ACTIONS(1154), - [anon_sym_struct] = ACTIONS(1154), - [anon_sym_trait] = ACTIONS(1154), - [anon_sym_type] = ACTIONS(1154), - [anon_sym_union] = ACTIONS(1154), - [anon_sym_unsafe] = ACTIONS(1154), - [anon_sym_use] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_POUND] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1152), - [anon_sym_extern] = ACTIONS(1154), - [anon_sym_LT] = ACTIONS(1152), - [anon_sym_COLON_COLON] = ACTIONS(1152), - [anon_sym_AMP] = ACTIONS(1152), - [anon_sym_DOT_DOT] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_PIPE] = ACTIONS(1152), - [anon_sym_yield] = ACTIONS(1154), - [anon_sym_move] = ACTIONS(1154), - [sym_integer_literal] = ACTIONS(1152), - [aux_sym_string_literal_token1] = ACTIONS(1152), - [sym_char_literal] = ACTIONS(1152), - [anon_sym_true] = ACTIONS(1154), - [anon_sym_false] = ACTIONS(1154), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1154), - [sym_super] = ACTIONS(1154), - [sym_crate] = ACTIONS(1154), - [sym_metavariable] = ACTIONS(1152), - [sym_raw_string_literal] = ACTIONS(1152), - [sym_float_literal] = ACTIONS(1152), + [ts_builtin_sym_end] = ACTIONS(1174), + [sym_identifier] = ACTIONS(1176), + [anon_sym_SEMI] = ACTIONS(1174), + [anon_sym_macro_rules_BANG] = ACTIONS(1174), + [anon_sym_LPAREN] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1174), + [anon_sym_RBRACE] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_STAR] = ACTIONS(1174), + [anon_sym_u8] = ACTIONS(1176), + [anon_sym_i8] = ACTIONS(1176), + [anon_sym_u16] = ACTIONS(1176), + [anon_sym_i16] = ACTIONS(1176), + [anon_sym_u32] = ACTIONS(1176), + [anon_sym_i32] = ACTIONS(1176), + [anon_sym_u64] = ACTIONS(1176), + [anon_sym_i64] = ACTIONS(1176), + [anon_sym_u128] = ACTIONS(1176), + [anon_sym_i128] = ACTIONS(1176), + [anon_sym_isize] = ACTIONS(1176), + [anon_sym_usize] = ACTIONS(1176), + [anon_sym_f32] = ACTIONS(1176), + [anon_sym_f64] = ACTIONS(1176), + [anon_sym_bool] = ACTIONS(1176), + [anon_sym_str] = ACTIONS(1176), + [anon_sym_char] = ACTIONS(1176), + [anon_sym_SQUOTE] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1176), + [anon_sym_break] = ACTIONS(1176), + [anon_sym_const] = ACTIONS(1176), + [anon_sym_continue] = ACTIONS(1176), + [anon_sym_default] = ACTIONS(1176), + [anon_sym_enum] = ACTIONS(1176), + [anon_sym_fn] = ACTIONS(1176), + [anon_sym_for] = ACTIONS(1176), + [anon_sym_if] = ACTIONS(1176), + [anon_sym_impl] = ACTIONS(1176), + [anon_sym_let] = ACTIONS(1176), + [anon_sym_loop] = ACTIONS(1176), + [anon_sym_match] = ACTIONS(1176), + [anon_sym_mod] = ACTIONS(1176), + [anon_sym_pub] = ACTIONS(1176), + [anon_sym_return] = ACTIONS(1176), + [anon_sym_static] = ACTIONS(1176), + [anon_sym_struct] = ACTIONS(1176), + [anon_sym_trait] = ACTIONS(1176), + [anon_sym_type] = ACTIONS(1176), + [anon_sym_union] = ACTIONS(1176), + [anon_sym_unsafe] = ACTIONS(1176), + [anon_sym_use] = ACTIONS(1176), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_POUND] = ACTIONS(1174), + [anon_sym_BANG] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1176), + [anon_sym_LT] = ACTIONS(1174), + [anon_sym_COLON_COLON] = ACTIONS(1174), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_DOT_DOT] = ACTIONS(1174), + [anon_sym_DASH] = ACTIONS(1174), + [anon_sym_PIPE] = ACTIONS(1174), + [anon_sym_yield] = ACTIONS(1176), + [anon_sym_move] = ACTIONS(1176), + [sym_integer_literal] = ACTIONS(1174), + [aux_sym_string_literal_token1] = ACTIONS(1174), + [sym_char_literal] = ACTIONS(1174), + [anon_sym_true] = ACTIONS(1176), + [anon_sym_false] = ACTIONS(1176), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1176), + [sym_super] = ACTIONS(1176), + [sym_crate] = ACTIONS(1176), + [sym_metavariable] = ACTIONS(1174), + [sym_raw_string_literal] = ACTIONS(1174), + [sym_float_literal] = ACTIONS(1174), [sym_block_comment] = ACTIONS(3), }, [279] = { - [ts_builtin_sym_end] = ACTIONS(1156), - [sym_identifier] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym_macro_rules_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1156), - [anon_sym_LBRACE] = ACTIONS(1156), - [anon_sym_RBRACE] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1156), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_u8] = ACTIONS(1158), - [anon_sym_i8] = ACTIONS(1158), - [anon_sym_u16] = ACTIONS(1158), - [anon_sym_i16] = ACTIONS(1158), - [anon_sym_u32] = ACTIONS(1158), - [anon_sym_i32] = ACTIONS(1158), - [anon_sym_u64] = ACTIONS(1158), - [anon_sym_i64] = ACTIONS(1158), - [anon_sym_u128] = ACTIONS(1158), - [anon_sym_i128] = ACTIONS(1158), - [anon_sym_isize] = ACTIONS(1158), - [anon_sym_usize] = ACTIONS(1158), - [anon_sym_f32] = ACTIONS(1158), - [anon_sym_f64] = ACTIONS(1158), - [anon_sym_bool] = ACTIONS(1158), - [anon_sym_str] = ACTIONS(1158), - [anon_sym_char] = ACTIONS(1158), - [anon_sym_SQUOTE] = ACTIONS(1158), - [anon_sym_async] = ACTIONS(1158), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_const] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_default] = ACTIONS(1158), - [anon_sym_enum] = ACTIONS(1158), - [anon_sym_fn] = ACTIONS(1158), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1158), - [anon_sym_impl] = ACTIONS(1158), - [anon_sym_let] = ACTIONS(1158), - [anon_sym_loop] = ACTIONS(1158), - [anon_sym_match] = ACTIONS(1158), - [anon_sym_mod] = ACTIONS(1158), - [anon_sym_pub] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_static] = ACTIONS(1158), - [anon_sym_struct] = ACTIONS(1158), - [anon_sym_trait] = ACTIONS(1158), - [anon_sym_type] = ACTIONS(1158), - [anon_sym_union] = ACTIONS(1158), - [anon_sym_unsafe] = ACTIONS(1158), - [anon_sym_use] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1158), - [anon_sym_POUND] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_extern] = ACTIONS(1158), - [anon_sym_LT] = ACTIONS(1156), - [anon_sym_COLON_COLON] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1156), - [anon_sym_DOT_DOT] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_PIPE] = ACTIONS(1156), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_move] = ACTIONS(1158), - [sym_integer_literal] = ACTIONS(1156), - [aux_sym_string_literal_token1] = ACTIONS(1156), - [sym_char_literal] = ACTIONS(1156), - [anon_sym_true] = ACTIONS(1158), - [anon_sym_false] = ACTIONS(1158), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1158), - [sym_super] = ACTIONS(1158), - [sym_crate] = ACTIONS(1158), - [sym_metavariable] = ACTIONS(1156), - [sym_raw_string_literal] = ACTIONS(1156), - [sym_float_literal] = ACTIONS(1156), + [ts_builtin_sym_end] = ACTIONS(1178), + [sym_identifier] = ACTIONS(1180), + [anon_sym_SEMI] = ACTIONS(1178), + [anon_sym_macro_rules_BANG] = ACTIONS(1178), + [anon_sym_LPAREN] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1178), + [anon_sym_RBRACE] = ACTIONS(1178), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(1178), + [anon_sym_u8] = ACTIONS(1180), + [anon_sym_i8] = ACTIONS(1180), + [anon_sym_u16] = ACTIONS(1180), + [anon_sym_i16] = ACTIONS(1180), + [anon_sym_u32] = ACTIONS(1180), + [anon_sym_i32] = ACTIONS(1180), + [anon_sym_u64] = ACTIONS(1180), + [anon_sym_i64] = ACTIONS(1180), + [anon_sym_u128] = ACTIONS(1180), + [anon_sym_i128] = ACTIONS(1180), + [anon_sym_isize] = ACTIONS(1180), + [anon_sym_usize] = ACTIONS(1180), + [anon_sym_f32] = ACTIONS(1180), + [anon_sym_f64] = ACTIONS(1180), + [anon_sym_bool] = ACTIONS(1180), + [anon_sym_str] = ACTIONS(1180), + [anon_sym_char] = ACTIONS(1180), + [anon_sym_SQUOTE] = ACTIONS(1180), + [anon_sym_async] = ACTIONS(1180), + [anon_sym_break] = ACTIONS(1180), + [anon_sym_const] = ACTIONS(1180), + [anon_sym_continue] = ACTIONS(1180), + [anon_sym_default] = ACTIONS(1180), + [anon_sym_enum] = ACTIONS(1180), + [anon_sym_fn] = ACTIONS(1180), + [anon_sym_for] = ACTIONS(1180), + [anon_sym_if] = ACTIONS(1180), + [anon_sym_impl] = ACTIONS(1180), + [anon_sym_let] = ACTIONS(1180), + [anon_sym_loop] = ACTIONS(1180), + [anon_sym_match] = ACTIONS(1180), + [anon_sym_mod] = ACTIONS(1180), + [anon_sym_pub] = ACTIONS(1180), + [anon_sym_return] = ACTIONS(1180), + [anon_sym_static] = ACTIONS(1180), + [anon_sym_struct] = ACTIONS(1180), + [anon_sym_trait] = ACTIONS(1180), + [anon_sym_type] = ACTIONS(1180), + [anon_sym_union] = ACTIONS(1180), + [anon_sym_unsafe] = ACTIONS(1180), + [anon_sym_use] = ACTIONS(1180), + [anon_sym_while] = ACTIONS(1180), + [anon_sym_POUND] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1178), + [anon_sym_extern] = ACTIONS(1180), + [anon_sym_LT] = ACTIONS(1178), + [anon_sym_COLON_COLON] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(1178), + [anon_sym_DOT_DOT] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1178), + [anon_sym_PIPE] = ACTIONS(1178), + [anon_sym_yield] = ACTIONS(1180), + [anon_sym_move] = ACTIONS(1180), + [sym_integer_literal] = ACTIONS(1178), + [aux_sym_string_literal_token1] = ACTIONS(1178), + [sym_char_literal] = ACTIONS(1178), + [anon_sym_true] = ACTIONS(1180), + [anon_sym_false] = ACTIONS(1180), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1180), + [sym_super] = ACTIONS(1180), + [sym_crate] = ACTIONS(1180), + [sym_metavariable] = ACTIONS(1178), + [sym_raw_string_literal] = ACTIONS(1178), + [sym_float_literal] = ACTIONS(1178), [sym_block_comment] = ACTIONS(3), }, [280] = { - [ts_builtin_sym_end] = ACTIONS(1160), - [sym_identifier] = ACTIONS(1162), - [anon_sym_SEMI] = ACTIONS(1160), - [anon_sym_macro_rules_BANG] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(1160), - [anon_sym_LBRACE] = ACTIONS(1160), - [anon_sym_RBRACE] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1160), - [anon_sym_STAR] = ACTIONS(1160), - [anon_sym_u8] = ACTIONS(1162), - [anon_sym_i8] = ACTIONS(1162), - [anon_sym_u16] = ACTIONS(1162), - [anon_sym_i16] = ACTIONS(1162), - [anon_sym_u32] = ACTIONS(1162), - [anon_sym_i32] = ACTIONS(1162), - [anon_sym_u64] = ACTIONS(1162), - [anon_sym_i64] = ACTIONS(1162), - [anon_sym_u128] = ACTIONS(1162), - [anon_sym_i128] = ACTIONS(1162), - [anon_sym_isize] = ACTIONS(1162), - [anon_sym_usize] = ACTIONS(1162), - [anon_sym_f32] = ACTIONS(1162), - [anon_sym_f64] = ACTIONS(1162), - [anon_sym_bool] = ACTIONS(1162), - [anon_sym_str] = ACTIONS(1162), - [anon_sym_char] = ACTIONS(1162), - [anon_sym_SQUOTE] = ACTIONS(1162), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_break] = ACTIONS(1162), - [anon_sym_const] = ACTIONS(1162), - [anon_sym_continue] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(1162), - [anon_sym_enum] = ACTIONS(1162), - [anon_sym_fn] = ACTIONS(1162), - [anon_sym_for] = ACTIONS(1162), - [anon_sym_if] = ACTIONS(1162), - [anon_sym_impl] = ACTIONS(1162), - [anon_sym_let] = ACTIONS(1162), - [anon_sym_loop] = ACTIONS(1162), - [anon_sym_match] = ACTIONS(1162), - [anon_sym_mod] = ACTIONS(1162), - [anon_sym_pub] = ACTIONS(1162), - [anon_sym_return] = ACTIONS(1162), - [anon_sym_static] = ACTIONS(1162), - [anon_sym_struct] = ACTIONS(1162), - [anon_sym_trait] = ACTIONS(1162), - [anon_sym_type] = ACTIONS(1162), - [anon_sym_union] = ACTIONS(1162), - [anon_sym_unsafe] = ACTIONS(1162), - [anon_sym_use] = ACTIONS(1162), - [anon_sym_while] = ACTIONS(1162), - [anon_sym_POUND] = ACTIONS(1160), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_extern] = ACTIONS(1162), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(1160), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_PIPE] = ACTIONS(1160), - [anon_sym_yield] = ACTIONS(1162), - [anon_sym_move] = ACTIONS(1162), - [sym_integer_literal] = ACTIONS(1160), - [aux_sym_string_literal_token1] = ACTIONS(1160), - [sym_char_literal] = ACTIONS(1160), - [anon_sym_true] = ACTIONS(1162), - [anon_sym_false] = ACTIONS(1162), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1162), - [sym_super] = ACTIONS(1162), - [sym_crate] = ACTIONS(1162), - [sym_metavariable] = ACTIONS(1160), - [sym_raw_string_literal] = ACTIONS(1160), - [sym_float_literal] = ACTIONS(1160), + [ts_builtin_sym_end] = ACTIONS(1182), + [sym_identifier] = ACTIONS(1184), + [anon_sym_SEMI] = ACTIONS(1182), + [anon_sym_macro_rules_BANG] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(1182), + [anon_sym_LBRACE] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(1182), + [anon_sym_LBRACK] = ACTIONS(1182), + [anon_sym_STAR] = ACTIONS(1182), + [anon_sym_u8] = ACTIONS(1184), + [anon_sym_i8] = ACTIONS(1184), + [anon_sym_u16] = ACTIONS(1184), + [anon_sym_i16] = ACTIONS(1184), + [anon_sym_u32] = ACTIONS(1184), + [anon_sym_i32] = ACTIONS(1184), + [anon_sym_u64] = ACTIONS(1184), + [anon_sym_i64] = ACTIONS(1184), + [anon_sym_u128] = ACTIONS(1184), + [anon_sym_i128] = ACTIONS(1184), + [anon_sym_isize] = ACTIONS(1184), + [anon_sym_usize] = ACTIONS(1184), + [anon_sym_f32] = ACTIONS(1184), + [anon_sym_f64] = ACTIONS(1184), + [anon_sym_bool] = ACTIONS(1184), + [anon_sym_str] = ACTIONS(1184), + [anon_sym_char] = ACTIONS(1184), + [anon_sym_SQUOTE] = ACTIONS(1184), + [anon_sym_async] = ACTIONS(1184), + [anon_sym_break] = ACTIONS(1184), + [anon_sym_const] = ACTIONS(1184), + [anon_sym_continue] = ACTIONS(1184), + [anon_sym_default] = ACTIONS(1184), + [anon_sym_enum] = ACTIONS(1184), + [anon_sym_fn] = ACTIONS(1184), + [anon_sym_for] = ACTIONS(1184), + [anon_sym_if] = ACTIONS(1184), + [anon_sym_impl] = ACTIONS(1184), + [anon_sym_let] = ACTIONS(1184), + [anon_sym_loop] = ACTIONS(1184), + [anon_sym_match] = ACTIONS(1184), + [anon_sym_mod] = ACTIONS(1184), + [anon_sym_pub] = ACTIONS(1184), + [anon_sym_return] = ACTIONS(1184), + [anon_sym_static] = ACTIONS(1184), + [anon_sym_struct] = ACTIONS(1184), + [anon_sym_trait] = ACTIONS(1184), + [anon_sym_type] = ACTIONS(1184), + [anon_sym_union] = ACTIONS(1184), + [anon_sym_unsafe] = ACTIONS(1184), + [anon_sym_use] = ACTIONS(1184), + [anon_sym_while] = ACTIONS(1184), + [anon_sym_POUND] = ACTIONS(1182), + [anon_sym_BANG] = ACTIONS(1182), + [anon_sym_extern] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1182), + [anon_sym_COLON_COLON] = ACTIONS(1182), + [anon_sym_AMP] = ACTIONS(1182), + [anon_sym_DOT_DOT] = ACTIONS(1182), + [anon_sym_DASH] = ACTIONS(1182), + [anon_sym_PIPE] = ACTIONS(1182), + [anon_sym_yield] = ACTIONS(1184), + [anon_sym_move] = ACTIONS(1184), + [sym_integer_literal] = ACTIONS(1182), + [aux_sym_string_literal_token1] = ACTIONS(1182), + [sym_char_literal] = ACTIONS(1182), + [anon_sym_true] = ACTIONS(1184), + [anon_sym_false] = ACTIONS(1184), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1184), + [sym_super] = ACTIONS(1184), + [sym_crate] = ACTIONS(1184), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(1182), + [sym_float_literal] = ACTIONS(1182), [sym_block_comment] = ACTIONS(3), }, [281] = { - [ts_builtin_sym_end] = ACTIONS(1164), - [sym_identifier] = ACTIONS(1166), - [anon_sym_SEMI] = ACTIONS(1164), - [anon_sym_macro_rules_BANG] = ACTIONS(1164), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_RBRACE] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1164), - [anon_sym_STAR] = ACTIONS(1164), - [anon_sym_u8] = ACTIONS(1166), - [anon_sym_i8] = ACTIONS(1166), - [anon_sym_u16] = ACTIONS(1166), - [anon_sym_i16] = ACTIONS(1166), - [anon_sym_u32] = ACTIONS(1166), - [anon_sym_i32] = ACTIONS(1166), - [anon_sym_u64] = ACTIONS(1166), - [anon_sym_i64] = ACTIONS(1166), - [anon_sym_u128] = ACTIONS(1166), - [anon_sym_i128] = ACTIONS(1166), - [anon_sym_isize] = ACTIONS(1166), - [anon_sym_usize] = ACTIONS(1166), - [anon_sym_f32] = ACTIONS(1166), - [anon_sym_f64] = ACTIONS(1166), - [anon_sym_bool] = ACTIONS(1166), - [anon_sym_str] = ACTIONS(1166), - [anon_sym_char] = ACTIONS(1166), - [anon_sym_SQUOTE] = ACTIONS(1166), - [anon_sym_async] = ACTIONS(1166), - [anon_sym_break] = ACTIONS(1166), - [anon_sym_const] = ACTIONS(1166), - [anon_sym_continue] = ACTIONS(1166), - [anon_sym_default] = ACTIONS(1166), - [anon_sym_enum] = ACTIONS(1166), - [anon_sym_fn] = ACTIONS(1166), - [anon_sym_for] = ACTIONS(1166), - [anon_sym_if] = ACTIONS(1166), - [anon_sym_impl] = ACTIONS(1166), - [anon_sym_let] = ACTIONS(1166), - [anon_sym_loop] = ACTIONS(1166), - [anon_sym_match] = ACTIONS(1166), - [anon_sym_mod] = ACTIONS(1166), - [anon_sym_pub] = ACTIONS(1166), - [anon_sym_return] = ACTIONS(1166), - [anon_sym_static] = ACTIONS(1166), - [anon_sym_struct] = ACTIONS(1166), - [anon_sym_trait] = ACTIONS(1166), - [anon_sym_type] = ACTIONS(1166), - [anon_sym_union] = ACTIONS(1166), - [anon_sym_unsafe] = ACTIONS(1166), - [anon_sym_use] = ACTIONS(1166), - [anon_sym_while] = ACTIONS(1166), - [anon_sym_POUND] = ACTIONS(1164), - [anon_sym_BANG] = ACTIONS(1164), - [anon_sym_extern] = ACTIONS(1166), - [anon_sym_LT] = ACTIONS(1164), - [anon_sym_COLON_COLON] = ACTIONS(1164), - [anon_sym_AMP] = ACTIONS(1164), - [anon_sym_DOT_DOT] = ACTIONS(1164), - [anon_sym_DASH] = ACTIONS(1164), - [anon_sym_PIPE] = ACTIONS(1164), - [anon_sym_yield] = ACTIONS(1166), - [anon_sym_move] = ACTIONS(1166), - [sym_integer_literal] = ACTIONS(1164), - [aux_sym_string_literal_token1] = ACTIONS(1164), - [sym_char_literal] = ACTIONS(1164), - [anon_sym_true] = ACTIONS(1166), - [anon_sym_false] = ACTIONS(1166), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1166), - [sym_super] = ACTIONS(1166), - [sym_crate] = ACTIONS(1166), - [sym_metavariable] = ACTIONS(1164), - [sym_raw_string_literal] = ACTIONS(1164), - [sym_float_literal] = ACTIONS(1164), + [ts_builtin_sym_end] = ACTIONS(1186), + [sym_identifier] = ACTIONS(1188), + [anon_sym_SEMI] = ACTIONS(1186), + [anon_sym_macro_rules_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1186), + [anon_sym_RBRACE] = ACTIONS(1186), + [anon_sym_LBRACK] = ACTIONS(1186), + [anon_sym_STAR] = ACTIONS(1186), + [anon_sym_u8] = ACTIONS(1188), + [anon_sym_i8] = ACTIONS(1188), + [anon_sym_u16] = ACTIONS(1188), + [anon_sym_i16] = ACTIONS(1188), + [anon_sym_u32] = ACTIONS(1188), + [anon_sym_i32] = ACTIONS(1188), + [anon_sym_u64] = ACTIONS(1188), + [anon_sym_i64] = ACTIONS(1188), + [anon_sym_u128] = ACTIONS(1188), + [anon_sym_i128] = ACTIONS(1188), + [anon_sym_isize] = ACTIONS(1188), + [anon_sym_usize] = ACTIONS(1188), + [anon_sym_f32] = ACTIONS(1188), + [anon_sym_f64] = ACTIONS(1188), + [anon_sym_bool] = ACTIONS(1188), + [anon_sym_str] = ACTIONS(1188), + [anon_sym_char] = ACTIONS(1188), + [anon_sym_SQUOTE] = ACTIONS(1188), + [anon_sym_async] = ACTIONS(1188), + [anon_sym_break] = ACTIONS(1188), + [anon_sym_const] = ACTIONS(1188), + [anon_sym_continue] = ACTIONS(1188), + [anon_sym_default] = ACTIONS(1188), + [anon_sym_enum] = ACTIONS(1188), + [anon_sym_fn] = ACTIONS(1188), + [anon_sym_for] = ACTIONS(1188), + [anon_sym_if] = ACTIONS(1188), + [anon_sym_impl] = ACTIONS(1188), + [anon_sym_let] = ACTIONS(1188), + [anon_sym_loop] = ACTIONS(1188), + [anon_sym_match] = ACTIONS(1188), + [anon_sym_mod] = ACTIONS(1188), + [anon_sym_pub] = ACTIONS(1188), + [anon_sym_return] = ACTIONS(1188), + [anon_sym_static] = ACTIONS(1188), + [anon_sym_struct] = ACTIONS(1188), + [anon_sym_trait] = ACTIONS(1188), + [anon_sym_type] = ACTIONS(1188), + [anon_sym_union] = ACTIONS(1188), + [anon_sym_unsafe] = ACTIONS(1188), + [anon_sym_use] = ACTIONS(1188), + [anon_sym_while] = ACTIONS(1188), + [anon_sym_POUND] = ACTIONS(1186), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_extern] = ACTIONS(1188), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_COLON_COLON] = ACTIONS(1186), + [anon_sym_AMP] = ACTIONS(1186), + [anon_sym_DOT_DOT] = ACTIONS(1186), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_PIPE] = ACTIONS(1186), + [anon_sym_yield] = ACTIONS(1188), + [anon_sym_move] = ACTIONS(1188), + [sym_integer_literal] = ACTIONS(1186), + [aux_sym_string_literal_token1] = ACTIONS(1186), + [sym_char_literal] = ACTIONS(1186), + [anon_sym_true] = ACTIONS(1188), + [anon_sym_false] = ACTIONS(1188), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1188), + [sym_super] = ACTIONS(1188), + [sym_crate] = ACTIONS(1188), + [sym_metavariable] = ACTIONS(1186), + [sym_raw_string_literal] = ACTIONS(1186), + [sym_float_literal] = ACTIONS(1186), [sym_block_comment] = ACTIONS(3), }, [282] = { - [ts_builtin_sym_end] = ACTIONS(1168), - [sym_identifier] = ACTIONS(1170), - [anon_sym_SEMI] = ACTIONS(1168), - [anon_sym_macro_rules_BANG] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_LBRACE] = ACTIONS(1168), - [anon_sym_RBRACE] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1170), - [anon_sym_i8] = ACTIONS(1170), - [anon_sym_u16] = ACTIONS(1170), - [anon_sym_i16] = ACTIONS(1170), - [anon_sym_u32] = ACTIONS(1170), - [anon_sym_i32] = ACTIONS(1170), - [anon_sym_u64] = ACTIONS(1170), - [anon_sym_i64] = ACTIONS(1170), - [anon_sym_u128] = ACTIONS(1170), - [anon_sym_i128] = ACTIONS(1170), - [anon_sym_isize] = ACTIONS(1170), - [anon_sym_usize] = ACTIONS(1170), - [anon_sym_f32] = ACTIONS(1170), - [anon_sym_f64] = ACTIONS(1170), - [anon_sym_bool] = ACTIONS(1170), - [anon_sym_str] = ACTIONS(1170), - [anon_sym_char] = ACTIONS(1170), - [anon_sym_SQUOTE] = ACTIONS(1170), - [anon_sym_async] = ACTIONS(1170), - [anon_sym_break] = ACTIONS(1170), - [anon_sym_const] = ACTIONS(1170), - [anon_sym_continue] = ACTIONS(1170), - [anon_sym_default] = ACTIONS(1170), - [anon_sym_enum] = ACTIONS(1170), - [anon_sym_fn] = ACTIONS(1170), - [anon_sym_for] = ACTIONS(1170), - [anon_sym_if] = ACTIONS(1170), - [anon_sym_impl] = ACTIONS(1170), - [anon_sym_let] = ACTIONS(1170), - [anon_sym_loop] = ACTIONS(1170), - [anon_sym_match] = ACTIONS(1170), - [anon_sym_mod] = ACTIONS(1170), - [anon_sym_pub] = ACTIONS(1170), - [anon_sym_return] = ACTIONS(1170), - [anon_sym_static] = ACTIONS(1170), - [anon_sym_struct] = ACTIONS(1170), - [anon_sym_trait] = ACTIONS(1170), - [anon_sym_type] = ACTIONS(1170), - [anon_sym_union] = ACTIONS(1170), - [anon_sym_unsafe] = ACTIONS(1170), - [anon_sym_use] = ACTIONS(1170), - [anon_sym_while] = ACTIONS(1170), - [anon_sym_POUND] = ACTIONS(1168), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1170), - [anon_sym_LT] = ACTIONS(1168), - [anon_sym_COLON_COLON] = ACTIONS(1168), - [anon_sym_AMP] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_PIPE] = ACTIONS(1168), - [anon_sym_yield] = ACTIONS(1170), - [anon_sym_move] = ACTIONS(1170), - [sym_integer_literal] = ACTIONS(1168), - [aux_sym_string_literal_token1] = ACTIONS(1168), - [sym_char_literal] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1170), - [anon_sym_false] = ACTIONS(1170), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1170), - [sym_super] = ACTIONS(1170), - [sym_crate] = ACTIONS(1170), - [sym_metavariable] = ACTIONS(1168), - [sym_raw_string_literal] = ACTIONS(1168), - [sym_float_literal] = ACTIONS(1168), + [ts_builtin_sym_end] = ACTIONS(1190), + [sym_identifier] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1190), + [anon_sym_macro_rules_BANG] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1190), + [anon_sym_RBRACE] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1190), + [anon_sym_u8] = ACTIONS(1192), + [anon_sym_i8] = ACTIONS(1192), + [anon_sym_u16] = ACTIONS(1192), + [anon_sym_i16] = ACTIONS(1192), + [anon_sym_u32] = ACTIONS(1192), + [anon_sym_i32] = ACTIONS(1192), + [anon_sym_u64] = ACTIONS(1192), + [anon_sym_i64] = ACTIONS(1192), + [anon_sym_u128] = ACTIONS(1192), + [anon_sym_i128] = ACTIONS(1192), + [anon_sym_isize] = ACTIONS(1192), + [anon_sym_usize] = ACTIONS(1192), + [anon_sym_f32] = ACTIONS(1192), + [anon_sym_f64] = ACTIONS(1192), + [anon_sym_bool] = ACTIONS(1192), + [anon_sym_str] = ACTIONS(1192), + [anon_sym_char] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_break] = ACTIONS(1192), + [anon_sym_const] = ACTIONS(1192), + [anon_sym_continue] = ACTIONS(1192), + [anon_sym_default] = ACTIONS(1192), + [anon_sym_enum] = ACTIONS(1192), + [anon_sym_fn] = ACTIONS(1192), + [anon_sym_for] = ACTIONS(1192), + [anon_sym_if] = ACTIONS(1192), + [anon_sym_impl] = ACTIONS(1192), + [anon_sym_let] = ACTIONS(1192), + [anon_sym_loop] = ACTIONS(1192), + [anon_sym_match] = ACTIONS(1192), + [anon_sym_mod] = ACTIONS(1192), + [anon_sym_pub] = ACTIONS(1192), + [anon_sym_return] = ACTIONS(1192), + [anon_sym_static] = ACTIONS(1192), + [anon_sym_struct] = ACTIONS(1192), + [anon_sym_trait] = ACTIONS(1192), + [anon_sym_type] = ACTIONS(1192), + [anon_sym_union] = ACTIONS(1192), + [anon_sym_unsafe] = ACTIONS(1192), + [anon_sym_use] = ACTIONS(1192), + [anon_sym_while] = ACTIONS(1192), + [anon_sym_POUND] = ACTIONS(1190), + [anon_sym_BANG] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1192), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_COLON_COLON] = ACTIONS(1190), + [anon_sym_AMP] = ACTIONS(1190), + [anon_sym_DOT_DOT] = ACTIONS(1190), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PIPE] = ACTIONS(1190), + [anon_sym_yield] = ACTIONS(1192), + [anon_sym_move] = ACTIONS(1192), + [sym_integer_literal] = ACTIONS(1190), + [aux_sym_string_literal_token1] = ACTIONS(1190), + [sym_char_literal] = ACTIONS(1190), + [anon_sym_true] = ACTIONS(1192), + [anon_sym_false] = ACTIONS(1192), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1192), + [sym_super] = ACTIONS(1192), + [sym_crate] = ACTIONS(1192), + [sym_metavariable] = ACTIONS(1190), + [sym_raw_string_literal] = ACTIONS(1190), + [sym_float_literal] = ACTIONS(1190), [sym_block_comment] = ACTIONS(3), }, [283] = { - [ts_builtin_sym_end] = ACTIONS(1172), - [sym_identifier] = ACTIONS(1174), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym_macro_rules_BANG] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u128] = ACTIONS(1174), - [anon_sym_i128] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_str] = ACTIONS(1174), - [anon_sym_char] = ACTIONS(1174), - [anon_sym_SQUOTE] = ACTIONS(1174), - [anon_sym_async] = ACTIONS(1174), - [anon_sym_break] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(1174), - [anon_sym_continue] = ACTIONS(1174), - [anon_sym_default] = ACTIONS(1174), - [anon_sym_enum] = ACTIONS(1174), - [anon_sym_fn] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_impl] = ACTIONS(1174), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_loop] = ACTIONS(1174), - [anon_sym_match] = ACTIONS(1174), - [anon_sym_mod] = ACTIONS(1174), - [anon_sym_pub] = ACTIONS(1174), - [anon_sym_return] = ACTIONS(1174), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1174), - [anon_sym_trait] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_union] = ACTIONS(1174), - [anon_sym_unsafe] = ACTIONS(1174), - [anon_sym_use] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1174), - [anon_sym_POUND] = ACTIONS(1172), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1174), - [anon_sym_LT] = ACTIONS(1172), - [anon_sym_COLON_COLON] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1172), - [anon_sym_PIPE] = ACTIONS(1172), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_move] = ACTIONS(1174), - [sym_integer_literal] = ACTIONS(1172), - [aux_sym_string_literal_token1] = ACTIONS(1172), - [sym_char_literal] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1174), - [anon_sym_false] = ACTIONS(1174), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1174), - [sym_super] = ACTIONS(1174), - [sym_crate] = ACTIONS(1174), - [sym_metavariable] = ACTIONS(1172), - [sym_raw_string_literal] = ACTIONS(1172), - [sym_float_literal] = ACTIONS(1172), + [ts_builtin_sym_end] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1196), + [anon_sym_SEMI] = ACTIONS(1194), + [anon_sym_macro_rules_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_RBRACE] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1194), + [anon_sym_STAR] = ACTIONS(1194), + [anon_sym_u8] = ACTIONS(1196), + [anon_sym_i8] = ACTIONS(1196), + [anon_sym_u16] = ACTIONS(1196), + [anon_sym_i16] = ACTIONS(1196), + [anon_sym_u32] = ACTIONS(1196), + [anon_sym_i32] = ACTIONS(1196), + [anon_sym_u64] = ACTIONS(1196), + [anon_sym_i64] = ACTIONS(1196), + [anon_sym_u128] = ACTIONS(1196), + [anon_sym_i128] = ACTIONS(1196), + [anon_sym_isize] = ACTIONS(1196), + [anon_sym_usize] = ACTIONS(1196), + [anon_sym_f32] = ACTIONS(1196), + [anon_sym_f64] = ACTIONS(1196), + [anon_sym_bool] = ACTIONS(1196), + [anon_sym_str] = ACTIONS(1196), + [anon_sym_char] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_async] = ACTIONS(1196), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_const] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_default] = ACTIONS(1196), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_fn] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_impl] = ACTIONS(1196), + [anon_sym_let] = ACTIONS(1196), + [anon_sym_loop] = ACTIONS(1196), + [anon_sym_match] = ACTIONS(1196), + [anon_sym_mod] = ACTIONS(1196), + [anon_sym_pub] = ACTIONS(1196), + [anon_sym_return] = ACTIONS(1196), + [anon_sym_static] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_trait] = ACTIONS(1196), + [anon_sym_type] = ACTIONS(1196), + [anon_sym_union] = ACTIONS(1196), + [anon_sym_unsafe] = ACTIONS(1196), + [anon_sym_use] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_POUND] = ACTIONS(1194), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_extern] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(1194), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [anon_sym_AMP] = ACTIONS(1194), + [anon_sym_DOT_DOT] = ACTIONS(1194), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_PIPE] = ACTIONS(1194), + [anon_sym_yield] = ACTIONS(1196), + [anon_sym_move] = ACTIONS(1196), + [sym_integer_literal] = ACTIONS(1194), + [aux_sym_string_literal_token1] = ACTIONS(1194), + [sym_char_literal] = ACTIONS(1194), + [anon_sym_true] = ACTIONS(1196), + [anon_sym_false] = ACTIONS(1196), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1196), + [sym_super] = ACTIONS(1196), + [sym_crate] = ACTIONS(1196), + [sym_metavariable] = ACTIONS(1194), + [sym_raw_string_literal] = ACTIONS(1194), + [sym_float_literal] = ACTIONS(1194), [sym_block_comment] = ACTIONS(3), }, [284] = { - [ts_builtin_sym_end] = ACTIONS(1176), - [sym_identifier] = ACTIONS(1178), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym_macro_rules_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_RBRACE] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_u8] = ACTIONS(1178), - [anon_sym_i8] = ACTIONS(1178), - [anon_sym_u16] = ACTIONS(1178), - [anon_sym_i16] = ACTIONS(1178), - [anon_sym_u32] = ACTIONS(1178), - [anon_sym_i32] = ACTIONS(1178), - [anon_sym_u64] = ACTIONS(1178), - [anon_sym_i64] = ACTIONS(1178), - [anon_sym_u128] = ACTIONS(1178), - [anon_sym_i128] = ACTIONS(1178), - [anon_sym_isize] = ACTIONS(1178), - [anon_sym_usize] = ACTIONS(1178), - [anon_sym_f32] = ACTIONS(1178), - [anon_sym_f64] = ACTIONS(1178), - [anon_sym_bool] = ACTIONS(1178), - [anon_sym_str] = ACTIONS(1178), - [anon_sym_char] = ACTIONS(1178), - [anon_sym_SQUOTE] = ACTIONS(1178), - [anon_sym_async] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_const] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_enum] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_impl] = ACTIONS(1178), - [anon_sym_let] = ACTIONS(1178), - [anon_sym_loop] = ACTIONS(1178), - [anon_sym_match] = ACTIONS(1178), - [anon_sym_mod] = ACTIONS(1178), - [anon_sym_pub] = ACTIONS(1178), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_trait] = ACTIONS(1178), - [anon_sym_type] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), - [anon_sym_unsafe] = ACTIONS(1178), - [anon_sym_use] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_POUND] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_extern] = ACTIONS(1178), - [anon_sym_LT] = ACTIONS(1176), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_DOT_DOT] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1176), - [anon_sym_PIPE] = ACTIONS(1176), - [anon_sym_yield] = ACTIONS(1178), - [anon_sym_move] = ACTIONS(1178), - [sym_integer_literal] = ACTIONS(1176), - [aux_sym_string_literal_token1] = ACTIONS(1176), - [sym_char_literal] = ACTIONS(1176), - [anon_sym_true] = ACTIONS(1178), - [anon_sym_false] = ACTIONS(1178), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1178), - [sym_super] = ACTIONS(1178), - [sym_crate] = ACTIONS(1178), - [sym_metavariable] = ACTIONS(1176), - [sym_raw_string_literal] = ACTIONS(1176), - [sym_float_literal] = ACTIONS(1176), + [ts_builtin_sym_end] = ACTIONS(1198), + [sym_identifier] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_macro_rules_BANG] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_u8] = ACTIONS(1200), + [anon_sym_i8] = ACTIONS(1200), + [anon_sym_u16] = ACTIONS(1200), + [anon_sym_i16] = ACTIONS(1200), + [anon_sym_u32] = ACTIONS(1200), + [anon_sym_i32] = ACTIONS(1200), + [anon_sym_u64] = ACTIONS(1200), + [anon_sym_i64] = ACTIONS(1200), + [anon_sym_u128] = ACTIONS(1200), + [anon_sym_i128] = ACTIONS(1200), + [anon_sym_isize] = ACTIONS(1200), + [anon_sym_usize] = ACTIONS(1200), + [anon_sym_f32] = ACTIONS(1200), + [anon_sym_f64] = ACTIONS(1200), + [anon_sym_bool] = ACTIONS(1200), + [anon_sym_str] = ACTIONS(1200), + [anon_sym_char] = ACTIONS(1200), + [anon_sym_SQUOTE] = ACTIONS(1200), + [anon_sym_async] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [anon_sym_fn] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_impl] = ACTIONS(1200), + [anon_sym_let] = ACTIONS(1200), + [anon_sym_loop] = ACTIONS(1200), + [anon_sym_match] = ACTIONS(1200), + [anon_sym_mod] = ACTIONS(1200), + [anon_sym_pub] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_struct] = ACTIONS(1200), + [anon_sym_trait] = ACTIONS(1200), + [anon_sym_type] = ACTIONS(1200), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_unsafe] = ACTIONS(1200), + [anon_sym_use] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_POUND] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1198), + [anon_sym_extern] = ACTIONS(1200), + [anon_sym_LT] = ACTIONS(1198), + [anon_sym_COLON_COLON] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_DOT_DOT] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(1198), + [anon_sym_yield] = ACTIONS(1200), + [anon_sym_move] = ACTIONS(1200), + [sym_integer_literal] = ACTIONS(1198), + [aux_sym_string_literal_token1] = ACTIONS(1198), + [sym_char_literal] = ACTIONS(1198), + [anon_sym_true] = ACTIONS(1200), + [anon_sym_false] = ACTIONS(1200), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1198), + [sym_raw_string_literal] = ACTIONS(1198), + [sym_float_literal] = ACTIONS(1198), [sym_block_comment] = ACTIONS(3), }, [285] = { - [ts_builtin_sym_end] = ACTIONS(1180), - [sym_identifier] = ACTIONS(1182), - [anon_sym_SEMI] = ACTIONS(1180), - [anon_sym_macro_rules_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(1180), - [anon_sym_LBRACE] = ACTIONS(1180), - [anon_sym_RBRACE] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_u8] = ACTIONS(1182), - [anon_sym_i8] = ACTIONS(1182), - [anon_sym_u16] = ACTIONS(1182), - [anon_sym_i16] = ACTIONS(1182), - [anon_sym_u32] = ACTIONS(1182), - [anon_sym_i32] = ACTIONS(1182), - [anon_sym_u64] = ACTIONS(1182), - [anon_sym_i64] = ACTIONS(1182), - [anon_sym_u128] = ACTIONS(1182), - [anon_sym_i128] = ACTIONS(1182), - [anon_sym_isize] = ACTIONS(1182), - [anon_sym_usize] = ACTIONS(1182), - [anon_sym_f32] = ACTIONS(1182), - [anon_sym_f64] = ACTIONS(1182), - [anon_sym_bool] = ACTIONS(1182), - [anon_sym_str] = ACTIONS(1182), - [anon_sym_char] = ACTIONS(1182), - [anon_sym_SQUOTE] = ACTIONS(1182), - [anon_sym_async] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1182), - [anon_sym_const] = ACTIONS(1182), - [anon_sym_continue] = ACTIONS(1182), - [anon_sym_default] = ACTIONS(1182), - [anon_sym_enum] = ACTIONS(1182), - [anon_sym_fn] = ACTIONS(1182), - [anon_sym_for] = ACTIONS(1182), - [anon_sym_if] = ACTIONS(1182), - [anon_sym_impl] = ACTIONS(1182), - [anon_sym_let] = ACTIONS(1182), - [anon_sym_loop] = ACTIONS(1182), - [anon_sym_match] = ACTIONS(1182), - [anon_sym_mod] = ACTIONS(1182), - [anon_sym_pub] = ACTIONS(1182), - [anon_sym_return] = ACTIONS(1182), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_struct] = ACTIONS(1182), - [anon_sym_trait] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_union] = ACTIONS(1182), - [anon_sym_unsafe] = ACTIONS(1182), - [anon_sym_use] = ACTIONS(1182), - [anon_sym_while] = ACTIONS(1182), - [anon_sym_POUND] = ACTIONS(1180), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_extern] = ACTIONS(1182), - [anon_sym_LT] = ACTIONS(1180), - [anon_sym_COLON_COLON] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(1180), - [anon_sym_DOT_DOT] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_yield] = ACTIONS(1182), - [anon_sym_move] = ACTIONS(1182), - [sym_integer_literal] = ACTIONS(1180), - [aux_sym_string_literal_token1] = ACTIONS(1180), - [sym_char_literal] = ACTIONS(1180), - [anon_sym_true] = ACTIONS(1182), - [anon_sym_false] = ACTIONS(1182), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1182), - [sym_super] = ACTIONS(1182), - [sym_crate] = ACTIONS(1182), - [sym_metavariable] = ACTIONS(1180), - [sym_raw_string_literal] = ACTIONS(1180), - [sym_float_literal] = ACTIONS(1180), + [ts_builtin_sym_end] = ACTIONS(1202), + [sym_identifier] = ACTIONS(1204), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_macro_rules_BANG] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_SQUOTE] = ACTIONS(1204), + [anon_sym_async] = ACTIONS(1204), + [anon_sym_break] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1204), + [anon_sym_continue] = ACTIONS(1204), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_enum] = ACTIONS(1204), + [anon_sym_fn] = ACTIONS(1204), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_impl] = ACTIONS(1204), + [anon_sym_let] = ACTIONS(1204), + [anon_sym_loop] = ACTIONS(1204), + [anon_sym_match] = ACTIONS(1204), + [anon_sym_mod] = ACTIONS(1204), + [anon_sym_pub] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1204), + [anon_sym_static] = ACTIONS(1204), + [anon_sym_struct] = ACTIONS(1204), + [anon_sym_trait] = ACTIONS(1204), + [anon_sym_type] = ACTIONS(1204), + [anon_sym_union] = ACTIONS(1204), + [anon_sym_unsafe] = ACTIONS(1204), + [anon_sym_use] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1204), + [anon_sym_POUND] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_extern] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(1202), + [anon_sym_COLON_COLON] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_DOT_DOT] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_PIPE] = ACTIONS(1202), + [anon_sym_yield] = ACTIONS(1204), + [anon_sym_move] = ACTIONS(1204), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1202), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1204), + [anon_sym_false] = ACTIONS(1204), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1204), + [sym_super] = ACTIONS(1204), + [sym_crate] = ACTIONS(1204), + [sym_metavariable] = ACTIONS(1202), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, [286] = { - [ts_builtin_sym_end] = ACTIONS(1184), - [sym_identifier] = ACTIONS(1186), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_macro_rules_BANG] = ACTIONS(1184), - [anon_sym_LPAREN] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1184), - [anon_sym_RBRACE] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1184), - [anon_sym_u8] = ACTIONS(1186), - [anon_sym_i8] = ACTIONS(1186), - [anon_sym_u16] = ACTIONS(1186), - [anon_sym_i16] = ACTIONS(1186), - [anon_sym_u32] = ACTIONS(1186), - [anon_sym_i32] = ACTIONS(1186), - [anon_sym_u64] = ACTIONS(1186), - [anon_sym_i64] = ACTIONS(1186), - [anon_sym_u128] = ACTIONS(1186), - [anon_sym_i128] = ACTIONS(1186), - [anon_sym_isize] = ACTIONS(1186), - [anon_sym_usize] = ACTIONS(1186), - [anon_sym_f32] = ACTIONS(1186), - [anon_sym_f64] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_str] = ACTIONS(1186), - [anon_sym_char] = ACTIONS(1186), - [anon_sym_SQUOTE] = ACTIONS(1186), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_default] = ACTIONS(1186), - [anon_sym_enum] = ACTIONS(1186), - [anon_sym_fn] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_impl] = ACTIONS(1186), - [anon_sym_let] = ACTIONS(1186), - [anon_sym_loop] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_mod] = ACTIONS(1186), - [anon_sym_pub] = ACTIONS(1186), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_struct] = ACTIONS(1186), - [anon_sym_trait] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(1186), - [anon_sym_union] = ACTIONS(1186), - [anon_sym_unsafe] = ACTIONS(1186), - [anon_sym_use] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_POUND] = ACTIONS(1184), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_extern] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1184), - [anon_sym_COLON_COLON] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_DOT_DOT] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_yield] = ACTIONS(1186), - [anon_sym_move] = ACTIONS(1186), - [sym_integer_literal] = ACTIONS(1184), - [aux_sym_string_literal_token1] = ACTIONS(1184), - [sym_char_literal] = ACTIONS(1184), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1186), - [sym_super] = ACTIONS(1186), - [sym_crate] = ACTIONS(1186), - [sym_metavariable] = ACTIONS(1184), - [sym_raw_string_literal] = ACTIONS(1184), - [sym_float_literal] = ACTIONS(1184), + [ts_builtin_sym_end] = ACTIONS(1206), + [sym_identifier] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_macro_rules_BANG] = ACTIONS(1206), + [anon_sym_LPAREN] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_u8] = ACTIONS(1208), + [anon_sym_i8] = ACTIONS(1208), + [anon_sym_u16] = ACTIONS(1208), + [anon_sym_i16] = ACTIONS(1208), + [anon_sym_u32] = ACTIONS(1208), + [anon_sym_i32] = ACTIONS(1208), + [anon_sym_u64] = ACTIONS(1208), + [anon_sym_i64] = ACTIONS(1208), + [anon_sym_u128] = ACTIONS(1208), + [anon_sym_i128] = ACTIONS(1208), + [anon_sym_isize] = ACTIONS(1208), + [anon_sym_usize] = ACTIONS(1208), + [anon_sym_f32] = ACTIONS(1208), + [anon_sym_f64] = ACTIONS(1208), + [anon_sym_bool] = ACTIONS(1208), + [anon_sym_str] = ACTIONS(1208), + [anon_sym_char] = ACTIONS(1208), + [anon_sym_SQUOTE] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [anon_sym_fn] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_impl] = ACTIONS(1208), + [anon_sym_let] = ACTIONS(1208), + [anon_sym_loop] = ACTIONS(1208), + [anon_sym_match] = ACTIONS(1208), + [anon_sym_mod] = ACTIONS(1208), + [anon_sym_pub] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_struct] = ACTIONS(1208), + [anon_sym_trait] = ACTIONS(1208), + [anon_sym_type] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), + [anon_sym_unsafe] = ACTIONS(1208), + [anon_sym_use] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_POUND] = ACTIONS(1206), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_extern] = ACTIONS(1208), + [anon_sym_LT] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(1206), + [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_DOT_DOT] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_PIPE] = ACTIONS(1206), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_move] = ACTIONS(1208), + [sym_integer_literal] = ACTIONS(1206), + [aux_sym_string_literal_token1] = ACTIONS(1206), + [sym_char_literal] = ACTIONS(1206), + [anon_sym_true] = ACTIONS(1208), + [anon_sym_false] = ACTIONS(1208), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1208), + [sym_super] = ACTIONS(1208), + [sym_crate] = ACTIONS(1208), + [sym_metavariable] = ACTIONS(1206), + [sym_raw_string_literal] = ACTIONS(1206), + [sym_float_literal] = ACTIONS(1206), [sym_block_comment] = ACTIONS(3), }, [287] = { - [ts_builtin_sym_end] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_macro_rules_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1188), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_RBRACE] = ACTIONS(1188), - [anon_sym_LBRACK] = ACTIONS(1188), - [anon_sym_STAR] = ACTIONS(1188), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u128] = ACTIONS(1190), - [anon_sym_i128] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_str] = ACTIONS(1190), - [anon_sym_char] = ACTIONS(1190), - [anon_sym_SQUOTE] = ACTIONS(1190), - [anon_sym_async] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_fn] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_impl] = ACTIONS(1190), - [anon_sym_let] = ACTIONS(1190), - [anon_sym_loop] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_mod] = ACTIONS(1190), - [anon_sym_pub] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_trait] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_unsafe] = ACTIONS(1190), - [anon_sym_use] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_COLON_COLON] = ACTIONS(1188), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_DOT_DOT] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_yield] = ACTIONS(1190), - [anon_sym_move] = ACTIONS(1190), - [sym_integer_literal] = ACTIONS(1188), - [aux_sym_string_literal_token1] = ACTIONS(1188), - [sym_char_literal] = ACTIONS(1188), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1190), - [sym_super] = ACTIONS(1190), - [sym_crate] = ACTIONS(1190), - [sym_metavariable] = ACTIONS(1188), - [sym_raw_string_literal] = ACTIONS(1188), - [sym_float_literal] = ACTIONS(1188), + [ts_builtin_sym_end] = ACTIONS(1210), + [sym_identifier] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1210), + [anon_sym_macro_rules_BANG] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_RBRACE] = ACTIONS(1210), + [anon_sym_LBRACK] = ACTIONS(1210), + [anon_sym_STAR] = ACTIONS(1210), + [anon_sym_u8] = ACTIONS(1212), + [anon_sym_i8] = ACTIONS(1212), + [anon_sym_u16] = ACTIONS(1212), + [anon_sym_i16] = ACTIONS(1212), + [anon_sym_u32] = ACTIONS(1212), + [anon_sym_i32] = ACTIONS(1212), + [anon_sym_u64] = ACTIONS(1212), + [anon_sym_i64] = ACTIONS(1212), + [anon_sym_u128] = ACTIONS(1212), + [anon_sym_i128] = ACTIONS(1212), + [anon_sym_isize] = ACTIONS(1212), + [anon_sym_usize] = ACTIONS(1212), + [anon_sym_f32] = ACTIONS(1212), + [anon_sym_f64] = ACTIONS(1212), + [anon_sym_bool] = ACTIONS(1212), + [anon_sym_str] = ACTIONS(1212), + [anon_sym_char] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_default] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_fn] = ACTIONS(1212), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_impl] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_loop] = ACTIONS(1212), + [anon_sym_match] = ACTIONS(1212), + [anon_sym_mod] = ACTIONS(1212), + [anon_sym_pub] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1212), + [anon_sym_trait] = ACTIONS(1212), + [anon_sym_type] = ACTIONS(1212), + [anon_sym_union] = ACTIONS(1212), + [anon_sym_unsafe] = ACTIONS(1212), + [anon_sym_use] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_POUND] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_DOT_DOT] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_PIPE] = ACTIONS(1210), + [anon_sym_yield] = ACTIONS(1212), + [anon_sym_move] = ACTIONS(1212), + [sym_integer_literal] = ACTIONS(1210), + [aux_sym_string_literal_token1] = ACTIONS(1210), + [sym_char_literal] = ACTIONS(1210), + [anon_sym_true] = ACTIONS(1212), + [anon_sym_false] = ACTIONS(1212), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1212), + [sym_super] = ACTIONS(1212), + [sym_crate] = ACTIONS(1212), + [sym_metavariable] = ACTIONS(1210), + [sym_raw_string_literal] = ACTIONS(1210), + [sym_float_literal] = ACTIONS(1210), [sym_block_comment] = ACTIONS(3), }, [288] = { - [ts_builtin_sym_end] = ACTIONS(1192), - [sym_identifier] = ACTIONS(1194), - [anon_sym_SEMI] = ACTIONS(1192), - [anon_sym_macro_rules_BANG] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_RBRACE] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1192), - [anon_sym_STAR] = ACTIONS(1192), - [anon_sym_u8] = ACTIONS(1194), - [anon_sym_i8] = ACTIONS(1194), - [anon_sym_u16] = ACTIONS(1194), - [anon_sym_i16] = ACTIONS(1194), - [anon_sym_u32] = ACTIONS(1194), - [anon_sym_i32] = ACTIONS(1194), - [anon_sym_u64] = ACTIONS(1194), - [anon_sym_i64] = ACTIONS(1194), - [anon_sym_u128] = ACTIONS(1194), - [anon_sym_i128] = ACTIONS(1194), - [anon_sym_isize] = ACTIONS(1194), - [anon_sym_usize] = ACTIONS(1194), - [anon_sym_f32] = ACTIONS(1194), - [anon_sym_f64] = ACTIONS(1194), - [anon_sym_bool] = ACTIONS(1194), - [anon_sym_str] = ACTIONS(1194), - [anon_sym_char] = ACTIONS(1194), - [anon_sym_SQUOTE] = ACTIONS(1194), - [anon_sym_async] = ACTIONS(1194), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_const] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_default] = ACTIONS(1194), - [anon_sym_enum] = ACTIONS(1194), - [anon_sym_fn] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_impl] = ACTIONS(1194), - [anon_sym_let] = ACTIONS(1194), - [anon_sym_loop] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(1194), - [anon_sym_mod] = ACTIONS(1194), - [anon_sym_pub] = ACTIONS(1194), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_static] = ACTIONS(1194), - [anon_sym_struct] = ACTIONS(1194), - [anon_sym_trait] = ACTIONS(1194), - [anon_sym_type] = ACTIONS(1194), - [anon_sym_union] = ACTIONS(1194), - [anon_sym_unsafe] = ACTIONS(1194), - [anon_sym_use] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(1192), - [anon_sym_BANG] = ACTIONS(1192), - [anon_sym_extern] = ACTIONS(1194), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_COLON_COLON] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_DOT_DOT] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_yield] = ACTIONS(1194), - [anon_sym_move] = ACTIONS(1194), - [sym_integer_literal] = ACTIONS(1192), - [aux_sym_string_literal_token1] = ACTIONS(1192), - [sym_char_literal] = ACTIONS(1192), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1194), - [sym_super] = ACTIONS(1194), - [sym_crate] = ACTIONS(1194), - [sym_metavariable] = ACTIONS(1192), - [sym_raw_string_literal] = ACTIONS(1192), - [sym_float_literal] = ACTIONS(1192), + [ts_builtin_sym_end] = ACTIONS(1214), + [sym_identifier] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_macro_rules_BANG] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_RBRACE] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1214), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_u8] = ACTIONS(1216), + [anon_sym_i8] = ACTIONS(1216), + [anon_sym_u16] = ACTIONS(1216), + [anon_sym_i16] = ACTIONS(1216), + [anon_sym_u32] = ACTIONS(1216), + [anon_sym_i32] = ACTIONS(1216), + [anon_sym_u64] = ACTIONS(1216), + [anon_sym_i64] = ACTIONS(1216), + [anon_sym_u128] = ACTIONS(1216), + [anon_sym_i128] = ACTIONS(1216), + [anon_sym_isize] = ACTIONS(1216), + [anon_sym_usize] = ACTIONS(1216), + [anon_sym_f32] = ACTIONS(1216), + [anon_sym_f64] = ACTIONS(1216), + [anon_sym_bool] = ACTIONS(1216), + [anon_sym_str] = ACTIONS(1216), + [anon_sym_char] = ACTIONS(1216), + [anon_sym_SQUOTE] = ACTIONS(1216), + [anon_sym_async] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_const] = ACTIONS(1216), + [anon_sym_continue] = ACTIONS(1216), + [anon_sym_default] = ACTIONS(1216), + [anon_sym_enum] = ACTIONS(1216), + [anon_sym_fn] = ACTIONS(1216), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_if] = ACTIONS(1216), + [anon_sym_impl] = ACTIONS(1216), + [anon_sym_let] = ACTIONS(1216), + [anon_sym_loop] = ACTIONS(1216), + [anon_sym_match] = ACTIONS(1216), + [anon_sym_mod] = ACTIONS(1216), + [anon_sym_pub] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(1216), + [anon_sym_struct] = ACTIONS(1216), + [anon_sym_trait] = ACTIONS(1216), + [anon_sym_type] = ACTIONS(1216), + [anon_sym_union] = ACTIONS(1216), + [anon_sym_unsafe] = ACTIONS(1216), + [anon_sym_use] = ACTIONS(1216), + [anon_sym_while] = ACTIONS(1216), + [anon_sym_POUND] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1216), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_DOT_DOT] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(1214), + [anon_sym_yield] = ACTIONS(1216), + [anon_sym_move] = ACTIONS(1216), + [sym_integer_literal] = ACTIONS(1214), + [aux_sym_string_literal_token1] = ACTIONS(1214), + [sym_char_literal] = ACTIONS(1214), + [anon_sym_true] = ACTIONS(1216), + [anon_sym_false] = ACTIONS(1216), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1214), + [sym_raw_string_literal] = ACTIONS(1214), + [sym_float_literal] = ACTIONS(1214), [sym_block_comment] = ACTIONS(3), }, [289] = { - [ts_builtin_sym_end] = ACTIONS(1196), - [sym_identifier] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1196), - [anon_sym_macro_rules_BANG] = ACTIONS(1196), - [anon_sym_LPAREN] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1196), - [anon_sym_u8] = ACTIONS(1198), - [anon_sym_i8] = ACTIONS(1198), - [anon_sym_u16] = ACTIONS(1198), - [anon_sym_i16] = ACTIONS(1198), - [anon_sym_u32] = ACTIONS(1198), - [anon_sym_i32] = ACTIONS(1198), - [anon_sym_u64] = ACTIONS(1198), - [anon_sym_i64] = ACTIONS(1198), - [anon_sym_u128] = ACTIONS(1198), - [anon_sym_i128] = ACTIONS(1198), - [anon_sym_isize] = ACTIONS(1198), - [anon_sym_usize] = ACTIONS(1198), - [anon_sym_f32] = ACTIONS(1198), - [anon_sym_f64] = ACTIONS(1198), - [anon_sym_bool] = ACTIONS(1198), - [anon_sym_str] = ACTIONS(1198), - [anon_sym_char] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_async] = ACTIONS(1198), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_const] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1198), - [anon_sym_default] = ACTIONS(1198), - [anon_sym_enum] = ACTIONS(1198), - [anon_sym_fn] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1198), - [anon_sym_impl] = ACTIONS(1198), - [anon_sym_let] = ACTIONS(1198), - [anon_sym_loop] = ACTIONS(1198), - [anon_sym_match] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_pub] = ACTIONS(1198), - [anon_sym_return] = ACTIONS(1198), - [anon_sym_static] = ACTIONS(1198), - [anon_sym_struct] = ACTIONS(1198), - [anon_sym_trait] = ACTIONS(1198), - [anon_sym_type] = ACTIONS(1198), - [anon_sym_union] = ACTIONS(1198), - [anon_sym_unsafe] = ACTIONS(1198), - [anon_sym_use] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1198), - [anon_sym_POUND] = ACTIONS(1196), - [anon_sym_BANG] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1198), - [anon_sym_LT] = ACTIONS(1196), - [anon_sym_COLON_COLON] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_DOT_DOT] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1196), - [anon_sym_yield] = ACTIONS(1198), - [anon_sym_move] = ACTIONS(1198), - [sym_integer_literal] = ACTIONS(1196), - [aux_sym_string_literal_token1] = ACTIONS(1196), - [sym_char_literal] = ACTIONS(1196), - [anon_sym_true] = ACTIONS(1198), - [anon_sym_false] = ACTIONS(1198), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1198), - [sym_super] = ACTIONS(1198), - [sym_crate] = ACTIONS(1198), - [sym_metavariable] = ACTIONS(1196), - [sym_raw_string_literal] = ACTIONS(1196), - [sym_float_literal] = ACTIONS(1196), + [ts_builtin_sym_end] = ACTIONS(1218), + [sym_identifier] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_macro_rules_BANG] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_RBRACE] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_u8] = ACTIONS(1220), + [anon_sym_i8] = ACTIONS(1220), + [anon_sym_u16] = ACTIONS(1220), + [anon_sym_i16] = ACTIONS(1220), + [anon_sym_u32] = ACTIONS(1220), + [anon_sym_i32] = ACTIONS(1220), + [anon_sym_u64] = ACTIONS(1220), + [anon_sym_i64] = ACTIONS(1220), + [anon_sym_u128] = ACTIONS(1220), + [anon_sym_i128] = ACTIONS(1220), + [anon_sym_isize] = ACTIONS(1220), + [anon_sym_usize] = ACTIONS(1220), + [anon_sym_f32] = ACTIONS(1220), + [anon_sym_f64] = ACTIONS(1220), + [anon_sym_bool] = ACTIONS(1220), + [anon_sym_str] = ACTIONS(1220), + [anon_sym_char] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1220), + [anon_sym_break] = ACTIONS(1220), + [anon_sym_const] = ACTIONS(1220), + [anon_sym_continue] = ACTIONS(1220), + [anon_sym_default] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_fn] = ACTIONS(1220), + [anon_sym_for] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_impl] = ACTIONS(1220), + [anon_sym_let] = ACTIONS(1220), + [anon_sym_loop] = ACTIONS(1220), + [anon_sym_match] = ACTIONS(1220), + [anon_sym_mod] = ACTIONS(1220), + [anon_sym_pub] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1220), + [anon_sym_trait] = ACTIONS(1220), + [anon_sym_type] = ACTIONS(1220), + [anon_sym_union] = ACTIONS(1220), + [anon_sym_unsafe] = ACTIONS(1220), + [anon_sym_use] = ACTIONS(1220), + [anon_sym_while] = ACTIONS(1220), + [anon_sym_POUND] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_extern] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(1218), + [anon_sym_COLON_COLON] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_DOT_DOT] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_yield] = ACTIONS(1220), + [anon_sym_move] = ACTIONS(1220), + [sym_integer_literal] = ACTIONS(1218), + [aux_sym_string_literal_token1] = ACTIONS(1218), + [sym_char_literal] = ACTIONS(1218), + [anon_sym_true] = ACTIONS(1220), + [anon_sym_false] = ACTIONS(1220), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1220), + [sym_super] = ACTIONS(1220), + [sym_crate] = ACTIONS(1220), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(1218), + [sym_float_literal] = ACTIONS(1218), [sym_block_comment] = ACTIONS(3), }, [290] = { - [ts_builtin_sym_end] = ACTIONS(1200), - [sym_identifier] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1200), - [anon_sym_macro_rules_BANG] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1200), - [anon_sym_RBRACE] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1200), - [anon_sym_u8] = ACTIONS(1202), - [anon_sym_i8] = ACTIONS(1202), - [anon_sym_u16] = ACTIONS(1202), - [anon_sym_i16] = ACTIONS(1202), - [anon_sym_u32] = ACTIONS(1202), - [anon_sym_i32] = ACTIONS(1202), - [anon_sym_u64] = ACTIONS(1202), - [anon_sym_i64] = ACTIONS(1202), - [anon_sym_u128] = ACTIONS(1202), - [anon_sym_i128] = ACTIONS(1202), - [anon_sym_isize] = ACTIONS(1202), - [anon_sym_usize] = ACTIONS(1202), - [anon_sym_f32] = ACTIONS(1202), - [anon_sym_f64] = ACTIONS(1202), - [anon_sym_bool] = ACTIONS(1202), - [anon_sym_str] = ACTIONS(1202), - [anon_sym_char] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_async] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_const] = ACTIONS(1202), - [anon_sym_continue] = ACTIONS(1202), - [anon_sym_default] = ACTIONS(1202), - [anon_sym_enum] = ACTIONS(1202), - [anon_sym_fn] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1202), - [anon_sym_if] = ACTIONS(1202), - [anon_sym_impl] = ACTIONS(1202), - [anon_sym_let] = ACTIONS(1202), - [anon_sym_loop] = ACTIONS(1202), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_mod] = ACTIONS(1202), - [anon_sym_pub] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_struct] = ACTIONS(1202), - [anon_sym_trait] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_union] = ACTIONS(1202), - [anon_sym_unsafe] = ACTIONS(1202), - [anon_sym_use] = ACTIONS(1202), - [anon_sym_while] = ACTIONS(1202), - [anon_sym_POUND] = ACTIONS(1200), - [anon_sym_BANG] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1202), - [anon_sym_LT] = ACTIONS(1200), - [anon_sym_COLON_COLON] = ACTIONS(1200), - [anon_sym_AMP] = ACTIONS(1200), - [anon_sym_DOT_DOT] = ACTIONS(1200), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PIPE] = ACTIONS(1200), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_move] = ACTIONS(1202), - [sym_integer_literal] = ACTIONS(1200), - [aux_sym_string_literal_token1] = ACTIONS(1200), - [sym_char_literal] = ACTIONS(1200), - [anon_sym_true] = ACTIONS(1202), - [anon_sym_false] = ACTIONS(1202), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1202), - [sym_super] = ACTIONS(1202), - [sym_crate] = ACTIONS(1202), - [sym_metavariable] = ACTIONS(1200), - [sym_raw_string_literal] = ACTIONS(1200), - [sym_float_literal] = ACTIONS(1200), + [ts_builtin_sym_end] = ACTIONS(1222), + [sym_identifier] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_macro_rules_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_SQUOTE] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1224), + [anon_sym_break] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_continue] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1224), + [anon_sym_fn] = ACTIONS(1224), + [anon_sym_for] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1224), + [anon_sym_impl] = ACTIONS(1224), + [anon_sym_let] = ACTIONS(1224), + [anon_sym_loop] = ACTIONS(1224), + [anon_sym_match] = ACTIONS(1224), + [anon_sym_mod] = ACTIONS(1224), + [anon_sym_pub] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1224), + [anon_sym_static] = ACTIONS(1224), + [anon_sym_struct] = ACTIONS(1224), + [anon_sym_trait] = ACTIONS(1224), + [anon_sym_type] = ACTIONS(1224), + [anon_sym_union] = ACTIONS(1224), + [anon_sym_unsafe] = ACTIONS(1224), + [anon_sym_use] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1224), + [anon_sym_POUND] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1224), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_COLON_COLON] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_DOT_DOT] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_PIPE] = ACTIONS(1222), + [anon_sym_yield] = ACTIONS(1224), + [anon_sym_move] = ACTIONS(1224), + [sym_integer_literal] = ACTIONS(1222), + [aux_sym_string_literal_token1] = ACTIONS(1222), + [sym_char_literal] = ACTIONS(1222), + [anon_sym_true] = ACTIONS(1224), + [anon_sym_false] = ACTIONS(1224), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1224), + [sym_super] = ACTIONS(1224), + [sym_crate] = ACTIONS(1224), + [sym_metavariable] = ACTIONS(1222), + [sym_raw_string_literal] = ACTIONS(1222), + [sym_float_literal] = ACTIONS(1222), [sym_block_comment] = ACTIONS(3), }, [291] = { - [ts_builtin_sym_end] = ACTIONS(1204), - [sym_identifier] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1204), - [anon_sym_macro_rules_BANG] = ACTIONS(1204), - [anon_sym_LPAREN] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1204), - [anon_sym_RBRACE] = ACTIONS(1204), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u128] = ACTIONS(1206), - [anon_sym_i128] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_str] = ACTIONS(1206), - [anon_sym_char] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_async] = ACTIONS(1206), - [anon_sym_break] = ACTIONS(1206), - [anon_sym_const] = ACTIONS(1206), - [anon_sym_continue] = ACTIONS(1206), - [anon_sym_default] = ACTIONS(1206), - [anon_sym_enum] = ACTIONS(1206), - [anon_sym_fn] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1206), - [anon_sym_impl] = ACTIONS(1206), - [anon_sym_let] = ACTIONS(1206), - [anon_sym_loop] = ACTIONS(1206), - [anon_sym_match] = ACTIONS(1206), - [anon_sym_mod] = ACTIONS(1206), - [anon_sym_pub] = ACTIONS(1206), - [anon_sym_return] = ACTIONS(1206), - [anon_sym_static] = ACTIONS(1206), - [anon_sym_struct] = ACTIONS(1206), - [anon_sym_trait] = ACTIONS(1206), - [anon_sym_type] = ACTIONS(1206), - [anon_sym_union] = ACTIONS(1206), - [anon_sym_unsafe] = ACTIONS(1206), - [anon_sym_use] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_POUND] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1206), - [anon_sym_LT] = ACTIONS(1204), - [anon_sym_COLON_COLON] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_DOT_DOT] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PIPE] = ACTIONS(1204), - [anon_sym_yield] = ACTIONS(1206), - [anon_sym_move] = ACTIONS(1206), - [sym_integer_literal] = ACTIONS(1204), - [aux_sym_string_literal_token1] = ACTIONS(1204), - [sym_char_literal] = ACTIONS(1204), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1206), - [sym_super] = ACTIONS(1206), - [sym_crate] = ACTIONS(1206), - [sym_metavariable] = ACTIONS(1204), - [sym_raw_string_literal] = ACTIONS(1204), - [sym_float_literal] = ACTIONS(1204), + [ts_builtin_sym_end] = ACTIONS(1226), + [sym_identifier] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_macro_rules_BANG] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(1226), + [anon_sym_u8] = ACTIONS(1228), + [anon_sym_i8] = ACTIONS(1228), + [anon_sym_u16] = ACTIONS(1228), + [anon_sym_i16] = ACTIONS(1228), + [anon_sym_u32] = ACTIONS(1228), + [anon_sym_i32] = ACTIONS(1228), + [anon_sym_u64] = ACTIONS(1228), + [anon_sym_i64] = ACTIONS(1228), + [anon_sym_u128] = ACTIONS(1228), + [anon_sym_i128] = ACTIONS(1228), + [anon_sym_isize] = ACTIONS(1228), + [anon_sym_usize] = ACTIONS(1228), + [anon_sym_f32] = ACTIONS(1228), + [anon_sym_f64] = ACTIONS(1228), + [anon_sym_bool] = ACTIONS(1228), + [anon_sym_str] = ACTIONS(1228), + [anon_sym_char] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_async] = ACTIONS(1228), + [anon_sym_break] = ACTIONS(1228), + [anon_sym_const] = ACTIONS(1228), + [anon_sym_continue] = ACTIONS(1228), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_enum] = ACTIONS(1228), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_impl] = ACTIONS(1228), + [anon_sym_let] = ACTIONS(1228), + [anon_sym_loop] = ACTIONS(1228), + [anon_sym_match] = ACTIONS(1228), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_pub] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1228), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_struct] = ACTIONS(1228), + [anon_sym_trait] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_unsafe] = ACTIONS(1228), + [anon_sym_use] = ACTIONS(1228), + [anon_sym_while] = ACTIONS(1228), + [anon_sym_POUND] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_extern] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1226), + [anon_sym_COLON_COLON] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_DOT_DOT] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_yield] = ACTIONS(1228), + [anon_sym_move] = ACTIONS(1228), + [sym_integer_literal] = ACTIONS(1226), + [aux_sym_string_literal_token1] = ACTIONS(1226), + [sym_char_literal] = ACTIONS(1226), + [anon_sym_true] = ACTIONS(1228), + [anon_sym_false] = ACTIONS(1228), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1228), + [sym_super] = ACTIONS(1228), + [sym_crate] = ACTIONS(1228), + [sym_metavariable] = ACTIONS(1226), + [sym_raw_string_literal] = ACTIONS(1226), + [sym_float_literal] = ACTIONS(1226), [sym_block_comment] = ACTIONS(3), }, [292] = { - [ts_builtin_sym_end] = ACTIONS(1208), - [sym_identifier] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym_macro_rules_BANG] = ACTIONS(1208), - [anon_sym_LPAREN] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1208), - [anon_sym_RBRACE] = ACTIONS(1208), - [anon_sym_LBRACK] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_u8] = ACTIONS(1210), - [anon_sym_i8] = ACTIONS(1210), - [anon_sym_u16] = ACTIONS(1210), - [anon_sym_i16] = ACTIONS(1210), - [anon_sym_u32] = ACTIONS(1210), - [anon_sym_i32] = ACTIONS(1210), - [anon_sym_u64] = ACTIONS(1210), - [anon_sym_i64] = ACTIONS(1210), - [anon_sym_u128] = ACTIONS(1210), - [anon_sym_i128] = ACTIONS(1210), - [anon_sym_isize] = ACTIONS(1210), - [anon_sym_usize] = ACTIONS(1210), - [anon_sym_f32] = ACTIONS(1210), - [anon_sym_f64] = ACTIONS(1210), - [anon_sym_bool] = ACTIONS(1210), - [anon_sym_str] = ACTIONS(1210), - [anon_sym_char] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_async] = ACTIONS(1210), - [anon_sym_break] = ACTIONS(1210), - [anon_sym_const] = ACTIONS(1210), - [anon_sym_continue] = ACTIONS(1210), - [anon_sym_default] = ACTIONS(1210), - [anon_sym_enum] = ACTIONS(1210), - [anon_sym_fn] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1210), - [anon_sym_if] = ACTIONS(1210), - [anon_sym_impl] = ACTIONS(1210), - [anon_sym_let] = ACTIONS(1210), - [anon_sym_loop] = ACTIONS(1210), - [anon_sym_match] = ACTIONS(1210), - [anon_sym_mod] = ACTIONS(1210), - [anon_sym_pub] = ACTIONS(1210), - [anon_sym_return] = ACTIONS(1210), - [anon_sym_static] = ACTIONS(1210), - [anon_sym_struct] = ACTIONS(1210), - [anon_sym_trait] = ACTIONS(1210), - [anon_sym_type] = ACTIONS(1210), - [anon_sym_union] = ACTIONS(1210), - [anon_sym_unsafe] = ACTIONS(1210), - [anon_sym_use] = ACTIONS(1210), - [anon_sym_while] = ACTIONS(1210), - [anon_sym_POUND] = ACTIONS(1208), - [anon_sym_BANG] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1210), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1210), - [anon_sym_move] = ACTIONS(1210), - [sym_integer_literal] = ACTIONS(1208), - [aux_sym_string_literal_token1] = ACTIONS(1208), - [sym_char_literal] = ACTIONS(1208), - [anon_sym_true] = ACTIONS(1210), - [anon_sym_false] = ACTIONS(1210), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1210), - [sym_super] = ACTIONS(1210), - [sym_crate] = ACTIONS(1210), - [sym_metavariable] = ACTIONS(1208), - [sym_raw_string_literal] = ACTIONS(1208), - [sym_float_literal] = ACTIONS(1208), + [ts_builtin_sym_end] = ACTIONS(1230), + [sym_identifier] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym_macro_rules_BANG] = ACTIONS(1230), + [anon_sym_LPAREN] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1230), + [anon_sym_RBRACE] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_u8] = ACTIONS(1232), + [anon_sym_i8] = ACTIONS(1232), + [anon_sym_u16] = ACTIONS(1232), + [anon_sym_i16] = ACTIONS(1232), + [anon_sym_u32] = ACTIONS(1232), + [anon_sym_i32] = ACTIONS(1232), + [anon_sym_u64] = ACTIONS(1232), + [anon_sym_i64] = ACTIONS(1232), + [anon_sym_u128] = ACTIONS(1232), + [anon_sym_i128] = ACTIONS(1232), + [anon_sym_isize] = ACTIONS(1232), + [anon_sym_usize] = ACTIONS(1232), + [anon_sym_f32] = ACTIONS(1232), + [anon_sym_f64] = ACTIONS(1232), + [anon_sym_bool] = ACTIONS(1232), + [anon_sym_str] = ACTIONS(1232), + [anon_sym_char] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1232), + [anon_sym_async] = ACTIONS(1232), + [anon_sym_break] = ACTIONS(1232), + [anon_sym_const] = ACTIONS(1232), + [anon_sym_continue] = ACTIONS(1232), + [anon_sym_default] = ACTIONS(1232), + [anon_sym_enum] = ACTIONS(1232), + [anon_sym_fn] = ACTIONS(1232), + [anon_sym_for] = ACTIONS(1232), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_let] = ACTIONS(1232), + [anon_sym_loop] = ACTIONS(1232), + [anon_sym_match] = ACTIONS(1232), + [anon_sym_mod] = ACTIONS(1232), + [anon_sym_pub] = ACTIONS(1232), + [anon_sym_return] = ACTIONS(1232), + [anon_sym_static] = ACTIONS(1232), + [anon_sym_struct] = ACTIONS(1232), + [anon_sym_trait] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1232), + [anon_sym_unsafe] = ACTIONS(1232), + [anon_sym_use] = ACTIONS(1232), + [anon_sym_while] = ACTIONS(1232), + [anon_sym_POUND] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(1230), + [anon_sym_extern] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_DOT_DOT] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_PIPE] = ACTIONS(1230), + [anon_sym_yield] = ACTIONS(1232), + [anon_sym_move] = ACTIONS(1232), + [sym_integer_literal] = ACTIONS(1230), + [aux_sym_string_literal_token1] = ACTIONS(1230), + [sym_char_literal] = ACTIONS(1230), + [anon_sym_true] = ACTIONS(1232), + [anon_sym_false] = ACTIONS(1232), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1232), + [sym_super] = ACTIONS(1232), + [sym_crate] = ACTIONS(1232), + [sym_metavariable] = ACTIONS(1230), + [sym_raw_string_literal] = ACTIONS(1230), + [sym_float_literal] = ACTIONS(1230), [sym_block_comment] = ACTIONS(3), }, [293] = { - [ts_builtin_sym_end] = ACTIONS(1212), - [sym_identifier] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1212), - [anon_sym_macro_rules_BANG] = ACTIONS(1212), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1212), - [anon_sym_RBRACE] = ACTIONS(1212), - [anon_sym_LBRACK] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1212), - [anon_sym_u8] = ACTIONS(1214), - [anon_sym_i8] = ACTIONS(1214), - [anon_sym_u16] = ACTIONS(1214), - [anon_sym_i16] = ACTIONS(1214), - [anon_sym_u32] = ACTIONS(1214), - [anon_sym_i32] = ACTIONS(1214), - [anon_sym_u64] = ACTIONS(1214), - [anon_sym_i64] = ACTIONS(1214), - [anon_sym_u128] = ACTIONS(1214), - [anon_sym_i128] = ACTIONS(1214), - [anon_sym_isize] = ACTIONS(1214), - [anon_sym_usize] = ACTIONS(1214), - [anon_sym_f32] = ACTIONS(1214), - [anon_sym_f64] = ACTIONS(1214), - [anon_sym_bool] = ACTIONS(1214), - [anon_sym_str] = ACTIONS(1214), - [anon_sym_char] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_async] = ACTIONS(1214), - [anon_sym_break] = ACTIONS(1214), - [anon_sym_const] = ACTIONS(1214), - [anon_sym_continue] = ACTIONS(1214), - [anon_sym_default] = ACTIONS(1214), - [anon_sym_enum] = ACTIONS(1214), - [anon_sym_fn] = ACTIONS(1214), - [anon_sym_for] = ACTIONS(1214), - [anon_sym_if] = ACTIONS(1214), - [anon_sym_impl] = ACTIONS(1214), - [anon_sym_let] = ACTIONS(1214), - [anon_sym_loop] = ACTIONS(1214), - [anon_sym_match] = ACTIONS(1214), - [anon_sym_mod] = ACTIONS(1214), - [anon_sym_pub] = ACTIONS(1214), - [anon_sym_return] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1214), - [anon_sym_struct] = ACTIONS(1214), - [anon_sym_trait] = ACTIONS(1214), - [anon_sym_type] = ACTIONS(1214), - [anon_sym_union] = ACTIONS(1214), - [anon_sym_unsafe] = ACTIONS(1214), - [anon_sym_use] = ACTIONS(1214), - [anon_sym_while] = ACTIONS(1214), - [anon_sym_POUND] = ACTIONS(1212), - [anon_sym_BANG] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1214), - [anon_sym_LT] = ACTIONS(1212), - [anon_sym_COLON_COLON] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(1212), - [anon_sym_DOT_DOT] = ACTIONS(1212), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PIPE] = ACTIONS(1212), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_move] = ACTIONS(1214), - [sym_integer_literal] = ACTIONS(1212), - [aux_sym_string_literal_token1] = ACTIONS(1212), - [sym_char_literal] = ACTIONS(1212), - [anon_sym_true] = ACTIONS(1214), - [anon_sym_false] = ACTIONS(1214), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1214), - [sym_super] = ACTIONS(1214), - [sym_crate] = ACTIONS(1214), - [sym_metavariable] = ACTIONS(1212), - [sym_raw_string_literal] = ACTIONS(1212), - [sym_float_literal] = ACTIONS(1212), + [ts_builtin_sym_end] = ACTIONS(1234), + [sym_identifier] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_macro_rules_BANG] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_u8] = ACTIONS(1236), + [anon_sym_i8] = ACTIONS(1236), + [anon_sym_u16] = ACTIONS(1236), + [anon_sym_i16] = ACTIONS(1236), + [anon_sym_u32] = ACTIONS(1236), + [anon_sym_i32] = ACTIONS(1236), + [anon_sym_u64] = ACTIONS(1236), + [anon_sym_i64] = ACTIONS(1236), + [anon_sym_u128] = ACTIONS(1236), + [anon_sym_i128] = ACTIONS(1236), + [anon_sym_isize] = ACTIONS(1236), + [anon_sym_usize] = ACTIONS(1236), + [anon_sym_f32] = ACTIONS(1236), + [anon_sym_f64] = ACTIONS(1236), + [anon_sym_bool] = ACTIONS(1236), + [anon_sym_str] = ACTIONS(1236), + [anon_sym_char] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_async] = ACTIONS(1236), + [anon_sym_break] = ACTIONS(1236), + [anon_sym_const] = ACTIONS(1236), + [anon_sym_continue] = ACTIONS(1236), + [anon_sym_default] = ACTIONS(1236), + [anon_sym_enum] = ACTIONS(1236), + [anon_sym_fn] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1236), + [anon_sym_impl] = ACTIONS(1236), + [anon_sym_let] = ACTIONS(1236), + [anon_sym_loop] = ACTIONS(1236), + [anon_sym_match] = ACTIONS(1236), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_pub] = ACTIONS(1236), + [anon_sym_return] = ACTIONS(1236), + [anon_sym_static] = ACTIONS(1236), + [anon_sym_struct] = ACTIONS(1236), + [anon_sym_trait] = ACTIONS(1236), + [anon_sym_type] = ACTIONS(1236), + [anon_sym_union] = ACTIONS(1236), + [anon_sym_unsafe] = ACTIONS(1236), + [anon_sym_use] = ACTIONS(1236), + [anon_sym_while] = ACTIONS(1236), + [anon_sym_POUND] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_COLON_COLON] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_DOT_DOT] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1236), + [anon_sym_move] = ACTIONS(1236), + [sym_integer_literal] = ACTIONS(1234), + [aux_sym_string_literal_token1] = ACTIONS(1234), + [sym_char_literal] = ACTIONS(1234), + [anon_sym_true] = ACTIONS(1236), + [anon_sym_false] = ACTIONS(1236), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1236), + [sym_super] = ACTIONS(1236), + [sym_crate] = ACTIONS(1236), + [sym_metavariable] = ACTIONS(1234), + [sym_raw_string_literal] = ACTIONS(1234), + [sym_float_literal] = ACTIONS(1234), [sym_block_comment] = ACTIONS(3), }, [294] = { - [ts_builtin_sym_end] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym_macro_rules_BANG] = ACTIONS(1216), - [anon_sym_LPAREN] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1216), - [anon_sym_RBRACE] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1216), - [anon_sym_u8] = ACTIONS(1218), - [anon_sym_i8] = ACTIONS(1218), - [anon_sym_u16] = ACTIONS(1218), - [anon_sym_i16] = ACTIONS(1218), - [anon_sym_u32] = ACTIONS(1218), - [anon_sym_i32] = ACTIONS(1218), - [anon_sym_u64] = ACTIONS(1218), - [anon_sym_i64] = ACTIONS(1218), - [anon_sym_u128] = ACTIONS(1218), - [anon_sym_i128] = ACTIONS(1218), - [anon_sym_isize] = ACTIONS(1218), - [anon_sym_usize] = ACTIONS(1218), - [anon_sym_f32] = ACTIONS(1218), - [anon_sym_f64] = ACTIONS(1218), - [anon_sym_bool] = ACTIONS(1218), - [anon_sym_str] = ACTIONS(1218), - [anon_sym_char] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_break] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [anon_sym_continue] = ACTIONS(1218), - [anon_sym_default] = ACTIONS(1218), - [anon_sym_enum] = ACTIONS(1218), - [anon_sym_fn] = ACTIONS(1218), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_impl] = ACTIONS(1218), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1218), - [anon_sym_match] = ACTIONS(1218), - [anon_sym_mod] = ACTIONS(1218), - [anon_sym_pub] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_struct] = ACTIONS(1218), - [anon_sym_trait] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_union] = ACTIONS(1218), - [anon_sym_unsafe] = ACTIONS(1218), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_while] = ACTIONS(1218), - [anon_sym_POUND] = ACTIONS(1216), - [anon_sym_BANG] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym_LT] = ACTIONS(1216), - [anon_sym_COLON_COLON] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1216), - [anon_sym_DOT_DOT] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PIPE] = ACTIONS(1216), - [anon_sym_yield] = ACTIONS(1218), - [anon_sym_move] = ACTIONS(1218), - [sym_integer_literal] = ACTIONS(1216), - [aux_sym_string_literal_token1] = ACTIONS(1216), - [sym_char_literal] = ACTIONS(1216), - [anon_sym_true] = ACTIONS(1218), - [anon_sym_false] = ACTIONS(1218), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1218), - [sym_super] = ACTIONS(1218), - [sym_crate] = ACTIONS(1218), - [sym_metavariable] = ACTIONS(1216), - [sym_raw_string_literal] = ACTIONS(1216), - [sym_float_literal] = ACTIONS(1216), + [ts_builtin_sym_end] = ACTIONS(1238), + [sym_identifier] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_macro_rules_BANG] = ACTIONS(1238), + [anon_sym_LPAREN] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_RBRACE] = ACTIONS(1238), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_u8] = ACTIONS(1240), + [anon_sym_i8] = ACTIONS(1240), + [anon_sym_u16] = ACTIONS(1240), + [anon_sym_i16] = ACTIONS(1240), + [anon_sym_u32] = ACTIONS(1240), + [anon_sym_i32] = ACTIONS(1240), + [anon_sym_u64] = ACTIONS(1240), + [anon_sym_i64] = ACTIONS(1240), + [anon_sym_u128] = ACTIONS(1240), + [anon_sym_i128] = ACTIONS(1240), + [anon_sym_isize] = ACTIONS(1240), + [anon_sym_usize] = ACTIONS(1240), + [anon_sym_f32] = ACTIONS(1240), + [anon_sym_f64] = ACTIONS(1240), + [anon_sym_bool] = ACTIONS(1240), + [anon_sym_str] = ACTIONS(1240), + [anon_sym_char] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_async] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_fn] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_impl] = ACTIONS(1240), + [anon_sym_let] = ACTIONS(1240), + [anon_sym_loop] = ACTIONS(1240), + [anon_sym_match] = ACTIONS(1240), + [anon_sym_mod] = ACTIONS(1240), + [anon_sym_pub] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_trait] = ACTIONS(1240), + [anon_sym_type] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_unsafe] = ACTIONS(1240), + [anon_sym_use] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_POUND] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_COLON_COLON] = ACTIONS(1238), + [anon_sym_AMP] = ACTIONS(1238), + [anon_sym_DOT_DOT] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_PIPE] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_move] = ACTIONS(1240), + [sym_integer_literal] = ACTIONS(1238), + [aux_sym_string_literal_token1] = ACTIONS(1238), + [sym_char_literal] = ACTIONS(1238), + [anon_sym_true] = ACTIONS(1240), + [anon_sym_false] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1240), + [sym_super] = ACTIONS(1240), + [sym_crate] = ACTIONS(1240), + [sym_metavariable] = ACTIONS(1238), + [sym_raw_string_literal] = ACTIONS(1238), + [sym_float_literal] = ACTIONS(1238), [sym_block_comment] = ACTIONS(3), }, [295] = { - [ts_builtin_sym_end] = ACTIONS(1220), - [sym_identifier] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym_macro_rules_BANG] = ACTIONS(1220), - [anon_sym_LPAREN] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_RBRACE] = ACTIONS(1220), - [anon_sym_LBRACK] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1220), - [anon_sym_u8] = ACTIONS(1222), - [anon_sym_i8] = ACTIONS(1222), - [anon_sym_u16] = ACTIONS(1222), - [anon_sym_i16] = ACTIONS(1222), - [anon_sym_u32] = ACTIONS(1222), - [anon_sym_i32] = ACTIONS(1222), - [anon_sym_u64] = ACTIONS(1222), - [anon_sym_i64] = ACTIONS(1222), - [anon_sym_u128] = ACTIONS(1222), - [anon_sym_i128] = ACTIONS(1222), - [anon_sym_isize] = ACTIONS(1222), - [anon_sym_usize] = ACTIONS(1222), - [anon_sym_f32] = ACTIONS(1222), - [anon_sym_f64] = ACTIONS(1222), - [anon_sym_bool] = ACTIONS(1222), - [anon_sym_str] = ACTIONS(1222), - [anon_sym_char] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_async] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_default] = ACTIONS(1222), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_fn] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_impl] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1222), - [anon_sym_loop] = ACTIONS(1222), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_mod] = ACTIONS(1222), - [anon_sym_pub] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1222), - [anon_sym_struct] = ACTIONS(1222), - [anon_sym_trait] = ACTIONS(1222), - [anon_sym_type] = ACTIONS(1222), - [anon_sym_union] = ACTIONS(1222), - [anon_sym_unsafe] = ACTIONS(1222), - [anon_sym_use] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_POUND] = ACTIONS(1220), - [anon_sym_BANG] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym_LT] = ACTIONS(1220), - [anon_sym_COLON_COLON] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_DOT_DOT] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(1220), - [anon_sym_yield] = ACTIONS(1222), - [anon_sym_move] = ACTIONS(1222), - [sym_integer_literal] = ACTIONS(1220), - [aux_sym_string_literal_token1] = ACTIONS(1220), - [sym_char_literal] = ACTIONS(1220), - [anon_sym_true] = ACTIONS(1222), - [anon_sym_false] = ACTIONS(1222), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1222), - [sym_super] = ACTIONS(1222), - [sym_crate] = ACTIONS(1222), - [sym_metavariable] = ACTIONS(1220), - [sym_raw_string_literal] = ACTIONS(1220), - [sym_float_literal] = ACTIONS(1220), + [ts_builtin_sym_end] = ACTIONS(1242), + [sym_identifier] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_macro_rules_BANG] = ACTIONS(1242), + [anon_sym_LPAREN] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_LBRACK] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1244), + [anon_sym_i8] = ACTIONS(1244), + [anon_sym_u16] = ACTIONS(1244), + [anon_sym_i16] = ACTIONS(1244), + [anon_sym_u32] = ACTIONS(1244), + [anon_sym_i32] = ACTIONS(1244), + [anon_sym_u64] = ACTIONS(1244), + [anon_sym_i64] = ACTIONS(1244), + [anon_sym_u128] = ACTIONS(1244), + [anon_sym_i128] = ACTIONS(1244), + [anon_sym_isize] = ACTIONS(1244), + [anon_sym_usize] = ACTIONS(1244), + [anon_sym_f32] = ACTIONS(1244), + [anon_sym_f64] = ACTIONS(1244), + [anon_sym_bool] = ACTIONS(1244), + [anon_sym_str] = ACTIONS(1244), + [anon_sym_char] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1244), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_break] = ACTIONS(1244), + [anon_sym_const] = ACTIONS(1244), + [anon_sym_continue] = ACTIONS(1244), + [anon_sym_default] = ACTIONS(1244), + [anon_sym_enum] = ACTIONS(1244), + [anon_sym_fn] = ACTIONS(1244), + [anon_sym_for] = ACTIONS(1244), + [anon_sym_if] = ACTIONS(1244), + [anon_sym_impl] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_loop] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1244), + [anon_sym_mod] = ACTIONS(1244), + [anon_sym_pub] = ACTIONS(1244), + [anon_sym_return] = ACTIONS(1244), + [anon_sym_static] = ACTIONS(1244), + [anon_sym_struct] = ACTIONS(1244), + [anon_sym_trait] = ACTIONS(1244), + [anon_sym_type] = ACTIONS(1244), + [anon_sym_union] = ACTIONS(1244), + [anon_sym_unsafe] = ACTIONS(1244), + [anon_sym_use] = ACTIONS(1244), + [anon_sym_while] = ACTIONS(1244), + [anon_sym_POUND] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_extern] = ACTIONS(1244), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_COLON_COLON] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_DOT_DOT] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_move] = ACTIONS(1244), + [sym_integer_literal] = ACTIONS(1242), + [aux_sym_string_literal_token1] = ACTIONS(1242), + [sym_char_literal] = ACTIONS(1242), + [anon_sym_true] = ACTIONS(1244), + [anon_sym_false] = ACTIONS(1244), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1244), + [sym_super] = ACTIONS(1244), + [sym_crate] = ACTIONS(1244), + [sym_metavariable] = ACTIONS(1242), + [sym_raw_string_literal] = ACTIONS(1242), + [sym_float_literal] = ACTIONS(1242), [sym_block_comment] = ACTIONS(3), }, [296] = { - [ts_builtin_sym_end] = ACTIONS(1224), - [sym_identifier] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_macro_rules_BANG] = ACTIONS(1224), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_RBRACE] = ACTIONS(1224), - [anon_sym_LBRACK] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_u8] = ACTIONS(1226), - [anon_sym_i8] = ACTIONS(1226), - [anon_sym_u16] = ACTIONS(1226), - [anon_sym_i16] = ACTIONS(1226), - [anon_sym_u32] = ACTIONS(1226), - [anon_sym_i32] = ACTIONS(1226), - [anon_sym_u64] = ACTIONS(1226), - [anon_sym_i64] = ACTIONS(1226), - [anon_sym_u128] = ACTIONS(1226), - [anon_sym_i128] = ACTIONS(1226), - [anon_sym_isize] = ACTIONS(1226), - [anon_sym_usize] = ACTIONS(1226), - [anon_sym_f32] = ACTIONS(1226), - [anon_sym_f64] = ACTIONS(1226), - [anon_sym_bool] = ACTIONS(1226), - [anon_sym_str] = ACTIONS(1226), - [anon_sym_char] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_async] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_fn] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_impl] = ACTIONS(1226), - [anon_sym_let] = ACTIONS(1226), - [anon_sym_loop] = ACTIONS(1226), - [anon_sym_match] = ACTIONS(1226), - [anon_sym_mod] = ACTIONS(1226), - [anon_sym_pub] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_trait] = ACTIONS(1226), - [anon_sym_type] = ACTIONS(1226), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_unsafe] = ACTIONS(1226), - [anon_sym_use] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_POUND] = ACTIONS(1224), - [anon_sym_BANG] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_COLON_COLON] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_DOT_DOT] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_yield] = ACTIONS(1226), - [anon_sym_move] = ACTIONS(1226), - [sym_integer_literal] = ACTIONS(1224), - [aux_sym_string_literal_token1] = ACTIONS(1224), - [sym_char_literal] = ACTIONS(1224), - [anon_sym_true] = ACTIONS(1226), - [anon_sym_false] = ACTIONS(1226), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1226), - [sym_super] = ACTIONS(1226), - [sym_crate] = ACTIONS(1226), - [sym_metavariable] = ACTIONS(1224), - [sym_raw_string_literal] = ACTIONS(1224), - [sym_float_literal] = ACTIONS(1224), - [sym_block_comment] = ACTIONS(3), - }, - [297] = { - [ts_builtin_sym_end] = ACTIONS(1228), - [sym_identifier] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_macro_rules_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_u8] = ACTIONS(1230), - [anon_sym_i8] = ACTIONS(1230), - [anon_sym_u16] = ACTIONS(1230), - [anon_sym_i16] = ACTIONS(1230), - [anon_sym_u32] = ACTIONS(1230), - [anon_sym_i32] = ACTIONS(1230), - [anon_sym_u64] = ACTIONS(1230), - [anon_sym_i64] = ACTIONS(1230), - [anon_sym_u128] = ACTIONS(1230), - [anon_sym_i128] = ACTIONS(1230), - [anon_sym_isize] = ACTIONS(1230), - [anon_sym_usize] = ACTIONS(1230), - [anon_sym_f32] = ACTIONS(1230), - [anon_sym_f64] = ACTIONS(1230), - [anon_sym_bool] = ACTIONS(1230), - [anon_sym_str] = ACTIONS(1230), - [anon_sym_char] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_async] = ACTIONS(1230), - [anon_sym_break] = ACTIONS(1230), - [anon_sym_const] = ACTIONS(1230), - [anon_sym_continue] = ACTIONS(1230), - [anon_sym_default] = ACTIONS(1230), - [anon_sym_enum] = ACTIONS(1230), - [anon_sym_fn] = ACTIONS(1230), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1230), - [anon_sym_impl] = ACTIONS(1230), - [anon_sym_let] = ACTIONS(1230), - [anon_sym_loop] = ACTIONS(1230), - [anon_sym_match] = ACTIONS(1230), - [anon_sym_mod] = ACTIONS(1230), - [anon_sym_pub] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(1230), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_struct] = ACTIONS(1230), - [anon_sym_trait] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_union] = ACTIONS(1230), - [anon_sym_unsafe] = ACTIONS(1230), - [anon_sym_use] = ACTIONS(1230), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_POUND] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1228), - [anon_sym_COLON_COLON] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_DOT_DOT] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [sym_integer_literal] = ACTIONS(1228), - [aux_sym_string_literal_token1] = ACTIONS(1228), - [sym_char_literal] = ACTIONS(1228), - [anon_sym_true] = ACTIONS(1230), - [anon_sym_false] = ACTIONS(1230), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1230), - [sym_super] = ACTIONS(1230), - [sym_crate] = ACTIONS(1230), - [sym_metavariable] = ACTIONS(1228), - [sym_raw_string_literal] = ACTIONS(1228), - [sym_float_literal] = ACTIONS(1228), - [sym_block_comment] = ACTIONS(3), - }, - [298] = { - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_identifier] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym_macro_rules_BANG] = ACTIONS(1232), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_u8] = ACTIONS(1234), - [anon_sym_i8] = ACTIONS(1234), - [anon_sym_u16] = ACTIONS(1234), - [anon_sym_i16] = ACTIONS(1234), - [anon_sym_u32] = ACTIONS(1234), - [anon_sym_i32] = ACTIONS(1234), - [anon_sym_u64] = ACTIONS(1234), - [anon_sym_i64] = ACTIONS(1234), - [anon_sym_u128] = ACTIONS(1234), - [anon_sym_i128] = ACTIONS(1234), - [anon_sym_isize] = ACTIONS(1234), - [anon_sym_usize] = ACTIONS(1234), - [anon_sym_f32] = ACTIONS(1234), - [anon_sym_f64] = ACTIONS(1234), - [anon_sym_bool] = ACTIONS(1234), - [anon_sym_str] = ACTIONS(1234), - [anon_sym_char] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_fn] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_impl] = ACTIONS(1234), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_loop] = ACTIONS(1234), - [anon_sym_match] = ACTIONS(1234), - [anon_sym_mod] = ACTIONS(1234), - [anon_sym_pub] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_trait] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_unsafe] = ACTIONS(1234), - [anon_sym_use] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_POUND] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_COLON_COLON] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_DOT_DOT] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PIPE] = ACTIONS(1232), - [anon_sym_yield] = ACTIONS(1234), - [anon_sym_move] = ACTIONS(1234), - [sym_integer_literal] = ACTIONS(1232), - [aux_sym_string_literal_token1] = ACTIONS(1232), - [sym_char_literal] = ACTIONS(1232), - [anon_sym_true] = ACTIONS(1234), - [anon_sym_false] = ACTIONS(1234), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1234), - [sym_super] = ACTIONS(1234), - [sym_crate] = ACTIONS(1234), - [sym_metavariable] = ACTIONS(1232), - [sym_raw_string_literal] = ACTIONS(1232), - [sym_float_literal] = ACTIONS(1232), - [sym_block_comment] = ACTIONS(3), - }, - [299] = { - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym_macro_rules_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_u8] = ACTIONS(1238), - [anon_sym_i8] = ACTIONS(1238), - [anon_sym_u16] = ACTIONS(1238), - [anon_sym_i16] = ACTIONS(1238), - [anon_sym_u32] = ACTIONS(1238), - [anon_sym_i32] = ACTIONS(1238), - [anon_sym_u64] = ACTIONS(1238), - [anon_sym_i64] = ACTIONS(1238), - [anon_sym_u128] = ACTIONS(1238), - [anon_sym_i128] = ACTIONS(1238), - [anon_sym_isize] = ACTIONS(1238), - [anon_sym_usize] = ACTIONS(1238), - [anon_sym_f32] = ACTIONS(1238), - [anon_sym_f64] = ACTIONS(1238), - [anon_sym_bool] = ACTIONS(1238), - [anon_sym_str] = ACTIONS(1238), - [anon_sym_char] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_async] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_fn] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_impl] = ACTIONS(1238), - [anon_sym_let] = ACTIONS(1238), - [anon_sym_loop] = ACTIONS(1238), - [anon_sym_match] = ACTIONS(1238), - [anon_sym_mod] = ACTIONS(1238), - [anon_sym_pub] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_trait] = ACTIONS(1238), - [anon_sym_type] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_unsafe] = ACTIONS(1238), - [anon_sym_use] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym_LT] = ACTIONS(1236), - [anon_sym_COLON_COLON] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_DOT_DOT] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PIPE] = ACTIONS(1236), - [anon_sym_yield] = ACTIONS(1238), - [anon_sym_move] = ACTIONS(1238), - [sym_integer_literal] = ACTIONS(1236), - [aux_sym_string_literal_token1] = ACTIONS(1236), - [sym_char_literal] = ACTIONS(1236), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1238), - [sym_super] = ACTIONS(1238), - [sym_crate] = ACTIONS(1238), - [sym_metavariable] = ACTIONS(1236), - [sym_raw_string_literal] = ACTIONS(1236), - [sym_float_literal] = ACTIONS(1236), - [sym_block_comment] = ACTIONS(3), - }, - [300] = { - [sym_attribute_item] = STATE(558), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_match_arm] = STATE(494), - [sym_last_match_arm] = STATE(2442), - [sym_match_pattern] = STATE(2369), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2033), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_match_block_repeat1] = STATE(494), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1244), + [ts_builtin_sym_end] = ACTIONS(1246), + [sym_identifier] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_macro_rules_BANG] = ACTIONS(1246), + [anon_sym_LPAREN] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_RBRACE] = ACTIONS(1246), [anon_sym_LBRACK] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1246), [anon_sym_u8] = ACTIONS(1248), [anon_sym_i8] = ACTIONS(1248), [anon_sym_u16] = ACTIONS(1248), @@ -46769,33 +45848,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1248), [anon_sym_str] = ACTIONS(1248), [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_async] = ACTIONS(1248), + [anon_sym_break] = ACTIONS(1248), + [anon_sym_const] = ACTIONS(1248), + [anon_sym_continue] = ACTIONS(1248), + [anon_sym_default] = ACTIONS(1248), + [anon_sym_enum] = ACTIONS(1248), + [anon_sym_fn] = ACTIONS(1248), + [anon_sym_for] = ACTIONS(1248), + [anon_sym_if] = ACTIONS(1248), + [anon_sym_impl] = ACTIONS(1248), + [anon_sym_let] = ACTIONS(1248), + [anon_sym_loop] = ACTIONS(1248), + [anon_sym_match] = ACTIONS(1248), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_pub] = ACTIONS(1248), + [anon_sym_return] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_struct] = ACTIONS(1248), + [anon_sym_trait] = ACTIONS(1248), + [anon_sym_type] = ACTIONS(1248), + [anon_sym_union] = ACTIONS(1248), + [anon_sym_unsafe] = ACTIONS(1248), + [anon_sym_use] = ACTIONS(1248), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_POUND] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1246), + [anon_sym_COLON_COLON] = ACTIONS(1246), + [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_DOT_DOT] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_move] = ACTIONS(1248), + [sym_integer_literal] = ACTIONS(1246), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1246), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1248), + [sym_super] = ACTIONS(1248), + [sym_crate] = ACTIONS(1248), + [sym_metavariable] = ACTIONS(1246), + [sym_raw_string_literal] = ACTIONS(1246), + [sym_float_literal] = ACTIONS(1246), + [sym_block_comment] = ACTIONS(3), + }, + [297] = { + [ts_builtin_sym_end] = ACTIONS(1250), + [sym_identifier] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_macro_rules_BANG] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_RBRACE] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_u8] = ACTIONS(1252), + [anon_sym_i8] = ACTIONS(1252), + [anon_sym_u16] = ACTIONS(1252), + [anon_sym_i16] = ACTIONS(1252), + [anon_sym_u32] = ACTIONS(1252), + [anon_sym_i32] = ACTIONS(1252), + [anon_sym_u64] = ACTIONS(1252), + [anon_sym_i64] = ACTIONS(1252), + [anon_sym_u128] = ACTIONS(1252), + [anon_sym_i128] = ACTIONS(1252), + [anon_sym_isize] = ACTIONS(1252), + [anon_sym_usize] = ACTIONS(1252), + [anon_sym_f32] = ACTIONS(1252), + [anon_sym_f64] = ACTIONS(1252), + [anon_sym_bool] = ACTIONS(1252), + [anon_sym_str] = ACTIONS(1252), + [anon_sym_char] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_async] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1252), + [anon_sym_const] = ACTIONS(1252), + [anon_sym_continue] = ACTIONS(1252), [anon_sym_default] = ACTIONS(1252), + [anon_sym_enum] = ACTIONS(1252), + [anon_sym_fn] = ACTIONS(1252), + [anon_sym_for] = ACTIONS(1252), + [anon_sym_if] = ACTIONS(1252), + [anon_sym_impl] = ACTIONS(1252), + [anon_sym_let] = ACTIONS(1252), + [anon_sym_loop] = ACTIONS(1252), + [anon_sym_match] = ACTIONS(1252), + [anon_sym_mod] = ACTIONS(1252), + [anon_sym_pub] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1252), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_struct] = ACTIONS(1252), + [anon_sym_trait] = ACTIONS(1252), + [anon_sym_type] = ACTIONS(1252), [anon_sym_union] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(1252), + [anon_sym_use] = ACTIONS(1252), + [anon_sym_while] = ACTIONS(1252), + [anon_sym_POUND] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_COLON_COLON] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_DOT_DOT] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(1250), + [anon_sym_yield] = ACTIONS(1252), + [anon_sym_move] = ACTIONS(1252), + [sym_integer_literal] = ACTIONS(1250), + [aux_sym_string_literal_token1] = ACTIONS(1250), + [sym_char_literal] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(1252), + [anon_sym_false] = ACTIONS(1252), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1252), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1250), + [sym_raw_string_literal] = ACTIONS(1250), + [sym_float_literal] = ACTIONS(1250), + [sym_block_comment] = ACTIONS(3), + }, + [298] = { + [ts_builtin_sym_end] = ACTIONS(1254), + [sym_identifier] = ACTIONS(1256), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_macro_rules_BANG] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_RBRACE] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_u8] = ACTIONS(1256), + [anon_sym_i8] = ACTIONS(1256), + [anon_sym_u16] = ACTIONS(1256), + [anon_sym_i16] = ACTIONS(1256), + [anon_sym_u32] = ACTIONS(1256), + [anon_sym_i32] = ACTIONS(1256), + [anon_sym_u64] = ACTIONS(1256), + [anon_sym_i64] = ACTIONS(1256), + [anon_sym_u128] = ACTIONS(1256), + [anon_sym_i128] = ACTIONS(1256), + [anon_sym_isize] = ACTIONS(1256), + [anon_sym_usize] = ACTIONS(1256), + [anon_sym_f32] = ACTIONS(1256), + [anon_sym_f64] = ACTIONS(1256), + [anon_sym_bool] = ACTIONS(1256), + [anon_sym_str] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [anon_sym_async] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_default] = ACTIONS(1256), + [anon_sym_enum] = ACTIONS(1256), + [anon_sym_fn] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_impl] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1256), + [anon_sym_loop] = ACTIONS(1256), + [anon_sym_match] = ACTIONS(1256), + [anon_sym_mod] = ACTIONS(1256), + [anon_sym_pub] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_trait] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_union] = ACTIONS(1256), + [anon_sym_unsafe] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_POUND] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1254), [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PIPE] = ACTIONS(1254), + [anon_sym_yield] = ACTIONS(1256), + [anon_sym_move] = ACTIONS(1256), + [sym_integer_literal] = ACTIONS(1254), + [aux_sym_string_literal_token1] = ACTIONS(1254), + [sym_char_literal] = ACTIONS(1254), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1256), + [sym_super] = ACTIONS(1256), + [sym_crate] = ACTIONS(1256), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1254), + [sym_float_literal] = ACTIONS(1254), [sym_block_comment] = ACTIONS(3), }, - [301] = { + [299] = { + [ts_builtin_sym_end] = ACTIONS(1258), + [sym_identifier] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_macro_rules_BANG] = ACTIONS(1258), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(1258), + [anon_sym_LBRACK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1260), + [anon_sym_i8] = ACTIONS(1260), + [anon_sym_u16] = ACTIONS(1260), + [anon_sym_i16] = ACTIONS(1260), + [anon_sym_u32] = ACTIONS(1260), + [anon_sym_i32] = ACTIONS(1260), + [anon_sym_u64] = ACTIONS(1260), + [anon_sym_i64] = ACTIONS(1260), + [anon_sym_u128] = ACTIONS(1260), + [anon_sym_i128] = ACTIONS(1260), + [anon_sym_isize] = ACTIONS(1260), + [anon_sym_usize] = ACTIONS(1260), + [anon_sym_f32] = ACTIONS(1260), + [anon_sym_f64] = ACTIONS(1260), + [anon_sym_bool] = ACTIONS(1260), + [anon_sym_str] = ACTIONS(1260), + [anon_sym_char] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [anon_sym_async] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1260), + [anon_sym_continue] = ACTIONS(1260), + [anon_sym_default] = ACTIONS(1260), + [anon_sym_enum] = ACTIONS(1260), + [anon_sym_fn] = ACTIONS(1260), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_if] = ACTIONS(1260), + [anon_sym_impl] = ACTIONS(1260), + [anon_sym_let] = ACTIONS(1260), + [anon_sym_loop] = ACTIONS(1260), + [anon_sym_match] = ACTIONS(1260), + [anon_sym_mod] = ACTIONS(1260), + [anon_sym_pub] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1260), + [anon_sym_static] = ACTIONS(1260), + [anon_sym_struct] = ACTIONS(1260), + [anon_sym_trait] = ACTIONS(1260), + [anon_sym_type] = ACTIONS(1260), + [anon_sym_union] = ACTIONS(1260), + [anon_sym_unsafe] = ACTIONS(1260), + [anon_sym_use] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1260), + [anon_sym_POUND] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_extern] = ACTIONS(1260), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_COLON_COLON] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_DOT_DOT] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_move] = ACTIONS(1260), + [sym_integer_literal] = ACTIONS(1258), + [aux_sym_string_literal_token1] = ACTIONS(1258), + [sym_char_literal] = ACTIONS(1258), + [anon_sym_true] = ACTIONS(1260), + [anon_sym_false] = ACTIONS(1260), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1260), + [sym_super] = ACTIONS(1260), + [sym_crate] = ACTIONS(1260), + [sym_metavariable] = ACTIONS(1258), + [sym_raw_string_literal] = ACTIONS(1258), + [sym_float_literal] = ACTIONS(1258), + [sym_block_comment] = ACTIONS(3), + }, + [300] = { [ts_builtin_sym_end] = ACTIONS(1262), [sym_identifier] = ACTIONS(1264), [anon_sym_SEMI] = ACTIONS(1262), @@ -46872,7 +46206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1262), [sym_block_comment] = ACTIONS(3), }, - [302] = { + [301] = { [ts_builtin_sym_end] = ACTIONS(1266), [sym_identifier] = ACTIONS(1268), [anon_sym_SEMI] = ACTIONS(1266), @@ -46949,7 +46283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1266), [sym_block_comment] = ACTIONS(3), }, - [303] = { + [302] = { [ts_builtin_sym_end] = ACTIONS(1270), [sym_identifier] = ACTIONS(1272), [anon_sym_SEMI] = ACTIONS(1270), @@ -47026,7 +46360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1270), [sym_block_comment] = ACTIONS(3), }, - [304] = { + [303] = { [ts_builtin_sym_end] = ACTIONS(1274), [sym_identifier] = ACTIONS(1276), [anon_sym_SEMI] = ACTIONS(1274), @@ -47103,7 +46437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1274), [sym_block_comment] = ACTIONS(3), }, - [305] = { + [304] = { [ts_builtin_sym_end] = ACTIONS(1278), [sym_identifier] = ACTIONS(1280), [anon_sym_SEMI] = ACTIONS(1278), @@ -47180,7 +46514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1278), [sym_block_comment] = ACTIONS(3), }, - [306] = { + [305] = { [ts_builtin_sym_end] = ACTIONS(1282), [sym_identifier] = ACTIONS(1284), [anon_sym_SEMI] = ACTIONS(1282), @@ -47257,7 +46591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1282), [sym_block_comment] = ACTIONS(3), }, - [307] = { + [306] = { [ts_builtin_sym_end] = ACTIONS(1286), [sym_identifier] = ACTIONS(1288), [anon_sym_SEMI] = ACTIONS(1286), @@ -47334,7 +46668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1286), [sym_block_comment] = ACTIONS(3), }, - [308] = { + [307] = { [ts_builtin_sym_end] = ACTIONS(1290), [sym_identifier] = ACTIONS(1292), [anon_sym_SEMI] = ACTIONS(1290), @@ -47411,7 +46745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1290), [sym_block_comment] = ACTIONS(3), }, - [309] = { + [308] = { [ts_builtin_sym_end] = ACTIONS(1294), [sym_identifier] = ACTIONS(1296), [anon_sym_SEMI] = ACTIONS(1294), @@ -47488,7 +46822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1294), [sym_block_comment] = ACTIONS(3), }, - [310] = { + [309] = { [ts_builtin_sym_end] = ACTIONS(1298), [sym_identifier] = ACTIONS(1300), [anon_sym_SEMI] = ACTIONS(1298), @@ -47565,6 +46899,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1298), [sym_block_comment] = ACTIONS(3), }, + [310] = { + [ts_builtin_sym_end] = ACTIONS(414), + [sym_identifier] = ACTIONS(416), + [anon_sym_SEMI] = ACTIONS(414), + [anon_sym_macro_rules_BANG] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE] = ACTIONS(414), + [anon_sym_LBRACK] = ACTIONS(414), + [anon_sym_STAR] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(416), + [anon_sym_i8] = ACTIONS(416), + [anon_sym_u16] = ACTIONS(416), + [anon_sym_i16] = ACTIONS(416), + [anon_sym_u32] = ACTIONS(416), + [anon_sym_i32] = ACTIONS(416), + [anon_sym_u64] = ACTIONS(416), + [anon_sym_i64] = ACTIONS(416), + [anon_sym_u128] = ACTIONS(416), + [anon_sym_i128] = ACTIONS(416), + [anon_sym_isize] = ACTIONS(416), + [anon_sym_usize] = ACTIONS(416), + [anon_sym_f32] = ACTIONS(416), + [anon_sym_f64] = ACTIONS(416), + [anon_sym_bool] = ACTIONS(416), + [anon_sym_str] = ACTIONS(416), + [anon_sym_char] = ACTIONS(416), + [anon_sym_SQUOTE] = ACTIONS(416), + [anon_sym_async] = ACTIONS(416), + [anon_sym_break] = ACTIONS(416), + [anon_sym_const] = ACTIONS(416), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_enum] = ACTIONS(416), + [anon_sym_fn] = ACTIONS(416), + [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(416), + [anon_sym_impl] = ACTIONS(416), + [anon_sym_let] = ACTIONS(416), + [anon_sym_loop] = ACTIONS(416), + [anon_sym_match] = ACTIONS(416), + [anon_sym_mod] = ACTIONS(416), + [anon_sym_pub] = ACTIONS(416), + [anon_sym_return] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(416), + [anon_sym_trait] = ACTIONS(416), + [anon_sym_type] = ACTIONS(416), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(416), + [anon_sym_use] = ACTIONS(416), + [anon_sym_while] = ACTIONS(416), + [anon_sym_POUND] = ACTIONS(414), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_extern] = ACTIONS(416), + [anon_sym_LT] = ACTIONS(414), + [anon_sym_COLON_COLON] = ACTIONS(414), + [anon_sym_AMP] = ACTIONS(414), + [anon_sym_DOT_DOT] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_PIPE] = ACTIONS(414), + [anon_sym_yield] = ACTIONS(416), + [anon_sym_move] = ACTIONS(416), + [sym_integer_literal] = ACTIONS(414), + [aux_sym_string_literal_token1] = ACTIONS(414), + [sym_char_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(416), + [sym_super] = ACTIONS(416), + [sym_crate] = ACTIONS(416), + [sym_metavariable] = ACTIONS(414), + [sym_raw_string_literal] = ACTIONS(414), + [sym_float_literal] = ACTIONS(414), + [sym_block_comment] = ACTIONS(3), + }, [311] = { [ts_builtin_sym_end] = ACTIONS(1302), [sym_identifier] = ACTIONS(1304), @@ -50261,1238 +49672,1161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [346] = { - [sym_attribute_item] = STATE(558), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_match_arm] = STATE(496), - [sym_last_match_arm] = STATE(2560), - [sym_match_pattern] = STATE(2369), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2033), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_match_block_repeat1] = STATE(496), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_identifier] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_macro_rules_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_u8] = ACTIONS(1444), + [anon_sym_i8] = ACTIONS(1444), + [anon_sym_u16] = ACTIONS(1444), + [anon_sym_i16] = ACTIONS(1444), + [anon_sym_u32] = ACTIONS(1444), + [anon_sym_i32] = ACTIONS(1444), + [anon_sym_u64] = ACTIONS(1444), + [anon_sym_i64] = ACTIONS(1444), + [anon_sym_u128] = ACTIONS(1444), + [anon_sym_i128] = ACTIONS(1444), + [anon_sym_isize] = ACTIONS(1444), + [anon_sym_usize] = ACTIONS(1444), + [anon_sym_f32] = ACTIONS(1444), + [anon_sym_f64] = ACTIONS(1444), + [anon_sym_bool] = ACTIONS(1444), + [anon_sym_str] = ACTIONS(1444), + [anon_sym_char] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_fn] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_impl] = ACTIONS(1444), + [anon_sym_let] = ACTIONS(1444), + [anon_sym_loop] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_mod] = ACTIONS(1444), + [anon_sym_pub] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_trait] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1444), + [anon_sym_use] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_COLON_COLON] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_DOT_DOT] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_yield] = ACTIONS(1444), + [anon_sym_move] = ACTIONS(1444), + [sym_integer_literal] = ACTIONS(1442), + [aux_sym_string_literal_token1] = ACTIONS(1442), + [sym_char_literal] = ACTIONS(1442), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1444), + [sym_super] = ACTIONS(1444), + [sym_crate] = ACTIONS(1444), + [sym_metavariable] = ACTIONS(1442), + [sym_raw_string_literal] = ACTIONS(1442), + [sym_float_literal] = ACTIONS(1442), [sym_block_comment] = ACTIONS(3), }, [347] = { - [ts_builtin_sym_end] = ACTIONS(1444), - [sym_identifier] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym_macro_rules_BANG] = ACTIONS(1444), - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_RBRACE] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_u8] = ACTIONS(1446), - [anon_sym_i8] = ACTIONS(1446), - [anon_sym_u16] = ACTIONS(1446), - [anon_sym_i16] = ACTIONS(1446), - [anon_sym_u32] = ACTIONS(1446), - [anon_sym_i32] = ACTIONS(1446), - [anon_sym_u64] = ACTIONS(1446), - [anon_sym_i64] = ACTIONS(1446), - [anon_sym_u128] = ACTIONS(1446), - [anon_sym_i128] = ACTIONS(1446), - [anon_sym_isize] = ACTIONS(1446), - [anon_sym_usize] = ACTIONS(1446), - [anon_sym_f32] = ACTIONS(1446), - [anon_sym_f64] = ACTIONS(1446), - [anon_sym_bool] = ACTIONS(1446), - [anon_sym_str] = ACTIONS(1446), - [anon_sym_char] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_async] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_fn] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_impl] = ACTIONS(1446), - [anon_sym_let] = ACTIONS(1446), - [anon_sym_loop] = ACTIONS(1446), - [anon_sym_match] = ACTIONS(1446), - [anon_sym_mod] = ACTIONS(1446), - [anon_sym_pub] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_trait] = ACTIONS(1446), - [anon_sym_type] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_unsafe] = ACTIONS(1446), - [anon_sym_use] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_COLON_COLON] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_DOT_DOT] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_move] = ACTIONS(1446), - [sym_integer_literal] = ACTIONS(1444), - [aux_sym_string_literal_token1] = ACTIONS(1444), - [sym_char_literal] = ACTIONS(1444), - [anon_sym_true] = ACTIONS(1446), - [anon_sym_false] = ACTIONS(1446), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1446), - [sym_super] = ACTIONS(1446), - [sym_crate] = ACTIONS(1446), - [sym_metavariable] = ACTIONS(1444), - [sym_raw_string_literal] = ACTIONS(1444), - [sym_float_literal] = ACTIONS(1444), + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_macro_rules_BANG] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_u8] = ACTIONS(1448), + [anon_sym_i8] = ACTIONS(1448), + [anon_sym_u16] = ACTIONS(1448), + [anon_sym_i16] = ACTIONS(1448), + [anon_sym_u32] = ACTIONS(1448), + [anon_sym_i32] = ACTIONS(1448), + [anon_sym_u64] = ACTIONS(1448), + [anon_sym_i64] = ACTIONS(1448), + [anon_sym_u128] = ACTIONS(1448), + [anon_sym_i128] = ACTIONS(1448), + [anon_sym_isize] = ACTIONS(1448), + [anon_sym_usize] = ACTIONS(1448), + [anon_sym_f32] = ACTIONS(1448), + [anon_sym_f64] = ACTIONS(1448), + [anon_sym_bool] = ACTIONS(1448), + [anon_sym_str] = ACTIONS(1448), + [anon_sym_char] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_fn] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_impl] = ACTIONS(1448), + [anon_sym_let] = ACTIONS(1448), + [anon_sym_loop] = ACTIONS(1448), + [anon_sym_match] = ACTIONS(1448), + [anon_sym_mod] = ACTIONS(1448), + [anon_sym_pub] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_trait] = ACTIONS(1448), + [anon_sym_type] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_unsafe] = ACTIONS(1448), + [anon_sym_use] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym_LT] = ACTIONS(1446), + [anon_sym_COLON_COLON] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_yield] = ACTIONS(1448), + [anon_sym_move] = ACTIONS(1448), + [sym_integer_literal] = ACTIONS(1446), + [aux_sym_string_literal_token1] = ACTIONS(1446), + [sym_char_literal] = ACTIONS(1446), + [anon_sym_true] = ACTIONS(1448), + [anon_sym_false] = ACTIONS(1448), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1448), + [sym_super] = ACTIONS(1448), + [sym_crate] = ACTIONS(1448), + [sym_metavariable] = ACTIONS(1446), + [sym_raw_string_literal] = ACTIONS(1446), + [sym_float_literal] = ACTIONS(1446), [sym_block_comment] = ACTIONS(3), }, [348] = { - [ts_builtin_sym_end] = ACTIONS(1448), - [sym_identifier] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_macro_rules_BANG] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_u8] = ACTIONS(1450), - [anon_sym_i8] = ACTIONS(1450), - [anon_sym_u16] = ACTIONS(1450), - [anon_sym_i16] = ACTIONS(1450), - [anon_sym_u32] = ACTIONS(1450), - [anon_sym_i32] = ACTIONS(1450), - [anon_sym_u64] = ACTIONS(1450), - [anon_sym_i64] = ACTIONS(1450), - [anon_sym_u128] = ACTIONS(1450), - [anon_sym_i128] = ACTIONS(1450), - [anon_sym_isize] = ACTIONS(1450), - [anon_sym_usize] = ACTIONS(1450), - [anon_sym_f32] = ACTIONS(1450), - [anon_sym_f64] = ACTIONS(1450), - [anon_sym_bool] = ACTIONS(1450), - [anon_sym_str] = ACTIONS(1450), - [anon_sym_char] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_async] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [anon_sym_const] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [anon_sym_default] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1450), - [anon_sym_fn] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_impl] = ACTIONS(1450), - [anon_sym_let] = ACTIONS(1450), - [anon_sym_loop] = ACTIONS(1450), - [anon_sym_match] = ACTIONS(1450), - [anon_sym_mod] = ACTIONS(1450), - [anon_sym_pub] = ACTIONS(1450), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_trait] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_union] = ACTIONS(1450), - [anon_sym_unsafe] = ACTIONS(1450), - [anon_sym_use] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_COLON_COLON] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_DOT_DOT] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_yield] = ACTIONS(1450), - [anon_sym_move] = ACTIONS(1450), - [sym_integer_literal] = ACTIONS(1448), - [aux_sym_string_literal_token1] = ACTIONS(1448), - [sym_char_literal] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1450), - [anon_sym_false] = ACTIONS(1450), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1450), - [sym_super] = ACTIONS(1450), - [sym_crate] = ACTIONS(1450), - [sym_metavariable] = ACTIONS(1448), - [sym_raw_string_literal] = ACTIONS(1448), - [sym_float_literal] = ACTIONS(1448), + [ts_builtin_sym_end] = ACTIONS(1450), + [sym_identifier] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_macro_rules_BANG] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_u8] = ACTIONS(1452), + [anon_sym_i8] = ACTIONS(1452), + [anon_sym_u16] = ACTIONS(1452), + [anon_sym_i16] = ACTIONS(1452), + [anon_sym_u32] = ACTIONS(1452), + [anon_sym_i32] = ACTIONS(1452), + [anon_sym_u64] = ACTIONS(1452), + [anon_sym_i64] = ACTIONS(1452), + [anon_sym_u128] = ACTIONS(1452), + [anon_sym_i128] = ACTIONS(1452), + [anon_sym_isize] = ACTIONS(1452), + [anon_sym_usize] = ACTIONS(1452), + [anon_sym_f32] = ACTIONS(1452), + [anon_sym_f64] = ACTIONS(1452), + [anon_sym_bool] = ACTIONS(1452), + [anon_sym_str] = ACTIONS(1452), + [anon_sym_char] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_async] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_fn] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_impl] = ACTIONS(1452), + [anon_sym_let] = ACTIONS(1452), + [anon_sym_loop] = ACTIONS(1452), + [anon_sym_match] = ACTIONS(1452), + [anon_sym_mod] = ACTIONS(1452), + [anon_sym_pub] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_trait] = ACTIONS(1452), + [anon_sym_type] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_unsafe] = ACTIONS(1452), + [anon_sym_use] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_COLON_COLON] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_DOT_DOT] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_yield] = ACTIONS(1452), + [anon_sym_move] = ACTIONS(1452), + [sym_integer_literal] = ACTIONS(1450), + [aux_sym_string_literal_token1] = ACTIONS(1450), + [sym_char_literal] = ACTIONS(1450), + [anon_sym_true] = ACTIONS(1452), + [anon_sym_false] = ACTIONS(1452), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1452), + [sym_super] = ACTIONS(1452), + [sym_crate] = ACTIONS(1452), + [sym_metavariable] = ACTIONS(1450), + [sym_raw_string_literal] = ACTIONS(1450), + [sym_float_literal] = ACTIONS(1450), [sym_block_comment] = ACTIONS(3), }, [349] = { - [ts_builtin_sym_end] = ACTIONS(1452), - [sym_identifier] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_macro_rules_BANG] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_u8] = ACTIONS(1454), - [anon_sym_i8] = ACTIONS(1454), - [anon_sym_u16] = ACTIONS(1454), - [anon_sym_i16] = ACTIONS(1454), - [anon_sym_u32] = ACTIONS(1454), - [anon_sym_i32] = ACTIONS(1454), - [anon_sym_u64] = ACTIONS(1454), - [anon_sym_i64] = ACTIONS(1454), - [anon_sym_u128] = ACTIONS(1454), - [anon_sym_i128] = ACTIONS(1454), - [anon_sym_isize] = ACTIONS(1454), - [anon_sym_usize] = ACTIONS(1454), - [anon_sym_f32] = ACTIONS(1454), - [anon_sym_f64] = ACTIONS(1454), - [anon_sym_bool] = ACTIONS(1454), - [anon_sym_str] = ACTIONS(1454), - [anon_sym_char] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_async] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_fn] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_impl] = ACTIONS(1454), - [anon_sym_let] = ACTIONS(1454), - [anon_sym_loop] = ACTIONS(1454), - [anon_sym_match] = ACTIONS(1454), - [anon_sym_mod] = ACTIONS(1454), - [anon_sym_pub] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_trait] = ACTIONS(1454), - [anon_sym_type] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_unsafe] = ACTIONS(1454), - [anon_sym_use] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_POUND] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_COLON_COLON] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_DOT_DOT] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_yield] = ACTIONS(1454), - [anon_sym_move] = ACTIONS(1454), - [sym_integer_literal] = ACTIONS(1452), - [aux_sym_string_literal_token1] = ACTIONS(1452), - [sym_char_literal] = ACTIONS(1452), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1454), - [sym_super] = ACTIONS(1454), - [sym_crate] = ACTIONS(1454), - [sym_metavariable] = ACTIONS(1452), - [sym_raw_string_literal] = ACTIONS(1452), - [sym_float_literal] = ACTIONS(1452), + [ts_builtin_sym_end] = ACTIONS(1454), + [sym_identifier] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_macro_rules_BANG] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_u8] = ACTIONS(1456), + [anon_sym_i8] = ACTIONS(1456), + [anon_sym_u16] = ACTIONS(1456), + [anon_sym_i16] = ACTIONS(1456), + [anon_sym_u32] = ACTIONS(1456), + [anon_sym_i32] = ACTIONS(1456), + [anon_sym_u64] = ACTIONS(1456), + [anon_sym_i64] = ACTIONS(1456), + [anon_sym_u128] = ACTIONS(1456), + [anon_sym_i128] = ACTIONS(1456), + [anon_sym_isize] = ACTIONS(1456), + [anon_sym_usize] = ACTIONS(1456), + [anon_sym_f32] = ACTIONS(1456), + [anon_sym_f64] = ACTIONS(1456), + [anon_sym_bool] = ACTIONS(1456), + [anon_sym_str] = ACTIONS(1456), + [anon_sym_char] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_async] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_fn] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_impl] = ACTIONS(1456), + [anon_sym_let] = ACTIONS(1456), + [anon_sym_loop] = ACTIONS(1456), + [anon_sym_match] = ACTIONS(1456), + [anon_sym_mod] = ACTIONS(1456), + [anon_sym_pub] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_trait] = ACTIONS(1456), + [anon_sym_type] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_unsafe] = ACTIONS(1456), + [anon_sym_use] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_COLON_COLON] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_DOT_DOT] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_move] = ACTIONS(1456), + [sym_integer_literal] = ACTIONS(1454), + [aux_sym_string_literal_token1] = ACTIONS(1454), + [sym_char_literal] = ACTIONS(1454), + [anon_sym_true] = ACTIONS(1456), + [anon_sym_false] = ACTIONS(1456), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1456), + [sym_super] = ACTIONS(1456), + [sym_crate] = ACTIONS(1456), + [sym_metavariable] = ACTIONS(1454), + [sym_raw_string_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1454), [sym_block_comment] = ACTIONS(3), }, [350] = { - [ts_builtin_sym_end] = ACTIONS(1456), - [sym_identifier] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_macro_rules_BANG] = ACTIONS(1456), - [anon_sym_LPAREN] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_LBRACK] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_u8] = ACTIONS(1458), - [anon_sym_i8] = ACTIONS(1458), - [anon_sym_u16] = ACTIONS(1458), - [anon_sym_i16] = ACTIONS(1458), - [anon_sym_u32] = ACTIONS(1458), - [anon_sym_i32] = ACTIONS(1458), - [anon_sym_u64] = ACTIONS(1458), - [anon_sym_i64] = ACTIONS(1458), - [anon_sym_u128] = ACTIONS(1458), - [anon_sym_i128] = ACTIONS(1458), - [anon_sym_isize] = ACTIONS(1458), - [anon_sym_usize] = ACTIONS(1458), - [anon_sym_f32] = ACTIONS(1458), - [anon_sym_f64] = ACTIONS(1458), - [anon_sym_bool] = ACTIONS(1458), - [anon_sym_str] = ACTIONS(1458), - [anon_sym_char] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_async] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_enum] = ACTIONS(1458), - [anon_sym_fn] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_impl] = ACTIONS(1458), - [anon_sym_let] = ACTIONS(1458), - [anon_sym_loop] = ACTIONS(1458), - [anon_sym_match] = ACTIONS(1458), - [anon_sym_mod] = ACTIONS(1458), - [anon_sym_pub] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_struct] = ACTIONS(1458), - [anon_sym_trait] = ACTIONS(1458), - [anon_sym_type] = ACTIONS(1458), - [anon_sym_union] = ACTIONS(1458), - [anon_sym_unsafe] = ACTIONS(1458), - [anon_sym_use] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_POUND] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_COLON_COLON] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1458), - [anon_sym_move] = ACTIONS(1458), - [sym_integer_literal] = ACTIONS(1456), - [aux_sym_string_literal_token1] = ACTIONS(1456), - [sym_char_literal] = ACTIONS(1456), - [anon_sym_true] = ACTIONS(1458), - [anon_sym_false] = ACTIONS(1458), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1458), - [sym_super] = ACTIONS(1458), - [sym_crate] = ACTIONS(1458), - [sym_metavariable] = ACTIONS(1456), - [sym_raw_string_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1456), + [ts_builtin_sym_end] = ACTIONS(1458), + [sym_identifier] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_macro_rules_BANG] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_u8] = ACTIONS(1460), + [anon_sym_i8] = ACTIONS(1460), + [anon_sym_u16] = ACTIONS(1460), + [anon_sym_i16] = ACTIONS(1460), + [anon_sym_u32] = ACTIONS(1460), + [anon_sym_i32] = ACTIONS(1460), + [anon_sym_u64] = ACTIONS(1460), + [anon_sym_i64] = ACTIONS(1460), + [anon_sym_u128] = ACTIONS(1460), + [anon_sym_i128] = ACTIONS(1460), + [anon_sym_isize] = ACTIONS(1460), + [anon_sym_usize] = ACTIONS(1460), + [anon_sym_f32] = ACTIONS(1460), + [anon_sym_f64] = ACTIONS(1460), + [anon_sym_bool] = ACTIONS(1460), + [anon_sym_str] = ACTIONS(1460), + [anon_sym_char] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_async] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_fn] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_impl] = ACTIONS(1460), + [anon_sym_let] = ACTIONS(1460), + [anon_sym_loop] = ACTIONS(1460), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_mod] = ACTIONS(1460), + [anon_sym_pub] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_trait] = ACTIONS(1460), + [anon_sym_type] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_unsafe] = ACTIONS(1460), + [anon_sym_use] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_POUND] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_COLON_COLON] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_DOT_DOT] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_yield] = ACTIONS(1460), + [anon_sym_move] = ACTIONS(1460), + [sym_integer_literal] = ACTIONS(1458), + [aux_sym_string_literal_token1] = ACTIONS(1458), + [sym_char_literal] = ACTIONS(1458), + [anon_sym_true] = ACTIONS(1460), + [anon_sym_false] = ACTIONS(1460), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1460), + [sym_super] = ACTIONS(1460), + [sym_crate] = ACTIONS(1460), + [sym_metavariable] = ACTIONS(1458), + [sym_raw_string_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1458), [sym_block_comment] = ACTIONS(3), }, [351] = { - [ts_builtin_sym_end] = ACTIONS(1460), - [sym_identifier] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_macro_rules_BANG] = ACTIONS(1460), - [anon_sym_LPAREN] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_u8] = ACTIONS(1462), - [anon_sym_i8] = ACTIONS(1462), - [anon_sym_u16] = ACTIONS(1462), - [anon_sym_i16] = ACTIONS(1462), - [anon_sym_u32] = ACTIONS(1462), - [anon_sym_i32] = ACTIONS(1462), - [anon_sym_u64] = ACTIONS(1462), - [anon_sym_i64] = ACTIONS(1462), - [anon_sym_u128] = ACTIONS(1462), - [anon_sym_i128] = ACTIONS(1462), - [anon_sym_isize] = ACTIONS(1462), - [anon_sym_usize] = ACTIONS(1462), - [anon_sym_f32] = ACTIONS(1462), - [anon_sym_f64] = ACTIONS(1462), - [anon_sym_bool] = ACTIONS(1462), - [anon_sym_str] = ACTIONS(1462), - [anon_sym_char] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_break] = ACTIONS(1462), - [anon_sym_const] = ACTIONS(1462), - [anon_sym_continue] = ACTIONS(1462), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_enum] = ACTIONS(1462), - [anon_sym_fn] = ACTIONS(1462), - [anon_sym_for] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_impl] = ACTIONS(1462), - [anon_sym_let] = ACTIONS(1462), - [anon_sym_loop] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_mod] = ACTIONS(1462), - [anon_sym_pub] = ACTIONS(1462), - [anon_sym_return] = ACTIONS(1462), - [anon_sym_static] = ACTIONS(1462), - [anon_sym_struct] = ACTIONS(1462), - [anon_sym_trait] = ACTIONS(1462), - [anon_sym_type] = ACTIONS(1462), - [anon_sym_union] = ACTIONS(1462), - [anon_sym_unsafe] = ACTIONS(1462), - [anon_sym_use] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1462), - [anon_sym_POUND] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_COLON_COLON] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_DOT_DOT] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_move] = ACTIONS(1462), - [sym_integer_literal] = ACTIONS(1460), - [aux_sym_string_literal_token1] = ACTIONS(1460), - [sym_char_literal] = ACTIONS(1460), - [anon_sym_true] = ACTIONS(1462), - [anon_sym_false] = ACTIONS(1462), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1462), - [sym_super] = ACTIONS(1462), - [sym_crate] = ACTIONS(1462), - [sym_metavariable] = ACTIONS(1460), - [sym_raw_string_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1460), + [ts_builtin_sym_end] = ACTIONS(1462), + [sym_identifier] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_macro_rules_BANG] = ACTIONS(1462), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_u8] = ACTIONS(1464), + [anon_sym_i8] = ACTIONS(1464), + [anon_sym_u16] = ACTIONS(1464), + [anon_sym_i16] = ACTIONS(1464), + [anon_sym_u32] = ACTIONS(1464), + [anon_sym_i32] = ACTIONS(1464), + [anon_sym_u64] = ACTIONS(1464), + [anon_sym_i64] = ACTIONS(1464), + [anon_sym_u128] = ACTIONS(1464), + [anon_sym_i128] = ACTIONS(1464), + [anon_sym_isize] = ACTIONS(1464), + [anon_sym_usize] = ACTIONS(1464), + [anon_sym_f32] = ACTIONS(1464), + [anon_sym_f64] = ACTIONS(1464), + [anon_sym_bool] = ACTIONS(1464), + [anon_sym_str] = ACTIONS(1464), + [anon_sym_char] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_fn] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_impl] = ACTIONS(1464), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_loop] = ACTIONS(1464), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_mod] = ACTIONS(1464), + [anon_sym_pub] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_trait] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1464), + [anon_sym_use] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym_LT] = ACTIONS(1462), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_DOT_DOT] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_yield] = ACTIONS(1464), + [anon_sym_move] = ACTIONS(1464), + [sym_integer_literal] = ACTIONS(1462), + [aux_sym_string_literal_token1] = ACTIONS(1462), + [sym_char_literal] = ACTIONS(1462), + [anon_sym_true] = ACTIONS(1464), + [anon_sym_false] = ACTIONS(1464), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1464), + [sym_super] = ACTIONS(1464), + [sym_crate] = ACTIONS(1464), + [sym_metavariable] = ACTIONS(1462), + [sym_raw_string_literal] = ACTIONS(1462), + [sym_float_literal] = ACTIONS(1462), [sym_block_comment] = ACTIONS(3), }, [352] = { - [ts_builtin_sym_end] = ACTIONS(1464), - [sym_identifier] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_macro_rules_BANG] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_u8] = ACTIONS(1466), - [anon_sym_i8] = ACTIONS(1466), - [anon_sym_u16] = ACTIONS(1466), - [anon_sym_i16] = ACTIONS(1466), - [anon_sym_u32] = ACTIONS(1466), - [anon_sym_i32] = ACTIONS(1466), - [anon_sym_u64] = ACTIONS(1466), - [anon_sym_i64] = ACTIONS(1466), - [anon_sym_u128] = ACTIONS(1466), - [anon_sym_i128] = ACTIONS(1466), - [anon_sym_isize] = ACTIONS(1466), - [anon_sym_usize] = ACTIONS(1466), - [anon_sym_f32] = ACTIONS(1466), - [anon_sym_f64] = ACTIONS(1466), - [anon_sym_bool] = ACTIONS(1466), - [anon_sym_str] = ACTIONS(1466), - [anon_sym_char] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1466), - [anon_sym_enum] = ACTIONS(1466), - [anon_sym_fn] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_impl] = ACTIONS(1466), - [anon_sym_let] = ACTIONS(1466), - [anon_sym_loop] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_mod] = ACTIONS(1466), - [anon_sym_pub] = ACTIONS(1466), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1466), - [anon_sym_struct] = ACTIONS(1466), - [anon_sym_trait] = ACTIONS(1466), - [anon_sym_type] = ACTIONS(1466), - [anon_sym_union] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1466), - [anon_sym_use] = ACTIONS(1466), - [anon_sym_while] = ACTIONS(1466), - [anon_sym_POUND] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_COLON_COLON] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_DOT_DOT] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_yield] = ACTIONS(1466), - [anon_sym_move] = ACTIONS(1466), - [sym_integer_literal] = ACTIONS(1464), - [aux_sym_string_literal_token1] = ACTIONS(1464), - [sym_char_literal] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1466), - [anon_sym_false] = ACTIONS(1466), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1466), - [sym_super] = ACTIONS(1466), - [sym_crate] = ACTIONS(1466), - [sym_metavariable] = ACTIONS(1464), - [sym_raw_string_literal] = ACTIONS(1464), - [sym_float_literal] = ACTIONS(1464), + [ts_builtin_sym_end] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_macro_rules_BANG] = ACTIONS(1466), + [anon_sym_LPAREN] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_u8] = ACTIONS(1468), + [anon_sym_i8] = ACTIONS(1468), + [anon_sym_u16] = ACTIONS(1468), + [anon_sym_i16] = ACTIONS(1468), + [anon_sym_u32] = ACTIONS(1468), + [anon_sym_i32] = ACTIONS(1468), + [anon_sym_u64] = ACTIONS(1468), + [anon_sym_i64] = ACTIONS(1468), + [anon_sym_u128] = ACTIONS(1468), + [anon_sym_i128] = ACTIONS(1468), + [anon_sym_isize] = ACTIONS(1468), + [anon_sym_usize] = ACTIONS(1468), + [anon_sym_f32] = ACTIONS(1468), + [anon_sym_f64] = ACTIONS(1468), + [anon_sym_bool] = ACTIONS(1468), + [anon_sym_str] = ACTIONS(1468), + [anon_sym_char] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_async] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_fn] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_impl] = ACTIONS(1468), + [anon_sym_let] = ACTIONS(1468), + [anon_sym_loop] = ACTIONS(1468), + [anon_sym_match] = ACTIONS(1468), + [anon_sym_mod] = ACTIONS(1468), + [anon_sym_pub] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_trait] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1468), + [anon_sym_use] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_COLON_COLON] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_DOT_DOT] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_yield] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [sym_integer_literal] = ACTIONS(1466), + [aux_sym_string_literal_token1] = ACTIONS(1466), + [sym_char_literal] = ACTIONS(1466), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1468), + [sym_super] = ACTIONS(1468), + [sym_crate] = ACTIONS(1468), + [sym_metavariable] = ACTIONS(1466), + [sym_raw_string_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1466), [sym_block_comment] = ACTIONS(3), }, [353] = { - [ts_builtin_sym_end] = ACTIONS(1468), - [sym_identifier] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_macro_rules_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_u8] = ACTIONS(1470), - [anon_sym_i8] = ACTIONS(1470), - [anon_sym_u16] = ACTIONS(1470), - [anon_sym_i16] = ACTIONS(1470), - [anon_sym_u32] = ACTIONS(1470), - [anon_sym_i32] = ACTIONS(1470), - [anon_sym_u64] = ACTIONS(1470), - [anon_sym_i64] = ACTIONS(1470), - [anon_sym_u128] = ACTIONS(1470), - [anon_sym_i128] = ACTIONS(1470), - [anon_sym_isize] = ACTIONS(1470), - [anon_sym_usize] = ACTIONS(1470), - [anon_sym_f32] = ACTIONS(1470), - [anon_sym_f64] = ACTIONS(1470), - [anon_sym_bool] = ACTIONS(1470), - [anon_sym_str] = ACTIONS(1470), - [anon_sym_char] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_default] = ACTIONS(1470), - [anon_sym_enum] = ACTIONS(1470), - [anon_sym_fn] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_impl] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_mod] = ACTIONS(1470), - [anon_sym_pub] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_static] = ACTIONS(1470), - [anon_sym_struct] = ACTIONS(1470), - [anon_sym_trait] = ACTIONS(1470), - [anon_sym_type] = ACTIONS(1470), - [anon_sym_union] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1468), - [anon_sym_COLON_COLON] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_DOT_DOT] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_yield] = ACTIONS(1470), - [anon_sym_move] = ACTIONS(1470), - [sym_integer_literal] = ACTIONS(1468), - [aux_sym_string_literal_token1] = ACTIONS(1468), - [sym_char_literal] = ACTIONS(1468), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1470), - [sym_super] = ACTIONS(1470), - [sym_crate] = ACTIONS(1470), - [sym_metavariable] = ACTIONS(1468), - [sym_raw_string_literal] = ACTIONS(1468), - [sym_float_literal] = ACTIONS(1468), + [ts_builtin_sym_end] = ACTIONS(1470), + [sym_identifier] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_macro_rules_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_u8] = ACTIONS(1472), + [anon_sym_i8] = ACTIONS(1472), + [anon_sym_u16] = ACTIONS(1472), + [anon_sym_i16] = ACTIONS(1472), + [anon_sym_u32] = ACTIONS(1472), + [anon_sym_i32] = ACTIONS(1472), + [anon_sym_u64] = ACTIONS(1472), + [anon_sym_i64] = ACTIONS(1472), + [anon_sym_u128] = ACTIONS(1472), + [anon_sym_i128] = ACTIONS(1472), + [anon_sym_isize] = ACTIONS(1472), + [anon_sym_usize] = ACTIONS(1472), + [anon_sym_f32] = ACTIONS(1472), + [anon_sym_f64] = ACTIONS(1472), + [anon_sym_bool] = ACTIONS(1472), + [anon_sym_str] = ACTIONS(1472), + [anon_sym_char] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_async] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_fn] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_impl] = ACTIONS(1472), + [anon_sym_let] = ACTIONS(1472), + [anon_sym_loop] = ACTIONS(1472), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_mod] = ACTIONS(1472), + [anon_sym_pub] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_trait] = ACTIONS(1472), + [anon_sym_type] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_unsafe] = ACTIONS(1472), + [anon_sym_use] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_POUND] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_COLON_COLON] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), + [anon_sym_move] = ACTIONS(1472), + [sym_integer_literal] = ACTIONS(1470), + [aux_sym_string_literal_token1] = ACTIONS(1470), + [sym_char_literal] = ACTIONS(1470), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1472), + [sym_super] = ACTIONS(1472), + [sym_crate] = ACTIONS(1472), + [sym_metavariable] = ACTIONS(1470), + [sym_raw_string_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1470), [sym_block_comment] = ACTIONS(3), }, [354] = { - [ts_builtin_sym_end] = ACTIONS(1472), - [sym_identifier] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_macro_rules_BANG] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_u8] = ACTIONS(1474), - [anon_sym_i8] = ACTIONS(1474), - [anon_sym_u16] = ACTIONS(1474), - [anon_sym_i16] = ACTIONS(1474), - [anon_sym_u32] = ACTIONS(1474), - [anon_sym_i32] = ACTIONS(1474), - [anon_sym_u64] = ACTIONS(1474), - [anon_sym_i64] = ACTIONS(1474), - [anon_sym_u128] = ACTIONS(1474), - [anon_sym_i128] = ACTIONS(1474), - [anon_sym_isize] = ACTIONS(1474), - [anon_sym_usize] = ACTIONS(1474), - [anon_sym_f32] = ACTIONS(1474), - [anon_sym_f64] = ACTIONS(1474), - [anon_sym_bool] = ACTIONS(1474), - [anon_sym_str] = ACTIONS(1474), - [anon_sym_char] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_async] = ACTIONS(1474), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_enum] = ACTIONS(1474), - [anon_sym_fn] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1474), - [anon_sym_impl] = ACTIONS(1474), - [anon_sym_let] = ACTIONS(1474), - [anon_sym_loop] = ACTIONS(1474), - [anon_sym_match] = ACTIONS(1474), - [anon_sym_mod] = ACTIONS(1474), - [anon_sym_pub] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1474), - [anon_sym_static] = ACTIONS(1474), - [anon_sym_struct] = ACTIONS(1474), - [anon_sym_trait] = ACTIONS(1474), - [anon_sym_type] = ACTIONS(1474), - [anon_sym_union] = ACTIONS(1474), - [anon_sym_unsafe] = ACTIONS(1474), - [anon_sym_use] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1474), - [anon_sym_POUND] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1474), - [anon_sym_LT] = ACTIONS(1472), - [anon_sym_COLON_COLON] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_move] = ACTIONS(1474), - [sym_integer_literal] = ACTIONS(1472), - [aux_sym_string_literal_token1] = ACTIONS(1472), - [sym_char_literal] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1474), - [anon_sym_false] = ACTIONS(1474), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1474), - [sym_super] = ACTIONS(1474), - [sym_crate] = ACTIONS(1474), - [sym_metavariable] = ACTIONS(1472), - [sym_raw_string_literal] = ACTIONS(1472), - [sym_float_literal] = ACTIONS(1472), + [ts_builtin_sym_end] = ACTIONS(1474), + [sym_identifier] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_macro_rules_BANG] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_u8] = ACTIONS(1476), + [anon_sym_i8] = ACTIONS(1476), + [anon_sym_u16] = ACTIONS(1476), + [anon_sym_i16] = ACTIONS(1476), + [anon_sym_u32] = ACTIONS(1476), + [anon_sym_i32] = ACTIONS(1476), + [anon_sym_u64] = ACTIONS(1476), + [anon_sym_i64] = ACTIONS(1476), + [anon_sym_u128] = ACTIONS(1476), + [anon_sym_i128] = ACTIONS(1476), + [anon_sym_isize] = ACTIONS(1476), + [anon_sym_usize] = ACTIONS(1476), + [anon_sym_f32] = ACTIONS(1476), + [anon_sym_f64] = ACTIONS(1476), + [anon_sym_bool] = ACTIONS(1476), + [anon_sym_str] = ACTIONS(1476), + [anon_sym_char] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_fn] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_impl] = ACTIONS(1476), + [anon_sym_let] = ACTIONS(1476), + [anon_sym_loop] = ACTIONS(1476), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_mod] = ACTIONS(1476), + [anon_sym_pub] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_trait] = ACTIONS(1476), + [anon_sym_type] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1476), + [anon_sym_use] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_COLON_COLON] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_DOT_DOT] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_move] = ACTIONS(1476), + [sym_integer_literal] = ACTIONS(1474), + [aux_sym_string_literal_token1] = ACTIONS(1474), + [sym_char_literal] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1476), + [anon_sym_false] = ACTIONS(1476), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1476), + [sym_super] = ACTIONS(1476), + [sym_crate] = ACTIONS(1476), + [sym_metavariable] = ACTIONS(1474), + [sym_raw_string_literal] = ACTIONS(1474), + [sym_float_literal] = ACTIONS(1474), [sym_block_comment] = ACTIONS(3), }, [355] = { - [ts_builtin_sym_end] = ACTIONS(1476), - [sym_identifier] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_macro_rules_BANG] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_u8] = ACTIONS(1478), - [anon_sym_i8] = ACTIONS(1478), - [anon_sym_u16] = ACTIONS(1478), - [anon_sym_i16] = ACTIONS(1478), - [anon_sym_u32] = ACTIONS(1478), - [anon_sym_i32] = ACTIONS(1478), - [anon_sym_u64] = ACTIONS(1478), - [anon_sym_i64] = ACTIONS(1478), - [anon_sym_u128] = ACTIONS(1478), - [anon_sym_i128] = ACTIONS(1478), - [anon_sym_isize] = ACTIONS(1478), - [anon_sym_usize] = ACTIONS(1478), - [anon_sym_f32] = ACTIONS(1478), - [anon_sym_f64] = ACTIONS(1478), - [anon_sym_bool] = ACTIONS(1478), - [anon_sym_str] = ACTIONS(1478), - [anon_sym_char] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_async] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_default] = ACTIONS(1478), - [anon_sym_enum] = ACTIONS(1478), - [anon_sym_fn] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_impl] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1478), - [anon_sym_loop] = ACTIONS(1478), - [anon_sym_match] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_pub] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_struct] = ACTIONS(1478), - [anon_sym_trait] = ACTIONS(1478), - [anon_sym_type] = ACTIONS(1478), - [anon_sym_union] = ACTIONS(1478), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_use] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_POUND] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_COLON_COLON] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_yield] = ACTIONS(1478), - [anon_sym_move] = ACTIONS(1478), - [sym_integer_literal] = ACTIONS(1476), - [aux_sym_string_literal_token1] = ACTIONS(1476), - [sym_char_literal] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1478), - [anon_sym_false] = ACTIONS(1478), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1478), - [sym_super] = ACTIONS(1478), - [sym_crate] = ACTIONS(1478), - [sym_metavariable] = ACTIONS(1476), - [sym_raw_string_literal] = ACTIONS(1476), - [sym_float_literal] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1478), + [sym_identifier] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_macro_rules_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_u8] = ACTIONS(1480), + [anon_sym_i8] = ACTIONS(1480), + [anon_sym_u16] = ACTIONS(1480), + [anon_sym_i16] = ACTIONS(1480), + [anon_sym_u32] = ACTIONS(1480), + [anon_sym_i32] = ACTIONS(1480), + [anon_sym_u64] = ACTIONS(1480), + [anon_sym_i64] = ACTIONS(1480), + [anon_sym_u128] = ACTIONS(1480), + [anon_sym_i128] = ACTIONS(1480), + [anon_sym_isize] = ACTIONS(1480), + [anon_sym_usize] = ACTIONS(1480), + [anon_sym_f32] = ACTIONS(1480), + [anon_sym_f64] = ACTIONS(1480), + [anon_sym_bool] = ACTIONS(1480), + [anon_sym_str] = ACTIONS(1480), + [anon_sym_char] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_async] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_fn] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_impl] = ACTIONS(1480), + [anon_sym_let] = ACTIONS(1480), + [anon_sym_loop] = ACTIONS(1480), + [anon_sym_match] = ACTIONS(1480), + [anon_sym_mod] = ACTIONS(1480), + [anon_sym_pub] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_trait] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1480), + [anon_sym_use] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_POUND] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1478), + [anon_sym_COLON_COLON] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_yield] = ACTIONS(1480), + [anon_sym_move] = ACTIONS(1480), + [sym_integer_literal] = ACTIONS(1478), + [aux_sym_string_literal_token1] = ACTIONS(1478), + [sym_char_literal] = ACTIONS(1478), + [anon_sym_true] = ACTIONS(1480), + [anon_sym_false] = ACTIONS(1480), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1480), + [sym_super] = ACTIONS(1480), + [sym_crate] = ACTIONS(1480), + [sym_metavariable] = ACTIONS(1478), + [sym_raw_string_literal] = ACTIONS(1478), + [sym_float_literal] = ACTIONS(1478), [sym_block_comment] = ACTIONS(3), }, [356] = { - [ts_builtin_sym_end] = ACTIONS(1480), - [sym_identifier] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_macro_rules_BANG] = ACTIONS(1480), - [anon_sym_LPAREN] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_u8] = ACTIONS(1482), - [anon_sym_i8] = ACTIONS(1482), - [anon_sym_u16] = ACTIONS(1482), - [anon_sym_i16] = ACTIONS(1482), - [anon_sym_u32] = ACTIONS(1482), - [anon_sym_i32] = ACTIONS(1482), - [anon_sym_u64] = ACTIONS(1482), - [anon_sym_i64] = ACTIONS(1482), - [anon_sym_u128] = ACTIONS(1482), - [anon_sym_i128] = ACTIONS(1482), - [anon_sym_isize] = ACTIONS(1482), - [anon_sym_usize] = ACTIONS(1482), - [anon_sym_f32] = ACTIONS(1482), - [anon_sym_f64] = ACTIONS(1482), - [anon_sym_bool] = ACTIONS(1482), - [anon_sym_str] = ACTIONS(1482), - [anon_sym_char] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_async] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), - [anon_sym_fn] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_impl] = ACTIONS(1482), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_loop] = ACTIONS(1482), - [anon_sym_match] = ACTIONS(1482), - [anon_sym_mod] = ACTIONS(1482), - [anon_sym_pub] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_struct] = ACTIONS(1482), - [anon_sym_trait] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_union] = ACTIONS(1482), - [anon_sym_unsafe] = ACTIONS(1482), - [anon_sym_use] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_POUND] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1482), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_COLON_COLON] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_yield] = ACTIONS(1482), - [anon_sym_move] = ACTIONS(1482), - [sym_integer_literal] = ACTIONS(1480), - [aux_sym_string_literal_token1] = ACTIONS(1480), - [sym_char_literal] = ACTIONS(1480), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1482), - [sym_super] = ACTIONS(1482), - [sym_crate] = ACTIONS(1482), - [sym_metavariable] = ACTIONS(1480), - [sym_raw_string_literal] = ACTIONS(1480), - [sym_float_literal] = ACTIONS(1480), + [ts_builtin_sym_end] = ACTIONS(1482), + [sym_identifier] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_macro_rules_BANG] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_u8] = ACTIONS(1484), + [anon_sym_i8] = ACTIONS(1484), + [anon_sym_u16] = ACTIONS(1484), + [anon_sym_i16] = ACTIONS(1484), + [anon_sym_u32] = ACTIONS(1484), + [anon_sym_i32] = ACTIONS(1484), + [anon_sym_u64] = ACTIONS(1484), + [anon_sym_i64] = ACTIONS(1484), + [anon_sym_u128] = ACTIONS(1484), + [anon_sym_i128] = ACTIONS(1484), + [anon_sym_isize] = ACTIONS(1484), + [anon_sym_usize] = ACTIONS(1484), + [anon_sym_f32] = ACTIONS(1484), + [anon_sym_f64] = ACTIONS(1484), + [anon_sym_bool] = ACTIONS(1484), + [anon_sym_str] = ACTIONS(1484), + [anon_sym_char] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_async] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_fn] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_impl] = ACTIONS(1484), + [anon_sym_let] = ACTIONS(1484), + [anon_sym_loop] = ACTIONS(1484), + [anon_sym_match] = ACTIONS(1484), + [anon_sym_mod] = ACTIONS(1484), + [anon_sym_pub] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_trait] = ACTIONS(1484), + [anon_sym_type] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_unsafe] = ACTIONS(1484), + [anon_sym_use] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_POUND] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1482), + [anon_sym_COLON_COLON] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1482), + [anon_sym_yield] = ACTIONS(1484), + [anon_sym_move] = ACTIONS(1484), + [sym_integer_literal] = ACTIONS(1482), + [aux_sym_string_literal_token1] = ACTIONS(1482), + [sym_char_literal] = ACTIONS(1482), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1484), + [sym_super] = ACTIONS(1484), + [sym_crate] = ACTIONS(1484), + [sym_metavariable] = ACTIONS(1482), + [sym_raw_string_literal] = ACTIONS(1482), + [sym_float_literal] = ACTIONS(1482), [sym_block_comment] = ACTIONS(3), }, [357] = { - [ts_builtin_sym_end] = ACTIONS(1484), - [sym_identifier] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_macro_rules_BANG] = ACTIONS(1484), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_u8] = ACTIONS(1486), - [anon_sym_i8] = ACTIONS(1486), - [anon_sym_u16] = ACTIONS(1486), - [anon_sym_i16] = ACTIONS(1486), - [anon_sym_u32] = ACTIONS(1486), - [anon_sym_i32] = ACTIONS(1486), - [anon_sym_u64] = ACTIONS(1486), - [anon_sym_i64] = ACTIONS(1486), - [anon_sym_u128] = ACTIONS(1486), - [anon_sym_i128] = ACTIONS(1486), - [anon_sym_isize] = ACTIONS(1486), - [anon_sym_usize] = ACTIONS(1486), - [anon_sym_f32] = ACTIONS(1486), - [anon_sym_f64] = ACTIONS(1486), - [anon_sym_bool] = ACTIONS(1486), - [anon_sym_str] = ACTIONS(1486), - [anon_sym_char] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_async] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1486), - [anon_sym_enum] = ACTIONS(1486), - [anon_sym_fn] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_impl] = ACTIONS(1486), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_loop] = ACTIONS(1486), - [anon_sym_match] = ACTIONS(1486), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_pub] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_struct] = ACTIONS(1486), - [anon_sym_trait] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1486), - [anon_sym_unsafe] = ACTIONS(1486), - [anon_sym_use] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_POUND] = ACTIONS(1484), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1484), - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_yield] = ACTIONS(1486), - [anon_sym_move] = ACTIONS(1486), - [sym_integer_literal] = ACTIONS(1484), - [aux_sym_string_literal_token1] = ACTIONS(1484), - [sym_char_literal] = ACTIONS(1484), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1486), - [sym_super] = ACTIONS(1486), - [sym_crate] = ACTIONS(1486), - [sym_metavariable] = ACTIONS(1484), - [sym_raw_string_literal] = ACTIONS(1484), - [sym_float_literal] = ACTIONS(1484), + [ts_builtin_sym_end] = ACTIONS(1486), + [sym_identifier] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_macro_rules_BANG] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_u8] = ACTIONS(1488), + [anon_sym_i8] = ACTIONS(1488), + [anon_sym_u16] = ACTIONS(1488), + [anon_sym_i16] = ACTIONS(1488), + [anon_sym_u32] = ACTIONS(1488), + [anon_sym_i32] = ACTIONS(1488), + [anon_sym_u64] = ACTIONS(1488), + [anon_sym_i64] = ACTIONS(1488), + [anon_sym_u128] = ACTIONS(1488), + [anon_sym_i128] = ACTIONS(1488), + [anon_sym_isize] = ACTIONS(1488), + [anon_sym_usize] = ACTIONS(1488), + [anon_sym_f32] = ACTIONS(1488), + [anon_sym_f64] = ACTIONS(1488), + [anon_sym_bool] = ACTIONS(1488), + [anon_sym_str] = ACTIONS(1488), + [anon_sym_char] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_async] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_fn] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_impl] = ACTIONS(1488), + [anon_sym_let] = ACTIONS(1488), + [anon_sym_loop] = ACTIONS(1488), + [anon_sym_match] = ACTIONS(1488), + [anon_sym_mod] = ACTIONS(1488), + [anon_sym_pub] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_trait] = ACTIONS(1488), + [anon_sym_type] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_unsafe] = ACTIONS(1488), + [anon_sym_use] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_POUND] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_COLON_COLON] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1486), + [anon_sym_yield] = ACTIONS(1488), + [anon_sym_move] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1486), + [aux_sym_string_literal_token1] = ACTIONS(1486), + [sym_char_literal] = ACTIONS(1486), + [anon_sym_true] = ACTIONS(1488), + [anon_sym_false] = ACTIONS(1488), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1488), + [sym_super] = ACTIONS(1488), + [sym_crate] = ACTIONS(1488), + [sym_metavariable] = ACTIONS(1486), + [sym_raw_string_literal] = ACTIONS(1486), + [sym_float_literal] = ACTIONS(1486), [sym_block_comment] = ACTIONS(3), }, [358] = { - [ts_builtin_sym_end] = ACTIONS(1488), - [sym_identifier] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_macro_rules_BANG] = ACTIONS(1488), - [anon_sym_LPAREN] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_u8] = ACTIONS(1490), - [anon_sym_i8] = ACTIONS(1490), - [anon_sym_u16] = ACTIONS(1490), - [anon_sym_i16] = ACTIONS(1490), - [anon_sym_u32] = ACTIONS(1490), - [anon_sym_i32] = ACTIONS(1490), - [anon_sym_u64] = ACTIONS(1490), - [anon_sym_i64] = ACTIONS(1490), - [anon_sym_u128] = ACTIONS(1490), - [anon_sym_i128] = ACTIONS(1490), - [anon_sym_isize] = ACTIONS(1490), - [anon_sym_usize] = ACTIONS(1490), - [anon_sym_f32] = ACTIONS(1490), - [anon_sym_f64] = ACTIONS(1490), - [anon_sym_bool] = ACTIONS(1490), - [anon_sym_str] = ACTIONS(1490), - [anon_sym_char] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_async] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_default] = ACTIONS(1490), - [anon_sym_enum] = ACTIONS(1490), - [anon_sym_fn] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_impl] = ACTIONS(1490), - [anon_sym_let] = ACTIONS(1490), - [anon_sym_loop] = ACTIONS(1490), - [anon_sym_match] = ACTIONS(1490), - [anon_sym_mod] = ACTIONS(1490), - [anon_sym_pub] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_static] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_trait] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1490), - [anon_sym_union] = ACTIONS(1490), - [anon_sym_unsafe] = ACTIONS(1490), - [anon_sym_use] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_POUND] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1490), - [anon_sym_LT] = ACTIONS(1488), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_DOT_DOT] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_yield] = ACTIONS(1490), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1488), - [aux_sym_string_literal_token1] = ACTIONS(1488), - [sym_char_literal] = ACTIONS(1488), - [anon_sym_true] = ACTIONS(1490), - [anon_sym_false] = ACTIONS(1490), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1490), - [sym_super] = ACTIONS(1490), - [sym_crate] = ACTIONS(1490), - [sym_metavariable] = ACTIONS(1488), - [sym_raw_string_literal] = ACTIONS(1488), - [sym_float_literal] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(1490), + [sym_identifier] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_macro_rules_BANG] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_async] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_fn] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_impl] = ACTIONS(1492), + [anon_sym_let] = ACTIONS(1492), + [anon_sym_loop] = ACTIONS(1492), + [anon_sym_match] = ACTIONS(1492), + [anon_sym_mod] = ACTIONS(1492), + [anon_sym_pub] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_trait] = ACTIONS(1492), + [anon_sym_type] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_unsafe] = ACTIONS(1492), + [anon_sym_use] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1490), + [anon_sym_COLON_COLON] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_DOT_DOT] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_move] = ACTIONS(1492), + [sym_integer_literal] = ACTIONS(1490), + [aux_sym_string_literal_token1] = ACTIONS(1490), + [sym_char_literal] = ACTIONS(1490), + [anon_sym_true] = ACTIONS(1492), + [anon_sym_false] = ACTIONS(1492), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1492), + [sym_super] = ACTIONS(1492), + [sym_crate] = ACTIONS(1492), + [sym_metavariable] = ACTIONS(1490), + [sym_raw_string_literal] = ACTIONS(1490), + [sym_float_literal] = ACTIONS(1490), [sym_block_comment] = ACTIONS(3), }, [359] = { - [ts_builtin_sym_end] = ACTIONS(1492), - [sym_identifier] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_macro_rules_BANG] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_u8] = ACTIONS(1494), - [anon_sym_i8] = ACTIONS(1494), - [anon_sym_u16] = ACTIONS(1494), - [anon_sym_i16] = ACTIONS(1494), - [anon_sym_u32] = ACTIONS(1494), - [anon_sym_i32] = ACTIONS(1494), - [anon_sym_u64] = ACTIONS(1494), - [anon_sym_i64] = ACTIONS(1494), - [anon_sym_u128] = ACTIONS(1494), - [anon_sym_i128] = ACTIONS(1494), - [anon_sym_isize] = ACTIONS(1494), - [anon_sym_usize] = ACTIONS(1494), - [anon_sym_f32] = ACTIONS(1494), - [anon_sym_f64] = ACTIONS(1494), - [anon_sym_bool] = ACTIONS(1494), - [anon_sym_str] = ACTIONS(1494), - [anon_sym_char] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_async] = ACTIONS(1494), - [anon_sym_break] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1494), - [anon_sym_continue] = ACTIONS(1494), - [anon_sym_default] = ACTIONS(1494), - [anon_sym_enum] = ACTIONS(1494), - [anon_sym_fn] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1494), - [anon_sym_impl] = ACTIONS(1494), - [anon_sym_let] = ACTIONS(1494), - [anon_sym_loop] = ACTIONS(1494), - [anon_sym_match] = ACTIONS(1494), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_pub] = ACTIONS(1494), - [anon_sym_return] = ACTIONS(1494), - [anon_sym_static] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1494), - [anon_sym_trait] = ACTIONS(1494), - [anon_sym_type] = ACTIONS(1494), - [anon_sym_union] = ACTIONS(1494), - [anon_sym_unsafe] = ACTIONS(1494), - [anon_sym_use] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(1492), - [anon_sym_BANG] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_COLON_COLON] = ACTIONS(1492), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_DOT_DOT] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_move] = ACTIONS(1494), - [sym_integer_literal] = ACTIONS(1492), - [aux_sym_string_literal_token1] = ACTIONS(1492), - [sym_char_literal] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1494), - [sym_super] = ACTIONS(1494), - [sym_crate] = ACTIONS(1494), - [sym_metavariable] = ACTIONS(1492), - [sym_raw_string_literal] = ACTIONS(1492), - [sym_float_literal] = ACTIONS(1492), + [ts_builtin_sym_end] = ACTIONS(1494), + [sym_identifier] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_macro_rules_BANG] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_u8] = ACTIONS(1496), + [anon_sym_i8] = ACTIONS(1496), + [anon_sym_u16] = ACTIONS(1496), + [anon_sym_i16] = ACTIONS(1496), + [anon_sym_u32] = ACTIONS(1496), + [anon_sym_i32] = ACTIONS(1496), + [anon_sym_u64] = ACTIONS(1496), + [anon_sym_i64] = ACTIONS(1496), + [anon_sym_u128] = ACTIONS(1496), + [anon_sym_i128] = ACTIONS(1496), + [anon_sym_isize] = ACTIONS(1496), + [anon_sym_usize] = ACTIONS(1496), + [anon_sym_f32] = ACTIONS(1496), + [anon_sym_f64] = ACTIONS(1496), + [anon_sym_bool] = ACTIONS(1496), + [anon_sym_str] = ACTIONS(1496), + [anon_sym_char] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_fn] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_impl] = ACTIONS(1496), + [anon_sym_let] = ACTIONS(1496), + [anon_sym_loop] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_mod] = ACTIONS(1496), + [anon_sym_pub] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_trait] = ACTIONS(1496), + [anon_sym_type] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_unsafe] = ACTIONS(1496), + [anon_sym_use] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1494), + [anon_sym_COLON_COLON] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_DOT_DOT] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_move] = ACTIONS(1496), + [sym_integer_literal] = ACTIONS(1494), + [aux_sym_string_literal_token1] = ACTIONS(1494), + [sym_char_literal] = ACTIONS(1494), + [anon_sym_true] = ACTIONS(1496), + [anon_sym_false] = ACTIONS(1496), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1496), + [sym_super] = ACTIONS(1496), + [sym_crate] = ACTIONS(1496), + [sym_metavariable] = ACTIONS(1494), + [sym_raw_string_literal] = ACTIONS(1494), + [sym_float_literal] = ACTIONS(1494), [sym_block_comment] = ACTIONS(3), }, [360] = { - [ts_builtin_sym_end] = ACTIONS(1496), - [sym_identifier] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_macro_rules_BANG] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1496), - [anon_sym_u8] = ACTIONS(1498), - [anon_sym_i8] = ACTIONS(1498), - [anon_sym_u16] = ACTIONS(1498), - [anon_sym_i16] = ACTIONS(1498), - [anon_sym_u32] = ACTIONS(1498), - [anon_sym_i32] = ACTIONS(1498), - [anon_sym_u64] = ACTIONS(1498), - [anon_sym_i64] = ACTIONS(1498), - [anon_sym_u128] = ACTIONS(1498), - [anon_sym_i128] = ACTIONS(1498), - [anon_sym_isize] = ACTIONS(1498), - [anon_sym_usize] = ACTIONS(1498), - [anon_sym_f32] = ACTIONS(1498), - [anon_sym_f64] = ACTIONS(1498), - [anon_sym_bool] = ACTIONS(1498), - [anon_sym_str] = ACTIONS(1498), - [anon_sym_char] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_async] = ACTIONS(1498), - [anon_sym_break] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1498), - [anon_sym_continue] = ACTIONS(1498), - [anon_sym_default] = ACTIONS(1498), - [anon_sym_enum] = ACTIONS(1498), - [anon_sym_fn] = ACTIONS(1498), - [anon_sym_for] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1498), - [anon_sym_impl] = ACTIONS(1498), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_loop] = ACTIONS(1498), - [anon_sym_match] = ACTIONS(1498), - [anon_sym_mod] = ACTIONS(1498), - [anon_sym_pub] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1498), - [anon_sym_trait] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_union] = ACTIONS(1498), - [anon_sym_unsafe] = ACTIONS(1498), - [anon_sym_use] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1498), - [anon_sym_POUND] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1496), - [anon_sym_yield] = ACTIONS(1498), - [anon_sym_move] = ACTIONS(1498), - [sym_integer_literal] = ACTIONS(1496), - [aux_sym_string_literal_token1] = ACTIONS(1496), - [sym_char_literal] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1498), - [anon_sym_false] = ACTIONS(1498), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1498), - [sym_super] = ACTIONS(1498), - [sym_crate] = ACTIONS(1498), - [sym_metavariable] = ACTIONS(1496), - [sym_raw_string_literal] = ACTIONS(1496), - [sym_float_literal] = ACTIONS(1496), + [ts_builtin_sym_end] = ACTIONS(1498), + [sym_identifier] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_macro_rules_BANG] = ACTIONS(1498), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_u8] = ACTIONS(1500), + [anon_sym_i8] = ACTIONS(1500), + [anon_sym_u16] = ACTIONS(1500), + [anon_sym_i16] = ACTIONS(1500), + [anon_sym_u32] = ACTIONS(1500), + [anon_sym_i32] = ACTIONS(1500), + [anon_sym_u64] = ACTIONS(1500), + [anon_sym_i64] = ACTIONS(1500), + [anon_sym_u128] = ACTIONS(1500), + [anon_sym_i128] = ACTIONS(1500), + [anon_sym_isize] = ACTIONS(1500), + [anon_sym_usize] = ACTIONS(1500), + [anon_sym_f32] = ACTIONS(1500), + [anon_sym_f64] = ACTIONS(1500), + [anon_sym_bool] = ACTIONS(1500), + [anon_sym_str] = ACTIONS(1500), + [anon_sym_char] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_async] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_fn] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_impl] = ACTIONS(1500), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_loop] = ACTIONS(1500), + [anon_sym_match] = ACTIONS(1500), + [anon_sym_mod] = ACTIONS(1500), + [anon_sym_pub] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_trait] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_unsafe] = ACTIONS(1500), + [anon_sym_use] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_move] = ACTIONS(1500), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1498), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1500), + [anon_sym_false] = ACTIONS(1500), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1500), + [sym_super] = ACTIONS(1500), + [sym_crate] = ACTIONS(1500), + [sym_metavariable] = ACTIONS(1498), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, [361] = { - [sym_attribute_item] = STATE(558), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_match_arm] = STATE(501), - [sym_last_match_arm] = STATE(2368), - [sym_match_pattern] = STATE(2369), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2033), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_match_block_repeat1] = STATE(501), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [362] = { [ts_builtin_sym_end] = ACTIONS(1502), [sym_identifier] = ACTIONS(1504), [anon_sym_SEMI] = ACTIONS(1502), @@ -51569,7 +50903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1502), [sym_block_comment] = ACTIONS(3), }, - [363] = { + [362] = { [ts_builtin_sym_end] = ACTIONS(1506), [sym_identifier] = ACTIONS(1508), [anon_sym_SEMI] = ACTIONS(1506), @@ -51646,7245 +50980,6860 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1506), [sym_block_comment] = ACTIONS(3), }, + [363] = { + [sym_attribute_item] = STATE(545), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_match_arm] = STATE(486), + [sym_last_match_arm] = STATE(2458), + [sym_match_pattern] = STATE(2312), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1916), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_enum_variant_list_repeat1] = STATE(545), + [aux_sym_match_block_repeat1] = STATE(486), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, [364] = { - [ts_builtin_sym_end] = ACTIONS(1510), - [sym_identifier] = ACTIONS(1512), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_macro_rules_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_u8] = ACTIONS(1512), - [anon_sym_i8] = ACTIONS(1512), - [anon_sym_u16] = ACTIONS(1512), - [anon_sym_i16] = ACTIONS(1512), - [anon_sym_u32] = ACTIONS(1512), - [anon_sym_i32] = ACTIONS(1512), - [anon_sym_u64] = ACTIONS(1512), - [anon_sym_i64] = ACTIONS(1512), - [anon_sym_u128] = ACTIONS(1512), - [anon_sym_i128] = ACTIONS(1512), - [anon_sym_isize] = ACTIONS(1512), - [anon_sym_usize] = ACTIONS(1512), - [anon_sym_f32] = ACTIONS(1512), - [anon_sym_f64] = ACTIONS(1512), - [anon_sym_bool] = ACTIONS(1512), - [anon_sym_str] = ACTIONS(1512), - [anon_sym_char] = ACTIONS(1512), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_continue] = ACTIONS(1512), - [anon_sym_default] = ACTIONS(1512), - [anon_sym_enum] = ACTIONS(1512), - [anon_sym_fn] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_impl] = ACTIONS(1512), - [anon_sym_let] = ACTIONS(1512), - [anon_sym_loop] = ACTIONS(1512), - [anon_sym_match] = ACTIONS(1512), - [anon_sym_mod] = ACTIONS(1512), - [anon_sym_pub] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1512), - [anon_sym_struct] = ACTIONS(1512), - [anon_sym_trait] = ACTIONS(1512), - [anon_sym_type] = ACTIONS(1512), - [anon_sym_union] = ACTIONS(1512), - [anon_sym_unsafe] = ACTIONS(1512), - [anon_sym_use] = ACTIONS(1512), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_POUND] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1510), - [anon_sym_COLON_COLON] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_DOT_DOT] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_yield] = ACTIONS(1512), - [anon_sym_move] = ACTIONS(1512), - [sym_integer_literal] = ACTIONS(1510), - [aux_sym_string_literal_token1] = ACTIONS(1510), - [sym_char_literal] = ACTIONS(1510), - [anon_sym_true] = ACTIONS(1512), - [anon_sym_false] = ACTIONS(1512), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1512), - [sym_super] = ACTIONS(1512), - [sym_crate] = ACTIONS(1512), - [sym_metavariable] = ACTIONS(1510), - [sym_raw_string_literal] = ACTIONS(1510), - [sym_float_literal] = ACTIONS(1510), + [ts_builtin_sym_end] = ACTIONS(1532), + [sym_identifier] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_macro_rules_BANG] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_async] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1534), + [anon_sym_enum] = ACTIONS(1534), + [anon_sym_fn] = ACTIONS(1534), + [anon_sym_for] = ACTIONS(1534), + [anon_sym_if] = ACTIONS(1534), + [anon_sym_impl] = ACTIONS(1534), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_loop] = ACTIONS(1534), + [anon_sym_match] = ACTIONS(1534), + [anon_sym_mod] = ACTIONS(1534), + [anon_sym_pub] = ACTIONS(1534), + [anon_sym_return] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_struct] = ACTIONS(1534), + [anon_sym_trait] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_union] = ACTIONS(1534), + [anon_sym_unsafe] = ACTIONS(1534), + [anon_sym_use] = ACTIONS(1534), + [anon_sym_while] = ACTIONS(1534), + [anon_sym_POUND] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_DOT_DOT] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_yield] = ACTIONS(1534), + [anon_sym_move] = ACTIONS(1534), + [sym_integer_literal] = ACTIONS(1532), + [aux_sym_string_literal_token1] = ACTIONS(1532), + [sym_char_literal] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1534), + [anon_sym_false] = ACTIONS(1534), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1534), + [sym_super] = ACTIONS(1534), + [sym_crate] = ACTIONS(1534), + [sym_metavariable] = ACTIONS(1532), + [sym_raw_string_literal] = ACTIONS(1532), + [sym_float_literal] = ACTIONS(1532), [sym_block_comment] = ACTIONS(3), }, [365] = { - [ts_builtin_sym_end] = ACTIONS(1514), - [sym_identifier] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_macro_rules_BANG] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_u8] = ACTIONS(1516), - [anon_sym_i8] = ACTIONS(1516), - [anon_sym_u16] = ACTIONS(1516), - [anon_sym_i16] = ACTIONS(1516), - [anon_sym_u32] = ACTIONS(1516), - [anon_sym_i32] = ACTIONS(1516), - [anon_sym_u64] = ACTIONS(1516), - [anon_sym_i64] = ACTIONS(1516), - [anon_sym_u128] = ACTIONS(1516), - [anon_sym_i128] = ACTIONS(1516), - [anon_sym_isize] = ACTIONS(1516), - [anon_sym_usize] = ACTIONS(1516), - [anon_sym_f32] = ACTIONS(1516), - [anon_sym_f64] = ACTIONS(1516), - [anon_sym_bool] = ACTIONS(1516), - [anon_sym_str] = ACTIONS(1516), - [anon_sym_char] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1516), - [anon_sym_async] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_const] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_default] = ACTIONS(1516), - [anon_sym_enum] = ACTIONS(1516), - [anon_sym_fn] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1516), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_impl] = ACTIONS(1516), - [anon_sym_let] = ACTIONS(1516), - [anon_sym_loop] = ACTIONS(1516), - [anon_sym_match] = ACTIONS(1516), - [anon_sym_mod] = ACTIONS(1516), - [anon_sym_pub] = ACTIONS(1516), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1516), - [anon_sym_struct] = ACTIONS(1516), - [anon_sym_trait] = ACTIONS(1516), - [anon_sym_type] = ACTIONS(1516), - [anon_sym_union] = ACTIONS(1516), - [anon_sym_unsafe] = ACTIONS(1516), - [anon_sym_use] = ACTIONS(1516), - [anon_sym_while] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_COLON_COLON] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_DOT_DOT] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_yield] = ACTIONS(1516), - [anon_sym_move] = ACTIONS(1516), - [sym_integer_literal] = ACTIONS(1514), - [aux_sym_string_literal_token1] = ACTIONS(1514), - [sym_char_literal] = ACTIONS(1514), - [anon_sym_true] = ACTIONS(1516), - [anon_sym_false] = ACTIONS(1516), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1516), - [sym_super] = ACTIONS(1516), - [sym_crate] = ACTIONS(1516), - [sym_metavariable] = ACTIONS(1514), - [sym_raw_string_literal] = ACTIONS(1514), - [sym_float_literal] = ACTIONS(1514), + [ts_builtin_sym_end] = ACTIONS(1536), + [sym_identifier] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_macro_rules_BANG] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_u8] = ACTIONS(1538), + [anon_sym_i8] = ACTIONS(1538), + [anon_sym_u16] = ACTIONS(1538), + [anon_sym_i16] = ACTIONS(1538), + [anon_sym_u32] = ACTIONS(1538), + [anon_sym_i32] = ACTIONS(1538), + [anon_sym_u64] = ACTIONS(1538), + [anon_sym_i64] = ACTIONS(1538), + [anon_sym_u128] = ACTIONS(1538), + [anon_sym_i128] = ACTIONS(1538), + [anon_sym_isize] = ACTIONS(1538), + [anon_sym_usize] = ACTIONS(1538), + [anon_sym_f32] = ACTIONS(1538), + [anon_sym_f64] = ACTIONS(1538), + [anon_sym_bool] = ACTIONS(1538), + [anon_sym_str] = ACTIONS(1538), + [anon_sym_char] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_async] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1538), + [anon_sym_enum] = ACTIONS(1538), + [anon_sym_fn] = ACTIONS(1538), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_impl] = ACTIONS(1538), + [anon_sym_let] = ACTIONS(1538), + [anon_sym_loop] = ACTIONS(1538), + [anon_sym_match] = ACTIONS(1538), + [anon_sym_mod] = ACTIONS(1538), + [anon_sym_pub] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_static] = ACTIONS(1538), + [anon_sym_struct] = ACTIONS(1538), + [anon_sym_trait] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1538), + [anon_sym_union] = ACTIONS(1538), + [anon_sym_unsafe] = ACTIONS(1538), + [anon_sym_use] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_yield] = ACTIONS(1538), + [anon_sym_move] = ACTIONS(1538), + [sym_integer_literal] = ACTIONS(1536), + [aux_sym_string_literal_token1] = ACTIONS(1536), + [sym_char_literal] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1538), + [sym_super] = ACTIONS(1538), + [sym_crate] = ACTIONS(1538), + [sym_metavariable] = ACTIONS(1536), + [sym_raw_string_literal] = ACTIONS(1536), + [sym_float_literal] = ACTIONS(1536), [sym_block_comment] = ACTIONS(3), }, [366] = { - [ts_builtin_sym_end] = ACTIONS(1518), - [sym_identifier] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_macro_rules_BANG] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_u8] = ACTIONS(1520), - [anon_sym_i8] = ACTIONS(1520), - [anon_sym_u16] = ACTIONS(1520), - [anon_sym_i16] = ACTIONS(1520), - [anon_sym_u32] = ACTIONS(1520), - [anon_sym_i32] = ACTIONS(1520), - [anon_sym_u64] = ACTIONS(1520), - [anon_sym_i64] = ACTIONS(1520), - [anon_sym_u128] = ACTIONS(1520), - [anon_sym_i128] = ACTIONS(1520), - [anon_sym_isize] = ACTIONS(1520), - [anon_sym_usize] = ACTIONS(1520), - [anon_sym_f32] = ACTIONS(1520), - [anon_sym_f64] = ACTIONS(1520), - [anon_sym_bool] = ACTIONS(1520), - [anon_sym_str] = ACTIONS(1520), - [anon_sym_char] = ACTIONS(1520), - [anon_sym_SQUOTE] = ACTIONS(1520), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_break] = ACTIONS(1520), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_continue] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1520), - [anon_sym_enum] = ACTIONS(1520), - [anon_sym_fn] = ACTIONS(1520), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_impl] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1520), - [anon_sym_loop] = ACTIONS(1520), - [anon_sym_match] = ACTIONS(1520), - [anon_sym_mod] = ACTIONS(1520), - [anon_sym_pub] = ACTIONS(1520), - [anon_sym_return] = ACTIONS(1520), - [anon_sym_static] = ACTIONS(1520), - [anon_sym_struct] = ACTIONS(1520), - [anon_sym_trait] = ACTIONS(1520), - [anon_sym_type] = ACTIONS(1520), - [anon_sym_union] = ACTIONS(1520), - [anon_sym_unsafe] = ACTIONS(1520), - [anon_sym_use] = ACTIONS(1520), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_COLON_COLON] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_yield] = ACTIONS(1520), - [anon_sym_move] = ACTIONS(1520), - [sym_integer_literal] = ACTIONS(1518), - [aux_sym_string_literal_token1] = ACTIONS(1518), - [sym_char_literal] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1520), - [sym_super] = ACTIONS(1520), - [sym_crate] = ACTIONS(1520), - [sym_metavariable] = ACTIONS(1518), - [sym_raw_string_literal] = ACTIONS(1518), - [sym_float_literal] = ACTIONS(1518), + [ts_builtin_sym_end] = ACTIONS(1540), + [sym_identifier] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_macro_rules_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_u8] = ACTIONS(1542), + [anon_sym_i8] = ACTIONS(1542), + [anon_sym_u16] = ACTIONS(1542), + [anon_sym_i16] = ACTIONS(1542), + [anon_sym_u32] = ACTIONS(1542), + [anon_sym_i32] = ACTIONS(1542), + [anon_sym_u64] = ACTIONS(1542), + [anon_sym_i64] = ACTIONS(1542), + [anon_sym_u128] = ACTIONS(1542), + [anon_sym_i128] = ACTIONS(1542), + [anon_sym_isize] = ACTIONS(1542), + [anon_sym_usize] = ACTIONS(1542), + [anon_sym_f32] = ACTIONS(1542), + [anon_sym_f64] = ACTIONS(1542), + [anon_sym_bool] = ACTIONS(1542), + [anon_sym_str] = ACTIONS(1542), + [anon_sym_char] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1542), + [anon_sym_const] = ACTIONS(1542), + [anon_sym_continue] = ACTIONS(1542), + [anon_sym_default] = ACTIONS(1542), + [anon_sym_enum] = ACTIONS(1542), + [anon_sym_fn] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_if] = ACTIONS(1542), + [anon_sym_impl] = ACTIONS(1542), + [anon_sym_let] = ACTIONS(1542), + [anon_sym_loop] = ACTIONS(1542), + [anon_sym_match] = ACTIONS(1542), + [anon_sym_mod] = ACTIONS(1542), + [anon_sym_pub] = ACTIONS(1542), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_static] = ACTIONS(1542), + [anon_sym_struct] = ACTIONS(1542), + [anon_sym_trait] = ACTIONS(1542), + [anon_sym_type] = ACTIONS(1542), + [anon_sym_union] = ACTIONS(1542), + [anon_sym_unsafe] = ACTIONS(1542), + [anon_sym_use] = ACTIONS(1542), + [anon_sym_while] = ACTIONS(1542), + [anon_sym_POUND] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1542), + [anon_sym_LT] = ACTIONS(1540), + [anon_sym_COLON_COLON] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_DOT_DOT] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_yield] = ACTIONS(1542), + [anon_sym_move] = ACTIONS(1542), + [sym_integer_literal] = ACTIONS(1540), + [aux_sym_string_literal_token1] = ACTIONS(1540), + [sym_char_literal] = ACTIONS(1540), + [anon_sym_true] = ACTIONS(1542), + [anon_sym_false] = ACTIONS(1542), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1540), + [sym_raw_string_literal] = ACTIONS(1540), + [sym_float_literal] = ACTIONS(1540), [sym_block_comment] = ACTIONS(3), }, [367] = { - [ts_builtin_sym_end] = ACTIONS(1522), - [sym_identifier] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_macro_rules_BANG] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_u8] = ACTIONS(1524), - [anon_sym_i8] = ACTIONS(1524), - [anon_sym_u16] = ACTIONS(1524), - [anon_sym_i16] = ACTIONS(1524), - [anon_sym_u32] = ACTIONS(1524), - [anon_sym_i32] = ACTIONS(1524), - [anon_sym_u64] = ACTIONS(1524), - [anon_sym_i64] = ACTIONS(1524), - [anon_sym_u128] = ACTIONS(1524), - [anon_sym_i128] = ACTIONS(1524), - [anon_sym_isize] = ACTIONS(1524), - [anon_sym_usize] = ACTIONS(1524), - [anon_sym_f32] = ACTIONS(1524), - [anon_sym_f64] = ACTIONS(1524), - [anon_sym_bool] = ACTIONS(1524), - [anon_sym_str] = ACTIONS(1524), - [anon_sym_char] = ACTIONS(1524), - [anon_sym_SQUOTE] = ACTIONS(1524), - [anon_sym_async] = ACTIONS(1524), - [anon_sym_break] = ACTIONS(1524), - [anon_sym_const] = ACTIONS(1524), - [anon_sym_continue] = ACTIONS(1524), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_enum] = ACTIONS(1524), - [anon_sym_fn] = ACTIONS(1524), - [anon_sym_for] = ACTIONS(1524), - [anon_sym_if] = ACTIONS(1524), - [anon_sym_impl] = ACTIONS(1524), - [anon_sym_let] = ACTIONS(1524), - [anon_sym_loop] = ACTIONS(1524), - [anon_sym_match] = ACTIONS(1524), - [anon_sym_mod] = ACTIONS(1524), - [anon_sym_pub] = ACTIONS(1524), - [anon_sym_return] = ACTIONS(1524), - [anon_sym_static] = ACTIONS(1524), - [anon_sym_struct] = ACTIONS(1524), - [anon_sym_trait] = ACTIONS(1524), - [anon_sym_type] = ACTIONS(1524), - [anon_sym_union] = ACTIONS(1524), - [anon_sym_unsafe] = ACTIONS(1524), - [anon_sym_use] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_POUND] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1522), - [anon_sym_extern] = ACTIONS(1524), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_COLON_COLON] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_DOT_DOT] = ACTIONS(1522), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_yield] = ACTIONS(1524), - [anon_sym_move] = ACTIONS(1524), - [sym_integer_literal] = ACTIONS(1522), - [aux_sym_string_literal_token1] = ACTIONS(1522), - [sym_char_literal] = ACTIONS(1522), - [anon_sym_true] = ACTIONS(1524), - [anon_sym_false] = ACTIONS(1524), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1524), - [sym_super] = ACTIONS(1524), - [sym_crate] = ACTIONS(1524), - [sym_metavariable] = ACTIONS(1522), - [sym_raw_string_literal] = ACTIONS(1522), - [sym_float_literal] = ACTIONS(1522), + [ts_builtin_sym_end] = ACTIONS(1544), + [sym_identifier] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_macro_rules_BANG] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_RBRACE] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_u8] = ACTIONS(1546), + [anon_sym_i8] = ACTIONS(1546), + [anon_sym_u16] = ACTIONS(1546), + [anon_sym_i16] = ACTIONS(1546), + [anon_sym_u32] = ACTIONS(1546), + [anon_sym_i32] = ACTIONS(1546), + [anon_sym_u64] = ACTIONS(1546), + [anon_sym_i64] = ACTIONS(1546), + [anon_sym_u128] = ACTIONS(1546), + [anon_sym_i128] = ACTIONS(1546), + [anon_sym_isize] = ACTIONS(1546), + [anon_sym_usize] = ACTIONS(1546), + [anon_sym_f32] = ACTIONS(1546), + [anon_sym_f64] = ACTIONS(1546), + [anon_sym_bool] = ACTIONS(1546), + [anon_sym_str] = ACTIONS(1546), + [anon_sym_char] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [anon_sym_async] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1546), + [anon_sym_continue] = ACTIONS(1546), + [anon_sym_default] = ACTIONS(1546), + [anon_sym_enum] = ACTIONS(1546), + [anon_sym_fn] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_impl] = ACTIONS(1546), + [anon_sym_let] = ACTIONS(1546), + [anon_sym_loop] = ACTIONS(1546), + [anon_sym_match] = ACTIONS(1546), + [anon_sym_mod] = ACTIONS(1546), + [anon_sym_pub] = ACTIONS(1546), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1546), + [anon_sym_struct] = ACTIONS(1546), + [anon_sym_trait] = ACTIONS(1546), + [anon_sym_type] = ACTIONS(1546), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1546), + [anon_sym_use] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_extern] = ACTIONS(1546), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_COLON_COLON] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_DOT_DOT] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_yield] = ACTIONS(1546), + [anon_sym_move] = ACTIONS(1546), + [sym_integer_literal] = ACTIONS(1544), + [aux_sym_string_literal_token1] = ACTIONS(1544), + [sym_char_literal] = ACTIONS(1544), + [anon_sym_true] = ACTIONS(1546), + [anon_sym_false] = ACTIONS(1546), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1546), + [sym_super] = ACTIONS(1546), + [sym_crate] = ACTIONS(1546), + [sym_metavariable] = ACTIONS(1544), + [sym_raw_string_literal] = ACTIONS(1544), + [sym_float_literal] = ACTIONS(1544), [sym_block_comment] = ACTIONS(3), }, [368] = { - [ts_builtin_sym_end] = ACTIONS(1526), - [sym_identifier] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_macro_rules_BANG] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACE] = ACTIONS(1526), - [anon_sym_RBRACE] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1526), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_u8] = ACTIONS(1528), - [anon_sym_i8] = ACTIONS(1528), - [anon_sym_u16] = ACTIONS(1528), - [anon_sym_i16] = ACTIONS(1528), - [anon_sym_u32] = ACTIONS(1528), - [anon_sym_i32] = ACTIONS(1528), - [anon_sym_u64] = ACTIONS(1528), - [anon_sym_i64] = ACTIONS(1528), - [anon_sym_u128] = ACTIONS(1528), - [anon_sym_i128] = ACTIONS(1528), - [anon_sym_isize] = ACTIONS(1528), - [anon_sym_usize] = ACTIONS(1528), - [anon_sym_f32] = ACTIONS(1528), - [anon_sym_f64] = ACTIONS(1528), - [anon_sym_bool] = ACTIONS(1528), - [anon_sym_str] = ACTIONS(1528), - [anon_sym_char] = ACTIONS(1528), - [anon_sym_SQUOTE] = ACTIONS(1528), - [anon_sym_async] = ACTIONS(1528), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1528), - [anon_sym_enum] = ACTIONS(1528), - [anon_sym_fn] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_impl] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_mod] = ACTIONS(1528), - [anon_sym_pub] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_static] = ACTIONS(1528), - [anon_sym_struct] = ACTIONS(1528), - [anon_sym_trait] = ACTIONS(1528), - [anon_sym_type] = ACTIONS(1528), - [anon_sym_union] = ACTIONS(1528), - [anon_sym_unsafe] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1526), - [anon_sym_COLON_COLON] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_DOT_DOT] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_yield] = ACTIONS(1528), - [anon_sym_move] = ACTIONS(1528), - [sym_integer_literal] = ACTIONS(1526), - [aux_sym_string_literal_token1] = ACTIONS(1526), - [sym_char_literal] = ACTIONS(1526), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1526), - [sym_raw_string_literal] = ACTIONS(1526), - [sym_float_literal] = ACTIONS(1526), + [ts_builtin_sym_end] = ACTIONS(1548), + [sym_identifier] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_macro_rules_BANG] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_u8] = ACTIONS(1550), + [anon_sym_i8] = ACTIONS(1550), + [anon_sym_u16] = ACTIONS(1550), + [anon_sym_i16] = ACTIONS(1550), + [anon_sym_u32] = ACTIONS(1550), + [anon_sym_i32] = ACTIONS(1550), + [anon_sym_u64] = ACTIONS(1550), + [anon_sym_i64] = ACTIONS(1550), + [anon_sym_u128] = ACTIONS(1550), + [anon_sym_i128] = ACTIONS(1550), + [anon_sym_isize] = ACTIONS(1550), + [anon_sym_usize] = ACTIONS(1550), + [anon_sym_f32] = ACTIONS(1550), + [anon_sym_f64] = ACTIONS(1550), + [anon_sym_bool] = ACTIONS(1550), + [anon_sym_str] = ACTIONS(1550), + [anon_sym_char] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_async] = ACTIONS(1550), + [anon_sym_break] = ACTIONS(1550), + [anon_sym_const] = ACTIONS(1550), + [anon_sym_continue] = ACTIONS(1550), + [anon_sym_default] = ACTIONS(1550), + [anon_sym_enum] = ACTIONS(1550), + [anon_sym_fn] = ACTIONS(1550), + [anon_sym_for] = ACTIONS(1550), + [anon_sym_if] = ACTIONS(1550), + [anon_sym_impl] = ACTIONS(1550), + [anon_sym_let] = ACTIONS(1550), + [anon_sym_loop] = ACTIONS(1550), + [anon_sym_match] = ACTIONS(1550), + [anon_sym_mod] = ACTIONS(1550), + [anon_sym_pub] = ACTIONS(1550), + [anon_sym_return] = ACTIONS(1550), + [anon_sym_static] = ACTIONS(1550), + [anon_sym_struct] = ACTIONS(1550), + [anon_sym_trait] = ACTIONS(1550), + [anon_sym_type] = ACTIONS(1550), + [anon_sym_union] = ACTIONS(1550), + [anon_sym_unsafe] = ACTIONS(1550), + [anon_sym_use] = ACTIONS(1550), + [anon_sym_while] = ACTIONS(1550), + [anon_sym_POUND] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_extern] = ACTIONS(1550), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_COLON_COLON] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_DOT_DOT] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_yield] = ACTIONS(1550), + [anon_sym_move] = ACTIONS(1550), + [sym_integer_literal] = ACTIONS(1548), + [aux_sym_string_literal_token1] = ACTIONS(1548), + [sym_char_literal] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1550), + [anon_sym_false] = ACTIONS(1550), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1548), + [sym_raw_string_literal] = ACTIONS(1548), + [sym_float_literal] = ACTIONS(1548), [sym_block_comment] = ACTIONS(3), }, [369] = { - [ts_builtin_sym_end] = ACTIONS(1530), - [sym_identifier] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_macro_rules_BANG] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_SQUOTE] = ACTIONS(1532), - [anon_sym_async] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1532), - [anon_sym_continue] = ACTIONS(1532), - [anon_sym_default] = ACTIONS(1532), - [anon_sym_enum] = ACTIONS(1532), - [anon_sym_fn] = ACTIONS(1532), - [anon_sym_for] = ACTIONS(1532), - [anon_sym_if] = ACTIONS(1532), - [anon_sym_impl] = ACTIONS(1532), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_loop] = ACTIONS(1532), - [anon_sym_match] = ACTIONS(1532), - [anon_sym_mod] = ACTIONS(1532), - [anon_sym_pub] = ACTIONS(1532), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_struct] = ACTIONS(1532), - [anon_sym_trait] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_union] = ACTIONS(1532), - [anon_sym_unsafe] = ACTIONS(1532), - [anon_sym_use] = ACTIONS(1532), - [anon_sym_while] = ACTIONS(1532), - [anon_sym_POUND] = ACTIONS(1530), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_extern] = ACTIONS(1532), - [anon_sym_LT] = ACTIONS(1530), - [anon_sym_COLON_COLON] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1530), - [anon_sym_DOT_DOT] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_yield] = ACTIONS(1532), - [anon_sym_move] = ACTIONS(1532), - [sym_integer_literal] = ACTIONS(1530), - [aux_sym_string_literal_token1] = ACTIONS(1530), - [sym_char_literal] = ACTIONS(1530), - [anon_sym_true] = ACTIONS(1532), - [anon_sym_false] = ACTIONS(1532), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1532), - [sym_super] = ACTIONS(1532), - [sym_crate] = ACTIONS(1532), - [sym_metavariable] = ACTIONS(1530), - [sym_raw_string_literal] = ACTIONS(1530), - [sym_float_literal] = ACTIONS(1530), + [ts_builtin_sym_end] = ACTIONS(1552), + [sym_identifier] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_macro_rules_BANG] = ACTIONS(1552), + [anon_sym_LPAREN] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_u8] = ACTIONS(1554), + [anon_sym_i8] = ACTIONS(1554), + [anon_sym_u16] = ACTIONS(1554), + [anon_sym_i16] = ACTIONS(1554), + [anon_sym_u32] = ACTIONS(1554), + [anon_sym_i32] = ACTIONS(1554), + [anon_sym_u64] = ACTIONS(1554), + [anon_sym_i64] = ACTIONS(1554), + [anon_sym_u128] = ACTIONS(1554), + [anon_sym_i128] = ACTIONS(1554), + [anon_sym_isize] = ACTIONS(1554), + [anon_sym_usize] = ACTIONS(1554), + [anon_sym_f32] = ACTIONS(1554), + [anon_sym_f64] = ACTIONS(1554), + [anon_sym_bool] = ACTIONS(1554), + [anon_sym_str] = ACTIONS(1554), + [anon_sym_char] = ACTIONS(1554), + [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(1554), + [anon_sym_fn] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_impl] = ACTIONS(1554), + [anon_sym_let] = ACTIONS(1554), + [anon_sym_loop] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1554), + [anon_sym_mod] = ACTIONS(1554), + [anon_sym_pub] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_static] = ACTIONS(1554), + [anon_sym_struct] = ACTIONS(1554), + [anon_sym_trait] = ACTIONS(1554), + [anon_sym_type] = ACTIONS(1554), + [anon_sym_union] = ACTIONS(1554), + [anon_sym_unsafe] = ACTIONS(1554), + [anon_sym_use] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_extern] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_DOT_DOT] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_yield] = ACTIONS(1554), + [anon_sym_move] = ACTIONS(1554), + [sym_integer_literal] = ACTIONS(1552), + [aux_sym_string_literal_token1] = ACTIONS(1552), + [sym_char_literal] = ACTIONS(1552), + [anon_sym_true] = ACTIONS(1554), + [anon_sym_false] = ACTIONS(1554), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1554), + [sym_super] = ACTIONS(1554), + [sym_crate] = ACTIONS(1554), + [sym_metavariable] = ACTIONS(1552), + [sym_raw_string_literal] = ACTIONS(1552), + [sym_float_literal] = ACTIONS(1552), [sym_block_comment] = ACTIONS(3), }, [370] = { - [ts_builtin_sym_end] = ACTIONS(1534), - [sym_identifier] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_macro_rules_BANG] = ACTIONS(1534), - [anon_sym_LPAREN] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_RBRACE] = ACTIONS(1534), - [anon_sym_LBRACK] = ACTIONS(1534), - [anon_sym_STAR] = ACTIONS(1534), - [anon_sym_u8] = ACTIONS(1536), - [anon_sym_i8] = ACTIONS(1536), - [anon_sym_u16] = ACTIONS(1536), - [anon_sym_i16] = ACTIONS(1536), - [anon_sym_u32] = ACTIONS(1536), - [anon_sym_i32] = ACTIONS(1536), - [anon_sym_u64] = ACTIONS(1536), - [anon_sym_i64] = ACTIONS(1536), - [anon_sym_u128] = ACTIONS(1536), - [anon_sym_i128] = ACTIONS(1536), - [anon_sym_isize] = ACTIONS(1536), - [anon_sym_usize] = ACTIONS(1536), - [anon_sym_f32] = ACTIONS(1536), - [anon_sym_f64] = ACTIONS(1536), - [anon_sym_bool] = ACTIONS(1536), - [anon_sym_str] = ACTIONS(1536), - [anon_sym_char] = ACTIONS(1536), - [anon_sym_SQUOTE] = ACTIONS(1536), - [anon_sym_async] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_enum] = ACTIONS(1536), - [anon_sym_fn] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_impl] = ACTIONS(1536), - [anon_sym_let] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1536), - [anon_sym_match] = ACTIONS(1536), - [anon_sym_mod] = ACTIONS(1536), - [anon_sym_pub] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_static] = ACTIONS(1536), - [anon_sym_struct] = ACTIONS(1536), - [anon_sym_trait] = ACTIONS(1536), - [anon_sym_type] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), - [anon_sym_unsafe] = ACTIONS(1536), - [anon_sym_use] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1534), - [anon_sym_extern] = ACTIONS(1536), - [anon_sym_LT] = ACTIONS(1534), - [anon_sym_COLON_COLON] = ACTIONS(1534), - [anon_sym_AMP] = ACTIONS(1534), - [anon_sym_DOT_DOT] = ACTIONS(1534), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_PIPE] = ACTIONS(1534), - [anon_sym_yield] = ACTIONS(1536), - [anon_sym_move] = ACTIONS(1536), - [sym_integer_literal] = ACTIONS(1534), - [aux_sym_string_literal_token1] = ACTIONS(1534), - [sym_char_literal] = ACTIONS(1534), - [anon_sym_true] = ACTIONS(1536), - [anon_sym_false] = ACTIONS(1536), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1534), - [sym_raw_string_literal] = ACTIONS(1534), - [sym_float_literal] = ACTIONS(1534), + [ts_builtin_sym_end] = ACTIONS(1556), + [sym_identifier] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym_macro_rules_BANG] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_u8] = ACTIONS(1558), + [anon_sym_i8] = ACTIONS(1558), + [anon_sym_u16] = ACTIONS(1558), + [anon_sym_i16] = ACTIONS(1558), + [anon_sym_u32] = ACTIONS(1558), + [anon_sym_i32] = ACTIONS(1558), + [anon_sym_u64] = ACTIONS(1558), + [anon_sym_i64] = ACTIONS(1558), + [anon_sym_u128] = ACTIONS(1558), + [anon_sym_i128] = ACTIONS(1558), + [anon_sym_isize] = ACTIONS(1558), + [anon_sym_usize] = ACTIONS(1558), + [anon_sym_f32] = ACTIONS(1558), + [anon_sym_f64] = ACTIONS(1558), + [anon_sym_bool] = ACTIONS(1558), + [anon_sym_str] = ACTIONS(1558), + [anon_sym_char] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_break] = ACTIONS(1558), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_continue] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_enum] = ACTIONS(1558), + [anon_sym_fn] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(1558), + [anon_sym_impl] = ACTIONS(1558), + [anon_sym_let] = ACTIONS(1558), + [anon_sym_loop] = ACTIONS(1558), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_mod] = ACTIONS(1558), + [anon_sym_pub] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_struct] = ACTIONS(1558), + [anon_sym_trait] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_union] = ACTIONS(1558), + [anon_sym_unsafe] = ACTIONS(1558), + [anon_sym_use] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_extern] = ACTIONS(1558), + [anon_sym_LT] = ACTIONS(1556), + [anon_sym_COLON_COLON] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_DOT_DOT] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1556), + [anon_sym_yield] = ACTIONS(1558), + [anon_sym_move] = ACTIONS(1558), + [sym_integer_literal] = ACTIONS(1556), + [aux_sym_string_literal_token1] = ACTIONS(1556), + [sym_char_literal] = ACTIONS(1556), + [anon_sym_true] = ACTIONS(1558), + [anon_sym_false] = ACTIONS(1558), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1558), + [sym_super] = ACTIONS(1558), + [sym_crate] = ACTIONS(1558), + [sym_metavariable] = ACTIONS(1556), + [sym_raw_string_literal] = ACTIONS(1556), + [sym_float_literal] = ACTIONS(1556), [sym_block_comment] = ACTIONS(3), }, [371] = { - [ts_builtin_sym_end] = ACTIONS(1538), - [sym_identifier] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_macro_rules_BANG] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_u8] = ACTIONS(1540), - [anon_sym_i8] = ACTIONS(1540), - [anon_sym_u16] = ACTIONS(1540), - [anon_sym_i16] = ACTIONS(1540), - [anon_sym_u32] = ACTIONS(1540), - [anon_sym_i32] = ACTIONS(1540), - [anon_sym_u64] = ACTIONS(1540), - [anon_sym_i64] = ACTIONS(1540), - [anon_sym_u128] = ACTIONS(1540), - [anon_sym_i128] = ACTIONS(1540), - [anon_sym_isize] = ACTIONS(1540), - [anon_sym_usize] = ACTIONS(1540), - [anon_sym_f32] = ACTIONS(1540), - [anon_sym_f64] = ACTIONS(1540), - [anon_sym_bool] = ACTIONS(1540), - [anon_sym_str] = ACTIONS(1540), - [anon_sym_char] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(1540), - [anon_sym_async] = ACTIONS(1540), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_enum] = ACTIONS(1540), - [anon_sym_fn] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_impl] = ACTIONS(1540), - [anon_sym_let] = ACTIONS(1540), - [anon_sym_loop] = ACTIONS(1540), - [anon_sym_match] = ACTIONS(1540), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_pub] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_static] = ACTIONS(1540), - [anon_sym_struct] = ACTIONS(1540), - [anon_sym_trait] = ACTIONS(1540), - [anon_sym_type] = ACTIONS(1540), - [anon_sym_union] = ACTIONS(1540), - [anon_sym_unsafe] = ACTIONS(1540), - [anon_sym_use] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(1538), - [anon_sym_BANG] = ACTIONS(1538), - [anon_sym_extern] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(1538), - [anon_sym_DOT_DOT] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_yield] = ACTIONS(1540), - [anon_sym_move] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1538), - [aux_sym_string_literal_token1] = ACTIONS(1538), - [sym_char_literal] = ACTIONS(1538), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1540), - [sym_super] = ACTIONS(1540), - [sym_crate] = ACTIONS(1540), - [sym_metavariable] = ACTIONS(1538), - [sym_raw_string_literal] = ACTIONS(1538), - [sym_float_literal] = ACTIONS(1538), + [ts_builtin_sym_end] = ACTIONS(1560), + [sym_identifier] = ACTIONS(1562), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_macro_rules_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_u8] = ACTIONS(1562), + [anon_sym_i8] = ACTIONS(1562), + [anon_sym_u16] = ACTIONS(1562), + [anon_sym_i16] = ACTIONS(1562), + [anon_sym_u32] = ACTIONS(1562), + [anon_sym_i32] = ACTIONS(1562), + [anon_sym_u64] = ACTIONS(1562), + [anon_sym_i64] = ACTIONS(1562), + [anon_sym_u128] = ACTIONS(1562), + [anon_sym_i128] = ACTIONS(1562), + [anon_sym_isize] = ACTIONS(1562), + [anon_sym_usize] = ACTIONS(1562), + [anon_sym_f32] = ACTIONS(1562), + [anon_sym_f64] = ACTIONS(1562), + [anon_sym_bool] = ACTIONS(1562), + [anon_sym_str] = ACTIONS(1562), + [anon_sym_char] = ACTIONS(1562), + [anon_sym_SQUOTE] = ACTIONS(1562), + [anon_sym_async] = ACTIONS(1562), + [anon_sym_break] = ACTIONS(1562), + [anon_sym_const] = ACTIONS(1562), + [anon_sym_continue] = ACTIONS(1562), + [anon_sym_default] = ACTIONS(1562), + [anon_sym_enum] = ACTIONS(1562), + [anon_sym_fn] = ACTIONS(1562), + [anon_sym_for] = ACTIONS(1562), + [anon_sym_if] = ACTIONS(1562), + [anon_sym_impl] = ACTIONS(1562), + [anon_sym_let] = ACTIONS(1562), + [anon_sym_loop] = ACTIONS(1562), + [anon_sym_match] = ACTIONS(1562), + [anon_sym_mod] = ACTIONS(1562), + [anon_sym_pub] = ACTIONS(1562), + [anon_sym_return] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_struct] = ACTIONS(1562), + [anon_sym_trait] = ACTIONS(1562), + [anon_sym_type] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1562), + [anon_sym_unsafe] = ACTIONS(1562), + [anon_sym_use] = ACTIONS(1562), + [anon_sym_while] = ACTIONS(1562), + [anon_sym_POUND] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_extern] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1560), + [anon_sym_COLON_COLON] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_DOT_DOT] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_yield] = ACTIONS(1562), + [anon_sym_move] = ACTIONS(1562), + [sym_integer_literal] = ACTIONS(1560), + [aux_sym_string_literal_token1] = ACTIONS(1560), + [sym_char_literal] = ACTIONS(1560), + [anon_sym_true] = ACTIONS(1562), + [anon_sym_false] = ACTIONS(1562), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1562), + [sym_super] = ACTIONS(1562), + [sym_crate] = ACTIONS(1562), + [sym_metavariable] = ACTIONS(1560), + [sym_raw_string_literal] = ACTIONS(1560), + [sym_float_literal] = ACTIONS(1560), [sym_block_comment] = ACTIONS(3), }, [372] = { - [ts_builtin_sym_end] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_macro_rules_BANG] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_u8] = ACTIONS(1544), - [anon_sym_i8] = ACTIONS(1544), - [anon_sym_u16] = ACTIONS(1544), - [anon_sym_i16] = ACTIONS(1544), - [anon_sym_u32] = ACTIONS(1544), - [anon_sym_i32] = ACTIONS(1544), - [anon_sym_u64] = ACTIONS(1544), - [anon_sym_i64] = ACTIONS(1544), - [anon_sym_u128] = ACTIONS(1544), - [anon_sym_i128] = ACTIONS(1544), - [anon_sym_isize] = ACTIONS(1544), - [anon_sym_usize] = ACTIONS(1544), - [anon_sym_f32] = ACTIONS(1544), - [anon_sym_f64] = ACTIONS(1544), - [anon_sym_bool] = ACTIONS(1544), - [anon_sym_str] = ACTIONS(1544), - [anon_sym_char] = ACTIONS(1544), - [anon_sym_SQUOTE] = ACTIONS(1544), - [anon_sym_async] = ACTIONS(1544), - [anon_sym_break] = ACTIONS(1544), - [anon_sym_const] = ACTIONS(1544), - [anon_sym_continue] = ACTIONS(1544), - [anon_sym_default] = ACTIONS(1544), - [anon_sym_enum] = ACTIONS(1544), - [anon_sym_fn] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_impl] = ACTIONS(1544), - [anon_sym_let] = ACTIONS(1544), - [anon_sym_loop] = ACTIONS(1544), - [anon_sym_match] = ACTIONS(1544), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_pub] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_static] = ACTIONS(1544), - [anon_sym_struct] = ACTIONS(1544), - [anon_sym_trait] = ACTIONS(1544), - [anon_sym_type] = ACTIONS(1544), - [anon_sym_union] = ACTIONS(1544), - [anon_sym_unsafe] = ACTIONS(1544), - [anon_sym_use] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_POUND] = ACTIONS(1542), - [anon_sym_BANG] = ACTIONS(1542), - [anon_sym_extern] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_COLON_COLON] = ACTIONS(1542), - [anon_sym_AMP] = ACTIONS(1542), - [anon_sym_DOT_DOT] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_move] = ACTIONS(1544), - [sym_integer_literal] = ACTIONS(1542), - [aux_sym_string_literal_token1] = ACTIONS(1542), - [sym_char_literal] = ACTIONS(1542), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1544), - [sym_super] = ACTIONS(1544), - [sym_crate] = ACTIONS(1544), - [sym_metavariable] = ACTIONS(1542), - [sym_raw_string_literal] = ACTIONS(1542), - [sym_float_literal] = ACTIONS(1542), + [ts_builtin_sym_end] = ACTIONS(1564), + [sym_identifier] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_macro_rules_BANG] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1566), + [anon_sym_async] = ACTIONS(1566), + [anon_sym_break] = ACTIONS(1566), + [anon_sym_const] = ACTIONS(1566), + [anon_sym_continue] = ACTIONS(1566), + [anon_sym_default] = ACTIONS(1566), + [anon_sym_enum] = ACTIONS(1566), + [anon_sym_fn] = ACTIONS(1566), + [anon_sym_for] = ACTIONS(1566), + [anon_sym_if] = ACTIONS(1566), + [anon_sym_impl] = ACTIONS(1566), + [anon_sym_let] = ACTIONS(1566), + [anon_sym_loop] = ACTIONS(1566), + [anon_sym_match] = ACTIONS(1566), + [anon_sym_mod] = ACTIONS(1566), + [anon_sym_pub] = ACTIONS(1566), + [anon_sym_return] = ACTIONS(1566), + [anon_sym_static] = ACTIONS(1566), + [anon_sym_struct] = ACTIONS(1566), + [anon_sym_trait] = ACTIONS(1566), + [anon_sym_type] = ACTIONS(1566), + [anon_sym_union] = ACTIONS(1566), + [anon_sym_unsafe] = ACTIONS(1566), + [anon_sym_use] = ACTIONS(1566), + [anon_sym_while] = ACTIONS(1566), + [anon_sym_POUND] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_extern] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_COLON_COLON] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_DOT_DOT] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_yield] = ACTIONS(1566), + [anon_sym_move] = ACTIONS(1566), + [sym_integer_literal] = ACTIONS(1564), + [aux_sym_string_literal_token1] = ACTIONS(1564), + [sym_char_literal] = ACTIONS(1564), + [anon_sym_true] = ACTIONS(1566), + [anon_sym_false] = ACTIONS(1566), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1566), + [sym_super] = ACTIONS(1566), + [sym_crate] = ACTIONS(1566), + [sym_metavariable] = ACTIONS(1564), + [sym_raw_string_literal] = ACTIONS(1564), + [sym_float_literal] = ACTIONS(1564), [sym_block_comment] = ACTIONS(3), }, [373] = { - [ts_builtin_sym_end] = ACTIONS(1546), - [sym_identifier] = ACTIONS(1548), - [anon_sym_SEMI] = ACTIONS(1546), - [anon_sym_macro_rules_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1546), - [anon_sym_RBRACE] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_u8] = ACTIONS(1548), - [anon_sym_i8] = ACTIONS(1548), - [anon_sym_u16] = ACTIONS(1548), - [anon_sym_i16] = ACTIONS(1548), - [anon_sym_u32] = ACTIONS(1548), - [anon_sym_i32] = ACTIONS(1548), - [anon_sym_u64] = ACTIONS(1548), - [anon_sym_i64] = ACTIONS(1548), - [anon_sym_u128] = ACTIONS(1548), - [anon_sym_i128] = ACTIONS(1548), - [anon_sym_isize] = ACTIONS(1548), - [anon_sym_usize] = ACTIONS(1548), - [anon_sym_f32] = ACTIONS(1548), - [anon_sym_f64] = ACTIONS(1548), - [anon_sym_bool] = ACTIONS(1548), - [anon_sym_str] = ACTIONS(1548), - [anon_sym_char] = ACTIONS(1548), - [anon_sym_SQUOTE] = ACTIONS(1548), - [anon_sym_async] = ACTIONS(1548), - [anon_sym_break] = ACTIONS(1548), - [anon_sym_const] = ACTIONS(1548), - [anon_sym_continue] = ACTIONS(1548), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_enum] = ACTIONS(1548), - [anon_sym_fn] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1548), - [anon_sym_if] = ACTIONS(1548), - [anon_sym_impl] = ACTIONS(1548), - [anon_sym_let] = ACTIONS(1548), - [anon_sym_loop] = ACTIONS(1548), - [anon_sym_match] = ACTIONS(1548), - [anon_sym_mod] = ACTIONS(1548), - [anon_sym_pub] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1548), - [anon_sym_static] = ACTIONS(1548), - [anon_sym_struct] = ACTIONS(1548), - [anon_sym_trait] = ACTIONS(1548), - [anon_sym_type] = ACTIONS(1548), - [anon_sym_union] = ACTIONS(1548), - [anon_sym_unsafe] = ACTIONS(1548), - [anon_sym_use] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1548), - [anon_sym_POUND] = ACTIONS(1546), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_extern] = ACTIONS(1548), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_COLON_COLON] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_DOT_DOT] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_yield] = ACTIONS(1548), - [anon_sym_move] = ACTIONS(1548), - [sym_integer_literal] = ACTIONS(1546), - [aux_sym_string_literal_token1] = ACTIONS(1546), - [sym_char_literal] = ACTIONS(1546), - [anon_sym_true] = ACTIONS(1548), - [anon_sym_false] = ACTIONS(1548), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1548), - [sym_super] = ACTIONS(1548), - [sym_crate] = ACTIONS(1548), - [sym_metavariable] = ACTIONS(1546), - [sym_raw_string_literal] = ACTIONS(1546), - [sym_float_literal] = ACTIONS(1546), + [ts_builtin_sym_end] = ACTIONS(1568), + [sym_identifier] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1568), + [anon_sym_macro_rules_BANG] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(1568), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_RBRACE] = ACTIONS(1568), + [anon_sym_LBRACK] = ACTIONS(1568), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_u8] = ACTIONS(1570), + [anon_sym_i8] = ACTIONS(1570), + [anon_sym_u16] = ACTIONS(1570), + [anon_sym_i16] = ACTIONS(1570), + [anon_sym_u32] = ACTIONS(1570), + [anon_sym_i32] = ACTIONS(1570), + [anon_sym_u64] = ACTIONS(1570), + [anon_sym_i64] = ACTIONS(1570), + [anon_sym_u128] = ACTIONS(1570), + [anon_sym_i128] = ACTIONS(1570), + [anon_sym_isize] = ACTIONS(1570), + [anon_sym_usize] = ACTIONS(1570), + [anon_sym_f32] = ACTIONS(1570), + [anon_sym_f64] = ACTIONS(1570), + [anon_sym_bool] = ACTIONS(1570), + [anon_sym_str] = ACTIONS(1570), + [anon_sym_char] = ACTIONS(1570), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_async] = ACTIONS(1570), + [anon_sym_break] = ACTIONS(1570), + [anon_sym_const] = ACTIONS(1570), + [anon_sym_continue] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1570), + [anon_sym_enum] = ACTIONS(1570), + [anon_sym_fn] = ACTIONS(1570), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_impl] = ACTIONS(1570), + [anon_sym_let] = ACTIONS(1570), + [anon_sym_loop] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1570), + [anon_sym_mod] = ACTIONS(1570), + [anon_sym_pub] = ACTIONS(1570), + [anon_sym_return] = ACTIONS(1570), + [anon_sym_static] = ACTIONS(1570), + [anon_sym_struct] = ACTIONS(1570), + [anon_sym_trait] = ACTIONS(1570), + [anon_sym_type] = ACTIONS(1570), + [anon_sym_union] = ACTIONS(1570), + [anon_sym_unsafe] = ACTIONS(1570), + [anon_sym_use] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1570), + [anon_sym_POUND] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_extern] = ACTIONS(1570), + [anon_sym_LT] = ACTIONS(1568), + [anon_sym_COLON_COLON] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_move] = ACTIONS(1570), + [sym_integer_literal] = ACTIONS(1568), + [aux_sym_string_literal_token1] = ACTIONS(1568), + [sym_char_literal] = ACTIONS(1568), + [anon_sym_true] = ACTIONS(1570), + [anon_sym_false] = ACTIONS(1570), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1570), + [sym_super] = ACTIONS(1570), + [sym_crate] = ACTIONS(1570), + [sym_metavariable] = ACTIONS(1568), + [sym_raw_string_literal] = ACTIONS(1568), + [sym_float_literal] = ACTIONS(1568), [sym_block_comment] = ACTIONS(3), }, [374] = { - [ts_builtin_sym_end] = ACTIONS(1550), - [sym_identifier] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_macro_rules_BANG] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_u8] = ACTIONS(1552), - [anon_sym_i8] = ACTIONS(1552), - [anon_sym_u16] = ACTIONS(1552), - [anon_sym_i16] = ACTIONS(1552), - [anon_sym_u32] = ACTIONS(1552), - [anon_sym_i32] = ACTIONS(1552), - [anon_sym_u64] = ACTIONS(1552), - [anon_sym_i64] = ACTIONS(1552), - [anon_sym_u128] = ACTIONS(1552), - [anon_sym_i128] = ACTIONS(1552), - [anon_sym_isize] = ACTIONS(1552), - [anon_sym_usize] = ACTIONS(1552), - [anon_sym_f32] = ACTIONS(1552), - [anon_sym_f64] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_str] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1552), - [anon_sym_async] = ACTIONS(1552), - [anon_sym_break] = ACTIONS(1552), - [anon_sym_const] = ACTIONS(1552), - [anon_sym_continue] = ACTIONS(1552), - [anon_sym_default] = ACTIONS(1552), - [anon_sym_enum] = ACTIONS(1552), - [anon_sym_fn] = ACTIONS(1552), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_if] = ACTIONS(1552), - [anon_sym_impl] = ACTIONS(1552), - [anon_sym_let] = ACTIONS(1552), - [anon_sym_loop] = ACTIONS(1552), - [anon_sym_match] = ACTIONS(1552), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_pub] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1552), - [anon_sym_static] = ACTIONS(1552), - [anon_sym_struct] = ACTIONS(1552), - [anon_sym_trait] = ACTIONS(1552), - [anon_sym_type] = ACTIONS(1552), - [anon_sym_union] = ACTIONS(1552), - [anon_sym_unsafe] = ACTIONS(1552), - [anon_sym_use] = ACTIONS(1552), - [anon_sym_while] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(1550), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_extern] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_COLON_COLON] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_DOT_DOT] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_yield] = ACTIONS(1552), - [anon_sym_move] = ACTIONS(1552), - [sym_integer_literal] = ACTIONS(1550), - [aux_sym_string_literal_token1] = ACTIONS(1550), - [sym_char_literal] = ACTIONS(1550), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1552), - [sym_super] = ACTIONS(1552), - [sym_crate] = ACTIONS(1552), - [sym_metavariable] = ACTIONS(1550), - [sym_raw_string_literal] = ACTIONS(1550), - [sym_float_literal] = ACTIONS(1550), + [ts_builtin_sym_end] = ACTIONS(1572), + [sym_identifier] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_macro_rules_BANG] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_u8] = ACTIONS(1574), + [anon_sym_i8] = ACTIONS(1574), + [anon_sym_u16] = ACTIONS(1574), + [anon_sym_i16] = ACTIONS(1574), + [anon_sym_u32] = ACTIONS(1574), + [anon_sym_i32] = ACTIONS(1574), + [anon_sym_u64] = ACTIONS(1574), + [anon_sym_i64] = ACTIONS(1574), + [anon_sym_u128] = ACTIONS(1574), + [anon_sym_i128] = ACTIONS(1574), + [anon_sym_isize] = ACTIONS(1574), + [anon_sym_usize] = ACTIONS(1574), + [anon_sym_f32] = ACTIONS(1574), + [anon_sym_f64] = ACTIONS(1574), + [anon_sym_bool] = ACTIONS(1574), + [anon_sym_str] = ACTIONS(1574), + [anon_sym_char] = ACTIONS(1574), + [anon_sym_SQUOTE] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1574), + [anon_sym_break] = ACTIONS(1574), + [anon_sym_const] = ACTIONS(1574), + [anon_sym_continue] = ACTIONS(1574), + [anon_sym_default] = ACTIONS(1574), + [anon_sym_enum] = ACTIONS(1574), + [anon_sym_fn] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1574), + [anon_sym_if] = ACTIONS(1574), + [anon_sym_impl] = ACTIONS(1574), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_loop] = ACTIONS(1574), + [anon_sym_match] = ACTIONS(1574), + [anon_sym_mod] = ACTIONS(1574), + [anon_sym_pub] = ACTIONS(1574), + [anon_sym_return] = ACTIONS(1574), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_struct] = ACTIONS(1574), + [anon_sym_trait] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_union] = ACTIONS(1574), + [anon_sym_unsafe] = ACTIONS(1574), + [anon_sym_use] = ACTIONS(1574), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_POUND] = ACTIONS(1572), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_extern] = ACTIONS(1574), + [anon_sym_LT] = ACTIONS(1572), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_DOT_DOT] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), + [anon_sym_move] = ACTIONS(1574), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1572), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1574), + [anon_sym_false] = ACTIONS(1574), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1574), + [sym_super] = ACTIONS(1574), + [sym_crate] = ACTIONS(1574), + [sym_metavariable] = ACTIONS(1572), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), [sym_block_comment] = ACTIONS(3), }, [375] = { - [ts_builtin_sym_end] = ACTIONS(1554), - [sym_identifier] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1554), - [anon_sym_macro_rules_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_LBRACE] = ACTIONS(1554), - [anon_sym_RBRACE] = ACTIONS(1554), - [anon_sym_LBRACK] = ACTIONS(1554), - [anon_sym_STAR] = ACTIONS(1554), - [anon_sym_u8] = ACTIONS(1556), - [anon_sym_i8] = ACTIONS(1556), - [anon_sym_u16] = ACTIONS(1556), - [anon_sym_i16] = ACTIONS(1556), - [anon_sym_u32] = ACTIONS(1556), - [anon_sym_i32] = ACTIONS(1556), - [anon_sym_u64] = ACTIONS(1556), - [anon_sym_i64] = ACTIONS(1556), - [anon_sym_u128] = ACTIONS(1556), - [anon_sym_i128] = ACTIONS(1556), - [anon_sym_isize] = ACTIONS(1556), - [anon_sym_usize] = ACTIONS(1556), - [anon_sym_f32] = ACTIONS(1556), - [anon_sym_f64] = ACTIONS(1556), - [anon_sym_bool] = ACTIONS(1556), - [anon_sym_str] = ACTIONS(1556), - [anon_sym_char] = ACTIONS(1556), - [anon_sym_SQUOTE] = ACTIONS(1556), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_default] = ACTIONS(1556), - [anon_sym_enum] = ACTIONS(1556), - [anon_sym_fn] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_impl] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_pub] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_static] = ACTIONS(1556), - [anon_sym_struct] = ACTIONS(1556), - [anon_sym_trait] = ACTIONS(1556), - [anon_sym_type] = ACTIONS(1556), - [anon_sym_union] = ACTIONS(1556), - [anon_sym_unsafe] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(1554), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(1554), - [anon_sym_COLON_COLON] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1554), - [anon_sym_DOT_DOT] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_PIPE] = ACTIONS(1554), - [anon_sym_yield] = ACTIONS(1556), - [anon_sym_move] = ACTIONS(1556), - [sym_integer_literal] = ACTIONS(1554), - [aux_sym_string_literal_token1] = ACTIONS(1554), - [sym_char_literal] = ACTIONS(1554), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1556), - [sym_super] = ACTIONS(1556), - [sym_crate] = ACTIONS(1556), - [sym_metavariable] = ACTIONS(1554), - [sym_raw_string_literal] = ACTIONS(1554), - [sym_float_literal] = ACTIONS(1554), + [ts_builtin_sym_end] = ACTIONS(1576), + [sym_identifier] = ACTIONS(1578), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_macro_rules_BANG] = ACTIONS(1576), + [anon_sym_LPAREN] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_u8] = ACTIONS(1578), + [anon_sym_i8] = ACTIONS(1578), + [anon_sym_u16] = ACTIONS(1578), + [anon_sym_i16] = ACTIONS(1578), + [anon_sym_u32] = ACTIONS(1578), + [anon_sym_i32] = ACTIONS(1578), + [anon_sym_u64] = ACTIONS(1578), + [anon_sym_i64] = ACTIONS(1578), + [anon_sym_u128] = ACTIONS(1578), + [anon_sym_i128] = ACTIONS(1578), + [anon_sym_isize] = ACTIONS(1578), + [anon_sym_usize] = ACTIONS(1578), + [anon_sym_f32] = ACTIONS(1578), + [anon_sym_f64] = ACTIONS(1578), + [anon_sym_bool] = ACTIONS(1578), + [anon_sym_str] = ACTIONS(1578), + [anon_sym_char] = ACTIONS(1578), + [anon_sym_SQUOTE] = ACTIONS(1578), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_break] = ACTIONS(1578), + [anon_sym_const] = ACTIONS(1578), + [anon_sym_continue] = ACTIONS(1578), + [anon_sym_default] = ACTIONS(1578), + [anon_sym_enum] = ACTIONS(1578), + [anon_sym_fn] = ACTIONS(1578), + [anon_sym_for] = ACTIONS(1578), + [anon_sym_if] = ACTIONS(1578), + [anon_sym_impl] = ACTIONS(1578), + [anon_sym_let] = ACTIONS(1578), + [anon_sym_loop] = ACTIONS(1578), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_mod] = ACTIONS(1578), + [anon_sym_pub] = ACTIONS(1578), + [anon_sym_return] = ACTIONS(1578), + [anon_sym_static] = ACTIONS(1578), + [anon_sym_struct] = ACTIONS(1578), + [anon_sym_trait] = ACTIONS(1578), + [anon_sym_type] = ACTIONS(1578), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1578), + [anon_sym_use] = ACTIONS(1578), + [anon_sym_while] = ACTIONS(1578), + [anon_sym_POUND] = ACTIONS(1576), + [anon_sym_BANG] = ACTIONS(1576), + [anon_sym_extern] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1576), + [anon_sym_COLON_COLON] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1576), + [anon_sym_DOT_DOT] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), + [anon_sym_move] = ACTIONS(1578), + [sym_integer_literal] = ACTIONS(1576), + [aux_sym_string_literal_token1] = ACTIONS(1576), + [sym_char_literal] = ACTIONS(1576), + [anon_sym_true] = ACTIONS(1578), + [anon_sym_false] = ACTIONS(1578), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1576), + [sym_raw_string_literal] = ACTIONS(1576), + [sym_float_literal] = ACTIONS(1576), [sym_block_comment] = ACTIONS(3), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(1558), - [sym_identifier] = ACTIONS(1560), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_macro_rules_BANG] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1558), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1558), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_u8] = ACTIONS(1560), - [anon_sym_i8] = ACTIONS(1560), - [anon_sym_u16] = ACTIONS(1560), - [anon_sym_i16] = ACTIONS(1560), - [anon_sym_u32] = ACTIONS(1560), - [anon_sym_i32] = ACTIONS(1560), - [anon_sym_u64] = ACTIONS(1560), - [anon_sym_i64] = ACTIONS(1560), - [anon_sym_u128] = ACTIONS(1560), - [anon_sym_i128] = ACTIONS(1560), - [anon_sym_isize] = ACTIONS(1560), - [anon_sym_usize] = ACTIONS(1560), - [anon_sym_f32] = ACTIONS(1560), - [anon_sym_f64] = ACTIONS(1560), - [anon_sym_bool] = ACTIONS(1560), - [anon_sym_str] = ACTIONS(1560), - [anon_sym_char] = ACTIONS(1560), - [anon_sym_SQUOTE] = ACTIONS(1560), - [anon_sym_async] = ACTIONS(1560), - [anon_sym_break] = ACTIONS(1560), - [anon_sym_const] = ACTIONS(1560), - [anon_sym_continue] = ACTIONS(1560), - [anon_sym_default] = ACTIONS(1560), - [anon_sym_enum] = ACTIONS(1560), - [anon_sym_fn] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_impl] = ACTIONS(1560), - [anon_sym_let] = ACTIONS(1560), - [anon_sym_loop] = ACTIONS(1560), - [anon_sym_match] = ACTIONS(1560), - [anon_sym_mod] = ACTIONS(1560), - [anon_sym_pub] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1560), - [anon_sym_static] = ACTIONS(1560), - [anon_sym_struct] = ACTIONS(1560), - [anon_sym_trait] = ACTIONS(1560), - [anon_sym_type] = ACTIONS(1560), - [anon_sym_union] = ACTIONS(1560), - [anon_sym_unsafe] = ACTIONS(1560), - [anon_sym_use] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(1558), - [anon_sym_BANG] = ACTIONS(1558), - [anon_sym_extern] = ACTIONS(1560), - [anon_sym_LT] = ACTIONS(1558), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1558), - [anon_sym_DOT_DOT] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_yield] = ACTIONS(1560), - [anon_sym_move] = ACTIONS(1560), - [sym_integer_literal] = ACTIONS(1558), - [aux_sym_string_literal_token1] = ACTIONS(1558), - [sym_char_literal] = ACTIONS(1558), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1560), - [sym_super] = ACTIONS(1560), - [sym_crate] = ACTIONS(1560), - [sym_metavariable] = ACTIONS(1558), - [sym_raw_string_literal] = ACTIONS(1558), - [sym_float_literal] = ACTIONS(1558), + [ts_builtin_sym_end] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_macro_rules_BANG] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_u8] = ACTIONS(1582), + [anon_sym_i8] = ACTIONS(1582), + [anon_sym_u16] = ACTIONS(1582), + [anon_sym_i16] = ACTIONS(1582), + [anon_sym_u32] = ACTIONS(1582), + [anon_sym_i32] = ACTIONS(1582), + [anon_sym_u64] = ACTIONS(1582), + [anon_sym_i64] = ACTIONS(1582), + [anon_sym_u128] = ACTIONS(1582), + [anon_sym_i128] = ACTIONS(1582), + [anon_sym_isize] = ACTIONS(1582), + [anon_sym_usize] = ACTIONS(1582), + [anon_sym_f32] = ACTIONS(1582), + [anon_sym_f64] = ACTIONS(1582), + [anon_sym_bool] = ACTIONS(1582), + [anon_sym_str] = ACTIONS(1582), + [anon_sym_char] = ACTIONS(1582), + [anon_sym_SQUOTE] = ACTIONS(1582), + [anon_sym_async] = ACTIONS(1582), + [anon_sym_break] = ACTIONS(1582), + [anon_sym_const] = ACTIONS(1582), + [anon_sym_continue] = ACTIONS(1582), + [anon_sym_default] = ACTIONS(1582), + [anon_sym_enum] = ACTIONS(1582), + [anon_sym_fn] = ACTIONS(1582), + [anon_sym_for] = ACTIONS(1582), + [anon_sym_if] = ACTIONS(1582), + [anon_sym_impl] = ACTIONS(1582), + [anon_sym_let] = ACTIONS(1582), + [anon_sym_loop] = ACTIONS(1582), + [anon_sym_match] = ACTIONS(1582), + [anon_sym_mod] = ACTIONS(1582), + [anon_sym_pub] = ACTIONS(1582), + [anon_sym_return] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1582), + [anon_sym_struct] = ACTIONS(1582), + [anon_sym_trait] = ACTIONS(1582), + [anon_sym_type] = ACTIONS(1582), + [anon_sym_union] = ACTIONS(1582), + [anon_sym_unsafe] = ACTIONS(1582), + [anon_sym_use] = ACTIONS(1582), + [anon_sym_while] = ACTIONS(1582), + [anon_sym_POUND] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_extern] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_COLON_COLON] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1580), + [anon_sym_yield] = ACTIONS(1582), + [anon_sym_move] = ACTIONS(1582), + [sym_integer_literal] = ACTIONS(1580), + [aux_sym_string_literal_token1] = ACTIONS(1580), + [sym_char_literal] = ACTIONS(1580), + [anon_sym_true] = ACTIONS(1582), + [anon_sym_false] = ACTIONS(1582), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(1582), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1580), + [sym_float_literal] = ACTIONS(1580), [sym_block_comment] = ACTIONS(3), }, [377] = { - [ts_builtin_sym_end] = ACTIONS(1562), - [sym_identifier] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_macro_rules_BANG] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_RBRACE] = ACTIONS(1562), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_u8] = ACTIONS(1564), - [anon_sym_i8] = ACTIONS(1564), - [anon_sym_u16] = ACTIONS(1564), - [anon_sym_i16] = ACTIONS(1564), - [anon_sym_u32] = ACTIONS(1564), - [anon_sym_i32] = ACTIONS(1564), - [anon_sym_u64] = ACTIONS(1564), - [anon_sym_i64] = ACTIONS(1564), - [anon_sym_u128] = ACTIONS(1564), - [anon_sym_i128] = ACTIONS(1564), - [anon_sym_isize] = ACTIONS(1564), - [anon_sym_usize] = ACTIONS(1564), - [anon_sym_f32] = ACTIONS(1564), - [anon_sym_f64] = ACTIONS(1564), - [anon_sym_bool] = ACTIONS(1564), - [anon_sym_str] = ACTIONS(1564), - [anon_sym_char] = ACTIONS(1564), - [anon_sym_SQUOTE] = ACTIONS(1564), - [anon_sym_async] = ACTIONS(1564), - [anon_sym_break] = ACTIONS(1564), - [anon_sym_const] = ACTIONS(1564), - [anon_sym_continue] = ACTIONS(1564), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_enum] = ACTIONS(1564), - [anon_sym_fn] = ACTIONS(1564), - [anon_sym_for] = ACTIONS(1564), - [anon_sym_if] = ACTIONS(1564), - [anon_sym_impl] = ACTIONS(1564), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_loop] = ACTIONS(1564), - [anon_sym_match] = ACTIONS(1564), - [anon_sym_mod] = ACTIONS(1564), - [anon_sym_pub] = ACTIONS(1564), - [anon_sym_return] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_struct] = ACTIONS(1564), - [anon_sym_trait] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_union] = ACTIONS(1564), - [anon_sym_unsafe] = ACTIONS(1564), - [anon_sym_use] = ACTIONS(1564), - [anon_sym_while] = ACTIONS(1564), - [anon_sym_POUND] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1562), - [anon_sym_extern] = ACTIONS(1564), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_COLON_COLON] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(1562), - [anon_sym_DASH] = ACTIONS(1562), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_yield] = ACTIONS(1564), - [anon_sym_move] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [aux_sym_string_literal_token1] = ACTIONS(1562), - [sym_char_literal] = ACTIONS(1562), - [anon_sym_true] = ACTIONS(1564), - [anon_sym_false] = ACTIONS(1564), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1564), - [sym_super] = ACTIONS(1564), - [sym_crate] = ACTIONS(1564), - [sym_metavariable] = ACTIONS(1562), - [sym_raw_string_literal] = ACTIONS(1562), - [sym_float_literal] = ACTIONS(1562), + [ts_builtin_sym_end] = ACTIONS(1584), + [sym_identifier] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_macro_rules_BANG] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [anon_sym_u8] = ACTIONS(1586), + [anon_sym_i8] = ACTIONS(1586), + [anon_sym_u16] = ACTIONS(1586), + [anon_sym_i16] = ACTIONS(1586), + [anon_sym_u32] = ACTIONS(1586), + [anon_sym_i32] = ACTIONS(1586), + [anon_sym_u64] = ACTIONS(1586), + [anon_sym_i64] = ACTIONS(1586), + [anon_sym_u128] = ACTIONS(1586), + [anon_sym_i128] = ACTIONS(1586), + [anon_sym_isize] = ACTIONS(1586), + [anon_sym_usize] = ACTIONS(1586), + [anon_sym_f32] = ACTIONS(1586), + [anon_sym_f64] = ACTIONS(1586), + [anon_sym_bool] = ACTIONS(1586), + [anon_sym_str] = ACTIONS(1586), + [anon_sym_char] = ACTIONS(1586), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_async] = ACTIONS(1586), + [anon_sym_break] = ACTIONS(1586), + [anon_sym_const] = ACTIONS(1586), + [anon_sym_continue] = ACTIONS(1586), + [anon_sym_default] = ACTIONS(1586), + [anon_sym_enum] = ACTIONS(1586), + [anon_sym_fn] = ACTIONS(1586), + [anon_sym_for] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(1586), + [anon_sym_impl] = ACTIONS(1586), + [anon_sym_let] = ACTIONS(1586), + [anon_sym_loop] = ACTIONS(1586), + [anon_sym_match] = ACTIONS(1586), + [anon_sym_mod] = ACTIONS(1586), + [anon_sym_pub] = ACTIONS(1586), + [anon_sym_return] = ACTIONS(1586), + [anon_sym_static] = ACTIONS(1586), + [anon_sym_struct] = ACTIONS(1586), + [anon_sym_trait] = ACTIONS(1586), + [anon_sym_type] = ACTIONS(1586), + [anon_sym_union] = ACTIONS(1586), + [anon_sym_unsafe] = ACTIONS(1586), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_while] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1584), + [anon_sym_BANG] = ACTIONS(1584), + [anon_sym_extern] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_COLON_COLON] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_yield] = ACTIONS(1586), + [anon_sym_move] = ACTIONS(1586), + [sym_integer_literal] = ACTIONS(1584), + [aux_sym_string_literal_token1] = ACTIONS(1584), + [sym_char_literal] = ACTIONS(1584), + [anon_sym_true] = ACTIONS(1586), + [anon_sym_false] = ACTIONS(1586), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1586), + [sym_super] = ACTIONS(1586), + [sym_crate] = ACTIONS(1586), + [sym_metavariable] = ACTIONS(1584), + [sym_raw_string_literal] = ACTIONS(1584), + [sym_float_literal] = ACTIONS(1584), [sym_block_comment] = ACTIONS(3), }, [378] = { - [ts_builtin_sym_end] = ACTIONS(1566), - [sym_identifier] = ACTIONS(1568), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_macro_rules_BANG] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1566), - [anon_sym_RBRACE] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_STAR] = ACTIONS(1566), - [anon_sym_u8] = ACTIONS(1568), - [anon_sym_i8] = ACTIONS(1568), - [anon_sym_u16] = ACTIONS(1568), - [anon_sym_i16] = ACTIONS(1568), - [anon_sym_u32] = ACTIONS(1568), - [anon_sym_i32] = ACTIONS(1568), - [anon_sym_u64] = ACTIONS(1568), - [anon_sym_i64] = ACTIONS(1568), - [anon_sym_u128] = ACTIONS(1568), - [anon_sym_i128] = ACTIONS(1568), - [anon_sym_isize] = ACTIONS(1568), - [anon_sym_usize] = ACTIONS(1568), - [anon_sym_f32] = ACTIONS(1568), - [anon_sym_f64] = ACTIONS(1568), - [anon_sym_bool] = ACTIONS(1568), - [anon_sym_str] = ACTIONS(1568), - [anon_sym_char] = ACTIONS(1568), - [anon_sym_SQUOTE] = ACTIONS(1568), - [anon_sym_async] = ACTIONS(1568), - [anon_sym_break] = ACTIONS(1568), - [anon_sym_const] = ACTIONS(1568), - [anon_sym_continue] = ACTIONS(1568), - [anon_sym_default] = ACTIONS(1568), - [anon_sym_enum] = ACTIONS(1568), - [anon_sym_fn] = ACTIONS(1568), - [anon_sym_for] = ACTIONS(1568), - [anon_sym_if] = ACTIONS(1568), - [anon_sym_impl] = ACTIONS(1568), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_loop] = ACTIONS(1568), - [anon_sym_match] = ACTIONS(1568), - [anon_sym_mod] = ACTIONS(1568), - [anon_sym_pub] = ACTIONS(1568), - [anon_sym_return] = ACTIONS(1568), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_struct] = ACTIONS(1568), - [anon_sym_trait] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_union] = ACTIONS(1568), - [anon_sym_unsafe] = ACTIONS(1568), - [anon_sym_use] = ACTIONS(1568), - [anon_sym_while] = ACTIONS(1568), - [anon_sym_POUND] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_extern] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(1566), - [anon_sym_COLON_COLON] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1566), - [anon_sym_DOT_DOT] = ACTIONS(1566), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_PIPE] = ACTIONS(1566), - [anon_sym_yield] = ACTIONS(1568), - [anon_sym_move] = ACTIONS(1568), - [sym_integer_literal] = ACTIONS(1566), - [aux_sym_string_literal_token1] = ACTIONS(1566), - [sym_char_literal] = ACTIONS(1566), - [anon_sym_true] = ACTIONS(1568), - [anon_sym_false] = ACTIONS(1568), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1568), - [sym_super] = ACTIONS(1568), - [sym_crate] = ACTIONS(1568), - [sym_metavariable] = ACTIONS(1566), - [sym_raw_string_literal] = ACTIONS(1566), - [sym_float_literal] = ACTIONS(1566), + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_macro_rules_BANG] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_u8] = ACTIONS(1590), + [anon_sym_i8] = ACTIONS(1590), + [anon_sym_u16] = ACTIONS(1590), + [anon_sym_i16] = ACTIONS(1590), + [anon_sym_u32] = ACTIONS(1590), + [anon_sym_i32] = ACTIONS(1590), + [anon_sym_u64] = ACTIONS(1590), + [anon_sym_i64] = ACTIONS(1590), + [anon_sym_u128] = ACTIONS(1590), + [anon_sym_i128] = ACTIONS(1590), + [anon_sym_isize] = ACTIONS(1590), + [anon_sym_usize] = ACTIONS(1590), + [anon_sym_f32] = ACTIONS(1590), + [anon_sym_f64] = ACTIONS(1590), + [anon_sym_bool] = ACTIONS(1590), + [anon_sym_str] = ACTIONS(1590), + [anon_sym_char] = ACTIONS(1590), + [anon_sym_SQUOTE] = ACTIONS(1590), + [anon_sym_async] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_const] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_enum] = ACTIONS(1590), + [anon_sym_fn] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_impl] = ACTIONS(1590), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_loop] = ACTIONS(1590), + [anon_sym_match] = ACTIONS(1590), + [anon_sym_mod] = ACTIONS(1590), + [anon_sym_pub] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_struct] = ACTIONS(1590), + [anon_sym_trait] = ACTIONS(1590), + [anon_sym_type] = ACTIONS(1590), + [anon_sym_union] = ACTIONS(1590), + [anon_sym_unsafe] = ACTIONS(1590), + [anon_sym_use] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_extern] = ACTIONS(1590), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_COLON_COLON] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1588), + [anon_sym_yield] = ACTIONS(1590), + [anon_sym_move] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(1588), + [aux_sym_string_literal_token1] = ACTIONS(1588), + [sym_char_literal] = ACTIONS(1588), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1590), + [sym_super] = ACTIONS(1590), + [sym_crate] = ACTIONS(1590), + [sym_metavariable] = ACTIONS(1588), + [sym_raw_string_literal] = ACTIONS(1588), + [sym_float_literal] = ACTIONS(1588), [sym_block_comment] = ACTIONS(3), }, [379] = { - [ts_builtin_sym_end] = ACTIONS(1570), - [sym_identifier] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_macro_rules_BANG] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_RBRACE] = ACTIONS(1570), - [anon_sym_LBRACK] = ACTIONS(1570), - [anon_sym_STAR] = ACTIONS(1570), - [anon_sym_u8] = ACTIONS(1572), - [anon_sym_i8] = ACTIONS(1572), - [anon_sym_u16] = ACTIONS(1572), - [anon_sym_i16] = ACTIONS(1572), - [anon_sym_u32] = ACTIONS(1572), - [anon_sym_i32] = ACTIONS(1572), - [anon_sym_u64] = ACTIONS(1572), - [anon_sym_i64] = ACTIONS(1572), - [anon_sym_u128] = ACTIONS(1572), - [anon_sym_i128] = ACTIONS(1572), - [anon_sym_isize] = ACTIONS(1572), - [anon_sym_usize] = ACTIONS(1572), - [anon_sym_f32] = ACTIONS(1572), - [anon_sym_f64] = ACTIONS(1572), - [anon_sym_bool] = ACTIONS(1572), - [anon_sym_str] = ACTIONS(1572), - [anon_sym_char] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1572), - [anon_sym_async] = ACTIONS(1572), - [anon_sym_break] = ACTIONS(1572), - [anon_sym_const] = ACTIONS(1572), - [anon_sym_continue] = ACTIONS(1572), - [anon_sym_default] = ACTIONS(1572), - [anon_sym_enum] = ACTIONS(1572), - [anon_sym_fn] = ACTIONS(1572), - [anon_sym_for] = ACTIONS(1572), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_impl] = ACTIONS(1572), - [anon_sym_let] = ACTIONS(1572), - [anon_sym_loop] = ACTIONS(1572), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_mod] = ACTIONS(1572), - [anon_sym_pub] = ACTIONS(1572), - [anon_sym_return] = ACTIONS(1572), - [anon_sym_static] = ACTIONS(1572), - [anon_sym_struct] = ACTIONS(1572), - [anon_sym_trait] = ACTIONS(1572), - [anon_sym_type] = ACTIONS(1572), - [anon_sym_union] = ACTIONS(1572), - [anon_sym_unsafe] = ACTIONS(1572), - [anon_sym_use] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(1570), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_extern] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1570), - [anon_sym_COLON_COLON] = ACTIONS(1570), - [anon_sym_AMP] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), - [anon_sym_move] = ACTIONS(1572), - [sym_integer_literal] = ACTIONS(1570), - [aux_sym_string_literal_token1] = ACTIONS(1570), - [sym_char_literal] = ACTIONS(1570), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1572), - [sym_super] = ACTIONS(1572), - [sym_crate] = ACTIONS(1572), - [sym_metavariable] = ACTIONS(1570), - [sym_raw_string_literal] = ACTIONS(1570), - [sym_float_literal] = ACTIONS(1570), + [ts_builtin_sym_end] = ACTIONS(1592), + [sym_identifier] = ACTIONS(1594), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_macro_rules_BANG] = ACTIONS(1592), + [anon_sym_LPAREN] = ACTIONS(1592), + [anon_sym_LBRACE] = ACTIONS(1592), + [anon_sym_RBRACE] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_u8] = ACTIONS(1594), + [anon_sym_i8] = ACTIONS(1594), + [anon_sym_u16] = ACTIONS(1594), + [anon_sym_i16] = ACTIONS(1594), + [anon_sym_u32] = ACTIONS(1594), + [anon_sym_i32] = ACTIONS(1594), + [anon_sym_u64] = ACTIONS(1594), + [anon_sym_i64] = ACTIONS(1594), + [anon_sym_u128] = ACTIONS(1594), + [anon_sym_i128] = ACTIONS(1594), + [anon_sym_isize] = ACTIONS(1594), + [anon_sym_usize] = ACTIONS(1594), + [anon_sym_f32] = ACTIONS(1594), + [anon_sym_f64] = ACTIONS(1594), + [anon_sym_bool] = ACTIONS(1594), + [anon_sym_str] = ACTIONS(1594), + [anon_sym_char] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1594), + [anon_sym_break] = ACTIONS(1594), + [anon_sym_const] = ACTIONS(1594), + [anon_sym_continue] = ACTIONS(1594), + [anon_sym_default] = ACTIONS(1594), + [anon_sym_enum] = ACTIONS(1594), + [anon_sym_fn] = ACTIONS(1594), + [anon_sym_for] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1594), + [anon_sym_impl] = ACTIONS(1594), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_loop] = ACTIONS(1594), + [anon_sym_match] = ACTIONS(1594), + [anon_sym_mod] = ACTIONS(1594), + [anon_sym_pub] = ACTIONS(1594), + [anon_sym_return] = ACTIONS(1594), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_struct] = ACTIONS(1594), + [anon_sym_trait] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_union] = ACTIONS(1594), + [anon_sym_unsafe] = ACTIONS(1594), + [anon_sym_use] = ACTIONS(1594), + [anon_sym_while] = ACTIONS(1594), + [anon_sym_POUND] = ACTIONS(1592), + [anon_sym_BANG] = ACTIONS(1592), + [anon_sym_extern] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1592), + [anon_sym_DOT_DOT] = ACTIONS(1592), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1592), + [anon_sym_yield] = ACTIONS(1594), + [anon_sym_move] = ACTIONS(1594), + [sym_integer_literal] = ACTIONS(1592), + [aux_sym_string_literal_token1] = ACTIONS(1592), + [sym_char_literal] = ACTIONS(1592), + [anon_sym_true] = ACTIONS(1594), + [anon_sym_false] = ACTIONS(1594), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1594), + [sym_super] = ACTIONS(1594), + [sym_crate] = ACTIONS(1594), + [sym_metavariable] = ACTIONS(1592), + [sym_raw_string_literal] = ACTIONS(1592), + [sym_float_literal] = ACTIONS(1592), [sym_block_comment] = ACTIONS(3), }, [380] = { - [ts_builtin_sym_end] = ACTIONS(1574), - [sym_identifier] = ACTIONS(1576), - [anon_sym_SEMI] = ACTIONS(1574), - [anon_sym_macro_rules_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1574), - [anon_sym_LBRACE] = ACTIONS(1574), - [anon_sym_RBRACE] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(1574), - [anon_sym_STAR] = ACTIONS(1574), - [anon_sym_u8] = ACTIONS(1576), - [anon_sym_i8] = ACTIONS(1576), - [anon_sym_u16] = ACTIONS(1576), - [anon_sym_i16] = ACTIONS(1576), - [anon_sym_u32] = ACTIONS(1576), - [anon_sym_i32] = ACTIONS(1576), - [anon_sym_u64] = ACTIONS(1576), - [anon_sym_i64] = ACTIONS(1576), - [anon_sym_u128] = ACTIONS(1576), - [anon_sym_i128] = ACTIONS(1576), - [anon_sym_isize] = ACTIONS(1576), - [anon_sym_usize] = ACTIONS(1576), - [anon_sym_f32] = ACTIONS(1576), - [anon_sym_f64] = ACTIONS(1576), - [anon_sym_bool] = ACTIONS(1576), - [anon_sym_str] = ACTIONS(1576), - [anon_sym_char] = ACTIONS(1576), - [anon_sym_SQUOTE] = ACTIONS(1576), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_break] = ACTIONS(1576), - [anon_sym_const] = ACTIONS(1576), - [anon_sym_continue] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_enum] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1576), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_if] = ACTIONS(1576), - [anon_sym_impl] = ACTIONS(1576), - [anon_sym_let] = ACTIONS(1576), - [anon_sym_loop] = ACTIONS(1576), - [anon_sym_match] = ACTIONS(1576), - [anon_sym_mod] = ACTIONS(1576), - [anon_sym_pub] = ACTIONS(1576), - [anon_sym_return] = ACTIONS(1576), - [anon_sym_static] = ACTIONS(1576), - [anon_sym_struct] = ACTIONS(1576), - [anon_sym_trait] = ACTIONS(1576), - [anon_sym_type] = ACTIONS(1576), - [anon_sym_union] = ACTIONS(1576), - [anon_sym_unsafe] = ACTIONS(1576), - [anon_sym_use] = ACTIONS(1576), - [anon_sym_while] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(1574), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_extern] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1574), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_DOT_DOT] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_yield] = ACTIONS(1576), - [anon_sym_move] = ACTIONS(1576), - [sym_integer_literal] = ACTIONS(1574), - [aux_sym_string_literal_token1] = ACTIONS(1574), - [sym_char_literal] = ACTIONS(1574), - [anon_sym_true] = ACTIONS(1576), - [anon_sym_false] = ACTIONS(1576), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1576), - [sym_super] = ACTIONS(1576), - [sym_crate] = ACTIONS(1576), - [sym_metavariable] = ACTIONS(1574), - [sym_raw_string_literal] = ACTIONS(1574), - [sym_float_literal] = ACTIONS(1574), + [ts_builtin_sym_end] = ACTIONS(1596), + [sym_identifier] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_macro_rules_BANG] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1596), + [anon_sym_u8] = ACTIONS(1598), + [anon_sym_i8] = ACTIONS(1598), + [anon_sym_u16] = ACTIONS(1598), + [anon_sym_i16] = ACTIONS(1598), + [anon_sym_u32] = ACTIONS(1598), + [anon_sym_i32] = ACTIONS(1598), + [anon_sym_u64] = ACTIONS(1598), + [anon_sym_i64] = ACTIONS(1598), + [anon_sym_u128] = ACTIONS(1598), + [anon_sym_i128] = ACTIONS(1598), + [anon_sym_isize] = ACTIONS(1598), + [anon_sym_usize] = ACTIONS(1598), + [anon_sym_f32] = ACTIONS(1598), + [anon_sym_f64] = ACTIONS(1598), + [anon_sym_bool] = ACTIONS(1598), + [anon_sym_str] = ACTIONS(1598), + [anon_sym_char] = ACTIONS(1598), + [anon_sym_SQUOTE] = ACTIONS(1598), + [anon_sym_async] = ACTIONS(1598), + [anon_sym_break] = ACTIONS(1598), + [anon_sym_const] = ACTIONS(1598), + [anon_sym_continue] = ACTIONS(1598), + [anon_sym_default] = ACTIONS(1598), + [anon_sym_enum] = ACTIONS(1598), + [anon_sym_fn] = ACTIONS(1598), + [anon_sym_for] = ACTIONS(1598), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_impl] = ACTIONS(1598), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_loop] = ACTIONS(1598), + [anon_sym_match] = ACTIONS(1598), + [anon_sym_mod] = ACTIONS(1598), + [anon_sym_pub] = ACTIONS(1598), + [anon_sym_return] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_struct] = ACTIONS(1598), + [anon_sym_trait] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_union] = ACTIONS(1598), + [anon_sym_unsafe] = ACTIONS(1598), + [anon_sym_use] = ACTIONS(1598), + [anon_sym_while] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_extern] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_COLON_COLON] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_yield] = ACTIONS(1598), + [anon_sym_move] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(1596), + [aux_sym_string_literal_token1] = ACTIONS(1596), + [sym_char_literal] = ACTIONS(1596), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1598), + [sym_super] = ACTIONS(1598), + [sym_crate] = ACTIONS(1598), + [sym_metavariable] = ACTIONS(1596), + [sym_raw_string_literal] = ACTIONS(1596), + [sym_float_literal] = ACTIONS(1596), [sym_block_comment] = ACTIONS(3), }, [381] = { - [ts_builtin_sym_end] = ACTIONS(1578), - [sym_identifier] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1578), - [anon_sym_macro_rules_BANG] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1578), - [anon_sym_RBRACE] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_STAR] = ACTIONS(1578), - [anon_sym_u8] = ACTIONS(1580), - [anon_sym_i8] = ACTIONS(1580), - [anon_sym_u16] = ACTIONS(1580), - [anon_sym_i16] = ACTIONS(1580), - [anon_sym_u32] = ACTIONS(1580), - [anon_sym_i32] = ACTIONS(1580), - [anon_sym_u64] = ACTIONS(1580), - [anon_sym_i64] = ACTIONS(1580), - [anon_sym_u128] = ACTIONS(1580), - [anon_sym_i128] = ACTIONS(1580), - [anon_sym_isize] = ACTIONS(1580), - [anon_sym_usize] = ACTIONS(1580), - [anon_sym_f32] = ACTIONS(1580), - [anon_sym_f64] = ACTIONS(1580), - [anon_sym_bool] = ACTIONS(1580), - [anon_sym_str] = ACTIONS(1580), - [anon_sym_char] = ACTIONS(1580), - [anon_sym_SQUOTE] = ACTIONS(1580), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_break] = ACTIONS(1580), - [anon_sym_const] = ACTIONS(1580), - [anon_sym_continue] = ACTIONS(1580), - [anon_sym_default] = ACTIONS(1580), - [anon_sym_enum] = ACTIONS(1580), - [anon_sym_fn] = ACTIONS(1580), - [anon_sym_for] = ACTIONS(1580), - [anon_sym_if] = ACTIONS(1580), - [anon_sym_impl] = ACTIONS(1580), - [anon_sym_let] = ACTIONS(1580), - [anon_sym_loop] = ACTIONS(1580), - [anon_sym_match] = ACTIONS(1580), - [anon_sym_mod] = ACTIONS(1580), - [anon_sym_pub] = ACTIONS(1580), - [anon_sym_return] = ACTIONS(1580), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_struct] = ACTIONS(1580), - [anon_sym_trait] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_union] = ACTIONS(1580), - [anon_sym_unsafe] = ACTIONS(1580), - [anon_sym_use] = ACTIONS(1580), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_POUND] = ACTIONS(1578), - [anon_sym_BANG] = ACTIONS(1578), - [anon_sym_extern] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1578), - [anon_sym_COLON_COLON] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1578), - [anon_sym_DOT_DOT] = ACTIONS(1578), - [anon_sym_DASH] = ACTIONS(1578), - [anon_sym_PIPE] = ACTIONS(1578), - [anon_sym_yield] = ACTIONS(1580), - [anon_sym_move] = ACTIONS(1580), - [sym_integer_literal] = ACTIONS(1578), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1578), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1580), - [sym_super] = ACTIONS(1580), - [sym_crate] = ACTIONS(1580), - [sym_metavariable] = ACTIONS(1578), - [sym_raw_string_literal] = ACTIONS(1578), - [sym_float_literal] = ACTIONS(1578), + [ts_builtin_sym_end] = ACTIONS(1600), + [sym_identifier] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_macro_rules_BANG] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1600), + [anon_sym_STAR] = ACTIONS(1600), + [anon_sym_u8] = ACTIONS(1602), + [anon_sym_i8] = ACTIONS(1602), + [anon_sym_u16] = ACTIONS(1602), + [anon_sym_i16] = ACTIONS(1602), + [anon_sym_u32] = ACTIONS(1602), + [anon_sym_i32] = ACTIONS(1602), + [anon_sym_u64] = ACTIONS(1602), + [anon_sym_i64] = ACTIONS(1602), + [anon_sym_u128] = ACTIONS(1602), + [anon_sym_i128] = ACTIONS(1602), + [anon_sym_isize] = ACTIONS(1602), + [anon_sym_usize] = ACTIONS(1602), + [anon_sym_f32] = ACTIONS(1602), + [anon_sym_f64] = ACTIONS(1602), + [anon_sym_bool] = ACTIONS(1602), + [anon_sym_str] = ACTIONS(1602), + [anon_sym_char] = ACTIONS(1602), + [anon_sym_SQUOTE] = ACTIONS(1602), + [anon_sym_async] = ACTIONS(1602), + [anon_sym_break] = ACTIONS(1602), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_continue] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1602), + [anon_sym_enum] = ACTIONS(1602), + [anon_sym_fn] = ACTIONS(1602), + [anon_sym_for] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_impl] = ACTIONS(1602), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_loop] = ACTIONS(1602), + [anon_sym_match] = ACTIONS(1602), + [anon_sym_mod] = ACTIONS(1602), + [anon_sym_pub] = ACTIONS(1602), + [anon_sym_return] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_struct] = ACTIONS(1602), + [anon_sym_trait] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_union] = ACTIONS(1602), + [anon_sym_unsafe] = ACTIONS(1602), + [anon_sym_use] = ACTIONS(1602), + [anon_sym_while] = ACTIONS(1602), + [anon_sym_POUND] = ACTIONS(1600), + [anon_sym_BANG] = ACTIONS(1600), + [anon_sym_extern] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1600), + [anon_sym_COLON_COLON] = ACTIONS(1600), + [anon_sym_AMP] = ACTIONS(1600), + [anon_sym_DOT_DOT] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_move] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(1600), + [aux_sym_string_literal_token1] = ACTIONS(1600), + [sym_char_literal] = ACTIONS(1600), + [anon_sym_true] = ACTIONS(1602), + [anon_sym_false] = ACTIONS(1602), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1602), + [sym_super] = ACTIONS(1602), + [sym_crate] = ACTIONS(1602), + [sym_metavariable] = ACTIONS(1600), + [sym_raw_string_literal] = ACTIONS(1600), + [sym_float_literal] = ACTIONS(1600), [sym_block_comment] = ACTIONS(3), }, [382] = { - [ts_builtin_sym_end] = ACTIONS(1582), - [sym_identifier] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_macro_rules_BANG] = ACTIONS(1582), - [anon_sym_LPAREN] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1582), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(1582), - [anon_sym_u8] = ACTIONS(1584), - [anon_sym_i8] = ACTIONS(1584), - [anon_sym_u16] = ACTIONS(1584), - [anon_sym_i16] = ACTIONS(1584), - [anon_sym_u32] = ACTIONS(1584), - [anon_sym_i32] = ACTIONS(1584), - [anon_sym_u64] = ACTIONS(1584), - [anon_sym_i64] = ACTIONS(1584), - [anon_sym_u128] = ACTIONS(1584), - [anon_sym_i128] = ACTIONS(1584), - [anon_sym_isize] = ACTIONS(1584), - [anon_sym_usize] = ACTIONS(1584), - [anon_sym_f32] = ACTIONS(1584), - [anon_sym_f64] = ACTIONS(1584), - [anon_sym_bool] = ACTIONS(1584), - [anon_sym_str] = ACTIONS(1584), - [anon_sym_char] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1584), - [anon_sym_async] = ACTIONS(1584), - [anon_sym_break] = ACTIONS(1584), - [anon_sym_const] = ACTIONS(1584), - [anon_sym_continue] = ACTIONS(1584), - [anon_sym_default] = ACTIONS(1584), - [anon_sym_enum] = ACTIONS(1584), - [anon_sym_fn] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_impl] = ACTIONS(1584), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_loop] = ACTIONS(1584), - [anon_sym_match] = ACTIONS(1584), - [anon_sym_mod] = ACTIONS(1584), - [anon_sym_pub] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_static] = ACTIONS(1584), - [anon_sym_struct] = ACTIONS(1584), - [anon_sym_trait] = ACTIONS(1584), - [anon_sym_type] = ACTIONS(1584), - [anon_sym_union] = ACTIONS(1584), - [anon_sym_unsafe] = ACTIONS(1584), - [anon_sym_use] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(1582), - [anon_sym_BANG] = ACTIONS(1582), - [anon_sym_extern] = ACTIONS(1584), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_COLON_COLON] = ACTIONS(1582), - [anon_sym_AMP] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1582), - [anon_sym_DASH] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_yield] = ACTIONS(1584), - [anon_sym_move] = ACTIONS(1584), - [sym_integer_literal] = ACTIONS(1582), - [aux_sym_string_literal_token1] = ACTIONS(1582), - [sym_char_literal] = ACTIONS(1582), - [anon_sym_true] = ACTIONS(1584), - [anon_sym_false] = ACTIONS(1584), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1584), - [sym_super] = ACTIONS(1584), - [sym_crate] = ACTIONS(1584), - [sym_metavariable] = ACTIONS(1582), - [sym_raw_string_literal] = ACTIONS(1582), - [sym_float_literal] = ACTIONS(1582), + [ts_builtin_sym_end] = ACTIONS(1604), + [sym_identifier] = ACTIONS(1606), + [anon_sym_SEMI] = ACTIONS(1604), + [anon_sym_macro_rules_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1604), + [anon_sym_RBRACE] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_u8] = ACTIONS(1606), + [anon_sym_i8] = ACTIONS(1606), + [anon_sym_u16] = ACTIONS(1606), + [anon_sym_i16] = ACTIONS(1606), + [anon_sym_u32] = ACTIONS(1606), + [anon_sym_i32] = ACTIONS(1606), + [anon_sym_u64] = ACTIONS(1606), + [anon_sym_i64] = ACTIONS(1606), + [anon_sym_u128] = ACTIONS(1606), + [anon_sym_i128] = ACTIONS(1606), + [anon_sym_isize] = ACTIONS(1606), + [anon_sym_usize] = ACTIONS(1606), + [anon_sym_f32] = ACTIONS(1606), + [anon_sym_f64] = ACTIONS(1606), + [anon_sym_bool] = ACTIONS(1606), + [anon_sym_str] = ACTIONS(1606), + [anon_sym_char] = ACTIONS(1606), + [anon_sym_SQUOTE] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_break] = ACTIONS(1606), + [anon_sym_const] = ACTIONS(1606), + [anon_sym_continue] = ACTIONS(1606), + [anon_sym_default] = ACTIONS(1606), + [anon_sym_enum] = ACTIONS(1606), + [anon_sym_fn] = ACTIONS(1606), + [anon_sym_for] = ACTIONS(1606), + [anon_sym_if] = ACTIONS(1606), + [anon_sym_impl] = ACTIONS(1606), + [anon_sym_let] = ACTIONS(1606), + [anon_sym_loop] = ACTIONS(1606), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_mod] = ACTIONS(1606), + [anon_sym_pub] = ACTIONS(1606), + [anon_sym_return] = ACTIONS(1606), + [anon_sym_static] = ACTIONS(1606), + [anon_sym_struct] = ACTIONS(1606), + [anon_sym_trait] = ACTIONS(1606), + [anon_sym_type] = ACTIONS(1606), + [anon_sym_union] = ACTIONS(1606), + [anon_sym_unsafe] = ACTIONS(1606), + [anon_sym_use] = ACTIONS(1606), + [anon_sym_while] = ACTIONS(1606), + [anon_sym_POUND] = ACTIONS(1604), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_extern] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1604), + [anon_sym_COLON_COLON] = ACTIONS(1604), + [anon_sym_AMP] = ACTIONS(1604), + [anon_sym_DOT_DOT] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_yield] = ACTIONS(1606), + [anon_sym_move] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(1604), + [aux_sym_string_literal_token1] = ACTIONS(1604), + [sym_char_literal] = ACTIONS(1604), + [anon_sym_true] = ACTIONS(1606), + [anon_sym_false] = ACTIONS(1606), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1606), + [sym_super] = ACTIONS(1606), + [sym_crate] = ACTIONS(1606), + [sym_metavariable] = ACTIONS(1604), + [sym_raw_string_literal] = ACTIONS(1604), + [sym_float_literal] = ACTIONS(1604), [sym_block_comment] = ACTIONS(3), }, [383] = { - [ts_builtin_sym_end] = ACTIONS(1586), - [sym_identifier] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1586), - [anon_sym_macro_rules_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_RBRACE] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_u8] = ACTIONS(1588), - [anon_sym_i8] = ACTIONS(1588), - [anon_sym_u16] = ACTIONS(1588), - [anon_sym_i16] = ACTIONS(1588), - [anon_sym_u32] = ACTIONS(1588), - [anon_sym_i32] = ACTIONS(1588), - [anon_sym_u64] = ACTIONS(1588), - [anon_sym_i64] = ACTIONS(1588), - [anon_sym_u128] = ACTIONS(1588), - [anon_sym_i128] = ACTIONS(1588), - [anon_sym_isize] = ACTIONS(1588), - [anon_sym_usize] = ACTIONS(1588), - [anon_sym_f32] = ACTIONS(1588), - [anon_sym_f64] = ACTIONS(1588), - [anon_sym_bool] = ACTIONS(1588), - [anon_sym_str] = ACTIONS(1588), - [anon_sym_char] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1588), - [anon_sym_async] = ACTIONS(1588), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_const] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1588), - [anon_sym_default] = ACTIONS(1588), - [anon_sym_enum] = ACTIONS(1588), - [anon_sym_fn] = ACTIONS(1588), - [anon_sym_for] = ACTIONS(1588), - [anon_sym_if] = ACTIONS(1588), - [anon_sym_impl] = ACTIONS(1588), - [anon_sym_let] = ACTIONS(1588), - [anon_sym_loop] = ACTIONS(1588), - [anon_sym_match] = ACTIONS(1588), - [anon_sym_mod] = ACTIONS(1588), - [anon_sym_pub] = ACTIONS(1588), - [anon_sym_return] = ACTIONS(1588), - [anon_sym_static] = ACTIONS(1588), - [anon_sym_struct] = ACTIONS(1588), - [anon_sym_trait] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1588), - [anon_sym_union] = ACTIONS(1588), - [anon_sym_unsafe] = ACTIONS(1588), - [anon_sym_use] = ACTIONS(1588), - [anon_sym_while] = ACTIONS(1588), - [anon_sym_POUND] = ACTIONS(1586), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_extern] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_COLON_COLON] = ACTIONS(1586), - [anon_sym_AMP] = ACTIONS(1586), - [anon_sym_DOT_DOT] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_PIPE] = ACTIONS(1586), - [anon_sym_yield] = ACTIONS(1588), - [anon_sym_move] = ACTIONS(1588), - [sym_integer_literal] = ACTIONS(1586), - [aux_sym_string_literal_token1] = ACTIONS(1586), - [sym_char_literal] = ACTIONS(1586), - [anon_sym_true] = ACTIONS(1588), - [anon_sym_false] = ACTIONS(1588), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1588), - [sym_super] = ACTIONS(1588), - [sym_crate] = ACTIONS(1588), - [sym_metavariable] = ACTIONS(1586), - [sym_raw_string_literal] = ACTIONS(1586), - [sym_float_literal] = ACTIONS(1586), + [ts_builtin_sym_end] = ACTIONS(1608), + [sym_identifier] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_macro_rules_BANG] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_STAR] = ACTIONS(1608), + [anon_sym_u8] = ACTIONS(1610), + [anon_sym_i8] = ACTIONS(1610), + [anon_sym_u16] = ACTIONS(1610), + [anon_sym_i16] = ACTIONS(1610), + [anon_sym_u32] = ACTIONS(1610), + [anon_sym_i32] = ACTIONS(1610), + [anon_sym_u64] = ACTIONS(1610), + [anon_sym_i64] = ACTIONS(1610), + [anon_sym_u128] = ACTIONS(1610), + [anon_sym_i128] = ACTIONS(1610), + [anon_sym_isize] = ACTIONS(1610), + [anon_sym_usize] = ACTIONS(1610), + [anon_sym_f32] = ACTIONS(1610), + [anon_sym_f64] = ACTIONS(1610), + [anon_sym_bool] = ACTIONS(1610), + [anon_sym_str] = ACTIONS(1610), + [anon_sym_char] = ACTIONS(1610), + [anon_sym_SQUOTE] = ACTIONS(1610), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_break] = ACTIONS(1610), + [anon_sym_const] = ACTIONS(1610), + [anon_sym_continue] = ACTIONS(1610), + [anon_sym_default] = ACTIONS(1610), + [anon_sym_enum] = ACTIONS(1610), + [anon_sym_fn] = ACTIONS(1610), + [anon_sym_for] = ACTIONS(1610), + [anon_sym_if] = ACTIONS(1610), + [anon_sym_impl] = ACTIONS(1610), + [anon_sym_let] = ACTIONS(1610), + [anon_sym_loop] = ACTIONS(1610), + [anon_sym_match] = ACTIONS(1610), + [anon_sym_mod] = ACTIONS(1610), + [anon_sym_pub] = ACTIONS(1610), + [anon_sym_return] = ACTIONS(1610), + [anon_sym_static] = ACTIONS(1610), + [anon_sym_struct] = ACTIONS(1610), + [anon_sym_trait] = ACTIONS(1610), + [anon_sym_type] = ACTIONS(1610), + [anon_sym_union] = ACTIONS(1610), + [anon_sym_unsafe] = ACTIONS(1610), + [anon_sym_use] = ACTIONS(1610), + [anon_sym_while] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(1608), + [anon_sym_BANG] = ACTIONS(1608), + [anon_sym_extern] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1608), + [anon_sym_COLON_COLON] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_yield] = ACTIONS(1610), + [anon_sym_move] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1608), + [aux_sym_string_literal_token1] = ACTIONS(1608), + [sym_char_literal] = ACTIONS(1608), + [anon_sym_true] = ACTIONS(1610), + [anon_sym_false] = ACTIONS(1610), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1610), + [sym_super] = ACTIONS(1610), + [sym_crate] = ACTIONS(1610), + [sym_metavariable] = ACTIONS(1608), + [sym_raw_string_literal] = ACTIONS(1608), + [sym_float_literal] = ACTIONS(1608), [sym_block_comment] = ACTIONS(3), }, [384] = { - [ts_builtin_sym_end] = ACTIONS(1590), - [sym_identifier] = ACTIONS(1592), - [anon_sym_SEMI] = ACTIONS(1590), - [anon_sym_macro_rules_BANG] = ACTIONS(1590), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_RBRACE] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1590), - [anon_sym_STAR] = ACTIONS(1590), - [anon_sym_u8] = ACTIONS(1592), - [anon_sym_i8] = ACTIONS(1592), - [anon_sym_u16] = ACTIONS(1592), - [anon_sym_i16] = ACTIONS(1592), - [anon_sym_u32] = ACTIONS(1592), - [anon_sym_i32] = ACTIONS(1592), - [anon_sym_u64] = ACTIONS(1592), - [anon_sym_i64] = ACTIONS(1592), - [anon_sym_u128] = ACTIONS(1592), - [anon_sym_i128] = ACTIONS(1592), - [anon_sym_isize] = ACTIONS(1592), - [anon_sym_usize] = ACTIONS(1592), - [anon_sym_f32] = ACTIONS(1592), - [anon_sym_f64] = ACTIONS(1592), - [anon_sym_bool] = ACTIONS(1592), - [anon_sym_str] = ACTIONS(1592), - [anon_sym_char] = ACTIONS(1592), - [anon_sym_SQUOTE] = ACTIONS(1592), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_break] = ACTIONS(1592), - [anon_sym_const] = ACTIONS(1592), - [anon_sym_continue] = ACTIONS(1592), - [anon_sym_default] = ACTIONS(1592), - [anon_sym_enum] = ACTIONS(1592), - [anon_sym_fn] = ACTIONS(1592), - [anon_sym_for] = ACTIONS(1592), - [anon_sym_if] = ACTIONS(1592), - [anon_sym_impl] = ACTIONS(1592), - [anon_sym_let] = ACTIONS(1592), - [anon_sym_loop] = ACTIONS(1592), - [anon_sym_match] = ACTIONS(1592), - [anon_sym_mod] = ACTIONS(1592), - [anon_sym_pub] = ACTIONS(1592), - [anon_sym_return] = ACTIONS(1592), - [anon_sym_static] = ACTIONS(1592), - [anon_sym_struct] = ACTIONS(1592), - [anon_sym_trait] = ACTIONS(1592), - [anon_sym_type] = ACTIONS(1592), - [anon_sym_union] = ACTIONS(1592), - [anon_sym_unsafe] = ACTIONS(1592), - [anon_sym_use] = ACTIONS(1592), - [anon_sym_while] = ACTIONS(1592), - [anon_sym_POUND] = ACTIONS(1590), - [anon_sym_BANG] = ACTIONS(1590), - [anon_sym_extern] = ACTIONS(1592), - [anon_sym_LT] = ACTIONS(1590), - [anon_sym_COLON_COLON] = ACTIONS(1590), - [anon_sym_AMP] = ACTIONS(1590), - [anon_sym_DOT_DOT] = ACTIONS(1590), - [anon_sym_DASH] = ACTIONS(1590), - [anon_sym_PIPE] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_move] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(1590), - [aux_sym_string_literal_token1] = ACTIONS(1590), - [sym_char_literal] = ACTIONS(1590), - [anon_sym_true] = ACTIONS(1592), - [anon_sym_false] = ACTIONS(1592), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1592), - [sym_super] = ACTIONS(1592), - [sym_crate] = ACTIONS(1592), - [sym_metavariable] = ACTIONS(1590), - [sym_raw_string_literal] = ACTIONS(1590), - [sym_float_literal] = ACTIONS(1590), + [ts_builtin_sym_end] = ACTIONS(1612), + [sym_identifier] = ACTIONS(1614), + [anon_sym_SEMI] = ACTIONS(1612), + [anon_sym_macro_rules_BANG] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1612), + [anon_sym_u8] = ACTIONS(1614), + [anon_sym_i8] = ACTIONS(1614), + [anon_sym_u16] = ACTIONS(1614), + [anon_sym_i16] = ACTIONS(1614), + [anon_sym_u32] = ACTIONS(1614), + [anon_sym_i32] = ACTIONS(1614), + [anon_sym_u64] = ACTIONS(1614), + [anon_sym_i64] = ACTIONS(1614), + [anon_sym_u128] = ACTIONS(1614), + [anon_sym_i128] = ACTIONS(1614), + [anon_sym_isize] = ACTIONS(1614), + [anon_sym_usize] = ACTIONS(1614), + [anon_sym_f32] = ACTIONS(1614), + [anon_sym_f64] = ACTIONS(1614), + [anon_sym_bool] = ACTIONS(1614), + [anon_sym_str] = ACTIONS(1614), + [anon_sym_char] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1614), + [anon_sym_async] = ACTIONS(1614), + [anon_sym_break] = ACTIONS(1614), + [anon_sym_const] = ACTIONS(1614), + [anon_sym_continue] = ACTIONS(1614), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_enum] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1614), + [anon_sym_for] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1614), + [anon_sym_impl] = ACTIONS(1614), + [anon_sym_let] = ACTIONS(1614), + [anon_sym_loop] = ACTIONS(1614), + [anon_sym_match] = ACTIONS(1614), + [anon_sym_mod] = ACTIONS(1614), + [anon_sym_pub] = ACTIONS(1614), + [anon_sym_return] = ACTIONS(1614), + [anon_sym_static] = ACTIONS(1614), + [anon_sym_struct] = ACTIONS(1614), + [anon_sym_trait] = ACTIONS(1614), + [anon_sym_type] = ACTIONS(1614), + [anon_sym_union] = ACTIONS(1614), + [anon_sym_unsafe] = ACTIONS(1614), + [anon_sym_use] = ACTIONS(1614), + [anon_sym_while] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1612), + [anon_sym_extern] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_COLON_COLON] = ACTIONS(1612), + [anon_sym_AMP] = ACTIONS(1612), + [anon_sym_DOT_DOT] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), + [anon_sym_move] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1612), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1614), + [sym_super] = ACTIONS(1614), + [sym_crate] = ACTIONS(1614), + [sym_metavariable] = ACTIONS(1612), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), [sym_block_comment] = ACTIONS(3), }, [385] = { - [ts_builtin_sym_end] = ACTIONS(1594), - [sym_identifier] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1594), - [anon_sym_macro_rules_BANG] = ACTIONS(1594), - [anon_sym_LPAREN] = ACTIONS(1594), - [anon_sym_LBRACE] = ACTIONS(1594), - [anon_sym_RBRACE] = ACTIONS(1594), - [anon_sym_LBRACK] = ACTIONS(1594), - [anon_sym_STAR] = ACTIONS(1594), - [anon_sym_u8] = ACTIONS(1596), - [anon_sym_i8] = ACTIONS(1596), - [anon_sym_u16] = ACTIONS(1596), - [anon_sym_i16] = ACTIONS(1596), - [anon_sym_u32] = ACTIONS(1596), - [anon_sym_i32] = ACTIONS(1596), - [anon_sym_u64] = ACTIONS(1596), - [anon_sym_i64] = ACTIONS(1596), - [anon_sym_u128] = ACTIONS(1596), - [anon_sym_i128] = ACTIONS(1596), - [anon_sym_isize] = ACTIONS(1596), - [anon_sym_usize] = ACTIONS(1596), - [anon_sym_f32] = ACTIONS(1596), - [anon_sym_f64] = ACTIONS(1596), - [anon_sym_bool] = ACTIONS(1596), - [anon_sym_str] = ACTIONS(1596), - [anon_sym_char] = ACTIONS(1596), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_async] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_const] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_default] = ACTIONS(1596), - [anon_sym_enum] = ACTIONS(1596), - [anon_sym_fn] = ACTIONS(1596), - [anon_sym_for] = ACTIONS(1596), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_impl] = ACTIONS(1596), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_loop] = ACTIONS(1596), - [anon_sym_match] = ACTIONS(1596), - [anon_sym_mod] = ACTIONS(1596), - [anon_sym_pub] = ACTIONS(1596), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_struct] = ACTIONS(1596), - [anon_sym_trait] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_union] = ACTIONS(1596), - [anon_sym_unsafe] = ACTIONS(1596), - [anon_sym_use] = ACTIONS(1596), - [anon_sym_while] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1594), - [anon_sym_BANG] = ACTIONS(1594), - [anon_sym_extern] = ACTIONS(1596), - [anon_sym_LT] = ACTIONS(1594), - [anon_sym_COLON_COLON] = ACTIONS(1594), - [anon_sym_AMP] = ACTIONS(1594), - [anon_sym_DOT_DOT] = ACTIONS(1594), - [anon_sym_DASH] = ACTIONS(1594), - [anon_sym_PIPE] = ACTIONS(1594), - [anon_sym_yield] = ACTIONS(1596), - [anon_sym_move] = ACTIONS(1596), - [sym_integer_literal] = ACTIONS(1594), - [aux_sym_string_literal_token1] = ACTIONS(1594), - [sym_char_literal] = ACTIONS(1594), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1596), - [sym_super] = ACTIONS(1596), - [sym_crate] = ACTIONS(1596), - [sym_metavariable] = ACTIONS(1594), - [sym_raw_string_literal] = ACTIONS(1594), - [sym_float_literal] = ACTIONS(1594), + [ts_builtin_sym_end] = ACTIONS(1616), + [sym_identifier] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_macro_rules_BANG] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_u8] = ACTIONS(1618), + [anon_sym_i8] = ACTIONS(1618), + [anon_sym_u16] = ACTIONS(1618), + [anon_sym_i16] = ACTIONS(1618), + [anon_sym_u32] = ACTIONS(1618), + [anon_sym_i32] = ACTIONS(1618), + [anon_sym_u64] = ACTIONS(1618), + [anon_sym_i64] = ACTIONS(1618), + [anon_sym_u128] = ACTIONS(1618), + [anon_sym_i128] = ACTIONS(1618), + [anon_sym_isize] = ACTIONS(1618), + [anon_sym_usize] = ACTIONS(1618), + [anon_sym_f32] = ACTIONS(1618), + [anon_sym_f64] = ACTIONS(1618), + [anon_sym_bool] = ACTIONS(1618), + [anon_sym_str] = ACTIONS(1618), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_SQUOTE] = ACTIONS(1618), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_break] = ACTIONS(1618), + [anon_sym_const] = ACTIONS(1618), + [anon_sym_continue] = ACTIONS(1618), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_enum] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1618), + [anon_sym_for] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1618), + [anon_sym_impl] = ACTIONS(1618), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_loop] = ACTIONS(1618), + [anon_sym_match] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1618), + [anon_sym_pub] = ACTIONS(1618), + [anon_sym_return] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1618), + [anon_sym_struct] = ACTIONS(1618), + [anon_sym_trait] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(1618), + [anon_sym_union] = ACTIONS(1618), + [anon_sym_unsafe] = ACTIONS(1618), + [anon_sym_use] = ACTIONS(1618), + [anon_sym_while] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1616), + [anon_sym_BANG] = ACTIONS(1616), + [anon_sym_extern] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_COLON_COLON] = ACTIONS(1616), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_yield] = ACTIONS(1618), + [anon_sym_move] = ACTIONS(1618), + [sym_integer_literal] = ACTIONS(1616), + [aux_sym_string_literal_token1] = ACTIONS(1616), + [sym_char_literal] = ACTIONS(1616), + [anon_sym_true] = ACTIONS(1618), + [anon_sym_false] = ACTIONS(1618), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1616), + [sym_raw_string_literal] = ACTIONS(1616), + [sym_float_literal] = ACTIONS(1616), [sym_block_comment] = ACTIONS(3), }, [386] = { - [ts_builtin_sym_end] = ACTIONS(1598), - [sym_identifier] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_macro_rules_BANG] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1598), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_STAR] = ACTIONS(1598), - [anon_sym_u8] = ACTIONS(1600), - [anon_sym_i8] = ACTIONS(1600), - [anon_sym_u16] = ACTIONS(1600), - [anon_sym_i16] = ACTIONS(1600), - [anon_sym_u32] = ACTIONS(1600), - [anon_sym_i32] = ACTIONS(1600), - [anon_sym_u64] = ACTIONS(1600), - [anon_sym_i64] = ACTIONS(1600), - [anon_sym_u128] = ACTIONS(1600), - [anon_sym_i128] = ACTIONS(1600), - [anon_sym_isize] = ACTIONS(1600), - [anon_sym_usize] = ACTIONS(1600), - [anon_sym_f32] = ACTIONS(1600), - [anon_sym_f64] = ACTIONS(1600), - [anon_sym_bool] = ACTIONS(1600), - [anon_sym_str] = ACTIONS(1600), - [anon_sym_char] = ACTIONS(1600), - [anon_sym_SQUOTE] = ACTIONS(1600), - [anon_sym_async] = ACTIONS(1600), - [anon_sym_break] = ACTIONS(1600), - [anon_sym_const] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_default] = ACTIONS(1600), - [anon_sym_enum] = ACTIONS(1600), - [anon_sym_fn] = ACTIONS(1600), - [anon_sym_for] = ACTIONS(1600), - [anon_sym_if] = ACTIONS(1600), - [anon_sym_impl] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(1600), - [anon_sym_loop] = ACTIONS(1600), - [anon_sym_match] = ACTIONS(1600), - [anon_sym_mod] = ACTIONS(1600), - [anon_sym_pub] = ACTIONS(1600), - [anon_sym_return] = ACTIONS(1600), - [anon_sym_static] = ACTIONS(1600), - [anon_sym_struct] = ACTIONS(1600), - [anon_sym_trait] = ACTIONS(1600), - [anon_sym_type] = ACTIONS(1600), - [anon_sym_union] = ACTIONS(1600), - [anon_sym_unsafe] = ACTIONS(1600), - [anon_sym_use] = ACTIONS(1600), - [anon_sym_while] = ACTIONS(1600), - [anon_sym_POUND] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1598), - [anon_sym_extern] = ACTIONS(1600), - [anon_sym_LT] = ACTIONS(1598), - [anon_sym_COLON_COLON] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1598), - [anon_sym_DOT_DOT] = ACTIONS(1598), - [anon_sym_DASH] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_yield] = ACTIONS(1600), - [anon_sym_move] = ACTIONS(1600), - [sym_integer_literal] = ACTIONS(1598), - [aux_sym_string_literal_token1] = ACTIONS(1598), - [sym_char_literal] = ACTIONS(1598), - [anon_sym_true] = ACTIONS(1600), - [anon_sym_false] = ACTIONS(1600), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1600), - [sym_super] = ACTIONS(1600), - [sym_crate] = ACTIONS(1600), - [sym_metavariable] = ACTIONS(1598), - [sym_raw_string_literal] = ACTIONS(1598), - [sym_float_literal] = ACTIONS(1598), + [ts_builtin_sym_end] = ACTIONS(1620), + [sym_identifier] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_macro_rules_BANG] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_u8] = ACTIONS(1622), + [anon_sym_i8] = ACTIONS(1622), + [anon_sym_u16] = ACTIONS(1622), + [anon_sym_i16] = ACTIONS(1622), + [anon_sym_u32] = ACTIONS(1622), + [anon_sym_i32] = ACTIONS(1622), + [anon_sym_u64] = ACTIONS(1622), + [anon_sym_i64] = ACTIONS(1622), + [anon_sym_u128] = ACTIONS(1622), + [anon_sym_i128] = ACTIONS(1622), + [anon_sym_isize] = ACTIONS(1622), + [anon_sym_usize] = ACTIONS(1622), + [anon_sym_f32] = ACTIONS(1622), + [anon_sym_f64] = ACTIONS(1622), + [anon_sym_bool] = ACTIONS(1622), + [anon_sym_str] = ACTIONS(1622), + [anon_sym_char] = ACTIONS(1622), + [anon_sym_SQUOTE] = ACTIONS(1622), + [anon_sym_async] = ACTIONS(1622), + [anon_sym_break] = ACTIONS(1622), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_continue] = ACTIONS(1622), + [anon_sym_default] = ACTIONS(1622), + [anon_sym_enum] = ACTIONS(1622), + [anon_sym_fn] = ACTIONS(1622), + [anon_sym_for] = ACTIONS(1622), + [anon_sym_if] = ACTIONS(1622), + [anon_sym_impl] = ACTIONS(1622), + [anon_sym_let] = ACTIONS(1622), + [anon_sym_loop] = ACTIONS(1622), + [anon_sym_match] = ACTIONS(1622), + [anon_sym_mod] = ACTIONS(1622), + [anon_sym_pub] = ACTIONS(1622), + [anon_sym_return] = ACTIONS(1622), + [anon_sym_static] = ACTIONS(1622), + [anon_sym_struct] = ACTIONS(1622), + [anon_sym_trait] = ACTIONS(1622), + [anon_sym_type] = ACTIONS(1622), + [anon_sym_union] = ACTIONS(1622), + [anon_sym_unsafe] = ACTIONS(1622), + [anon_sym_use] = ACTIONS(1622), + [anon_sym_while] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1620), + [anon_sym_extern] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(1620), + [anon_sym_COLON_COLON] = ACTIONS(1620), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_yield] = ACTIONS(1622), + [anon_sym_move] = ACTIONS(1622), + [sym_integer_literal] = ACTIONS(1620), + [aux_sym_string_literal_token1] = ACTIONS(1620), + [sym_char_literal] = ACTIONS(1620), + [anon_sym_true] = ACTIONS(1622), + [anon_sym_false] = ACTIONS(1622), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1622), + [sym_super] = ACTIONS(1622), + [sym_crate] = ACTIONS(1622), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1620), + [sym_float_literal] = ACTIONS(1620), [sym_block_comment] = ACTIONS(3), }, [387] = { - [ts_builtin_sym_end] = ACTIONS(1602), - [sym_identifier] = ACTIONS(1604), - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_macro_rules_BANG] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_RBRACE] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1602), - [anon_sym_STAR] = ACTIONS(1602), - [anon_sym_u8] = ACTIONS(1604), - [anon_sym_i8] = ACTIONS(1604), - [anon_sym_u16] = ACTIONS(1604), - [anon_sym_i16] = ACTIONS(1604), - [anon_sym_u32] = ACTIONS(1604), - [anon_sym_i32] = ACTIONS(1604), - [anon_sym_u64] = ACTIONS(1604), - [anon_sym_i64] = ACTIONS(1604), - [anon_sym_u128] = ACTIONS(1604), - [anon_sym_i128] = ACTIONS(1604), - [anon_sym_isize] = ACTIONS(1604), - [anon_sym_usize] = ACTIONS(1604), - [anon_sym_f32] = ACTIONS(1604), - [anon_sym_f64] = ACTIONS(1604), - [anon_sym_bool] = ACTIONS(1604), - [anon_sym_str] = ACTIONS(1604), - [anon_sym_char] = ACTIONS(1604), - [anon_sym_SQUOTE] = ACTIONS(1604), - [anon_sym_async] = ACTIONS(1604), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_const] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1604), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_enum] = ACTIONS(1604), - [anon_sym_fn] = ACTIONS(1604), - [anon_sym_for] = ACTIONS(1604), - [anon_sym_if] = ACTIONS(1604), - [anon_sym_impl] = ACTIONS(1604), - [anon_sym_let] = ACTIONS(1604), - [anon_sym_loop] = ACTIONS(1604), - [anon_sym_match] = ACTIONS(1604), - [anon_sym_mod] = ACTIONS(1604), - [anon_sym_pub] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1604), - [anon_sym_static] = ACTIONS(1604), - [anon_sym_struct] = ACTIONS(1604), - [anon_sym_trait] = ACTIONS(1604), - [anon_sym_type] = ACTIONS(1604), - [anon_sym_union] = ACTIONS(1604), - [anon_sym_unsafe] = ACTIONS(1604), - [anon_sym_use] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1604), - [anon_sym_POUND] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1602), - [anon_sym_extern] = ACTIONS(1604), - [anon_sym_LT] = ACTIONS(1602), - [anon_sym_COLON_COLON] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1602), - [anon_sym_DOT_DOT] = ACTIONS(1602), - [anon_sym_DASH] = ACTIONS(1602), - [anon_sym_PIPE] = ACTIONS(1602), - [anon_sym_yield] = ACTIONS(1604), - [anon_sym_move] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(1602), - [aux_sym_string_literal_token1] = ACTIONS(1602), - [sym_char_literal] = ACTIONS(1602), - [anon_sym_true] = ACTIONS(1604), - [anon_sym_false] = ACTIONS(1604), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1604), - [sym_super] = ACTIONS(1604), - [sym_crate] = ACTIONS(1604), - [sym_metavariable] = ACTIONS(1602), - [sym_raw_string_literal] = ACTIONS(1602), - [sym_float_literal] = ACTIONS(1602), + [ts_builtin_sym_end] = ACTIONS(1624), + [sym_identifier] = ACTIONS(1626), + [anon_sym_SEMI] = ACTIONS(1624), + [anon_sym_macro_rules_BANG] = ACTIONS(1624), + [anon_sym_LPAREN] = ACTIONS(1624), + [anon_sym_LBRACE] = ACTIONS(1624), + [anon_sym_RBRACE] = ACTIONS(1624), + [anon_sym_LBRACK] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_u8] = ACTIONS(1626), + [anon_sym_i8] = ACTIONS(1626), + [anon_sym_u16] = ACTIONS(1626), + [anon_sym_i16] = ACTIONS(1626), + [anon_sym_u32] = ACTIONS(1626), + [anon_sym_i32] = ACTIONS(1626), + [anon_sym_u64] = ACTIONS(1626), + [anon_sym_i64] = ACTIONS(1626), + [anon_sym_u128] = ACTIONS(1626), + [anon_sym_i128] = ACTIONS(1626), + [anon_sym_isize] = ACTIONS(1626), + [anon_sym_usize] = ACTIONS(1626), + [anon_sym_f32] = ACTIONS(1626), + [anon_sym_f64] = ACTIONS(1626), + [anon_sym_bool] = ACTIONS(1626), + [anon_sym_str] = ACTIONS(1626), + [anon_sym_char] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_break] = ACTIONS(1626), + [anon_sym_const] = ACTIONS(1626), + [anon_sym_continue] = ACTIONS(1626), + [anon_sym_default] = ACTIONS(1626), + [anon_sym_enum] = ACTIONS(1626), + [anon_sym_fn] = ACTIONS(1626), + [anon_sym_for] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_impl] = ACTIONS(1626), + [anon_sym_let] = ACTIONS(1626), + [anon_sym_loop] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_mod] = ACTIONS(1626), + [anon_sym_pub] = ACTIONS(1626), + [anon_sym_return] = ACTIONS(1626), + [anon_sym_static] = ACTIONS(1626), + [anon_sym_struct] = ACTIONS(1626), + [anon_sym_trait] = ACTIONS(1626), + [anon_sym_type] = ACTIONS(1626), + [anon_sym_union] = ACTIONS(1626), + [anon_sym_unsafe] = ACTIONS(1626), + [anon_sym_use] = ACTIONS(1626), + [anon_sym_while] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(1624), + [anon_sym_BANG] = ACTIONS(1624), + [anon_sym_extern] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1624), + [anon_sym_COLON_COLON] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1624), + [anon_sym_DOT_DOT] = ACTIONS(1624), + [anon_sym_DASH] = ACTIONS(1624), + [anon_sym_PIPE] = ACTIONS(1624), + [anon_sym_yield] = ACTIONS(1626), + [anon_sym_move] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(1624), + [aux_sym_string_literal_token1] = ACTIONS(1624), + [sym_char_literal] = ACTIONS(1624), + [anon_sym_true] = ACTIONS(1626), + [anon_sym_false] = ACTIONS(1626), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1626), + [sym_super] = ACTIONS(1626), + [sym_crate] = ACTIONS(1626), + [sym_metavariable] = ACTIONS(1624), + [sym_raw_string_literal] = ACTIONS(1624), + [sym_float_literal] = ACTIONS(1624), [sym_block_comment] = ACTIONS(3), }, [388] = { - [ts_builtin_sym_end] = ACTIONS(1606), - [sym_identifier] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_macro_rules_BANG] = ACTIONS(1606), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1606), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_SQUOTE] = ACTIONS(1608), - [anon_sym_async] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_default] = ACTIONS(1608), - [anon_sym_enum] = ACTIONS(1608), - [anon_sym_fn] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_impl] = ACTIONS(1608), - [anon_sym_let] = ACTIONS(1608), - [anon_sym_loop] = ACTIONS(1608), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_mod] = ACTIONS(1608), - [anon_sym_pub] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_static] = ACTIONS(1608), - [anon_sym_struct] = ACTIONS(1608), - [anon_sym_trait] = ACTIONS(1608), - [anon_sym_type] = ACTIONS(1608), - [anon_sym_union] = ACTIONS(1608), - [anon_sym_unsafe] = ACTIONS(1608), - [anon_sym_use] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_POUND] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_extern] = ACTIONS(1608), - [anon_sym_LT] = ACTIONS(1606), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1606), - [anon_sym_DOT_DOT] = ACTIONS(1606), - [anon_sym_DASH] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1606), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_move] = ACTIONS(1608), - [sym_integer_literal] = ACTIONS(1606), - [aux_sym_string_literal_token1] = ACTIONS(1606), - [sym_char_literal] = ACTIONS(1606), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1608), - [sym_super] = ACTIONS(1608), - [sym_crate] = ACTIONS(1608), - [sym_metavariable] = ACTIONS(1606), - [sym_raw_string_literal] = ACTIONS(1606), - [sym_float_literal] = ACTIONS(1606), + [ts_builtin_sym_end] = ACTIONS(1628), + [sym_identifier] = ACTIONS(1630), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_macro_rules_BANG] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_STAR] = ACTIONS(1628), + [anon_sym_u8] = ACTIONS(1630), + [anon_sym_i8] = ACTIONS(1630), + [anon_sym_u16] = ACTIONS(1630), + [anon_sym_i16] = ACTIONS(1630), + [anon_sym_u32] = ACTIONS(1630), + [anon_sym_i32] = ACTIONS(1630), + [anon_sym_u64] = ACTIONS(1630), + [anon_sym_i64] = ACTIONS(1630), + [anon_sym_u128] = ACTIONS(1630), + [anon_sym_i128] = ACTIONS(1630), + [anon_sym_isize] = ACTIONS(1630), + [anon_sym_usize] = ACTIONS(1630), + [anon_sym_f32] = ACTIONS(1630), + [anon_sym_f64] = ACTIONS(1630), + [anon_sym_bool] = ACTIONS(1630), + [anon_sym_str] = ACTIONS(1630), + [anon_sym_char] = ACTIONS(1630), + [anon_sym_SQUOTE] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_const] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(1630), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_enum] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1630), + [anon_sym_for] = ACTIONS(1630), + [anon_sym_if] = ACTIONS(1630), + [anon_sym_impl] = ACTIONS(1630), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_loop] = ACTIONS(1630), + [anon_sym_match] = ACTIONS(1630), + [anon_sym_mod] = ACTIONS(1630), + [anon_sym_pub] = ACTIONS(1630), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_struct] = ACTIONS(1630), + [anon_sym_trait] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_union] = ACTIONS(1630), + [anon_sym_unsafe] = ACTIONS(1630), + [anon_sym_use] = ACTIONS(1630), + [anon_sym_while] = ACTIONS(1630), + [anon_sym_POUND] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1628), + [anon_sym_extern] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1628), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_yield] = ACTIONS(1630), + [anon_sym_move] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(1628), + [aux_sym_string_literal_token1] = ACTIONS(1628), + [sym_char_literal] = ACTIONS(1628), + [anon_sym_true] = ACTIONS(1630), + [anon_sym_false] = ACTIONS(1630), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1630), + [sym_super] = ACTIONS(1630), + [sym_crate] = ACTIONS(1630), + [sym_metavariable] = ACTIONS(1628), + [sym_raw_string_literal] = ACTIONS(1628), + [sym_float_literal] = ACTIONS(1628), [sym_block_comment] = ACTIONS(3), }, [389] = { - [ts_builtin_sym_end] = ACTIONS(1610), - [sym_identifier] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_macro_rules_BANG] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_SQUOTE] = ACTIONS(1612), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_default] = ACTIONS(1612), - [anon_sym_enum] = ACTIONS(1612), - [anon_sym_fn] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_impl] = ACTIONS(1612), - [anon_sym_let] = ACTIONS(1612), - [anon_sym_loop] = ACTIONS(1612), - [anon_sym_match] = ACTIONS(1612), - [anon_sym_mod] = ACTIONS(1612), - [anon_sym_pub] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_struct] = ACTIONS(1612), - [anon_sym_trait] = ACTIONS(1612), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_union] = ACTIONS(1612), - [anon_sym_unsafe] = ACTIONS(1612), - [anon_sym_use] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_extern] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(1610), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1610), - [anon_sym_DOT_DOT] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1610), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_yield] = ACTIONS(1612), - [anon_sym_move] = ACTIONS(1612), - [sym_integer_literal] = ACTIONS(1610), - [aux_sym_string_literal_token1] = ACTIONS(1610), - [sym_char_literal] = ACTIONS(1610), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1612), - [sym_super] = ACTIONS(1612), - [sym_crate] = ACTIONS(1612), - [sym_metavariable] = ACTIONS(1610), - [sym_raw_string_literal] = ACTIONS(1610), - [sym_float_literal] = ACTIONS(1610), + [ts_builtin_sym_end] = ACTIONS(1632), + [sym_identifier] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1632), + [anon_sym_macro_rules_BANG] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_RBRACE] = ACTIONS(1632), + [anon_sym_LBRACK] = ACTIONS(1632), + [anon_sym_STAR] = ACTIONS(1632), + [anon_sym_u8] = ACTIONS(1634), + [anon_sym_i8] = ACTIONS(1634), + [anon_sym_u16] = ACTIONS(1634), + [anon_sym_i16] = ACTIONS(1634), + [anon_sym_u32] = ACTIONS(1634), + [anon_sym_i32] = ACTIONS(1634), + [anon_sym_u64] = ACTIONS(1634), + [anon_sym_i64] = ACTIONS(1634), + [anon_sym_u128] = ACTIONS(1634), + [anon_sym_i128] = ACTIONS(1634), + [anon_sym_isize] = ACTIONS(1634), + [anon_sym_usize] = ACTIONS(1634), + [anon_sym_f32] = ACTIONS(1634), + [anon_sym_f64] = ACTIONS(1634), + [anon_sym_bool] = ACTIONS(1634), + [anon_sym_str] = ACTIONS(1634), + [anon_sym_char] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1634), + [anon_sym_async] = ACTIONS(1634), + [anon_sym_break] = ACTIONS(1634), + [anon_sym_const] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1634), + [anon_sym_enum] = ACTIONS(1634), + [anon_sym_fn] = ACTIONS(1634), + [anon_sym_for] = ACTIONS(1634), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1634), + [anon_sym_let] = ACTIONS(1634), + [anon_sym_loop] = ACTIONS(1634), + [anon_sym_match] = ACTIONS(1634), + [anon_sym_mod] = ACTIONS(1634), + [anon_sym_pub] = ACTIONS(1634), + [anon_sym_return] = ACTIONS(1634), + [anon_sym_static] = ACTIONS(1634), + [anon_sym_struct] = ACTIONS(1634), + [anon_sym_trait] = ACTIONS(1634), + [anon_sym_type] = ACTIONS(1634), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1634), + [anon_sym_use] = ACTIONS(1634), + [anon_sym_while] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1632), + [anon_sym_extern] = ACTIONS(1634), + [anon_sym_LT] = ACTIONS(1632), + [anon_sym_COLON_COLON] = ACTIONS(1632), + [anon_sym_AMP] = ACTIONS(1632), + [anon_sym_DOT_DOT] = ACTIONS(1632), + [anon_sym_DASH] = ACTIONS(1632), + [anon_sym_PIPE] = ACTIONS(1632), + [anon_sym_yield] = ACTIONS(1634), + [anon_sym_move] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1632), + [aux_sym_string_literal_token1] = ACTIONS(1632), + [sym_char_literal] = ACTIONS(1632), + [anon_sym_true] = ACTIONS(1634), + [anon_sym_false] = ACTIONS(1634), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1634), + [sym_super] = ACTIONS(1634), + [sym_crate] = ACTIONS(1634), + [sym_metavariable] = ACTIONS(1632), + [sym_raw_string_literal] = ACTIONS(1632), + [sym_float_literal] = ACTIONS(1632), [sym_block_comment] = ACTIONS(3), }, [390] = { - [ts_builtin_sym_end] = ACTIONS(1614), - [sym_identifier] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1614), - [anon_sym_macro_rules_BANG] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_u8] = ACTIONS(1616), - [anon_sym_i8] = ACTIONS(1616), - [anon_sym_u16] = ACTIONS(1616), - [anon_sym_i16] = ACTIONS(1616), - [anon_sym_u32] = ACTIONS(1616), - [anon_sym_i32] = ACTIONS(1616), - [anon_sym_u64] = ACTIONS(1616), - [anon_sym_i64] = ACTIONS(1616), - [anon_sym_u128] = ACTIONS(1616), - [anon_sym_i128] = ACTIONS(1616), - [anon_sym_isize] = ACTIONS(1616), - [anon_sym_usize] = ACTIONS(1616), - [anon_sym_f32] = ACTIONS(1616), - [anon_sym_f64] = ACTIONS(1616), - [anon_sym_bool] = ACTIONS(1616), - [anon_sym_str] = ACTIONS(1616), - [anon_sym_char] = ACTIONS(1616), - [anon_sym_SQUOTE] = ACTIONS(1616), - [anon_sym_async] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_const] = ACTIONS(1616), - [anon_sym_continue] = ACTIONS(1616), - [anon_sym_default] = ACTIONS(1616), - [anon_sym_enum] = ACTIONS(1616), - [anon_sym_fn] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_impl] = ACTIONS(1616), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_loop] = ACTIONS(1616), - [anon_sym_match] = ACTIONS(1616), - [anon_sym_mod] = ACTIONS(1616), - [anon_sym_pub] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_static] = ACTIONS(1616), - [anon_sym_struct] = ACTIONS(1616), - [anon_sym_trait] = ACTIONS(1616), - [anon_sym_type] = ACTIONS(1616), - [anon_sym_union] = ACTIONS(1616), - [anon_sym_unsafe] = ACTIONS(1616), - [anon_sym_use] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1616), - [anon_sym_POUND] = ACTIONS(1614), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_extern] = ACTIONS(1616), - [anon_sym_LT] = ACTIONS(1614), - [anon_sym_COLON_COLON] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1614), - [anon_sym_DOT_DOT] = ACTIONS(1614), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_PIPE] = ACTIONS(1614), - [anon_sym_yield] = ACTIONS(1616), - [anon_sym_move] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(1614), - [aux_sym_string_literal_token1] = ACTIONS(1614), - [sym_char_literal] = ACTIONS(1614), - [anon_sym_true] = ACTIONS(1616), - [anon_sym_false] = ACTIONS(1616), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1616), - [sym_super] = ACTIONS(1616), - [sym_crate] = ACTIONS(1616), - [sym_metavariable] = ACTIONS(1614), - [sym_raw_string_literal] = ACTIONS(1614), - [sym_float_literal] = ACTIONS(1614), + [ts_builtin_sym_end] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_macro_rules_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_u8] = ACTIONS(1638), + [anon_sym_i8] = ACTIONS(1638), + [anon_sym_u16] = ACTIONS(1638), + [anon_sym_i16] = ACTIONS(1638), + [anon_sym_u32] = ACTIONS(1638), + [anon_sym_i32] = ACTIONS(1638), + [anon_sym_u64] = ACTIONS(1638), + [anon_sym_i64] = ACTIONS(1638), + [anon_sym_u128] = ACTIONS(1638), + [anon_sym_i128] = ACTIONS(1638), + [anon_sym_isize] = ACTIONS(1638), + [anon_sym_usize] = ACTIONS(1638), + [anon_sym_f32] = ACTIONS(1638), + [anon_sym_f64] = ACTIONS(1638), + [anon_sym_bool] = ACTIONS(1638), + [anon_sym_str] = ACTIONS(1638), + [anon_sym_char] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1638), + [anon_sym_async] = ACTIONS(1638), + [anon_sym_break] = ACTIONS(1638), + [anon_sym_const] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(1638), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_enum] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1638), + [anon_sym_for] = ACTIONS(1638), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_impl] = ACTIONS(1638), + [anon_sym_let] = ACTIONS(1638), + [anon_sym_loop] = ACTIONS(1638), + [anon_sym_match] = ACTIONS(1638), + [anon_sym_mod] = ACTIONS(1638), + [anon_sym_pub] = ACTIONS(1638), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_static] = ACTIONS(1638), + [anon_sym_struct] = ACTIONS(1638), + [anon_sym_trait] = ACTIONS(1638), + [anon_sym_type] = ACTIONS(1638), + [anon_sym_union] = ACTIONS(1638), + [anon_sym_unsafe] = ACTIONS(1638), + [anon_sym_use] = ACTIONS(1638), + [anon_sym_while] = ACTIONS(1638), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_extern] = ACTIONS(1638), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_COLON_COLON] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_DOT_DOT] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_yield] = ACTIONS(1638), + [anon_sym_move] = ACTIONS(1638), + [sym_integer_literal] = ACTIONS(1636), + [aux_sym_string_literal_token1] = ACTIONS(1636), + [sym_char_literal] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1638), + [anon_sym_false] = ACTIONS(1638), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1638), + [sym_super] = ACTIONS(1638), + [sym_crate] = ACTIONS(1638), + [sym_metavariable] = ACTIONS(1636), + [sym_raw_string_literal] = ACTIONS(1636), + [sym_float_literal] = ACTIONS(1636), [sym_block_comment] = ACTIONS(3), }, [391] = { - [ts_builtin_sym_end] = ACTIONS(1618), - [sym_identifier] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1618), - [anon_sym_macro_rules_BANG] = ACTIONS(1618), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACE] = ACTIONS(1618), - [anon_sym_RBRACE] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1618), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_u8] = ACTIONS(1620), - [anon_sym_i8] = ACTIONS(1620), - [anon_sym_u16] = ACTIONS(1620), - [anon_sym_i16] = ACTIONS(1620), - [anon_sym_u32] = ACTIONS(1620), - [anon_sym_i32] = ACTIONS(1620), - [anon_sym_u64] = ACTIONS(1620), - [anon_sym_i64] = ACTIONS(1620), - [anon_sym_u128] = ACTIONS(1620), - [anon_sym_i128] = ACTIONS(1620), - [anon_sym_isize] = ACTIONS(1620), - [anon_sym_usize] = ACTIONS(1620), - [anon_sym_f32] = ACTIONS(1620), - [anon_sym_f64] = ACTIONS(1620), - [anon_sym_bool] = ACTIONS(1620), - [anon_sym_str] = ACTIONS(1620), - [anon_sym_char] = ACTIONS(1620), - [anon_sym_SQUOTE] = ACTIONS(1620), - [anon_sym_async] = ACTIONS(1620), - [anon_sym_break] = ACTIONS(1620), - [anon_sym_const] = ACTIONS(1620), - [anon_sym_continue] = ACTIONS(1620), - [anon_sym_default] = ACTIONS(1620), - [anon_sym_enum] = ACTIONS(1620), - [anon_sym_fn] = ACTIONS(1620), - [anon_sym_for] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1620), - [anon_sym_impl] = ACTIONS(1620), - [anon_sym_let] = ACTIONS(1620), - [anon_sym_loop] = ACTIONS(1620), - [anon_sym_match] = ACTIONS(1620), - [anon_sym_mod] = ACTIONS(1620), - [anon_sym_pub] = ACTIONS(1620), - [anon_sym_return] = ACTIONS(1620), - [anon_sym_static] = ACTIONS(1620), - [anon_sym_struct] = ACTIONS(1620), - [anon_sym_trait] = ACTIONS(1620), - [anon_sym_type] = ACTIONS(1620), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1620), - [anon_sym_use] = ACTIONS(1620), - [anon_sym_while] = ACTIONS(1620), - [anon_sym_POUND] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1618), - [anon_sym_extern] = ACTIONS(1620), - [anon_sym_LT] = ACTIONS(1618), - [anon_sym_COLON_COLON] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1618), - [anon_sym_DOT_DOT] = ACTIONS(1618), - [anon_sym_DASH] = ACTIONS(1618), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_yield] = ACTIONS(1620), - [anon_sym_move] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(1618), - [aux_sym_string_literal_token1] = ACTIONS(1618), - [sym_char_literal] = ACTIONS(1618), - [anon_sym_true] = ACTIONS(1620), - [anon_sym_false] = ACTIONS(1620), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1620), - [sym_super] = ACTIONS(1620), - [sym_crate] = ACTIONS(1620), - [sym_metavariable] = ACTIONS(1618), - [sym_raw_string_literal] = ACTIONS(1618), - [sym_float_literal] = ACTIONS(1618), + [ts_builtin_sym_end] = ACTIONS(1640), + [sym_identifier] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_macro_rules_BANG] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_u8] = ACTIONS(1642), + [anon_sym_i8] = ACTIONS(1642), + [anon_sym_u16] = ACTIONS(1642), + [anon_sym_i16] = ACTIONS(1642), + [anon_sym_u32] = ACTIONS(1642), + [anon_sym_i32] = ACTIONS(1642), + [anon_sym_u64] = ACTIONS(1642), + [anon_sym_i64] = ACTIONS(1642), + [anon_sym_u128] = ACTIONS(1642), + [anon_sym_i128] = ACTIONS(1642), + [anon_sym_isize] = ACTIONS(1642), + [anon_sym_usize] = ACTIONS(1642), + [anon_sym_f32] = ACTIONS(1642), + [anon_sym_f64] = ACTIONS(1642), + [anon_sym_bool] = ACTIONS(1642), + [anon_sym_str] = ACTIONS(1642), + [anon_sym_char] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_break] = ACTIONS(1642), + [anon_sym_const] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(1642), + [anon_sym_default] = ACTIONS(1642), + [anon_sym_enum] = ACTIONS(1642), + [anon_sym_fn] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1642), + [anon_sym_let] = ACTIONS(1642), + [anon_sym_loop] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_mod] = ACTIONS(1642), + [anon_sym_pub] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_static] = ACTIONS(1642), + [anon_sym_struct] = ACTIONS(1642), + [anon_sym_trait] = ACTIONS(1642), + [anon_sym_type] = ACTIONS(1642), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_use] = ACTIONS(1642), + [anon_sym_while] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(1640), + [anon_sym_BANG] = ACTIONS(1640), + [anon_sym_extern] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(1640), + [anon_sym_COLON_COLON] = ACTIONS(1640), + [anon_sym_AMP] = ACTIONS(1640), + [anon_sym_DOT_DOT] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_yield] = ACTIONS(1642), + [anon_sym_move] = ACTIONS(1642), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1640), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1642), + [anon_sym_false] = ACTIONS(1642), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1640), + [sym_raw_string_literal] = ACTIONS(1640), + [sym_float_literal] = ACTIONS(1640), [sym_block_comment] = ACTIONS(3), }, [392] = { - [ts_builtin_sym_end] = ACTIONS(1622), - [sym_identifier] = ACTIONS(1624), - [anon_sym_SEMI] = ACTIONS(1622), - [anon_sym_macro_rules_BANG] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(1622), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1622), - [anon_sym_LBRACK] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1622), - [anon_sym_u8] = ACTIONS(1624), - [anon_sym_i8] = ACTIONS(1624), - [anon_sym_u16] = ACTIONS(1624), - [anon_sym_i16] = ACTIONS(1624), - [anon_sym_u32] = ACTIONS(1624), - [anon_sym_i32] = ACTIONS(1624), - [anon_sym_u64] = ACTIONS(1624), - [anon_sym_i64] = ACTIONS(1624), - [anon_sym_u128] = ACTIONS(1624), - [anon_sym_i128] = ACTIONS(1624), - [anon_sym_isize] = ACTIONS(1624), - [anon_sym_usize] = ACTIONS(1624), - [anon_sym_f32] = ACTIONS(1624), - [anon_sym_f64] = ACTIONS(1624), - [anon_sym_bool] = ACTIONS(1624), - [anon_sym_str] = ACTIONS(1624), - [anon_sym_char] = ACTIONS(1624), - [anon_sym_SQUOTE] = ACTIONS(1624), - [anon_sym_async] = ACTIONS(1624), - [anon_sym_break] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1624), - [anon_sym_continue] = ACTIONS(1624), - [anon_sym_default] = ACTIONS(1624), - [anon_sym_enum] = ACTIONS(1624), - [anon_sym_fn] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1624), - [anon_sym_if] = ACTIONS(1624), - [anon_sym_impl] = ACTIONS(1624), - [anon_sym_let] = ACTIONS(1624), - [anon_sym_loop] = ACTIONS(1624), - [anon_sym_match] = ACTIONS(1624), - [anon_sym_mod] = ACTIONS(1624), - [anon_sym_pub] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_static] = ACTIONS(1624), - [anon_sym_struct] = ACTIONS(1624), - [anon_sym_trait] = ACTIONS(1624), - [anon_sym_type] = ACTIONS(1624), - [anon_sym_union] = ACTIONS(1624), - [anon_sym_unsafe] = ACTIONS(1624), - [anon_sym_use] = ACTIONS(1624), - [anon_sym_while] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1622), - [anon_sym_BANG] = ACTIONS(1622), - [anon_sym_extern] = ACTIONS(1624), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1622), - [anon_sym_AMP] = ACTIONS(1622), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_DASH] = ACTIONS(1622), - [anon_sym_PIPE] = ACTIONS(1622), - [anon_sym_yield] = ACTIONS(1624), - [anon_sym_move] = ACTIONS(1624), - [sym_integer_literal] = ACTIONS(1622), - [aux_sym_string_literal_token1] = ACTIONS(1622), - [sym_char_literal] = ACTIONS(1622), - [anon_sym_true] = ACTIONS(1624), - [anon_sym_false] = ACTIONS(1624), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1622), - [sym_raw_string_literal] = ACTIONS(1622), - [sym_float_literal] = ACTIONS(1622), + [ts_builtin_sym_end] = ACTIONS(1644), + [sym_identifier] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_macro_rules_BANG] = ACTIONS(1644), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_STAR] = ACTIONS(1644), + [anon_sym_u8] = ACTIONS(1646), + [anon_sym_i8] = ACTIONS(1646), + [anon_sym_u16] = ACTIONS(1646), + [anon_sym_i16] = ACTIONS(1646), + [anon_sym_u32] = ACTIONS(1646), + [anon_sym_i32] = ACTIONS(1646), + [anon_sym_u64] = ACTIONS(1646), + [anon_sym_i64] = ACTIONS(1646), + [anon_sym_u128] = ACTIONS(1646), + [anon_sym_i128] = ACTIONS(1646), + [anon_sym_isize] = ACTIONS(1646), + [anon_sym_usize] = ACTIONS(1646), + [anon_sym_f32] = ACTIONS(1646), + [anon_sym_f64] = ACTIONS(1646), + [anon_sym_bool] = ACTIONS(1646), + [anon_sym_str] = ACTIONS(1646), + [anon_sym_char] = ACTIONS(1646), + [anon_sym_SQUOTE] = ACTIONS(1646), + [anon_sym_async] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(1646), + [anon_sym_default] = ACTIONS(1646), + [anon_sym_enum] = ACTIONS(1646), + [anon_sym_fn] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_impl] = ACTIONS(1646), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_loop] = ACTIONS(1646), + [anon_sym_match] = ACTIONS(1646), + [anon_sym_mod] = ACTIONS(1646), + [anon_sym_pub] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_struct] = ACTIONS(1646), + [anon_sym_trait] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_union] = ACTIONS(1646), + [anon_sym_unsafe] = ACTIONS(1646), + [anon_sym_use] = ACTIONS(1646), + [anon_sym_while] = ACTIONS(1646), + [anon_sym_POUND] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_extern] = ACTIONS(1646), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_COLON_COLON] = ACTIONS(1644), + [anon_sym_AMP] = ACTIONS(1644), + [anon_sym_DOT_DOT] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_yield] = ACTIONS(1646), + [anon_sym_move] = ACTIONS(1646), + [sym_integer_literal] = ACTIONS(1644), + [aux_sym_string_literal_token1] = ACTIONS(1644), + [sym_char_literal] = ACTIONS(1644), + [anon_sym_true] = ACTIONS(1646), + [anon_sym_false] = ACTIONS(1646), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1646), + [sym_super] = ACTIONS(1646), + [sym_crate] = ACTIONS(1646), + [sym_metavariable] = ACTIONS(1644), + [sym_raw_string_literal] = ACTIONS(1644), + [sym_float_literal] = ACTIONS(1644), [sym_block_comment] = ACTIONS(3), }, [393] = { - [ts_builtin_sym_end] = ACTIONS(1626), - [sym_identifier] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_macro_rules_BANG] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1626), - [anon_sym_STAR] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_SQUOTE] = ACTIONS(1628), - [anon_sym_async] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1628), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_continue] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1628), - [anon_sym_enum] = ACTIONS(1628), - [anon_sym_fn] = ACTIONS(1628), - [anon_sym_for] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_impl] = ACTIONS(1628), - [anon_sym_let] = ACTIONS(1628), - [anon_sym_loop] = ACTIONS(1628), - [anon_sym_match] = ACTIONS(1628), - [anon_sym_mod] = ACTIONS(1628), - [anon_sym_pub] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_static] = ACTIONS(1628), - [anon_sym_struct] = ACTIONS(1628), - [anon_sym_trait] = ACTIONS(1628), - [anon_sym_type] = ACTIONS(1628), - [anon_sym_union] = ACTIONS(1628), - [anon_sym_unsafe] = ACTIONS(1628), - [anon_sym_use] = ACTIONS(1628), - [anon_sym_while] = ACTIONS(1628), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_BANG] = ACTIONS(1626), - [anon_sym_extern] = ACTIONS(1628), - [anon_sym_LT] = ACTIONS(1626), - [anon_sym_COLON_COLON] = ACTIONS(1626), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_DOT_DOT] = ACTIONS(1626), - [anon_sym_DASH] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_move] = ACTIONS(1628), - [sym_integer_literal] = ACTIONS(1626), - [aux_sym_string_literal_token1] = ACTIONS(1626), - [sym_char_literal] = ACTIONS(1626), - [anon_sym_true] = ACTIONS(1628), - [anon_sym_false] = ACTIONS(1628), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1628), - [sym_super] = ACTIONS(1628), - [sym_crate] = ACTIONS(1628), - [sym_metavariable] = ACTIONS(1626), - [sym_raw_string_literal] = ACTIONS(1626), - [sym_float_literal] = ACTIONS(1626), + [ts_builtin_sym_end] = ACTIONS(1648), + [sym_identifier] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1648), + [anon_sym_macro_rules_BANG] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_LBRACK] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_u8] = ACTIONS(1650), + [anon_sym_i8] = ACTIONS(1650), + [anon_sym_u16] = ACTIONS(1650), + [anon_sym_i16] = ACTIONS(1650), + [anon_sym_u32] = ACTIONS(1650), + [anon_sym_i32] = ACTIONS(1650), + [anon_sym_u64] = ACTIONS(1650), + [anon_sym_i64] = ACTIONS(1650), + [anon_sym_u128] = ACTIONS(1650), + [anon_sym_i128] = ACTIONS(1650), + [anon_sym_isize] = ACTIONS(1650), + [anon_sym_usize] = ACTIONS(1650), + [anon_sym_f32] = ACTIONS(1650), + [anon_sym_f64] = ACTIONS(1650), + [anon_sym_bool] = ACTIONS(1650), + [anon_sym_str] = ACTIONS(1650), + [anon_sym_char] = ACTIONS(1650), + [anon_sym_SQUOTE] = ACTIONS(1650), + [anon_sym_async] = ACTIONS(1650), + [anon_sym_break] = ACTIONS(1650), + [anon_sym_const] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(1650), + [anon_sym_default] = ACTIONS(1650), + [anon_sym_enum] = ACTIONS(1650), + [anon_sym_fn] = ACTIONS(1650), + [anon_sym_for] = ACTIONS(1650), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_impl] = ACTIONS(1650), + [anon_sym_let] = ACTIONS(1650), + [anon_sym_loop] = ACTIONS(1650), + [anon_sym_match] = ACTIONS(1650), + [anon_sym_mod] = ACTIONS(1650), + [anon_sym_pub] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_static] = ACTIONS(1650), + [anon_sym_struct] = ACTIONS(1650), + [anon_sym_trait] = ACTIONS(1650), + [anon_sym_type] = ACTIONS(1650), + [anon_sym_union] = ACTIONS(1650), + [anon_sym_unsafe] = ACTIONS(1650), + [anon_sym_use] = ACTIONS(1650), + [anon_sym_while] = ACTIONS(1650), + [anon_sym_POUND] = ACTIONS(1648), + [anon_sym_BANG] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1648), + [anon_sym_COLON_COLON] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_DOT_DOT] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1648), + [anon_sym_yield] = ACTIONS(1650), + [anon_sym_move] = ACTIONS(1650), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1648), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1648), + [sym_raw_string_literal] = ACTIONS(1648), + [sym_float_literal] = ACTIONS(1648), [sym_block_comment] = ACTIONS(3), }, [394] = { - [ts_builtin_sym_end] = ACTIONS(1630), - [sym_identifier] = ACTIONS(1632), - [anon_sym_SEMI] = ACTIONS(1630), - [anon_sym_macro_rules_BANG] = ACTIONS(1630), - [anon_sym_LPAREN] = ACTIONS(1630), - [anon_sym_LBRACE] = ACTIONS(1630), - [anon_sym_RBRACE] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_STAR] = ACTIONS(1630), - [anon_sym_u8] = ACTIONS(1632), - [anon_sym_i8] = ACTIONS(1632), - [anon_sym_u16] = ACTIONS(1632), - [anon_sym_i16] = ACTIONS(1632), - [anon_sym_u32] = ACTIONS(1632), - [anon_sym_i32] = ACTIONS(1632), - [anon_sym_u64] = ACTIONS(1632), - [anon_sym_i64] = ACTIONS(1632), - [anon_sym_u128] = ACTIONS(1632), - [anon_sym_i128] = ACTIONS(1632), - [anon_sym_isize] = ACTIONS(1632), - [anon_sym_usize] = ACTIONS(1632), - [anon_sym_f32] = ACTIONS(1632), - [anon_sym_f64] = ACTIONS(1632), - [anon_sym_bool] = ACTIONS(1632), - [anon_sym_str] = ACTIONS(1632), - [anon_sym_char] = ACTIONS(1632), - [anon_sym_SQUOTE] = ACTIONS(1632), - [anon_sym_async] = ACTIONS(1632), - [anon_sym_break] = ACTIONS(1632), - [anon_sym_const] = ACTIONS(1632), - [anon_sym_continue] = ACTIONS(1632), - [anon_sym_default] = ACTIONS(1632), - [anon_sym_enum] = ACTIONS(1632), - [anon_sym_fn] = ACTIONS(1632), - [anon_sym_for] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1632), - [anon_sym_impl] = ACTIONS(1632), - [anon_sym_let] = ACTIONS(1632), - [anon_sym_loop] = ACTIONS(1632), - [anon_sym_match] = ACTIONS(1632), - [anon_sym_mod] = ACTIONS(1632), - [anon_sym_pub] = ACTIONS(1632), - [anon_sym_return] = ACTIONS(1632), - [anon_sym_static] = ACTIONS(1632), - [anon_sym_struct] = ACTIONS(1632), - [anon_sym_trait] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1632), - [anon_sym_union] = ACTIONS(1632), - [anon_sym_unsafe] = ACTIONS(1632), - [anon_sym_use] = ACTIONS(1632), - [anon_sym_while] = ACTIONS(1632), - [anon_sym_POUND] = ACTIONS(1630), - [anon_sym_BANG] = ACTIONS(1630), - [anon_sym_extern] = ACTIONS(1632), - [anon_sym_LT] = ACTIONS(1630), - [anon_sym_COLON_COLON] = ACTIONS(1630), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_DOT_DOT] = ACTIONS(1630), - [anon_sym_DASH] = ACTIONS(1630), - [anon_sym_PIPE] = ACTIONS(1630), - [anon_sym_yield] = ACTIONS(1632), - [anon_sym_move] = ACTIONS(1632), - [sym_integer_literal] = ACTIONS(1630), - [aux_sym_string_literal_token1] = ACTIONS(1630), - [sym_char_literal] = ACTIONS(1630), - [anon_sym_true] = ACTIONS(1632), - [anon_sym_false] = ACTIONS(1632), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1632), - [sym_super] = ACTIONS(1632), - [sym_crate] = ACTIONS(1632), - [sym_metavariable] = ACTIONS(1630), - [sym_raw_string_literal] = ACTIONS(1630), - [sym_float_literal] = ACTIONS(1630), + [ts_builtin_sym_end] = ACTIONS(1652), + [sym_identifier] = ACTIONS(1654), + [anon_sym_SEMI] = ACTIONS(1652), + [anon_sym_macro_rules_BANG] = ACTIONS(1652), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACE] = ACTIONS(1652), + [anon_sym_RBRACE] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1652), + [anon_sym_u8] = ACTIONS(1654), + [anon_sym_i8] = ACTIONS(1654), + [anon_sym_u16] = ACTIONS(1654), + [anon_sym_i16] = ACTIONS(1654), + [anon_sym_u32] = ACTIONS(1654), + [anon_sym_i32] = ACTIONS(1654), + [anon_sym_u64] = ACTIONS(1654), + [anon_sym_i64] = ACTIONS(1654), + [anon_sym_u128] = ACTIONS(1654), + [anon_sym_i128] = ACTIONS(1654), + [anon_sym_isize] = ACTIONS(1654), + [anon_sym_usize] = ACTIONS(1654), + [anon_sym_f32] = ACTIONS(1654), + [anon_sym_f64] = ACTIONS(1654), + [anon_sym_bool] = ACTIONS(1654), + [anon_sym_str] = ACTIONS(1654), + [anon_sym_char] = ACTIONS(1654), + [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_async] = ACTIONS(1654), + [anon_sym_break] = ACTIONS(1654), + [anon_sym_const] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(1654), + [anon_sym_default] = ACTIONS(1654), + [anon_sym_enum] = ACTIONS(1654), + [anon_sym_fn] = ACTIONS(1654), + [anon_sym_for] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_impl] = ACTIONS(1654), + [anon_sym_let] = ACTIONS(1654), + [anon_sym_loop] = ACTIONS(1654), + [anon_sym_match] = ACTIONS(1654), + [anon_sym_mod] = ACTIONS(1654), + [anon_sym_pub] = ACTIONS(1654), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_static] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1654), + [anon_sym_trait] = ACTIONS(1654), + [anon_sym_type] = ACTIONS(1654), + [anon_sym_union] = ACTIONS(1654), + [anon_sym_unsafe] = ACTIONS(1654), + [anon_sym_use] = ACTIONS(1654), + [anon_sym_while] = ACTIONS(1654), + [anon_sym_POUND] = ACTIONS(1652), + [anon_sym_BANG] = ACTIONS(1652), + [anon_sym_extern] = ACTIONS(1654), + [anon_sym_LT] = ACTIONS(1652), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1652), + [anon_sym_DOT_DOT] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_PIPE] = ACTIONS(1652), + [anon_sym_yield] = ACTIONS(1654), + [anon_sym_move] = ACTIONS(1654), + [sym_integer_literal] = ACTIONS(1652), + [aux_sym_string_literal_token1] = ACTIONS(1652), + [sym_char_literal] = ACTIONS(1652), + [anon_sym_true] = ACTIONS(1654), + [anon_sym_false] = ACTIONS(1654), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1654), + [sym_super] = ACTIONS(1654), + [sym_crate] = ACTIONS(1654), + [sym_metavariable] = ACTIONS(1652), + [sym_raw_string_literal] = ACTIONS(1652), + [sym_float_literal] = ACTIONS(1652), [sym_block_comment] = ACTIONS(3), }, [395] = { - [ts_builtin_sym_end] = ACTIONS(1634), - [sym_identifier] = ACTIONS(1636), - [anon_sym_SEMI] = ACTIONS(1634), - [anon_sym_macro_rules_BANG] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1634), - [anon_sym_RBRACE] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1634), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_u8] = ACTIONS(1636), - [anon_sym_i8] = ACTIONS(1636), - [anon_sym_u16] = ACTIONS(1636), - [anon_sym_i16] = ACTIONS(1636), - [anon_sym_u32] = ACTIONS(1636), - [anon_sym_i32] = ACTIONS(1636), - [anon_sym_u64] = ACTIONS(1636), - [anon_sym_i64] = ACTIONS(1636), - [anon_sym_u128] = ACTIONS(1636), - [anon_sym_i128] = ACTIONS(1636), - [anon_sym_isize] = ACTIONS(1636), - [anon_sym_usize] = ACTIONS(1636), - [anon_sym_f32] = ACTIONS(1636), - [anon_sym_f64] = ACTIONS(1636), - [anon_sym_bool] = ACTIONS(1636), - [anon_sym_str] = ACTIONS(1636), - [anon_sym_char] = ACTIONS(1636), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1636), - [anon_sym_break] = ACTIONS(1636), - [anon_sym_const] = ACTIONS(1636), - [anon_sym_continue] = ACTIONS(1636), - [anon_sym_default] = ACTIONS(1636), - [anon_sym_enum] = ACTIONS(1636), - [anon_sym_fn] = ACTIONS(1636), - [anon_sym_for] = ACTIONS(1636), - [anon_sym_if] = ACTIONS(1636), - [anon_sym_impl] = ACTIONS(1636), - [anon_sym_let] = ACTIONS(1636), - [anon_sym_loop] = ACTIONS(1636), - [anon_sym_match] = ACTIONS(1636), - [anon_sym_mod] = ACTIONS(1636), - [anon_sym_pub] = ACTIONS(1636), - [anon_sym_return] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(1636), - [anon_sym_struct] = ACTIONS(1636), - [anon_sym_trait] = ACTIONS(1636), - [anon_sym_type] = ACTIONS(1636), - [anon_sym_union] = ACTIONS(1636), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_use] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1634), - [anon_sym_extern] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1634), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_DOT_DOT] = ACTIONS(1634), - [anon_sym_DASH] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1634), - [anon_sym_yield] = ACTIONS(1636), - [anon_sym_move] = ACTIONS(1636), - [sym_integer_literal] = ACTIONS(1634), - [aux_sym_string_literal_token1] = ACTIONS(1634), - [sym_char_literal] = ACTIONS(1634), - [anon_sym_true] = ACTIONS(1636), - [anon_sym_false] = ACTIONS(1636), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1636), - [sym_super] = ACTIONS(1636), - [sym_crate] = ACTIONS(1636), - [sym_metavariable] = ACTIONS(1634), - [sym_raw_string_literal] = ACTIONS(1634), - [sym_float_literal] = ACTIONS(1634), + [ts_builtin_sym_end] = ACTIONS(1656), + [sym_identifier] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1656), + [anon_sym_macro_rules_BANG] = ACTIONS(1656), + [anon_sym_LPAREN] = ACTIONS(1656), + [anon_sym_LBRACE] = ACTIONS(1656), + [anon_sym_RBRACE] = ACTIONS(1656), + [anon_sym_LBRACK] = ACTIONS(1656), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_SQUOTE] = ACTIONS(1658), + [anon_sym_async] = ACTIONS(1658), + [anon_sym_break] = ACTIONS(1658), + [anon_sym_const] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(1658), + [anon_sym_default] = ACTIONS(1658), + [anon_sym_enum] = ACTIONS(1658), + [anon_sym_fn] = ACTIONS(1658), + [anon_sym_for] = ACTIONS(1658), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_impl] = ACTIONS(1658), + [anon_sym_let] = ACTIONS(1658), + [anon_sym_loop] = ACTIONS(1658), + [anon_sym_match] = ACTIONS(1658), + [anon_sym_mod] = ACTIONS(1658), + [anon_sym_pub] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_static] = ACTIONS(1658), + [anon_sym_struct] = ACTIONS(1658), + [anon_sym_trait] = ACTIONS(1658), + [anon_sym_type] = ACTIONS(1658), + [anon_sym_union] = ACTIONS(1658), + [anon_sym_unsafe] = ACTIONS(1658), + [anon_sym_use] = ACTIONS(1658), + [anon_sym_while] = ACTIONS(1658), + [anon_sym_POUND] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_extern] = ACTIONS(1658), + [anon_sym_LT] = ACTIONS(1656), + [anon_sym_COLON_COLON] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_DOT_DOT] = ACTIONS(1656), + [anon_sym_DASH] = ACTIONS(1656), + [anon_sym_PIPE] = ACTIONS(1656), + [anon_sym_yield] = ACTIONS(1658), + [anon_sym_move] = ACTIONS(1658), + [sym_integer_literal] = ACTIONS(1656), + [aux_sym_string_literal_token1] = ACTIONS(1656), + [sym_char_literal] = ACTIONS(1656), + [anon_sym_true] = ACTIONS(1658), + [anon_sym_false] = ACTIONS(1658), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1658), + [sym_super] = ACTIONS(1658), + [sym_crate] = ACTIONS(1658), + [sym_metavariable] = ACTIONS(1656), + [sym_raw_string_literal] = ACTIONS(1656), + [sym_float_literal] = ACTIONS(1656), [sym_block_comment] = ACTIONS(3), }, [396] = { - [ts_builtin_sym_end] = ACTIONS(1638), - [sym_identifier] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_macro_rules_BANG] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1638), - [anon_sym_LBRACE] = ACTIONS(1638), - [anon_sym_RBRACE] = ACTIONS(1638), - [anon_sym_LBRACK] = ACTIONS(1638), - [anon_sym_STAR] = ACTIONS(1638), - [anon_sym_u8] = ACTIONS(1640), - [anon_sym_i8] = ACTIONS(1640), - [anon_sym_u16] = ACTIONS(1640), - [anon_sym_i16] = ACTIONS(1640), - [anon_sym_u32] = ACTIONS(1640), - [anon_sym_i32] = ACTIONS(1640), - [anon_sym_u64] = ACTIONS(1640), - [anon_sym_i64] = ACTIONS(1640), - [anon_sym_u128] = ACTIONS(1640), - [anon_sym_i128] = ACTIONS(1640), - [anon_sym_isize] = ACTIONS(1640), - [anon_sym_usize] = ACTIONS(1640), - [anon_sym_f32] = ACTIONS(1640), - [anon_sym_f64] = ACTIONS(1640), - [anon_sym_bool] = ACTIONS(1640), - [anon_sym_str] = ACTIONS(1640), - [anon_sym_char] = ACTIONS(1640), - [anon_sym_SQUOTE] = ACTIONS(1640), - [anon_sym_async] = ACTIONS(1640), - [anon_sym_break] = ACTIONS(1640), - [anon_sym_const] = ACTIONS(1640), - [anon_sym_continue] = ACTIONS(1640), - [anon_sym_default] = ACTIONS(1640), - [anon_sym_enum] = ACTIONS(1640), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1640), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_impl] = ACTIONS(1640), - [anon_sym_let] = ACTIONS(1640), - [anon_sym_loop] = ACTIONS(1640), - [anon_sym_match] = ACTIONS(1640), - [anon_sym_mod] = ACTIONS(1640), - [anon_sym_pub] = ACTIONS(1640), - [anon_sym_return] = ACTIONS(1640), - [anon_sym_static] = ACTIONS(1640), - [anon_sym_struct] = ACTIONS(1640), - [anon_sym_trait] = ACTIONS(1640), - [anon_sym_type] = ACTIONS(1640), - [anon_sym_union] = ACTIONS(1640), - [anon_sym_unsafe] = ACTIONS(1640), - [anon_sym_use] = ACTIONS(1640), - [anon_sym_while] = ACTIONS(1640), - [anon_sym_POUND] = ACTIONS(1638), - [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_extern] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1638), - [anon_sym_COLON_COLON] = ACTIONS(1638), - [anon_sym_AMP] = ACTIONS(1638), - [anon_sym_DOT_DOT] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_PIPE] = ACTIONS(1638), - [anon_sym_yield] = ACTIONS(1640), - [anon_sym_move] = ACTIONS(1640), - [sym_integer_literal] = ACTIONS(1638), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1638), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1640), - [sym_super] = ACTIONS(1640), - [sym_crate] = ACTIONS(1640), - [sym_metavariable] = ACTIONS(1638), - [sym_raw_string_literal] = ACTIONS(1638), - [sym_float_literal] = ACTIONS(1638), + [ts_builtin_sym_end] = ACTIONS(1660), + [sym_identifier] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1660), + [anon_sym_macro_rules_BANG] = ACTIONS(1660), + [anon_sym_LPAREN] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_RBRACE] = ACTIONS(1660), + [anon_sym_LBRACK] = ACTIONS(1660), + [anon_sym_STAR] = ACTIONS(1660), + [anon_sym_u8] = ACTIONS(1662), + [anon_sym_i8] = ACTIONS(1662), + [anon_sym_u16] = ACTIONS(1662), + [anon_sym_i16] = ACTIONS(1662), + [anon_sym_u32] = ACTIONS(1662), + [anon_sym_i32] = ACTIONS(1662), + [anon_sym_u64] = ACTIONS(1662), + [anon_sym_i64] = ACTIONS(1662), + [anon_sym_u128] = ACTIONS(1662), + [anon_sym_i128] = ACTIONS(1662), + [anon_sym_isize] = ACTIONS(1662), + [anon_sym_usize] = ACTIONS(1662), + [anon_sym_f32] = ACTIONS(1662), + [anon_sym_f64] = ACTIONS(1662), + [anon_sym_bool] = ACTIONS(1662), + [anon_sym_str] = ACTIONS(1662), + [anon_sym_char] = ACTIONS(1662), + [anon_sym_SQUOTE] = ACTIONS(1662), + [anon_sym_async] = ACTIONS(1662), + [anon_sym_break] = ACTIONS(1662), + [anon_sym_const] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(1662), + [anon_sym_default] = ACTIONS(1662), + [anon_sym_enum] = ACTIONS(1662), + [anon_sym_fn] = ACTIONS(1662), + [anon_sym_for] = ACTIONS(1662), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_impl] = ACTIONS(1662), + [anon_sym_let] = ACTIONS(1662), + [anon_sym_loop] = ACTIONS(1662), + [anon_sym_match] = ACTIONS(1662), + [anon_sym_mod] = ACTIONS(1662), + [anon_sym_pub] = ACTIONS(1662), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_static] = ACTIONS(1662), + [anon_sym_struct] = ACTIONS(1662), + [anon_sym_trait] = ACTIONS(1662), + [anon_sym_type] = ACTIONS(1662), + [anon_sym_union] = ACTIONS(1662), + [anon_sym_unsafe] = ACTIONS(1662), + [anon_sym_use] = ACTIONS(1662), + [anon_sym_while] = ACTIONS(1662), + [anon_sym_POUND] = ACTIONS(1660), + [anon_sym_BANG] = ACTIONS(1660), + [anon_sym_extern] = ACTIONS(1662), + [anon_sym_LT] = ACTIONS(1660), + [anon_sym_COLON_COLON] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1660), + [anon_sym_DOT_DOT] = ACTIONS(1660), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_PIPE] = ACTIONS(1660), + [anon_sym_yield] = ACTIONS(1662), + [anon_sym_move] = ACTIONS(1662), + [sym_integer_literal] = ACTIONS(1660), + [aux_sym_string_literal_token1] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), + [anon_sym_true] = ACTIONS(1662), + [anon_sym_false] = ACTIONS(1662), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1662), + [sym_super] = ACTIONS(1662), + [sym_crate] = ACTIONS(1662), + [sym_metavariable] = ACTIONS(1660), + [sym_raw_string_literal] = ACTIONS(1660), + [sym_float_literal] = ACTIONS(1660), [sym_block_comment] = ACTIONS(3), }, [397] = { - [ts_builtin_sym_end] = ACTIONS(1642), - [sym_identifier] = ACTIONS(1644), - [anon_sym_SEMI] = ACTIONS(1642), - [anon_sym_macro_rules_BANG] = ACTIONS(1642), - [anon_sym_LPAREN] = ACTIONS(1642), - [anon_sym_LBRACE] = ACTIONS(1642), - [anon_sym_RBRACE] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1642), - [anon_sym_STAR] = ACTIONS(1642), - [anon_sym_u8] = ACTIONS(1644), - [anon_sym_i8] = ACTIONS(1644), - [anon_sym_u16] = ACTIONS(1644), - [anon_sym_i16] = ACTIONS(1644), - [anon_sym_u32] = ACTIONS(1644), - [anon_sym_i32] = ACTIONS(1644), - [anon_sym_u64] = ACTIONS(1644), - [anon_sym_i64] = ACTIONS(1644), - [anon_sym_u128] = ACTIONS(1644), - [anon_sym_i128] = ACTIONS(1644), - [anon_sym_isize] = ACTIONS(1644), - [anon_sym_usize] = ACTIONS(1644), - [anon_sym_f32] = ACTIONS(1644), - [anon_sym_f64] = ACTIONS(1644), - [anon_sym_bool] = ACTIONS(1644), - [anon_sym_str] = ACTIONS(1644), - [anon_sym_char] = ACTIONS(1644), - [anon_sym_SQUOTE] = ACTIONS(1644), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_break] = ACTIONS(1644), - [anon_sym_const] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(1644), - [anon_sym_default] = ACTIONS(1644), - [anon_sym_enum] = ACTIONS(1644), - [anon_sym_fn] = ACTIONS(1644), - [anon_sym_for] = ACTIONS(1644), - [anon_sym_if] = ACTIONS(1644), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_let] = ACTIONS(1644), - [anon_sym_loop] = ACTIONS(1644), - [anon_sym_match] = ACTIONS(1644), - [anon_sym_mod] = ACTIONS(1644), - [anon_sym_pub] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_static] = ACTIONS(1644), - [anon_sym_struct] = ACTIONS(1644), - [anon_sym_trait] = ACTIONS(1644), - [anon_sym_type] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1644), - [anon_sym_unsafe] = ACTIONS(1644), - [anon_sym_use] = ACTIONS(1644), - [anon_sym_while] = ACTIONS(1644), - [anon_sym_POUND] = ACTIONS(1642), - [anon_sym_BANG] = ACTIONS(1642), - [anon_sym_extern] = ACTIONS(1644), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_COLON_COLON] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1642), - [anon_sym_DOT_DOT] = ACTIONS(1642), - [anon_sym_DASH] = ACTIONS(1642), - [anon_sym_PIPE] = ACTIONS(1642), - [anon_sym_yield] = ACTIONS(1644), - [anon_sym_move] = ACTIONS(1644), - [sym_integer_literal] = ACTIONS(1642), - [aux_sym_string_literal_token1] = ACTIONS(1642), - [sym_char_literal] = ACTIONS(1642), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1644), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1644), - [sym_super] = ACTIONS(1644), - [sym_crate] = ACTIONS(1644), - [sym_metavariable] = ACTIONS(1642), - [sym_raw_string_literal] = ACTIONS(1642), - [sym_float_literal] = ACTIONS(1642), + [ts_builtin_sym_end] = ACTIONS(1664), + [sym_identifier] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1664), + [anon_sym_macro_rules_BANG] = ACTIONS(1664), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_RBRACE] = ACTIONS(1664), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_STAR] = ACTIONS(1664), + [anon_sym_u8] = ACTIONS(1666), + [anon_sym_i8] = ACTIONS(1666), + [anon_sym_u16] = ACTIONS(1666), + [anon_sym_i16] = ACTIONS(1666), + [anon_sym_u32] = ACTIONS(1666), + [anon_sym_i32] = ACTIONS(1666), + [anon_sym_u64] = ACTIONS(1666), + [anon_sym_i64] = ACTIONS(1666), + [anon_sym_u128] = ACTIONS(1666), + [anon_sym_i128] = ACTIONS(1666), + [anon_sym_isize] = ACTIONS(1666), + [anon_sym_usize] = ACTIONS(1666), + [anon_sym_f32] = ACTIONS(1666), + [anon_sym_f64] = ACTIONS(1666), + [anon_sym_bool] = ACTIONS(1666), + [anon_sym_str] = ACTIONS(1666), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_SQUOTE] = ACTIONS(1666), + [anon_sym_async] = ACTIONS(1666), + [anon_sym_break] = ACTIONS(1666), + [anon_sym_const] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(1666), + [anon_sym_default] = ACTIONS(1666), + [anon_sym_enum] = ACTIONS(1666), + [anon_sym_fn] = ACTIONS(1666), + [anon_sym_for] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_impl] = ACTIONS(1666), + [anon_sym_let] = ACTIONS(1666), + [anon_sym_loop] = ACTIONS(1666), + [anon_sym_match] = ACTIONS(1666), + [anon_sym_mod] = ACTIONS(1666), + [anon_sym_pub] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_static] = ACTIONS(1666), + [anon_sym_struct] = ACTIONS(1666), + [anon_sym_trait] = ACTIONS(1666), + [anon_sym_type] = ACTIONS(1666), + [anon_sym_union] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1666), + [anon_sym_use] = ACTIONS(1666), + [anon_sym_while] = ACTIONS(1666), + [anon_sym_POUND] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1664), + [anon_sym_extern] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1664), + [anon_sym_COLON_COLON] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_DOT_DOT] = ACTIONS(1664), + [anon_sym_DASH] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_yield] = ACTIONS(1666), + [anon_sym_move] = ACTIONS(1666), + [sym_integer_literal] = ACTIONS(1664), + [aux_sym_string_literal_token1] = ACTIONS(1664), + [sym_char_literal] = ACTIONS(1664), + [anon_sym_true] = ACTIONS(1666), + [anon_sym_false] = ACTIONS(1666), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1666), + [sym_super] = ACTIONS(1666), + [sym_crate] = ACTIONS(1666), + [sym_metavariable] = ACTIONS(1664), + [sym_raw_string_literal] = ACTIONS(1664), + [sym_float_literal] = ACTIONS(1664), [sym_block_comment] = ACTIONS(3), }, [398] = { - [ts_builtin_sym_end] = ACTIONS(1646), - [sym_identifier] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1646), - [anon_sym_macro_rules_BANG] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(1646), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1646), - [anon_sym_LBRACK] = ACTIONS(1646), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_u8] = ACTIONS(1648), - [anon_sym_i8] = ACTIONS(1648), - [anon_sym_u16] = ACTIONS(1648), - [anon_sym_i16] = ACTIONS(1648), - [anon_sym_u32] = ACTIONS(1648), - [anon_sym_i32] = ACTIONS(1648), - [anon_sym_u64] = ACTIONS(1648), - [anon_sym_i64] = ACTIONS(1648), - [anon_sym_u128] = ACTIONS(1648), - [anon_sym_i128] = ACTIONS(1648), - [anon_sym_isize] = ACTIONS(1648), - [anon_sym_usize] = ACTIONS(1648), - [anon_sym_f32] = ACTIONS(1648), - [anon_sym_f64] = ACTIONS(1648), - [anon_sym_bool] = ACTIONS(1648), - [anon_sym_str] = ACTIONS(1648), - [anon_sym_char] = ACTIONS(1648), - [anon_sym_SQUOTE] = ACTIONS(1648), - [anon_sym_async] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_default] = ACTIONS(1648), - [anon_sym_enum] = ACTIONS(1648), - [anon_sym_fn] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_impl] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_mod] = ACTIONS(1648), - [anon_sym_pub] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_static] = ACTIONS(1648), - [anon_sym_struct] = ACTIONS(1648), - [anon_sym_trait] = ACTIONS(1648), - [anon_sym_type] = ACTIONS(1648), - [anon_sym_union] = ACTIONS(1648), - [anon_sym_unsafe] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1646), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_LT] = ACTIONS(1646), - [anon_sym_COLON_COLON] = ACTIONS(1646), - [anon_sym_AMP] = ACTIONS(1646), - [anon_sym_DOT_DOT] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1646), - [anon_sym_PIPE] = ACTIONS(1646), - [anon_sym_yield] = ACTIONS(1648), - [anon_sym_move] = ACTIONS(1648), - [sym_integer_literal] = ACTIONS(1646), - [aux_sym_string_literal_token1] = ACTIONS(1646), - [sym_char_literal] = ACTIONS(1646), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1648), - [sym_super] = ACTIONS(1648), - [sym_crate] = ACTIONS(1648), - [sym_metavariable] = ACTIONS(1646), - [sym_raw_string_literal] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1646), + [ts_builtin_sym_end] = ACTIONS(1668), + [sym_identifier] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_macro_rules_BANG] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_STAR] = ACTIONS(1668), + [anon_sym_u8] = ACTIONS(1670), + [anon_sym_i8] = ACTIONS(1670), + [anon_sym_u16] = ACTIONS(1670), + [anon_sym_i16] = ACTIONS(1670), + [anon_sym_u32] = ACTIONS(1670), + [anon_sym_i32] = ACTIONS(1670), + [anon_sym_u64] = ACTIONS(1670), + [anon_sym_i64] = ACTIONS(1670), + [anon_sym_u128] = ACTIONS(1670), + [anon_sym_i128] = ACTIONS(1670), + [anon_sym_isize] = ACTIONS(1670), + [anon_sym_usize] = ACTIONS(1670), + [anon_sym_f32] = ACTIONS(1670), + [anon_sym_f64] = ACTIONS(1670), + [anon_sym_bool] = ACTIONS(1670), + [anon_sym_str] = ACTIONS(1670), + [anon_sym_char] = ACTIONS(1670), + [anon_sym_SQUOTE] = ACTIONS(1670), + [anon_sym_async] = ACTIONS(1670), + [anon_sym_break] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1670), + [anon_sym_enum] = ACTIONS(1670), + [anon_sym_fn] = ACTIONS(1670), + [anon_sym_for] = ACTIONS(1670), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_impl] = ACTIONS(1670), + [anon_sym_let] = ACTIONS(1670), + [anon_sym_loop] = ACTIONS(1670), + [anon_sym_match] = ACTIONS(1670), + [anon_sym_mod] = ACTIONS(1670), + [anon_sym_pub] = ACTIONS(1670), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(1670), + [anon_sym_struct] = ACTIONS(1670), + [anon_sym_trait] = ACTIONS(1670), + [anon_sym_type] = ACTIONS(1670), + [anon_sym_union] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1670), + [anon_sym_use] = ACTIONS(1670), + [anon_sym_while] = ACTIONS(1670), + [anon_sym_POUND] = ACTIONS(1668), + [anon_sym_BANG] = ACTIONS(1668), + [anon_sym_extern] = ACTIONS(1670), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_COLON_COLON] = ACTIONS(1668), + [anon_sym_AMP] = ACTIONS(1668), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DASH] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_yield] = ACTIONS(1670), + [anon_sym_move] = ACTIONS(1670), + [sym_integer_literal] = ACTIONS(1668), + [aux_sym_string_literal_token1] = ACTIONS(1668), + [sym_char_literal] = ACTIONS(1668), + [anon_sym_true] = ACTIONS(1670), + [anon_sym_false] = ACTIONS(1670), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1670), + [sym_super] = ACTIONS(1670), + [sym_crate] = ACTIONS(1670), + [sym_metavariable] = ACTIONS(1668), + [sym_raw_string_literal] = ACTIONS(1668), + [sym_float_literal] = ACTIONS(1668), [sym_block_comment] = ACTIONS(3), }, [399] = { - [ts_builtin_sym_end] = ACTIONS(1650), - [sym_identifier] = ACTIONS(1652), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_macro_rules_BANG] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1650), - [anon_sym_u8] = ACTIONS(1652), - [anon_sym_i8] = ACTIONS(1652), - [anon_sym_u16] = ACTIONS(1652), - [anon_sym_i16] = ACTIONS(1652), - [anon_sym_u32] = ACTIONS(1652), - [anon_sym_i32] = ACTIONS(1652), - [anon_sym_u64] = ACTIONS(1652), - [anon_sym_i64] = ACTIONS(1652), - [anon_sym_u128] = ACTIONS(1652), - [anon_sym_i128] = ACTIONS(1652), - [anon_sym_isize] = ACTIONS(1652), - [anon_sym_usize] = ACTIONS(1652), - [anon_sym_f32] = ACTIONS(1652), - [anon_sym_f64] = ACTIONS(1652), - [anon_sym_bool] = ACTIONS(1652), - [anon_sym_str] = ACTIONS(1652), - [anon_sym_char] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1652), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_break] = ACTIONS(1652), - [anon_sym_const] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(1652), - [anon_sym_default] = ACTIONS(1652), - [anon_sym_enum] = ACTIONS(1652), - [anon_sym_fn] = ACTIONS(1652), - [anon_sym_for] = ACTIONS(1652), - [anon_sym_if] = ACTIONS(1652), - [anon_sym_impl] = ACTIONS(1652), - [anon_sym_let] = ACTIONS(1652), - [anon_sym_loop] = ACTIONS(1652), - [anon_sym_match] = ACTIONS(1652), - [anon_sym_mod] = ACTIONS(1652), - [anon_sym_pub] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_static] = ACTIONS(1652), - [anon_sym_struct] = ACTIONS(1652), - [anon_sym_trait] = ACTIONS(1652), - [anon_sym_type] = ACTIONS(1652), - [anon_sym_union] = ACTIONS(1652), - [anon_sym_unsafe] = ACTIONS(1652), - [anon_sym_use] = ACTIONS(1652), - [anon_sym_while] = ACTIONS(1652), - [anon_sym_POUND] = ACTIONS(1650), - [anon_sym_BANG] = ACTIONS(1650), - [anon_sym_extern] = ACTIONS(1652), - [anon_sym_LT] = ACTIONS(1650), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_yield] = ACTIONS(1652), - [anon_sym_move] = ACTIONS(1652), - [sym_integer_literal] = ACTIONS(1650), - [aux_sym_string_literal_token1] = ACTIONS(1650), - [sym_char_literal] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1652), - [anon_sym_false] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1652), - [sym_super] = ACTIONS(1652), - [sym_crate] = ACTIONS(1652), - [sym_metavariable] = ACTIONS(1650), - [sym_raw_string_literal] = ACTIONS(1650), - [sym_float_literal] = ACTIONS(1650), + [ts_builtin_sym_end] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_macro_rules_BANG] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1672), + [anon_sym_u8] = ACTIONS(1674), + [anon_sym_i8] = ACTIONS(1674), + [anon_sym_u16] = ACTIONS(1674), + [anon_sym_i16] = ACTIONS(1674), + [anon_sym_u32] = ACTIONS(1674), + [anon_sym_i32] = ACTIONS(1674), + [anon_sym_u64] = ACTIONS(1674), + [anon_sym_i64] = ACTIONS(1674), + [anon_sym_u128] = ACTIONS(1674), + [anon_sym_i128] = ACTIONS(1674), + [anon_sym_isize] = ACTIONS(1674), + [anon_sym_usize] = ACTIONS(1674), + [anon_sym_f32] = ACTIONS(1674), + [anon_sym_f64] = ACTIONS(1674), + [anon_sym_bool] = ACTIONS(1674), + [anon_sym_str] = ACTIONS(1674), + [anon_sym_char] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_async] = ACTIONS(1674), + [anon_sym_break] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(1674), + [anon_sym_default] = ACTIONS(1674), + [anon_sym_enum] = ACTIONS(1674), + [anon_sym_fn] = ACTIONS(1674), + [anon_sym_for] = ACTIONS(1674), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_impl] = ACTIONS(1674), + [anon_sym_let] = ACTIONS(1674), + [anon_sym_loop] = ACTIONS(1674), + [anon_sym_match] = ACTIONS(1674), + [anon_sym_mod] = ACTIONS(1674), + [anon_sym_pub] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1674), + [anon_sym_struct] = ACTIONS(1674), + [anon_sym_trait] = ACTIONS(1674), + [anon_sym_type] = ACTIONS(1674), + [anon_sym_union] = ACTIONS(1674), + [anon_sym_unsafe] = ACTIONS(1674), + [anon_sym_use] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_POUND] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_COLON_COLON] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1672), + [anon_sym_DOT_DOT] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_yield] = ACTIONS(1674), + [anon_sym_move] = ACTIONS(1674), + [sym_integer_literal] = ACTIONS(1672), + [aux_sym_string_literal_token1] = ACTIONS(1672), + [sym_char_literal] = ACTIONS(1672), + [anon_sym_true] = ACTIONS(1674), + [anon_sym_false] = ACTIONS(1674), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1674), + [sym_super] = ACTIONS(1674), + [sym_crate] = ACTIONS(1674), + [sym_metavariable] = ACTIONS(1672), + [sym_raw_string_literal] = ACTIONS(1672), + [sym_float_literal] = ACTIONS(1672), [sym_block_comment] = ACTIONS(3), }, [400] = { - [ts_builtin_sym_end] = ACTIONS(1654), - [sym_identifier] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1654), - [anon_sym_macro_rules_BANG] = ACTIONS(1654), - [anon_sym_LPAREN] = ACTIONS(1654), - [anon_sym_LBRACE] = ACTIONS(1654), - [anon_sym_RBRACE] = ACTIONS(1654), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_u8] = ACTIONS(1656), - [anon_sym_i8] = ACTIONS(1656), - [anon_sym_u16] = ACTIONS(1656), - [anon_sym_i16] = ACTIONS(1656), - [anon_sym_u32] = ACTIONS(1656), - [anon_sym_i32] = ACTIONS(1656), - [anon_sym_u64] = ACTIONS(1656), - [anon_sym_i64] = ACTIONS(1656), - [anon_sym_u128] = ACTIONS(1656), - [anon_sym_i128] = ACTIONS(1656), - [anon_sym_isize] = ACTIONS(1656), - [anon_sym_usize] = ACTIONS(1656), - [anon_sym_f32] = ACTIONS(1656), - [anon_sym_f64] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_str] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym_SQUOTE] = ACTIONS(1656), - [anon_sym_async] = ACTIONS(1656), - [anon_sym_break] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1656), - [anon_sym_continue] = ACTIONS(1656), - [anon_sym_default] = ACTIONS(1656), - [anon_sym_enum] = ACTIONS(1656), - [anon_sym_fn] = ACTIONS(1656), - [anon_sym_for] = ACTIONS(1656), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_impl] = ACTIONS(1656), - [anon_sym_let] = ACTIONS(1656), - [anon_sym_loop] = ACTIONS(1656), - [anon_sym_match] = ACTIONS(1656), - [anon_sym_mod] = ACTIONS(1656), - [anon_sym_pub] = ACTIONS(1656), - [anon_sym_return] = ACTIONS(1656), - [anon_sym_static] = ACTIONS(1656), - [anon_sym_struct] = ACTIONS(1656), - [anon_sym_trait] = ACTIONS(1656), - [anon_sym_type] = ACTIONS(1656), - [anon_sym_union] = ACTIONS(1656), - [anon_sym_unsafe] = ACTIONS(1656), - [anon_sym_use] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1656), - [anon_sym_POUND] = ACTIONS(1654), - [anon_sym_BANG] = ACTIONS(1654), - [anon_sym_extern] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(1654), - [anon_sym_COLON_COLON] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1654), - [anon_sym_DOT_DOT] = ACTIONS(1654), - [anon_sym_DASH] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1654), - [anon_sym_yield] = ACTIONS(1656), - [anon_sym_move] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(1654), - [aux_sym_string_literal_token1] = ACTIONS(1654), - [sym_char_literal] = ACTIONS(1654), - [anon_sym_true] = ACTIONS(1656), - [anon_sym_false] = ACTIONS(1656), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1656), - [sym_super] = ACTIONS(1656), - [sym_crate] = ACTIONS(1656), - [sym_metavariable] = ACTIONS(1654), - [sym_raw_string_literal] = ACTIONS(1654), - [sym_float_literal] = ACTIONS(1654), + [ts_builtin_sym_end] = ACTIONS(1676), + [sym_identifier] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_macro_rules_BANG] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1676), + [anon_sym_u8] = ACTIONS(1678), + [anon_sym_i8] = ACTIONS(1678), + [anon_sym_u16] = ACTIONS(1678), + [anon_sym_i16] = ACTIONS(1678), + [anon_sym_u32] = ACTIONS(1678), + [anon_sym_i32] = ACTIONS(1678), + [anon_sym_u64] = ACTIONS(1678), + [anon_sym_i64] = ACTIONS(1678), + [anon_sym_u128] = ACTIONS(1678), + [anon_sym_i128] = ACTIONS(1678), + [anon_sym_isize] = ACTIONS(1678), + [anon_sym_usize] = ACTIONS(1678), + [anon_sym_f32] = ACTIONS(1678), + [anon_sym_f64] = ACTIONS(1678), + [anon_sym_bool] = ACTIONS(1678), + [anon_sym_str] = ACTIONS(1678), + [anon_sym_char] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_async] = ACTIONS(1678), + [anon_sym_break] = ACTIONS(1678), + [anon_sym_const] = ACTIONS(1678), + [anon_sym_continue] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_enum] = ACTIONS(1678), + [anon_sym_fn] = ACTIONS(1678), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_impl] = ACTIONS(1678), + [anon_sym_let] = ACTIONS(1678), + [anon_sym_loop] = ACTIONS(1678), + [anon_sym_match] = ACTIONS(1678), + [anon_sym_mod] = ACTIONS(1678), + [anon_sym_pub] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1678), + [anon_sym_struct] = ACTIONS(1678), + [anon_sym_trait] = ACTIONS(1678), + [anon_sym_type] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_unsafe] = ACTIONS(1678), + [anon_sym_use] = ACTIONS(1678), + [anon_sym_while] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1678), + [anon_sym_LT] = ACTIONS(1676), + [anon_sym_COLON_COLON] = ACTIONS(1676), + [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_DOT_DOT] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_yield] = ACTIONS(1678), + [anon_sym_move] = ACTIONS(1678), + [sym_integer_literal] = ACTIONS(1676), + [aux_sym_string_literal_token1] = ACTIONS(1676), + [sym_char_literal] = ACTIONS(1676), + [anon_sym_true] = ACTIONS(1678), + [anon_sym_false] = ACTIONS(1678), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1678), + [sym_super] = ACTIONS(1678), + [sym_crate] = ACTIONS(1678), + [sym_metavariable] = ACTIONS(1676), + [sym_raw_string_literal] = ACTIONS(1676), + [sym_float_literal] = ACTIONS(1676), [sym_block_comment] = ACTIONS(3), }, [401] = { - [ts_builtin_sym_end] = ACTIONS(1658), - [sym_identifier] = ACTIONS(1660), - [anon_sym_SEMI] = ACTIONS(1658), - [anon_sym_macro_rules_BANG] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_u8] = ACTIONS(1660), - [anon_sym_i8] = ACTIONS(1660), - [anon_sym_u16] = ACTIONS(1660), - [anon_sym_i16] = ACTIONS(1660), - [anon_sym_u32] = ACTIONS(1660), - [anon_sym_i32] = ACTIONS(1660), - [anon_sym_u64] = ACTIONS(1660), - [anon_sym_i64] = ACTIONS(1660), - [anon_sym_u128] = ACTIONS(1660), - [anon_sym_i128] = ACTIONS(1660), - [anon_sym_isize] = ACTIONS(1660), - [anon_sym_usize] = ACTIONS(1660), - [anon_sym_f32] = ACTIONS(1660), - [anon_sym_f64] = ACTIONS(1660), - [anon_sym_bool] = ACTIONS(1660), - [anon_sym_str] = ACTIONS(1660), - [anon_sym_char] = ACTIONS(1660), - [anon_sym_SQUOTE] = ACTIONS(1660), - [anon_sym_async] = ACTIONS(1660), - [anon_sym_break] = ACTIONS(1660), - [anon_sym_const] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(1660), - [anon_sym_default] = ACTIONS(1660), - [anon_sym_enum] = ACTIONS(1660), - [anon_sym_fn] = ACTIONS(1660), - [anon_sym_for] = ACTIONS(1660), - [anon_sym_if] = ACTIONS(1660), - [anon_sym_impl] = ACTIONS(1660), - [anon_sym_let] = ACTIONS(1660), - [anon_sym_loop] = ACTIONS(1660), - [anon_sym_match] = ACTIONS(1660), - [anon_sym_mod] = ACTIONS(1660), - [anon_sym_pub] = ACTIONS(1660), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_static] = ACTIONS(1660), - [anon_sym_struct] = ACTIONS(1660), - [anon_sym_trait] = ACTIONS(1660), - [anon_sym_type] = ACTIONS(1660), - [anon_sym_union] = ACTIONS(1660), - [anon_sym_unsafe] = ACTIONS(1660), - [anon_sym_use] = ACTIONS(1660), - [anon_sym_while] = ACTIONS(1660), - [anon_sym_POUND] = ACTIONS(1658), - [anon_sym_BANG] = ACTIONS(1658), - [anon_sym_extern] = ACTIONS(1660), - [anon_sym_LT] = ACTIONS(1658), - [anon_sym_COLON_COLON] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_DOT_DOT] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PIPE] = ACTIONS(1658), - [anon_sym_yield] = ACTIONS(1660), - [anon_sym_move] = ACTIONS(1660), - [sym_integer_literal] = ACTIONS(1658), - [aux_sym_string_literal_token1] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), - [anon_sym_true] = ACTIONS(1660), - [anon_sym_false] = ACTIONS(1660), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1660), - [sym_super] = ACTIONS(1660), - [sym_crate] = ACTIONS(1660), - [sym_metavariable] = ACTIONS(1658), - [sym_raw_string_literal] = ACTIONS(1658), - [sym_float_literal] = ACTIONS(1658), + [ts_builtin_sym_end] = ACTIONS(1680), + [sym_identifier] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_macro_rules_BANG] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1680), + [anon_sym_u8] = ACTIONS(1682), + [anon_sym_i8] = ACTIONS(1682), + [anon_sym_u16] = ACTIONS(1682), + [anon_sym_i16] = ACTIONS(1682), + [anon_sym_u32] = ACTIONS(1682), + [anon_sym_i32] = ACTIONS(1682), + [anon_sym_u64] = ACTIONS(1682), + [anon_sym_i64] = ACTIONS(1682), + [anon_sym_u128] = ACTIONS(1682), + [anon_sym_i128] = ACTIONS(1682), + [anon_sym_isize] = ACTIONS(1682), + [anon_sym_usize] = ACTIONS(1682), + [anon_sym_f32] = ACTIONS(1682), + [anon_sym_f64] = ACTIONS(1682), + [anon_sym_bool] = ACTIONS(1682), + [anon_sym_str] = ACTIONS(1682), + [anon_sym_char] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1682), + [anon_sym_async] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_const] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_default] = ACTIONS(1682), + [anon_sym_enum] = ACTIONS(1682), + [anon_sym_fn] = ACTIONS(1682), + [anon_sym_for] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_impl] = ACTIONS(1682), + [anon_sym_let] = ACTIONS(1682), + [anon_sym_loop] = ACTIONS(1682), + [anon_sym_match] = ACTIONS(1682), + [anon_sym_mod] = ACTIONS(1682), + [anon_sym_pub] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_static] = ACTIONS(1682), + [anon_sym_struct] = ACTIONS(1682), + [anon_sym_trait] = ACTIONS(1682), + [anon_sym_type] = ACTIONS(1682), + [anon_sym_union] = ACTIONS(1682), + [anon_sym_unsafe] = ACTIONS(1682), + [anon_sym_use] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_POUND] = ACTIONS(1680), + [anon_sym_BANG] = ACTIONS(1680), + [anon_sym_extern] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(1680), + [anon_sym_COLON_COLON] = ACTIONS(1680), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_DOT_DOT] = ACTIONS(1680), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1680), + [anon_sym_yield] = ACTIONS(1682), + [anon_sym_move] = ACTIONS(1682), + [sym_integer_literal] = ACTIONS(1680), + [aux_sym_string_literal_token1] = ACTIONS(1680), + [sym_char_literal] = ACTIONS(1680), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1682), + [sym_super] = ACTIONS(1682), + [sym_crate] = ACTIONS(1682), + [sym_metavariable] = ACTIONS(1680), + [sym_raw_string_literal] = ACTIONS(1680), + [sym_float_literal] = ACTIONS(1680), [sym_block_comment] = ACTIONS(3), }, [402] = { - [ts_builtin_sym_end] = ACTIONS(1662), - [sym_identifier] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym_macro_rules_BANG] = ACTIONS(1662), - [anon_sym_LPAREN] = ACTIONS(1662), - [anon_sym_LBRACE] = ACTIONS(1662), - [anon_sym_RBRACE] = ACTIONS(1662), - [anon_sym_LBRACK] = ACTIONS(1662), - [anon_sym_STAR] = ACTIONS(1662), - [anon_sym_u8] = ACTIONS(1664), - [anon_sym_i8] = ACTIONS(1664), - [anon_sym_u16] = ACTIONS(1664), - [anon_sym_i16] = ACTIONS(1664), - [anon_sym_u32] = ACTIONS(1664), - [anon_sym_i32] = ACTIONS(1664), - [anon_sym_u64] = ACTIONS(1664), - [anon_sym_i64] = ACTIONS(1664), - [anon_sym_u128] = ACTIONS(1664), - [anon_sym_i128] = ACTIONS(1664), - [anon_sym_isize] = ACTIONS(1664), - [anon_sym_usize] = ACTIONS(1664), - [anon_sym_f32] = ACTIONS(1664), - [anon_sym_f64] = ACTIONS(1664), - [anon_sym_bool] = ACTIONS(1664), - [anon_sym_str] = ACTIONS(1664), - [anon_sym_char] = ACTIONS(1664), - [anon_sym_SQUOTE] = ACTIONS(1664), - [anon_sym_async] = ACTIONS(1664), - [anon_sym_break] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1664), - [anon_sym_continue] = ACTIONS(1664), - [anon_sym_default] = ACTIONS(1664), - [anon_sym_enum] = ACTIONS(1664), - [anon_sym_fn] = ACTIONS(1664), - [anon_sym_for] = ACTIONS(1664), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_impl] = ACTIONS(1664), - [anon_sym_let] = ACTIONS(1664), - [anon_sym_loop] = ACTIONS(1664), - [anon_sym_match] = ACTIONS(1664), - [anon_sym_mod] = ACTIONS(1664), - [anon_sym_pub] = ACTIONS(1664), - [anon_sym_return] = ACTIONS(1664), - [anon_sym_static] = ACTIONS(1664), - [anon_sym_struct] = ACTIONS(1664), - [anon_sym_trait] = ACTIONS(1664), - [anon_sym_type] = ACTIONS(1664), - [anon_sym_union] = ACTIONS(1664), - [anon_sym_unsafe] = ACTIONS(1664), - [anon_sym_use] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(1662), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_extern] = ACTIONS(1664), - [anon_sym_LT] = ACTIONS(1662), - [anon_sym_COLON_COLON] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_DOT_DOT] = ACTIONS(1662), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_PIPE] = ACTIONS(1662), - [anon_sym_yield] = ACTIONS(1664), - [anon_sym_move] = ACTIONS(1664), - [sym_integer_literal] = ACTIONS(1662), - [aux_sym_string_literal_token1] = ACTIONS(1662), - [sym_char_literal] = ACTIONS(1662), - [anon_sym_true] = ACTIONS(1664), - [anon_sym_false] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1664), - [sym_super] = ACTIONS(1664), - [sym_crate] = ACTIONS(1664), - [sym_metavariable] = ACTIONS(1662), - [sym_raw_string_literal] = ACTIONS(1662), - [sym_float_literal] = ACTIONS(1662), + [ts_builtin_sym_end] = ACTIONS(1684), + [sym_identifier] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_macro_rules_BANG] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_STAR] = ACTIONS(1684), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_SQUOTE] = ACTIONS(1686), + [anon_sym_async] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_default] = ACTIONS(1686), + [anon_sym_enum] = ACTIONS(1686), + [anon_sym_fn] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_impl] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_mod] = ACTIONS(1686), + [anon_sym_pub] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_static] = ACTIONS(1686), + [anon_sym_struct] = ACTIONS(1686), + [anon_sym_trait] = ACTIONS(1686), + [anon_sym_type] = ACTIONS(1686), + [anon_sym_union] = ACTIONS(1686), + [anon_sym_unsafe] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1684), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1684), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_AMP] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PIPE] = ACTIONS(1684), + [anon_sym_yield] = ACTIONS(1686), + [anon_sym_move] = ACTIONS(1686), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1684), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1686), + [anon_sym_false] = ACTIONS(1686), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1686), + [sym_super] = ACTIONS(1686), + [sym_crate] = ACTIONS(1686), + [sym_metavariable] = ACTIONS(1684), + [sym_raw_string_literal] = ACTIONS(1684), + [sym_float_literal] = ACTIONS(1684), [sym_block_comment] = ACTIONS(3), }, [403] = { - [ts_builtin_sym_end] = ACTIONS(1666), - [sym_identifier] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1666), - [anon_sym_macro_rules_BANG] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1666), - [anon_sym_STAR] = ACTIONS(1666), - [anon_sym_u8] = ACTIONS(1668), - [anon_sym_i8] = ACTIONS(1668), - [anon_sym_u16] = ACTIONS(1668), - [anon_sym_i16] = ACTIONS(1668), - [anon_sym_u32] = ACTIONS(1668), - [anon_sym_i32] = ACTIONS(1668), - [anon_sym_u64] = ACTIONS(1668), - [anon_sym_i64] = ACTIONS(1668), - [anon_sym_u128] = ACTIONS(1668), - [anon_sym_i128] = ACTIONS(1668), - [anon_sym_isize] = ACTIONS(1668), - [anon_sym_usize] = ACTIONS(1668), - [anon_sym_f32] = ACTIONS(1668), - [anon_sym_f64] = ACTIONS(1668), - [anon_sym_bool] = ACTIONS(1668), - [anon_sym_str] = ACTIONS(1668), - [anon_sym_char] = ACTIONS(1668), - [anon_sym_SQUOTE] = ACTIONS(1668), - [anon_sym_async] = ACTIONS(1668), - [anon_sym_break] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_enum] = ACTIONS(1668), - [anon_sym_fn] = ACTIONS(1668), - [anon_sym_for] = ACTIONS(1668), - [anon_sym_if] = ACTIONS(1668), - [anon_sym_impl] = ACTIONS(1668), - [anon_sym_let] = ACTIONS(1668), - [anon_sym_loop] = ACTIONS(1668), - [anon_sym_match] = ACTIONS(1668), - [anon_sym_mod] = ACTIONS(1668), - [anon_sym_pub] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_static] = ACTIONS(1668), - [anon_sym_struct] = ACTIONS(1668), - [anon_sym_trait] = ACTIONS(1668), - [anon_sym_type] = ACTIONS(1668), - [anon_sym_union] = ACTIONS(1668), - [anon_sym_unsafe] = ACTIONS(1668), - [anon_sym_use] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1668), - [anon_sym_POUND] = ACTIONS(1666), - [anon_sym_BANG] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1668), - [anon_sym_LT] = ACTIONS(1666), - [anon_sym_COLON_COLON] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1666), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PIPE] = ACTIONS(1666), - [anon_sym_yield] = ACTIONS(1668), - [anon_sym_move] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(1666), - [aux_sym_string_literal_token1] = ACTIONS(1666), - [sym_char_literal] = ACTIONS(1666), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1668), - [sym_super] = ACTIONS(1668), - [sym_crate] = ACTIONS(1668), - [sym_metavariable] = ACTIONS(1666), - [sym_raw_string_literal] = ACTIONS(1666), - [sym_float_literal] = ACTIONS(1666), + [ts_builtin_sym_end] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_macro_rules_BANG] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_u8] = ACTIONS(1690), + [anon_sym_i8] = ACTIONS(1690), + [anon_sym_u16] = ACTIONS(1690), + [anon_sym_i16] = ACTIONS(1690), + [anon_sym_u32] = ACTIONS(1690), + [anon_sym_i32] = ACTIONS(1690), + [anon_sym_u64] = ACTIONS(1690), + [anon_sym_i64] = ACTIONS(1690), + [anon_sym_u128] = ACTIONS(1690), + [anon_sym_i128] = ACTIONS(1690), + [anon_sym_isize] = ACTIONS(1690), + [anon_sym_usize] = ACTIONS(1690), + [anon_sym_f32] = ACTIONS(1690), + [anon_sym_f64] = ACTIONS(1690), + [anon_sym_bool] = ACTIONS(1690), + [anon_sym_str] = ACTIONS(1690), + [anon_sym_char] = ACTIONS(1690), + [anon_sym_SQUOTE] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_break] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(1690), + [anon_sym_default] = ACTIONS(1690), + [anon_sym_enum] = ACTIONS(1690), + [anon_sym_fn] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1690), + [anon_sym_if] = ACTIONS(1690), + [anon_sym_impl] = ACTIONS(1690), + [anon_sym_let] = ACTIONS(1690), + [anon_sym_loop] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_mod] = ACTIONS(1690), + [anon_sym_pub] = ACTIONS(1690), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_static] = ACTIONS(1690), + [anon_sym_struct] = ACTIONS(1690), + [anon_sym_trait] = ACTIONS(1690), + [anon_sym_type] = ACTIONS(1690), + [anon_sym_union] = ACTIONS(1690), + [anon_sym_unsafe] = ACTIONS(1690), + [anon_sym_use] = ACTIONS(1690), + [anon_sym_while] = ACTIONS(1690), + [anon_sym_POUND] = ACTIONS(1688), + [anon_sym_BANG] = ACTIONS(1688), + [anon_sym_extern] = ACTIONS(1690), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_COLON_COLON] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_DOT_DOT] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_yield] = ACTIONS(1690), + [anon_sym_move] = ACTIONS(1690), + [sym_integer_literal] = ACTIONS(1688), + [aux_sym_string_literal_token1] = ACTIONS(1688), + [sym_char_literal] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1690), + [anon_sym_false] = ACTIONS(1690), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_crate] = ACTIONS(1690), + [sym_metavariable] = ACTIONS(1688), + [sym_raw_string_literal] = ACTIONS(1688), + [sym_float_literal] = ACTIONS(1688), [sym_block_comment] = ACTIONS(3), }, [404] = { - [ts_builtin_sym_end] = ACTIONS(1670), - [sym_identifier] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_macro_rules_BANG] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_STAR] = ACTIONS(1670), - [anon_sym_u8] = ACTIONS(1672), - [anon_sym_i8] = ACTIONS(1672), - [anon_sym_u16] = ACTIONS(1672), - [anon_sym_i16] = ACTIONS(1672), - [anon_sym_u32] = ACTIONS(1672), - [anon_sym_i32] = ACTIONS(1672), - [anon_sym_u64] = ACTIONS(1672), - [anon_sym_i64] = ACTIONS(1672), - [anon_sym_u128] = ACTIONS(1672), - [anon_sym_i128] = ACTIONS(1672), - [anon_sym_isize] = ACTIONS(1672), - [anon_sym_usize] = ACTIONS(1672), - [anon_sym_f32] = ACTIONS(1672), - [anon_sym_f64] = ACTIONS(1672), - [anon_sym_bool] = ACTIONS(1672), - [anon_sym_str] = ACTIONS(1672), - [anon_sym_char] = ACTIONS(1672), - [anon_sym_SQUOTE] = ACTIONS(1672), - [anon_sym_async] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_const] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_enum] = ACTIONS(1672), - [anon_sym_fn] = ACTIONS(1672), - [anon_sym_for] = ACTIONS(1672), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_impl] = ACTIONS(1672), - [anon_sym_let] = ACTIONS(1672), - [anon_sym_loop] = ACTIONS(1672), - [anon_sym_match] = ACTIONS(1672), - [anon_sym_mod] = ACTIONS(1672), - [anon_sym_pub] = ACTIONS(1672), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_struct] = ACTIONS(1672), - [anon_sym_trait] = ACTIONS(1672), - [anon_sym_type] = ACTIONS(1672), - [anon_sym_union] = ACTIONS(1672), - [anon_sym_unsafe] = ACTIONS(1672), - [anon_sym_use] = ACTIONS(1672), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(1670), - [anon_sym_BANG] = ACTIONS(1670), - [anon_sym_extern] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1670), - [anon_sym_COLON_COLON] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1670), - [anon_sym_DOT_DOT] = ACTIONS(1670), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PIPE] = ACTIONS(1670), - [anon_sym_yield] = ACTIONS(1672), - [anon_sym_move] = ACTIONS(1672), - [sym_integer_literal] = ACTIONS(1670), - [aux_sym_string_literal_token1] = ACTIONS(1670), - [sym_char_literal] = ACTIONS(1670), - [anon_sym_true] = ACTIONS(1672), - [anon_sym_false] = ACTIONS(1672), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1672), - [sym_super] = ACTIONS(1672), - [sym_crate] = ACTIONS(1672), - [sym_metavariable] = ACTIONS(1670), - [sym_raw_string_literal] = ACTIONS(1670), - [sym_float_literal] = ACTIONS(1670), + [ts_builtin_sym_end] = ACTIONS(1692), + [sym_identifier] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_macro_rules_BANG] = ACTIONS(1692), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_STAR] = ACTIONS(1692), + [anon_sym_u8] = ACTIONS(1694), + [anon_sym_i8] = ACTIONS(1694), + [anon_sym_u16] = ACTIONS(1694), + [anon_sym_i16] = ACTIONS(1694), + [anon_sym_u32] = ACTIONS(1694), + [anon_sym_i32] = ACTIONS(1694), + [anon_sym_u64] = ACTIONS(1694), + [anon_sym_i64] = ACTIONS(1694), + [anon_sym_u128] = ACTIONS(1694), + [anon_sym_i128] = ACTIONS(1694), + [anon_sym_isize] = ACTIONS(1694), + [anon_sym_usize] = ACTIONS(1694), + [anon_sym_f32] = ACTIONS(1694), + [anon_sym_f64] = ACTIONS(1694), + [anon_sym_bool] = ACTIONS(1694), + [anon_sym_str] = ACTIONS(1694), + [anon_sym_char] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1694), + [anon_sym_async] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1694), + [anon_sym_enum] = ACTIONS(1694), + [anon_sym_fn] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_impl] = ACTIONS(1694), + [anon_sym_let] = ACTIONS(1694), + [anon_sym_loop] = ACTIONS(1694), + [anon_sym_match] = ACTIONS(1694), + [anon_sym_mod] = ACTIONS(1694), + [anon_sym_pub] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_static] = ACTIONS(1694), + [anon_sym_struct] = ACTIONS(1694), + [anon_sym_trait] = ACTIONS(1694), + [anon_sym_type] = ACTIONS(1694), + [anon_sym_union] = ACTIONS(1694), + [anon_sym_unsafe] = ACTIONS(1694), + [anon_sym_use] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_POUND] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_extern] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_COLON_COLON] = ACTIONS(1692), + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_DOT_DOT] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_yield] = ACTIONS(1694), + [anon_sym_move] = ACTIONS(1694), + [sym_integer_literal] = ACTIONS(1692), + [aux_sym_string_literal_token1] = ACTIONS(1692), + [sym_char_literal] = ACTIONS(1692), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1694), + [sym_super] = ACTIONS(1694), + [sym_crate] = ACTIONS(1694), + [sym_metavariable] = ACTIONS(1692), + [sym_raw_string_literal] = ACTIONS(1692), + [sym_float_literal] = ACTIONS(1692), [sym_block_comment] = ACTIONS(3), }, [405] = { - [ts_builtin_sym_end] = ACTIONS(1674), - [sym_identifier] = ACTIONS(1676), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_macro_rules_BANG] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_STAR] = ACTIONS(1674), - [anon_sym_u8] = ACTIONS(1676), - [anon_sym_i8] = ACTIONS(1676), - [anon_sym_u16] = ACTIONS(1676), - [anon_sym_i16] = ACTIONS(1676), - [anon_sym_u32] = ACTIONS(1676), - [anon_sym_i32] = ACTIONS(1676), - [anon_sym_u64] = ACTIONS(1676), - [anon_sym_i64] = ACTIONS(1676), - [anon_sym_u128] = ACTIONS(1676), - [anon_sym_i128] = ACTIONS(1676), - [anon_sym_isize] = ACTIONS(1676), - [anon_sym_usize] = ACTIONS(1676), - [anon_sym_f32] = ACTIONS(1676), - [anon_sym_f64] = ACTIONS(1676), - [anon_sym_bool] = ACTIONS(1676), - [anon_sym_str] = ACTIONS(1676), - [anon_sym_char] = ACTIONS(1676), - [anon_sym_SQUOTE] = ACTIONS(1676), - [anon_sym_async] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(1676), - [anon_sym_default] = ACTIONS(1676), - [anon_sym_enum] = ACTIONS(1676), - [anon_sym_fn] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_impl] = ACTIONS(1676), - [anon_sym_let] = ACTIONS(1676), - [anon_sym_loop] = ACTIONS(1676), - [anon_sym_match] = ACTIONS(1676), - [anon_sym_mod] = ACTIONS(1676), - [anon_sym_pub] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_static] = ACTIONS(1676), - [anon_sym_struct] = ACTIONS(1676), - [anon_sym_trait] = ACTIONS(1676), - [anon_sym_type] = ACTIONS(1676), - [anon_sym_union] = ACTIONS(1676), - [anon_sym_unsafe] = ACTIONS(1676), - [anon_sym_use] = ACTIONS(1676), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_POUND] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_extern] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_COLON_COLON] = ACTIONS(1674), - [anon_sym_AMP] = ACTIONS(1674), - [anon_sym_DOT_DOT] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_yield] = ACTIONS(1676), - [anon_sym_move] = ACTIONS(1676), - [sym_integer_literal] = ACTIONS(1674), - [aux_sym_string_literal_token1] = ACTIONS(1674), - [sym_char_literal] = ACTIONS(1674), - [anon_sym_true] = ACTIONS(1676), - [anon_sym_false] = ACTIONS(1676), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1676), - [sym_super] = ACTIONS(1676), - [sym_crate] = ACTIONS(1676), - [sym_metavariable] = ACTIONS(1674), - [sym_raw_string_literal] = ACTIONS(1674), - [sym_float_literal] = ACTIONS(1674), + [ts_builtin_sym_end] = ACTIONS(1696), + [sym_identifier] = ACTIONS(1698), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_macro_rules_BANG] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_u8] = ACTIONS(1698), + [anon_sym_i8] = ACTIONS(1698), + [anon_sym_u16] = ACTIONS(1698), + [anon_sym_i16] = ACTIONS(1698), + [anon_sym_u32] = ACTIONS(1698), + [anon_sym_i32] = ACTIONS(1698), + [anon_sym_u64] = ACTIONS(1698), + [anon_sym_i64] = ACTIONS(1698), + [anon_sym_u128] = ACTIONS(1698), + [anon_sym_i128] = ACTIONS(1698), + [anon_sym_isize] = ACTIONS(1698), + [anon_sym_usize] = ACTIONS(1698), + [anon_sym_f32] = ACTIONS(1698), + [anon_sym_f64] = ACTIONS(1698), + [anon_sym_bool] = ACTIONS(1698), + [anon_sym_str] = ACTIONS(1698), + [anon_sym_char] = ACTIONS(1698), + [anon_sym_SQUOTE] = ACTIONS(1698), + [anon_sym_async] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(1698), + [anon_sym_default] = ACTIONS(1698), + [anon_sym_enum] = ACTIONS(1698), + [anon_sym_fn] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_impl] = ACTIONS(1698), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_loop] = ACTIONS(1698), + [anon_sym_match] = ACTIONS(1698), + [anon_sym_mod] = ACTIONS(1698), + [anon_sym_pub] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_struct] = ACTIONS(1698), + [anon_sym_trait] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_union] = ACTIONS(1698), + [anon_sym_unsafe] = ACTIONS(1698), + [anon_sym_use] = ACTIONS(1698), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_POUND] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_extern] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1696), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_yield] = ACTIONS(1698), + [anon_sym_move] = ACTIONS(1698), + [sym_integer_literal] = ACTIONS(1696), + [aux_sym_string_literal_token1] = ACTIONS(1696), + [sym_char_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1698), + [anon_sym_false] = ACTIONS(1698), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1698), + [sym_super] = ACTIONS(1698), + [sym_crate] = ACTIONS(1698), + [sym_metavariable] = ACTIONS(1696), + [sym_raw_string_literal] = ACTIONS(1696), + [sym_float_literal] = ACTIONS(1696), [sym_block_comment] = ACTIONS(3), }, [406] = { - [ts_builtin_sym_end] = ACTIONS(1678), - [sym_identifier] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_macro_rules_BANG] = ACTIONS(1678), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_STAR] = ACTIONS(1678), - [anon_sym_u8] = ACTIONS(1680), - [anon_sym_i8] = ACTIONS(1680), - [anon_sym_u16] = ACTIONS(1680), - [anon_sym_i16] = ACTIONS(1680), - [anon_sym_u32] = ACTIONS(1680), - [anon_sym_i32] = ACTIONS(1680), - [anon_sym_u64] = ACTIONS(1680), - [anon_sym_i64] = ACTIONS(1680), - [anon_sym_u128] = ACTIONS(1680), - [anon_sym_i128] = ACTIONS(1680), - [anon_sym_isize] = ACTIONS(1680), - [anon_sym_usize] = ACTIONS(1680), - [anon_sym_f32] = ACTIONS(1680), - [anon_sym_f64] = ACTIONS(1680), - [anon_sym_bool] = ACTIONS(1680), - [anon_sym_str] = ACTIONS(1680), - [anon_sym_char] = ACTIONS(1680), - [anon_sym_SQUOTE] = ACTIONS(1680), - [anon_sym_async] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_enum] = ACTIONS(1680), - [anon_sym_fn] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_impl] = ACTIONS(1680), - [anon_sym_let] = ACTIONS(1680), - [anon_sym_loop] = ACTIONS(1680), - [anon_sym_match] = ACTIONS(1680), - [anon_sym_mod] = ACTIONS(1680), - [anon_sym_pub] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_static] = ACTIONS(1680), - [anon_sym_struct] = ACTIONS(1680), - [anon_sym_trait] = ACTIONS(1680), - [anon_sym_type] = ACTIONS(1680), - [anon_sym_union] = ACTIONS(1680), - [anon_sym_unsafe] = ACTIONS(1680), - [anon_sym_use] = ACTIONS(1680), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_extern] = ACTIONS(1680), - [anon_sym_LT] = ACTIONS(1678), - [anon_sym_COLON_COLON] = ACTIONS(1678), - [anon_sym_AMP] = ACTIONS(1678), - [anon_sym_DOT_DOT] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_yield] = ACTIONS(1680), - [anon_sym_move] = ACTIONS(1680), - [sym_integer_literal] = ACTIONS(1678), - [aux_sym_string_literal_token1] = ACTIONS(1678), - [sym_char_literal] = ACTIONS(1678), - [anon_sym_true] = ACTIONS(1680), - [anon_sym_false] = ACTIONS(1680), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1680), - [sym_super] = ACTIONS(1680), - [sym_crate] = ACTIONS(1680), - [sym_metavariable] = ACTIONS(1678), - [sym_raw_string_literal] = ACTIONS(1678), - [sym_float_literal] = ACTIONS(1678), + [ts_builtin_sym_end] = ACTIONS(1700), + [sym_identifier] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_macro_rules_BANG] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_STAR] = ACTIONS(1700), + [anon_sym_u8] = ACTIONS(1702), + [anon_sym_i8] = ACTIONS(1702), + [anon_sym_u16] = ACTIONS(1702), + [anon_sym_i16] = ACTIONS(1702), + [anon_sym_u32] = ACTIONS(1702), + [anon_sym_i32] = ACTIONS(1702), + [anon_sym_u64] = ACTIONS(1702), + [anon_sym_i64] = ACTIONS(1702), + [anon_sym_u128] = ACTIONS(1702), + [anon_sym_i128] = ACTIONS(1702), + [anon_sym_isize] = ACTIONS(1702), + [anon_sym_usize] = ACTIONS(1702), + [anon_sym_f32] = ACTIONS(1702), + [anon_sym_f64] = ACTIONS(1702), + [anon_sym_bool] = ACTIONS(1702), + [anon_sym_str] = ACTIONS(1702), + [anon_sym_char] = ACTIONS(1702), + [anon_sym_SQUOTE] = ACTIONS(1702), + [anon_sym_async] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_continue] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_enum] = ACTIONS(1702), + [anon_sym_fn] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_impl] = ACTIONS(1702), + [anon_sym_let] = ACTIONS(1702), + [anon_sym_loop] = ACTIONS(1702), + [anon_sym_match] = ACTIONS(1702), + [anon_sym_mod] = ACTIONS(1702), + [anon_sym_pub] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_static] = ACTIONS(1702), + [anon_sym_struct] = ACTIONS(1702), + [anon_sym_trait] = ACTIONS(1702), + [anon_sym_type] = ACTIONS(1702), + [anon_sym_union] = ACTIONS(1702), + [anon_sym_unsafe] = ACTIONS(1702), + [anon_sym_use] = ACTIONS(1702), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_POUND] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_extern] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_COLON_COLON] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1700), + [anon_sym_DOT_DOT] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_yield] = ACTIONS(1702), + [anon_sym_move] = ACTIONS(1702), + [sym_integer_literal] = ACTIONS(1700), + [aux_sym_string_literal_token1] = ACTIONS(1700), + [sym_char_literal] = ACTIONS(1700), + [anon_sym_true] = ACTIONS(1702), + [anon_sym_false] = ACTIONS(1702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1702), + [sym_super] = ACTIONS(1702), + [sym_crate] = ACTIONS(1702), + [sym_metavariable] = ACTIONS(1700), + [sym_raw_string_literal] = ACTIONS(1700), + [sym_float_literal] = ACTIONS(1700), [sym_block_comment] = ACTIONS(3), }, [407] = { - [ts_builtin_sym_end] = ACTIONS(1682), - [sym_identifier] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_macro_rules_BANG] = ACTIONS(1682), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1682), - [anon_sym_u8] = ACTIONS(1684), - [anon_sym_i8] = ACTIONS(1684), - [anon_sym_u16] = ACTIONS(1684), - [anon_sym_i16] = ACTIONS(1684), - [anon_sym_u32] = ACTIONS(1684), - [anon_sym_i32] = ACTIONS(1684), - [anon_sym_u64] = ACTIONS(1684), - [anon_sym_i64] = ACTIONS(1684), - [anon_sym_u128] = ACTIONS(1684), - [anon_sym_i128] = ACTIONS(1684), - [anon_sym_isize] = ACTIONS(1684), - [anon_sym_usize] = ACTIONS(1684), - [anon_sym_f32] = ACTIONS(1684), - [anon_sym_f64] = ACTIONS(1684), - [anon_sym_bool] = ACTIONS(1684), - [anon_sym_str] = ACTIONS(1684), - [anon_sym_char] = ACTIONS(1684), - [anon_sym_SQUOTE] = ACTIONS(1684), - [anon_sym_async] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_default] = ACTIONS(1684), - [anon_sym_enum] = ACTIONS(1684), - [anon_sym_fn] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_impl] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1684), - [anon_sym_loop] = ACTIONS(1684), - [anon_sym_match] = ACTIONS(1684), - [anon_sym_mod] = ACTIONS(1684), - [anon_sym_pub] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_static] = ACTIONS(1684), - [anon_sym_struct] = ACTIONS(1684), - [anon_sym_trait] = ACTIONS(1684), - [anon_sym_type] = ACTIONS(1684), - [anon_sym_union] = ACTIONS(1684), - [anon_sym_unsafe] = ACTIONS(1684), - [anon_sym_use] = ACTIONS(1684), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_POUND] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_extern] = ACTIONS(1684), - [anon_sym_LT] = ACTIONS(1682), - [anon_sym_COLON_COLON] = ACTIONS(1682), - [anon_sym_AMP] = ACTIONS(1682), - [anon_sym_DOT_DOT] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_yield] = ACTIONS(1684), - [anon_sym_move] = ACTIONS(1684), - [sym_integer_literal] = ACTIONS(1682), - [aux_sym_string_literal_token1] = ACTIONS(1682), - [sym_char_literal] = ACTIONS(1682), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1684), - [sym_super] = ACTIONS(1684), - [sym_crate] = ACTIONS(1684), - [sym_metavariable] = ACTIONS(1682), - [sym_raw_string_literal] = ACTIONS(1682), - [sym_float_literal] = ACTIONS(1682), + [ts_builtin_sym_end] = ACTIONS(1704), + [sym_identifier] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_macro_rules_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_STAR] = ACTIONS(1704), + [anon_sym_u8] = ACTIONS(1706), + [anon_sym_i8] = ACTIONS(1706), + [anon_sym_u16] = ACTIONS(1706), + [anon_sym_i16] = ACTIONS(1706), + [anon_sym_u32] = ACTIONS(1706), + [anon_sym_i32] = ACTIONS(1706), + [anon_sym_u64] = ACTIONS(1706), + [anon_sym_i64] = ACTIONS(1706), + [anon_sym_u128] = ACTIONS(1706), + [anon_sym_i128] = ACTIONS(1706), + [anon_sym_isize] = ACTIONS(1706), + [anon_sym_usize] = ACTIONS(1706), + [anon_sym_f32] = ACTIONS(1706), + [anon_sym_f64] = ACTIONS(1706), + [anon_sym_bool] = ACTIONS(1706), + [anon_sym_str] = ACTIONS(1706), + [anon_sym_char] = ACTIONS(1706), + [anon_sym_SQUOTE] = ACTIONS(1706), + [anon_sym_async] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(1706), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_enum] = ACTIONS(1706), + [anon_sym_fn] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_impl] = ACTIONS(1706), + [anon_sym_let] = ACTIONS(1706), + [anon_sym_loop] = ACTIONS(1706), + [anon_sym_match] = ACTIONS(1706), + [anon_sym_mod] = ACTIONS(1706), + [anon_sym_pub] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_struct] = ACTIONS(1706), + [anon_sym_trait] = ACTIONS(1706), + [anon_sym_type] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_unsafe] = ACTIONS(1706), + [anon_sym_use] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_POUND] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_extern] = ACTIONS(1706), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_COLON_COLON] = ACTIONS(1704), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_yield] = ACTIONS(1706), + [anon_sym_move] = ACTIONS(1706), + [sym_integer_literal] = ACTIONS(1704), + [aux_sym_string_literal_token1] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1704), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1706), + [sym_super] = ACTIONS(1706), + [sym_crate] = ACTIONS(1706), + [sym_metavariable] = ACTIONS(1704), + [sym_raw_string_literal] = ACTIONS(1704), + [sym_float_literal] = ACTIONS(1704), [sym_block_comment] = ACTIONS(3), }, [408] = { - [ts_builtin_sym_end] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1688), - [anon_sym_SEMI] = ACTIONS(1686), - [anon_sym_macro_rules_BANG] = ACTIONS(1686), - [anon_sym_LPAREN] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1686), - [anon_sym_RBRACE] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_u8] = ACTIONS(1688), - [anon_sym_i8] = ACTIONS(1688), - [anon_sym_u16] = ACTIONS(1688), - [anon_sym_i16] = ACTIONS(1688), - [anon_sym_u32] = ACTIONS(1688), - [anon_sym_i32] = ACTIONS(1688), - [anon_sym_u64] = ACTIONS(1688), - [anon_sym_i64] = ACTIONS(1688), - [anon_sym_u128] = ACTIONS(1688), - [anon_sym_i128] = ACTIONS(1688), - [anon_sym_isize] = ACTIONS(1688), - [anon_sym_usize] = ACTIONS(1688), - [anon_sym_f32] = ACTIONS(1688), - [anon_sym_f64] = ACTIONS(1688), - [anon_sym_bool] = ACTIONS(1688), - [anon_sym_str] = ACTIONS(1688), - [anon_sym_char] = ACTIONS(1688), - [anon_sym_SQUOTE] = ACTIONS(1688), - [anon_sym_async] = ACTIONS(1688), - [anon_sym_break] = ACTIONS(1688), - [anon_sym_const] = ACTIONS(1688), - [anon_sym_continue] = ACTIONS(1688), - [anon_sym_default] = ACTIONS(1688), - [anon_sym_enum] = ACTIONS(1688), - [anon_sym_fn] = ACTIONS(1688), - [anon_sym_for] = ACTIONS(1688), - [anon_sym_if] = ACTIONS(1688), - [anon_sym_impl] = ACTIONS(1688), - [anon_sym_let] = ACTIONS(1688), - [anon_sym_loop] = ACTIONS(1688), - [anon_sym_match] = ACTIONS(1688), - [anon_sym_mod] = ACTIONS(1688), - [anon_sym_pub] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1688), - [anon_sym_static] = ACTIONS(1688), - [anon_sym_struct] = ACTIONS(1688), - [anon_sym_trait] = ACTIONS(1688), - [anon_sym_type] = ACTIONS(1688), - [anon_sym_union] = ACTIONS(1688), - [anon_sym_unsafe] = ACTIONS(1688), - [anon_sym_use] = ACTIONS(1688), - [anon_sym_while] = ACTIONS(1688), - [anon_sym_POUND] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1686), - [anon_sym_extern] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_COLON_COLON] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_DOT_DOT] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_yield] = ACTIONS(1688), - [anon_sym_move] = ACTIONS(1688), - [sym_integer_literal] = ACTIONS(1686), - [aux_sym_string_literal_token1] = ACTIONS(1686), - [sym_char_literal] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1688), - [anon_sym_false] = ACTIONS(1688), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1688), - [sym_super] = ACTIONS(1688), - [sym_crate] = ACTIONS(1688), - [sym_metavariable] = ACTIONS(1686), - [sym_raw_string_literal] = ACTIONS(1686), - [sym_float_literal] = ACTIONS(1686), + [ts_builtin_sym_end] = ACTIONS(1708), + [sym_identifier] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1708), + [anon_sym_macro_rules_BANG] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1708), + [anon_sym_RBRACE] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_u8] = ACTIONS(1710), + [anon_sym_i8] = ACTIONS(1710), + [anon_sym_u16] = ACTIONS(1710), + [anon_sym_i16] = ACTIONS(1710), + [anon_sym_u32] = ACTIONS(1710), + [anon_sym_i32] = ACTIONS(1710), + [anon_sym_u64] = ACTIONS(1710), + [anon_sym_i64] = ACTIONS(1710), + [anon_sym_u128] = ACTIONS(1710), + [anon_sym_i128] = ACTIONS(1710), + [anon_sym_isize] = ACTIONS(1710), + [anon_sym_usize] = ACTIONS(1710), + [anon_sym_f32] = ACTIONS(1710), + [anon_sym_f64] = ACTIONS(1710), + [anon_sym_bool] = ACTIONS(1710), + [anon_sym_str] = ACTIONS(1710), + [anon_sym_char] = ACTIONS(1710), + [anon_sym_SQUOTE] = ACTIONS(1710), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_break] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1710), + [anon_sym_continue] = ACTIONS(1710), + [anon_sym_default] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1710), + [anon_sym_fn] = ACTIONS(1710), + [anon_sym_for] = ACTIONS(1710), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_impl] = ACTIONS(1710), + [anon_sym_let] = ACTIONS(1710), + [anon_sym_loop] = ACTIONS(1710), + [anon_sym_match] = ACTIONS(1710), + [anon_sym_mod] = ACTIONS(1710), + [anon_sym_pub] = ACTIONS(1710), + [anon_sym_return] = ACTIONS(1710), + [anon_sym_static] = ACTIONS(1710), + [anon_sym_struct] = ACTIONS(1710), + [anon_sym_trait] = ACTIONS(1710), + [anon_sym_type] = ACTIONS(1710), + [anon_sym_union] = ACTIONS(1710), + [anon_sym_unsafe] = ACTIONS(1710), + [anon_sym_use] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1710), + [anon_sym_POUND] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(1708), + [anon_sym_extern] = ACTIONS(1710), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_COLON_COLON] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_DOT_DOT] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_yield] = ACTIONS(1710), + [anon_sym_move] = ACTIONS(1710), + [sym_integer_literal] = ACTIONS(1708), + [aux_sym_string_literal_token1] = ACTIONS(1708), + [sym_char_literal] = ACTIONS(1708), + [anon_sym_true] = ACTIONS(1710), + [anon_sym_false] = ACTIONS(1710), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1710), + [sym_super] = ACTIONS(1710), + [sym_crate] = ACTIONS(1710), + [sym_metavariable] = ACTIONS(1708), + [sym_raw_string_literal] = ACTIONS(1708), + [sym_float_literal] = ACTIONS(1708), [sym_block_comment] = ACTIONS(3), }, [409] = { - [ts_builtin_sym_end] = ACTIONS(1690), - [sym_identifier] = ACTIONS(1692), - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_macro_rules_BANG] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_STAR] = ACTIONS(1690), - [anon_sym_u8] = ACTIONS(1692), - [anon_sym_i8] = ACTIONS(1692), - [anon_sym_u16] = ACTIONS(1692), - [anon_sym_i16] = ACTIONS(1692), - [anon_sym_u32] = ACTIONS(1692), - [anon_sym_i32] = ACTIONS(1692), - [anon_sym_u64] = ACTIONS(1692), - [anon_sym_i64] = ACTIONS(1692), - [anon_sym_u128] = ACTIONS(1692), - [anon_sym_i128] = ACTIONS(1692), - [anon_sym_isize] = ACTIONS(1692), - [anon_sym_usize] = ACTIONS(1692), - [anon_sym_f32] = ACTIONS(1692), - [anon_sym_f64] = ACTIONS(1692), - [anon_sym_bool] = ACTIONS(1692), - [anon_sym_str] = ACTIONS(1692), - [anon_sym_char] = ACTIONS(1692), - [anon_sym_SQUOTE] = ACTIONS(1692), - [anon_sym_async] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_continue] = ACTIONS(1692), - [anon_sym_default] = ACTIONS(1692), - [anon_sym_enum] = ACTIONS(1692), - [anon_sym_fn] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_impl] = ACTIONS(1692), - [anon_sym_let] = ACTIONS(1692), - [anon_sym_loop] = ACTIONS(1692), - [anon_sym_match] = ACTIONS(1692), - [anon_sym_mod] = ACTIONS(1692), - [anon_sym_pub] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_static] = ACTIONS(1692), - [anon_sym_struct] = ACTIONS(1692), - [anon_sym_trait] = ACTIONS(1692), - [anon_sym_type] = ACTIONS(1692), - [anon_sym_union] = ACTIONS(1692), - [anon_sym_unsafe] = ACTIONS(1692), - [anon_sym_use] = ACTIONS(1692), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_POUND] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_extern] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1690), - [anon_sym_COLON_COLON] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1690), - [anon_sym_DOT_DOT] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_yield] = ACTIONS(1692), - [anon_sym_move] = ACTIONS(1692), - [sym_integer_literal] = ACTIONS(1690), - [aux_sym_string_literal_token1] = ACTIONS(1690), - [sym_char_literal] = ACTIONS(1690), - [anon_sym_true] = ACTIONS(1692), - [anon_sym_false] = ACTIONS(1692), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1692), - [sym_super] = ACTIONS(1692), - [sym_crate] = ACTIONS(1692), - [sym_metavariable] = ACTIONS(1690), - [sym_raw_string_literal] = ACTIONS(1690), - [sym_float_literal] = ACTIONS(1690), + [ts_builtin_sym_end] = ACTIONS(1712), + [sym_identifier] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_macro_rules_BANG] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_LBRACE] = ACTIONS(1712), + [anon_sym_RBRACE] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1712), + [anon_sym_STAR] = ACTIONS(1712), + [anon_sym_u8] = ACTIONS(1714), + [anon_sym_i8] = ACTIONS(1714), + [anon_sym_u16] = ACTIONS(1714), + [anon_sym_i16] = ACTIONS(1714), + [anon_sym_u32] = ACTIONS(1714), + [anon_sym_i32] = ACTIONS(1714), + [anon_sym_u64] = ACTIONS(1714), + [anon_sym_i64] = ACTIONS(1714), + [anon_sym_u128] = ACTIONS(1714), + [anon_sym_i128] = ACTIONS(1714), + [anon_sym_isize] = ACTIONS(1714), + [anon_sym_usize] = ACTIONS(1714), + [anon_sym_f32] = ACTIONS(1714), + [anon_sym_f64] = ACTIONS(1714), + [anon_sym_bool] = ACTIONS(1714), + [anon_sym_str] = ACTIONS(1714), + [anon_sym_char] = ACTIONS(1714), + [anon_sym_SQUOTE] = ACTIONS(1714), + [anon_sym_async] = ACTIONS(1714), + [anon_sym_break] = ACTIONS(1714), + [anon_sym_const] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(1714), + [anon_sym_default] = ACTIONS(1714), + [anon_sym_enum] = ACTIONS(1714), + [anon_sym_fn] = ACTIONS(1714), + [anon_sym_for] = ACTIONS(1714), + [anon_sym_if] = ACTIONS(1714), + [anon_sym_impl] = ACTIONS(1714), + [anon_sym_let] = ACTIONS(1714), + [anon_sym_loop] = ACTIONS(1714), + [anon_sym_match] = ACTIONS(1714), + [anon_sym_mod] = ACTIONS(1714), + [anon_sym_pub] = ACTIONS(1714), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_static] = ACTIONS(1714), + [anon_sym_struct] = ACTIONS(1714), + [anon_sym_trait] = ACTIONS(1714), + [anon_sym_type] = ACTIONS(1714), + [anon_sym_union] = ACTIONS(1714), + [anon_sym_unsafe] = ACTIONS(1714), + [anon_sym_use] = ACTIONS(1714), + [anon_sym_while] = ACTIONS(1714), + [anon_sym_POUND] = ACTIONS(1712), + [anon_sym_BANG] = ACTIONS(1712), + [anon_sym_extern] = ACTIONS(1714), + [anon_sym_LT] = ACTIONS(1712), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_AMP] = ACTIONS(1712), + [anon_sym_DOT_DOT] = ACTIONS(1712), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PIPE] = ACTIONS(1712), + [anon_sym_yield] = ACTIONS(1714), + [anon_sym_move] = ACTIONS(1714), + [sym_integer_literal] = ACTIONS(1712), + [aux_sym_string_literal_token1] = ACTIONS(1712), + [sym_char_literal] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1714), + [anon_sym_false] = ACTIONS(1714), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1714), + [sym_super] = ACTIONS(1714), + [sym_crate] = ACTIONS(1714), + [sym_metavariable] = ACTIONS(1712), + [sym_raw_string_literal] = ACTIONS(1712), + [sym_float_literal] = ACTIONS(1712), [sym_block_comment] = ACTIONS(3), }, [410] = { - [ts_builtin_sym_end] = ACTIONS(554), - [sym_identifier] = ACTIONS(556), - [anon_sym_SEMI] = ACTIONS(554), - [anon_sym_macro_rules_BANG] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(554), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(554), - [anon_sym_u8] = ACTIONS(556), - [anon_sym_i8] = ACTIONS(556), - [anon_sym_u16] = ACTIONS(556), - [anon_sym_i16] = ACTIONS(556), - [anon_sym_u32] = ACTIONS(556), - [anon_sym_i32] = ACTIONS(556), - [anon_sym_u64] = ACTIONS(556), - [anon_sym_i64] = ACTIONS(556), - [anon_sym_u128] = ACTIONS(556), - [anon_sym_i128] = ACTIONS(556), - [anon_sym_isize] = ACTIONS(556), - [anon_sym_usize] = ACTIONS(556), - [anon_sym_f32] = ACTIONS(556), - [anon_sym_f64] = ACTIONS(556), - [anon_sym_bool] = ACTIONS(556), - [anon_sym_str] = ACTIONS(556), - [anon_sym_char] = ACTIONS(556), - [anon_sym_SQUOTE] = ACTIONS(556), - [anon_sym_async] = ACTIONS(556), - [anon_sym_break] = ACTIONS(556), - [anon_sym_const] = ACTIONS(556), - [anon_sym_continue] = ACTIONS(556), - [anon_sym_default] = ACTIONS(556), - [anon_sym_enum] = ACTIONS(556), - [anon_sym_fn] = ACTIONS(556), - [anon_sym_for] = ACTIONS(556), - [anon_sym_if] = ACTIONS(556), - [anon_sym_impl] = ACTIONS(556), - [anon_sym_let] = ACTIONS(556), - [anon_sym_loop] = ACTIONS(556), - [anon_sym_match] = ACTIONS(556), - [anon_sym_mod] = ACTIONS(556), - [anon_sym_pub] = ACTIONS(556), - [anon_sym_return] = ACTIONS(556), - [anon_sym_static] = ACTIONS(556), - [anon_sym_struct] = ACTIONS(556), - [anon_sym_trait] = ACTIONS(556), - [anon_sym_type] = ACTIONS(556), - [anon_sym_union] = ACTIONS(556), - [anon_sym_unsafe] = ACTIONS(556), - [anon_sym_use] = ACTIONS(556), - [anon_sym_while] = ACTIONS(556), - [anon_sym_POUND] = ACTIONS(554), - [anon_sym_BANG] = ACTIONS(554), - [anon_sym_extern] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(554), - [anon_sym_COLON_COLON] = ACTIONS(554), - [anon_sym_AMP] = ACTIONS(554), - [anon_sym_DOT_DOT] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(554), - [anon_sym_yield] = ACTIONS(556), - [anon_sym_move] = ACTIONS(556), - [sym_integer_literal] = ACTIONS(554), - [aux_sym_string_literal_token1] = ACTIONS(554), - [sym_char_literal] = ACTIONS(554), - [anon_sym_true] = ACTIONS(556), - [anon_sym_false] = ACTIONS(556), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(556), - [sym_super] = ACTIONS(556), - [sym_crate] = ACTIONS(556), - [sym_metavariable] = ACTIONS(554), - [sym_raw_string_literal] = ACTIONS(554), - [sym_float_literal] = ACTIONS(554), + [ts_builtin_sym_end] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_macro_rules_BANG] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_u8] = ACTIONS(1718), + [anon_sym_i8] = ACTIONS(1718), + [anon_sym_u16] = ACTIONS(1718), + [anon_sym_i16] = ACTIONS(1718), + [anon_sym_u32] = ACTIONS(1718), + [anon_sym_i32] = ACTIONS(1718), + [anon_sym_u64] = ACTIONS(1718), + [anon_sym_i64] = ACTIONS(1718), + [anon_sym_u128] = ACTIONS(1718), + [anon_sym_i128] = ACTIONS(1718), + [anon_sym_isize] = ACTIONS(1718), + [anon_sym_usize] = ACTIONS(1718), + [anon_sym_f32] = ACTIONS(1718), + [anon_sym_f64] = ACTIONS(1718), + [anon_sym_bool] = ACTIONS(1718), + [anon_sym_str] = ACTIONS(1718), + [anon_sym_char] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(1718), + [anon_sym_async] = ACTIONS(1718), + [anon_sym_break] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1718), + [anon_sym_continue] = ACTIONS(1718), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_enum] = ACTIONS(1718), + [anon_sym_fn] = ACTIONS(1718), + [anon_sym_for] = ACTIONS(1718), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_impl] = ACTIONS(1718), + [anon_sym_let] = ACTIONS(1718), + [anon_sym_loop] = ACTIONS(1718), + [anon_sym_match] = ACTIONS(1718), + [anon_sym_mod] = ACTIONS(1718), + [anon_sym_pub] = ACTIONS(1718), + [anon_sym_return] = ACTIONS(1718), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_struct] = ACTIONS(1718), + [anon_sym_trait] = ACTIONS(1718), + [anon_sym_type] = ACTIONS(1718), + [anon_sym_union] = ACTIONS(1718), + [anon_sym_unsafe] = ACTIONS(1718), + [anon_sym_use] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1718), + [anon_sym_POUND] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1716), + [anon_sym_COLON_COLON] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1716), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_DASH] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_yield] = ACTIONS(1718), + [anon_sym_move] = ACTIONS(1718), + [sym_integer_literal] = ACTIONS(1716), + [aux_sym_string_literal_token1] = ACTIONS(1716), + [sym_char_literal] = ACTIONS(1716), + [anon_sym_true] = ACTIONS(1718), + [anon_sym_false] = ACTIONS(1718), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_crate] = ACTIONS(1718), + [sym_metavariable] = ACTIONS(1716), + [sym_raw_string_literal] = ACTIONS(1716), + [sym_float_literal] = ACTIONS(1716), [sym_block_comment] = ACTIONS(3), }, [411] = { - [ts_builtin_sym_end] = ACTIONS(1694), - [sym_identifier] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1694), - [anon_sym_macro_rules_BANG] = ACTIONS(1694), - [anon_sym_LPAREN] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_RBRACE] = ACTIONS(1694), - [anon_sym_LBRACK] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_u8] = ACTIONS(1696), - [anon_sym_i8] = ACTIONS(1696), - [anon_sym_u16] = ACTIONS(1696), - [anon_sym_i16] = ACTIONS(1696), - [anon_sym_u32] = ACTIONS(1696), - [anon_sym_i32] = ACTIONS(1696), - [anon_sym_u64] = ACTIONS(1696), - [anon_sym_i64] = ACTIONS(1696), - [anon_sym_u128] = ACTIONS(1696), - [anon_sym_i128] = ACTIONS(1696), - [anon_sym_isize] = ACTIONS(1696), - [anon_sym_usize] = ACTIONS(1696), - [anon_sym_f32] = ACTIONS(1696), - [anon_sym_f64] = ACTIONS(1696), - [anon_sym_bool] = ACTIONS(1696), - [anon_sym_str] = ACTIONS(1696), - [anon_sym_char] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1696), - [anon_sym_async] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_const] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_default] = ACTIONS(1696), - [anon_sym_enum] = ACTIONS(1696), - [anon_sym_fn] = ACTIONS(1696), - [anon_sym_for] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_impl] = ACTIONS(1696), - [anon_sym_let] = ACTIONS(1696), - [anon_sym_loop] = ACTIONS(1696), - [anon_sym_match] = ACTIONS(1696), - [anon_sym_mod] = ACTIONS(1696), - [anon_sym_pub] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_static] = ACTIONS(1696), - [anon_sym_struct] = ACTIONS(1696), - [anon_sym_trait] = ACTIONS(1696), - [anon_sym_type] = ACTIONS(1696), - [anon_sym_union] = ACTIONS(1696), - [anon_sym_unsafe] = ACTIONS(1696), - [anon_sym_use] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_POUND] = ACTIONS(1694), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_extern] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_yield] = ACTIONS(1696), - [anon_sym_move] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [aux_sym_string_literal_token1] = ACTIONS(1694), - [sym_char_literal] = ACTIONS(1694), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1696), - [sym_super] = ACTIONS(1696), - [sym_crate] = ACTIONS(1696), - [sym_metavariable] = ACTIONS(1694), - [sym_raw_string_literal] = ACTIONS(1694), - [sym_float_literal] = ACTIONS(1694), + [ts_builtin_sym_end] = ACTIONS(1720), + [sym_identifier] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1720), + [anon_sym_macro_rules_BANG] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_RBRACE] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1720), + [anon_sym_u8] = ACTIONS(1722), + [anon_sym_i8] = ACTIONS(1722), + [anon_sym_u16] = ACTIONS(1722), + [anon_sym_i16] = ACTIONS(1722), + [anon_sym_u32] = ACTIONS(1722), + [anon_sym_i32] = ACTIONS(1722), + [anon_sym_u64] = ACTIONS(1722), + [anon_sym_i64] = ACTIONS(1722), + [anon_sym_u128] = ACTIONS(1722), + [anon_sym_i128] = ACTIONS(1722), + [anon_sym_isize] = ACTIONS(1722), + [anon_sym_usize] = ACTIONS(1722), + [anon_sym_f32] = ACTIONS(1722), + [anon_sym_f64] = ACTIONS(1722), + [anon_sym_bool] = ACTIONS(1722), + [anon_sym_str] = ACTIONS(1722), + [anon_sym_char] = ACTIONS(1722), + [anon_sym_SQUOTE] = ACTIONS(1722), + [anon_sym_async] = ACTIONS(1722), + [anon_sym_break] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(1722), + [anon_sym_default] = ACTIONS(1722), + [anon_sym_enum] = ACTIONS(1722), + [anon_sym_fn] = ACTIONS(1722), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1722), + [anon_sym_impl] = ACTIONS(1722), + [anon_sym_let] = ACTIONS(1722), + [anon_sym_loop] = ACTIONS(1722), + [anon_sym_match] = ACTIONS(1722), + [anon_sym_mod] = ACTIONS(1722), + [anon_sym_pub] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_static] = ACTIONS(1722), + [anon_sym_struct] = ACTIONS(1722), + [anon_sym_trait] = ACTIONS(1722), + [anon_sym_type] = ACTIONS(1722), + [anon_sym_union] = ACTIONS(1722), + [anon_sym_unsafe] = ACTIONS(1722), + [anon_sym_use] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1722), + [anon_sym_POUND] = ACTIONS(1720), + [anon_sym_BANG] = ACTIONS(1720), + [anon_sym_extern] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1720), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_AMP] = ACTIONS(1720), + [anon_sym_DOT_DOT] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_yield] = ACTIONS(1722), + [anon_sym_move] = ACTIONS(1722), + [sym_integer_literal] = ACTIONS(1720), + [aux_sym_string_literal_token1] = ACTIONS(1720), + [sym_char_literal] = ACTIONS(1720), + [anon_sym_true] = ACTIONS(1722), + [anon_sym_false] = ACTIONS(1722), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1722), + [sym_super] = ACTIONS(1722), + [sym_crate] = ACTIONS(1722), + [sym_metavariable] = ACTIONS(1720), + [sym_raw_string_literal] = ACTIONS(1720), + [sym_float_literal] = ACTIONS(1720), [sym_block_comment] = ACTIONS(3), }, [412] = { - [ts_builtin_sym_end] = ACTIONS(1698), - [sym_identifier] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_macro_rules_BANG] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_STAR] = ACTIONS(1698), - [anon_sym_u8] = ACTIONS(1700), - [anon_sym_i8] = ACTIONS(1700), - [anon_sym_u16] = ACTIONS(1700), - [anon_sym_i16] = ACTIONS(1700), - [anon_sym_u32] = ACTIONS(1700), - [anon_sym_i32] = ACTIONS(1700), - [anon_sym_u64] = ACTIONS(1700), - [anon_sym_i64] = ACTIONS(1700), - [anon_sym_u128] = ACTIONS(1700), - [anon_sym_i128] = ACTIONS(1700), - [anon_sym_isize] = ACTIONS(1700), - [anon_sym_usize] = ACTIONS(1700), - [anon_sym_f32] = ACTIONS(1700), - [anon_sym_f64] = ACTIONS(1700), - [anon_sym_bool] = ACTIONS(1700), - [anon_sym_str] = ACTIONS(1700), - [anon_sym_char] = ACTIONS(1700), - [anon_sym_SQUOTE] = ACTIONS(1700), - [anon_sym_async] = ACTIONS(1700), - [anon_sym_break] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1700), - [anon_sym_continue] = ACTIONS(1700), - [anon_sym_default] = ACTIONS(1700), - [anon_sym_enum] = ACTIONS(1700), - [anon_sym_fn] = ACTIONS(1700), - [anon_sym_for] = ACTIONS(1700), - [anon_sym_if] = ACTIONS(1700), - [anon_sym_impl] = ACTIONS(1700), - [anon_sym_let] = ACTIONS(1700), - [anon_sym_loop] = ACTIONS(1700), - [anon_sym_match] = ACTIONS(1700), - [anon_sym_mod] = ACTIONS(1700), - [anon_sym_pub] = ACTIONS(1700), - [anon_sym_return] = ACTIONS(1700), - [anon_sym_static] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(1700), - [anon_sym_trait] = ACTIONS(1700), - [anon_sym_type] = ACTIONS(1700), - [anon_sym_union] = ACTIONS(1700), - [anon_sym_unsafe] = ACTIONS(1700), - [anon_sym_use] = ACTIONS(1700), - [anon_sym_while] = ACTIONS(1700), - [anon_sym_POUND] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1698), - [anon_sym_extern] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_DASH] = ACTIONS(1698), - [anon_sym_PIPE] = ACTIONS(1698), - [anon_sym_yield] = ACTIONS(1700), - [anon_sym_move] = ACTIONS(1700), - [sym_integer_literal] = ACTIONS(1698), - [aux_sym_string_literal_token1] = ACTIONS(1698), - [sym_char_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1700), - [anon_sym_false] = ACTIONS(1700), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1700), - [sym_super] = ACTIONS(1700), - [sym_crate] = ACTIONS(1700), - [sym_metavariable] = ACTIONS(1698), - [sym_raw_string_literal] = ACTIONS(1698), - [sym_float_literal] = ACTIONS(1698), + [ts_builtin_sym_end] = ACTIONS(1724), + [sym_identifier] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1724), + [anon_sym_macro_rules_BANG] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACE] = ACTIONS(1724), + [anon_sym_RBRACE] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_u8] = ACTIONS(1726), + [anon_sym_i8] = ACTIONS(1726), + [anon_sym_u16] = ACTIONS(1726), + [anon_sym_i16] = ACTIONS(1726), + [anon_sym_u32] = ACTIONS(1726), + [anon_sym_i32] = ACTIONS(1726), + [anon_sym_u64] = ACTIONS(1726), + [anon_sym_i64] = ACTIONS(1726), + [anon_sym_u128] = ACTIONS(1726), + [anon_sym_i128] = ACTIONS(1726), + [anon_sym_isize] = ACTIONS(1726), + [anon_sym_usize] = ACTIONS(1726), + [anon_sym_f32] = ACTIONS(1726), + [anon_sym_f64] = ACTIONS(1726), + [anon_sym_bool] = ACTIONS(1726), + [anon_sym_str] = ACTIONS(1726), + [anon_sym_char] = ACTIONS(1726), + [anon_sym_SQUOTE] = ACTIONS(1726), + [anon_sym_async] = ACTIONS(1726), + [anon_sym_break] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1726), + [anon_sym_continue] = ACTIONS(1726), + [anon_sym_default] = ACTIONS(1726), + [anon_sym_enum] = ACTIONS(1726), + [anon_sym_fn] = ACTIONS(1726), + [anon_sym_for] = ACTIONS(1726), + [anon_sym_if] = ACTIONS(1726), + [anon_sym_impl] = ACTIONS(1726), + [anon_sym_let] = ACTIONS(1726), + [anon_sym_loop] = ACTIONS(1726), + [anon_sym_match] = ACTIONS(1726), + [anon_sym_mod] = ACTIONS(1726), + [anon_sym_pub] = ACTIONS(1726), + [anon_sym_return] = ACTIONS(1726), + [anon_sym_static] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(1726), + [anon_sym_trait] = ACTIONS(1726), + [anon_sym_type] = ACTIONS(1726), + [anon_sym_union] = ACTIONS(1726), + [anon_sym_unsafe] = ACTIONS(1726), + [anon_sym_use] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1726), + [anon_sym_POUND] = ACTIONS(1724), + [anon_sym_BANG] = ACTIONS(1724), + [anon_sym_extern] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_DOT_DOT] = ACTIONS(1724), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_yield] = ACTIONS(1726), + [anon_sym_move] = ACTIONS(1726), + [sym_integer_literal] = ACTIONS(1724), + [aux_sym_string_literal_token1] = ACTIONS(1724), + [sym_char_literal] = ACTIONS(1724), + [anon_sym_true] = ACTIONS(1726), + [anon_sym_false] = ACTIONS(1726), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1726), + [sym_super] = ACTIONS(1726), + [sym_crate] = ACTIONS(1726), + [sym_metavariable] = ACTIONS(1724), + [sym_raw_string_literal] = ACTIONS(1724), + [sym_float_literal] = ACTIONS(1724), [sym_block_comment] = ACTIONS(3), }, [413] = { - [ts_builtin_sym_end] = ACTIONS(1702), - [sym_identifier] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_macro_rules_BANG] = ACTIONS(1702), - [anon_sym_LPAREN] = ACTIONS(1702), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_RBRACE] = ACTIONS(1702), - [anon_sym_LBRACK] = ACTIONS(1702), - [anon_sym_STAR] = ACTIONS(1702), - [anon_sym_u8] = ACTIONS(1704), - [anon_sym_i8] = ACTIONS(1704), - [anon_sym_u16] = ACTIONS(1704), - [anon_sym_i16] = ACTIONS(1704), - [anon_sym_u32] = ACTIONS(1704), - [anon_sym_i32] = ACTIONS(1704), - [anon_sym_u64] = ACTIONS(1704), - [anon_sym_i64] = ACTIONS(1704), - [anon_sym_u128] = ACTIONS(1704), - [anon_sym_i128] = ACTIONS(1704), - [anon_sym_isize] = ACTIONS(1704), - [anon_sym_usize] = ACTIONS(1704), - [anon_sym_f32] = ACTIONS(1704), - [anon_sym_f64] = ACTIONS(1704), - [anon_sym_bool] = ACTIONS(1704), - [anon_sym_str] = ACTIONS(1704), - [anon_sym_char] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1704), - [anon_sym_async] = ACTIONS(1704), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_const] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_enum] = ACTIONS(1704), - [anon_sym_fn] = ACTIONS(1704), - [anon_sym_for] = ACTIONS(1704), - [anon_sym_if] = ACTIONS(1704), - [anon_sym_impl] = ACTIONS(1704), - [anon_sym_let] = ACTIONS(1704), - [anon_sym_loop] = ACTIONS(1704), - [anon_sym_match] = ACTIONS(1704), - [anon_sym_mod] = ACTIONS(1704), - [anon_sym_pub] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1704), - [anon_sym_static] = ACTIONS(1704), - [anon_sym_struct] = ACTIONS(1704), - [anon_sym_trait] = ACTIONS(1704), - [anon_sym_type] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_unsafe] = ACTIONS(1704), - [anon_sym_use] = ACTIONS(1704), - [anon_sym_while] = ACTIONS(1704), - [anon_sym_POUND] = ACTIONS(1702), - [anon_sym_BANG] = ACTIONS(1702), - [anon_sym_extern] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_COLON_COLON] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_DOT_DOT] = ACTIONS(1702), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_yield] = ACTIONS(1704), - [anon_sym_move] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1702), - [aux_sym_string_literal_token1] = ACTIONS(1702), - [sym_char_literal] = ACTIONS(1702), - [anon_sym_true] = ACTIONS(1704), - [anon_sym_false] = ACTIONS(1704), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1704), - [sym_super] = ACTIONS(1704), - [sym_crate] = ACTIONS(1704), - [sym_metavariable] = ACTIONS(1702), - [sym_raw_string_literal] = ACTIONS(1702), - [sym_float_literal] = ACTIONS(1702), + [ts_builtin_sym_end] = ACTIONS(1728), + [sym_identifier] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_macro_rules_BANG] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_RBRACE] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_STAR] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_SQUOTE] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(1730), + [anon_sym_break] = ACTIONS(1730), + [anon_sym_const] = ACTIONS(1730), + [anon_sym_continue] = ACTIONS(1730), + [anon_sym_default] = ACTIONS(1730), + [anon_sym_enum] = ACTIONS(1730), + [anon_sym_fn] = ACTIONS(1730), + [anon_sym_for] = ACTIONS(1730), + [anon_sym_if] = ACTIONS(1730), + [anon_sym_impl] = ACTIONS(1730), + [anon_sym_let] = ACTIONS(1730), + [anon_sym_loop] = ACTIONS(1730), + [anon_sym_match] = ACTIONS(1730), + [anon_sym_mod] = ACTIONS(1730), + [anon_sym_pub] = ACTIONS(1730), + [anon_sym_return] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(1730), + [anon_sym_struct] = ACTIONS(1730), + [anon_sym_trait] = ACTIONS(1730), + [anon_sym_type] = ACTIONS(1730), + [anon_sym_union] = ACTIONS(1730), + [anon_sym_unsafe] = ACTIONS(1730), + [anon_sym_use] = ACTIONS(1730), + [anon_sym_while] = ACTIONS(1730), + [anon_sym_POUND] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1728), + [anon_sym_extern] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(1728), + [anon_sym_AMP] = ACTIONS(1728), + [anon_sym_DOT_DOT] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_yield] = ACTIONS(1730), + [anon_sym_move] = ACTIONS(1730), + [sym_integer_literal] = ACTIONS(1728), + [aux_sym_string_literal_token1] = ACTIONS(1728), + [sym_char_literal] = ACTIONS(1728), + [anon_sym_true] = ACTIONS(1730), + [anon_sym_false] = ACTIONS(1730), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1730), + [sym_super] = ACTIONS(1730), + [sym_crate] = ACTIONS(1730), + [sym_metavariable] = ACTIONS(1728), + [sym_raw_string_literal] = ACTIONS(1728), + [sym_float_literal] = ACTIONS(1728), [sym_block_comment] = ACTIONS(3), }, [414] = { - [ts_builtin_sym_end] = ACTIONS(542), - [sym_identifier] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(542), - [anon_sym_macro_rules_BANG] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_RBRACE] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(542), - [anon_sym_u8] = ACTIONS(544), - [anon_sym_i8] = ACTIONS(544), - [anon_sym_u16] = ACTIONS(544), - [anon_sym_i16] = ACTIONS(544), - [anon_sym_u32] = ACTIONS(544), - [anon_sym_i32] = ACTIONS(544), - [anon_sym_u64] = ACTIONS(544), - [anon_sym_i64] = ACTIONS(544), - [anon_sym_u128] = ACTIONS(544), - [anon_sym_i128] = ACTIONS(544), - [anon_sym_isize] = ACTIONS(544), - [anon_sym_usize] = ACTIONS(544), - [anon_sym_f32] = ACTIONS(544), - [anon_sym_f64] = ACTIONS(544), - [anon_sym_bool] = ACTIONS(544), - [anon_sym_str] = ACTIONS(544), - [anon_sym_char] = ACTIONS(544), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_async] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_const] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_default] = ACTIONS(544), - [anon_sym_enum] = ACTIONS(544), - [anon_sym_fn] = ACTIONS(544), - [anon_sym_for] = ACTIONS(544), - [anon_sym_if] = ACTIONS(544), - [anon_sym_impl] = ACTIONS(544), - [anon_sym_let] = ACTIONS(544), - [anon_sym_loop] = ACTIONS(544), - [anon_sym_match] = ACTIONS(544), - [anon_sym_mod] = ACTIONS(544), - [anon_sym_pub] = ACTIONS(544), - [anon_sym_return] = ACTIONS(544), - [anon_sym_static] = ACTIONS(544), - [anon_sym_struct] = ACTIONS(544), - [anon_sym_trait] = ACTIONS(544), - [anon_sym_type] = ACTIONS(544), - [anon_sym_union] = ACTIONS(544), - [anon_sym_unsafe] = ACTIONS(544), - [anon_sym_use] = ACTIONS(544), - [anon_sym_while] = ACTIONS(544), - [anon_sym_POUND] = ACTIONS(542), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_extern] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_COLON_COLON] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(542), - [anon_sym_DOT_DOT] = ACTIONS(542), - [anon_sym_DASH] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(542), - [anon_sym_yield] = ACTIONS(544), - [anon_sym_move] = ACTIONS(544), - [sym_integer_literal] = ACTIONS(542), - [aux_sym_string_literal_token1] = ACTIONS(542), - [sym_char_literal] = ACTIONS(542), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(544), - [sym_super] = ACTIONS(544), - [sym_crate] = ACTIONS(544), - [sym_metavariable] = ACTIONS(542), - [sym_raw_string_literal] = ACTIONS(542), - [sym_float_literal] = ACTIONS(542), + [ts_builtin_sym_end] = ACTIONS(1732), + [sym_identifier] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_macro_rules_BANG] = ACTIONS(1732), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_u8] = ACTIONS(1734), + [anon_sym_i8] = ACTIONS(1734), + [anon_sym_u16] = ACTIONS(1734), + [anon_sym_i16] = ACTIONS(1734), + [anon_sym_u32] = ACTIONS(1734), + [anon_sym_i32] = ACTIONS(1734), + [anon_sym_u64] = ACTIONS(1734), + [anon_sym_i64] = ACTIONS(1734), + [anon_sym_u128] = ACTIONS(1734), + [anon_sym_i128] = ACTIONS(1734), + [anon_sym_isize] = ACTIONS(1734), + [anon_sym_usize] = ACTIONS(1734), + [anon_sym_f32] = ACTIONS(1734), + [anon_sym_f64] = ACTIONS(1734), + [anon_sym_bool] = ACTIONS(1734), + [anon_sym_str] = ACTIONS(1734), + [anon_sym_char] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_async] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_default] = ACTIONS(1734), + [anon_sym_enum] = ACTIONS(1734), + [anon_sym_fn] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_impl] = ACTIONS(1734), + [anon_sym_let] = ACTIONS(1734), + [anon_sym_loop] = ACTIONS(1734), + [anon_sym_match] = ACTIONS(1734), + [anon_sym_mod] = ACTIONS(1734), + [anon_sym_pub] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1734), + [anon_sym_struct] = ACTIONS(1734), + [anon_sym_trait] = ACTIONS(1734), + [anon_sym_type] = ACTIONS(1734), + [anon_sym_union] = ACTIONS(1734), + [anon_sym_unsafe] = ACTIONS(1734), + [anon_sym_use] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_POUND] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_extern] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1732), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_yield] = ACTIONS(1734), + [anon_sym_move] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [aux_sym_string_literal_token1] = ACTIONS(1732), + [sym_char_literal] = ACTIONS(1732), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1734), + [sym_super] = ACTIONS(1734), + [sym_crate] = ACTIONS(1734), + [sym_metavariable] = ACTIONS(1732), + [sym_raw_string_literal] = ACTIONS(1732), + [sym_float_literal] = ACTIONS(1732), [sym_block_comment] = ACTIONS(3), }, [415] = { - [ts_builtin_sym_end] = ACTIONS(1706), - [sym_identifier] = ACTIONS(1708), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_macro_rules_BANG] = ACTIONS(1706), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_STAR] = ACTIONS(1706), - [anon_sym_u8] = ACTIONS(1708), - [anon_sym_i8] = ACTIONS(1708), - [anon_sym_u16] = ACTIONS(1708), - [anon_sym_i16] = ACTIONS(1708), - [anon_sym_u32] = ACTIONS(1708), - [anon_sym_i32] = ACTIONS(1708), - [anon_sym_u64] = ACTIONS(1708), - [anon_sym_i64] = ACTIONS(1708), - [anon_sym_u128] = ACTIONS(1708), - [anon_sym_i128] = ACTIONS(1708), - [anon_sym_isize] = ACTIONS(1708), - [anon_sym_usize] = ACTIONS(1708), - [anon_sym_f32] = ACTIONS(1708), - [anon_sym_f64] = ACTIONS(1708), - [anon_sym_bool] = ACTIONS(1708), - [anon_sym_str] = ACTIONS(1708), - [anon_sym_char] = ACTIONS(1708), - [anon_sym_SQUOTE] = ACTIONS(1708), - [anon_sym_async] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_continue] = ACTIONS(1708), - [anon_sym_default] = ACTIONS(1708), - [anon_sym_enum] = ACTIONS(1708), - [anon_sym_fn] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_impl] = ACTIONS(1708), - [anon_sym_let] = ACTIONS(1708), - [anon_sym_loop] = ACTIONS(1708), - [anon_sym_match] = ACTIONS(1708), - [anon_sym_mod] = ACTIONS(1708), - [anon_sym_pub] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_static] = ACTIONS(1708), - [anon_sym_struct] = ACTIONS(1708), - [anon_sym_trait] = ACTIONS(1708), - [anon_sym_type] = ACTIONS(1708), - [anon_sym_union] = ACTIONS(1708), - [anon_sym_unsafe] = ACTIONS(1708), - [anon_sym_use] = ACTIONS(1708), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_POUND] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_extern] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1706), - [anon_sym_COLON_COLON] = ACTIONS(1706), - [anon_sym_AMP] = ACTIONS(1706), - [anon_sym_DOT_DOT] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_yield] = ACTIONS(1708), - [anon_sym_move] = ACTIONS(1708), - [sym_integer_literal] = ACTIONS(1706), - [aux_sym_string_literal_token1] = ACTIONS(1706), - [sym_char_literal] = ACTIONS(1706), - [anon_sym_true] = ACTIONS(1708), - [anon_sym_false] = ACTIONS(1708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1708), - [sym_super] = ACTIONS(1708), - [sym_crate] = ACTIONS(1708), - [sym_metavariable] = ACTIONS(1706), - [sym_raw_string_literal] = ACTIONS(1706), - [sym_float_literal] = ACTIONS(1706), + [ts_builtin_sym_end] = ACTIONS(1736), + [sym_identifier] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_macro_rules_BANG] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_STAR] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1738), + [anon_sym_async] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1738), + [anon_sym_enum] = ACTIONS(1738), + [anon_sym_fn] = ACTIONS(1738), + [anon_sym_for] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_impl] = ACTIONS(1738), + [anon_sym_let] = ACTIONS(1738), + [anon_sym_loop] = ACTIONS(1738), + [anon_sym_match] = ACTIONS(1738), + [anon_sym_mod] = ACTIONS(1738), + [anon_sym_pub] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_static] = ACTIONS(1738), + [anon_sym_struct] = ACTIONS(1738), + [anon_sym_trait] = ACTIONS(1738), + [anon_sym_type] = ACTIONS(1738), + [anon_sym_union] = ACTIONS(1738), + [anon_sym_unsafe] = ACTIONS(1738), + [anon_sym_use] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1736), + [anon_sym_extern] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1736), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_AMP] = ACTIONS(1736), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_DASH] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_yield] = ACTIONS(1738), + [anon_sym_move] = ACTIONS(1738), + [sym_integer_literal] = ACTIONS(1736), + [aux_sym_string_literal_token1] = ACTIONS(1736), + [sym_char_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1738), + [sym_super] = ACTIONS(1738), + [sym_crate] = ACTIONS(1738), + [sym_metavariable] = ACTIONS(1736), + [sym_raw_string_literal] = ACTIONS(1736), + [sym_float_literal] = ACTIONS(1736), [sym_block_comment] = ACTIONS(3), }, [416] = { - [ts_builtin_sym_end] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [anon_sym_SEMI] = ACTIONS(1710), - [anon_sym_macro_rules_BANG] = ACTIONS(1710), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_LBRACE] = ACTIONS(1710), - [anon_sym_RBRACE] = ACTIONS(1710), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_SQUOTE] = ACTIONS(1712), - [anon_sym_async] = ACTIONS(1712), - [anon_sym_break] = ACTIONS(1712), - [anon_sym_const] = ACTIONS(1712), - [anon_sym_continue] = ACTIONS(1712), - [anon_sym_default] = ACTIONS(1712), - [anon_sym_enum] = ACTIONS(1712), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_for] = ACTIONS(1712), - [anon_sym_if] = ACTIONS(1712), - [anon_sym_impl] = ACTIONS(1712), - [anon_sym_let] = ACTIONS(1712), - [anon_sym_loop] = ACTIONS(1712), - [anon_sym_match] = ACTIONS(1712), - [anon_sym_mod] = ACTIONS(1712), - [anon_sym_pub] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1712), - [anon_sym_static] = ACTIONS(1712), - [anon_sym_struct] = ACTIONS(1712), - [anon_sym_trait] = ACTIONS(1712), - [anon_sym_type] = ACTIONS(1712), - [anon_sym_union] = ACTIONS(1712), - [anon_sym_unsafe] = ACTIONS(1712), - [anon_sym_use] = ACTIONS(1712), - [anon_sym_while] = ACTIONS(1712), - [anon_sym_POUND] = ACTIONS(1710), - [anon_sym_BANG] = ACTIONS(1710), - [anon_sym_extern] = ACTIONS(1712), - [anon_sym_LT] = ACTIONS(1710), - [anon_sym_COLON_COLON] = ACTIONS(1710), - [anon_sym_AMP] = ACTIONS(1710), - [anon_sym_DOT_DOT] = ACTIONS(1710), - [anon_sym_DASH] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1710), - [anon_sym_yield] = ACTIONS(1712), - [anon_sym_move] = ACTIONS(1712), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1710), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1712), - [anon_sym_false] = ACTIONS(1712), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1712), - [sym_super] = ACTIONS(1712), - [sym_crate] = ACTIONS(1712), - [sym_metavariable] = ACTIONS(1710), - [sym_raw_string_literal] = ACTIONS(1710), - [sym_float_literal] = ACTIONS(1710), + [ts_builtin_sym_end] = ACTIONS(1740), + [sym_identifier] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_macro_rules_BANG] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_STAR] = ACTIONS(1740), + [anon_sym_u8] = ACTIONS(1742), + [anon_sym_i8] = ACTIONS(1742), + [anon_sym_u16] = ACTIONS(1742), + [anon_sym_i16] = ACTIONS(1742), + [anon_sym_u32] = ACTIONS(1742), + [anon_sym_i32] = ACTIONS(1742), + [anon_sym_u64] = ACTIONS(1742), + [anon_sym_i64] = ACTIONS(1742), + [anon_sym_u128] = ACTIONS(1742), + [anon_sym_i128] = ACTIONS(1742), + [anon_sym_isize] = ACTIONS(1742), + [anon_sym_usize] = ACTIONS(1742), + [anon_sym_f32] = ACTIONS(1742), + [anon_sym_f64] = ACTIONS(1742), + [anon_sym_bool] = ACTIONS(1742), + [anon_sym_str] = ACTIONS(1742), + [anon_sym_char] = ACTIONS(1742), + [anon_sym_SQUOTE] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_break] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1742), + [anon_sym_continue] = ACTIONS(1742), + [anon_sym_default] = ACTIONS(1742), + [anon_sym_enum] = ACTIONS(1742), + [anon_sym_fn] = ACTIONS(1742), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_if] = ACTIONS(1742), + [anon_sym_impl] = ACTIONS(1742), + [anon_sym_let] = ACTIONS(1742), + [anon_sym_loop] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_mod] = ACTIONS(1742), + [anon_sym_pub] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1742), + [anon_sym_static] = ACTIONS(1742), + [anon_sym_struct] = ACTIONS(1742), + [anon_sym_trait] = ACTIONS(1742), + [anon_sym_type] = ACTIONS(1742), + [anon_sym_union] = ACTIONS(1742), + [anon_sym_unsafe] = ACTIONS(1742), + [anon_sym_use] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1742), + [anon_sym_POUND] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1740), + [anon_sym_extern] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1740), + [anon_sym_yield] = ACTIONS(1742), + [anon_sym_move] = ACTIONS(1742), + [sym_integer_literal] = ACTIONS(1740), + [aux_sym_string_literal_token1] = ACTIONS(1740), + [sym_char_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1742), + [anon_sym_false] = ACTIONS(1742), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1740), + [sym_raw_string_literal] = ACTIONS(1740), + [sym_float_literal] = ACTIONS(1740), [sym_block_comment] = ACTIONS(3), }, [417] = { - [ts_builtin_sym_end] = ACTIONS(1714), - [sym_identifier] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_macro_rules_BANG] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(1714), - [anon_sym_LBRACE] = ACTIONS(1714), - [anon_sym_RBRACE] = ACTIONS(1714), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1714), - [anon_sym_u8] = ACTIONS(1716), - [anon_sym_i8] = ACTIONS(1716), - [anon_sym_u16] = ACTIONS(1716), - [anon_sym_i16] = ACTIONS(1716), - [anon_sym_u32] = ACTIONS(1716), - [anon_sym_i32] = ACTIONS(1716), - [anon_sym_u64] = ACTIONS(1716), - [anon_sym_i64] = ACTIONS(1716), - [anon_sym_u128] = ACTIONS(1716), - [anon_sym_i128] = ACTIONS(1716), - [anon_sym_isize] = ACTIONS(1716), - [anon_sym_usize] = ACTIONS(1716), - [anon_sym_f32] = ACTIONS(1716), - [anon_sym_f64] = ACTIONS(1716), - [anon_sym_bool] = ACTIONS(1716), - [anon_sym_str] = ACTIONS(1716), - [anon_sym_char] = ACTIONS(1716), - [anon_sym_SQUOTE] = ACTIONS(1716), - [anon_sym_async] = ACTIONS(1716), - [anon_sym_break] = ACTIONS(1716), - [anon_sym_const] = ACTIONS(1716), - [anon_sym_continue] = ACTIONS(1716), - [anon_sym_default] = ACTIONS(1716), - [anon_sym_enum] = ACTIONS(1716), - [anon_sym_fn] = ACTIONS(1716), - [anon_sym_for] = ACTIONS(1716), - [anon_sym_if] = ACTIONS(1716), - [anon_sym_impl] = ACTIONS(1716), - [anon_sym_let] = ACTIONS(1716), - [anon_sym_loop] = ACTIONS(1716), - [anon_sym_match] = ACTIONS(1716), - [anon_sym_mod] = ACTIONS(1716), - [anon_sym_pub] = ACTIONS(1716), - [anon_sym_return] = ACTIONS(1716), - [anon_sym_static] = ACTIONS(1716), - [anon_sym_struct] = ACTIONS(1716), - [anon_sym_trait] = ACTIONS(1716), - [anon_sym_type] = ACTIONS(1716), - [anon_sym_union] = ACTIONS(1716), - [anon_sym_unsafe] = ACTIONS(1716), - [anon_sym_use] = ACTIONS(1716), - [anon_sym_while] = ACTIONS(1716), - [anon_sym_POUND] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1714), - [anon_sym_extern] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(1714), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1714), - [anon_sym_DOT_DOT] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_yield] = ACTIONS(1716), - [anon_sym_move] = ACTIONS(1716), - [sym_integer_literal] = ACTIONS(1714), - [aux_sym_string_literal_token1] = ACTIONS(1714), - [sym_char_literal] = ACTIONS(1714), - [anon_sym_true] = ACTIONS(1716), - [anon_sym_false] = ACTIONS(1716), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1714), - [sym_raw_string_literal] = ACTIONS(1714), - [sym_float_literal] = ACTIONS(1714), + [ts_builtin_sym_end] = ACTIONS(1744), + [sym_identifier] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_macro_rules_BANG] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_RBRACE] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_u8] = ACTIONS(1746), + [anon_sym_i8] = ACTIONS(1746), + [anon_sym_u16] = ACTIONS(1746), + [anon_sym_i16] = ACTIONS(1746), + [anon_sym_u32] = ACTIONS(1746), + [anon_sym_i32] = ACTIONS(1746), + [anon_sym_u64] = ACTIONS(1746), + [anon_sym_i64] = ACTIONS(1746), + [anon_sym_u128] = ACTIONS(1746), + [anon_sym_i128] = ACTIONS(1746), + [anon_sym_isize] = ACTIONS(1746), + [anon_sym_usize] = ACTIONS(1746), + [anon_sym_f32] = ACTIONS(1746), + [anon_sym_f64] = ACTIONS(1746), + [anon_sym_bool] = ACTIONS(1746), + [anon_sym_str] = ACTIONS(1746), + [anon_sym_char] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1746), + [anon_sym_async] = ACTIONS(1746), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_const] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1746), + [anon_sym_default] = ACTIONS(1746), + [anon_sym_enum] = ACTIONS(1746), + [anon_sym_fn] = ACTIONS(1746), + [anon_sym_for] = ACTIONS(1746), + [anon_sym_if] = ACTIONS(1746), + [anon_sym_impl] = ACTIONS(1746), + [anon_sym_let] = ACTIONS(1746), + [anon_sym_loop] = ACTIONS(1746), + [anon_sym_match] = ACTIONS(1746), + [anon_sym_mod] = ACTIONS(1746), + [anon_sym_pub] = ACTIONS(1746), + [anon_sym_return] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(1746), + [anon_sym_struct] = ACTIONS(1746), + [anon_sym_trait] = ACTIONS(1746), + [anon_sym_type] = ACTIONS(1746), + [anon_sym_union] = ACTIONS(1746), + [anon_sym_unsafe] = ACTIONS(1746), + [anon_sym_use] = ACTIONS(1746), + [anon_sym_while] = ACTIONS(1746), + [anon_sym_POUND] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_AMP] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_yield] = ACTIONS(1746), + [anon_sym_move] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [aux_sym_string_literal_token1] = ACTIONS(1744), + [sym_char_literal] = ACTIONS(1744), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1746), + [sym_super] = ACTIONS(1746), + [sym_crate] = ACTIONS(1746), + [sym_metavariable] = ACTIONS(1744), + [sym_raw_string_literal] = ACTIONS(1744), + [sym_float_literal] = ACTIONS(1744), [sym_block_comment] = ACTIONS(3), }, [418] = { - [ts_builtin_sym_end] = ACTIONS(1718), - [sym_identifier] = ACTIONS(1720), - [anon_sym_SEMI] = ACTIONS(1718), - [anon_sym_macro_rules_BANG] = ACTIONS(1718), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_LBRACE] = ACTIONS(1718), - [anon_sym_RBRACE] = ACTIONS(1718), - [anon_sym_LBRACK] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1718), - [anon_sym_u8] = ACTIONS(1720), - [anon_sym_i8] = ACTIONS(1720), - [anon_sym_u16] = ACTIONS(1720), - [anon_sym_i16] = ACTIONS(1720), - [anon_sym_u32] = ACTIONS(1720), - [anon_sym_i32] = ACTIONS(1720), - [anon_sym_u64] = ACTIONS(1720), - [anon_sym_i64] = ACTIONS(1720), - [anon_sym_u128] = ACTIONS(1720), - [anon_sym_i128] = ACTIONS(1720), - [anon_sym_isize] = ACTIONS(1720), - [anon_sym_usize] = ACTIONS(1720), - [anon_sym_f32] = ACTIONS(1720), - [anon_sym_f64] = ACTIONS(1720), - [anon_sym_bool] = ACTIONS(1720), - [anon_sym_str] = ACTIONS(1720), - [anon_sym_char] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(1720), - [anon_sym_async] = ACTIONS(1720), - [anon_sym_break] = ACTIONS(1720), - [anon_sym_const] = ACTIONS(1720), - [anon_sym_continue] = ACTIONS(1720), - [anon_sym_default] = ACTIONS(1720), - [anon_sym_enum] = ACTIONS(1720), - [anon_sym_fn] = ACTIONS(1720), - [anon_sym_for] = ACTIONS(1720), - [anon_sym_if] = ACTIONS(1720), - [anon_sym_impl] = ACTIONS(1720), - [anon_sym_let] = ACTIONS(1720), - [anon_sym_loop] = ACTIONS(1720), - [anon_sym_match] = ACTIONS(1720), - [anon_sym_mod] = ACTIONS(1720), - [anon_sym_pub] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1720), - [anon_sym_static] = ACTIONS(1720), - [anon_sym_struct] = ACTIONS(1720), - [anon_sym_trait] = ACTIONS(1720), - [anon_sym_type] = ACTIONS(1720), - [anon_sym_union] = ACTIONS(1720), - [anon_sym_unsafe] = ACTIONS(1720), - [anon_sym_use] = ACTIONS(1720), - [anon_sym_while] = ACTIONS(1720), - [anon_sym_POUND] = ACTIONS(1718), - [anon_sym_BANG] = ACTIONS(1718), - [anon_sym_extern] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1718), - [anon_sym_COLON_COLON] = ACTIONS(1718), - [anon_sym_AMP] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1718), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(1718), - [anon_sym_yield] = ACTIONS(1720), - [anon_sym_move] = ACTIONS(1720), - [sym_integer_literal] = ACTIONS(1718), - [aux_sym_string_literal_token1] = ACTIONS(1718), - [sym_char_literal] = ACTIONS(1718), - [anon_sym_true] = ACTIONS(1720), - [anon_sym_false] = ACTIONS(1720), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1720), - [sym_super] = ACTIONS(1720), - [sym_crate] = ACTIONS(1720), - [sym_metavariable] = ACTIONS(1718), - [sym_raw_string_literal] = ACTIONS(1718), - [sym_float_literal] = ACTIONS(1718), + [ts_builtin_sym_end] = ACTIONS(1748), + [sym_identifier] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1748), + [anon_sym_macro_rules_BANG] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1748), + [anon_sym_LBRACE] = ACTIONS(1748), + [anon_sym_RBRACE] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1748), + [anon_sym_u8] = ACTIONS(1750), + [anon_sym_i8] = ACTIONS(1750), + [anon_sym_u16] = ACTIONS(1750), + [anon_sym_i16] = ACTIONS(1750), + [anon_sym_u32] = ACTIONS(1750), + [anon_sym_i32] = ACTIONS(1750), + [anon_sym_u64] = ACTIONS(1750), + [anon_sym_i64] = ACTIONS(1750), + [anon_sym_u128] = ACTIONS(1750), + [anon_sym_i128] = ACTIONS(1750), + [anon_sym_isize] = ACTIONS(1750), + [anon_sym_usize] = ACTIONS(1750), + [anon_sym_f32] = ACTIONS(1750), + [anon_sym_f64] = ACTIONS(1750), + [anon_sym_bool] = ACTIONS(1750), + [anon_sym_str] = ACTIONS(1750), + [anon_sym_char] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1750), + [anon_sym_async] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_const] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_enum] = ACTIONS(1750), + [anon_sym_fn] = ACTIONS(1750), + [anon_sym_for] = ACTIONS(1750), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_impl] = ACTIONS(1750), + [anon_sym_let] = ACTIONS(1750), + [anon_sym_loop] = ACTIONS(1750), + [anon_sym_match] = ACTIONS(1750), + [anon_sym_mod] = ACTIONS(1750), + [anon_sym_pub] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_static] = ACTIONS(1750), + [anon_sym_struct] = ACTIONS(1750), + [anon_sym_trait] = ACTIONS(1750), + [anon_sym_type] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_unsafe] = ACTIONS(1750), + [anon_sym_use] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_POUND] = ACTIONS(1748), + [anon_sym_BANG] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1748), + [anon_sym_COLON_COLON] = ACTIONS(1748), + [anon_sym_AMP] = ACTIONS(1748), + [anon_sym_DOT_DOT] = ACTIONS(1748), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_PIPE] = ACTIONS(1748), + [anon_sym_yield] = ACTIONS(1750), + [anon_sym_move] = ACTIONS(1750), + [sym_integer_literal] = ACTIONS(1748), + [aux_sym_string_literal_token1] = ACTIONS(1748), + [sym_char_literal] = ACTIONS(1748), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1750), + [sym_super] = ACTIONS(1750), + [sym_crate] = ACTIONS(1750), + [sym_metavariable] = ACTIONS(1748), + [sym_raw_string_literal] = ACTIONS(1748), + [sym_float_literal] = ACTIONS(1748), [sym_block_comment] = ACTIONS(3), }, [419] = { - [ts_builtin_sym_end] = ACTIONS(1722), - [sym_identifier] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1722), - [anon_sym_macro_rules_BANG] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1722), - [anon_sym_RBRACE] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_u8] = ACTIONS(1724), - [anon_sym_i8] = ACTIONS(1724), - [anon_sym_u16] = ACTIONS(1724), - [anon_sym_i16] = ACTIONS(1724), - [anon_sym_u32] = ACTIONS(1724), - [anon_sym_i32] = ACTIONS(1724), - [anon_sym_u64] = ACTIONS(1724), - [anon_sym_i64] = ACTIONS(1724), - [anon_sym_u128] = ACTIONS(1724), - [anon_sym_i128] = ACTIONS(1724), - [anon_sym_isize] = ACTIONS(1724), - [anon_sym_usize] = ACTIONS(1724), - [anon_sym_f32] = ACTIONS(1724), - [anon_sym_f64] = ACTIONS(1724), - [anon_sym_bool] = ACTIONS(1724), - [anon_sym_str] = ACTIONS(1724), - [anon_sym_char] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_async] = ACTIONS(1724), - [anon_sym_break] = ACTIONS(1724), - [anon_sym_const] = ACTIONS(1724), - [anon_sym_continue] = ACTIONS(1724), - [anon_sym_default] = ACTIONS(1724), - [anon_sym_enum] = ACTIONS(1724), - [anon_sym_fn] = ACTIONS(1724), - [anon_sym_for] = ACTIONS(1724), - [anon_sym_if] = ACTIONS(1724), - [anon_sym_impl] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(1724), - [anon_sym_loop] = ACTIONS(1724), - [anon_sym_match] = ACTIONS(1724), - [anon_sym_mod] = ACTIONS(1724), - [anon_sym_pub] = ACTIONS(1724), - [anon_sym_return] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1724), - [anon_sym_struct] = ACTIONS(1724), - [anon_sym_trait] = ACTIONS(1724), - [anon_sym_type] = ACTIONS(1724), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1724), - [anon_sym_use] = ACTIONS(1724), - [anon_sym_while] = ACTIONS(1724), - [anon_sym_POUND] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_COLON_COLON] = ACTIONS(1722), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_DOT_DOT] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_yield] = ACTIONS(1724), - [anon_sym_move] = ACTIONS(1724), - [sym_integer_literal] = ACTIONS(1722), - [aux_sym_string_literal_token1] = ACTIONS(1722), - [sym_char_literal] = ACTIONS(1722), - [anon_sym_true] = ACTIONS(1724), - [anon_sym_false] = ACTIONS(1724), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1724), - [sym_super] = ACTIONS(1724), - [sym_crate] = ACTIONS(1724), - [sym_metavariable] = ACTIONS(1722), - [sym_raw_string_literal] = ACTIONS(1722), - [sym_float_literal] = ACTIONS(1722), + [ts_builtin_sym_end] = ACTIONS(1752), + [sym_identifier] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_macro_rules_BANG] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_u8] = ACTIONS(1754), + [anon_sym_i8] = ACTIONS(1754), + [anon_sym_u16] = ACTIONS(1754), + [anon_sym_i16] = ACTIONS(1754), + [anon_sym_u32] = ACTIONS(1754), + [anon_sym_i32] = ACTIONS(1754), + [anon_sym_u64] = ACTIONS(1754), + [anon_sym_i64] = ACTIONS(1754), + [anon_sym_u128] = ACTIONS(1754), + [anon_sym_i128] = ACTIONS(1754), + [anon_sym_isize] = ACTIONS(1754), + [anon_sym_usize] = ACTIONS(1754), + [anon_sym_f32] = ACTIONS(1754), + [anon_sym_f64] = ACTIONS(1754), + [anon_sym_bool] = ACTIONS(1754), + [anon_sym_str] = ACTIONS(1754), + [anon_sym_char] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1754), + [anon_sym_async] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_const] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_default] = ACTIONS(1754), + [anon_sym_enum] = ACTIONS(1754), + [anon_sym_fn] = ACTIONS(1754), + [anon_sym_for] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_impl] = ACTIONS(1754), + [anon_sym_let] = ACTIONS(1754), + [anon_sym_loop] = ACTIONS(1754), + [anon_sym_match] = ACTIONS(1754), + [anon_sym_mod] = ACTIONS(1754), + [anon_sym_pub] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(1754), + [anon_sym_trait] = ACTIONS(1754), + [anon_sym_type] = ACTIONS(1754), + [anon_sym_union] = ACTIONS(1754), + [anon_sym_unsafe] = ACTIONS(1754), + [anon_sym_use] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_POUND] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_extern] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_PIPE] = ACTIONS(1752), + [anon_sym_yield] = ACTIONS(1754), + [anon_sym_move] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [aux_sym_string_literal_token1] = ACTIONS(1752), + [sym_char_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1754), + [sym_super] = ACTIONS(1754), + [sym_crate] = ACTIONS(1754), + [sym_metavariable] = ACTIONS(1752), + [sym_raw_string_literal] = ACTIONS(1752), + [sym_float_literal] = ACTIONS(1752), [sym_block_comment] = ACTIONS(3), }, [420] = { - [ts_builtin_sym_end] = ACTIONS(1726), - [sym_identifier] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_macro_rules_BANG] = ACTIONS(1726), - [anon_sym_LPAREN] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1726), - [anon_sym_u8] = ACTIONS(1728), - [anon_sym_i8] = ACTIONS(1728), - [anon_sym_u16] = ACTIONS(1728), - [anon_sym_i16] = ACTIONS(1728), - [anon_sym_u32] = ACTIONS(1728), - [anon_sym_i32] = ACTIONS(1728), - [anon_sym_u64] = ACTIONS(1728), - [anon_sym_i64] = ACTIONS(1728), - [anon_sym_u128] = ACTIONS(1728), - [anon_sym_i128] = ACTIONS(1728), - [anon_sym_isize] = ACTIONS(1728), - [anon_sym_usize] = ACTIONS(1728), - [anon_sym_f32] = ACTIONS(1728), - [anon_sym_f64] = ACTIONS(1728), - [anon_sym_bool] = ACTIONS(1728), - [anon_sym_str] = ACTIONS(1728), - [anon_sym_char] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_async] = ACTIONS(1728), - [anon_sym_break] = ACTIONS(1728), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_continue] = ACTIONS(1728), - [anon_sym_default] = ACTIONS(1728), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_fn] = ACTIONS(1728), - [anon_sym_for] = ACTIONS(1728), - [anon_sym_if] = ACTIONS(1728), - [anon_sym_impl] = ACTIONS(1728), - [anon_sym_let] = ACTIONS(1728), - [anon_sym_loop] = ACTIONS(1728), - [anon_sym_match] = ACTIONS(1728), - [anon_sym_mod] = ACTIONS(1728), - [anon_sym_pub] = ACTIONS(1728), - [anon_sym_return] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(1728), - [anon_sym_trait] = ACTIONS(1728), - [anon_sym_type] = ACTIONS(1728), - [anon_sym_union] = ACTIONS(1728), - [anon_sym_unsafe] = ACTIONS(1728), - [anon_sym_use] = ACTIONS(1728), - [anon_sym_while] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(1726), - [anon_sym_BANG] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_AMP] = ACTIONS(1726), - [anon_sym_DOT_DOT] = ACTIONS(1726), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_yield] = ACTIONS(1728), - [anon_sym_move] = ACTIONS(1728), - [sym_integer_literal] = ACTIONS(1726), - [aux_sym_string_literal_token1] = ACTIONS(1726), - [sym_char_literal] = ACTIONS(1726), - [anon_sym_true] = ACTIONS(1728), - [anon_sym_false] = ACTIONS(1728), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1726), - [sym_raw_string_literal] = ACTIONS(1726), - [sym_float_literal] = ACTIONS(1726), + [ts_builtin_sym_end] = ACTIONS(1756), + [sym_identifier] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_macro_rules_BANG] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1756), + [anon_sym_u8] = ACTIONS(1758), + [anon_sym_i8] = ACTIONS(1758), + [anon_sym_u16] = ACTIONS(1758), + [anon_sym_i16] = ACTIONS(1758), + [anon_sym_u32] = ACTIONS(1758), + [anon_sym_i32] = ACTIONS(1758), + [anon_sym_u64] = ACTIONS(1758), + [anon_sym_i64] = ACTIONS(1758), + [anon_sym_u128] = ACTIONS(1758), + [anon_sym_i128] = ACTIONS(1758), + [anon_sym_isize] = ACTIONS(1758), + [anon_sym_usize] = ACTIONS(1758), + [anon_sym_f32] = ACTIONS(1758), + [anon_sym_f64] = ACTIONS(1758), + [anon_sym_bool] = ACTIONS(1758), + [anon_sym_str] = ACTIONS(1758), + [anon_sym_char] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1758), + [anon_sym_async] = ACTIONS(1758), + [anon_sym_break] = ACTIONS(1758), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_continue] = ACTIONS(1758), + [anon_sym_default] = ACTIONS(1758), + [anon_sym_enum] = ACTIONS(1758), + [anon_sym_fn] = ACTIONS(1758), + [anon_sym_for] = ACTIONS(1758), + [anon_sym_if] = ACTIONS(1758), + [anon_sym_impl] = ACTIONS(1758), + [anon_sym_let] = ACTIONS(1758), + [anon_sym_loop] = ACTIONS(1758), + [anon_sym_match] = ACTIONS(1758), + [anon_sym_mod] = ACTIONS(1758), + [anon_sym_pub] = ACTIONS(1758), + [anon_sym_return] = ACTIONS(1758), + [anon_sym_static] = ACTIONS(1758), + [anon_sym_struct] = ACTIONS(1758), + [anon_sym_trait] = ACTIONS(1758), + [anon_sym_type] = ACTIONS(1758), + [anon_sym_union] = ACTIONS(1758), + [anon_sym_unsafe] = ACTIONS(1758), + [anon_sym_use] = ACTIONS(1758), + [anon_sym_while] = ACTIONS(1758), + [anon_sym_POUND] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1756), + [anon_sym_extern] = ACTIONS(1758), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_yield] = ACTIONS(1758), + [anon_sym_move] = ACTIONS(1758), + [sym_integer_literal] = ACTIONS(1756), + [aux_sym_string_literal_token1] = ACTIONS(1756), + [sym_char_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1758), + [anon_sym_false] = ACTIONS(1758), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1758), + [sym_super] = ACTIONS(1758), + [sym_crate] = ACTIONS(1758), + [sym_metavariable] = ACTIONS(1756), + [sym_raw_string_literal] = ACTIONS(1756), + [sym_float_literal] = ACTIONS(1756), [sym_block_comment] = ACTIONS(3), }, [421] = { - [ts_builtin_sym_end] = ACTIONS(548), - [sym_identifier] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(548), - [anon_sym_macro_rules_BANG] = ACTIONS(548), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_u8] = ACTIONS(550), - [anon_sym_i8] = ACTIONS(550), - [anon_sym_u16] = ACTIONS(550), - [anon_sym_i16] = ACTIONS(550), - [anon_sym_u32] = ACTIONS(550), - [anon_sym_i32] = ACTIONS(550), - [anon_sym_u64] = ACTIONS(550), - [anon_sym_i64] = ACTIONS(550), - [anon_sym_u128] = ACTIONS(550), - [anon_sym_i128] = ACTIONS(550), - [anon_sym_isize] = ACTIONS(550), - [anon_sym_usize] = ACTIONS(550), - [anon_sym_f32] = ACTIONS(550), - [anon_sym_f64] = ACTIONS(550), - [anon_sym_bool] = ACTIONS(550), - [anon_sym_str] = ACTIONS(550), - [anon_sym_char] = ACTIONS(550), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_async] = ACTIONS(550), - [anon_sym_break] = ACTIONS(550), - [anon_sym_const] = ACTIONS(550), - [anon_sym_continue] = ACTIONS(550), - [anon_sym_default] = ACTIONS(550), - [anon_sym_enum] = ACTIONS(550), - [anon_sym_fn] = ACTIONS(550), - [anon_sym_for] = ACTIONS(550), - [anon_sym_if] = ACTIONS(550), - [anon_sym_impl] = ACTIONS(550), - [anon_sym_let] = ACTIONS(550), - [anon_sym_loop] = ACTIONS(550), - [anon_sym_match] = ACTIONS(550), - [anon_sym_mod] = ACTIONS(550), - [anon_sym_pub] = ACTIONS(550), - [anon_sym_return] = ACTIONS(550), - [anon_sym_static] = ACTIONS(550), - [anon_sym_struct] = ACTIONS(550), - [anon_sym_trait] = ACTIONS(550), - [anon_sym_type] = ACTIONS(550), - [anon_sym_union] = ACTIONS(550), - [anon_sym_unsafe] = ACTIONS(550), - [anon_sym_use] = ACTIONS(550), - [anon_sym_while] = ACTIONS(550), - [anon_sym_POUND] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(548), - [anon_sym_extern] = ACTIONS(550), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_COLON_COLON] = ACTIONS(548), - [anon_sym_AMP] = ACTIONS(548), - [anon_sym_DOT_DOT] = ACTIONS(548), - [anon_sym_DASH] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_yield] = ACTIONS(550), - [anon_sym_move] = ACTIONS(550), - [sym_integer_literal] = ACTIONS(548), - [aux_sym_string_literal_token1] = ACTIONS(548), - [sym_char_literal] = ACTIONS(548), - [anon_sym_true] = ACTIONS(550), - [anon_sym_false] = ACTIONS(550), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(550), - [sym_super] = ACTIONS(550), - [sym_crate] = ACTIONS(550), - [sym_metavariable] = ACTIONS(548), - [sym_raw_string_literal] = ACTIONS(548), - [sym_float_literal] = ACTIONS(548), + [ts_builtin_sym_end] = ACTIONS(1760), + [sym_identifier] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_macro_rules_BANG] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_LBRACK] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_u8] = ACTIONS(1762), + [anon_sym_i8] = ACTIONS(1762), + [anon_sym_u16] = ACTIONS(1762), + [anon_sym_i16] = ACTIONS(1762), + [anon_sym_u32] = ACTIONS(1762), + [anon_sym_i32] = ACTIONS(1762), + [anon_sym_u64] = ACTIONS(1762), + [anon_sym_i64] = ACTIONS(1762), + [anon_sym_u128] = ACTIONS(1762), + [anon_sym_i128] = ACTIONS(1762), + [anon_sym_isize] = ACTIONS(1762), + [anon_sym_usize] = ACTIONS(1762), + [anon_sym_f32] = ACTIONS(1762), + [anon_sym_f64] = ACTIONS(1762), + [anon_sym_bool] = ACTIONS(1762), + [anon_sym_str] = ACTIONS(1762), + [anon_sym_char] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1762), + [anon_sym_async] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_default] = ACTIONS(1762), + [anon_sym_enum] = ACTIONS(1762), + [anon_sym_fn] = ACTIONS(1762), + [anon_sym_for] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_impl] = ACTIONS(1762), + [anon_sym_let] = ACTIONS(1762), + [anon_sym_loop] = ACTIONS(1762), + [anon_sym_match] = ACTIONS(1762), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_pub] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_struct] = ACTIONS(1762), + [anon_sym_trait] = ACTIONS(1762), + [anon_sym_type] = ACTIONS(1762), + [anon_sym_union] = ACTIONS(1762), + [anon_sym_unsafe] = ACTIONS(1762), + [anon_sym_use] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1760), + [anon_sym_AMP] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_yield] = ACTIONS(1762), + [anon_sym_move] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [aux_sym_string_literal_token1] = ACTIONS(1760), + [sym_char_literal] = ACTIONS(1760), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1762), + [sym_super] = ACTIONS(1762), + [sym_crate] = ACTIONS(1762), + [sym_metavariable] = ACTIONS(1760), + [sym_raw_string_literal] = ACTIONS(1760), + [sym_float_literal] = ACTIONS(1760), [sym_block_comment] = ACTIONS(3), }, [422] = { - [ts_builtin_sym_end] = ACTIONS(1730), - [sym_identifier] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1730), - [anon_sym_macro_rules_BANG] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1730), - [anon_sym_RBRACE] = ACTIONS(1730), - [anon_sym_LBRACK] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1730), - [anon_sym_u8] = ACTIONS(1732), - [anon_sym_i8] = ACTIONS(1732), - [anon_sym_u16] = ACTIONS(1732), - [anon_sym_i16] = ACTIONS(1732), - [anon_sym_u32] = ACTIONS(1732), - [anon_sym_i32] = ACTIONS(1732), - [anon_sym_u64] = ACTIONS(1732), - [anon_sym_i64] = ACTIONS(1732), - [anon_sym_u128] = ACTIONS(1732), - [anon_sym_i128] = ACTIONS(1732), - [anon_sym_isize] = ACTIONS(1732), - [anon_sym_usize] = ACTIONS(1732), - [anon_sym_f32] = ACTIONS(1732), - [anon_sym_f64] = ACTIONS(1732), - [anon_sym_bool] = ACTIONS(1732), - [anon_sym_str] = ACTIONS(1732), - [anon_sym_char] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1732), - [anon_sym_async] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_default] = ACTIONS(1732), - [anon_sym_enum] = ACTIONS(1732), - [anon_sym_fn] = ACTIONS(1732), - [anon_sym_for] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_impl] = ACTIONS(1732), - [anon_sym_let] = ACTIONS(1732), - [anon_sym_loop] = ACTIONS(1732), - [anon_sym_match] = ACTIONS(1732), - [anon_sym_mod] = ACTIONS(1732), - [anon_sym_pub] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_struct] = ACTIONS(1732), - [anon_sym_trait] = ACTIONS(1732), - [anon_sym_type] = ACTIONS(1732), - [anon_sym_union] = ACTIONS(1732), - [anon_sym_unsafe] = ACTIONS(1732), - [anon_sym_use] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_POUND] = ACTIONS(1730), - [anon_sym_BANG] = ACTIONS(1730), - [anon_sym_extern] = ACTIONS(1732), - [anon_sym_LT] = ACTIONS(1730), - [anon_sym_COLON_COLON] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1730), - [anon_sym_DOT_DOT] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1730), - [anon_sym_yield] = ACTIONS(1732), - [anon_sym_move] = ACTIONS(1732), - [sym_integer_literal] = ACTIONS(1730), - [aux_sym_string_literal_token1] = ACTIONS(1730), - [sym_char_literal] = ACTIONS(1730), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1732), - [sym_super] = ACTIONS(1732), - [sym_crate] = ACTIONS(1732), - [sym_metavariable] = ACTIONS(1730), - [sym_raw_string_literal] = ACTIONS(1730), - [sym_float_literal] = ACTIONS(1730), + [ts_builtin_sym_end] = ACTIONS(1764), + [sym_identifier] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_macro_rules_BANG] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_u8] = ACTIONS(1766), + [anon_sym_i8] = ACTIONS(1766), + [anon_sym_u16] = ACTIONS(1766), + [anon_sym_i16] = ACTIONS(1766), + [anon_sym_u32] = ACTIONS(1766), + [anon_sym_i32] = ACTIONS(1766), + [anon_sym_u64] = ACTIONS(1766), + [anon_sym_i64] = ACTIONS(1766), + [anon_sym_u128] = ACTIONS(1766), + [anon_sym_i128] = ACTIONS(1766), + [anon_sym_isize] = ACTIONS(1766), + [anon_sym_usize] = ACTIONS(1766), + [anon_sym_f32] = ACTIONS(1766), + [anon_sym_f64] = ACTIONS(1766), + [anon_sym_bool] = ACTIONS(1766), + [anon_sym_str] = ACTIONS(1766), + [anon_sym_char] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_async] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_default] = ACTIONS(1766), + [anon_sym_enum] = ACTIONS(1766), + [anon_sym_fn] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_impl] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_loop] = ACTIONS(1766), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_mod] = ACTIONS(1766), + [anon_sym_pub] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_static] = ACTIONS(1766), + [anon_sym_struct] = ACTIONS(1766), + [anon_sym_trait] = ACTIONS(1766), + [anon_sym_type] = ACTIONS(1766), + [anon_sym_union] = ACTIONS(1766), + [anon_sym_unsafe] = ACTIONS(1766), + [anon_sym_use] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_AMP] = ACTIONS(1764), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_DASH] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1764), + [anon_sym_yield] = ACTIONS(1766), + [anon_sym_move] = ACTIONS(1766), + [sym_integer_literal] = ACTIONS(1764), + [aux_sym_string_literal_token1] = ACTIONS(1764), + [sym_char_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1766), + [anon_sym_false] = ACTIONS(1766), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1766), + [sym_super] = ACTIONS(1766), + [sym_crate] = ACTIONS(1766), + [sym_metavariable] = ACTIONS(1764), + [sym_raw_string_literal] = ACTIONS(1764), + [sym_float_literal] = ACTIONS(1764), [sym_block_comment] = ACTIONS(3), }, [423] = { - [ts_builtin_sym_end] = ACTIONS(1734), - [sym_identifier] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_macro_rules_BANG] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_u8] = ACTIONS(1736), - [anon_sym_i8] = ACTIONS(1736), - [anon_sym_u16] = ACTIONS(1736), - [anon_sym_i16] = ACTIONS(1736), - [anon_sym_u32] = ACTIONS(1736), - [anon_sym_i32] = ACTIONS(1736), - [anon_sym_u64] = ACTIONS(1736), - [anon_sym_i64] = ACTIONS(1736), - [anon_sym_u128] = ACTIONS(1736), - [anon_sym_i128] = ACTIONS(1736), - [anon_sym_isize] = ACTIONS(1736), - [anon_sym_usize] = ACTIONS(1736), - [anon_sym_f32] = ACTIONS(1736), - [anon_sym_f64] = ACTIONS(1736), - [anon_sym_bool] = ACTIONS(1736), - [anon_sym_str] = ACTIONS(1736), - [anon_sym_char] = ACTIONS(1736), - [anon_sym_SQUOTE] = ACTIONS(1736), - [anon_sym_async] = ACTIONS(1736), - [anon_sym_break] = ACTIONS(1736), - [anon_sym_const] = ACTIONS(1736), - [anon_sym_continue] = ACTIONS(1736), - [anon_sym_default] = ACTIONS(1736), - [anon_sym_enum] = ACTIONS(1736), - [anon_sym_fn] = ACTIONS(1736), - [anon_sym_for] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(1736), - [anon_sym_impl] = ACTIONS(1736), - [anon_sym_let] = ACTIONS(1736), - [anon_sym_loop] = ACTIONS(1736), - [anon_sym_match] = ACTIONS(1736), - [anon_sym_mod] = ACTIONS(1736), - [anon_sym_pub] = ACTIONS(1736), - [anon_sym_return] = ACTIONS(1736), - [anon_sym_static] = ACTIONS(1736), - [anon_sym_struct] = ACTIONS(1736), - [anon_sym_trait] = ACTIONS(1736), - [anon_sym_type] = ACTIONS(1736), - [anon_sym_union] = ACTIONS(1736), - [anon_sym_unsafe] = ACTIONS(1736), - [anon_sym_use] = ACTIONS(1736), - [anon_sym_while] = ACTIONS(1736), - [anon_sym_POUND] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_extern] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_AMP] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1734), - [anon_sym_yield] = ACTIONS(1736), - [anon_sym_move] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [aux_sym_string_literal_token1] = ACTIONS(1734), - [sym_char_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1736), - [anon_sym_false] = ACTIONS(1736), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1736), - [sym_super] = ACTIONS(1736), - [sym_crate] = ACTIONS(1736), - [sym_metavariable] = ACTIONS(1734), - [sym_raw_string_literal] = ACTIONS(1734), - [sym_float_literal] = ACTIONS(1734), + [ts_builtin_sym_end] = ACTIONS(1768), + [sym_identifier] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_macro_rules_BANG] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_u8] = ACTIONS(1770), + [anon_sym_i8] = ACTIONS(1770), + [anon_sym_u16] = ACTIONS(1770), + [anon_sym_i16] = ACTIONS(1770), + [anon_sym_u32] = ACTIONS(1770), + [anon_sym_i32] = ACTIONS(1770), + [anon_sym_u64] = ACTIONS(1770), + [anon_sym_i64] = ACTIONS(1770), + [anon_sym_u128] = ACTIONS(1770), + [anon_sym_i128] = ACTIONS(1770), + [anon_sym_isize] = ACTIONS(1770), + [anon_sym_usize] = ACTIONS(1770), + [anon_sym_f32] = ACTIONS(1770), + [anon_sym_f64] = ACTIONS(1770), + [anon_sym_bool] = ACTIONS(1770), + [anon_sym_str] = ACTIONS(1770), + [anon_sym_char] = ACTIONS(1770), + [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_async] = ACTIONS(1770), + [anon_sym_break] = ACTIONS(1770), + [anon_sym_const] = ACTIONS(1770), + [anon_sym_continue] = ACTIONS(1770), + [anon_sym_default] = ACTIONS(1770), + [anon_sym_enum] = ACTIONS(1770), + [anon_sym_fn] = ACTIONS(1770), + [anon_sym_for] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_impl] = ACTIONS(1770), + [anon_sym_let] = ACTIONS(1770), + [anon_sym_loop] = ACTIONS(1770), + [anon_sym_match] = ACTIONS(1770), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_pub] = ACTIONS(1770), + [anon_sym_return] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1770), + [anon_sym_struct] = ACTIONS(1770), + [anon_sym_trait] = ACTIONS(1770), + [anon_sym_type] = ACTIONS(1770), + [anon_sym_union] = ACTIONS(1770), + [anon_sym_unsafe] = ACTIONS(1770), + [anon_sym_use] = ACTIONS(1770), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_extern] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1768), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_yield] = ACTIONS(1770), + [anon_sym_move] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [aux_sym_string_literal_token1] = ACTIONS(1768), + [sym_char_literal] = ACTIONS(1768), + [anon_sym_true] = ACTIONS(1770), + [anon_sym_false] = ACTIONS(1770), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1770), + [sym_super] = ACTIONS(1770), + [sym_crate] = ACTIONS(1770), + [sym_metavariable] = ACTIONS(1768), + [sym_raw_string_literal] = ACTIONS(1768), + [sym_float_literal] = ACTIONS(1768), [sym_block_comment] = ACTIONS(3), }, [424] = { - [ts_builtin_sym_end] = ACTIONS(1738), - [sym_identifier] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_macro_rules_BANG] = ACTIONS(1738), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1738), - [anon_sym_u8] = ACTIONS(1740), - [anon_sym_i8] = ACTIONS(1740), - [anon_sym_u16] = ACTIONS(1740), - [anon_sym_i16] = ACTIONS(1740), - [anon_sym_u32] = ACTIONS(1740), - [anon_sym_i32] = ACTIONS(1740), - [anon_sym_u64] = ACTIONS(1740), - [anon_sym_i64] = ACTIONS(1740), - [anon_sym_u128] = ACTIONS(1740), - [anon_sym_i128] = ACTIONS(1740), - [anon_sym_isize] = ACTIONS(1740), - [anon_sym_usize] = ACTIONS(1740), - [anon_sym_f32] = ACTIONS(1740), - [anon_sym_f64] = ACTIONS(1740), - [anon_sym_bool] = ACTIONS(1740), - [anon_sym_str] = ACTIONS(1740), - [anon_sym_char] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_async] = ACTIONS(1740), - [anon_sym_break] = ACTIONS(1740), - [anon_sym_const] = ACTIONS(1740), - [anon_sym_continue] = ACTIONS(1740), - [anon_sym_default] = ACTIONS(1740), - [anon_sym_enum] = ACTIONS(1740), - [anon_sym_fn] = ACTIONS(1740), - [anon_sym_for] = ACTIONS(1740), - [anon_sym_if] = ACTIONS(1740), - [anon_sym_impl] = ACTIONS(1740), - [anon_sym_let] = ACTIONS(1740), - [anon_sym_loop] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1740), - [anon_sym_mod] = ACTIONS(1740), - [anon_sym_pub] = ACTIONS(1740), - [anon_sym_return] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1740), - [anon_sym_struct] = ACTIONS(1740), - [anon_sym_trait] = ACTIONS(1740), - [anon_sym_type] = ACTIONS(1740), - [anon_sym_union] = ACTIONS(1740), - [anon_sym_unsafe] = ACTIONS(1740), - [anon_sym_use] = ACTIONS(1740), - [anon_sym_while] = ACTIONS(1740), - [anon_sym_POUND] = ACTIONS(1738), - [anon_sym_BANG] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1740), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_COLON_COLON] = ACTIONS(1738), - [anon_sym_AMP] = ACTIONS(1738), - [anon_sym_DOT_DOT] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_yield] = ACTIONS(1740), - [anon_sym_move] = ACTIONS(1740), - [sym_integer_literal] = ACTIONS(1738), - [aux_sym_string_literal_token1] = ACTIONS(1738), - [sym_char_literal] = ACTIONS(1738), - [anon_sym_true] = ACTIONS(1740), - [anon_sym_false] = ACTIONS(1740), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1740), - [sym_super] = ACTIONS(1740), - [sym_crate] = ACTIONS(1740), - [sym_metavariable] = ACTIONS(1738), - [sym_raw_string_literal] = ACTIONS(1738), - [sym_float_literal] = ACTIONS(1738), + [ts_builtin_sym_end] = ACTIONS(1772), + [sym_identifier] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_macro_rules_BANG] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_u8] = ACTIONS(1774), + [anon_sym_i8] = ACTIONS(1774), + [anon_sym_u16] = ACTIONS(1774), + [anon_sym_i16] = ACTIONS(1774), + [anon_sym_u32] = ACTIONS(1774), + [anon_sym_i32] = ACTIONS(1774), + [anon_sym_u64] = ACTIONS(1774), + [anon_sym_i64] = ACTIONS(1774), + [anon_sym_u128] = ACTIONS(1774), + [anon_sym_i128] = ACTIONS(1774), + [anon_sym_isize] = ACTIONS(1774), + [anon_sym_usize] = ACTIONS(1774), + [anon_sym_f32] = ACTIONS(1774), + [anon_sym_f64] = ACTIONS(1774), + [anon_sym_bool] = ACTIONS(1774), + [anon_sym_str] = ACTIONS(1774), + [anon_sym_char] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_async] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_const] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1774), + [anon_sym_enum] = ACTIONS(1774), + [anon_sym_fn] = ACTIONS(1774), + [anon_sym_for] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_impl] = ACTIONS(1774), + [anon_sym_let] = ACTIONS(1774), + [anon_sym_loop] = ACTIONS(1774), + [anon_sym_match] = ACTIONS(1774), + [anon_sym_mod] = ACTIONS(1774), + [anon_sym_pub] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1774), + [anon_sym_struct] = ACTIONS(1774), + [anon_sym_trait] = ACTIONS(1774), + [anon_sym_type] = ACTIONS(1774), + [anon_sym_union] = ACTIONS(1774), + [anon_sym_unsafe] = ACTIONS(1774), + [anon_sym_use] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_BANG] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1774), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_COLON_COLON] = ACTIONS(1772), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym_DOT_DOT] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_yield] = ACTIONS(1774), + [anon_sym_move] = ACTIONS(1774), + [sym_integer_literal] = ACTIONS(1772), + [aux_sym_string_literal_token1] = ACTIONS(1772), + [sym_char_literal] = ACTIONS(1772), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1774), + [sym_super] = ACTIONS(1774), + [sym_crate] = ACTIONS(1774), + [sym_metavariable] = ACTIONS(1772), + [sym_raw_string_literal] = ACTIONS(1772), + [sym_float_literal] = ACTIONS(1772), [sym_block_comment] = ACTIONS(3), }, [425] = { - [ts_builtin_sym_end] = ACTIONS(1742), - [sym_identifier] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1742), - [anon_sym_macro_rules_BANG] = ACTIONS(1742), - [anon_sym_LPAREN] = ACTIONS(1742), - [anon_sym_LBRACE] = ACTIONS(1742), - [anon_sym_RBRACE] = ACTIONS(1742), - [anon_sym_LBRACK] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1742), - [anon_sym_u8] = ACTIONS(1744), - [anon_sym_i8] = ACTIONS(1744), - [anon_sym_u16] = ACTIONS(1744), - [anon_sym_i16] = ACTIONS(1744), - [anon_sym_u32] = ACTIONS(1744), - [anon_sym_i32] = ACTIONS(1744), - [anon_sym_u64] = ACTIONS(1744), - [anon_sym_i64] = ACTIONS(1744), - [anon_sym_u128] = ACTIONS(1744), - [anon_sym_i128] = ACTIONS(1744), - [anon_sym_isize] = ACTIONS(1744), - [anon_sym_usize] = ACTIONS(1744), - [anon_sym_f32] = ACTIONS(1744), - [anon_sym_f64] = ACTIONS(1744), - [anon_sym_bool] = ACTIONS(1744), - [anon_sym_str] = ACTIONS(1744), - [anon_sym_char] = ACTIONS(1744), - [anon_sym_SQUOTE] = ACTIONS(1744), - [anon_sym_async] = ACTIONS(1744), - [anon_sym_break] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1744), - [anon_sym_continue] = ACTIONS(1744), - [anon_sym_default] = ACTIONS(1744), - [anon_sym_enum] = ACTIONS(1744), - [anon_sym_fn] = ACTIONS(1744), - [anon_sym_for] = ACTIONS(1744), - [anon_sym_if] = ACTIONS(1744), - [anon_sym_impl] = ACTIONS(1744), - [anon_sym_let] = ACTIONS(1744), - [anon_sym_loop] = ACTIONS(1744), - [anon_sym_match] = ACTIONS(1744), - [anon_sym_mod] = ACTIONS(1744), - [anon_sym_pub] = ACTIONS(1744), - [anon_sym_return] = ACTIONS(1744), - [anon_sym_static] = ACTIONS(1744), - [anon_sym_struct] = ACTIONS(1744), - [anon_sym_trait] = ACTIONS(1744), - [anon_sym_type] = ACTIONS(1744), - [anon_sym_union] = ACTIONS(1744), - [anon_sym_unsafe] = ACTIONS(1744), - [anon_sym_use] = ACTIONS(1744), - [anon_sym_while] = ACTIONS(1744), - [anon_sym_POUND] = ACTIONS(1742), - [anon_sym_BANG] = ACTIONS(1742), - [anon_sym_extern] = ACTIONS(1744), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_COLON_COLON] = ACTIONS(1742), - [anon_sym_AMP] = ACTIONS(1742), - [anon_sym_DOT_DOT] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_yield] = ACTIONS(1744), - [anon_sym_move] = ACTIONS(1744), - [sym_integer_literal] = ACTIONS(1742), - [aux_sym_string_literal_token1] = ACTIONS(1742), - [sym_char_literal] = ACTIONS(1742), - [anon_sym_true] = ACTIONS(1744), - [anon_sym_false] = ACTIONS(1744), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1744), - [sym_super] = ACTIONS(1744), - [sym_crate] = ACTIONS(1744), - [sym_metavariable] = ACTIONS(1742), - [sym_raw_string_literal] = ACTIONS(1742), - [sym_float_literal] = ACTIONS(1742), + [ts_builtin_sym_end] = ACTIONS(1776), + [sym_identifier] = ACTIONS(1778), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_macro_rules_BANG] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_u8] = ACTIONS(1778), + [anon_sym_i8] = ACTIONS(1778), + [anon_sym_u16] = ACTIONS(1778), + [anon_sym_i16] = ACTIONS(1778), + [anon_sym_u32] = ACTIONS(1778), + [anon_sym_i32] = ACTIONS(1778), + [anon_sym_u64] = ACTIONS(1778), + [anon_sym_i64] = ACTIONS(1778), + [anon_sym_u128] = ACTIONS(1778), + [anon_sym_i128] = ACTIONS(1778), + [anon_sym_isize] = ACTIONS(1778), + [anon_sym_usize] = ACTIONS(1778), + [anon_sym_f32] = ACTIONS(1778), + [anon_sym_f64] = ACTIONS(1778), + [anon_sym_bool] = ACTIONS(1778), + [anon_sym_str] = ACTIONS(1778), + [anon_sym_char] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(1778), + [anon_sym_async] = ACTIONS(1778), + [anon_sym_break] = ACTIONS(1778), + [anon_sym_const] = ACTIONS(1778), + [anon_sym_continue] = ACTIONS(1778), + [anon_sym_default] = ACTIONS(1778), + [anon_sym_enum] = ACTIONS(1778), + [anon_sym_fn] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1778), + [anon_sym_if] = ACTIONS(1778), + [anon_sym_impl] = ACTIONS(1778), + [anon_sym_let] = ACTIONS(1778), + [anon_sym_loop] = ACTIONS(1778), + [anon_sym_match] = ACTIONS(1778), + [anon_sym_mod] = ACTIONS(1778), + [anon_sym_pub] = ACTIONS(1778), + [anon_sym_return] = ACTIONS(1778), + [anon_sym_static] = ACTIONS(1778), + [anon_sym_struct] = ACTIONS(1778), + [anon_sym_trait] = ACTIONS(1778), + [anon_sym_type] = ACTIONS(1778), + [anon_sym_union] = ACTIONS(1778), + [anon_sym_unsafe] = ACTIONS(1778), + [anon_sym_use] = ACTIONS(1778), + [anon_sym_while] = ACTIONS(1778), + [anon_sym_POUND] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1776), + [anon_sym_extern] = ACTIONS(1778), + [anon_sym_LT] = ACTIONS(1776), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(1776), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_DASH] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1776), + [anon_sym_yield] = ACTIONS(1778), + [anon_sym_move] = ACTIONS(1778), + [sym_integer_literal] = ACTIONS(1776), + [aux_sym_string_literal_token1] = ACTIONS(1776), + [sym_char_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1778), + [anon_sym_false] = ACTIONS(1778), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1778), + [sym_super] = ACTIONS(1778), + [sym_crate] = ACTIONS(1778), + [sym_metavariable] = ACTIONS(1776), + [sym_raw_string_literal] = ACTIONS(1776), + [sym_float_literal] = ACTIONS(1776), [sym_block_comment] = ACTIONS(3), }, [426] = { - [ts_builtin_sym_end] = ACTIONS(1746), - [sym_identifier] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_macro_rules_BANG] = ACTIONS(1746), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_u8] = ACTIONS(1748), - [anon_sym_i8] = ACTIONS(1748), - [anon_sym_u16] = ACTIONS(1748), - [anon_sym_i16] = ACTIONS(1748), - [anon_sym_u32] = ACTIONS(1748), - [anon_sym_i32] = ACTIONS(1748), - [anon_sym_u64] = ACTIONS(1748), - [anon_sym_i64] = ACTIONS(1748), - [anon_sym_u128] = ACTIONS(1748), - [anon_sym_i128] = ACTIONS(1748), - [anon_sym_isize] = ACTIONS(1748), - [anon_sym_usize] = ACTIONS(1748), - [anon_sym_f32] = ACTIONS(1748), - [anon_sym_f64] = ACTIONS(1748), - [anon_sym_bool] = ACTIONS(1748), - [anon_sym_str] = ACTIONS(1748), - [anon_sym_char] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_async] = ACTIONS(1748), - [anon_sym_break] = ACTIONS(1748), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_continue] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1748), - [anon_sym_enum] = ACTIONS(1748), - [anon_sym_fn] = ACTIONS(1748), - [anon_sym_for] = ACTIONS(1748), - [anon_sym_if] = ACTIONS(1748), - [anon_sym_impl] = ACTIONS(1748), - [anon_sym_let] = ACTIONS(1748), - [anon_sym_loop] = ACTIONS(1748), - [anon_sym_match] = ACTIONS(1748), - [anon_sym_mod] = ACTIONS(1748), - [anon_sym_pub] = ACTIONS(1748), - [anon_sym_return] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1748), - [anon_sym_struct] = ACTIONS(1748), - [anon_sym_trait] = ACTIONS(1748), - [anon_sym_type] = ACTIONS(1748), - [anon_sym_union] = ACTIONS(1748), - [anon_sym_unsafe] = ACTIONS(1748), - [anon_sym_use] = ACTIONS(1748), - [anon_sym_while] = ACTIONS(1748), - [anon_sym_POUND] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1748), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_COLON_COLON] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_DOT_DOT] = ACTIONS(1746), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_yield] = ACTIONS(1748), - [anon_sym_move] = ACTIONS(1748), - [sym_integer_literal] = ACTIONS(1746), - [aux_sym_string_literal_token1] = ACTIONS(1746), - [sym_char_literal] = ACTIONS(1746), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1748), - [sym_super] = ACTIONS(1748), - [sym_crate] = ACTIONS(1748), - [sym_metavariable] = ACTIONS(1746), - [sym_raw_string_literal] = ACTIONS(1746), - [sym_float_literal] = ACTIONS(1746), + [ts_builtin_sym_end] = ACTIONS(1780), + [sym_identifier] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1780), + [anon_sym_macro_rules_BANG] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_u8] = ACTIONS(1782), + [anon_sym_i8] = ACTIONS(1782), + [anon_sym_u16] = ACTIONS(1782), + [anon_sym_i16] = ACTIONS(1782), + [anon_sym_u32] = ACTIONS(1782), + [anon_sym_i32] = ACTIONS(1782), + [anon_sym_u64] = ACTIONS(1782), + [anon_sym_i64] = ACTIONS(1782), + [anon_sym_u128] = ACTIONS(1782), + [anon_sym_i128] = ACTIONS(1782), + [anon_sym_isize] = ACTIONS(1782), + [anon_sym_usize] = ACTIONS(1782), + [anon_sym_f32] = ACTIONS(1782), + [anon_sym_f64] = ACTIONS(1782), + [anon_sym_bool] = ACTIONS(1782), + [anon_sym_str] = ACTIONS(1782), + [anon_sym_char] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1782), + [anon_sym_async] = ACTIONS(1782), + [anon_sym_break] = ACTIONS(1782), + [anon_sym_const] = ACTIONS(1782), + [anon_sym_continue] = ACTIONS(1782), + [anon_sym_default] = ACTIONS(1782), + [anon_sym_enum] = ACTIONS(1782), + [anon_sym_fn] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1782), + [anon_sym_impl] = ACTIONS(1782), + [anon_sym_let] = ACTIONS(1782), + [anon_sym_loop] = ACTIONS(1782), + [anon_sym_match] = ACTIONS(1782), + [anon_sym_mod] = ACTIONS(1782), + [anon_sym_pub] = ACTIONS(1782), + [anon_sym_return] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1782), + [anon_sym_struct] = ACTIONS(1782), + [anon_sym_trait] = ACTIONS(1782), + [anon_sym_type] = ACTIONS(1782), + [anon_sym_union] = ACTIONS(1782), + [anon_sym_unsafe] = ACTIONS(1782), + [anon_sym_use] = ACTIONS(1782), + [anon_sym_while] = ACTIONS(1782), + [anon_sym_POUND] = ACTIONS(1780), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_extern] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1780), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [anon_sym_yield] = ACTIONS(1782), + [anon_sym_move] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [aux_sym_string_literal_token1] = ACTIONS(1780), + [sym_char_literal] = ACTIONS(1780), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1782), + [sym_super] = ACTIONS(1782), + [sym_crate] = ACTIONS(1782), + [sym_metavariable] = ACTIONS(1780), + [sym_raw_string_literal] = ACTIONS(1780), + [sym_float_literal] = ACTIONS(1780), [sym_block_comment] = ACTIONS(3), }, [427] = { - [ts_builtin_sym_end] = ACTIONS(1750), - [sym_identifier] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_macro_rules_BANG] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1750), - [anon_sym_RBRACE] = ACTIONS(1750), - [anon_sym_LBRACK] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1750), - [anon_sym_u8] = ACTIONS(1752), - [anon_sym_i8] = ACTIONS(1752), - [anon_sym_u16] = ACTIONS(1752), - [anon_sym_i16] = ACTIONS(1752), - [anon_sym_u32] = ACTIONS(1752), - [anon_sym_i32] = ACTIONS(1752), - [anon_sym_u64] = ACTIONS(1752), - [anon_sym_i64] = ACTIONS(1752), - [anon_sym_u128] = ACTIONS(1752), - [anon_sym_i128] = ACTIONS(1752), - [anon_sym_isize] = ACTIONS(1752), - [anon_sym_usize] = ACTIONS(1752), - [anon_sym_f32] = ACTIONS(1752), - [anon_sym_f64] = ACTIONS(1752), - [anon_sym_bool] = ACTIONS(1752), - [anon_sym_str] = ACTIONS(1752), - [anon_sym_char] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_async] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_const] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_default] = ACTIONS(1752), - [anon_sym_enum] = ACTIONS(1752), - [anon_sym_fn] = ACTIONS(1752), - [anon_sym_for] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_impl] = ACTIONS(1752), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_loop] = ACTIONS(1752), - [anon_sym_match] = ACTIONS(1752), - [anon_sym_mod] = ACTIONS(1752), - [anon_sym_pub] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_struct] = ACTIONS(1752), - [anon_sym_trait] = ACTIONS(1752), - [anon_sym_type] = ACTIONS(1752), - [anon_sym_union] = ACTIONS(1752), - [anon_sym_unsafe] = ACTIONS(1752), - [anon_sym_use] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_POUND] = ACTIONS(1750), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(1750), - [anon_sym_COLON_COLON] = ACTIONS(1750), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_DOT_DOT] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1750), - [anon_sym_yield] = ACTIONS(1752), - [anon_sym_move] = ACTIONS(1752), - [sym_integer_literal] = ACTIONS(1750), - [aux_sym_string_literal_token1] = ACTIONS(1750), - [sym_char_literal] = ACTIONS(1750), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1750), - [sym_raw_string_literal] = ACTIONS(1750), - [sym_float_literal] = ACTIONS(1750), + [ts_builtin_sym_end] = ACTIONS(1784), + [sym_identifier] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_macro_rules_BANG] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1784), + [anon_sym_LBRACK] = ACTIONS(1784), + [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_u8] = ACTIONS(1786), + [anon_sym_i8] = ACTIONS(1786), + [anon_sym_u16] = ACTIONS(1786), + [anon_sym_i16] = ACTIONS(1786), + [anon_sym_u32] = ACTIONS(1786), + [anon_sym_i32] = ACTIONS(1786), + [anon_sym_u64] = ACTIONS(1786), + [anon_sym_i64] = ACTIONS(1786), + [anon_sym_u128] = ACTIONS(1786), + [anon_sym_i128] = ACTIONS(1786), + [anon_sym_isize] = ACTIONS(1786), + [anon_sym_usize] = ACTIONS(1786), + [anon_sym_f32] = ACTIONS(1786), + [anon_sym_f64] = ACTIONS(1786), + [anon_sym_bool] = ACTIONS(1786), + [anon_sym_str] = ACTIONS(1786), + [anon_sym_char] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1786), + [anon_sym_async] = ACTIONS(1786), + [anon_sym_break] = ACTIONS(1786), + [anon_sym_const] = ACTIONS(1786), + [anon_sym_continue] = ACTIONS(1786), + [anon_sym_default] = ACTIONS(1786), + [anon_sym_enum] = ACTIONS(1786), + [anon_sym_fn] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1786), + [anon_sym_impl] = ACTIONS(1786), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_loop] = ACTIONS(1786), + [anon_sym_match] = ACTIONS(1786), + [anon_sym_mod] = ACTIONS(1786), + [anon_sym_pub] = ACTIONS(1786), + [anon_sym_return] = ACTIONS(1786), + [anon_sym_static] = ACTIONS(1786), + [anon_sym_struct] = ACTIONS(1786), + [anon_sym_trait] = ACTIONS(1786), + [anon_sym_type] = ACTIONS(1786), + [anon_sym_union] = ACTIONS(1786), + [anon_sym_unsafe] = ACTIONS(1786), + [anon_sym_use] = ACTIONS(1786), + [anon_sym_while] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_extern] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(1784), + [anon_sym_COLON_COLON] = ACTIONS(1784), + [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_DOT_DOT] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_yield] = ACTIONS(1786), + [anon_sym_move] = ACTIONS(1786), + [sym_integer_literal] = ACTIONS(1784), + [aux_sym_string_literal_token1] = ACTIONS(1784), + [sym_char_literal] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(1786), + [anon_sym_false] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1786), + [sym_super] = ACTIONS(1786), + [sym_crate] = ACTIONS(1786), + [sym_metavariable] = ACTIONS(1784), + [sym_raw_string_literal] = ACTIONS(1784), + [sym_float_literal] = ACTIONS(1784), [sym_block_comment] = ACTIONS(3), }, [428] = { - [ts_builtin_sym_end] = ACTIONS(1754), - [sym_identifier] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_macro_rules_BANG] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1754), - [anon_sym_u8] = ACTIONS(1756), - [anon_sym_i8] = ACTIONS(1756), - [anon_sym_u16] = ACTIONS(1756), - [anon_sym_i16] = ACTIONS(1756), - [anon_sym_u32] = ACTIONS(1756), - [anon_sym_i32] = ACTIONS(1756), - [anon_sym_u64] = ACTIONS(1756), - [anon_sym_i64] = ACTIONS(1756), - [anon_sym_u128] = ACTIONS(1756), - [anon_sym_i128] = ACTIONS(1756), - [anon_sym_isize] = ACTIONS(1756), - [anon_sym_usize] = ACTIONS(1756), - [anon_sym_f32] = ACTIONS(1756), - [anon_sym_f64] = ACTIONS(1756), - [anon_sym_bool] = ACTIONS(1756), - [anon_sym_str] = ACTIONS(1756), - [anon_sym_char] = ACTIONS(1756), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_async] = ACTIONS(1756), - [anon_sym_break] = ACTIONS(1756), - [anon_sym_const] = ACTIONS(1756), - [anon_sym_continue] = ACTIONS(1756), - [anon_sym_default] = ACTIONS(1756), - [anon_sym_enum] = ACTIONS(1756), - [anon_sym_fn] = ACTIONS(1756), - [anon_sym_for] = ACTIONS(1756), - [anon_sym_if] = ACTIONS(1756), - [anon_sym_impl] = ACTIONS(1756), - [anon_sym_let] = ACTIONS(1756), - [anon_sym_loop] = ACTIONS(1756), - [anon_sym_match] = ACTIONS(1756), - [anon_sym_mod] = ACTIONS(1756), - [anon_sym_pub] = ACTIONS(1756), - [anon_sym_return] = ACTIONS(1756), - [anon_sym_static] = ACTIONS(1756), - [anon_sym_struct] = ACTIONS(1756), - [anon_sym_trait] = ACTIONS(1756), - [anon_sym_type] = ACTIONS(1756), - [anon_sym_union] = ACTIONS(1756), - [anon_sym_unsafe] = ACTIONS(1756), - [anon_sym_use] = ACTIONS(1756), - [anon_sym_while] = ACTIONS(1756), - [anon_sym_POUND] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_extern] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_yield] = ACTIONS(1756), - [anon_sym_move] = ACTIONS(1756), - [sym_integer_literal] = ACTIONS(1754), - [aux_sym_string_literal_token1] = ACTIONS(1754), - [sym_char_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1756), - [anon_sym_false] = ACTIONS(1756), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1756), - [sym_super] = ACTIONS(1756), - [sym_crate] = ACTIONS(1756), - [sym_metavariable] = ACTIONS(1754), - [sym_raw_string_literal] = ACTIONS(1754), - [sym_float_literal] = ACTIONS(1754), + [ts_builtin_sym_end] = ACTIONS(1788), + [sym_identifier] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_macro_rules_BANG] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_LBRACK] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1788), + [anon_sym_u8] = ACTIONS(1790), + [anon_sym_i8] = ACTIONS(1790), + [anon_sym_u16] = ACTIONS(1790), + [anon_sym_i16] = ACTIONS(1790), + [anon_sym_u32] = ACTIONS(1790), + [anon_sym_i32] = ACTIONS(1790), + [anon_sym_u64] = ACTIONS(1790), + [anon_sym_i64] = ACTIONS(1790), + [anon_sym_u128] = ACTIONS(1790), + [anon_sym_i128] = ACTIONS(1790), + [anon_sym_isize] = ACTIONS(1790), + [anon_sym_usize] = ACTIONS(1790), + [anon_sym_f32] = ACTIONS(1790), + [anon_sym_f64] = ACTIONS(1790), + [anon_sym_bool] = ACTIONS(1790), + [anon_sym_str] = ACTIONS(1790), + [anon_sym_char] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_const] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_default] = ACTIONS(1790), + [anon_sym_enum] = ACTIONS(1790), + [anon_sym_fn] = ACTIONS(1790), + [anon_sym_for] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_impl] = ACTIONS(1790), + [anon_sym_let] = ACTIONS(1790), + [anon_sym_loop] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_mod] = ACTIONS(1790), + [anon_sym_pub] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1790), + [anon_sym_struct] = ACTIONS(1790), + [anon_sym_trait] = ACTIONS(1790), + [anon_sym_type] = ACTIONS(1790), + [anon_sym_union] = ACTIONS(1790), + [anon_sym_unsafe] = ACTIONS(1790), + [anon_sym_use] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_POUND] = ACTIONS(1788), + [anon_sym_BANG] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1790), + [anon_sym_LT] = ACTIONS(1788), + [anon_sym_COLON_COLON] = ACTIONS(1788), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_DOT_DOT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_yield] = ACTIONS(1790), + [anon_sym_move] = ACTIONS(1790), + [sym_integer_literal] = ACTIONS(1788), + [aux_sym_string_literal_token1] = ACTIONS(1788), + [sym_char_literal] = ACTIONS(1788), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1790), + [sym_super] = ACTIONS(1790), + [sym_crate] = ACTIONS(1790), + [sym_metavariable] = ACTIONS(1788), + [sym_raw_string_literal] = ACTIONS(1788), + [sym_float_literal] = ACTIONS(1788), [sym_block_comment] = ACTIONS(3), }, [429] = { - [ts_builtin_sym_end] = ACTIONS(1758), - [sym_identifier] = ACTIONS(1760), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_macro_rules_BANG] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_RBRACE] = ACTIONS(1758), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_u8] = ACTIONS(1760), - [anon_sym_i8] = ACTIONS(1760), - [anon_sym_u16] = ACTIONS(1760), - [anon_sym_i16] = ACTIONS(1760), - [anon_sym_u32] = ACTIONS(1760), - [anon_sym_i32] = ACTIONS(1760), - [anon_sym_u64] = ACTIONS(1760), - [anon_sym_i64] = ACTIONS(1760), - [anon_sym_u128] = ACTIONS(1760), - [anon_sym_i128] = ACTIONS(1760), - [anon_sym_isize] = ACTIONS(1760), - [anon_sym_usize] = ACTIONS(1760), - [anon_sym_f32] = ACTIONS(1760), - [anon_sym_f64] = ACTIONS(1760), - [anon_sym_bool] = ACTIONS(1760), - [anon_sym_str] = ACTIONS(1760), - [anon_sym_char] = ACTIONS(1760), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_async] = ACTIONS(1760), - [anon_sym_break] = ACTIONS(1760), - [anon_sym_const] = ACTIONS(1760), - [anon_sym_continue] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1760), - [anon_sym_enum] = ACTIONS(1760), - [anon_sym_fn] = ACTIONS(1760), - [anon_sym_for] = ACTIONS(1760), - [anon_sym_if] = ACTIONS(1760), - [anon_sym_impl] = ACTIONS(1760), - [anon_sym_let] = ACTIONS(1760), - [anon_sym_loop] = ACTIONS(1760), - [anon_sym_match] = ACTIONS(1760), - [anon_sym_mod] = ACTIONS(1760), - [anon_sym_pub] = ACTIONS(1760), - [anon_sym_return] = ACTIONS(1760), - [anon_sym_static] = ACTIONS(1760), - [anon_sym_struct] = ACTIONS(1760), - [anon_sym_trait] = ACTIONS(1760), - [anon_sym_type] = ACTIONS(1760), - [anon_sym_union] = ACTIONS(1760), - [anon_sym_unsafe] = ACTIONS(1760), - [anon_sym_use] = ACTIONS(1760), - [anon_sym_while] = ACTIONS(1760), - [anon_sym_POUND] = ACTIONS(1758), - [anon_sym_BANG] = ACTIONS(1758), - [anon_sym_extern] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1758), - [anon_sym_COLON_COLON] = ACTIONS(1758), - [anon_sym_AMP] = ACTIONS(1758), - [anon_sym_DOT_DOT] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_yield] = ACTIONS(1760), - [anon_sym_move] = ACTIONS(1760), - [sym_integer_literal] = ACTIONS(1758), - [aux_sym_string_literal_token1] = ACTIONS(1758), - [sym_char_literal] = ACTIONS(1758), - [anon_sym_true] = ACTIONS(1760), - [anon_sym_false] = ACTIONS(1760), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1760), - [sym_super] = ACTIONS(1760), - [sym_crate] = ACTIONS(1760), - [sym_metavariable] = ACTIONS(1758), - [sym_raw_string_literal] = ACTIONS(1758), - [sym_float_literal] = ACTIONS(1758), + [ts_builtin_sym_end] = ACTIONS(1792), + [sym_identifier] = ACTIONS(1794), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_macro_rules_BANG] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(1792), + [anon_sym_u8] = ACTIONS(1794), + [anon_sym_i8] = ACTIONS(1794), + [anon_sym_u16] = ACTIONS(1794), + [anon_sym_i16] = ACTIONS(1794), + [anon_sym_u32] = ACTIONS(1794), + [anon_sym_i32] = ACTIONS(1794), + [anon_sym_u64] = ACTIONS(1794), + [anon_sym_i64] = ACTIONS(1794), + [anon_sym_u128] = ACTIONS(1794), + [anon_sym_i128] = ACTIONS(1794), + [anon_sym_isize] = ACTIONS(1794), + [anon_sym_usize] = ACTIONS(1794), + [anon_sym_f32] = ACTIONS(1794), + [anon_sym_f64] = ACTIONS(1794), + [anon_sym_bool] = ACTIONS(1794), + [anon_sym_str] = ACTIONS(1794), + [anon_sym_char] = ACTIONS(1794), + [anon_sym_SQUOTE] = ACTIONS(1794), + [anon_sym_async] = ACTIONS(1794), + [anon_sym_break] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1794), + [anon_sym_continue] = ACTIONS(1794), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_enum] = ACTIONS(1794), + [anon_sym_fn] = ACTIONS(1794), + [anon_sym_for] = ACTIONS(1794), + [anon_sym_if] = ACTIONS(1794), + [anon_sym_impl] = ACTIONS(1794), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_loop] = ACTIONS(1794), + [anon_sym_match] = ACTIONS(1794), + [anon_sym_mod] = ACTIONS(1794), + [anon_sym_pub] = ACTIONS(1794), + [anon_sym_return] = ACTIONS(1794), + [anon_sym_static] = ACTIONS(1794), + [anon_sym_struct] = ACTIONS(1794), + [anon_sym_trait] = ACTIONS(1794), + [anon_sym_type] = ACTIONS(1794), + [anon_sym_union] = ACTIONS(1794), + [anon_sym_unsafe] = ACTIONS(1794), + [anon_sym_use] = ACTIONS(1794), + [anon_sym_while] = ACTIONS(1794), + [anon_sym_POUND] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_extern] = ACTIONS(1794), + [anon_sym_LT] = ACTIONS(1792), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_AMP] = ACTIONS(1792), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_PIPE] = ACTIONS(1792), + [anon_sym_yield] = ACTIONS(1794), + [anon_sym_move] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(1792), + [aux_sym_string_literal_token1] = ACTIONS(1792), + [sym_char_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1794), + [anon_sym_false] = ACTIONS(1794), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1794), + [sym_super] = ACTIONS(1794), + [sym_crate] = ACTIONS(1794), + [sym_metavariable] = ACTIONS(1792), + [sym_raw_string_literal] = ACTIONS(1792), + [sym_float_literal] = ACTIONS(1792), [sym_block_comment] = ACTIONS(3), }, [430] = { - [ts_builtin_sym_end] = ACTIONS(1762), - [sym_identifier] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1762), - [anon_sym_macro_rules_BANG] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1762), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_RBRACE] = ACTIONS(1762), - [anon_sym_LBRACK] = ACTIONS(1762), - [anon_sym_STAR] = ACTIONS(1762), - [anon_sym_u8] = ACTIONS(1764), - [anon_sym_i8] = ACTIONS(1764), - [anon_sym_u16] = ACTIONS(1764), - [anon_sym_i16] = ACTIONS(1764), - [anon_sym_u32] = ACTIONS(1764), - [anon_sym_i32] = ACTIONS(1764), - [anon_sym_u64] = ACTIONS(1764), - [anon_sym_i64] = ACTIONS(1764), - [anon_sym_u128] = ACTIONS(1764), - [anon_sym_i128] = ACTIONS(1764), - [anon_sym_isize] = ACTIONS(1764), - [anon_sym_usize] = ACTIONS(1764), - [anon_sym_f32] = ACTIONS(1764), - [anon_sym_f64] = ACTIONS(1764), - [anon_sym_bool] = ACTIONS(1764), - [anon_sym_str] = ACTIONS(1764), - [anon_sym_char] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1764), - [anon_sym_async] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_const] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_default] = ACTIONS(1764), - [anon_sym_enum] = ACTIONS(1764), - [anon_sym_fn] = ACTIONS(1764), - [anon_sym_for] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_impl] = ACTIONS(1764), - [anon_sym_let] = ACTIONS(1764), - [anon_sym_loop] = ACTIONS(1764), - [anon_sym_match] = ACTIONS(1764), - [anon_sym_mod] = ACTIONS(1764), - [anon_sym_pub] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_static] = ACTIONS(1764), - [anon_sym_struct] = ACTIONS(1764), - [anon_sym_trait] = ACTIONS(1764), - [anon_sym_type] = ACTIONS(1764), - [anon_sym_union] = ACTIONS(1764), - [anon_sym_unsafe] = ACTIONS(1764), - [anon_sym_use] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_POUND] = ACTIONS(1762), - [anon_sym_BANG] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1764), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_COLON_COLON] = ACTIONS(1762), - [anon_sym_AMP] = ACTIONS(1762), - [anon_sym_DOT_DOT] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(1762), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_yield] = ACTIONS(1764), - [anon_sym_move] = ACTIONS(1764), - [sym_integer_literal] = ACTIONS(1762), - [aux_sym_string_literal_token1] = ACTIONS(1762), - [sym_char_literal] = ACTIONS(1762), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1764), - [sym_super] = ACTIONS(1764), - [sym_crate] = ACTIONS(1764), - [sym_metavariable] = ACTIONS(1762), - [sym_raw_string_literal] = ACTIONS(1762), - [sym_float_literal] = ACTIONS(1762), + [ts_builtin_sym_end] = ACTIONS(1796), + [sym_identifier] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1796), + [anon_sym_macro_rules_BANG] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_u8] = ACTIONS(1798), + [anon_sym_i8] = ACTIONS(1798), + [anon_sym_u16] = ACTIONS(1798), + [anon_sym_i16] = ACTIONS(1798), + [anon_sym_u32] = ACTIONS(1798), + [anon_sym_i32] = ACTIONS(1798), + [anon_sym_u64] = ACTIONS(1798), + [anon_sym_i64] = ACTIONS(1798), + [anon_sym_u128] = ACTIONS(1798), + [anon_sym_i128] = ACTIONS(1798), + [anon_sym_isize] = ACTIONS(1798), + [anon_sym_usize] = ACTIONS(1798), + [anon_sym_f32] = ACTIONS(1798), + [anon_sym_f64] = ACTIONS(1798), + [anon_sym_bool] = ACTIONS(1798), + [anon_sym_str] = ACTIONS(1798), + [anon_sym_char] = ACTIONS(1798), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_async] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1798), + [anon_sym_const] = ACTIONS(1798), + [anon_sym_continue] = ACTIONS(1798), + [anon_sym_default] = ACTIONS(1798), + [anon_sym_enum] = ACTIONS(1798), + [anon_sym_fn] = ACTIONS(1798), + [anon_sym_for] = ACTIONS(1798), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_impl] = ACTIONS(1798), + [anon_sym_let] = ACTIONS(1798), + [anon_sym_loop] = ACTIONS(1798), + [anon_sym_match] = ACTIONS(1798), + [anon_sym_mod] = ACTIONS(1798), + [anon_sym_pub] = ACTIONS(1798), + [anon_sym_return] = ACTIONS(1798), + [anon_sym_static] = ACTIONS(1798), + [anon_sym_struct] = ACTIONS(1798), + [anon_sym_trait] = ACTIONS(1798), + [anon_sym_type] = ACTIONS(1798), + [anon_sym_union] = ACTIONS(1798), + [anon_sym_unsafe] = ACTIONS(1798), + [anon_sym_use] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1798), + [anon_sym_POUND] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_extern] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1796), + [anon_sym_AMP] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PIPE] = ACTIONS(1796), + [anon_sym_yield] = ACTIONS(1798), + [anon_sym_move] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [aux_sym_string_literal_token1] = ACTIONS(1796), + [sym_char_literal] = ACTIONS(1796), + [anon_sym_true] = ACTIONS(1798), + [anon_sym_false] = ACTIONS(1798), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1798), + [sym_super] = ACTIONS(1798), + [sym_crate] = ACTIONS(1798), + [sym_metavariable] = ACTIONS(1796), + [sym_raw_string_literal] = ACTIONS(1796), + [sym_float_literal] = ACTIONS(1796), [sym_block_comment] = ACTIONS(3), }, [431] = { - [ts_builtin_sym_end] = ACTIONS(1766), - [sym_identifier] = ACTIONS(1768), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_macro_rules_BANG] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_STAR] = ACTIONS(1766), - [anon_sym_u8] = ACTIONS(1768), - [anon_sym_i8] = ACTIONS(1768), - [anon_sym_u16] = ACTIONS(1768), - [anon_sym_i16] = ACTIONS(1768), - [anon_sym_u32] = ACTIONS(1768), - [anon_sym_i32] = ACTIONS(1768), - [anon_sym_u64] = ACTIONS(1768), - [anon_sym_i64] = ACTIONS(1768), - [anon_sym_u128] = ACTIONS(1768), - [anon_sym_i128] = ACTIONS(1768), - [anon_sym_isize] = ACTIONS(1768), - [anon_sym_usize] = ACTIONS(1768), - [anon_sym_f32] = ACTIONS(1768), - [anon_sym_f64] = ACTIONS(1768), - [anon_sym_bool] = ACTIONS(1768), - [anon_sym_str] = ACTIONS(1768), - [anon_sym_char] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_async] = ACTIONS(1768), - [anon_sym_break] = ACTIONS(1768), - [anon_sym_const] = ACTIONS(1768), - [anon_sym_continue] = ACTIONS(1768), - [anon_sym_default] = ACTIONS(1768), - [anon_sym_enum] = ACTIONS(1768), - [anon_sym_fn] = ACTIONS(1768), - [anon_sym_for] = ACTIONS(1768), - [anon_sym_if] = ACTIONS(1768), - [anon_sym_impl] = ACTIONS(1768), - [anon_sym_let] = ACTIONS(1768), - [anon_sym_loop] = ACTIONS(1768), - [anon_sym_match] = ACTIONS(1768), - [anon_sym_mod] = ACTIONS(1768), - [anon_sym_pub] = ACTIONS(1768), - [anon_sym_return] = ACTIONS(1768), - [anon_sym_static] = ACTIONS(1768), - [anon_sym_struct] = ACTIONS(1768), - [anon_sym_trait] = ACTIONS(1768), - [anon_sym_type] = ACTIONS(1768), - [anon_sym_union] = ACTIONS(1768), - [anon_sym_unsafe] = ACTIONS(1768), - [anon_sym_use] = ACTIONS(1768), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_POUND] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1766), - [anon_sym_extern] = ACTIONS(1768), - [anon_sym_LT] = ACTIONS(1766), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_AMP] = ACTIONS(1766), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_yield] = ACTIONS(1768), - [anon_sym_move] = ACTIONS(1768), - [sym_integer_literal] = ACTIONS(1766), - [aux_sym_string_literal_token1] = ACTIONS(1766), - [sym_char_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1768), - [sym_super] = ACTIONS(1768), - [sym_crate] = ACTIONS(1768), - [sym_metavariable] = ACTIONS(1766), - [sym_raw_string_literal] = ACTIONS(1766), - [sym_float_literal] = ACTIONS(1766), + [ts_builtin_sym_end] = ACTIONS(1800), + [sym_identifier] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_macro_rules_BANG] = ACTIONS(1800), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_LBRACK] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1800), + [anon_sym_u8] = ACTIONS(1802), + [anon_sym_i8] = ACTIONS(1802), + [anon_sym_u16] = ACTIONS(1802), + [anon_sym_i16] = ACTIONS(1802), + [anon_sym_u32] = ACTIONS(1802), + [anon_sym_i32] = ACTIONS(1802), + [anon_sym_u64] = ACTIONS(1802), + [anon_sym_i64] = ACTIONS(1802), + [anon_sym_u128] = ACTIONS(1802), + [anon_sym_i128] = ACTIONS(1802), + [anon_sym_isize] = ACTIONS(1802), + [anon_sym_usize] = ACTIONS(1802), + [anon_sym_f32] = ACTIONS(1802), + [anon_sym_f64] = ACTIONS(1802), + [anon_sym_bool] = ACTIONS(1802), + [anon_sym_str] = ACTIONS(1802), + [anon_sym_char] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_async] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1802), + [anon_sym_enum] = ACTIONS(1802), + [anon_sym_fn] = ACTIONS(1802), + [anon_sym_for] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_impl] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1802), + [anon_sym_loop] = ACTIONS(1802), + [anon_sym_match] = ACTIONS(1802), + [anon_sym_mod] = ACTIONS(1802), + [anon_sym_pub] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_struct] = ACTIONS(1802), + [anon_sym_trait] = ACTIONS(1802), + [anon_sym_type] = ACTIONS(1802), + [anon_sym_union] = ACTIONS(1802), + [anon_sym_unsafe] = ACTIONS(1802), + [anon_sym_use] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_POUND] = ACTIONS(1800), + [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_LT] = ACTIONS(1800), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_AMP] = ACTIONS(1800), + [anon_sym_DOT_DOT] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_yield] = ACTIONS(1802), + [anon_sym_move] = ACTIONS(1802), + [sym_integer_literal] = ACTIONS(1800), + [aux_sym_string_literal_token1] = ACTIONS(1800), + [sym_char_literal] = ACTIONS(1800), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1802), + [sym_super] = ACTIONS(1802), + [sym_crate] = ACTIONS(1802), + [sym_metavariable] = ACTIONS(1800), + [sym_raw_string_literal] = ACTIONS(1800), + [sym_float_literal] = ACTIONS(1800), [sym_block_comment] = ACTIONS(3), }, [432] = { - [ts_builtin_sym_end] = ACTIONS(1770), - [sym_identifier] = ACTIONS(1772), - [anon_sym_SEMI] = ACTIONS(1770), - [anon_sym_macro_rules_BANG] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [anon_sym_u8] = ACTIONS(1772), - [anon_sym_i8] = ACTIONS(1772), - [anon_sym_u16] = ACTIONS(1772), - [anon_sym_i16] = ACTIONS(1772), - [anon_sym_u32] = ACTIONS(1772), - [anon_sym_i32] = ACTIONS(1772), - [anon_sym_u64] = ACTIONS(1772), - [anon_sym_i64] = ACTIONS(1772), - [anon_sym_u128] = ACTIONS(1772), - [anon_sym_i128] = ACTIONS(1772), - [anon_sym_isize] = ACTIONS(1772), - [anon_sym_usize] = ACTIONS(1772), - [anon_sym_f32] = ACTIONS(1772), - [anon_sym_f64] = ACTIONS(1772), - [anon_sym_bool] = ACTIONS(1772), - [anon_sym_str] = ACTIONS(1772), - [anon_sym_char] = ACTIONS(1772), - [anon_sym_SQUOTE] = ACTIONS(1772), - [anon_sym_async] = ACTIONS(1772), - [anon_sym_break] = ACTIONS(1772), - [anon_sym_const] = ACTIONS(1772), - [anon_sym_continue] = ACTIONS(1772), - [anon_sym_default] = ACTIONS(1772), - [anon_sym_enum] = ACTIONS(1772), - [anon_sym_fn] = ACTIONS(1772), - [anon_sym_for] = ACTIONS(1772), - [anon_sym_if] = ACTIONS(1772), - [anon_sym_impl] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1772), - [anon_sym_loop] = ACTIONS(1772), - [anon_sym_match] = ACTIONS(1772), - [anon_sym_mod] = ACTIONS(1772), - [anon_sym_pub] = ACTIONS(1772), - [anon_sym_return] = ACTIONS(1772), - [anon_sym_static] = ACTIONS(1772), - [anon_sym_struct] = ACTIONS(1772), - [anon_sym_trait] = ACTIONS(1772), - [anon_sym_type] = ACTIONS(1772), - [anon_sym_union] = ACTIONS(1772), - [anon_sym_unsafe] = ACTIONS(1772), - [anon_sym_use] = ACTIONS(1772), - [anon_sym_while] = ACTIONS(1772), - [anon_sym_POUND] = ACTIONS(1770), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_yield] = ACTIONS(1772), - [anon_sym_move] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [aux_sym_string_literal_token1] = ACTIONS(1770), - [sym_char_literal] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1772), - [sym_super] = ACTIONS(1772), - [sym_crate] = ACTIONS(1772), - [sym_metavariable] = ACTIONS(1770), - [sym_raw_string_literal] = ACTIONS(1770), - [sym_float_literal] = ACTIONS(1770), + [ts_builtin_sym_end] = ACTIONS(1804), + [sym_identifier] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_macro_rules_BANG] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_u8] = ACTIONS(1806), + [anon_sym_i8] = ACTIONS(1806), + [anon_sym_u16] = ACTIONS(1806), + [anon_sym_i16] = ACTIONS(1806), + [anon_sym_u32] = ACTIONS(1806), + [anon_sym_i32] = ACTIONS(1806), + [anon_sym_u64] = ACTIONS(1806), + [anon_sym_i64] = ACTIONS(1806), + [anon_sym_u128] = ACTIONS(1806), + [anon_sym_i128] = ACTIONS(1806), + [anon_sym_isize] = ACTIONS(1806), + [anon_sym_usize] = ACTIONS(1806), + [anon_sym_f32] = ACTIONS(1806), + [anon_sym_f64] = ACTIONS(1806), + [anon_sym_bool] = ACTIONS(1806), + [anon_sym_str] = ACTIONS(1806), + [anon_sym_char] = ACTIONS(1806), + [anon_sym_SQUOTE] = ACTIONS(1806), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_break] = ACTIONS(1806), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_continue] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_fn] = ACTIONS(1806), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_impl] = ACTIONS(1806), + [anon_sym_let] = ACTIONS(1806), + [anon_sym_loop] = ACTIONS(1806), + [anon_sym_match] = ACTIONS(1806), + [anon_sym_mod] = ACTIONS(1806), + [anon_sym_pub] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1806), + [anon_sym_trait] = ACTIONS(1806), + [anon_sym_type] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_unsafe] = ACTIONS(1806), + [anon_sym_use] = ACTIONS(1806), + [anon_sym_while] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1804), + [anon_sym_extern] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(1804), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_AMP] = ACTIONS(1804), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_PIPE] = ACTIONS(1804), + [anon_sym_yield] = ACTIONS(1806), + [anon_sym_move] = ACTIONS(1806), + [sym_integer_literal] = ACTIONS(1804), + [aux_sym_string_literal_token1] = ACTIONS(1804), + [sym_char_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1806), + [anon_sym_false] = ACTIONS(1806), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1804), + [sym_raw_string_literal] = ACTIONS(1804), + [sym_float_literal] = ACTIONS(1804), [sym_block_comment] = ACTIONS(3), }, [433] = { - [ts_builtin_sym_end] = ACTIONS(1774), - [sym_identifier] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_macro_rules_BANG] = ACTIONS(1774), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1774), - [anon_sym_RBRACE] = ACTIONS(1774), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1774), - [anon_sym_u8] = ACTIONS(1776), - [anon_sym_i8] = ACTIONS(1776), - [anon_sym_u16] = ACTIONS(1776), - [anon_sym_i16] = ACTIONS(1776), - [anon_sym_u32] = ACTIONS(1776), - [anon_sym_i32] = ACTIONS(1776), - [anon_sym_u64] = ACTIONS(1776), - [anon_sym_i64] = ACTIONS(1776), - [anon_sym_u128] = ACTIONS(1776), - [anon_sym_i128] = ACTIONS(1776), - [anon_sym_isize] = ACTIONS(1776), - [anon_sym_usize] = ACTIONS(1776), - [anon_sym_f32] = ACTIONS(1776), - [anon_sym_f64] = ACTIONS(1776), - [anon_sym_bool] = ACTIONS(1776), - [anon_sym_str] = ACTIONS(1776), - [anon_sym_char] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_async] = ACTIONS(1776), - [anon_sym_break] = ACTIONS(1776), - [anon_sym_const] = ACTIONS(1776), - [anon_sym_continue] = ACTIONS(1776), - [anon_sym_default] = ACTIONS(1776), - [anon_sym_enum] = ACTIONS(1776), - [anon_sym_fn] = ACTIONS(1776), - [anon_sym_for] = ACTIONS(1776), - [anon_sym_if] = ACTIONS(1776), - [anon_sym_impl] = ACTIONS(1776), - [anon_sym_let] = ACTIONS(1776), - [anon_sym_loop] = ACTIONS(1776), - [anon_sym_match] = ACTIONS(1776), - [anon_sym_mod] = ACTIONS(1776), - [anon_sym_pub] = ACTIONS(1776), - [anon_sym_return] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1776), - [anon_sym_struct] = ACTIONS(1776), - [anon_sym_trait] = ACTIONS(1776), - [anon_sym_type] = ACTIONS(1776), - [anon_sym_union] = ACTIONS(1776), - [anon_sym_unsafe] = ACTIONS(1776), - [anon_sym_use] = ACTIONS(1776), - [anon_sym_while] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(1774), - [anon_sym_BANG] = ACTIONS(1774), - [anon_sym_extern] = ACTIONS(1776), - [anon_sym_LT] = ACTIONS(1774), - [anon_sym_COLON_COLON] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1774), - [anon_sym_DOT_DOT] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_yield] = ACTIONS(1776), - [anon_sym_move] = ACTIONS(1776), - [sym_integer_literal] = ACTIONS(1774), - [aux_sym_string_literal_token1] = ACTIONS(1774), - [sym_char_literal] = ACTIONS(1774), - [anon_sym_true] = ACTIONS(1776), - [anon_sym_false] = ACTIONS(1776), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1776), - [sym_super] = ACTIONS(1776), - [sym_crate] = ACTIONS(1776), - [sym_metavariable] = ACTIONS(1774), - [sym_raw_string_literal] = ACTIONS(1774), - [sym_float_literal] = ACTIONS(1774), + [ts_builtin_sym_end] = ACTIONS(1808), + [sym_identifier] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1808), + [anon_sym_macro_rules_BANG] = ACTIONS(1808), + [anon_sym_LPAREN] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1808), + [anon_sym_RBRACE] = ACTIONS(1808), + [anon_sym_LBRACK] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [anon_sym_u8] = ACTIONS(1810), + [anon_sym_i8] = ACTIONS(1810), + [anon_sym_u16] = ACTIONS(1810), + [anon_sym_i16] = ACTIONS(1810), + [anon_sym_u32] = ACTIONS(1810), + [anon_sym_i32] = ACTIONS(1810), + [anon_sym_u64] = ACTIONS(1810), + [anon_sym_i64] = ACTIONS(1810), + [anon_sym_u128] = ACTIONS(1810), + [anon_sym_i128] = ACTIONS(1810), + [anon_sym_isize] = ACTIONS(1810), + [anon_sym_usize] = ACTIONS(1810), + [anon_sym_f32] = ACTIONS(1810), + [anon_sym_f64] = ACTIONS(1810), + [anon_sym_bool] = ACTIONS(1810), + [anon_sym_str] = ACTIONS(1810), + [anon_sym_char] = ACTIONS(1810), + [anon_sym_SQUOTE] = ACTIONS(1810), + [anon_sym_async] = ACTIONS(1810), + [anon_sym_break] = ACTIONS(1810), + [anon_sym_const] = ACTIONS(1810), + [anon_sym_continue] = ACTIONS(1810), + [anon_sym_default] = ACTIONS(1810), + [anon_sym_enum] = ACTIONS(1810), + [anon_sym_fn] = ACTIONS(1810), + [anon_sym_for] = ACTIONS(1810), + [anon_sym_if] = ACTIONS(1810), + [anon_sym_impl] = ACTIONS(1810), + [anon_sym_let] = ACTIONS(1810), + [anon_sym_loop] = ACTIONS(1810), + [anon_sym_match] = ACTIONS(1810), + [anon_sym_mod] = ACTIONS(1810), + [anon_sym_pub] = ACTIONS(1810), + [anon_sym_return] = ACTIONS(1810), + [anon_sym_static] = ACTIONS(1810), + [anon_sym_struct] = ACTIONS(1810), + [anon_sym_trait] = ACTIONS(1810), + [anon_sym_type] = ACTIONS(1810), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_unsafe] = ACTIONS(1810), + [anon_sym_use] = ACTIONS(1810), + [anon_sym_while] = ACTIONS(1810), + [anon_sym_POUND] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_extern] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1808), + [anon_sym_AMP] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_yield] = ACTIONS(1810), + [anon_sym_move] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [aux_sym_string_literal_token1] = ACTIONS(1808), + [sym_char_literal] = ACTIONS(1808), + [anon_sym_true] = ACTIONS(1810), + [anon_sym_false] = ACTIONS(1810), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1808), + [sym_raw_string_literal] = ACTIONS(1808), + [sym_float_literal] = ACTIONS(1808), [sym_block_comment] = ACTIONS(3), }, [434] = { - [ts_builtin_sym_end] = ACTIONS(1778), - [sym_identifier] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1778), - [anon_sym_macro_rules_BANG] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_u8] = ACTIONS(1780), - [anon_sym_i8] = ACTIONS(1780), - [anon_sym_u16] = ACTIONS(1780), - [anon_sym_i16] = ACTIONS(1780), - [anon_sym_u32] = ACTIONS(1780), - [anon_sym_i32] = ACTIONS(1780), - [anon_sym_u64] = ACTIONS(1780), - [anon_sym_i64] = ACTIONS(1780), - [anon_sym_u128] = ACTIONS(1780), - [anon_sym_i128] = ACTIONS(1780), - [anon_sym_isize] = ACTIONS(1780), - [anon_sym_usize] = ACTIONS(1780), - [anon_sym_f32] = ACTIONS(1780), - [anon_sym_f64] = ACTIONS(1780), - [anon_sym_bool] = ACTIONS(1780), - [anon_sym_str] = ACTIONS(1780), - [anon_sym_char] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1780), - [anon_sym_async] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_const] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_default] = ACTIONS(1780), - [anon_sym_enum] = ACTIONS(1780), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_impl] = ACTIONS(1780), - [anon_sym_let] = ACTIONS(1780), - [anon_sym_loop] = ACTIONS(1780), - [anon_sym_match] = ACTIONS(1780), - [anon_sym_mod] = ACTIONS(1780), - [anon_sym_pub] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_static] = ACTIONS(1780), - [anon_sym_struct] = ACTIONS(1780), - [anon_sym_trait] = ACTIONS(1780), - [anon_sym_type] = ACTIONS(1780), - [anon_sym_union] = ACTIONS(1780), - [anon_sym_unsafe] = ACTIONS(1780), - [anon_sym_use] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1778), - [anon_sym_extern] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_yield] = ACTIONS(1780), - [anon_sym_move] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [aux_sym_string_literal_token1] = ACTIONS(1778), - [sym_char_literal] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1780), - [sym_super] = ACTIONS(1780), - [sym_crate] = ACTIONS(1780), - [sym_metavariable] = ACTIONS(1778), - [sym_raw_string_literal] = ACTIONS(1778), - [sym_float_literal] = ACTIONS(1778), + [ts_builtin_sym_end] = ACTIONS(1812), + [sym_identifier] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_macro_rules_BANG] = ACTIONS(1812), + [anon_sym_LPAREN] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1812), + [anon_sym_RBRACE] = ACTIONS(1812), + [anon_sym_LBRACK] = ACTIONS(1812), + [anon_sym_STAR] = ACTIONS(1812), + [anon_sym_u8] = ACTIONS(1814), + [anon_sym_i8] = ACTIONS(1814), + [anon_sym_u16] = ACTIONS(1814), + [anon_sym_i16] = ACTIONS(1814), + [anon_sym_u32] = ACTIONS(1814), + [anon_sym_i32] = ACTIONS(1814), + [anon_sym_u64] = ACTIONS(1814), + [anon_sym_i64] = ACTIONS(1814), + [anon_sym_u128] = ACTIONS(1814), + [anon_sym_i128] = ACTIONS(1814), + [anon_sym_isize] = ACTIONS(1814), + [anon_sym_usize] = ACTIONS(1814), + [anon_sym_f32] = ACTIONS(1814), + [anon_sym_f64] = ACTIONS(1814), + [anon_sym_bool] = ACTIONS(1814), + [anon_sym_str] = ACTIONS(1814), + [anon_sym_char] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1814), + [anon_sym_async] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_const] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_default] = ACTIONS(1814), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_fn] = ACTIONS(1814), + [anon_sym_for] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_impl] = ACTIONS(1814), + [anon_sym_let] = ACTIONS(1814), + [anon_sym_loop] = ACTIONS(1814), + [anon_sym_match] = ACTIONS(1814), + [anon_sym_mod] = ACTIONS(1814), + [anon_sym_pub] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_static] = ACTIONS(1814), + [anon_sym_struct] = ACTIONS(1814), + [anon_sym_trait] = ACTIONS(1814), + [anon_sym_type] = ACTIONS(1814), + [anon_sym_union] = ACTIONS(1814), + [anon_sym_unsafe] = ACTIONS(1814), + [anon_sym_use] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_POUND] = ACTIONS(1812), + [anon_sym_BANG] = ACTIONS(1812), + [anon_sym_extern] = ACTIONS(1814), + [anon_sym_LT] = ACTIONS(1812), + [anon_sym_COLON_COLON] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1812), + [anon_sym_DOT_DOT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_yield] = ACTIONS(1814), + [anon_sym_move] = ACTIONS(1814), + [sym_integer_literal] = ACTIONS(1812), + [aux_sym_string_literal_token1] = ACTIONS(1812), + [sym_char_literal] = ACTIONS(1812), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1814), + [sym_super] = ACTIONS(1814), + [sym_crate] = ACTIONS(1814), + [sym_metavariable] = ACTIONS(1812), + [sym_raw_string_literal] = ACTIONS(1812), + [sym_float_literal] = ACTIONS(1812), [sym_block_comment] = ACTIONS(3), }, [435] = { - [ts_builtin_sym_end] = ACTIONS(1782), - [sym_identifier] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_macro_rules_BANG] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1784), - [anon_sym_async] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_const] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_enum] = ACTIONS(1784), - [anon_sym_fn] = ACTIONS(1784), - [anon_sym_for] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_impl] = ACTIONS(1784), - [anon_sym_let] = ACTIONS(1784), - [anon_sym_loop] = ACTIONS(1784), - [anon_sym_match] = ACTIONS(1784), - [anon_sym_mod] = ACTIONS(1784), - [anon_sym_pub] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_static] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1784), - [anon_sym_trait] = ACTIONS(1784), - [anon_sym_type] = ACTIONS(1784), - [anon_sym_union] = ACTIONS(1784), - [anon_sym_unsafe] = ACTIONS(1784), - [anon_sym_use] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_POUND] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1782), - [anon_sym_extern] = ACTIONS(1784), - [anon_sym_LT] = ACTIONS(1782), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1782), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_yield] = ACTIONS(1784), - [anon_sym_move] = ACTIONS(1784), - [sym_integer_literal] = ACTIONS(1782), - [aux_sym_string_literal_token1] = ACTIONS(1782), - [sym_char_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1784), - [sym_super] = ACTIONS(1784), - [sym_crate] = ACTIONS(1784), - [sym_metavariable] = ACTIONS(1782), - [sym_raw_string_literal] = ACTIONS(1782), - [sym_float_literal] = ACTIONS(1782), + [ts_builtin_sym_end] = ACTIONS(1816), + [sym_identifier] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_macro_rules_BANG] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_STAR] = ACTIONS(1816), + [anon_sym_u8] = ACTIONS(1818), + [anon_sym_i8] = ACTIONS(1818), + [anon_sym_u16] = ACTIONS(1818), + [anon_sym_i16] = ACTIONS(1818), + [anon_sym_u32] = ACTIONS(1818), + [anon_sym_i32] = ACTIONS(1818), + [anon_sym_u64] = ACTIONS(1818), + [anon_sym_i64] = ACTIONS(1818), + [anon_sym_u128] = ACTIONS(1818), + [anon_sym_i128] = ACTIONS(1818), + [anon_sym_isize] = ACTIONS(1818), + [anon_sym_usize] = ACTIONS(1818), + [anon_sym_f32] = ACTIONS(1818), + [anon_sym_f64] = ACTIONS(1818), + [anon_sym_bool] = ACTIONS(1818), + [anon_sym_str] = ACTIONS(1818), + [anon_sym_char] = ACTIONS(1818), + [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_async] = ACTIONS(1818), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_const] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1818), + [anon_sym_default] = ACTIONS(1818), + [anon_sym_enum] = ACTIONS(1818), + [anon_sym_fn] = ACTIONS(1818), + [anon_sym_for] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(1818), + [anon_sym_impl] = ACTIONS(1818), + [anon_sym_let] = ACTIONS(1818), + [anon_sym_loop] = ACTIONS(1818), + [anon_sym_match] = ACTIONS(1818), + [anon_sym_mod] = ACTIONS(1818), + [anon_sym_pub] = ACTIONS(1818), + [anon_sym_return] = ACTIONS(1818), + [anon_sym_static] = ACTIONS(1818), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_trait] = ACTIONS(1818), + [anon_sym_type] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1818), + [anon_sym_unsafe] = ACTIONS(1818), + [anon_sym_use] = ACTIONS(1818), + [anon_sym_while] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1816), + [anon_sym_extern] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(1816), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1816), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_yield] = ACTIONS(1818), + [anon_sym_move] = ACTIONS(1818), + [sym_integer_literal] = ACTIONS(1816), + [aux_sym_string_literal_token1] = ACTIONS(1816), + [sym_char_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1818), + [anon_sym_false] = ACTIONS(1818), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1818), + [sym_super] = ACTIONS(1818), + [sym_crate] = ACTIONS(1818), + [sym_metavariable] = ACTIONS(1816), + [sym_raw_string_literal] = ACTIONS(1816), + [sym_float_literal] = ACTIONS(1816), [sym_block_comment] = ACTIONS(3), }, [436] = { - [ts_builtin_sym_end] = ACTIONS(1786), - [sym_identifier] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_macro_rules_BANG] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_u8] = ACTIONS(1788), - [anon_sym_i8] = ACTIONS(1788), - [anon_sym_u16] = ACTIONS(1788), - [anon_sym_i16] = ACTIONS(1788), - [anon_sym_u32] = ACTIONS(1788), - [anon_sym_i32] = ACTIONS(1788), - [anon_sym_u64] = ACTIONS(1788), - [anon_sym_i64] = ACTIONS(1788), - [anon_sym_u128] = ACTIONS(1788), - [anon_sym_i128] = ACTIONS(1788), - [anon_sym_isize] = ACTIONS(1788), - [anon_sym_usize] = ACTIONS(1788), - [anon_sym_f32] = ACTIONS(1788), - [anon_sym_f64] = ACTIONS(1788), - [anon_sym_bool] = ACTIONS(1788), - [anon_sym_str] = ACTIONS(1788), - [anon_sym_char] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_async] = ACTIONS(1788), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_default] = ACTIONS(1788), - [anon_sym_enum] = ACTIONS(1788), - [anon_sym_fn] = ACTIONS(1788), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_if] = ACTIONS(1788), - [anon_sym_impl] = ACTIONS(1788), - [anon_sym_let] = ACTIONS(1788), - [anon_sym_loop] = ACTIONS(1788), - [anon_sym_match] = ACTIONS(1788), - [anon_sym_mod] = ACTIONS(1788), - [anon_sym_pub] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1788), - [anon_sym_struct] = ACTIONS(1788), - [anon_sym_trait] = ACTIONS(1788), - [anon_sym_type] = ACTIONS(1788), - [anon_sym_union] = ACTIONS(1788), - [anon_sym_unsafe] = ACTIONS(1788), - [anon_sym_use] = ACTIONS(1788), - [anon_sym_while] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1788), - [anon_sym_LT] = ACTIONS(1786), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_yield] = ACTIONS(1788), - [anon_sym_move] = ACTIONS(1788), - [sym_integer_literal] = ACTIONS(1786), - [aux_sym_string_literal_token1] = ACTIONS(1786), - [sym_char_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1788), - [anon_sym_false] = ACTIONS(1788), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1788), - [sym_super] = ACTIONS(1788), - [sym_crate] = ACTIONS(1788), - [sym_metavariable] = ACTIONS(1786), - [sym_raw_string_literal] = ACTIONS(1786), - [sym_float_literal] = ACTIONS(1786), + [ts_builtin_sym_end] = ACTIONS(1820), + [sym_identifier] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_macro_rules_BANG] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_u8] = ACTIONS(1822), + [anon_sym_i8] = ACTIONS(1822), + [anon_sym_u16] = ACTIONS(1822), + [anon_sym_i16] = ACTIONS(1822), + [anon_sym_u32] = ACTIONS(1822), + [anon_sym_i32] = ACTIONS(1822), + [anon_sym_u64] = ACTIONS(1822), + [anon_sym_i64] = ACTIONS(1822), + [anon_sym_u128] = ACTIONS(1822), + [anon_sym_i128] = ACTIONS(1822), + [anon_sym_isize] = ACTIONS(1822), + [anon_sym_usize] = ACTIONS(1822), + [anon_sym_f32] = ACTIONS(1822), + [anon_sym_f64] = ACTIONS(1822), + [anon_sym_bool] = ACTIONS(1822), + [anon_sym_str] = ACTIONS(1822), + [anon_sym_char] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_async] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_const] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_default] = ACTIONS(1822), + [anon_sym_enum] = ACTIONS(1822), + [anon_sym_fn] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_impl] = ACTIONS(1822), + [anon_sym_let] = ACTIONS(1822), + [anon_sym_loop] = ACTIONS(1822), + [anon_sym_match] = ACTIONS(1822), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_pub] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_static] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1822), + [anon_sym_trait] = ACTIONS(1822), + [anon_sym_type] = ACTIONS(1822), + [anon_sym_union] = ACTIONS(1822), + [anon_sym_unsafe] = ACTIONS(1822), + [anon_sym_use] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(1820), + [anon_sym_BANG] = ACTIONS(1820), + [anon_sym_extern] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_COLON_COLON] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1820), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_yield] = ACTIONS(1822), + [anon_sym_move] = ACTIONS(1822), + [sym_integer_literal] = ACTIONS(1820), + [aux_sym_string_literal_token1] = ACTIONS(1820), + [sym_char_literal] = ACTIONS(1820), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1822), + [sym_super] = ACTIONS(1822), + [sym_crate] = ACTIONS(1822), + [sym_metavariable] = ACTIONS(1820), + [sym_raw_string_literal] = ACTIONS(1820), + [sym_float_literal] = ACTIONS(1820), [sym_block_comment] = ACTIONS(3), }, [437] = { - [ts_builtin_sym_end] = ACTIONS(1790), - [sym_identifier] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_macro_rules_BANG] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_u8] = ACTIONS(1792), - [anon_sym_i8] = ACTIONS(1792), - [anon_sym_u16] = ACTIONS(1792), - [anon_sym_i16] = ACTIONS(1792), - [anon_sym_u32] = ACTIONS(1792), - [anon_sym_i32] = ACTIONS(1792), - [anon_sym_u64] = ACTIONS(1792), - [anon_sym_i64] = ACTIONS(1792), - [anon_sym_u128] = ACTIONS(1792), - [anon_sym_i128] = ACTIONS(1792), - [anon_sym_isize] = ACTIONS(1792), - [anon_sym_usize] = ACTIONS(1792), - [anon_sym_f32] = ACTIONS(1792), - [anon_sym_f64] = ACTIONS(1792), - [anon_sym_bool] = ACTIONS(1792), - [anon_sym_str] = ACTIONS(1792), - [anon_sym_char] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_async] = ACTIONS(1792), - [anon_sym_break] = ACTIONS(1792), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_continue] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1792), - [anon_sym_enum] = ACTIONS(1792), - [anon_sym_fn] = ACTIONS(1792), - [anon_sym_for] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(1792), - [anon_sym_impl] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1792), - [anon_sym_loop] = ACTIONS(1792), - [anon_sym_match] = ACTIONS(1792), - [anon_sym_mod] = ACTIONS(1792), - [anon_sym_pub] = ACTIONS(1792), - [anon_sym_return] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1792), - [anon_sym_struct] = ACTIONS(1792), - [anon_sym_trait] = ACTIONS(1792), - [anon_sym_type] = ACTIONS(1792), - [anon_sym_union] = ACTIONS(1792), - [anon_sym_unsafe] = ACTIONS(1792), - [anon_sym_use] = ACTIONS(1792), - [anon_sym_while] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_AMP] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_yield] = ACTIONS(1792), - [anon_sym_move] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [aux_sym_string_literal_token1] = ACTIONS(1790), - [sym_char_literal] = ACTIONS(1790), - [anon_sym_true] = ACTIONS(1792), - [anon_sym_false] = ACTIONS(1792), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1792), - [sym_super] = ACTIONS(1792), - [sym_crate] = ACTIONS(1792), - [sym_metavariable] = ACTIONS(1790), - [sym_raw_string_literal] = ACTIONS(1790), - [sym_float_literal] = ACTIONS(1790), + [ts_builtin_sym_end] = ACTIONS(1824), + [sym_identifier] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_macro_rules_BANG] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_STAR] = ACTIONS(1824), + [anon_sym_u8] = ACTIONS(1826), + [anon_sym_i8] = ACTIONS(1826), + [anon_sym_u16] = ACTIONS(1826), + [anon_sym_i16] = ACTIONS(1826), + [anon_sym_u32] = ACTIONS(1826), + [anon_sym_i32] = ACTIONS(1826), + [anon_sym_u64] = ACTIONS(1826), + [anon_sym_i64] = ACTIONS(1826), + [anon_sym_u128] = ACTIONS(1826), + [anon_sym_i128] = ACTIONS(1826), + [anon_sym_isize] = ACTIONS(1826), + [anon_sym_usize] = ACTIONS(1826), + [anon_sym_f32] = ACTIONS(1826), + [anon_sym_f64] = ACTIONS(1826), + [anon_sym_bool] = ACTIONS(1826), + [anon_sym_str] = ACTIONS(1826), + [anon_sym_char] = ACTIONS(1826), + [anon_sym_SQUOTE] = ACTIONS(1826), + [anon_sym_async] = ACTIONS(1826), + [anon_sym_break] = ACTIONS(1826), + [anon_sym_const] = ACTIONS(1826), + [anon_sym_continue] = ACTIONS(1826), + [anon_sym_default] = ACTIONS(1826), + [anon_sym_enum] = ACTIONS(1826), + [anon_sym_fn] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_impl] = ACTIONS(1826), + [anon_sym_let] = ACTIONS(1826), + [anon_sym_loop] = ACTIONS(1826), + [anon_sym_match] = ACTIONS(1826), + [anon_sym_mod] = ACTIONS(1826), + [anon_sym_pub] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_static] = ACTIONS(1826), + [anon_sym_struct] = ACTIONS(1826), + [anon_sym_trait] = ACTIONS(1826), + [anon_sym_type] = ACTIONS(1826), + [anon_sym_union] = ACTIONS(1826), + [anon_sym_unsafe] = ACTIONS(1826), + [anon_sym_use] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_extern] = ACTIONS(1826), + [anon_sym_LT] = ACTIONS(1824), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_AMP] = ACTIONS(1824), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1824), + [anon_sym_yield] = ACTIONS(1826), + [anon_sym_move] = ACTIONS(1826), + [sym_integer_literal] = ACTIONS(1824), + [aux_sym_string_literal_token1] = ACTIONS(1824), + [sym_char_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1826), + [sym_super] = ACTIONS(1826), + [sym_crate] = ACTIONS(1826), + [sym_metavariable] = ACTIONS(1824), + [sym_raw_string_literal] = ACTIONS(1824), + [sym_float_literal] = ACTIONS(1824), [sym_block_comment] = ACTIONS(3), }, [438] = { - [ts_builtin_sym_end] = ACTIONS(1794), - [sym_identifier] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_macro_rules_BANG] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_async] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_const] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_default] = ACTIONS(1796), - [anon_sym_enum] = ACTIONS(1796), - [anon_sym_fn] = ACTIONS(1796), - [anon_sym_for] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_impl] = ACTIONS(1796), - [anon_sym_let] = ACTIONS(1796), - [anon_sym_loop] = ACTIONS(1796), - [anon_sym_match] = ACTIONS(1796), - [anon_sym_mod] = ACTIONS(1796), - [anon_sym_pub] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1796), - [anon_sym_struct] = ACTIONS(1796), - [anon_sym_trait] = ACTIONS(1796), - [anon_sym_type] = ACTIONS(1796), - [anon_sym_union] = ACTIONS(1796), - [anon_sym_unsafe] = ACTIONS(1796), - [anon_sym_use] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_POUND] = ACTIONS(1794), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1796), - [anon_sym_LT] = ACTIONS(1794), - [anon_sym_COLON_COLON] = ACTIONS(1794), - [anon_sym_AMP] = ACTIONS(1794), - [anon_sym_DOT_DOT] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_yield] = ACTIONS(1796), - [anon_sym_move] = ACTIONS(1796), - [sym_integer_literal] = ACTIONS(1794), - [aux_sym_string_literal_token1] = ACTIONS(1794), - [sym_char_literal] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1794), - [sym_raw_string_literal] = ACTIONS(1794), - [sym_float_literal] = ACTIONS(1794), + [ts_builtin_sym_end] = ACTIONS(1828), + [sym_identifier] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_macro_rules_BANG] = ACTIONS(1828), + [anon_sym_LPAREN] = ACTIONS(1828), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_STAR] = ACTIONS(1828), + [anon_sym_u8] = ACTIONS(1830), + [anon_sym_i8] = ACTIONS(1830), + [anon_sym_u16] = ACTIONS(1830), + [anon_sym_i16] = ACTIONS(1830), + [anon_sym_u32] = ACTIONS(1830), + [anon_sym_i32] = ACTIONS(1830), + [anon_sym_u64] = ACTIONS(1830), + [anon_sym_i64] = ACTIONS(1830), + [anon_sym_u128] = ACTIONS(1830), + [anon_sym_i128] = ACTIONS(1830), + [anon_sym_isize] = ACTIONS(1830), + [anon_sym_usize] = ACTIONS(1830), + [anon_sym_f32] = ACTIONS(1830), + [anon_sym_f64] = ACTIONS(1830), + [anon_sym_bool] = ACTIONS(1830), + [anon_sym_str] = ACTIONS(1830), + [anon_sym_char] = ACTIONS(1830), + [anon_sym_SQUOTE] = ACTIONS(1830), + [anon_sym_async] = ACTIONS(1830), + [anon_sym_break] = ACTIONS(1830), + [anon_sym_const] = ACTIONS(1830), + [anon_sym_continue] = ACTIONS(1830), + [anon_sym_default] = ACTIONS(1830), + [anon_sym_enum] = ACTIONS(1830), + [anon_sym_fn] = ACTIONS(1830), + [anon_sym_for] = ACTIONS(1830), + [anon_sym_if] = ACTIONS(1830), + [anon_sym_impl] = ACTIONS(1830), + [anon_sym_let] = ACTIONS(1830), + [anon_sym_loop] = ACTIONS(1830), + [anon_sym_match] = ACTIONS(1830), + [anon_sym_mod] = ACTIONS(1830), + [anon_sym_pub] = ACTIONS(1830), + [anon_sym_return] = ACTIONS(1830), + [anon_sym_static] = ACTIONS(1830), + [anon_sym_struct] = ACTIONS(1830), + [anon_sym_trait] = ACTIONS(1830), + [anon_sym_type] = ACTIONS(1830), + [anon_sym_union] = ACTIONS(1830), + [anon_sym_unsafe] = ACTIONS(1830), + [anon_sym_use] = ACTIONS(1830), + [anon_sym_while] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(1828), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_extern] = ACTIONS(1830), + [anon_sym_LT] = ACTIONS(1828), + [anon_sym_COLON_COLON] = ACTIONS(1828), + [anon_sym_AMP] = ACTIONS(1828), + [anon_sym_DOT_DOT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_PIPE] = ACTIONS(1828), + [anon_sym_yield] = ACTIONS(1830), + [anon_sym_move] = ACTIONS(1830), + [sym_integer_literal] = ACTIONS(1828), + [aux_sym_string_literal_token1] = ACTIONS(1828), + [sym_char_literal] = ACTIONS(1828), + [anon_sym_true] = ACTIONS(1830), + [anon_sym_false] = ACTIONS(1830), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1830), + [sym_super] = ACTIONS(1830), + [sym_crate] = ACTIONS(1830), + [sym_metavariable] = ACTIONS(1828), + [sym_raw_string_literal] = ACTIONS(1828), + [sym_float_literal] = ACTIONS(1828), [sym_block_comment] = ACTIONS(3), }, [439] = { - [ts_builtin_sym_end] = ACTIONS(1798), - [sym_identifier] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_macro_rules_BANG] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_u8] = ACTIONS(1800), - [anon_sym_i8] = ACTIONS(1800), - [anon_sym_u16] = ACTIONS(1800), - [anon_sym_i16] = ACTIONS(1800), - [anon_sym_u32] = ACTIONS(1800), - [anon_sym_i32] = ACTIONS(1800), - [anon_sym_u64] = ACTIONS(1800), - [anon_sym_i64] = ACTIONS(1800), - [anon_sym_u128] = ACTIONS(1800), - [anon_sym_i128] = ACTIONS(1800), - [anon_sym_isize] = ACTIONS(1800), - [anon_sym_usize] = ACTIONS(1800), - [anon_sym_f32] = ACTIONS(1800), - [anon_sym_f64] = ACTIONS(1800), - [anon_sym_bool] = ACTIONS(1800), - [anon_sym_str] = ACTIONS(1800), - [anon_sym_char] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_async] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_default] = ACTIONS(1800), - [anon_sym_enum] = ACTIONS(1800), - [anon_sym_fn] = ACTIONS(1800), - [anon_sym_for] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_impl] = ACTIONS(1800), - [anon_sym_let] = ACTIONS(1800), - [anon_sym_loop] = ACTIONS(1800), - [anon_sym_match] = ACTIONS(1800), - [anon_sym_mod] = ACTIONS(1800), - [anon_sym_pub] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1800), - [anon_sym_struct] = ACTIONS(1800), - [anon_sym_trait] = ACTIONS(1800), - [anon_sym_type] = ACTIONS(1800), - [anon_sym_union] = ACTIONS(1800), - [anon_sym_unsafe] = ACTIONS(1800), - [anon_sym_use] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_POUND] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1800), - [anon_sym_LT] = ACTIONS(1798), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_yield] = ACTIONS(1800), - [anon_sym_move] = ACTIONS(1800), - [sym_integer_literal] = ACTIONS(1798), - [aux_sym_string_literal_token1] = ACTIONS(1798), - [sym_char_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1800), - [sym_super] = ACTIONS(1800), - [sym_crate] = ACTIONS(1800), - [sym_metavariable] = ACTIONS(1798), - [sym_raw_string_literal] = ACTIONS(1798), - [sym_float_literal] = ACTIONS(1798), + [ts_builtin_sym_end] = ACTIONS(1832), + [sym_identifier] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_macro_rules_BANG] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LBRACE] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1832), + [anon_sym_LBRACK] = ACTIONS(1832), + [anon_sym_STAR] = ACTIONS(1832), + [anon_sym_u8] = ACTIONS(1834), + [anon_sym_i8] = ACTIONS(1834), + [anon_sym_u16] = ACTIONS(1834), + [anon_sym_i16] = ACTIONS(1834), + [anon_sym_u32] = ACTIONS(1834), + [anon_sym_i32] = ACTIONS(1834), + [anon_sym_u64] = ACTIONS(1834), + [anon_sym_i64] = ACTIONS(1834), + [anon_sym_u128] = ACTIONS(1834), + [anon_sym_i128] = ACTIONS(1834), + [anon_sym_isize] = ACTIONS(1834), + [anon_sym_usize] = ACTIONS(1834), + [anon_sym_f32] = ACTIONS(1834), + [anon_sym_f64] = ACTIONS(1834), + [anon_sym_bool] = ACTIONS(1834), + [anon_sym_str] = ACTIONS(1834), + [anon_sym_char] = ACTIONS(1834), + [anon_sym_SQUOTE] = ACTIONS(1834), + [anon_sym_async] = ACTIONS(1834), + [anon_sym_break] = ACTIONS(1834), + [anon_sym_const] = ACTIONS(1834), + [anon_sym_continue] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1834), + [anon_sym_enum] = ACTIONS(1834), + [anon_sym_fn] = ACTIONS(1834), + [anon_sym_for] = ACTIONS(1834), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_impl] = ACTIONS(1834), + [anon_sym_let] = ACTIONS(1834), + [anon_sym_loop] = ACTIONS(1834), + [anon_sym_match] = ACTIONS(1834), + [anon_sym_mod] = ACTIONS(1834), + [anon_sym_pub] = ACTIONS(1834), + [anon_sym_return] = ACTIONS(1834), + [anon_sym_static] = ACTIONS(1834), + [anon_sym_struct] = ACTIONS(1834), + [anon_sym_trait] = ACTIONS(1834), + [anon_sym_type] = ACTIONS(1834), + [anon_sym_union] = ACTIONS(1834), + [anon_sym_unsafe] = ACTIONS(1834), + [anon_sym_use] = ACTIONS(1834), + [anon_sym_while] = ACTIONS(1834), + [anon_sym_POUND] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1832), + [anon_sym_extern] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1832), + [anon_sym_COLON_COLON] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1832), + [anon_sym_DOT_DOT] = ACTIONS(1832), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_yield] = ACTIONS(1834), + [anon_sym_move] = ACTIONS(1834), + [sym_integer_literal] = ACTIONS(1832), + [aux_sym_string_literal_token1] = ACTIONS(1832), + [sym_char_literal] = ACTIONS(1832), + [anon_sym_true] = ACTIONS(1834), + [anon_sym_false] = ACTIONS(1834), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1834), + [sym_super] = ACTIONS(1834), + [sym_crate] = ACTIONS(1834), + [sym_metavariable] = ACTIONS(1832), + [sym_raw_string_literal] = ACTIONS(1832), + [sym_float_literal] = ACTIONS(1832), [sym_block_comment] = ACTIONS(3), }, [440] = { - [ts_builtin_sym_end] = ACTIONS(1802), - [sym_identifier] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_macro_rules_BANG] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_u8] = ACTIONS(1804), - [anon_sym_i8] = ACTIONS(1804), - [anon_sym_u16] = ACTIONS(1804), - [anon_sym_i16] = ACTIONS(1804), - [anon_sym_u32] = ACTIONS(1804), - [anon_sym_i32] = ACTIONS(1804), - [anon_sym_u64] = ACTIONS(1804), - [anon_sym_i64] = ACTIONS(1804), - [anon_sym_u128] = ACTIONS(1804), - [anon_sym_i128] = ACTIONS(1804), - [anon_sym_isize] = ACTIONS(1804), - [anon_sym_usize] = ACTIONS(1804), - [anon_sym_f32] = ACTIONS(1804), - [anon_sym_f64] = ACTIONS(1804), - [anon_sym_bool] = ACTIONS(1804), - [anon_sym_str] = ACTIONS(1804), - [anon_sym_char] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_async] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_continue] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_enum] = ACTIONS(1804), - [anon_sym_fn] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_impl] = ACTIONS(1804), - [anon_sym_let] = ACTIONS(1804), - [anon_sym_loop] = ACTIONS(1804), - [anon_sym_match] = ACTIONS(1804), - [anon_sym_mod] = ACTIONS(1804), - [anon_sym_pub] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1804), - [anon_sym_struct] = ACTIONS(1804), - [anon_sym_trait] = ACTIONS(1804), - [anon_sym_type] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_unsafe] = ACTIONS(1804), - [anon_sym_use] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1804), - [anon_sym_LT] = ACTIONS(1802), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_yield] = ACTIONS(1804), - [anon_sym_move] = ACTIONS(1804), - [sym_integer_literal] = ACTIONS(1802), - [aux_sym_string_literal_token1] = ACTIONS(1802), - [sym_char_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1804), - [sym_super] = ACTIONS(1804), - [sym_crate] = ACTIONS(1804), - [sym_metavariable] = ACTIONS(1802), - [sym_raw_string_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1802), + [ts_builtin_sym_end] = ACTIONS(1836), + [sym_identifier] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_macro_rules_BANG] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1836), + [anon_sym_LBRACK] = ACTIONS(1836), + [anon_sym_STAR] = ACTIONS(1836), + [anon_sym_u8] = ACTIONS(1838), + [anon_sym_i8] = ACTIONS(1838), + [anon_sym_u16] = ACTIONS(1838), + [anon_sym_i16] = ACTIONS(1838), + [anon_sym_u32] = ACTIONS(1838), + [anon_sym_i32] = ACTIONS(1838), + [anon_sym_u64] = ACTIONS(1838), + [anon_sym_i64] = ACTIONS(1838), + [anon_sym_u128] = ACTIONS(1838), + [anon_sym_i128] = ACTIONS(1838), + [anon_sym_isize] = ACTIONS(1838), + [anon_sym_usize] = ACTIONS(1838), + [anon_sym_f32] = ACTIONS(1838), + [anon_sym_f64] = ACTIONS(1838), + [anon_sym_bool] = ACTIONS(1838), + [anon_sym_str] = ACTIONS(1838), + [anon_sym_char] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [anon_sym_async] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_default] = ACTIONS(1838), + [anon_sym_enum] = ACTIONS(1838), + [anon_sym_fn] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_impl] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_loop] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_mod] = ACTIONS(1838), + [anon_sym_pub] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_static] = ACTIONS(1838), + [anon_sym_struct] = ACTIONS(1838), + [anon_sym_trait] = ACTIONS(1838), + [anon_sym_type] = ACTIONS(1838), + [anon_sym_union] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_POUND] = ACTIONS(1836), + [anon_sym_BANG] = ACTIONS(1836), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_COLON_COLON] = ACTIONS(1836), + [anon_sym_AMP] = ACTIONS(1836), + [anon_sym_DOT_DOT] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_yield] = ACTIONS(1838), + [anon_sym_move] = ACTIONS(1838), + [sym_integer_literal] = ACTIONS(1836), + [aux_sym_string_literal_token1] = ACTIONS(1836), + [sym_char_literal] = ACTIONS(1836), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1838), + [sym_super] = ACTIONS(1838), + [sym_crate] = ACTIONS(1838), + [sym_metavariable] = ACTIONS(1836), + [sym_raw_string_literal] = ACTIONS(1836), + [sym_float_literal] = ACTIONS(1836), [sym_block_comment] = ACTIONS(3), }, [441] = { - [ts_builtin_sym_end] = ACTIONS(1806), - [sym_identifier] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_macro_rules_BANG] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1806), - [anon_sym_u8] = ACTIONS(1808), - [anon_sym_i8] = ACTIONS(1808), - [anon_sym_u16] = ACTIONS(1808), - [anon_sym_i16] = ACTIONS(1808), - [anon_sym_u32] = ACTIONS(1808), - [anon_sym_i32] = ACTIONS(1808), - [anon_sym_u64] = ACTIONS(1808), - [anon_sym_i64] = ACTIONS(1808), - [anon_sym_u128] = ACTIONS(1808), - [anon_sym_i128] = ACTIONS(1808), - [anon_sym_isize] = ACTIONS(1808), - [anon_sym_usize] = ACTIONS(1808), - [anon_sym_f32] = ACTIONS(1808), - [anon_sym_f64] = ACTIONS(1808), - [anon_sym_bool] = ACTIONS(1808), - [anon_sym_str] = ACTIONS(1808), - [anon_sym_char] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1808), - [anon_sym_async] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_const] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_default] = ACTIONS(1808), - [anon_sym_enum] = ACTIONS(1808), - [anon_sym_fn] = ACTIONS(1808), - [anon_sym_for] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_impl] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1808), - [anon_sym_loop] = ACTIONS(1808), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_mod] = ACTIONS(1808), - [anon_sym_pub] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1808), - [anon_sym_struct] = ACTIONS(1808), - [anon_sym_trait] = ACTIONS(1808), - [anon_sym_type] = ACTIONS(1808), - [anon_sym_union] = ACTIONS(1808), - [anon_sym_unsafe] = ACTIONS(1808), - [anon_sym_use] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1806), - [anon_sym_extern] = ACTIONS(1808), - [anon_sym_LT] = ACTIONS(1806), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1806), - [anon_sym_DOT_DOT] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_yield] = ACTIONS(1808), - [anon_sym_move] = ACTIONS(1808), - [sym_integer_literal] = ACTIONS(1806), - [aux_sym_string_literal_token1] = ACTIONS(1806), - [sym_char_literal] = ACTIONS(1806), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1806), - [sym_raw_string_literal] = ACTIONS(1806), - [sym_float_literal] = ACTIONS(1806), + [ts_builtin_sym_end] = ACTIONS(1840), + [sym_identifier] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1840), + [anon_sym_macro_rules_BANG] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1840), + [anon_sym_LBRACK] = ACTIONS(1840), + [anon_sym_STAR] = ACTIONS(1840), + [anon_sym_u8] = ACTIONS(1842), + [anon_sym_i8] = ACTIONS(1842), + [anon_sym_u16] = ACTIONS(1842), + [anon_sym_i16] = ACTIONS(1842), + [anon_sym_u32] = ACTIONS(1842), + [anon_sym_i32] = ACTIONS(1842), + [anon_sym_u64] = ACTIONS(1842), + [anon_sym_i64] = ACTIONS(1842), + [anon_sym_u128] = ACTIONS(1842), + [anon_sym_i128] = ACTIONS(1842), + [anon_sym_isize] = ACTIONS(1842), + [anon_sym_usize] = ACTIONS(1842), + [anon_sym_f32] = ACTIONS(1842), + [anon_sym_f64] = ACTIONS(1842), + [anon_sym_bool] = ACTIONS(1842), + [anon_sym_str] = ACTIONS(1842), + [anon_sym_char] = ACTIONS(1842), + [anon_sym_SQUOTE] = ACTIONS(1842), + [anon_sym_async] = ACTIONS(1842), + [anon_sym_break] = ACTIONS(1842), + [anon_sym_const] = ACTIONS(1842), + [anon_sym_continue] = ACTIONS(1842), + [anon_sym_default] = ACTIONS(1842), + [anon_sym_enum] = ACTIONS(1842), + [anon_sym_fn] = ACTIONS(1842), + [anon_sym_for] = ACTIONS(1842), + [anon_sym_if] = ACTIONS(1842), + [anon_sym_impl] = ACTIONS(1842), + [anon_sym_let] = ACTIONS(1842), + [anon_sym_loop] = ACTIONS(1842), + [anon_sym_match] = ACTIONS(1842), + [anon_sym_mod] = ACTIONS(1842), + [anon_sym_pub] = ACTIONS(1842), + [anon_sym_return] = ACTIONS(1842), + [anon_sym_static] = ACTIONS(1842), + [anon_sym_struct] = ACTIONS(1842), + [anon_sym_trait] = ACTIONS(1842), + [anon_sym_type] = ACTIONS(1842), + [anon_sym_union] = ACTIONS(1842), + [anon_sym_unsafe] = ACTIONS(1842), + [anon_sym_use] = ACTIONS(1842), + [anon_sym_while] = ACTIONS(1842), + [anon_sym_POUND] = ACTIONS(1840), + [anon_sym_BANG] = ACTIONS(1840), + [anon_sym_extern] = ACTIONS(1842), + [anon_sym_LT] = ACTIONS(1840), + [anon_sym_COLON_COLON] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1840), + [anon_sym_DOT_DOT] = ACTIONS(1840), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1840), + [anon_sym_yield] = ACTIONS(1842), + [anon_sym_move] = ACTIONS(1842), + [sym_integer_literal] = ACTIONS(1840), + [aux_sym_string_literal_token1] = ACTIONS(1840), + [sym_char_literal] = ACTIONS(1840), + [anon_sym_true] = ACTIONS(1842), + [anon_sym_false] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1842), + [sym_super] = ACTIONS(1842), + [sym_crate] = ACTIONS(1842), + [sym_metavariable] = ACTIONS(1840), + [sym_raw_string_literal] = ACTIONS(1840), + [sym_float_literal] = ACTIONS(1840), [sym_block_comment] = ACTIONS(3), }, [442] = { - [ts_builtin_sym_end] = ACTIONS(1810), - [sym_identifier] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_macro_rules_BANG] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_u8] = ACTIONS(1812), - [anon_sym_i8] = ACTIONS(1812), - [anon_sym_u16] = ACTIONS(1812), - [anon_sym_i16] = ACTIONS(1812), - [anon_sym_u32] = ACTIONS(1812), - [anon_sym_i32] = ACTIONS(1812), - [anon_sym_u64] = ACTIONS(1812), - [anon_sym_i64] = ACTIONS(1812), - [anon_sym_u128] = ACTIONS(1812), - [anon_sym_i128] = ACTIONS(1812), - [anon_sym_isize] = ACTIONS(1812), - [anon_sym_usize] = ACTIONS(1812), - [anon_sym_f32] = ACTIONS(1812), - [anon_sym_f64] = ACTIONS(1812), - [anon_sym_bool] = ACTIONS(1812), - [anon_sym_str] = ACTIONS(1812), - [anon_sym_char] = ACTIONS(1812), - [anon_sym_SQUOTE] = ACTIONS(1812), - [anon_sym_async] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_default] = ACTIONS(1812), - [anon_sym_enum] = ACTIONS(1812), - [anon_sym_fn] = ACTIONS(1812), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_if] = ACTIONS(1812), - [anon_sym_impl] = ACTIONS(1812), - [anon_sym_let] = ACTIONS(1812), - [anon_sym_loop] = ACTIONS(1812), - [anon_sym_match] = ACTIONS(1812), - [anon_sym_mod] = ACTIONS(1812), - [anon_sym_pub] = ACTIONS(1812), - [anon_sym_return] = ACTIONS(1812), - [anon_sym_static] = ACTIONS(1812), - [anon_sym_struct] = ACTIONS(1812), - [anon_sym_trait] = ACTIONS(1812), - [anon_sym_type] = ACTIONS(1812), - [anon_sym_union] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(1812), - [anon_sym_use] = ACTIONS(1812), - [anon_sym_while] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_extern] = ACTIONS(1812), - [anon_sym_LT] = ACTIONS(1810), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_DASH] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_yield] = ACTIONS(1812), - [anon_sym_move] = ACTIONS(1812), - [sym_integer_literal] = ACTIONS(1810), - [aux_sym_string_literal_token1] = ACTIONS(1810), - [sym_char_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1812), - [anon_sym_false] = ACTIONS(1812), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1812), - [sym_super] = ACTIONS(1812), - [sym_crate] = ACTIONS(1812), - [sym_metavariable] = ACTIONS(1810), - [sym_raw_string_literal] = ACTIONS(1810), - [sym_float_literal] = ACTIONS(1810), + [ts_builtin_sym_end] = ACTIONS(1844), + [sym_identifier] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_macro_rules_BANG] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_LBRACK] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(1844), + [anon_sym_u8] = ACTIONS(1846), + [anon_sym_i8] = ACTIONS(1846), + [anon_sym_u16] = ACTIONS(1846), + [anon_sym_i16] = ACTIONS(1846), + [anon_sym_u32] = ACTIONS(1846), + [anon_sym_i32] = ACTIONS(1846), + [anon_sym_u64] = ACTIONS(1846), + [anon_sym_i64] = ACTIONS(1846), + [anon_sym_u128] = ACTIONS(1846), + [anon_sym_i128] = ACTIONS(1846), + [anon_sym_isize] = ACTIONS(1846), + [anon_sym_usize] = ACTIONS(1846), + [anon_sym_f32] = ACTIONS(1846), + [anon_sym_f64] = ACTIONS(1846), + [anon_sym_bool] = ACTIONS(1846), + [anon_sym_str] = ACTIONS(1846), + [anon_sym_char] = ACTIONS(1846), + [anon_sym_SQUOTE] = ACTIONS(1846), + [anon_sym_async] = ACTIONS(1846), + [anon_sym_break] = ACTIONS(1846), + [anon_sym_const] = ACTIONS(1846), + [anon_sym_continue] = ACTIONS(1846), + [anon_sym_default] = ACTIONS(1846), + [anon_sym_enum] = ACTIONS(1846), + [anon_sym_fn] = ACTIONS(1846), + [anon_sym_for] = ACTIONS(1846), + [anon_sym_if] = ACTIONS(1846), + [anon_sym_impl] = ACTIONS(1846), + [anon_sym_let] = ACTIONS(1846), + [anon_sym_loop] = ACTIONS(1846), + [anon_sym_match] = ACTIONS(1846), + [anon_sym_mod] = ACTIONS(1846), + [anon_sym_pub] = ACTIONS(1846), + [anon_sym_return] = ACTIONS(1846), + [anon_sym_static] = ACTIONS(1846), + [anon_sym_struct] = ACTIONS(1846), + [anon_sym_trait] = ACTIONS(1846), + [anon_sym_type] = ACTIONS(1846), + [anon_sym_union] = ACTIONS(1846), + [anon_sym_unsafe] = ACTIONS(1846), + [anon_sym_use] = ACTIONS(1846), + [anon_sym_while] = ACTIONS(1846), + [anon_sym_POUND] = ACTIONS(1844), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_extern] = ACTIONS(1846), + [anon_sym_LT] = ACTIONS(1844), + [anon_sym_COLON_COLON] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_DOT_DOT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_yield] = ACTIONS(1846), + [anon_sym_move] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(1844), + [aux_sym_string_literal_token1] = ACTIONS(1844), + [sym_char_literal] = ACTIONS(1844), + [anon_sym_true] = ACTIONS(1846), + [anon_sym_false] = ACTIONS(1846), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1846), + [sym_super] = ACTIONS(1846), + [sym_crate] = ACTIONS(1846), + [sym_metavariable] = ACTIONS(1844), + [sym_raw_string_literal] = ACTIONS(1844), + [sym_float_literal] = ACTIONS(1844), [sym_block_comment] = ACTIONS(3), }, [443] = { - [ts_builtin_sym_end] = ACTIONS(1814), - [sym_identifier] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_macro_rules_BANG] = ACTIONS(1814), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_RBRACE] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_u8] = ACTIONS(1816), - [anon_sym_i8] = ACTIONS(1816), - [anon_sym_u16] = ACTIONS(1816), - [anon_sym_i16] = ACTIONS(1816), - [anon_sym_u32] = ACTIONS(1816), - [anon_sym_i32] = ACTIONS(1816), - [anon_sym_u64] = ACTIONS(1816), - [anon_sym_i64] = ACTIONS(1816), - [anon_sym_u128] = ACTIONS(1816), - [anon_sym_i128] = ACTIONS(1816), - [anon_sym_isize] = ACTIONS(1816), - [anon_sym_usize] = ACTIONS(1816), - [anon_sym_f32] = ACTIONS(1816), - [anon_sym_f64] = ACTIONS(1816), - [anon_sym_bool] = ACTIONS(1816), - [anon_sym_str] = ACTIONS(1816), - [anon_sym_char] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_async] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_default] = ACTIONS(1816), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_fn] = ACTIONS(1816), - [anon_sym_for] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_impl] = ACTIONS(1816), - [anon_sym_let] = ACTIONS(1816), - [anon_sym_loop] = ACTIONS(1816), - [anon_sym_match] = ACTIONS(1816), - [anon_sym_mod] = ACTIONS(1816), - [anon_sym_pub] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1816), - [anon_sym_struct] = ACTIONS(1816), - [anon_sym_trait] = ACTIONS(1816), - [anon_sym_type] = ACTIONS(1816), - [anon_sym_union] = ACTIONS(1816), - [anon_sym_unsafe] = ACTIONS(1816), - [anon_sym_use] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1814), - [anon_sym_extern] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1814), - [anon_sym_COLON_COLON] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1814), - [anon_sym_DOT_DOT] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_yield] = ACTIONS(1816), - [anon_sym_move] = ACTIONS(1816), - [sym_integer_literal] = ACTIONS(1814), - [aux_sym_string_literal_token1] = ACTIONS(1814), - [sym_char_literal] = ACTIONS(1814), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1816), - [sym_super] = ACTIONS(1816), - [sym_crate] = ACTIONS(1816), - [sym_metavariable] = ACTIONS(1814), - [sym_raw_string_literal] = ACTIONS(1814), - [sym_float_literal] = ACTIONS(1814), + [ts_builtin_sym_end] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [anon_sym_SEMI] = ACTIONS(406), + [anon_sym_macro_rules_BANG] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_LBRACK] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_u8] = ACTIONS(408), + [anon_sym_i8] = ACTIONS(408), + [anon_sym_u16] = ACTIONS(408), + [anon_sym_i16] = ACTIONS(408), + [anon_sym_u32] = ACTIONS(408), + [anon_sym_i32] = ACTIONS(408), + [anon_sym_u64] = ACTIONS(408), + [anon_sym_i64] = ACTIONS(408), + [anon_sym_u128] = ACTIONS(408), + [anon_sym_i128] = ACTIONS(408), + [anon_sym_isize] = ACTIONS(408), + [anon_sym_usize] = ACTIONS(408), + [anon_sym_f32] = ACTIONS(408), + [anon_sym_f64] = ACTIONS(408), + [anon_sym_bool] = ACTIONS(408), + [anon_sym_str] = ACTIONS(408), + [anon_sym_char] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(408), + [anon_sym_async] = ACTIONS(408), + [anon_sym_break] = ACTIONS(408), + [anon_sym_const] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(408), + [anon_sym_default] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(408), + [anon_sym_fn] = ACTIONS(408), + [anon_sym_for] = ACTIONS(408), + [anon_sym_if] = ACTIONS(408), + [anon_sym_impl] = ACTIONS(408), + [anon_sym_let] = ACTIONS(408), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(408), + [anon_sym_mod] = ACTIONS(408), + [anon_sym_pub] = ACTIONS(408), + [anon_sym_return] = ACTIONS(408), + [anon_sym_static] = ACTIONS(408), + [anon_sym_struct] = ACTIONS(408), + [anon_sym_trait] = ACTIONS(408), + [anon_sym_type] = ACTIONS(408), + [anon_sym_union] = ACTIONS(408), + [anon_sym_unsafe] = ACTIONS(408), + [anon_sym_use] = ACTIONS(408), + [anon_sym_while] = ACTIONS(408), + [anon_sym_POUND] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(406), + [anon_sym_extern] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_COLON_COLON] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_DOT_DOT] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_yield] = ACTIONS(408), + [anon_sym_move] = ACTIONS(408), + [sym_integer_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(406), + [sym_char_literal] = ACTIONS(406), + [anon_sym_true] = ACTIONS(408), + [anon_sym_false] = ACTIONS(408), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_crate] = ACTIONS(408), + [sym_metavariable] = ACTIONS(406), + [sym_raw_string_literal] = ACTIONS(406), + [sym_float_literal] = ACTIONS(406), [sym_block_comment] = ACTIONS(3), }, [444] = { - [ts_builtin_sym_end] = ACTIONS(1818), - [sym_identifier] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_macro_rules_BANG] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_u8] = ACTIONS(1820), - [anon_sym_i8] = ACTIONS(1820), - [anon_sym_u16] = ACTIONS(1820), - [anon_sym_i16] = ACTIONS(1820), - [anon_sym_u32] = ACTIONS(1820), - [anon_sym_i32] = ACTIONS(1820), - [anon_sym_u64] = ACTIONS(1820), - [anon_sym_i64] = ACTIONS(1820), - [anon_sym_u128] = ACTIONS(1820), - [anon_sym_i128] = ACTIONS(1820), - [anon_sym_isize] = ACTIONS(1820), - [anon_sym_usize] = ACTIONS(1820), - [anon_sym_f32] = ACTIONS(1820), - [anon_sym_f64] = ACTIONS(1820), - [anon_sym_bool] = ACTIONS(1820), - [anon_sym_str] = ACTIONS(1820), - [anon_sym_char] = ACTIONS(1820), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_async] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_const] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_default] = ACTIONS(1820), - [anon_sym_enum] = ACTIONS(1820), - [anon_sym_fn] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1820), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_impl] = ACTIONS(1820), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_loop] = ACTIONS(1820), - [anon_sym_match] = ACTIONS(1820), - [anon_sym_mod] = ACTIONS(1820), - [anon_sym_pub] = ACTIONS(1820), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_static] = ACTIONS(1820), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_trait] = ACTIONS(1820), - [anon_sym_type] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1820), - [anon_sym_unsafe] = ACTIONS(1820), - [anon_sym_use] = ACTIONS(1820), - [anon_sym_while] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1818), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1818), - [anon_sym_yield] = ACTIONS(1820), - [anon_sym_move] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [aux_sym_string_literal_token1] = ACTIONS(1818), - [sym_char_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1820), - [sym_super] = ACTIONS(1820), - [sym_crate] = ACTIONS(1820), - [sym_metavariable] = ACTIONS(1818), - [sym_raw_string_literal] = ACTIONS(1818), - [sym_float_literal] = ACTIONS(1818), + [ts_builtin_sym_end] = ACTIONS(1848), + [sym_identifier] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_macro_rules_BANG] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_u8] = ACTIONS(1850), + [anon_sym_i8] = ACTIONS(1850), + [anon_sym_u16] = ACTIONS(1850), + [anon_sym_i16] = ACTIONS(1850), + [anon_sym_u32] = ACTIONS(1850), + [anon_sym_i32] = ACTIONS(1850), + [anon_sym_u64] = ACTIONS(1850), + [anon_sym_i64] = ACTIONS(1850), + [anon_sym_u128] = ACTIONS(1850), + [anon_sym_i128] = ACTIONS(1850), + [anon_sym_isize] = ACTIONS(1850), + [anon_sym_usize] = ACTIONS(1850), + [anon_sym_f32] = ACTIONS(1850), + [anon_sym_f64] = ACTIONS(1850), + [anon_sym_bool] = ACTIONS(1850), + [anon_sym_str] = ACTIONS(1850), + [anon_sym_char] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_async] = ACTIONS(1850), + [anon_sym_break] = ACTIONS(1850), + [anon_sym_const] = ACTIONS(1850), + [anon_sym_continue] = ACTIONS(1850), + [anon_sym_default] = ACTIONS(1850), + [anon_sym_enum] = ACTIONS(1850), + [anon_sym_fn] = ACTIONS(1850), + [anon_sym_for] = ACTIONS(1850), + [anon_sym_if] = ACTIONS(1850), + [anon_sym_impl] = ACTIONS(1850), + [anon_sym_let] = ACTIONS(1850), + [anon_sym_loop] = ACTIONS(1850), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_mod] = ACTIONS(1850), + [anon_sym_pub] = ACTIONS(1850), + [anon_sym_return] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1850), + [anon_sym_struct] = ACTIONS(1850), + [anon_sym_trait] = ACTIONS(1850), + [anon_sym_type] = ACTIONS(1850), + [anon_sym_union] = ACTIONS(1850), + [anon_sym_unsafe] = ACTIONS(1850), + [anon_sym_use] = ACTIONS(1850), + [anon_sym_while] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(1848), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1850), + [anon_sym_LT] = ACTIONS(1848), + [anon_sym_COLON_COLON] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_DOT_DOT] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_yield] = ACTIONS(1850), + [anon_sym_move] = ACTIONS(1850), + [sym_integer_literal] = ACTIONS(1848), + [aux_sym_string_literal_token1] = ACTIONS(1848), + [sym_char_literal] = ACTIONS(1848), + [anon_sym_true] = ACTIONS(1850), + [anon_sym_false] = ACTIONS(1850), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1850), + [sym_super] = ACTIONS(1850), + [sym_crate] = ACTIONS(1850), + [sym_metavariable] = ACTIONS(1848), + [sym_raw_string_literal] = ACTIONS(1848), + [sym_float_literal] = ACTIONS(1848), [sym_block_comment] = ACTIONS(3), }, [445] = { - [ts_builtin_sym_end] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_macro_rules_BANG] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [anon_sym_u8] = ACTIONS(1824), - [anon_sym_i8] = ACTIONS(1824), - [anon_sym_u16] = ACTIONS(1824), - [anon_sym_i16] = ACTIONS(1824), - [anon_sym_u32] = ACTIONS(1824), - [anon_sym_i32] = ACTIONS(1824), - [anon_sym_u64] = ACTIONS(1824), - [anon_sym_i64] = ACTIONS(1824), - [anon_sym_u128] = ACTIONS(1824), - [anon_sym_i128] = ACTIONS(1824), - [anon_sym_isize] = ACTIONS(1824), - [anon_sym_usize] = ACTIONS(1824), - [anon_sym_f32] = ACTIONS(1824), - [anon_sym_f64] = ACTIONS(1824), - [anon_sym_bool] = ACTIONS(1824), - [anon_sym_str] = ACTIONS(1824), - [anon_sym_char] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_async] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_default] = ACTIONS(1824), - [anon_sym_enum] = ACTIONS(1824), - [anon_sym_fn] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_impl] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_mod] = ACTIONS(1824), - [anon_sym_pub] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1824), - [anon_sym_struct] = ACTIONS(1824), - [anon_sym_trait] = ACTIONS(1824), - [anon_sym_type] = ACTIONS(1824), - [anon_sym_union] = ACTIONS(1824), - [anon_sym_unsafe] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_yield] = ACTIONS(1824), - [anon_sym_move] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [aux_sym_string_literal_token1] = ACTIONS(1822), - [sym_char_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1824), - [anon_sym_false] = ACTIONS(1824), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1824), - [sym_super] = ACTIONS(1824), - [sym_crate] = ACTIONS(1824), - [sym_metavariable] = ACTIONS(1822), - [sym_raw_string_literal] = ACTIONS(1822), - [sym_float_literal] = ACTIONS(1822), + [ts_builtin_sym_end] = ACTIONS(1852), + [sym_identifier] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_macro_rules_BANG] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_LBRACK] = ACTIONS(1852), + [anon_sym_STAR] = ACTIONS(1852), + [anon_sym_u8] = ACTIONS(1854), + [anon_sym_i8] = ACTIONS(1854), + [anon_sym_u16] = ACTIONS(1854), + [anon_sym_i16] = ACTIONS(1854), + [anon_sym_u32] = ACTIONS(1854), + [anon_sym_i32] = ACTIONS(1854), + [anon_sym_u64] = ACTIONS(1854), + [anon_sym_i64] = ACTIONS(1854), + [anon_sym_u128] = ACTIONS(1854), + [anon_sym_i128] = ACTIONS(1854), + [anon_sym_isize] = ACTIONS(1854), + [anon_sym_usize] = ACTIONS(1854), + [anon_sym_f32] = ACTIONS(1854), + [anon_sym_f64] = ACTIONS(1854), + [anon_sym_bool] = ACTIONS(1854), + [anon_sym_str] = ACTIONS(1854), + [anon_sym_char] = ACTIONS(1854), + [anon_sym_SQUOTE] = ACTIONS(1854), + [anon_sym_async] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_default] = ACTIONS(1854), + [anon_sym_enum] = ACTIONS(1854), + [anon_sym_fn] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_impl] = ACTIONS(1854), + [anon_sym_let] = ACTIONS(1854), + [anon_sym_loop] = ACTIONS(1854), + [anon_sym_match] = ACTIONS(1854), + [anon_sym_mod] = ACTIONS(1854), + [anon_sym_pub] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_static] = ACTIONS(1854), + [anon_sym_struct] = ACTIONS(1854), + [anon_sym_trait] = ACTIONS(1854), + [anon_sym_type] = ACTIONS(1854), + [anon_sym_union] = ACTIONS(1854), + [anon_sym_unsafe] = ACTIONS(1854), + [anon_sym_use] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(1852), + [anon_sym_BANG] = ACTIONS(1852), + [anon_sym_extern] = ACTIONS(1854), + [anon_sym_LT] = ACTIONS(1852), + [anon_sym_COLON_COLON] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1852), + [anon_sym_DOT_DOT] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_yield] = ACTIONS(1854), + [anon_sym_move] = ACTIONS(1854), + [sym_integer_literal] = ACTIONS(1852), + [aux_sym_string_literal_token1] = ACTIONS(1852), + [sym_char_literal] = ACTIONS(1852), + [anon_sym_true] = ACTIONS(1854), + [anon_sym_false] = ACTIONS(1854), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1854), + [sym_super] = ACTIONS(1854), + [sym_crate] = ACTIONS(1854), + [sym_metavariable] = ACTIONS(1852), + [sym_raw_string_literal] = ACTIONS(1852), + [sym_float_literal] = ACTIONS(1852), [sym_block_comment] = ACTIONS(3), }, [446] = { - [ts_builtin_sym_end] = ACTIONS(1826), - [sym_identifier] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_macro_rules_BANG] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_u8] = ACTIONS(1828), - [anon_sym_i8] = ACTIONS(1828), - [anon_sym_u16] = ACTIONS(1828), - [anon_sym_i16] = ACTIONS(1828), - [anon_sym_u32] = ACTIONS(1828), - [anon_sym_i32] = ACTIONS(1828), - [anon_sym_u64] = ACTIONS(1828), - [anon_sym_i64] = ACTIONS(1828), - [anon_sym_u128] = ACTIONS(1828), - [anon_sym_i128] = ACTIONS(1828), - [anon_sym_isize] = ACTIONS(1828), - [anon_sym_usize] = ACTIONS(1828), - [anon_sym_f32] = ACTIONS(1828), - [anon_sym_f64] = ACTIONS(1828), - [anon_sym_bool] = ACTIONS(1828), - [anon_sym_str] = ACTIONS(1828), - [anon_sym_char] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_async] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_default] = ACTIONS(1828), - [anon_sym_enum] = ACTIONS(1828), - [anon_sym_fn] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_impl] = ACTIONS(1828), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_loop] = ACTIONS(1828), - [anon_sym_match] = ACTIONS(1828), - [anon_sym_mod] = ACTIONS(1828), - [anon_sym_pub] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1828), - [anon_sym_struct] = ACTIONS(1828), - [anon_sym_trait] = ACTIONS(1828), - [anon_sym_type] = ACTIONS(1828), - [anon_sym_union] = ACTIONS(1828), - [anon_sym_unsafe] = ACTIONS(1828), - [anon_sym_use] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1828), - [anon_sym_POUND] = ACTIONS(1826), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_yield] = ACTIONS(1828), - [anon_sym_move] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [aux_sym_string_literal_token1] = ACTIONS(1826), - [sym_char_literal] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1828), - [sym_super] = ACTIONS(1828), - [sym_crate] = ACTIONS(1828), - [sym_metavariable] = ACTIONS(1826), - [sym_raw_string_literal] = ACTIONS(1826), - [sym_float_literal] = ACTIONS(1826), + [ts_builtin_sym_end] = ACTIONS(410), + [sym_identifier] = ACTIONS(412), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_macro_rules_BANG] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_LBRACK] = ACTIONS(410), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(412), + [anon_sym_async] = ACTIONS(412), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(412), + [anon_sym_continue] = ACTIONS(412), + [anon_sym_default] = ACTIONS(412), + [anon_sym_enum] = ACTIONS(412), + [anon_sym_fn] = ACTIONS(412), + [anon_sym_for] = ACTIONS(412), + [anon_sym_if] = ACTIONS(412), + [anon_sym_impl] = ACTIONS(412), + [anon_sym_let] = ACTIONS(412), + [anon_sym_loop] = ACTIONS(412), + [anon_sym_match] = ACTIONS(412), + [anon_sym_mod] = ACTIONS(412), + [anon_sym_pub] = ACTIONS(412), + [anon_sym_return] = ACTIONS(412), + [anon_sym_static] = ACTIONS(412), + [anon_sym_struct] = ACTIONS(412), + [anon_sym_trait] = ACTIONS(412), + [anon_sym_type] = ACTIONS(412), + [anon_sym_union] = ACTIONS(412), + [anon_sym_unsafe] = ACTIONS(412), + [anon_sym_use] = ACTIONS(412), + [anon_sym_while] = ACTIONS(412), + [anon_sym_POUND] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_extern] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_AMP] = ACTIONS(410), + [anon_sym_DOT_DOT] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_PIPE] = ACTIONS(410), + [anon_sym_yield] = ACTIONS(412), + [anon_sym_move] = ACTIONS(412), + [sym_integer_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(410), + [sym_char_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(412), + [sym_super] = ACTIONS(412), + [sym_crate] = ACTIONS(412), + [sym_metavariable] = ACTIONS(410), + [sym_raw_string_literal] = ACTIONS(410), + [sym_float_literal] = ACTIONS(410), [sym_block_comment] = ACTIONS(3), }, [447] = { - [ts_builtin_sym_end] = ACTIONS(1830), - [sym_identifier] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_macro_rules_BANG] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_u8] = ACTIONS(1832), - [anon_sym_i8] = ACTIONS(1832), - [anon_sym_u16] = ACTIONS(1832), - [anon_sym_i16] = ACTIONS(1832), - [anon_sym_u32] = ACTIONS(1832), - [anon_sym_i32] = ACTIONS(1832), - [anon_sym_u64] = ACTIONS(1832), - [anon_sym_i64] = ACTIONS(1832), - [anon_sym_u128] = ACTIONS(1832), - [anon_sym_i128] = ACTIONS(1832), - [anon_sym_isize] = ACTIONS(1832), - [anon_sym_usize] = ACTIONS(1832), - [anon_sym_f32] = ACTIONS(1832), - [anon_sym_f64] = ACTIONS(1832), - [anon_sym_bool] = ACTIONS(1832), - [anon_sym_str] = ACTIONS(1832), - [anon_sym_char] = ACTIONS(1832), - [anon_sym_SQUOTE] = ACTIONS(1832), - [anon_sym_async] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_const] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_default] = ACTIONS(1832), - [anon_sym_enum] = ACTIONS(1832), - [anon_sym_fn] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_impl] = ACTIONS(1832), - [anon_sym_let] = ACTIONS(1832), - [anon_sym_loop] = ACTIONS(1832), - [anon_sym_match] = ACTIONS(1832), - [anon_sym_mod] = ACTIONS(1832), - [anon_sym_pub] = ACTIONS(1832), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_static] = ACTIONS(1832), - [anon_sym_struct] = ACTIONS(1832), - [anon_sym_trait] = ACTIONS(1832), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_union] = ACTIONS(1832), - [anon_sym_unsafe] = ACTIONS(1832), - [anon_sym_use] = ACTIONS(1832), - [anon_sym_while] = ACTIONS(1832), - [anon_sym_POUND] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_extern] = ACTIONS(1832), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_COLON_COLON] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_yield] = ACTIONS(1832), - [anon_sym_move] = ACTIONS(1832), - [sym_integer_literal] = ACTIONS(1830), - [aux_sym_string_literal_token1] = ACTIONS(1830), - [sym_char_literal] = ACTIONS(1830), - [anon_sym_true] = ACTIONS(1832), - [anon_sym_false] = ACTIONS(1832), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1832), - [sym_super] = ACTIONS(1832), - [sym_crate] = ACTIONS(1832), - [sym_metavariable] = ACTIONS(1830), - [sym_raw_string_literal] = ACTIONS(1830), - [sym_float_literal] = ACTIONS(1830), + [ts_builtin_sym_end] = ACTIONS(1856), + [sym_identifier] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_macro_rules_BANG] = ACTIONS(1856), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_STAR] = ACTIONS(1856), + [anon_sym_u8] = ACTIONS(1858), + [anon_sym_i8] = ACTIONS(1858), + [anon_sym_u16] = ACTIONS(1858), + [anon_sym_i16] = ACTIONS(1858), + [anon_sym_u32] = ACTIONS(1858), + [anon_sym_i32] = ACTIONS(1858), + [anon_sym_u64] = ACTIONS(1858), + [anon_sym_i64] = ACTIONS(1858), + [anon_sym_u128] = ACTIONS(1858), + [anon_sym_i128] = ACTIONS(1858), + [anon_sym_isize] = ACTIONS(1858), + [anon_sym_usize] = ACTIONS(1858), + [anon_sym_f32] = ACTIONS(1858), + [anon_sym_f64] = ACTIONS(1858), + [anon_sym_bool] = ACTIONS(1858), + [anon_sym_str] = ACTIONS(1858), + [anon_sym_char] = ACTIONS(1858), + [anon_sym_SQUOTE] = ACTIONS(1858), + [anon_sym_async] = ACTIONS(1858), + [anon_sym_break] = ACTIONS(1858), + [anon_sym_const] = ACTIONS(1858), + [anon_sym_continue] = ACTIONS(1858), + [anon_sym_default] = ACTIONS(1858), + [anon_sym_enum] = ACTIONS(1858), + [anon_sym_fn] = ACTIONS(1858), + [anon_sym_for] = ACTIONS(1858), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_impl] = ACTIONS(1858), + [anon_sym_let] = ACTIONS(1858), + [anon_sym_loop] = ACTIONS(1858), + [anon_sym_match] = ACTIONS(1858), + [anon_sym_mod] = ACTIONS(1858), + [anon_sym_pub] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_static] = ACTIONS(1858), + [anon_sym_struct] = ACTIONS(1858), + [anon_sym_trait] = ACTIONS(1858), + [anon_sym_type] = ACTIONS(1858), + [anon_sym_union] = ACTIONS(1858), + [anon_sym_unsafe] = ACTIONS(1858), + [anon_sym_use] = ACTIONS(1858), + [anon_sym_while] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(1856), + [anon_sym_BANG] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(1858), + [anon_sym_LT] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(1856), + [anon_sym_AMP] = ACTIONS(1856), + [anon_sym_DOT_DOT] = ACTIONS(1856), + [anon_sym_DASH] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_yield] = ACTIONS(1858), + [anon_sym_move] = ACTIONS(1858), + [sym_integer_literal] = ACTIONS(1856), + [aux_sym_string_literal_token1] = ACTIONS(1856), + [sym_char_literal] = ACTIONS(1856), + [anon_sym_true] = ACTIONS(1858), + [anon_sym_false] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1858), + [sym_super] = ACTIONS(1858), + [sym_crate] = ACTIONS(1858), + [sym_metavariable] = ACTIONS(1856), + [sym_raw_string_literal] = ACTIONS(1856), + [sym_float_literal] = ACTIONS(1856), [sym_block_comment] = ACTIONS(3), }, [448] = { - [ts_builtin_sym_end] = ACTIONS(1834), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_macro_rules_BANG] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_RBRACE] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_u8] = ACTIONS(1836), - [anon_sym_i8] = ACTIONS(1836), - [anon_sym_u16] = ACTIONS(1836), - [anon_sym_i16] = ACTIONS(1836), - [anon_sym_u32] = ACTIONS(1836), - [anon_sym_i32] = ACTIONS(1836), - [anon_sym_u64] = ACTIONS(1836), - [anon_sym_i64] = ACTIONS(1836), - [anon_sym_u128] = ACTIONS(1836), - [anon_sym_i128] = ACTIONS(1836), - [anon_sym_isize] = ACTIONS(1836), - [anon_sym_usize] = ACTIONS(1836), - [anon_sym_f32] = ACTIONS(1836), - [anon_sym_f64] = ACTIONS(1836), - [anon_sym_bool] = ACTIONS(1836), - [anon_sym_str] = ACTIONS(1836), - [anon_sym_char] = ACTIONS(1836), - [anon_sym_SQUOTE] = ACTIONS(1836), - [anon_sym_async] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_const] = ACTIONS(1836), - [anon_sym_continue] = ACTIONS(1836), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_fn] = ACTIONS(1836), - [anon_sym_for] = ACTIONS(1836), - [anon_sym_if] = ACTIONS(1836), - [anon_sym_impl] = ACTIONS(1836), - [anon_sym_let] = ACTIONS(1836), - [anon_sym_loop] = ACTIONS(1836), - [anon_sym_match] = ACTIONS(1836), - [anon_sym_mod] = ACTIONS(1836), - [anon_sym_pub] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_static] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_trait] = ACTIONS(1836), - [anon_sym_type] = ACTIONS(1836), - [anon_sym_union] = ACTIONS(1836), - [anon_sym_unsafe] = ACTIONS(1836), - [anon_sym_use] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_extern] = ACTIONS(1836), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_COLON_COLON] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_DOT_DOT] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_move] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [aux_sym_string_literal_token1] = ACTIONS(1834), - [sym_char_literal] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(1836), - [anon_sym_false] = ACTIONS(1836), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1836), - [sym_super] = ACTIONS(1836), - [sym_crate] = ACTIONS(1836), - [sym_metavariable] = ACTIONS(1834), - [sym_raw_string_literal] = ACTIONS(1834), - [sym_float_literal] = ACTIONS(1834), + [ts_builtin_sym_end] = ACTIONS(1860), + [sym_identifier] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_macro_rules_BANG] = ACTIONS(1860), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1860), + [anon_sym_RBRACE] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1860), + [anon_sym_u8] = ACTIONS(1862), + [anon_sym_i8] = ACTIONS(1862), + [anon_sym_u16] = ACTIONS(1862), + [anon_sym_i16] = ACTIONS(1862), + [anon_sym_u32] = ACTIONS(1862), + [anon_sym_i32] = ACTIONS(1862), + [anon_sym_u64] = ACTIONS(1862), + [anon_sym_i64] = ACTIONS(1862), + [anon_sym_u128] = ACTIONS(1862), + [anon_sym_i128] = ACTIONS(1862), + [anon_sym_isize] = ACTIONS(1862), + [anon_sym_usize] = ACTIONS(1862), + [anon_sym_f32] = ACTIONS(1862), + [anon_sym_f64] = ACTIONS(1862), + [anon_sym_bool] = ACTIONS(1862), + [anon_sym_str] = ACTIONS(1862), + [anon_sym_char] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_async] = ACTIONS(1862), + [anon_sym_break] = ACTIONS(1862), + [anon_sym_const] = ACTIONS(1862), + [anon_sym_continue] = ACTIONS(1862), + [anon_sym_default] = ACTIONS(1862), + [anon_sym_enum] = ACTIONS(1862), + [anon_sym_fn] = ACTIONS(1862), + [anon_sym_for] = ACTIONS(1862), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_impl] = ACTIONS(1862), + [anon_sym_let] = ACTIONS(1862), + [anon_sym_loop] = ACTIONS(1862), + [anon_sym_match] = ACTIONS(1862), + [anon_sym_mod] = ACTIONS(1862), + [anon_sym_pub] = ACTIONS(1862), + [anon_sym_return] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1862), + [anon_sym_struct] = ACTIONS(1862), + [anon_sym_trait] = ACTIONS(1862), + [anon_sym_type] = ACTIONS(1862), + [anon_sym_union] = ACTIONS(1862), + [anon_sym_unsafe] = ACTIONS(1862), + [anon_sym_use] = ACTIONS(1862), + [anon_sym_while] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(1860), + [anon_sym_BANG] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1862), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_COLON_COLON] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_yield] = ACTIONS(1862), + [anon_sym_move] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(1860), + [aux_sym_string_literal_token1] = ACTIONS(1860), + [sym_char_literal] = ACTIONS(1860), + [anon_sym_true] = ACTIONS(1862), + [anon_sym_false] = ACTIONS(1862), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1862), + [sym_super] = ACTIONS(1862), + [sym_crate] = ACTIONS(1862), + [sym_metavariable] = ACTIONS(1860), + [sym_raw_string_literal] = ACTIONS(1860), + [sym_float_literal] = ACTIONS(1860), [sym_block_comment] = ACTIONS(3), }, [449] = { - [ts_builtin_sym_end] = ACTIONS(1838), - [sym_identifier] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_macro_rules_BANG] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_u8] = ACTIONS(1840), - [anon_sym_i8] = ACTIONS(1840), - [anon_sym_u16] = ACTIONS(1840), - [anon_sym_i16] = ACTIONS(1840), - [anon_sym_u32] = ACTIONS(1840), - [anon_sym_i32] = ACTIONS(1840), - [anon_sym_u64] = ACTIONS(1840), - [anon_sym_i64] = ACTIONS(1840), - [anon_sym_u128] = ACTIONS(1840), - [anon_sym_i128] = ACTIONS(1840), - [anon_sym_isize] = ACTIONS(1840), - [anon_sym_usize] = ACTIONS(1840), - [anon_sym_f32] = ACTIONS(1840), - [anon_sym_f64] = ACTIONS(1840), - [anon_sym_bool] = ACTIONS(1840), - [anon_sym_str] = ACTIONS(1840), - [anon_sym_char] = ACTIONS(1840), - [anon_sym_SQUOTE] = ACTIONS(1840), - [anon_sym_async] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [anon_sym_continue] = ACTIONS(1840), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_enum] = ACTIONS(1840), - [anon_sym_fn] = ACTIONS(1840), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_if] = ACTIONS(1840), - [anon_sym_impl] = ACTIONS(1840), - [anon_sym_let] = ACTIONS(1840), - [anon_sym_loop] = ACTIONS(1840), - [anon_sym_match] = ACTIONS(1840), - [anon_sym_mod] = ACTIONS(1840), - [anon_sym_pub] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1840), - [anon_sym_struct] = ACTIONS(1840), - [anon_sym_trait] = ACTIONS(1840), - [anon_sym_type] = ACTIONS(1840), - [anon_sym_union] = ACTIONS(1840), - [anon_sym_unsafe] = ACTIONS(1840), - [anon_sym_use] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1840), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_BANG] = ACTIONS(1838), - [anon_sym_extern] = ACTIONS(1840), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_COLON_COLON] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1838), - [anon_sym_DOT_DOT] = ACTIONS(1838), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_yield] = ACTIONS(1840), - [anon_sym_move] = ACTIONS(1840), - [sym_integer_literal] = ACTIONS(1838), - [aux_sym_string_literal_token1] = ACTIONS(1838), - [sym_char_literal] = ACTIONS(1838), - [anon_sym_true] = ACTIONS(1840), - [anon_sym_false] = ACTIONS(1840), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1840), - [sym_super] = ACTIONS(1840), - [sym_crate] = ACTIONS(1840), - [sym_metavariable] = ACTIONS(1838), - [sym_raw_string_literal] = ACTIONS(1838), - [sym_float_literal] = ACTIONS(1838), + [ts_builtin_sym_end] = ACTIONS(1864), + [sym_identifier] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1864), + [anon_sym_macro_rules_BANG] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(1864), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_STAR] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_async] = ACTIONS(1866), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_const] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1866), + [anon_sym_default] = ACTIONS(1866), + [anon_sym_enum] = ACTIONS(1866), + [anon_sym_fn] = ACTIONS(1866), + [anon_sym_for] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_impl] = ACTIONS(1866), + [anon_sym_let] = ACTIONS(1866), + [anon_sym_loop] = ACTIONS(1866), + [anon_sym_match] = ACTIONS(1866), + [anon_sym_mod] = ACTIONS(1866), + [anon_sym_pub] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_static] = ACTIONS(1866), + [anon_sym_struct] = ACTIONS(1866), + [anon_sym_trait] = ACTIONS(1866), + [anon_sym_type] = ACTIONS(1866), + [anon_sym_union] = ACTIONS(1866), + [anon_sym_unsafe] = ACTIONS(1866), + [anon_sym_use] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1864), + [anon_sym_extern] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1864), + [anon_sym_COLON_COLON] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1864), + [anon_sym_DOT_DOT] = ACTIONS(1864), + [anon_sym_DASH] = ACTIONS(1864), + [anon_sym_PIPE] = ACTIONS(1864), + [anon_sym_yield] = ACTIONS(1866), + [anon_sym_move] = ACTIONS(1866), + [sym_integer_literal] = ACTIONS(1864), + [aux_sym_string_literal_token1] = ACTIONS(1864), + [sym_char_literal] = ACTIONS(1864), + [anon_sym_true] = ACTIONS(1866), + [anon_sym_false] = ACTIONS(1866), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1866), + [sym_super] = ACTIONS(1866), + [sym_crate] = ACTIONS(1866), + [sym_metavariable] = ACTIONS(1864), + [sym_raw_string_literal] = ACTIONS(1864), + [sym_float_literal] = ACTIONS(1864), [sym_block_comment] = ACTIONS(3), }, [450] = { - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_identifier] = ACTIONS(1844), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_macro_rules_BANG] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_u8] = ACTIONS(1844), - [anon_sym_i8] = ACTIONS(1844), - [anon_sym_u16] = ACTIONS(1844), - [anon_sym_i16] = ACTIONS(1844), - [anon_sym_u32] = ACTIONS(1844), - [anon_sym_i32] = ACTIONS(1844), - [anon_sym_u64] = ACTIONS(1844), - [anon_sym_i64] = ACTIONS(1844), - [anon_sym_u128] = ACTIONS(1844), - [anon_sym_i128] = ACTIONS(1844), - [anon_sym_isize] = ACTIONS(1844), - [anon_sym_usize] = ACTIONS(1844), - [anon_sym_f32] = ACTIONS(1844), - [anon_sym_f64] = ACTIONS(1844), - [anon_sym_bool] = ACTIONS(1844), - [anon_sym_str] = ACTIONS(1844), - [anon_sym_char] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_async] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1844), - [anon_sym_default] = ACTIONS(1844), - [anon_sym_enum] = ACTIONS(1844), - [anon_sym_fn] = ACTIONS(1844), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1844), - [anon_sym_impl] = ACTIONS(1844), - [anon_sym_let] = ACTIONS(1844), - [anon_sym_loop] = ACTIONS(1844), - [anon_sym_match] = ACTIONS(1844), - [anon_sym_mod] = ACTIONS(1844), - [anon_sym_pub] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_static] = ACTIONS(1844), - [anon_sym_struct] = ACTIONS(1844), - [anon_sym_trait] = ACTIONS(1844), - [anon_sym_type] = ACTIONS(1844), - [anon_sym_union] = ACTIONS(1844), - [anon_sym_unsafe] = ACTIONS(1844), - [anon_sym_use] = ACTIONS(1844), - [anon_sym_while] = ACTIONS(1844), - [anon_sym_POUND] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_extern] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1842), - [anon_sym_COLON_COLON] = ACTIONS(1842), - [anon_sym_AMP] = ACTIONS(1842), - [anon_sym_DOT_DOT] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_yield] = ACTIONS(1844), - [anon_sym_move] = ACTIONS(1844), - [sym_integer_literal] = ACTIONS(1842), - [aux_sym_string_literal_token1] = ACTIONS(1842), - [sym_char_literal] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1844), - [anon_sym_false] = ACTIONS(1844), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1844), - [sym_super] = ACTIONS(1844), - [sym_crate] = ACTIONS(1844), - [sym_metavariable] = ACTIONS(1842), - [sym_raw_string_literal] = ACTIONS(1842), - [sym_float_literal] = ACTIONS(1842), + [ts_builtin_sym_end] = ACTIONS(1868), + [sym_identifier] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_macro_rules_BANG] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1868), + [anon_sym_RBRACE] = ACTIONS(1868), + [anon_sym_LBRACK] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1868), + [anon_sym_u8] = ACTIONS(1870), + [anon_sym_i8] = ACTIONS(1870), + [anon_sym_u16] = ACTIONS(1870), + [anon_sym_i16] = ACTIONS(1870), + [anon_sym_u32] = ACTIONS(1870), + [anon_sym_i32] = ACTIONS(1870), + [anon_sym_u64] = ACTIONS(1870), + [anon_sym_i64] = ACTIONS(1870), + [anon_sym_u128] = ACTIONS(1870), + [anon_sym_i128] = ACTIONS(1870), + [anon_sym_isize] = ACTIONS(1870), + [anon_sym_usize] = ACTIONS(1870), + [anon_sym_f32] = ACTIONS(1870), + [anon_sym_f64] = ACTIONS(1870), + [anon_sym_bool] = ACTIONS(1870), + [anon_sym_str] = ACTIONS(1870), + [anon_sym_char] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_break] = ACTIONS(1870), + [anon_sym_const] = ACTIONS(1870), + [anon_sym_continue] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1870), + [anon_sym_enum] = ACTIONS(1870), + [anon_sym_fn] = ACTIONS(1870), + [anon_sym_for] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(1870), + [anon_sym_impl] = ACTIONS(1870), + [anon_sym_let] = ACTIONS(1870), + [anon_sym_loop] = ACTIONS(1870), + [anon_sym_match] = ACTIONS(1870), + [anon_sym_mod] = ACTIONS(1870), + [anon_sym_pub] = ACTIONS(1870), + [anon_sym_return] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1870), + [anon_sym_struct] = ACTIONS(1870), + [anon_sym_trait] = ACTIONS(1870), + [anon_sym_type] = ACTIONS(1870), + [anon_sym_union] = ACTIONS(1870), + [anon_sym_unsafe] = ACTIONS(1870), + [anon_sym_use] = ACTIONS(1870), + [anon_sym_while] = ACTIONS(1870), + [anon_sym_POUND] = ACTIONS(1868), + [anon_sym_BANG] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1870), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_COLON_COLON] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_DOT_DOT] = ACTIONS(1868), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_yield] = ACTIONS(1870), + [anon_sym_move] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(1868), + [aux_sym_string_literal_token1] = ACTIONS(1868), + [sym_char_literal] = ACTIONS(1868), + [anon_sym_true] = ACTIONS(1870), + [anon_sym_false] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1870), + [sym_super] = ACTIONS(1870), + [sym_crate] = ACTIONS(1870), + [sym_metavariable] = ACTIONS(1868), + [sym_raw_string_literal] = ACTIONS(1868), + [sym_float_literal] = ACTIONS(1868), [sym_block_comment] = ACTIONS(3), }, [451] = { - [ts_builtin_sym_end] = ACTIONS(1846), - [sym_identifier] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_macro_rules_BANG] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_u8] = ACTIONS(1848), - [anon_sym_i8] = ACTIONS(1848), - [anon_sym_u16] = ACTIONS(1848), - [anon_sym_i16] = ACTIONS(1848), - [anon_sym_u32] = ACTIONS(1848), - [anon_sym_i32] = ACTIONS(1848), - [anon_sym_u64] = ACTIONS(1848), - [anon_sym_i64] = ACTIONS(1848), - [anon_sym_u128] = ACTIONS(1848), - [anon_sym_i128] = ACTIONS(1848), - [anon_sym_isize] = ACTIONS(1848), - [anon_sym_usize] = ACTIONS(1848), - [anon_sym_f32] = ACTIONS(1848), - [anon_sym_f64] = ACTIONS(1848), - [anon_sym_bool] = ACTIONS(1848), - [anon_sym_str] = ACTIONS(1848), - [anon_sym_char] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_async] = ACTIONS(1848), - [anon_sym_break] = ACTIONS(1848), - [anon_sym_const] = ACTIONS(1848), - [anon_sym_continue] = ACTIONS(1848), - [anon_sym_default] = ACTIONS(1848), - [anon_sym_enum] = ACTIONS(1848), - [anon_sym_fn] = ACTIONS(1848), - [anon_sym_for] = ACTIONS(1848), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_impl] = ACTIONS(1848), - [anon_sym_let] = ACTIONS(1848), - [anon_sym_loop] = ACTIONS(1848), - [anon_sym_match] = ACTIONS(1848), - [anon_sym_mod] = ACTIONS(1848), - [anon_sym_pub] = ACTIONS(1848), - [anon_sym_return] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1848), - [anon_sym_struct] = ACTIONS(1848), - [anon_sym_trait] = ACTIONS(1848), - [anon_sym_type] = ACTIONS(1848), - [anon_sym_union] = ACTIONS(1848), - [anon_sym_unsafe] = ACTIONS(1848), - [anon_sym_use] = ACTIONS(1848), - [anon_sym_while] = ACTIONS(1848), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_BANG] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1848), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_COLON_COLON] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_DOT_DOT] = ACTIONS(1846), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_yield] = ACTIONS(1848), - [anon_sym_move] = ACTIONS(1848), - [sym_integer_literal] = ACTIONS(1846), - [aux_sym_string_literal_token1] = ACTIONS(1846), - [sym_char_literal] = ACTIONS(1846), - [anon_sym_true] = ACTIONS(1848), - [anon_sym_false] = ACTIONS(1848), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1848), - [sym_super] = ACTIONS(1848), - [sym_crate] = ACTIONS(1848), - [sym_metavariable] = ACTIONS(1846), - [sym_raw_string_literal] = ACTIONS(1846), - [sym_float_literal] = ACTIONS(1846), + [sym_attribute_item] = STATE(545), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_match_arm] = STATE(482), + [sym_last_match_arm] = STATE(2359), + [sym_match_pattern] = STATE(2312), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1916), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_enum_variant_list_repeat1] = STATE(545), + [aux_sym_match_block_repeat1] = STATE(482), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [452] = { - [ts_builtin_sym_end] = ACTIONS(1850), - [sym_identifier] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_macro_rules_BANG] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1850), - [anon_sym_u8] = ACTIONS(1852), - [anon_sym_i8] = ACTIONS(1852), - [anon_sym_u16] = ACTIONS(1852), - [anon_sym_i16] = ACTIONS(1852), - [anon_sym_u32] = ACTIONS(1852), - [anon_sym_i32] = ACTIONS(1852), - [anon_sym_u64] = ACTIONS(1852), - [anon_sym_i64] = ACTIONS(1852), - [anon_sym_u128] = ACTIONS(1852), - [anon_sym_i128] = ACTIONS(1852), - [anon_sym_isize] = ACTIONS(1852), - [anon_sym_usize] = ACTIONS(1852), - [anon_sym_f32] = ACTIONS(1852), - [anon_sym_f64] = ACTIONS(1852), - [anon_sym_bool] = ACTIONS(1852), - [anon_sym_str] = ACTIONS(1852), - [anon_sym_char] = ACTIONS(1852), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_async] = ACTIONS(1852), - [anon_sym_break] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1852), - [anon_sym_continue] = ACTIONS(1852), - [anon_sym_default] = ACTIONS(1852), - [anon_sym_enum] = ACTIONS(1852), - [anon_sym_fn] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1852), - [anon_sym_if] = ACTIONS(1852), - [anon_sym_impl] = ACTIONS(1852), - [anon_sym_let] = ACTIONS(1852), - [anon_sym_loop] = ACTIONS(1852), - [anon_sym_match] = ACTIONS(1852), - [anon_sym_mod] = ACTIONS(1852), - [anon_sym_pub] = ACTIONS(1852), - [anon_sym_return] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1852), - [anon_sym_struct] = ACTIONS(1852), - [anon_sym_trait] = ACTIONS(1852), - [anon_sym_type] = ACTIONS(1852), - [anon_sym_union] = ACTIONS(1852), - [anon_sym_unsafe] = ACTIONS(1852), - [anon_sym_use] = ACTIONS(1852), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(1850), - [anon_sym_BANG] = ACTIONS(1850), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_LT] = ACTIONS(1850), - [anon_sym_COLON_COLON] = ACTIONS(1850), - [anon_sym_AMP] = ACTIONS(1850), - [anon_sym_DOT_DOT] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_yield] = ACTIONS(1852), - [anon_sym_move] = ACTIONS(1852), - [sym_integer_literal] = ACTIONS(1850), - [aux_sym_string_literal_token1] = ACTIONS(1850), - [sym_char_literal] = ACTIONS(1850), - [anon_sym_true] = ACTIONS(1852), - [anon_sym_false] = ACTIONS(1852), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1852), - [sym_super] = ACTIONS(1852), - [sym_crate] = ACTIONS(1852), - [sym_metavariable] = ACTIONS(1850), - [sym_raw_string_literal] = ACTIONS(1850), - [sym_float_literal] = ACTIONS(1850), - [sym_block_comment] = ACTIONS(3), - }, - [453] = { - [ts_builtin_sym_end] = ACTIONS(1854), - [sym_identifier] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_macro_rules_BANG] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1854), - [anon_sym_u8] = ACTIONS(1856), - [anon_sym_i8] = ACTIONS(1856), - [anon_sym_u16] = ACTIONS(1856), - [anon_sym_i16] = ACTIONS(1856), - [anon_sym_u32] = ACTIONS(1856), - [anon_sym_i32] = ACTIONS(1856), - [anon_sym_u64] = ACTIONS(1856), - [anon_sym_i64] = ACTIONS(1856), - [anon_sym_u128] = ACTIONS(1856), - [anon_sym_i128] = ACTIONS(1856), - [anon_sym_isize] = ACTIONS(1856), - [anon_sym_usize] = ACTIONS(1856), - [anon_sym_f32] = ACTIONS(1856), - [anon_sym_f64] = ACTIONS(1856), - [anon_sym_bool] = ACTIONS(1856), - [anon_sym_str] = ACTIONS(1856), - [anon_sym_char] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_async] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_const] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_default] = ACTIONS(1856), - [anon_sym_enum] = ACTIONS(1856), - [anon_sym_fn] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_impl] = ACTIONS(1856), - [anon_sym_let] = ACTIONS(1856), - [anon_sym_loop] = ACTIONS(1856), - [anon_sym_match] = ACTIONS(1856), - [anon_sym_mod] = ACTIONS(1856), - [anon_sym_pub] = ACTIONS(1856), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1856), - [anon_sym_struct] = ACTIONS(1856), - [anon_sym_trait] = ACTIONS(1856), - [anon_sym_type] = ACTIONS(1856), - [anon_sym_union] = ACTIONS(1856), - [anon_sym_unsafe] = ACTIONS(1856), - [anon_sym_use] = ACTIONS(1856), - [anon_sym_while] = ACTIONS(1856), - [anon_sym_POUND] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1856), - [anon_sym_LT] = ACTIONS(1854), - [anon_sym_COLON_COLON] = ACTIONS(1854), - [anon_sym_AMP] = ACTIONS(1854), - [anon_sym_DOT_DOT] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_yield] = ACTIONS(1856), - [anon_sym_move] = ACTIONS(1856), - [sym_integer_literal] = ACTIONS(1854), - [aux_sym_string_literal_token1] = ACTIONS(1854), - [sym_char_literal] = ACTIONS(1854), - [anon_sym_true] = ACTIONS(1856), - [anon_sym_false] = ACTIONS(1856), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1856), - [sym_super] = ACTIONS(1856), - [sym_crate] = ACTIONS(1856), - [sym_metavariable] = ACTIONS(1854), - [sym_raw_string_literal] = ACTIONS(1854), - [sym_float_literal] = ACTIONS(1854), - [sym_block_comment] = ACTIONS(3), - }, - [454] = { - [ts_builtin_sym_end] = ACTIONS(1858), - [sym_identifier] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_macro_rules_BANG] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_STAR] = ACTIONS(1858), - [anon_sym_u8] = ACTIONS(1860), - [anon_sym_i8] = ACTIONS(1860), - [anon_sym_u16] = ACTIONS(1860), - [anon_sym_i16] = ACTIONS(1860), - [anon_sym_u32] = ACTIONS(1860), - [anon_sym_i32] = ACTIONS(1860), - [anon_sym_u64] = ACTIONS(1860), - [anon_sym_i64] = ACTIONS(1860), - [anon_sym_u128] = ACTIONS(1860), - [anon_sym_i128] = ACTIONS(1860), - [anon_sym_isize] = ACTIONS(1860), - [anon_sym_usize] = ACTIONS(1860), - [anon_sym_f32] = ACTIONS(1860), - [anon_sym_f64] = ACTIONS(1860), - [anon_sym_bool] = ACTIONS(1860), - [anon_sym_str] = ACTIONS(1860), - [anon_sym_char] = ACTIONS(1860), - [anon_sym_SQUOTE] = ACTIONS(1860), - [anon_sym_async] = ACTIONS(1860), - [anon_sym_break] = ACTIONS(1860), - [anon_sym_const] = ACTIONS(1860), - [anon_sym_continue] = ACTIONS(1860), - [anon_sym_default] = ACTIONS(1860), - [anon_sym_enum] = ACTIONS(1860), - [anon_sym_fn] = ACTIONS(1860), - [anon_sym_for] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_impl] = ACTIONS(1860), - [anon_sym_let] = ACTIONS(1860), - [anon_sym_loop] = ACTIONS(1860), - [anon_sym_match] = ACTIONS(1860), - [anon_sym_mod] = ACTIONS(1860), - [anon_sym_pub] = ACTIONS(1860), - [anon_sym_return] = ACTIONS(1860), - [anon_sym_static] = ACTIONS(1860), - [anon_sym_struct] = ACTIONS(1860), - [anon_sym_trait] = ACTIONS(1860), - [anon_sym_type] = ACTIONS(1860), - [anon_sym_union] = ACTIONS(1860), - [anon_sym_unsafe] = ACTIONS(1860), - [anon_sym_use] = ACTIONS(1860), - [anon_sym_while] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1858), - [anon_sym_extern] = ACTIONS(1860), - [anon_sym_LT] = ACTIONS(1858), - [anon_sym_COLON_COLON] = ACTIONS(1858), - [anon_sym_AMP] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_yield] = ACTIONS(1860), - [anon_sym_move] = ACTIONS(1860), - [sym_integer_literal] = ACTIONS(1858), - [aux_sym_string_literal_token1] = ACTIONS(1858), - [sym_char_literal] = ACTIONS(1858), - [anon_sym_true] = ACTIONS(1860), - [anon_sym_false] = ACTIONS(1860), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1860), - [sym_super] = ACTIONS(1860), - [sym_crate] = ACTIONS(1860), - [sym_metavariable] = ACTIONS(1858), - [sym_raw_string_literal] = ACTIONS(1858), - [sym_float_literal] = ACTIONS(1858), - [sym_block_comment] = ACTIONS(3), - }, - [455] = { - [ts_builtin_sym_end] = ACTIONS(1862), - [sym_identifier] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_macro_rules_BANG] = ACTIONS(1862), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1862), - [anon_sym_u8] = ACTIONS(1864), - [anon_sym_i8] = ACTIONS(1864), - [anon_sym_u16] = ACTIONS(1864), - [anon_sym_i16] = ACTIONS(1864), - [anon_sym_u32] = ACTIONS(1864), - [anon_sym_i32] = ACTIONS(1864), - [anon_sym_u64] = ACTIONS(1864), - [anon_sym_i64] = ACTIONS(1864), - [anon_sym_u128] = ACTIONS(1864), - [anon_sym_i128] = ACTIONS(1864), - [anon_sym_isize] = ACTIONS(1864), - [anon_sym_usize] = ACTIONS(1864), - [anon_sym_f32] = ACTIONS(1864), - [anon_sym_f64] = ACTIONS(1864), - [anon_sym_bool] = ACTIONS(1864), - [anon_sym_str] = ACTIONS(1864), - [anon_sym_char] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_async] = ACTIONS(1864), - [anon_sym_break] = ACTIONS(1864), - [anon_sym_const] = ACTIONS(1864), - [anon_sym_continue] = ACTIONS(1864), - [anon_sym_default] = ACTIONS(1864), - [anon_sym_enum] = ACTIONS(1864), - [anon_sym_fn] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1864), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_impl] = ACTIONS(1864), - [anon_sym_let] = ACTIONS(1864), - [anon_sym_loop] = ACTIONS(1864), - [anon_sym_match] = ACTIONS(1864), - [anon_sym_mod] = ACTIONS(1864), - [anon_sym_pub] = ACTIONS(1864), - [anon_sym_return] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1864), - [anon_sym_struct] = ACTIONS(1864), - [anon_sym_trait] = ACTIONS(1864), - [anon_sym_type] = ACTIONS(1864), - [anon_sym_union] = ACTIONS(1864), - [anon_sym_unsafe] = ACTIONS(1864), - [anon_sym_use] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_POUND] = ACTIONS(1862), - [anon_sym_BANG] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1864), - [anon_sym_LT] = ACTIONS(1862), - [anon_sym_COLON_COLON] = ACTIONS(1862), - [anon_sym_AMP] = ACTIONS(1862), - [anon_sym_DOT_DOT] = ACTIONS(1862), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_yield] = ACTIONS(1864), - [anon_sym_move] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(1862), - [aux_sym_string_literal_token1] = ACTIONS(1862), - [sym_char_literal] = ACTIONS(1862), - [anon_sym_true] = ACTIONS(1864), - [anon_sym_false] = ACTIONS(1864), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1864), - [sym_super] = ACTIONS(1864), - [sym_crate] = ACTIONS(1864), - [sym_metavariable] = ACTIONS(1862), - [sym_raw_string_literal] = ACTIONS(1862), - [sym_float_literal] = ACTIONS(1862), - [sym_block_comment] = ACTIONS(3), - }, - [456] = { - [ts_builtin_sym_end] = ACTIONS(1866), - [sym_identifier] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_macro_rules_BANG] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1866), - [anon_sym_u8] = ACTIONS(1868), - [anon_sym_i8] = ACTIONS(1868), - [anon_sym_u16] = ACTIONS(1868), - [anon_sym_i16] = ACTIONS(1868), - [anon_sym_u32] = ACTIONS(1868), - [anon_sym_i32] = ACTIONS(1868), - [anon_sym_u64] = ACTIONS(1868), - [anon_sym_i64] = ACTIONS(1868), - [anon_sym_u128] = ACTIONS(1868), - [anon_sym_i128] = ACTIONS(1868), - [anon_sym_isize] = ACTIONS(1868), - [anon_sym_usize] = ACTIONS(1868), - [anon_sym_f32] = ACTIONS(1868), - [anon_sym_f64] = ACTIONS(1868), - [anon_sym_bool] = ACTIONS(1868), - [anon_sym_str] = ACTIONS(1868), - [anon_sym_char] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_async] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_const] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_default] = ACTIONS(1868), - [anon_sym_enum] = ACTIONS(1868), - [anon_sym_fn] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_impl] = ACTIONS(1868), - [anon_sym_let] = ACTIONS(1868), - [anon_sym_loop] = ACTIONS(1868), - [anon_sym_match] = ACTIONS(1868), - [anon_sym_mod] = ACTIONS(1868), - [anon_sym_pub] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1868), - [anon_sym_struct] = ACTIONS(1868), - [anon_sym_trait] = ACTIONS(1868), - [anon_sym_type] = ACTIONS(1868), - [anon_sym_union] = ACTIONS(1868), - [anon_sym_unsafe] = ACTIONS(1868), - [anon_sym_use] = ACTIONS(1868), - [anon_sym_while] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(1866), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1866), - [anon_sym_COLON_COLON] = ACTIONS(1866), - [anon_sym_AMP] = ACTIONS(1866), - [anon_sym_DOT_DOT] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_yield] = ACTIONS(1868), - [anon_sym_move] = ACTIONS(1868), - [sym_integer_literal] = ACTIONS(1866), - [aux_sym_string_literal_token1] = ACTIONS(1866), - [sym_char_literal] = ACTIONS(1866), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1868), - [sym_super] = ACTIONS(1868), - [sym_crate] = ACTIONS(1868), - [sym_metavariable] = ACTIONS(1866), - [sym_raw_string_literal] = ACTIONS(1866), - [sym_float_literal] = ACTIONS(1866), - [sym_block_comment] = ACTIONS(3), - }, - [457] = { - [ts_builtin_sym_end] = ACTIONS(1870), - [sym_identifier] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_macro_rules_BANG] = ACTIONS(1870), - [anon_sym_LPAREN] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_LBRACK] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1870), - [anon_sym_u8] = ACTIONS(1872), - [anon_sym_i8] = ACTIONS(1872), - [anon_sym_u16] = ACTIONS(1872), - [anon_sym_i16] = ACTIONS(1872), - [anon_sym_u32] = ACTIONS(1872), - [anon_sym_i32] = ACTIONS(1872), - [anon_sym_u64] = ACTIONS(1872), - [anon_sym_i64] = ACTIONS(1872), - [anon_sym_u128] = ACTIONS(1872), - [anon_sym_i128] = ACTIONS(1872), - [anon_sym_isize] = ACTIONS(1872), - [anon_sym_usize] = ACTIONS(1872), - [anon_sym_f32] = ACTIONS(1872), - [anon_sym_f64] = ACTIONS(1872), - [anon_sym_bool] = ACTIONS(1872), - [anon_sym_str] = ACTIONS(1872), - [anon_sym_char] = ACTIONS(1872), - [anon_sym_SQUOTE] = ACTIONS(1872), - [anon_sym_async] = ACTIONS(1872), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_const] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1872), - [anon_sym_default] = ACTIONS(1872), - [anon_sym_enum] = ACTIONS(1872), - [anon_sym_fn] = ACTIONS(1872), - [anon_sym_for] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(1872), - [anon_sym_impl] = ACTIONS(1872), - [anon_sym_let] = ACTIONS(1872), - [anon_sym_loop] = ACTIONS(1872), - [anon_sym_match] = ACTIONS(1872), - [anon_sym_mod] = ACTIONS(1872), - [anon_sym_pub] = ACTIONS(1872), - [anon_sym_return] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1872), - [anon_sym_struct] = ACTIONS(1872), - [anon_sym_trait] = ACTIONS(1872), - [anon_sym_type] = ACTIONS(1872), - [anon_sym_union] = ACTIONS(1872), - [anon_sym_unsafe] = ACTIONS(1872), - [anon_sym_use] = ACTIONS(1872), - [anon_sym_while] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(1870), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(1872), - [anon_sym_LT] = ACTIONS(1870), - [anon_sym_COLON_COLON] = ACTIONS(1870), - [anon_sym_AMP] = ACTIONS(1870), - [anon_sym_DOT_DOT] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_yield] = ACTIONS(1872), - [anon_sym_move] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(1870), - [aux_sym_string_literal_token1] = ACTIONS(1870), - [sym_char_literal] = ACTIONS(1870), - [anon_sym_true] = ACTIONS(1872), - [anon_sym_false] = ACTIONS(1872), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1872), - [sym_super] = ACTIONS(1872), - [sym_crate] = ACTIONS(1872), - [sym_metavariable] = ACTIONS(1870), - [sym_raw_string_literal] = ACTIONS(1870), - [sym_float_literal] = ACTIONS(1870), - [sym_block_comment] = ACTIONS(3), - }, - [458] = { [ts_builtin_sym_end] = ACTIONS(1874), [sym_identifier] = ACTIONS(1876), [anon_sym_SEMI] = ACTIONS(1874), @@ -58961,7 +57910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1874), [sym_block_comment] = ACTIONS(3), }, - [459] = { + [453] = { [ts_builtin_sym_end] = ACTIONS(1878), [sym_identifier] = ACTIONS(1880), [anon_sym_SEMI] = ACTIONS(1878), @@ -59038,2018 +57987,2100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1878), [sym_block_comment] = ACTIONS(3), }, - [460] = { - [ts_builtin_sym_end] = ACTIONS(1882), - [sym_identifier] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_macro_rules_BANG] = ACTIONS(1882), - [anon_sym_LPAREN] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1882), + [454] = { + [sym_attribute_item] = STATE(545), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_match_arm] = STATE(484), + [sym_last_match_arm] = STATE(2512), + [sym_match_pattern] = STATE(2312), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1916), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_enum_variant_list_repeat1] = STATE(545), + [aux_sym_match_block_repeat1] = STATE(484), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1882), - [anon_sym_u8] = ACTIONS(1884), - [anon_sym_i8] = ACTIONS(1884), - [anon_sym_u16] = ACTIONS(1884), - [anon_sym_i16] = ACTIONS(1884), - [anon_sym_u32] = ACTIONS(1884), - [anon_sym_i32] = ACTIONS(1884), - [anon_sym_u64] = ACTIONS(1884), - [anon_sym_i64] = ACTIONS(1884), - [anon_sym_u128] = ACTIONS(1884), - [anon_sym_i128] = ACTIONS(1884), - [anon_sym_isize] = ACTIONS(1884), - [anon_sym_usize] = ACTIONS(1884), - [anon_sym_f32] = ACTIONS(1884), - [anon_sym_f64] = ACTIONS(1884), - [anon_sym_bool] = ACTIONS(1884), - [anon_sym_str] = ACTIONS(1884), - [anon_sym_char] = ACTIONS(1884), - [anon_sym_SQUOTE] = ACTIONS(1884), - [anon_sym_async] = ACTIONS(1884), - [anon_sym_break] = ACTIONS(1884), - [anon_sym_const] = ACTIONS(1884), - [anon_sym_continue] = ACTIONS(1884), - [anon_sym_default] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_fn] = ACTIONS(1884), - [anon_sym_for] = ACTIONS(1884), - [anon_sym_if] = ACTIONS(1884), - [anon_sym_impl] = ACTIONS(1884), - [anon_sym_let] = ACTIONS(1884), - [anon_sym_loop] = ACTIONS(1884), - [anon_sym_match] = ACTIONS(1884), - [anon_sym_mod] = ACTIONS(1884), - [anon_sym_pub] = ACTIONS(1884), - [anon_sym_return] = ACTIONS(1884), - [anon_sym_static] = ACTIONS(1884), - [anon_sym_struct] = ACTIONS(1884), - [anon_sym_trait] = ACTIONS(1884), - [anon_sym_type] = ACTIONS(1884), - [anon_sym_union] = ACTIONS(1884), - [anon_sym_unsafe] = ACTIONS(1884), - [anon_sym_use] = ACTIONS(1884), - [anon_sym_while] = ACTIONS(1884), - [anon_sym_POUND] = ACTIONS(1882), - [anon_sym_BANG] = ACTIONS(1882), - [anon_sym_extern] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1882), - [anon_sym_COLON_COLON] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1882), - [anon_sym_DOT_DOT] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_yield] = ACTIONS(1884), - [anon_sym_move] = ACTIONS(1884), - [sym_integer_literal] = ACTIONS(1882), - [aux_sym_string_literal_token1] = ACTIONS(1882), - [sym_char_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(1884), - [anon_sym_false] = ACTIONS(1884), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1884), - [sym_super] = ACTIONS(1884), - [sym_crate] = ACTIONS(1884), - [sym_metavariable] = ACTIONS(1882), - [sym_raw_string_literal] = ACTIONS(1882), - [sym_float_literal] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [455] = { + [ts_builtin_sym_end] = ACTIONS(1884), + [sym_identifier] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_macro_rules_BANG] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_u8] = ACTIONS(1886), + [anon_sym_i8] = ACTIONS(1886), + [anon_sym_u16] = ACTIONS(1886), + [anon_sym_i16] = ACTIONS(1886), + [anon_sym_u32] = ACTIONS(1886), + [anon_sym_i32] = ACTIONS(1886), + [anon_sym_u64] = ACTIONS(1886), + [anon_sym_i64] = ACTIONS(1886), + [anon_sym_u128] = ACTIONS(1886), + [anon_sym_i128] = ACTIONS(1886), + [anon_sym_isize] = ACTIONS(1886), + [anon_sym_usize] = ACTIONS(1886), + [anon_sym_f32] = ACTIONS(1886), + [anon_sym_f64] = ACTIONS(1886), + [anon_sym_bool] = ACTIONS(1886), + [anon_sym_str] = ACTIONS(1886), + [anon_sym_char] = ACTIONS(1886), + [anon_sym_SQUOTE] = ACTIONS(1886), + [anon_sym_async] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_default] = ACTIONS(1886), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_impl] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1886), + [anon_sym_loop] = ACTIONS(1886), + [anon_sym_match] = ACTIONS(1886), + [anon_sym_mod] = ACTIONS(1886), + [anon_sym_pub] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_static] = ACTIONS(1886), + [anon_sym_struct] = ACTIONS(1886), + [anon_sym_trait] = ACTIONS(1886), + [anon_sym_type] = ACTIONS(1886), + [anon_sym_union] = ACTIONS(1886), + [anon_sym_unsafe] = ACTIONS(1886), + [anon_sym_use] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_extern] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_COLON_COLON] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_yield] = ACTIONS(1886), + [anon_sym_move] = ACTIONS(1886), + [sym_integer_literal] = ACTIONS(1884), + [aux_sym_string_literal_token1] = ACTIONS(1884), + [sym_char_literal] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1886), + [anon_sym_false] = ACTIONS(1886), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1886), + [sym_super] = ACTIONS(1886), + [sym_crate] = ACTIONS(1886), + [sym_metavariable] = ACTIONS(1884), + [sym_raw_string_literal] = ACTIONS(1884), + [sym_float_literal] = ACTIONS(1884), + [sym_block_comment] = ACTIONS(3), + }, + [456] = { + [ts_builtin_sym_end] = ACTIONS(1888), + [sym_identifier] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_macro_rules_BANG] = ACTIONS(1888), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1888), + [anon_sym_u8] = ACTIONS(1890), + [anon_sym_i8] = ACTIONS(1890), + [anon_sym_u16] = ACTIONS(1890), + [anon_sym_i16] = ACTIONS(1890), + [anon_sym_u32] = ACTIONS(1890), + [anon_sym_i32] = ACTIONS(1890), + [anon_sym_u64] = ACTIONS(1890), + [anon_sym_i64] = ACTIONS(1890), + [anon_sym_u128] = ACTIONS(1890), + [anon_sym_i128] = ACTIONS(1890), + [anon_sym_isize] = ACTIONS(1890), + [anon_sym_usize] = ACTIONS(1890), + [anon_sym_f32] = ACTIONS(1890), + [anon_sym_f64] = ACTIONS(1890), + [anon_sym_bool] = ACTIONS(1890), + [anon_sym_str] = ACTIONS(1890), + [anon_sym_char] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_enum] = ACTIONS(1890), + [anon_sym_fn] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_impl] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_mod] = ACTIONS(1890), + [anon_sym_pub] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_trait] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1890), + [anon_sym_unsafe] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_COLON_COLON] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1888), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_yield] = ACTIONS(1890), + [anon_sym_move] = ACTIONS(1890), + [sym_integer_literal] = ACTIONS(1888), + [aux_sym_string_literal_token1] = ACTIONS(1888), + [sym_char_literal] = ACTIONS(1888), + [anon_sym_true] = ACTIONS(1890), + [anon_sym_false] = ACTIONS(1890), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1890), + [sym_super] = ACTIONS(1890), + [sym_crate] = ACTIONS(1890), + [sym_metavariable] = ACTIONS(1888), + [sym_raw_string_literal] = ACTIONS(1888), + [sym_float_literal] = ACTIONS(1888), + [sym_block_comment] = ACTIONS(3), + }, + [457] = { + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_identifier] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_macro_rules_BANG] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1892), + [anon_sym_u8] = ACTIONS(1894), + [anon_sym_i8] = ACTIONS(1894), + [anon_sym_u16] = ACTIONS(1894), + [anon_sym_i16] = ACTIONS(1894), + [anon_sym_u32] = ACTIONS(1894), + [anon_sym_i32] = ACTIONS(1894), + [anon_sym_u64] = ACTIONS(1894), + [anon_sym_i64] = ACTIONS(1894), + [anon_sym_u128] = ACTIONS(1894), + [anon_sym_i128] = ACTIONS(1894), + [anon_sym_isize] = ACTIONS(1894), + [anon_sym_usize] = ACTIONS(1894), + [anon_sym_f32] = ACTIONS(1894), + [anon_sym_f64] = ACTIONS(1894), + [anon_sym_bool] = ACTIONS(1894), + [anon_sym_str] = ACTIONS(1894), + [anon_sym_char] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_async] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1894), + [anon_sym_continue] = ACTIONS(1894), + [anon_sym_default] = ACTIONS(1894), + [anon_sym_enum] = ACTIONS(1894), + [anon_sym_fn] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_impl] = ACTIONS(1894), + [anon_sym_let] = ACTIONS(1894), + [anon_sym_loop] = ACTIONS(1894), + [anon_sym_match] = ACTIONS(1894), + [anon_sym_mod] = ACTIONS(1894), + [anon_sym_pub] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_static] = ACTIONS(1894), + [anon_sym_struct] = ACTIONS(1894), + [anon_sym_trait] = ACTIONS(1894), + [anon_sym_type] = ACTIONS(1894), + [anon_sym_union] = ACTIONS(1894), + [anon_sym_unsafe] = ACTIONS(1894), + [anon_sym_use] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_POUND] = ACTIONS(1892), + [anon_sym_BANG] = ACTIONS(1892), + [anon_sym_extern] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_COLON_COLON] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_yield] = ACTIONS(1894), + [anon_sym_move] = ACTIONS(1894), + [sym_integer_literal] = ACTIONS(1892), + [aux_sym_string_literal_token1] = ACTIONS(1892), + [sym_char_literal] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1894), + [sym_super] = ACTIONS(1894), + [sym_crate] = ACTIONS(1894), + [sym_metavariable] = ACTIONS(1892), + [sym_raw_string_literal] = ACTIONS(1892), + [sym_float_literal] = ACTIONS(1892), + [sym_block_comment] = ACTIONS(3), + }, + [458] = { + [ts_builtin_sym_end] = ACTIONS(1896), + [sym_identifier] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_macro_rules_BANG] = ACTIONS(1896), + [anon_sym_LPAREN] = ACTIONS(1896), + [anon_sym_LBRACE] = ACTIONS(1896), + [anon_sym_RBRACE] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(1896), + [anon_sym_u8] = ACTIONS(1898), + [anon_sym_i8] = ACTIONS(1898), + [anon_sym_u16] = ACTIONS(1898), + [anon_sym_i16] = ACTIONS(1898), + [anon_sym_u32] = ACTIONS(1898), + [anon_sym_i32] = ACTIONS(1898), + [anon_sym_u64] = ACTIONS(1898), + [anon_sym_i64] = ACTIONS(1898), + [anon_sym_u128] = ACTIONS(1898), + [anon_sym_i128] = ACTIONS(1898), + [anon_sym_isize] = ACTIONS(1898), + [anon_sym_usize] = ACTIONS(1898), + [anon_sym_f32] = ACTIONS(1898), + [anon_sym_f64] = ACTIONS(1898), + [anon_sym_bool] = ACTIONS(1898), + [anon_sym_str] = ACTIONS(1898), + [anon_sym_char] = ACTIONS(1898), + [anon_sym_SQUOTE] = ACTIONS(1898), + [anon_sym_async] = ACTIONS(1898), + [anon_sym_break] = ACTIONS(1898), + [anon_sym_const] = ACTIONS(1898), + [anon_sym_continue] = ACTIONS(1898), + [anon_sym_default] = ACTIONS(1898), + [anon_sym_enum] = ACTIONS(1898), + [anon_sym_fn] = ACTIONS(1898), + [anon_sym_for] = ACTIONS(1898), + [anon_sym_if] = ACTIONS(1898), + [anon_sym_impl] = ACTIONS(1898), + [anon_sym_let] = ACTIONS(1898), + [anon_sym_loop] = ACTIONS(1898), + [anon_sym_match] = ACTIONS(1898), + [anon_sym_mod] = ACTIONS(1898), + [anon_sym_pub] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1898), + [anon_sym_static] = ACTIONS(1898), + [anon_sym_struct] = ACTIONS(1898), + [anon_sym_trait] = ACTIONS(1898), + [anon_sym_type] = ACTIONS(1898), + [anon_sym_union] = ACTIONS(1898), + [anon_sym_unsafe] = ACTIONS(1898), + [anon_sym_use] = ACTIONS(1898), + [anon_sym_while] = ACTIONS(1898), + [anon_sym_POUND] = ACTIONS(1896), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_extern] = ACTIONS(1898), + [anon_sym_LT] = ACTIONS(1896), + [anon_sym_COLON_COLON] = ACTIONS(1896), + [anon_sym_AMP] = ACTIONS(1896), + [anon_sym_DOT_DOT] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1896), + [anon_sym_yield] = ACTIONS(1898), + [anon_sym_move] = ACTIONS(1898), + [sym_integer_literal] = ACTIONS(1896), + [aux_sym_string_literal_token1] = ACTIONS(1896), + [sym_char_literal] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(1898), + [anon_sym_false] = ACTIONS(1898), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1898), + [sym_super] = ACTIONS(1898), + [sym_crate] = ACTIONS(1898), + [sym_metavariable] = ACTIONS(1896), + [sym_raw_string_literal] = ACTIONS(1896), + [sym_float_literal] = ACTIONS(1896), + [sym_block_comment] = ACTIONS(3), + }, + [459] = { + [ts_builtin_sym_end] = ACTIONS(1900), + [sym_identifier] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_macro_rules_BANG] = ACTIONS(1900), + [anon_sym_LPAREN] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(1900), + [anon_sym_RBRACE] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(1900), + [anon_sym_STAR] = ACTIONS(1900), + [anon_sym_u8] = ACTIONS(1902), + [anon_sym_i8] = ACTIONS(1902), + [anon_sym_u16] = ACTIONS(1902), + [anon_sym_i16] = ACTIONS(1902), + [anon_sym_u32] = ACTIONS(1902), + [anon_sym_i32] = ACTIONS(1902), + [anon_sym_u64] = ACTIONS(1902), + [anon_sym_i64] = ACTIONS(1902), + [anon_sym_u128] = ACTIONS(1902), + [anon_sym_i128] = ACTIONS(1902), + [anon_sym_isize] = ACTIONS(1902), + [anon_sym_usize] = ACTIONS(1902), + [anon_sym_f32] = ACTIONS(1902), + [anon_sym_f64] = ACTIONS(1902), + [anon_sym_bool] = ACTIONS(1902), + [anon_sym_str] = ACTIONS(1902), + [anon_sym_char] = ACTIONS(1902), + [anon_sym_SQUOTE] = ACTIONS(1902), + [anon_sym_async] = ACTIONS(1902), + [anon_sym_break] = ACTIONS(1902), + [anon_sym_const] = ACTIONS(1902), + [anon_sym_continue] = ACTIONS(1902), + [anon_sym_default] = ACTIONS(1902), + [anon_sym_enum] = ACTIONS(1902), + [anon_sym_fn] = ACTIONS(1902), + [anon_sym_for] = ACTIONS(1902), + [anon_sym_if] = ACTIONS(1902), + [anon_sym_impl] = ACTIONS(1902), + [anon_sym_let] = ACTIONS(1902), + [anon_sym_loop] = ACTIONS(1902), + [anon_sym_match] = ACTIONS(1902), + [anon_sym_mod] = ACTIONS(1902), + [anon_sym_pub] = ACTIONS(1902), + [anon_sym_return] = ACTIONS(1902), + [anon_sym_static] = ACTIONS(1902), + [anon_sym_struct] = ACTIONS(1902), + [anon_sym_trait] = ACTIONS(1902), + [anon_sym_type] = ACTIONS(1902), + [anon_sym_union] = ACTIONS(1902), + [anon_sym_unsafe] = ACTIONS(1902), + [anon_sym_use] = ACTIONS(1902), + [anon_sym_while] = ACTIONS(1902), + [anon_sym_POUND] = ACTIONS(1900), + [anon_sym_BANG] = ACTIONS(1900), + [anon_sym_extern] = ACTIONS(1902), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_COLON_COLON] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_PIPE] = ACTIONS(1900), + [anon_sym_yield] = ACTIONS(1902), + [anon_sym_move] = ACTIONS(1902), + [sym_integer_literal] = ACTIONS(1900), + [aux_sym_string_literal_token1] = ACTIONS(1900), + [sym_char_literal] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1902), + [anon_sym_false] = ACTIONS(1902), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1902), + [sym_super] = ACTIONS(1902), + [sym_crate] = ACTIONS(1902), + [sym_metavariable] = ACTIONS(1900), + [sym_raw_string_literal] = ACTIONS(1900), + [sym_float_literal] = ACTIONS(1900), + [sym_block_comment] = ACTIONS(3), + }, + [460] = { + [ts_builtin_sym_end] = ACTIONS(1904), + [sym_identifier] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_macro_rules_BANG] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1904), + [anon_sym_u8] = ACTIONS(1906), + [anon_sym_i8] = ACTIONS(1906), + [anon_sym_u16] = ACTIONS(1906), + [anon_sym_i16] = ACTIONS(1906), + [anon_sym_u32] = ACTIONS(1906), + [anon_sym_i32] = ACTIONS(1906), + [anon_sym_u64] = ACTIONS(1906), + [anon_sym_i64] = ACTIONS(1906), + [anon_sym_u128] = ACTIONS(1906), + [anon_sym_i128] = ACTIONS(1906), + [anon_sym_isize] = ACTIONS(1906), + [anon_sym_usize] = ACTIONS(1906), + [anon_sym_f32] = ACTIONS(1906), + [anon_sym_f64] = ACTIONS(1906), + [anon_sym_bool] = ACTIONS(1906), + [anon_sym_str] = ACTIONS(1906), + [anon_sym_char] = ACTIONS(1906), + [anon_sym_SQUOTE] = ACTIONS(1906), + [anon_sym_async] = ACTIONS(1906), + [anon_sym_break] = ACTIONS(1906), + [anon_sym_const] = ACTIONS(1906), + [anon_sym_continue] = ACTIONS(1906), + [anon_sym_default] = ACTIONS(1906), + [anon_sym_enum] = ACTIONS(1906), + [anon_sym_fn] = ACTIONS(1906), + [anon_sym_for] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1906), + [anon_sym_impl] = ACTIONS(1906), + [anon_sym_let] = ACTIONS(1906), + [anon_sym_loop] = ACTIONS(1906), + [anon_sym_match] = ACTIONS(1906), + [anon_sym_mod] = ACTIONS(1906), + [anon_sym_pub] = ACTIONS(1906), + [anon_sym_return] = ACTIONS(1906), + [anon_sym_static] = ACTIONS(1906), + [anon_sym_struct] = ACTIONS(1906), + [anon_sym_trait] = ACTIONS(1906), + [anon_sym_type] = ACTIONS(1906), + [anon_sym_union] = ACTIONS(1906), + [anon_sym_unsafe] = ACTIONS(1906), + [anon_sym_use] = ACTIONS(1906), + [anon_sym_while] = ACTIONS(1906), + [anon_sym_POUND] = ACTIONS(1904), + [anon_sym_BANG] = ACTIONS(1904), + [anon_sym_extern] = ACTIONS(1906), + [anon_sym_LT] = ACTIONS(1904), + [anon_sym_COLON_COLON] = ACTIONS(1904), + [anon_sym_AMP] = ACTIONS(1904), + [anon_sym_DOT_DOT] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_PIPE] = ACTIONS(1904), + [anon_sym_yield] = ACTIONS(1906), + [anon_sym_move] = ACTIONS(1906), + [sym_integer_literal] = ACTIONS(1904), + [aux_sym_string_literal_token1] = ACTIONS(1904), + [sym_char_literal] = ACTIONS(1904), + [anon_sym_true] = ACTIONS(1906), + [anon_sym_false] = ACTIONS(1906), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1906), + [sym_super] = ACTIONS(1906), + [sym_crate] = ACTIONS(1906), + [sym_metavariable] = ACTIONS(1904), + [sym_raw_string_literal] = ACTIONS(1904), + [sym_float_literal] = ACTIONS(1904), [sym_block_comment] = ACTIONS(3), }, [461] = { - [ts_builtin_sym_end] = ACTIONS(1886), - [sym_identifier] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_macro_rules_BANG] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_u8] = ACTIONS(1888), - [anon_sym_i8] = ACTIONS(1888), - [anon_sym_u16] = ACTIONS(1888), - [anon_sym_i16] = ACTIONS(1888), - [anon_sym_u32] = ACTIONS(1888), - [anon_sym_i32] = ACTIONS(1888), - [anon_sym_u64] = ACTIONS(1888), - [anon_sym_i64] = ACTIONS(1888), - [anon_sym_u128] = ACTIONS(1888), - [anon_sym_i128] = ACTIONS(1888), - [anon_sym_isize] = ACTIONS(1888), - [anon_sym_usize] = ACTIONS(1888), - [anon_sym_f32] = ACTIONS(1888), - [anon_sym_f64] = ACTIONS(1888), - [anon_sym_bool] = ACTIONS(1888), - [anon_sym_str] = ACTIONS(1888), - [anon_sym_char] = ACTIONS(1888), - [anon_sym_SQUOTE] = ACTIONS(1888), - [anon_sym_async] = ACTIONS(1888), - [anon_sym_break] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(1888), - [anon_sym_continue] = ACTIONS(1888), - [anon_sym_default] = ACTIONS(1888), - [anon_sym_enum] = ACTIONS(1888), - [anon_sym_fn] = ACTIONS(1888), - [anon_sym_for] = ACTIONS(1888), - [anon_sym_if] = ACTIONS(1888), - [anon_sym_impl] = ACTIONS(1888), - [anon_sym_let] = ACTIONS(1888), - [anon_sym_loop] = ACTIONS(1888), - [anon_sym_match] = ACTIONS(1888), - [anon_sym_mod] = ACTIONS(1888), - [anon_sym_pub] = ACTIONS(1888), - [anon_sym_return] = ACTIONS(1888), - [anon_sym_static] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_trait] = ACTIONS(1888), - [anon_sym_type] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1888), - [anon_sym_unsafe] = ACTIONS(1888), - [anon_sym_use] = ACTIONS(1888), - [anon_sym_while] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_extern] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_COLON_COLON] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_yield] = ACTIONS(1888), - [anon_sym_move] = ACTIONS(1888), - [sym_integer_literal] = ACTIONS(1886), - [aux_sym_string_literal_token1] = ACTIONS(1886), - [sym_char_literal] = ACTIONS(1886), - [anon_sym_true] = ACTIONS(1888), - [anon_sym_false] = ACTIONS(1888), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1888), - [sym_super] = ACTIONS(1888), - [sym_crate] = ACTIONS(1888), - [sym_metavariable] = ACTIONS(1886), - [sym_raw_string_literal] = ACTIONS(1886), - [sym_float_literal] = ACTIONS(1886), + [ts_builtin_sym_end] = ACTIONS(1908), + [sym_identifier] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1908), + [anon_sym_macro_rules_BANG] = ACTIONS(1908), + [anon_sym_LPAREN] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1908), + [anon_sym_RBRACE] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1908), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [anon_sym_POUND] = ACTIONS(1908), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1910), + [anon_sym_LT] = ACTIONS(1908), + [anon_sym_COLON_COLON] = ACTIONS(1908), + [anon_sym_AMP] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_yield] = ACTIONS(1910), + [anon_sym_move] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1908), + [aux_sym_string_literal_token1] = ACTIONS(1908), + [sym_char_literal] = ACTIONS(1908), + [anon_sym_true] = ACTIONS(1910), + [anon_sym_false] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1908), + [sym_raw_string_literal] = ACTIONS(1908), + [sym_float_literal] = ACTIONS(1908), [sym_block_comment] = ACTIONS(3), }, [462] = { - [ts_builtin_sym_end] = ACTIONS(1890), - [sym_identifier] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_macro_rules_BANG] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1890), - [anon_sym_u8] = ACTIONS(1892), - [anon_sym_i8] = ACTIONS(1892), - [anon_sym_u16] = ACTIONS(1892), - [anon_sym_i16] = ACTIONS(1892), - [anon_sym_u32] = ACTIONS(1892), - [anon_sym_i32] = ACTIONS(1892), - [anon_sym_u64] = ACTIONS(1892), - [anon_sym_i64] = ACTIONS(1892), - [anon_sym_u128] = ACTIONS(1892), - [anon_sym_i128] = ACTIONS(1892), - [anon_sym_isize] = ACTIONS(1892), - [anon_sym_usize] = ACTIONS(1892), - [anon_sym_f32] = ACTIONS(1892), - [anon_sym_f64] = ACTIONS(1892), - [anon_sym_bool] = ACTIONS(1892), - [anon_sym_str] = ACTIONS(1892), - [anon_sym_char] = ACTIONS(1892), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_async] = ACTIONS(1892), - [anon_sym_break] = ACTIONS(1892), - [anon_sym_const] = ACTIONS(1892), - [anon_sym_continue] = ACTIONS(1892), - [anon_sym_default] = ACTIONS(1892), - [anon_sym_enum] = ACTIONS(1892), - [anon_sym_fn] = ACTIONS(1892), - [anon_sym_for] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_impl] = ACTIONS(1892), - [anon_sym_let] = ACTIONS(1892), - [anon_sym_loop] = ACTIONS(1892), - [anon_sym_match] = ACTIONS(1892), - [anon_sym_mod] = ACTIONS(1892), - [anon_sym_pub] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1892), - [anon_sym_struct] = ACTIONS(1892), - [anon_sym_trait] = ACTIONS(1892), - [anon_sym_type] = ACTIONS(1892), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_unsafe] = ACTIONS(1892), - [anon_sym_use] = ACTIONS(1892), - [anon_sym_while] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1890), - [anon_sym_COLON_COLON] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_DOT_DOT] = ACTIONS(1890), - [anon_sym_DASH] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_yield] = ACTIONS(1892), - [anon_sym_move] = ACTIONS(1892), - [sym_integer_literal] = ACTIONS(1890), - [aux_sym_string_literal_token1] = ACTIONS(1890), - [sym_char_literal] = ACTIONS(1890), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1892), - [sym_super] = ACTIONS(1892), - [sym_crate] = ACTIONS(1892), - [sym_metavariable] = ACTIONS(1890), - [sym_raw_string_literal] = ACTIONS(1890), - [sym_float_literal] = ACTIONS(1890), + [ts_builtin_sym_end] = ACTIONS(1912), + [sym_identifier] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_macro_rules_BANG] = ACTIONS(1912), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1912), + [anon_sym_RBRACE] = ACTIONS(1912), + [anon_sym_LBRACK] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_u8] = ACTIONS(1914), + [anon_sym_i8] = ACTIONS(1914), + [anon_sym_u16] = ACTIONS(1914), + [anon_sym_i16] = ACTIONS(1914), + [anon_sym_u32] = ACTIONS(1914), + [anon_sym_i32] = ACTIONS(1914), + [anon_sym_u64] = ACTIONS(1914), + [anon_sym_i64] = ACTIONS(1914), + [anon_sym_u128] = ACTIONS(1914), + [anon_sym_i128] = ACTIONS(1914), + [anon_sym_isize] = ACTIONS(1914), + [anon_sym_usize] = ACTIONS(1914), + [anon_sym_f32] = ACTIONS(1914), + [anon_sym_f64] = ACTIONS(1914), + [anon_sym_bool] = ACTIONS(1914), + [anon_sym_str] = ACTIONS(1914), + [anon_sym_char] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_async] = ACTIONS(1914), + [anon_sym_break] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1914), + [anon_sym_continue] = ACTIONS(1914), + [anon_sym_default] = ACTIONS(1914), + [anon_sym_enum] = ACTIONS(1914), + [anon_sym_fn] = ACTIONS(1914), + [anon_sym_for] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(1914), + [anon_sym_impl] = ACTIONS(1914), + [anon_sym_let] = ACTIONS(1914), + [anon_sym_loop] = ACTIONS(1914), + [anon_sym_match] = ACTIONS(1914), + [anon_sym_mod] = ACTIONS(1914), + [anon_sym_pub] = ACTIONS(1914), + [anon_sym_return] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1914), + [anon_sym_struct] = ACTIONS(1914), + [anon_sym_trait] = ACTIONS(1914), + [anon_sym_type] = ACTIONS(1914), + [anon_sym_union] = ACTIONS(1914), + [anon_sym_unsafe] = ACTIONS(1914), + [anon_sym_use] = ACTIONS(1914), + [anon_sym_while] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(1912), + [anon_sym_BANG] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1914), + [anon_sym_LT] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PIPE] = ACTIONS(1912), + [anon_sym_yield] = ACTIONS(1914), + [anon_sym_move] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(1912), + [aux_sym_string_literal_token1] = ACTIONS(1912), + [sym_char_literal] = ACTIONS(1912), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1914), + [sym_super] = ACTIONS(1914), + [sym_crate] = ACTIONS(1914), + [sym_metavariable] = ACTIONS(1912), + [sym_raw_string_literal] = ACTIONS(1912), + [sym_float_literal] = ACTIONS(1912), [sym_block_comment] = ACTIONS(3), }, [463] = { - [ts_builtin_sym_end] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1894), - [anon_sym_macro_rules_BANG] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1894), - [anon_sym_u8] = ACTIONS(1896), - [anon_sym_i8] = ACTIONS(1896), - [anon_sym_u16] = ACTIONS(1896), - [anon_sym_i16] = ACTIONS(1896), - [anon_sym_u32] = ACTIONS(1896), - [anon_sym_i32] = ACTIONS(1896), - [anon_sym_u64] = ACTIONS(1896), - [anon_sym_i64] = ACTIONS(1896), - [anon_sym_u128] = ACTIONS(1896), - [anon_sym_i128] = ACTIONS(1896), - [anon_sym_isize] = ACTIONS(1896), - [anon_sym_usize] = ACTIONS(1896), - [anon_sym_f32] = ACTIONS(1896), - [anon_sym_f64] = ACTIONS(1896), - [anon_sym_bool] = ACTIONS(1896), - [anon_sym_str] = ACTIONS(1896), - [anon_sym_char] = ACTIONS(1896), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(1896), - [anon_sym_break] = ACTIONS(1896), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_continue] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(1896), - [anon_sym_enum] = ACTIONS(1896), - [anon_sym_fn] = ACTIONS(1896), - [anon_sym_for] = ACTIONS(1896), - [anon_sym_if] = ACTIONS(1896), - [anon_sym_impl] = ACTIONS(1896), - [anon_sym_let] = ACTIONS(1896), - [anon_sym_loop] = ACTIONS(1896), - [anon_sym_match] = ACTIONS(1896), - [anon_sym_mod] = ACTIONS(1896), - [anon_sym_pub] = ACTIONS(1896), - [anon_sym_return] = ACTIONS(1896), - [anon_sym_static] = ACTIONS(1896), - [anon_sym_struct] = ACTIONS(1896), - [anon_sym_trait] = ACTIONS(1896), - [anon_sym_type] = ACTIONS(1896), - [anon_sym_union] = ACTIONS(1896), - [anon_sym_unsafe] = ACTIONS(1896), - [anon_sym_use] = ACTIONS(1896), - [anon_sym_while] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(1894), - [anon_sym_BANG] = ACTIONS(1894), - [anon_sym_extern] = ACTIONS(1896), - [anon_sym_LT] = ACTIONS(1894), - [anon_sym_COLON_COLON] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1894), - [anon_sym_DOT_DOT] = ACTIONS(1894), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PIPE] = ACTIONS(1894), - [anon_sym_yield] = ACTIONS(1896), - [anon_sym_move] = ACTIONS(1896), - [sym_integer_literal] = ACTIONS(1894), - [aux_sym_string_literal_token1] = ACTIONS(1894), - [sym_char_literal] = ACTIONS(1894), - [anon_sym_true] = ACTIONS(1896), - [anon_sym_false] = ACTIONS(1896), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1896), - [sym_super] = ACTIONS(1896), - [sym_crate] = ACTIONS(1896), - [sym_metavariable] = ACTIONS(1894), - [sym_raw_string_literal] = ACTIONS(1894), - [sym_float_literal] = ACTIONS(1894), + [ts_builtin_sym_end] = ACTIONS(1916), + [sym_identifier] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_macro_rules_BANG] = ACTIONS(1916), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [anon_sym_RBRACE] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1916), + [anon_sym_u8] = ACTIONS(1918), + [anon_sym_i8] = ACTIONS(1918), + [anon_sym_u16] = ACTIONS(1918), + [anon_sym_i16] = ACTIONS(1918), + [anon_sym_u32] = ACTIONS(1918), + [anon_sym_i32] = ACTIONS(1918), + [anon_sym_u64] = ACTIONS(1918), + [anon_sym_i64] = ACTIONS(1918), + [anon_sym_u128] = ACTIONS(1918), + [anon_sym_i128] = ACTIONS(1918), + [anon_sym_isize] = ACTIONS(1918), + [anon_sym_usize] = ACTIONS(1918), + [anon_sym_f32] = ACTIONS(1918), + [anon_sym_f64] = ACTIONS(1918), + [anon_sym_bool] = ACTIONS(1918), + [anon_sym_str] = ACTIONS(1918), + [anon_sym_char] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_async] = ACTIONS(1918), + [anon_sym_break] = ACTIONS(1918), + [anon_sym_const] = ACTIONS(1918), + [anon_sym_continue] = ACTIONS(1918), + [anon_sym_default] = ACTIONS(1918), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_fn] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1918), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_impl] = ACTIONS(1918), + [anon_sym_let] = ACTIONS(1918), + [anon_sym_loop] = ACTIONS(1918), + [anon_sym_match] = ACTIONS(1918), + [anon_sym_mod] = ACTIONS(1918), + [anon_sym_pub] = ACTIONS(1918), + [anon_sym_return] = ACTIONS(1918), + [anon_sym_static] = ACTIONS(1918), + [anon_sym_struct] = ACTIONS(1918), + [anon_sym_trait] = ACTIONS(1918), + [anon_sym_type] = ACTIONS(1918), + [anon_sym_union] = ACTIONS(1918), + [anon_sym_unsafe] = ACTIONS(1918), + [anon_sym_use] = ACTIONS(1918), + [anon_sym_while] = ACTIONS(1918), + [anon_sym_POUND] = ACTIONS(1916), + [anon_sym_BANG] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1916), + [anon_sym_COLON_COLON] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1916), + [anon_sym_DOT_DOT] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_yield] = ACTIONS(1918), + [anon_sym_move] = ACTIONS(1918), + [sym_integer_literal] = ACTIONS(1916), + [aux_sym_string_literal_token1] = ACTIONS(1916), + [sym_char_literal] = ACTIONS(1916), + [anon_sym_true] = ACTIONS(1918), + [anon_sym_false] = ACTIONS(1918), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1918), + [sym_super] = ACTIONS(1918), + [sym_crate] = ACTIONS(1918), + [sym_metavariable] = ACTIONS(1916), + [sym_raw_string_literal] = ACTIONS(1916), + [sym_float_literal] = ACTIONS(1916), [sym_block_comment] = ACTIONS(3), }, [464] = { - [ts_builtin_sym_end] = ACTIONS(1898), - [sym_identifier] = ACTIONS(1900), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_macro_rules_BANG] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1898), - [anon_sym_LBRACE] = ACTIONS(1898), - [anon_sym_RBRACE] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_u8] = ACTIONS(1900), - [anon_sym_i8] = ACTIONS(1900), - [anon_sym_u16] = ACTIONS(1900), - [anon_sym_i16] = ACTIONS(1900), - [anon_sym_u32] = ACTIONS(1900), - [anon_sym_i32] = ACTIONS(1900), - [anon_sym_u64] = ACTIONS(1900), - [anon_sym_i64] = ACTIONS(1900), - [anon_sym_u128] = ACTIONS(1900), - [anon_sym_i128] = ACTIONS(1900), - [anon_sym_isize] = ACTIONS(1900), - [anon_sym_usize] = ACTIONS(1900), - [anon_sym_f32] = ACTIONS(1900), - [anon_sym_f64] = ACTIONS(1900), - [anon_sym_bool] = ACTIONS(1900), - [anon_sym_str] = ACTIONS(1900), - [anon_sym_char] = ACTIONS(1900), - [anon_sym_SQUOTE] = ACTIONS(1900), - [anon_sym_async] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_const] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_default] = ACTIONS(1900), - [anon_sym_enum] = ACTIONS(1900), - [anon_sym_fn] = ACTIONS(1900), - [anon_sym_for] = ACTIONS(1900), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_impl] = ACTIONS(1900), - [anon_sym_let] = ACTIONS(1900), - [anon_sym_loop] = ACTIONS(1900), - [anon_sym_match] = ACTIONS(1900), - [anon_sym_mod] = ACTIONS(1900), - [anon_sym_pub] = ACTIONS(1900), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_static] = ACTIONS(1900), - [anon_sym_struct] = ACTIONS(1900), - [anon_sym_trait] = ACTIONS(1900), - [anon_sym_type] = ACTIONS(1900), - [anon_sym_union] = ACTIONS(1900), - [anon_sym_unsafe] = ACTIONS(1900), - [anon_sym_use] = ACTIONS(1900), - [anon_sym_while] = ACTIONS(1900), - [anon_sym_POUND] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_extern] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1898), - [anon_sym_DOT_DOT] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_yield] = ACTIONS(1900), - [anon_sym_move] = ACTIONS(1900), - [sym_integer_literal] = ACTIONS(1898), - [aux_sym_string_literal_token1] = ACTIONS(1898), - [sym_char_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1900), - [anon_sym_false] = ACTIONS(1900), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1900), - [sym_super] = ACTIONS(1900), - [sym_crate] = ACTIONS(1900), - [sym_metavariable] = ACTIONS(1898), - [sym_raw_string_literal] = ACTIONS(1898), - [sym_float_literal] = ACTIONS(1898), + [ts_builtin_sym_end] = ACTIONS(1920), + [sym_identifier] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_macro_rules_BANG] = ACTIONS(1920), + [anon_sym_LPAREN] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_u8] = ACTIONS(1922), + [anon_sym_i8] = ACTIONS(1922), + [anon_sym_u16] = ACTIONS(1922), + [anon_sym_i16] = ACTIONS(1922), + [anon_sym_u32] = ACTIONS(1922), + [anon_sym_i32] = ACTIONS(1922), + [anon_sym_u64] = ACTIONS(1922), + [anon_sym_i64] = ACTIONS(1922), + [anon_sym_u128] = ACTIONS(1922), + [anon_sym_i128] = ACTIONS(1922), + [anon_sym_isize] = ACTIONS(1922), + [anon_sym_usize] = ACTIONS(1922), + [anon_sym_f32] = ACTIONS(1922), + [anon_sym_f64] = ACTIONS(1922), + [anon_sym_bool] = ACTIONS(1922), + [anon_sym_str] = ACTIONS(1922), + [anon_sym_char] = ACTIONS(1922), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(1922), + [anon_sym_break] = ACTIONS(1922), + [anon_sym_const] = ACTIONS(1922), + [anon_sym_continue] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1922), + [anon_sym_enum] = ACTIONS(1922), + [anon_sym_fn] = ACTIONS(1922), + [anon_sym_for] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(1922), + [anon_sym_impl] = ACTIONS(1922), + [anon_sym_let] = ACTIONS(1922), + [anon_sym_loop] = ACTIONS(1922), + [anon_sym_match] = ACTIONS(1922), + [anon_sym_mod] = ACTIONS(1922), + [anon_sym_pub] = ACTIONS(1922), + [anon_sym_return] = ACTIONS(1922), + [anon_sym_static] = ACTIONS(1922), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_trait] = ACTIONS(1922), + [anon_sym_type] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1922), + [anon_sym_unsafe] = ACTIONS(1922), + [anon_sym_use] = ACTIONS(1922), + [anon_sym_while] = ACTIONS(1922), + [anon_sym_POUND] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1920), + [anon_sym_extern] = ACTIONS(1922), + [anon_sym_LT] = ACTIONS(1920), + [anon_sym_COLON_COLON] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_PIPE] = ACTIONS(1920), + [anon_sym_yield] = ACTIONS(1922), + [anon_sym_move] = ACTIONS(1922), + [sym_integer_literal] = ACTIONS(1920), + [aux_sym_string_literal_token1] = ACTIONS(1920), + [sym_char_literal] = ACTIONS(1920), + [anon_sym_true] = ACTIONS(1922), + [anon_sym_false] = ACTIONS(1922), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1922), + [sym_super] = ACTIONS(1922), + [sym_crate] = ACTIONS(1922), + [sym_metavariable] = ACTIONS(1920), + [sym_raw_string_literal] = ACTIONS(1920), + [sym_float_literal] = ACTIONS(1920), [sym_block_comment] = ACTIONS(3), }, [465] = { - [ts_builtin_sym_end] = ACTIONS(1902), - [sym_identifier] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_macro_rules_BANG] = ACTIONS(1902), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_RBRACE] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_u8] = ACTIONS(1904), - [anon_sym_i8] = ACTIONS(1904), - [anon_sym_u16] = ACTIONS(1904), - [anon_sym_i16] = ACTIONS(1904), - [anon_sym_u32] = ACTIONS(1904), - [anon_sym_i32] = ACTIONS(1904), - [anon_sym_u64] = ACTIONS(1904), - [anon_sym_i64] = ACTIONS(1904), - [anon_sym_u128] = ACTIONS(1904), - [anon_sym_i128] = ACTIONS(1904), - [anon_sym_isize] = ACTIONS(1904), - [anon_sym_usize] = ACTIONS(1904), - [anon_sym_f32] = ACTIONS(1904), - [anon_sym_f64] = ACTIONS(1904), - [anon_sym_bool] = ACTIONS(1904), - [anon_sym_str] = ACTIONS(1904), - [anon_sym_char] = ACTIONS(1904), - [anon_sym_SQUOTE] = ACTIONS(1904), - [anon_sym_async] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_const] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_default] = ACTIONS(1904), - [anon_sym_enum] = ACTIONS(1904), - [anon_sym_fn] = ACTIONS(1904), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_impl] = ACTIONS(1904), - [anon_sym_let] = ACTIONS(1904), - [anon_sym_loop] = ACTIONS(1904), - [anon_sym_match] = ACTIONS(1904), - [anon_sym_mod] = ACTIONS(1904), - [anon_sym_pub] = ACTIONS(1904), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1904), - [anon_sym_struct] = ACTIONS(1904), - [anon_sym_trait] = ACTIONS(1904), - [anon_sym_type] = ACTIONS(1904), - [anon_sym_union] = ACTIONS(1904), - [anon_sym_unsafe] = ACTIONS(1904), - [anon_sym_use] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_POUND] = ACTIONS(1902), - [anon_sym_BANG] = ACTIONS(1902), - [anon_sym_extern] = ACTIONS(1904), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_COLON_COLON] = ACTIONS(1902), - [anon_sym_AMP] = ACTIONS(1902), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_PIPE] = ACTIONS(1902), - [anon_sym_yield] = ACTIONS(1904), - [anon_sym_move] = ACTIONS(1904), - [sym_integer_literal] = ACTIONS(1902), - [aux_sym_string_literal_token1] = ACTIONS(1902), - [sym_char_literal] = ACTIONS(1902), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1904), - [sym_super] = ACTIONS(1904), - [sym_crate] = ACTIONS(1904), - [sym_metavariable] = ACTIONS(1902), - [sym_raw_string_literal] = ACTIONS(1902), - [sym_float_literal] = ACTIONS(1902), + [ts_builtin_sym_end] = ACTIONS(1924), + [sym_identifier] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_macro_rules_BANG] = ACTIONS(1924), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1924), + [anon_sym_RBRACE] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1924), + [anon_sym_u8] = ACTIONS(1926), + [anon_sym_i8] = ACTIONS(1926), + [anon_sym_u16] = ACTIONS(1926), + [anon_sym_i16] = ACTIONS(1926), + [anon_sym_u32] = ACTIONS(1926), + [anon_sym_i32] = ACTIONS(1926), + [anon_sym_u64] = ACTIONS(1926), + [anon_sym_i64] = ACTIONS(1926), + [anon_sym_u128] = ACTIONS(1926), + [anon_sym_i128] = ACTIONS(1926), + [anon_sym_isize] = ACTIONS(1926), + [anon_sym_usize] = ACTIONS(1926), + [anon_sym_f32] = ACTIONS(1926), + [anon_sym_f64] = ACTIONS(1926), + [anon_sym_bool] = ACTIONS(1926), + [anon_sym_str] = ACTIONS(1926), + [anon_sym_char] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_async] = ACTIONS(1926), + [anon_sym_break] = ACTIONS(1926), + [anon_sym_const] = ACTIONS(1926), + [anon_sym_continue] = ACTIONS(1926), + [anon_sym_default] = ACTIONS(1926), + [anon_sym_enum] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1926), + [anon_sym_for] = ACTIONS(1926), + [anon_sym_if] = ACTIONS(1926), + [anon_sym_impl] = ACTIONS(1926), + [anon_sym_let] = ACTIONS(1926), + [anon_sym_loop] = ACTIONS(1926), + [anon_sym_match] = ACTIONS(1926), + [anon_sym_mod] = ACTIONS(1926), + [anon_sym_pub] = ACTIONS(1926), + [anon_sym_return] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1926), + [anon_sym_struct] = ACTIONS(1926), + [anon_sym_trait] = ACTIONS(1926), + [anon_sym_type] = ACTIONS(1926), + [anon_sym_union] = ACTIONS(1926), + [anon_sym_unsafe] = ACTIONS(1926), + [anon_sym_use] = ACTIONS(1926), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_POUND] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1924), + [anon_sym_COLON_COLON] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_yield] = ACTIONS(1926), + [anon_sym_move] = ACTIONS(1926), + [sym_integer_literal] = ACTIONS(1924), + [aux_sym_string_literal_token1] = ACTIONS(1924), + [sym_char_literal] = ACTIONS(1924), + [anon_sym_true] = ACTIONS(1926), + [anon_sym_false] = ACTIONS(1926), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1926), + [sym_super] = ACTIONS(1926), + [sym_crate] = ACTIONS(1926), + [sym_metavariable] = ACTIONS(1924), + [sym_raw_string_literal] = ACTIONS(1924), + [sym_float_literal] = ACTIONS(1924), [sym_block_comment] = ACTIONS(3), }, [466] = { - [ts_builtin_sym_end] = ACTIONS(1906), - [sym_identifier] = ACTIONS(1908), - [anon_sym_SEMI] = ACTIONS(1906), - [anon_sym_macro_rules_BANG] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_u8] = ACTIONS(1908), - [anon_sym_i8] = ACTIONS(1908), - [anon_sym_u16] = ACTIONS(1908), - [anon_sym_i16] = ACTIONS(1908), - [anon_sym_u32] = ACTIONS(1908), - [anon_sym_i32] = ACTIONS(1908), - [anon_sym_u64] = ACTIONS(1908), - [anon_sym_i64] = ACTIONS(1908), - [anon_sym_u128] = ACTIONS(1908), - [anon_sym_i128] = ACTIONS(1908), - [anon_sym_isize] = ACTIONS(1908), - [anon_sym_usize] = ACTIONS(1908), - [anon_sym_f32] = ACTIONS(1908), - [anon_sym_f64] = ACTIONS(1908), - [anon_sym_bool] = ACTIONS(1908), - [anon_sym_str] = ACTIONS(1908), - [anon_sym_char] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1908), - [anon_sym_async] = ACTIONS(1908), - [anon_sym_break] = ACTIONS(1908), - [anon_sym_const] = ACTIONS(1908), - [anon_sym_continue] = ACTIONS(1908), - [anon_sym_default] = ACTIONS(1908), - [anon_sym_enum] = ACTIONS(1908), - [anon_sym_fn] = ACTIONS(1908), - [anon_sym_for] = ACTIONS(1908), - [anon_sym_if] = ACTIONS(1908), - [anon_sym_impl] = ACTIONS(1908), - [anon_sym_let] = ACTIONS(1908), - [anon_sym_loop] = ACTIONS(1908), - [anon_sym_match] = ACTIONS(1908), - [anon_sym_mod] = ACTIONS(1908), - [anon_sym_pub] = ACTIONS(1908), - [anon_sym_return] = ACTIONS(1908), - [anon_sym_static] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(1908), - [anon_sym_trait] = ACTIONS(1908), - [anon_sym_type] = ACTIONS(1908), - [anon_sym_union] = ACTIONS(1908), - [anon_sym_unsafe] = ACTIONS(1908), - [anon_sym_use] = ACTIONS(1908), - [anon_sym_while] = ACTIONS(1908), - [anon_sym_POUND] = ACTIONS(1906), - [anon_sym_BANG] = ACTIONS(1906), - [anon_sym_extern] = ACTIONS(1908), - [anon_sym_LT] = ACTIONS(1906), - [anon_sym_COLON_COLON] = ACTIONS(1906), - [anon_sym_AMP] = ACTIONS(1906), - [anon_sym_DOT_DOT] = ACTIONS(1906), - [anon_sym_DASH] = ACTIONS(1906), - [anon_sym_PIPE] = ACTIONS(1906), - [anon_sym_yield] = ACTIONS(1908), - [anon_sym_move] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(1906), - [aux_sym_string_literal_token1] = ACTIONS(1906), - [sym_char_literal] = ACTIONS(1906), - [anon_sym_true] = ACTIONS(1908), - [anon_sym_false] = ACTIONS(1908), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1908), - [sym_super] = ACTIONS(1908), - [sym_crate] = ACTIONS(1908), - [sym_metavariable] = ACTIONS(1906), - [sym_raw_string_literal] = ACTIONS(1906), - [sym_float_literal] = ACTIONS(1906), + [ts_builtin_sym_end] = ACTIONS(1928), + [sym_identifier] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_macro_rules_BANG] = ACTIONS(1928), + [anon_sym_LPAREN] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(1928), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_u8] = ACTIONS(1930), + [anon_sym_i8] = ACTIONS(1930), + [anon_sym_u16] = ACTIONS(1930), + [anon_sym_i16] = ACTIONS(1930), + [anon_sym_u32] = ACTIONS(1930), + [anon_sym_i32] = ACTIONS(1930), + [anon_sym_u64] = ACTIONS(1930), + [anon_sym_i64] = ACTIONS(1930), + [anon_sym_u128] = ACTIONS(1930), + [anon_sym_i128] = ACTIONS(1930), + [anon_sym_isize] = ACTIONS(1930), + [anon_sym_usize] = ACTIONS(1930), + [anon_sym_f32] = ACTIONS(1930), + [anon_sym_f64] = ACTIONS(1930), + [anon_sym_bool] = ACTIONS(1930), + [anon_sym_str] = ACTIONS(1930), + [anon_sym_char] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1930), + [anon_sym_async] = ACTIONS(1930), + [anon_sym_break] = ACTIONS(1930), + [anon_sym_const] = ACTIONS(1930), + [anon_sym_continue] = ACTIONS(1930), + [anon_sym_default] = ACTIONS(1930), + [anon_sym_enum] = ACTIONS(1930), + [anon_sym_fn] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1930), + [anon_sym_if] = ACTIONS(1930), + [anon_sym_impl] = ACTIONS(1930), + [anon_sym_let] = ACTIONS(1930), + [anon_sym_loop] = ACTIONS(1930), + [anon_sym_match] = ACTIONS(1930), + [anon_sym_mod] = ACTIONS(1930), + [anon_sym_pub] = ACTIONS(1930), + [anon_sym_return] = ACTIONS(1930), + [anon_sym_static] = ACTIONS(1930), + [anon_sym_struct] = ACTIONS(1930), + [anon_sym_trait] = ACTIONS(1930), + [anon_sym_type] = ACTIONS(1930), + [anon_sym_union] = ACTIONS(1930), + [anon_sym_unsafe] = ACTIONS(1930), + [anon_sym_use] = ACTIONS(1930), + [anon_sym_while] = ACTIONS(1930), + [anon_sym_POUND] = ACTIONS(1928), + [anon_sym_BANG] = ACTIONS(1928), + [anon_sym_extern] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_COLON_COLON] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym_DOT_DOT] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_PIPE] = ACTIONS(1928), + [anon_sym_yield] = ACTIONS(1930), + [anon_sym_move] = ACTIONS(1930), + [sym_integer_literal] = ACTIONS(1928), + [aux_sym_string_literal_token1] = ACTIONS(1928), + [sym_char_literal] = ACTIONS(1928), + [anon_sym_true] = ACTIONS(1930), + [anon_sym_false] = ACTIONS(1930), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1930), + [sym_super] = ACTIONS(1930), + [sym_crate] = ACTIONS(1930), + [sym_metavariable] = ACTIONS(1928), + [sym_raw_string_literal] = ACTIONS(1928), + [sym_float_literal] = ACTIONS(1928), [sym_block_comment] = ACTIONS(3), }, [467] = { - [ts_builtin_sym_end] = ACTIONS(1910), - [sym_identifier] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym_macro_rules_BANG] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1910), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_RBRACE] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1910), - [anon_sym_STAR] = ACTIONS(1910), - [anon_sym_u8] = ACTIONS(1912), - [anon_sym_i8] = ACTIONS(1912), - [anon_sym_u16] = ACTIONS(1912), - [anon_sym_i16] = ACTIONS(1912), - [anon_sym_u32] = ACTIONS(1912), - [anon_sym_i32] = ACTIONS(1912), - [anon_sym_u64] = ACTIONS(1912), - [anon_sym_i64] = ACTIONS(1912), - [anon_sym_u128] = ACTIONS(1912), - [anon_sym_i128] = ACTIONS(1912), - [anon_sym_isize] = ACTIONS(1912), - [anon_sym_usize] = ACTIONS(1912), - [anon_sym_f32] = ACTIONS(1912), - [anon_sym_f64] = ACTIONS(1912), - [anon_sym_bool] = ACTIONS(1912), - [anon_sym_str] = ACTIONS(1912), - [anon_sym_char] = ACTIONS(1912), - [anon_sym_SQUOTE] = ACTIONS(1912), - [anon_sym_async] = ACTIONS(1912), - [anon_sym_break] = ACTIONS(1912), - [anon_sym_const] = ACTIONS(1912), - [anon_sym_continue] = ACTIONS(1912), - [anon_sym_default] = ACTIONS(1912), - [anon_sym_enum] = ACTIONS(1912), - [anon_sym_fn] = ACTIONS(1912), - [anon_sym_for] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(1912), - [anon_sym_impl] = ACTIONS(1912), - [anon_sym_let] = ACTIONS(1912), - [anon_sym_loop] = ACTIONS(1912), - [anon_sym_match] = ACTIONS(1912), - [anon_sym_mod] = ACTIONS(1912), - [anon_sym_pub] = ACTIONS(1912), - [anon_sym_return] = ACTIONS(1912), - [anon_sym_static] = ACTIONS(1912), - [anon_sym_struct] = ACTIONS(1912), - [anon_sym_trait] = ACTIONS(1912), - [anon_sym_type] = ACTIONS(1912), - [anon_sym_union] = ACTIONS(1912), - [anon_sym_unsafe] = ACTIONS(1912), - [anon_sym_use] = ACTIONS(1912), - [anon_sym_while] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(1910), - [anon_sym_BANG] = ACTIONS(1910), - [anon_sym_extern] = ACTIONS(1912), - [anon_sym_LT] = ACTIONS(1910), - [anon_sym_COLON_COLON] = ACTIONS(1910), - [anon_sym_AMP] = ACTIONS(1910), - [anon_sym_DOT_DOT] = ACTIONS(1910), - [anon_sym_DASH] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1910), - [anon_sym_yield] = ACTIONS(1912), - [anon_sym_move] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(1910), - [aux_sym_string_literal_token1] = ACTIONS(1910), - [sym_char_literal] = ACTIONS(1910), - [anon_sym_true] = ACTIONS(1912), - [anon_sym_false] = ACTIONS(1912), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1912), - [sym_super] = ACTIONS(1912), - [sym_crate] = ACTIONS(1912), - [sym_metavariable] = ACTIONS(1910), - [sym_raw_string_literal] = ACTIONS(1910), - [sym_float_literal] = ACTIONS(1910), + [ts_builtin_sym_end] = ACTIONS(1932), + [sym_identifier] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_macro_rules_BANG] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1932), + [anon_sym_RBRACE] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1932), + [anon_sym_u8] = ACTIONS(1934), + [anon_sym_i8] = ACTIONS(1934), + [anon_sym_u16] = ACTIONS(1934), + [anon_sym_i16] = ACTIONS(1934), + [anon_sym_u32] = ACTIONS(1934), + [anon_sym_i32] = ACTIONS(1934), + [anon_sym_u64] = ACTIONS(1934), + [anon_sym_i64] = ACTIONS(1934), + [anon_sym_u128] = ACTIONS(1934), + [anon_sym_i128] = ACTIONS(1934), + [anon_sym_isize] = ACTIONS(1934), + [anon_sym_usize] = ACTIONS(1934), + [anon_sym_f32] = ACTIONS(1934), + [anon_sym_f64] = ACTIONS(1934), + [anon_sym_bool] = ACTIONS(1934), + [anon_sym_str] = ACTIONS(1934), + [anon_sym_char] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_async] = ACTIONS(1934), + [anon_sym_break] = ACTIONS(1934), + [anon_sym_const] = ACTIONS(1934), + [anon_sym_continue] = ACTIONS(1934), + [anon_sym_default] = ACTIONS(1934), + [anon_sym_enum] = ACTIONS(1934), + [anon_sym_fn] = ACTIONS(1934), + [anon_sym_for] = ACTIONS(1934), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_impl] = ACTIONS(1934), + [anon_sym_let] = ACTIONS(1934), + [anon_sym_loop] = ACTIONS(1934), + [anon_sym_match] = ACTIONS(1934), + [anon_sym_mod] = ACTIONS(1934), + [anon_sym_pub] = ACTIONS(1934), + [anon_sym_return] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1934), + [anon_sym_struct] = ACTIONS(1934), + [anon_sym_trait] = ACTIONS(1934), + [anon_sym_type] = ACTIONS(1934), + [anon_sym_union] = ACTIONS(1934), + [anon_sym_unsafe] = ACTIONS(1934), + [anon_sym_use] = ACTIONS(1934), + [anon_sym_while] = ACTIONS(1934), + [anon_sym_POUND] = ACTIONS(1932), + [anon_sym_BANG] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1934), + [anon_sym_LT] = ACTIONS(1932), + [anon_sym_COLON_COLON] = ACTIONS(1932), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_DOT_DOT] = ACTIONS(1932), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_yield] = ACTIONS(1934), + [anon_sym_move] = ACTIONS(1934), + [sym_integer_literal] = ACTIONS(1932), + [aux_sym_string_literal_token1] = ACTIONS(1932), + [sym_char_literal] = ACTIONS(1932), + [anon_sym_true] = ACTIONS(1934), + [anon_sym_false] = ACTIONS(1934), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1934), + [sym_super] = ACTIONS(1934), + [sym_crate] = ACTIONS(1934), + [sym_metavariable] = ACTIONS(1932), + [sym_raw_string_literal] = ACTIONS(1932), + [sym_float_literal] = ACTIONS(1932), [sym_block_comment] = ACTIONS(3), }, [468] = { - [ts_builtin_sym_end] = ACTIONS(1914), - [sym_identifier] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_macro_rules_BANG] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(1914), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1914), - [anon_sym_u8] = ACTIONS(1916), - [anon_sym_i8] = ACTIONS(1916), - [anon_sym_u16] = ACTIONS(1916), - [anon_sym_i16] = ACTIONS(1916), - [anon_sym_u32] = ACTIONS(1916), - [anon_sym_i32] = ACTIONS(1916), - [anon_sym_u64] = ACTIONS(1916), - [anon_sym_i64] = ACTIONS(1916), - [anon_sym_u128] = ACTIONS(1916), - [anon_sym_i128] = ACTIONS(1916), - [anon_sym_isize] = ACTIONS(1916), - [anon_sym_usize] = ACTIONS(1916), - [anon_sym_f32] = ACTIONS(1916), - [anon_sym_f64] = ACTIONS(1916), - [anon_sym_bool] = ACTIONS(1916), - [anon_sym_str] = ACTIONS(1916), - [anon_sym_char] = ACTIONS(1916), - [anon_sym_SQUOTE] = ACTIONS(1916), - [anon_sym_async] = ACTIONS(1916), - [anon_sym_break] = ACTIONS(1916), - [anon_sym_const] = ACTIONS(1916), - [anon_sym_continue] = ACTIONS(1916), - [anon_sym_default] = ACTIONS(1916), - [anon_sym_enum] = ACTIONS(1916), - [anon_sym_fn] = ACTIONS(1916), - [anon_sym_for] = ACTIONS(1916), - [anon_sym_if] = ACTIONS(1916), - [anon_sym_impl] = ACTIONS(1916), - [anon_sym_let] = ACTIONS(1916), - [anon_sym_loop] = ACTIONS(1916), - [anon_sym_match] = ACTIONS(1916), - [anon_sym_mod] = ACTIONS(1916), - [anon_sym_pub] = ACTIONS(1916), - [anon_sym_return] = ACTIONS(1916), - [anon_sym_static] = ACTIONS(1916), - [anon_sym_struct] = ACTIONS(1916), - [anon_sym_trait] = ACTIONS(1916), - [anon_sym_type] = ACTIONS(1916), - [anon_sym_union] = ACTIONS(1916), - [anon_sym_unsafe] = ACTIONS(1916), - [anon_sym_use] = ACTIONS(1916), - [anon_sym_while] = ACTIONS(1916), - [anon_sym_POUND] = ACTIONS(1914), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_extern] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(1914), - [anon_sym_COLON_COLON] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1914), - [anon_sym_DOT_DOT] = ACTIONS(1914), - [anon_sym_DASH] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1914), - [anon_sym_yield] = ACTIONS(1916), - [anon_sym_move] = ACTIONS(1916), - [sym_integer_literal] = ACTIONS(1914), - [aux_sym_string_literal_token1] = ACTIONS(1914), - [sym_char_literal] = ACTIONS(1914), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1916), - [sym_super] = ACTIONS(1916), - [sym_crate] = ACTIONS(1916), - [sym_metavariable] = ACTIONS(1914), - [sym_raw_string_literal] = ACTIONS(1914), - [sym_float_literal] = ACTIONS(1914), + [ts_builtin_sym_end] = ACTIONS(1936), + [sym_identifier] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_macro_rules_BANG] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1936), + [anon_sym_RBRACE] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_break] = ACTIONS(1938), + [anon_sym_const] = ACTIONS(1938), + [anon_sym_continue] = ACTIONS(1938), + [anon_sym_default] = ACTIONS(1938), + [anon_sym_enum] = ACTIONS(1938), + [anon_sym_fn] = ACTIONS(1938), + [anon_sym_for] = ACTIONS(1938), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_impl] = ACTIONS(1938), + [anon_sym_let] = ACTIONS(1938), + [anon_sym_loop] = ACTIONS(1938), + [anon_sym_match] = ACTIONS(1938), + [anon_sym_mod] = ACTIONS(1938), + [anon_sym_pub] = ACTIONS(1938), + [anon_sym_return] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_struct] = ACTIONS(1938), + [anon_sym_trait] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_union] = ACTIONS(1938), + [anon_sym_unsafe] = ACTIONS(1938), + [anon_sym_use] = ACTIONS(1938), + [anon_sym_while] = ACTIONS(1938), + [anon_sym_POUND] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_extern] = ACTIONS(1938), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_COLON_COLON] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1936), + [anon_sym_DOT_DOT] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_yield] = ACTIONS(1938), + [anon_sym_move] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(1936), + [aux_sym_string_literal_token1] = ACTIONS(1936), + [sym_char_literal] = ACTIONS(1936), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1938), + [sym_super] = ACTIONS(1938), + [sym_crate] = ACTIONS(1938), + [sym_metavariable] = ACTIONS(1936), + [sym_raw_string_literal] = ACTIONS(1936), + [sym_float_literal] = ACTIONS(1936), [sym_block_comment] = ACTIONS(3), }, [469] = { - [ts_builtin_sym_end] = ACTIONS(1918), - [sym_identifier] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_macro_rules_BANG] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_STAR] = ACTIONS(1918), - [anon_sym_u8] = ACTIONS(1920), - [anon_sym_i8] = ACTIONS(1920), - [anon_sym_u16] = ACTIONS(1920), - [anon_sym_i16] = ACTIONS(1920), - [anon_sym_u32] = ACTIONS(1920), - [anon_sym_i32] = ACTIONS(1920), - [anon_sym_u64] = ACTIONS(1920), - [anon_sym_i64] = ACTIONS(1920), - [anon_sym_u128] = ACTIONS(1920), - [anon_sym_i128] = ACTIONS(1920), - [anon_sym_isize] = ACTIONS(1920), - [anon_sym_usize] = ACTIONS(1920), - [anon_sym_f32] = ACTIONS(1920), - [anon_sym_f64] = ACTIONS(1920), - [anon_sym_bool] = ACTIONS(1920), - [anon_sym_str] = ACTIONS(1920), - [anon_sym_char] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1920), - [anon_sym_async] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_default] = ACTIONS(1920), - [anon_sym_enum] = ACTIONS(1920), - [anon_sym_fn] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_impl] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_mod] = ACTIONS(1920), - [anon_sym_pub] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_static] = ACTIONS(1920), - [anon_sym_struct] = ACTIONS(1920), - [anon_sym_trait] = ACTIONS(1920), - [anon_sym_type] = ACTIONS(1920), - [anon_sym_union] = ACTIONS(1920), - [anon_sym_unsafe] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_POUND] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1918), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_COLON_COLON] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - [anon_sym_DOT_DOT] = ACTIONS(1918), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_yield] = ACTIONS(1920), - [anon_sym_move] = ACTIONS(1920), - [sym_integer_literal] = ACTIONS(1918), - [aux_sym_string_literal_token1] = ACTIONS(1918), - [sym_char_literal] = ACTIONS(1918), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1920), - [sym_super] = ACTIONS(1920), - [sym_crate] = ACTIONS(1920), - [sym_metavariable] = ACTIONS(1918), - [sym_raw_string_literal] = ACTIONS(1918), - [sym_float_literal] = ACTIONS(1918), + [ts_builtin_sym_end] = ACTIONS(1940), + [sym_identifier] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_macro_rules_BANG] = ACTIONS(1940), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1940), + [anon_sym_RBRACE] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1940), + [anon_sym_u8] = ACTIONS(1942), + [anon_sym_i8] = ACTIONS(1942), + [anon_sym_u16] = ACTIONS(1942), + [anon_sym_i16] = ACTIONS(1942), + [anon_sym_u32] = ACTIONS(1942), + [anon_sym_i32] = ACTIONS(1942), + [anon_sym_u64] = ACTIONS(1942), + [anon_sym_i64] = ACTIONS(1942), + [anon_sym_u128] = ACTIONS(1942), + [anon_sym_i128] = ACTIONS(1942), + [anon_sym_isize] = ACTIONS(1942), + [anon_sym_usize] = ACTIONS(1942), + [anon_sym_f32] = ACTIONS(1942), + [anon_sym_f64] = ACTIONS(1942), + [anon_sym_bool] = ACTIONS(1942), + [anon_sym_str] = ACTIONS(1942), + [anon_sym_char] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_async] = ACTIONS(1942), + [anon_sym_break] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1942), + [anon_sym_continue] = ACTIONS(1942), + [anon_sym_default] = ACTIONS(1942), + [anon_sym_enum] = ACTIONS(1942), + [anon_sym_fn] = ACTIONS(1942), + [anon_sym_for] = ACTIONS(1942), + [anon_sym_if] = ACTIONS(1942), + [anon_sym_impl] = ACTIONS(1942), + [anon_sym_let] = ACTIONS(1942), + [anon_sym_loop] = ACTIONS(1942), + [anon_sym_match] = ACTIONS(1942), + [anon_sym_mod] = ACTIONS(1942), + [anon_sym_pub] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1942), + [anon_sym_struct] = ACTIONS(1942), + [anon_sym_trait] = ACTIONS(1942), + [anon_sym_type] = ACTIONS(1942), + [anon_sym_union] = ACTIONS(1942), + [anon_sym_unsafe] = ACTIONS(1942), + [anon_sym_use] = ACTIONS(1942), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_POUND] = ACTIONS(1940), + [anon_sym_BANG] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1942), + [anon_sym_LT] = ACTIONS(1940), + [anon_sym_COLON_COLON] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1940), + [anon_sym_yield] = ACTIONS(1942), + [anon_sym_move] = ACTIONS(1942), + [sym_integer_literal] = ACTIONS(1940), + [aux_sym_string_literal_token1] = ACTIONS(1940), + [sym_char_literal] = ACTIONS(1940), + [anon_sym_true] = ACTIONS(1942), + [anon_sym_false] = ACTIONS(1942), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1942), + [sym_super] = ACTIONS(1942), + [sym_crate] = ACTIONS(1942), + [sym_metavariable] = ACTIONS(1940), + [sym_raw_string_literal] = ACTIONS(1940), + [sym_float_literal] = ACTIONS(1940), [sym_block_comment] = ACTIONS(3), }, [470] = { - [ts_builtin_sym_end] = ACTIONS(1922), - [sym_identifier] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1922), - [anon_sym_macro_rules_BANG] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1922), - [anon_sym_RBRACE] = ACTIONS(1922), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_u8] = ACTIONS(1924), - [anon_sym_i8] = ACTIONS(1924), - [anon_sym_u16] = ACTIONS(1924), - [anon_sym_i16] = ACTIONS(1924), - [anon_sym_u32] = ACTIONS(1924), - [anon_sym_i32] = ACTIONS(1924), - [anon_sym_u64] = ACTIONS(1924), - [anon_sym_i64] = ACTIONS(1924), - [anon_sym_u128] = ACTIONS(1924), - [anon_sym_i128] = ACTIONS(1924), - [anon_sym_isize] = ACTIONS(1924), - [anon_sym_usize] = ACTIONS(1924), - [anon_sym_f32] = ACTIONS(1924), - [anon_sym_f64] = ACTIONS(1924), - [anon_sym_bool] = ACTIONS(1924), - [anon_sym_str] = ACTIONS(1924), - [anon_sym_char] = ACTIONS(1924), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_async] = ACTIONS(1924), - [anon_sym_break] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1924), - [anon_sym_continue] = ACTIONS(1924), - [anon_sym_default] = ACTIONS(1924), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_fn] = ACTIONS(1924), - [anon_sym_for] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(1924), - [anon_sym_impl] = ACTIONS(1924), - [anon_sym_let] = ACTIONS(1924), - [anon_sym_loop] = ACTIONS(1924), - [anon_sym_match] = ACTIONS(1924), - [anon_sym_mod] = ACTIONS(1924), - [anon_sym_pub] = ACTIONS(1924), - [anon_sym_return] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(1924), - [anon_sym_trait] = ACTIONS(1924), - [anon_sym_type] = ACTIONS(1924), - [anon_sym_union] = ACTIONS(1924), - [anon_sym_unsafe] = ACTIONS(1924), - [anon_sym_use] = ACTIONS(1924), - [anon_sym_while] = ACTIONS(1924), - [anon_sym_POUND] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_extern] = ACTIONS(1924), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_COLON_COLON] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1922), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_yield] = ACTIONS(1924), - [anon_sym_move] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(1922), - [aux_sym_string_literal_token1] = ACTIONS(1922), - [sym_char_literal] = ACTIONS(1922), - [anon_sym_true] = ACTIONS(1924), - [anon_sym_false] = ACTIONS(1924), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1924), - [sym_super] = ACTIONS(1924), - [sym_crate] = ACTIONS(1924), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1922), - [sym_float_literal] = ACTIONS(1922), + [ts_builtin_sym_end] = ACTIONS(1944), + [sym_identifier] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1944), + [anon_sym_macro_rules_BANG] = ACTIONS(1944), + [anon_sym_LPAREN] = ACTIONS(1944), + [anon_sym_LBRACE] = ACTIONS(1944), + [anon_sym_RBRACE] = ACTIONS(1944), + [anon_sym_LBRACK] = ACTIONS(1944), + [anon_sym_STAR] = ACTIONS(1944), + [anon_sym_u8] = ACTIONS(1946), + [anon_sym_i8] = ACTIONS(1946), + [anon_sym_u16] = ACTIONS(1946), + [anon_sym_i16] = ACTIONS(1946), + [anon_sym_u32] = ACTIONS(1946), + [anon_sym_i32] = ACTIONS(1946), + [anon_sym_u64] = ACTIONS(1946), + [anon_sym_i64] = ACTIONS(1946), + [anon_sym_u128] = ACTIONS(1946), + [anon_sym_i128] = ACTIONS(1946), + [anon_sym_isize] = ACTIONS(1946), + [anon_sym_usize] = ACTIONS(1946), + [anon_sym_f32] = ACTIONS(1946), + [anon_sym_f64] = ACTIONS(1946), + [anon_sym_bool] = ACTIONS(1946), + [anon_sym_str] = ACTIONS(1946), + [anon_sym_char] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1946), + [anon_sym_async] = ACTIONS(1946), + [anon_sym_break] = ACTIONS(1946), + [anon_sym_const] = ACTIONS(1946), + [anon_sym_continue] = ACTIONS(1946), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_enum] = ACTIONS(1946), + [anon_sym_fn] = ACTIONS(1946), + [anon_sym_for] = ACTIONS(1946), + [anon_sym_if] = ACTIONS(1946), + [anon_sym_impl] = ACTIONS(1946), + [anon_sym_let] = ACTIONS(1946), + [anon_sym_loop] = ACTIONS(1946), + [anon_sym_match] = ACTIONS(1946), + [anon_sym_mod] = ACTIONS(1946), + [anon_sym_pub] = ACTIONS(1946), + [anon_sym_return] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1946), + [anon_sym_struct] = ACTIONS(1946), + [anon_sym_trait] = ACTIONS(1946), + [anon_sym_type] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_unsafe] = ACTIONS(1946), + [anon_sym_use] = ACTIONS(1946), + [anon_sym_while] = ACTIONS(1946), + [anon_sym_POUND] = ACTIONS(1944), + [anon_sym_BANG] = ACTIONS(1944), + [anon_sym_extern] = ACTIONS(1946), + [anon_sym_LT] = ACTIONS(1944), + [anon_sym_COLON_COLON] = ACTIONS(1944), + [anon_sym_AMP] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DASH] = ACTIONS(1944), + [anon_sym_PIPE] = ACTIONS(1944), + [anon_sym_yield] = ACTIONS(1946), + [anon_sym_move] = ACTIONS(1946), + [sym_integer_literal] = ACTIONS(1944), + [aux_sym_string_literal_token1] = ACTIONS(1944), + [sym_char_literal] = ACTIONS(1944), + [anon_sym_true] = ACTIONS(1946), + [anon_sym_false] = ACTIONS(1946), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1946), + [sym_super] = ACTIONS(1946), + [sym_crate] = ACTIONS(1946), + [sym_metavariable] = ACTIONS(1944), + [sym_raw_string_literal] = ACTIONS(1944), + [sym_float_literal] = ACTIONS(1944), [sym_block_comment] = ACTIONS(3), }, [471] = { - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_macro_rules_BANG] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_STAR] = ACTIONS(1926), - [anon_sym_u8] = ACTIONS(1928), - [anon_sym_i8] = ACTIONS(1928), - [anon_sym_u16] = ACTIONS(1928), - [anon_sym_i16] = ACTIONS(1928), - [anon_sym_u32] = ACTIONS(1928), - [anon_sym_i32] = ACTIONS(1928), - [anon_sym_u64] = ACTIONS(1928), - [anon_sym_i64] = ACTIONS(1928), - [anon_sym_u128] = ACTIONS(1928), - [anon_sym_i128] = ACTIONS(1928), - [anon_sym_isize] = ACTIONS(1928), - [anon_sym_usize] = ACTIONS(1928), - [anon_sym_f32] = ACTIONS(1928), - [anon_sym_f64] = ACTIONS(1928), - [anon_sym_bool] = ACTIONS(1928), - [anon_sym_str] = ACTIONS(1928), - [anon_sym_char] = ACTIONS(1928), - [anon_sym_SQUOTE] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_break] = ACTIONS(1928), - [anon_sym_const] = ACTIONS(1928), - [anon_sym_continue] = ACTIONS(1928), - [anon_sym_default] = ACTIONS(1928), - [anon_sym_enum] = ACTIONS(1928), - [anon_sym_fn] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_impl] = ACTIONS(1928), - [anon_sym_let] = ACTIONS(1928), - [anon_sym_loop] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_mod] = ACTIONS(1928), - [anon_sym_pub] = ACTIONS(1928), - [anon_sym_return] = ACTIONS(1928), - [anon_sym_static] = ACTIONS(1928), - [anon_sym_struct] = ACTIONS(1928), - [anon_sym_trait] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_union] = ACTIONS(1928), - [anon_sym_unsafe] = ACTIONS(1928), - [anon_sym_use] = ACTIONS(1928), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_POUND] = ACTIONS(1926), - [anon_sym_BANG] = ACTIONS(1926), - [anon_sym_extern] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1926), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_AMP] = ACTIONS(1926), - [anon_sym_DOT_DOT] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_PIPE] = ACTIONS(1926), - [anon_sym_yield] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [sym_integer_literal] = ACTIONS(1926), - [aux_sym_string_literal_token1] = ACTIONS(1926), - [sym_char_literal] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1928), - [sym_super] = ACTIONS(1928), - [sym_crate] = ACTIONS(1928), - [sym_metavariable] = ACTIONS(1926), - [sym_raw_string_literal] = ACTIONS(1926), - [sym_float_literal] = ACTIONS(1926), + [ts_builtin_sym_end] = ACTIONS(1948), + [sym_identifier] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1948), + [anon_sym_macro_rules_BANG] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1948), + [anon_sym_RBRACE] = ACTIONS(1948), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_u8] = ACTIONS(1950), + [anon_sym_i8] = ACTIONS(1950), + [anon_sym_u16] = ACTIONS(1950), + [anon_sym_i16] = ACTIONS(1950), + [anon_sym_u32] = ACTIONS(1950), + [anon_sym_i32] = ACTIONS(1950), + [anon_sym_u64] = ACTIONS(1950), + [anon_sym_i64] = ACTIONS(1950), + [anon_sym_u128] = ACTIONS(1950), + [anon_sym_i128] = ACTIONS(1950), + [anon_sym_isize] = ACTIONS(1950), + [anon_sym_usize] = ACTIONS(1950), + [anon_sym_f32] = ACTIONS(1950), + [anon_sym_f64] = ACTIONS(1950), + [anon_sym_bool] = ACTIONS(1950), + [anon_sym_str] = ACTIONS(1950), + [anon_sym_char] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_async] = ACTIONS(1950), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_const] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1950), + [anon_sym_default] = ACTIONS(1950), + [anon_sym_enum] = ACTIONS(1950), + [anon_sym_fn] = ACTIONS(1950), + [anon_sym_for] = ACTIONS(1950), + [anon_sym_if] = ACTIONS(1950), + [anon_sym_impl] = ACTIONS(1950), + [anon_sym_let] = ACTIONS(1950), + [anon_sym_loop] = ACTIONS(1950), + [anon_sym_match] = ACTIONS(1950), + [anon_sym_mod] = ACTIONS(1950), + [anon_sym_pub] = ACTIONS(1950), + [anon_sym_return] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1950), + [anon_sym_struct] = ACTIONS(1950), + [anon_sym_trait] = ACTIONS(1950), + [anon_sym_type] = ACTIONS(1950), + [anon_sym_union] = ACTIONS(1950), + [anon_sym_unsafe] = ACTIONS(1950), + [anon_sym_use] = ACTIONS(1950), + [anon_sym_while] = ACTIONS(1950), + [anon_sym_POUND] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1950), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_COLON_COLON] = ACTIONS(1948), + [anon_sym_AMP] = ACTIONS(1948), + [anon_sym_DOT_DOT] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_yield] = ACTIONS(1950), + [anon_sym_move] = ACTIONS(1950), + [sym_integer_literal] = ACTIONS(1948), + [aux_sym_string_literal_token1] = ACTIONS(1948), + [sym_char_literal] = ACTIONS(1948), + [anon_sym_true] = ACTIONS(1950), + [anon_sym_false] = ACTIONS(1950), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1950), + [sym_super] = ACTIONS(1950), + [sym_crate] = ACTIONS(1950), + [sym_metavariable] = ACTIONS(1948), + [sym_raw_string_literal] = ACTIONS(1948), + [sym_float_literal] = ACTIONS(1948), [sym_block_comment] = ACTIONS(3), }, [472] = { - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_macro_rules_BANG] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_u8] = ACTIONS(1932), - [anon_sym_i8] = ACTIONS(1932), - [anon_sym_u16] = ACTIONS(1932), - [anon_sym_i16] = ACTIONS(1932), - [anon_sym_u32] = ACTIONS(1932), - [anon_sym_i32] = ACTIONS(1932), - [anon_sym_u64] = ACTIONS(1932), - [anon_sym_i64] = ACTIONS(1932), - [anon_sym_u128] = ACTIONS(1932), - [anon_sym_i128] = ACTIONS(1932), - [anon_sym_isize] = ACTIONS(1932), - [anon_sym_usize] = ACTIONS(1932), - [anon_sym_f32] = ACTIONS(1932), - [anon_sym_f64] = ACTIONS(1932), - [anon_sym_bool] = ACTIONS(1932), - [anon_sym_str] = ACTIONS(1932), - [anon_sym_char] = ACTIONS(1932), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_break] = ACTIONS(1932), - [anon_sym_const] = ACTIONS(1932), - [anon_sym_continue] = ACTIONS(1932), - [anon_sym_default] = ACTIONS(1932), - [anon_sym_enum] = ACTIONS(1932), - [anon_sym_fn] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_impl] = ACTIONS(1932), - [anon_sym_let] = ACTIONS(1932), - [anon_sym_loop] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_mod] = ACTIONS(1932), - [anon_sym_pub] = ACTIONS(1932), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_static] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1932), - [anon_sym_trait] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_union] = ACTIONS(1932), - [anon_sym_unsafe] = ACTIONS(1932), - [anon_sym_use] = ACTIONS(1932), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_POUND] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1930), - [anon_sym_extern] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_COLON_COLON] = ACTIONS(1930), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_DOT_DOT] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_yield] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [sym_integer_literal] = ACTIONS(1930), - [aux_sym_string_literal_token1] = ACTIONS(1930), - [sym_char_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1932), - [sym_super] = ACTIONS(1932), - [sym_crate] = ACTIONS(1932), - [sym_metavariable] = ACTIONS(1930), - [sym_raw_string_literal] = ACTIONS(1930), - [sym_float_literal] = ACTIONS(1930), + [ts_builtin_sym_end] = ACTIONS(1952), + [sym_identifier] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1952), + [anon_sym_macro_rules_BANG] = ACTIONS(1952), + [anon_sym_LPAREN] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1952), + [anon_sym_RBRACE] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(1952), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_u8] = ACTIONS(1954), + [anon_sym_i8] = ACTIONS(1954), + [anon_sym_u16] = ACTIONS(1954), + [anon_sym_i16] = ACTIONS(1954), + [anon_sym_u32] = ACTIONS(1954), + [anon_sym_i32] = ACTIONS(1954), + [anon_sym_u64] = ACTIONS(1954), + [anon_sym_i64] = ACTIONS(1954), + [anon_sym_u128] = ACTIONS(1954), + [anon_sym_i128] = ACTIONS(1954), + [anon_sym_isize] = ACTIONS(1954), + [anon_sym_usize] = ACTIONS(1954), + [anon_sym_f32] = ACTIONS(1954), + [anon_sym_f64] = ACTIONS(1954), + [anon_sym_bool] = ACTIONS(1954), + [anon_sym_str] = ACTIONS(1954), + [anon_sym_char] = ACTIONS(1954), + [anon_sym_SQUOTE] = ACTIONS(1954), + [anon_sym_async] = ACTIONS(1954), + [anon_sym_break] = ACTIONS(1954), + [anon_sym_const] = ACTIONS(1954), + [anon_sym_continue] = ACTIONS(1954), + [anon_sym_default] = ACTIONS(1954), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_fn] = ACTIONS(1954), + [anon_sym_for] = ACTIONS(1954), + [anon_sym_if] = ACTIONS(1954), + [anon_sym_impl] = ACTIONS(1954), + [anon_sym_let] = ACTIONS(1954), + [anon_sym_loop] = ACTIONS(1954), + [anon_sym_match] = ACTIONS(1954), + [anon_sym_mod] = ACTIONS(1954), + [anon_sym_pub] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1954), + [anon_sym_static] = ACTIONS(1954), + [anon_sym_struct] = ACTIONS(1954), + [anon_sym_trait] = ACTIONS(1954), + [anon_sym_type] = ACTIONS(1954), + [anon_sym_union] = ACTIONS(1954), + [anon_sym_unsafe] = ACTIONS(1954), + [anon_sym_use] = ACTIONS(1954), + [anon_sym_while] = ACTIONS(1954), + [anon_sym_POUND] = ACTIONS(1952), + [anon_sym_BANG] = ACTIONS(1952), + [anon_sym_extern] = ACTIONS(1954), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_COLON_COLON] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1952), + [anon_sym_DOT_DOT] = ACTIONS(1952), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_yield] = ACTIONS(1954), + [anon_sym_move] = ACTIONS(1954), + [sym_integer_literal] = ACTIONS(1952), + [aux_sym_string_literal_token1] = ACTIONS(1952), + [sym_char_literal] = ACTIONS(1952), + [anon_sym_true] = ACTIONS(1954), + [anon_sym_false] = ACTIONS(1954), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1954), + [sym_super] = ACTIONS(1954), + [sym_crate] = ACTIONS(1954), + [sym_metavariable] = ACTIONS(1952), + [sym_raw_string_literal] = ACTIONS(1952), + [sym_float_literal] = ACTIONS(1952), [sym_block_comment] = ACTIONS(3), }, [473] = { - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_macro_rules_BANG] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_u8] = ACTIONS(1936), - [anon_sym_i8] = ACTIONS(1936), - [anon_sym_u16] = ACTIONS(1936), - [anon_sym_i16] = ACTIONS(1936), - [anon_sym_u32] = ACTIONS(1936), - [anon_sym_i32] = ACTIONS(1936), - [anon_sym_u64] = ACTIONS(1936), - [anon_sym_i64] = ACTIONS(1936), - [anon_sym_u128] = ACTIONS(1936), - [anon_sym_i128] = ACTIONS(1936), - [anon_sym_isize] = ACTIONS(1936), - [anon_sym_usize] = ACTIONS(1936), - [anon_sym_f32] = ACTIONS(1936), - [anon_sym_f64] = ACTIONS(1936), - [anon_sym_bool] = ACTIONS(1936), - [anon_sym_str] = ACTIONS(1936), - [anon_sym_char] = ACTIONS(1936), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_break] = ACTIONS(1936), - [anon_sym_const] = ACTIONS(1936), - [anon_sym_continue] = ACTIONS(1936), - [anon_sym_default] = ACTIONS(1936), - [anon_sym_enum] = ACTIONS(1936), - [anon_sym_fn] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_impl] = ACTIONS(1936), - [anon_sym_let] = ACTIONS(1936), - [anon_sym_loop] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_mod] = ACTIONS(1936), - [anon_sym_pub] = ACTIONS(1936), - [anon_sym_return] = ACTIONS(1936), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_struct] = ACTIONS(1936), - [anon_sym_trait] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_union] = ACTIONS(1936), - [anon_sym_unsafe] = ACTIONS(1936), - [anon_sym_use] = ACTIONS(1936), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_POUND] = ACTIONS(1934), - [anon_sym_BANG] = ACTIONS(1934), - [anon_sym_extern] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1934), - [anon_sym_COLON_COLON] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1934), - [anon_sym_DOT_DOT] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1934), - [anon_sym_PIPE] = ACTIONS(1934), - [anon_sym_yield] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [sym_integer_literal] = ACTIONS(1934), - [aux_sym_string_literal_token1] = ACTIONS(1934), - [sym_char_literal] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1936), - [sym_super] = ACTIONS(1936), - [sym_crate] = ACTIONS(1936), - [sym_metavariable] = ACTIONS(1934), - [sym_raw_string_literal] = ACTIONS(1934), - [sym_float_literal] = ACTIONS(1934), + [ts_builtin_sym_end] = ACTIONS(1956), + [sym_identifier] = ACTIONS(1958), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_macro_rules_BANG] = ACTIONS(1956), + [anon_sym_LPAREN] = ACTIONS(1956), + [anon_sym_LBRACE] = ACTIONS(1956), + [anon_sym_RBRACE] = ACTIONS(1956), + [anon_sym_LBRACK] = ACTIONS(1956), + [anon_sym_STAR] = ACTIONS(1956), + [anon_sym_u8] = ACTIONS(1958), + [anon_sym_i8] = ACTIONS(1958), + [anon_sym_u16] = ACTIONS(1958), + [anon_sym_i16] = ACTIONS(1958), + [anon_sym_u32] = ACTIONS(1958), + [anon_sym_i32] = ACTIONS(1958), + [anon_sym_u64] = ACTIONS(1958), + [anon_sym_i64] = ACTIONS(1958), + [anon_sym_u128] = ACTIONS(1958), + [anon_sym_i128] = ACTIONS(1958), + [anon_sym_isize] = ACTIONS(1958), + [anon_sym_usize] = ACTIONS(1958), + [anon_sym_f32] = ACTIONS(1958), + [anon_sym_f64] = ACTIONS(1958), + [anon_sym_bool] = ACTIONS(1958), + [anon_sym_str] = ACTIONS(1958), + [anon_sym_char] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_async] = ACTIONS(1958), + [anon_sym_break] = ACTIONS(1958), + [anon_sym_const] = ACTIONS(1958), + [anon_sym_continue] = ACTIONS(1958), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_enum] = ACTIONS(1958), + [anon_sym_fn] = ACTIONS(1958), + [anon_sym_for] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1958), + [anon_sym_impl] = ACTIONS(1958), + [anon_sym_let] = ACTIONS(1958), + [anon_sym_loop] = ACTIONS(1958), + [anon_sym_match] = ACTIONS(1958), + [anon_sym_mod] = ACTIONS(1958), + [anon_sym_pub] = ACTIONS(1958), + [anon_sym_return] = ACTIONS(1958), + [anon_sym_static] = ACTIONS(1958), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_trait] = ACTIONS(1958), + [anon_sym_type] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1958), + [anon_sym_unsafe] = ACTIONS(1958), + [anon_sym_use] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1958), + [anon_sym_POUND] = ACTIONS(1956), + [anon_sym_BANG] = ACTIONS(1956), + [anon_sym_extern] = ACTIONS(1958), + [anon_sym_LT] = ACTIONS(1956), + [anon_sym_COLON_COLON] = ACTIONS(1956), + [anon_sym_AMP] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [anon_sym_yield] = ACTIONS(1958), + [anon_sym_move] = ACTIONS(1958), + [sym_integer_literal] = ACTIONS(1956), + [aux_sym_string_literal_token1] = ACTIONS(1956), + [sym_char_literal] = ACTIONS(1956), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1958), + [sym_super] = ACTIONS(1958), + [sym_crate] = ACTIONS(1958), + [sym_metavariable] = ACTIONS(1956), + [sym_raw_string_literal] = ACTIONS(1956), + [sym_float_literal] = ACTIONS(1956), [sym_block_comment] = ACTIONS(3), }, [474] = { - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_macro_rules_BANG] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_u8] = ACTIONS(1940), - [anon_sym_i8] = ACTIONS(1940), - [anon_sym_u16] = ACTIONS(1940), - [anon_sym_i16] = ACTIONS(1940), - [anon_sym_u32] = ACTIONS(1940), - [anon_sym_i32] = ACTIONS(1940), - [anon_sym_u64] = ACTIONS(1940), - [anon_sym_i64] = ACTIONS(1940), - [anon_sym_u128] = ACTIONS(1940), - [anon_sym_i128] = ACTIONS(1940), - [anon_sym_isize] = ACTIONS(1940), - [anon_sym_usize] = ACTIONS(1940), - [anon_sym_f32] = ACTIONS(1940), - [anon_sym_f64] = ACTIONS(1940), - [anon_sym_bool] = ACTIONS(1940), - [anon_sym_str] = ACTIONS(1940), - [anon_sym_char] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_default] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), - [anon_sym_fn] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_impl] = ACTIONS(1940), - [anon_sym_let] = ACTIONS(1940), - [anon_sym_loop] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_mod] = ACTIONS(1940), - [anon_sym_pub] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_trait] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), - [anon_sym_unsafe] = ACTIONS(1940), - [anon_sym_use] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_POUND] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1938), - [anon_sym_extern] = ACTIONS(1940), - [anon_sym_LT] = ACTIONS(1938), - [anon_sym_COLON_COLON] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1938), - [anon_sym_DASH] = ACTIONS(1938), - [anon_sym_PIPE] = ACTIONS(1938), - [anon_sym_yield] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [sym_integer_literal] = ACTIONS(1938), - [aux_sym_string_literal_token1] = ACTIONS(1938), - [sym_char_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1940), - [sym_super] = ACTIONS(1940), - [sym_crate] = ACTIONS(1940), - [sym_metavariable] = ACTIONS(1938), - [sym_raw_string_literal] = ACTIONS(1938), - [sym_float_literal] = ACTIONS(1938), + [ts_builtin_sym_end] = ACTIONS(1960), + [sym_identifier] = ACTIONS(1962), + [anon_sym_SEMI] = ACTIONS(1960), + [anon_sym_macro_rules_BANG] = ACTIONS(1960), + [anon_sym_LPAREN] = ACTIONS(1960), + [anon_sym_LBRACE] = ACTIONS(1960), + [anon_sym_RBRACE] = ACTIONS(1960), + [anon_sym_LBRACK] = ACTIONS(1960), + [anon_sym_STAR] = ACTIONS(1960), + [anon_sym_u8] = ACTIONS(1962), + [anon_sym_i8] = ACTIONS(1962), + [anon_sym_u16] = ACTIONS(1962), + [anon_sym_i16] = ACTIONS(1962), + [anon_sym_u32] = ACTIONS(1962), + [anon_sym_i32] = ACTIONS(1962), + [anon_sym_u64] = ACTIONS(1962), + [anon_sym_i64] = ACTIONS(1962), + [anon_sym_u128] = ACTIONS(1962), + [anon_sym_i128] = ACTIONS(1962), + [anon_sym_isize] = ACTIONS(1962), + [anon_sym_usize] = ACTIONS(1962), + [anon_sym_f32] = ACTIONS(1962), + [anon_sym_f64] = ACTIONS(1962), + [anon_sym_bool] = ACTIONS(1962), + [anon_sym_str] = ACTIONS(1962), + [anon_sym_char] = ACTIONS(1962), + [anon_sym_SQUOTE] = ACTIONS(1962), + [anon_sym_async] = ACTIONS(1962), + [anon_sym_break] = ACTIONS(1962), + [anon_sym_const] = ACTIONS(1962), + [anon_sym_continue] = ACTIONS(1962), + [anon_sym_default] = ACTIONS(1962), + [anon_sym_enum] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1962), + [anon_sym_if] = ACTIONS(1962), + [anon_sym_impl] = ACTIONS(1962), + [anon_sym_let] = ACTIONS(1962), + [anon_sym_loop] = ACTIONS(1962), + [anon_sym_match] = ACTIONS(1962), + [anon_sym_mod] = ACTIONS(1962), + [anon_sym_pub] = ACTIONS(1962), + [anon_sym_return] = ACTIONS(1962), + [anon_sym_static] = ACTIONS(1962), + [anon_sym_struct] = ACTIONS(1962), + [anon_sym_trait] = ACTIONS(1962), + [anon_sym_type] = ACTIONS(1962), + [anon_sym_union] = ACTIONS(1962), + [anon_sym_unsafe] = ACTIONS(1962), + [anon_sym_use] = ACTIONS(1962), + [anon_sym_while] = ACTIONS(1962), + [anon_sym_POUND] = ACTIONS(1960), + [anon_sym_BANG] = ACTIONS(1960), + [anon_sym_extern] = ACTIONS(1962), + [anon_sym_LT] = ACTIONS(1960), + [anon_sym_COLON_COLON] = ACTIONS(1960), + [anon_sym_AMP] = ACTIONS(1960), + [anon_sym_DOT_DOT] = ACTIONS(1960), + [anon_sym_DASH] = ACTIONS(1960), + [anon_sym_PIPE] = ACTIONS(1960), + [anon_sym_yield] = ACTIONS(1962), + [anon_sym_move] = ACTIONS(1962), + [sym_integer_literal] = ACTIONS(1960), + [aux_sym_string_literal_token1] = ACTIONS(1960), + [sym_char_literal] = ACTIONS(1960), + [anon_sym_true] = ACTIONS(1962), + [anon_sym_false] = ACTIONS(1962), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1962), + [sym_super] = ACTIONS(1962), + [sym_crate] = ACTIONS(1962), + [sym_metavariable] = ACTIONS(1960), + [sym_raw_string_literal] = ACTIONS(1960), + [sym_float_literal] = ACTIONS(1960), [sym_block_comment] = ACTIONS(3), }, [475] = { - [ts_builtin_sym_end] = ACTIONS(1942), - [sym_identifier] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_macro_rules_BANG] = ACTIONS(1942), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_RBRACE] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1942), - [anon_sym_u8] = ACTIONS(1944), - [anon_sym_i8] = ACTIONS(1944), - [anon_sym_u16] = ACTIONS(1944), - [anon_sym_i16] = ACTIONS(1944), - [anon_sym_u32] = ACTIONS(1944), - [anon_sym_i32] = ACTIONS(1944), - [anon_sym_u64] = ACTIONS(1944), - [anon_sym_i64] = ACTIONS(1944), - [anon_sym_u128] = ACTIONS(1944), - [anon_sym_i128] = ACTIONS(1944), - [anon_sym_isize] = ACTIONS(1944), - [anon_sym_usize] = ACTIONS(1944), - [anon_sym_f32] = ACTIONS(1944), - [anon_sym_f64] = ACTIONS(1944), - [anon_sym_bool] = ACTIONS(1944), - [anon_sym_str] = ACTIONS(1944), - [anon_sym_char] = ACTIONS(1944), - [anon_sym_SQUOTE] = ACTIONS(1944), - [anon_sym_async] = ACTIONS(1944), - [anon_sym_break] = ACTIONS(1944), - [anon_sym_const] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(1944), - [anon_sym_default] = ACTIONS(1944), - [anon_sym_enum] = ACTIONS(1944), - [anon_sym_fn] = ACTIONS(1944), - [anon_sym_for] = ACTIONS(1944), - [anon_sym_if] = ACTIONS(1944), - [anon_sym_impl] = ACTIONS(1944), - [anon_sym_let] = ACTIONS(1944), - [anon_sym_loop] = ACTIONS(1944), - [anon_sym_match] = ACTIONS(1944), - [anon_sym_mod] = ACTIONS(1944), - [anon_sym_pub] = ACTIONS(1944), - [anon_sym_return] = ACTIONS(1944), - [anon_sym_static] = ACTIONS(1944), - [anon_sym_struct] = ACTIONS(1944), - [anon_sym_trait] = ACTIONS(1944), - [anon_sym_type] = ACTIONS(1944), - [anon_sym_union] = ACTIONS(1944), - [anon_sym_unsafe] = ACTIONS(1944), - [anon_sym_use] = ACTIONS(1944), - [anon_sym_while] = ACTIONS(1944), - [anon_sym_POUND] = ACTIONS(1942), - [anon_sym_BANG] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1944), - [anon_sym_LT] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_PIPE] = ACTIONS(1942), - [anon_sym_yield] = ACTIONS(1944), - [anon_sym_move] = ACTIONS(1944), - [sym_integer_literal] = ACTIONS(1942), - [aux_sym_string_literal_token1] = ACTIONS(1942), - [sym_char_literal] = ACTIONS(1942), - [anon_sym_true] = ACTIONS(1944), - [anon_sym_false] = ACTIONS(1944), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1944), - [sym_super] = ACTIONS(1944), - [sym_crate] = ACTIONS(1944), - [sym_metavariable] = ACTIONS(1942), - [sym_raw_string_literal] = ACTIONS(1942), - [sym_float_literal] = ACTIONS(1942), + [ts_builtin_sym_end] = ACTIONS(1964), + [sym_identifier] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1964), + [anon_sym_macro_rules_BANG] = ACTIONS(1964), + [anon_sym_LPAREN] = ACTIONS(1964), + [anon_sym_LBRACE] = ACTIONS(1964), + [anon_sym_RBRACE] = ACTIONS(1964), + [anon_sym_LBRACK] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(1964), + [anon_sym_u8] = ACTIONS(1966), + [anon_sym_i8] = ACTIONS(1966), + [anon_sym_u16] = ACTIONS(1966), + [anon_sym_i16] = ACTIONS(1966), + [anon_sym_u32] = ACTIONS(1966), + [anon_sym_i32] = ACTIONS(1966), + [anon_sym_u64] = ACTIONS(1966), + [anon_sym_i64] = ACTIONS(1966), + [anon_sym_u128] = ACTIONS(1966), + [anon_sym_i128] = ACTIONS(1966), + [anon_sym_isize] = ACTIONS(1966), + [anon_sym_usize] = ACTIONS(1966), + [anon_sym_f32] = ACTIONS(1966), + [anon_sym_f64] = ACTIONS(1966), + [anon_sym_bool] = ACTIONS(1966), + [anon_sym_str] = ACTIONS(1966), + [anon_sym_char] = ACTIONS(1966), + [anon_sym_SQUOTE] = ACTIONS(1966), + [anon_sym_async] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_continue] = ACTIONS(1966), + [anon_sym_default] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_fn] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1966), + [anon_sym_if] = ACTIONS(1966), + [anon_sym_impl] = ACTIONS(1966), + [anon_sym_let] = ACTIONS(1966), + [anon_sym_loop] = ACTIONS(1966), + [anon_sym_match] = ACTIONS(1966), + [anon_sym_mod] = ACTIONS(1966), + [anon_sym_pub] = ACTIONS(1966), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_trait] = ACTIONS(1966), + [anon_sym_type] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [anon_sym_unsafe] = ACTIONS(1966), + [anon_sym_use] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1966), + [anon_sym_POUND] = ACTIONS(1964), + [anon_sym_BANG] = ACTIONS(1964), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym_LT] = ACTIONS(1964), + [anon_sym_COLON_COLON] = ACTIONS(1964), + [anon_sym_AMP] = ACTIONS(1964), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [anon_sym_DASH] = ACTIONS(1964), + [anon_sym_PIPE] = ACTIONS(1964), + [anon_sym_yield] = ACTIONS(1966), + [anon_sym_move] = ACTIONS(1966), + [sym_integer_literal] = ACTIONS(1964), + [aux_sym_string_literal_token1] = ACTIONS(1964), + [sym_char_literal] = ACTIONS(1964), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1966), + [sym_super] = ACTIONS(1966), + [sym_crate] = ACTIONS(1966), + [sym_metavariable] = ACTIONS(1964), + [sym_raw_string_literal] = ACTIONS(1964), + [sym_float_literal] = ACTIONS(1964), [sym_block_comment] = ACTIONS(3), }, [476] = { - [ts_builtin_sym_end] = ACTIONS(1946), - [sym_identifier] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym_macro_rules_BANG] = ACTIONS(1946), - [anon_sym_LPAREN] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_RBRACE] = ACTIONS(1946), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1946), - [anon_sym_u8] = ACTIONS(1948), - [anon_sym_i8] = ACTIONS(1948), - [anon_sym_u16] = ACTIONS(1948), - [anon_sym_i16] = ACTIONS(1948), - [anon_sym_u32] = ACTIONS(1948), - [anon_sym_i32] = ACTIONS(1948), - [anon_sym_u64] = ACTIONS(1948), - [anon_sym_i64] = ACTIONS(1948), - [anon_sym_u128] = ACTIONS(1948), - [anon_sym_i128] = ACTIONS(1948), - [anon_sym_isize] = ACTIONS(1948), - [anon_sym_usize] = ACTIONS(1948), - [anon_sym_f32] = ACTIONS(1948), - [anon_sym_f64] = ACTIONS(1948), - [anon_sym_bool] = ACTIONS(1948), - [anon_sym_str] = ACTIONS(1948), - [anon_sym_char] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_async] = ACTIONS(1948), - [anon_sym_break] = ACTIONS(1948), - [anon_sym_const] = ACTIONS(1948), - [anon_sym_continue] = ACTIONS(1948), - [anon_sym_default] = ACTIONS(1948), - [anon_sym_enum] = ACTIONS(1948), - [anon_sym_fn] = ACTIONS(1948), - [anon_sym_for] = ACTIONS(1948), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_impl] = ACTIONS(1948), - [anon_sym_let] = ACTIONS(1948), - [anon_sym_loop] = ACTIONS(1948), - [anon_sym_match] = ACTIONS(1948), - [anon_sym_mod] = ACTIONS(1948), - [anon_sym_pub] = ACTIONS(1948), - [anon_sym_return] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1948), - [anon_sym_struct] = ACTIONS(1948), - [anon_sym_trait] = ACTIONS(1948), - [anon_sym_type] = ACTIONS(1948), - [anon_sym_union] = ACTIONS(1948), - [anon_sym_unsafe] = ACTIONS(1948), - [anon_sym_use] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_POUND] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1948), - [anon_sym_LT] = ACTIONS(1946), - [anon_sym_COLON_COLON] = ACTIONS(1946), - [anon_sym_AMP] = ACTIONS(1946), - [anon_sym_DOT_DOT] = ACTIONS(1946), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1946), - [anon_sym_yield] = ACTIONS(1948), - [anon_sym_move] = ACTIONS(1948), - [sym_integer_literal] = ACTIONS(1946), - [aux_sym_string_literal_token1] = ACTIONS(1946), - [sym_char_literal] = ACTIONS(1946), - [anon_sym_true] = ACTIONS(1948), - [anon_sym_false] = ACTIONS(1948), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1948), - [sym_super] = ACTIONS(1948), - [sym_crate] = ACTIONS(1948), - [sym_metavariable] = ACTIONS(1946), - [sym_raw_string_literal] = ACTIONS(1946), - [sym_float_literal] = ACTIONS(1946), + [ts_builtin_sym_end] = ACTIONS(1968), + [sym_identifier] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym_macro_rules_BANG] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_u8] = ACTIONS(1970), + [anon_sym_i8] = ACTIONS(1970), + [anon_sym_u16] = ACTIONS(1970), + [anon_sym_i16] = ACTIONS(1970), + [anon_sym_u32] = ACTIONS(1970), + [anon_sym_i32] = ACTIONS(1970), + [anon_sym_u64] = ACTIONS(1970), + [anon_sym_i64] = ACTIONS(1970), + [anon_sym_u128] = ACTIONS(1970), + [anon_sym_i128] = ACTIONS(1970), + [anon_sym_isize] = ACTIONS(1970), + [anon_sym_usize] = ACTIONS(1970), + [anon_sym_f32] = ACTIONS(1970), + [anon_sym_f64] = ACTIONS(1970), + [anon_sym_bool] = ACTIONS(1970), + [anon_sym_str] = ACTIONS(1970), + [anon_sym_char] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_async] = ACTIONS(1970), + [anon_sym_break] = ACTIONS(1970), + [anon_sym_const] = ACTIONS(1970), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_default] = ACTIONS(1970), + [anon_sym_enum] = ACTIONS(1970), + [anon_sym_fn] = ACTIONS(1970), + [anon_sym_for] = ACTIONS(1970), + [anon_sym_if] = ACTIONS(1970), + [anon_sym_impl] = ACTIONS(1970), + [anon_sym_let] = ACTIONS(1970), + [anon_sym_loop] = ACTIONS(1970), + [anon_sym_match] = ACTIONS(1970), + [anon_sym_mod] = ACTIONS(1970), + [anon_sym_pub] = ACTIONS(1970), + [anon_sym_return] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1970), + [anon_sym_struct] = ACTIONS(1970), + [anon_sym_trait] = ACTIONS(1970), + [anon_sym_type] = ACTIONS(1970), + [anon_sym_union] = ACTIONS(1970), + [anon_sym_unsafe] = ACTIONS(1970), + [anon_sym_use] = ACTIONS(1970), + [anon_sym_while] = ACTIONS(1970), + [anon_sym_POUND] = ACTIONS(1968), + [anon_sym_BANG] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1970), + [anon_sym_LT] = ACTIONS(1968), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1968), + [anon_sym_yield] = ACTIONS(1970), + [anon_sym_move] = ACTIONS(1970), + [sym_integer_literal] = ACTIONS(1968), + [aux_sym_string_literal_token1] = ACTIONS(1968), + [sym_char_literal] = ACTIONS(1968), + [anon_sym_true] = ACTIONS(1970), + [anon_sym_false] = ACTIONS(1970), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1970), + [sym_super] = ACTIONS(1970), + [sym_crate] = ACTIONS(1970), + [sym_metavariable] = ACTIONS(1968), + [sym_raw_string_literal] = ACTIONS(1968), + [sym_float_literal] = ACTIONS(1968), [sym_block_comment] = ACTIONS(3), }, [477] = { - [ts_builtin_sym_end] = ACTIONS(1950), - [sym_identifier] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1950), - [anon_sym_macro_rules_BANG] = ACTIONS(1950), - [anon_sym_LPAREN] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1950), - [anon_sym_RBRACE] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(1950), - [anon_sym_STAR] = ACTIONS(1950), - [anon_sym_u8] = ACTIONS(1952), - [anon_sym_i8] = ACTIONS(1952), - [anon_sym_u16] = ACTIONS(1952), - [anon_sym_i16] = ACTIONS(1952), - [anon_sym_u32] = ACTIONS(1952), - [anon_sym_i32] = ACTIONS(1952), - [anon_sym_u64] = ACTIONS(1952), - [anon_sym_i64] = ACTIONS(1952), - [anon_sym_u128] = ACTIONS(1952), - [anon_sym_i128] = ACTIONS(1952), - [anon_sym_isize] = ACTIONS(1952), - [anon_sym_usize] = ACTIONS(1952), - [anon_sym_f32] = ACTIONS(1952), - [anon_sym_f64] = ACTIONS(1952), - [anon_sym_bool] = ACTIONS(1952), - [anon_sym_str] = ACTIONS(1952), - [anon_sym_char] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_async] = ACTIONS(1952), - [anon_sym_break] = ACTIONS(1952), - [anon_sym_const] = ACTIONS(1952), - [anon_sym_continue] = ACTIONS(1952), - [anon_sym_default] = ACTIONS(1952), - [anon_sym_enum] = ACTIONS(1952), - [anon_sym_fn] = ACTIONS(1952), - [anon_sym_for] = ACTIONS(1952), - [anon_sym_if] = ACTIONS(1952), - [anon_sym_impl] = ACTIONS(1952), - [anon_sym_let] = ACTIONS(1952), - [anon_sym_loop] = ACTIONS(1952), - [anon_sym_match] = ACTIONS(1952), - [anon_sym_mod] = ACTIONS(1952), - [anon_sym_pub] = ACTIONS(1952), - [anon_sym_return] = ACTIONS(1952), - [anon_sym_static] = ACTIONS(1952), - [anon_sym_struct] = ACTIONS(1952), - [anon_sym_trait] = ACTIONS(1952), - [anon_sym_type] = ACTIONS(1952), - [anon_sym_union] = ACTIONS(1952), - [anon_sym_unsafe] = ACTIONS(1952), - [anon_sym_use] = ACTIONS(1952), - [anon_sym_while] = ACTIONS(1952), - [anon_sym_POUND] = ACTIONS(1950), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_extern] = ACTIONS(1952), - [anon_sym_LT] = ACTIONS(1950), - [anon_sym_COLON_COLON] = ACTIONS(1950), - [anon_sym_AMP] = ACTIONS(1950), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1950), - [anon_sym_PIPE] = ACTIONS(1950), - [anon_sym_yield] = ACTIONS(1952), - [anon_sym_move] = ACTIONS(1952), - [sym_integer_literal] = ACTIONS(1950), - [aux_sym_string_literal_token1] = ACTIONS(1950), - [sym_char_literal] = ACTIONS(1950), - [anon_sym_true] = ACTIONS(1952), - [anon_sym_false] = ACTIONS(1952), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1952), - [sym_super] = ACTIONS(1952), - [sym_crate] = ACTIONS(1952), - [sym_metavariable] = ACTIONS(1950), - [sym_raw_string_literal] = ACTIONS(1950), - [sym_float_literal] = ACTIONS(1950), + [ts_builtin_sym_end] = ACTIONS(1972), + [sym_identifier] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_macro_rules_BANG] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_LBRACK] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_u8] = ACTIONS(1974), + [anon_sym_i8] = ACTIONS(1974), + [anon_sym_u16] = ACTIONS(1974), + [anon_sym_i16] = ACTIONS(1974), + [anon_sym_u32] = ACTIONS(1974), + [anon_sym_i32] = ACTIONS(1974), + [anon_sym_u64] = ACTIONS(1974), + [anon_sym_i64] = ACTIONS(1974), + [anon_sym_u128] = ACTIONS(1974), + [anon_sym_i128] = ACTIONS(1974), + [anon_sym_isize] = ACTIONS(1974), + [anon_sym_usize] = ACTIONS(1974), + [anon_sym_f32] = ACTIONS(1974), + [anon_sym_f64] = ACTIONS(1974), + [anon_sym_bool] = ACTIONS(1974), + [anon_sym_str] = ACTIONS(1974), + [anon_sym_char] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_async] = ACTIONS(1974), + [anon_sym_break] = ACTIONS(1974), + [anon_sym_const] = ACTIONS(1974), + [anon_sym_continue] = ACTIONS(1974), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_enum] = ACTIONS(1974), + [anon_sym_fn] = ACTIONS(1974), + [anon_sym_for] = ACTIONS(1974), + [anon_sym_if] = ACTIONS(1974), + [anon_sym_impl] = ACTIONS(1974), + [anon_sym_let] = ACTIONS(1974), + [anon_sym_loop] = ACTIONS(1974), + [anon_sym_match] = ACTIONS(1974), + [anon_sym_mod] = ACTIONS(1974), + [anon_sym_pub] = ACTIONS(1974), + [anon_sym_return] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_struct] = ACTIONS(1974), + [anon_sym_trait] = ACTIONS(1974), + [anon_sym_type] = ACTIONS(1974), + [anon_sym_union] = ACTIONS(1974), + [anon_sym_unsafe] = ACTIONS(1974), + [anon_sym_use] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1974), + [anon_sym_POUND] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1974), + [anon_sym_LT] = ACTIONS(1972), + [anon_sym_COLON_COLON] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_yield] = ACTIONS(1974), + [anon_sym_move] = ACTIONS(1974), + [sym_integer_literal] = ACTIONS(1972), + [aux_sym_string_literal_token1] = ACTIONS(1972), + [sym_char_literal] = ACTIONS(1972), + [anon_sym_true] = ACTIONS(1974), + [anon_sym_false] = ACTIONS(1974), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1974), + [sym_super] = ACTIONS(1974), + [sym_crate] = ACTIONS(1974), + [sym_metavariable] = ACTIONS(1972), + [sym_raw_string_literal] = ACTIONS(1972), + [sym_float_literal] = ACTIONS(1972), [sym_block_comment] = ACTIONS(3), }, [478] = { - [ts_builtin_sym_end] = ACTIONS(1954), - [sym_identifier] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_macro_rules_BANG] = ACTIONS(1954), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_STAR] = ACTIONS(1954), - [anon_sym_u8] = ACTIONS(1956), - [anon_sym_i8] = ACTIONS(1956), - [anon_sym_u16] = ACTIONS(1956), - [anon_sym_i16] = ACTIONS(1956), - [anon_sym_u32] = ACTIONS(1956), - [anon_sym_i32] = ACTIONS(1956), - [anon_sym_u64] = ACTIONS(1956), - [anon_sym_i64] = ACTIONS(1956), - [anon_sym_u128] = ACTIONS(1956), - [anon_sym_i128] = ACTIONS(1956), - [anon_sym_isize] = ACTIONS(1956), - [anon_sym_usize] = ACTIONS(1956), - [anon_sym_f32] = ACTIONS(1956), - [anon_sym_f64] = ACTIONS(1956), - [anon_sym_bool] = ACTIONS(1956), - [anon_sym_str] = ACTIONS(1956), - [anon_sym_char] = ACTIONS(1956), - [anon_sym_SQUOTE] = ACTIONS(1956), - [anon_sym_async] = ACTIONS(1956), - [anon_sym_break] = ACTIONS(1956), - [anon_sym_const] = ACTIONS(1956), - [anon_sym_continue] = ACTIONS(1956), - [anon_sym_default] = ACTIONS(1956), - [anon_sym_enum] = ACTIONS(1956), - [anon_sym_fn] = ACTIONS(1956), - [anon_sym_for] = ACTIONS(1956), - [anon_sym_if] = ACTIONS(1956), - [anon_sym_impl] = ACTIONS(1956), - [anon_sym_let] = ACTIONS(1956), - [anon_sym_loop] = ACTIONS(1956), - [anon_sym_match] = ACTIONS(1956), - [anon_sym_mod] = ACTIONS(1956), - [anon_sym_pub] = ACTIONS(1956), - [anon_sym_return] = ACTIONS(1956), - [anon_sym_static] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1956), - [anon_sym_trait] = ACTIONS(1956), - [anon_sym_type] = ACTIONS(1956), - [anon_sym_union] = ACTIONS(1956), - [anon_sym_unsafe] = ACTIONS(1956), - [anon_sym_use] = ACTIONS(1956), - [anon_sym_while] = ACTIONS(1956), - [anon_sym_POUND] = ACTIONS(1954), - [anon_sym_BANG] = ACTIONS(1954), - [anon_sym_extern] = ACTIONS(1956), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_AMP] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1954), - [anon_sym_DASH] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_yield] = ACTIONS(1956), - [anon_sym_move] = ACTIONS(1956), - [sym_integer_literal] = ACTIONS(1954), - [aux_sym_string_literal_token1] = ACTIONS(1954), - [sym_char_literal] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1956), - [sym_super] = ACTIONS(1956), - [sym_crate] = ACTIONS(1956), - [sym_metavariable] = ACTIONS(1954), - [sym_raw_string_literal] = ACTIONS(1954), - [sym_float_literal] = ACTIONS(1954), + [ts_builtin_sym_end] = ACTIONS(1976), + [sym_identifier] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_macro_rules_BANG] = ACTIONS(1976), + [anon_sym_LPAREN] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1976), + [anon_sym_RBRACE] = ACTIONS(1976), + [anon_sym_LBRACK] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_u8] = ACTIONS(1978), + [anon_sym_i8] = ACTIONS(1978), + [anon_sym_u16] = ACTIONS(1978), + [anon_sym_i16] = ACTIONS(1978), + [anon_sym_u32] = ACTIONS(1978), + [anon_sym_i32] = ACTIONS(1978), + [anon_sym_u64] = ACTIONS(1978), + [anon_sym_i64] = ACTIONS(1978), + [anon_sym_u128] = ACTIONS(1978), + [anon_sym_i128] = ACTIONS(1978), + [anon_sym_isize] = ACTIONS(1978), + [anon_sym_usize] = ACTIONS(1978), + [anon_sym_f32] = ACTIONS(1978), + [anon_sym_f64] = ACTIONS(1978), + [anon_sym_bool] = ACTIONS(1978), + [anon_sym_str] = ACTIONS(1978), + [anon_sym_char] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_async] = ACTIONS(1978), + [anon_sym_break] = ACTIONS(1978), + [anon_sym_const] = ACTIONS(1978), + [anon_sym_continue] = ACTIONS(1978), + [anon_sym_default] = ACTIONS(1978), + [anon_sym_enum] = ACTIONS(1978), + [anon_sym_fn] = ACTIONS(1978), + [anon_sym_for] = ACTIONS(1978), + [anon_sym_if] = ACTIONS(1978), + [anon_sym_impl] = ACTIONS(1978), + [anon_sym_let] = ACTIONS(1978), + [anon_sym_loop] = ACTIONS(1978), + [anon_sym_match] = ACTIONS(1978), + [anon_sym_mod] = ACTIONS(1978), + [anon_sym_pub] = ACTIONS(1978), + [anon_sym_return] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1978), + [anon_sym_struct] = ACTIONS(1978), + [anon_sym_trait] = ACTIONS(1978), + [anon_sym_type] = ACTIONS(1978), + [anon_sym_union] = ACTIONS(1978), + [anon_sym_unsafe] = ACTIONS(1978), + [anon_sym_use] = ACTIONS(1978), + [anon_sym_while] = ACTIONS(1978), + [anon_sym_POUND] = ACTIONS(1976), + [anon_sym_BANG] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1976), + [anon_sym_COLON_COLON] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym_DOT_DOT] = ACTIONS(1976), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_PIPE] = ACTIONS(1976), + [anon_sym_yield] = ACTIONS(1978), + [anon_sym_move] = ACTIONS(1978), + [sym_integer_literal] = ACTIONS(1976), + [aux_sym_string_literal_token1] = ACTIONS(1976), + [sym_char_literal] = ACTIONS(1976), + [anon_sym_true] = ACTIONS(1978), + [anon_sym_false] = ACTIONS(1978), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1978), + [sym_super] = ACTIONS(1978), + [sym_crate] = ACTIONS(1978), + [sym_metavariable] = ACTIONS(1976), + [sym_raw_string_literal] = ACTIONS(1976), + [sym_float_literal] = ACTIONS(1976), [sym_block_comment] = ACTIONS(3), }, [479] = { - [ts_builtin_sym_end] = ACTIONS(1958), - [sym_identifier] = ACTIONS(1960), - [anon_sym_SEMI] = ACTIONS(1958), - [anon_sym_macro_rules_BANG] = ACTIONS(1958), - [anon_sym_LPAREN] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1958), - [anon_sym_RBRACE] = ACTIONS(1958), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_STAR] = ACTIONS(1958), - [anon_sym_u8] = ACTIONS(1960), - [anon_sym_i8] = ACTIONS(1960), - [anon_sym_u16] = ACTIONS(1960), - [anon_sym_i16] = ACTIONS(1960), - [anon_sym_u32] = ACTIONS(1960), - [anon_sym_i32] = ACTIONS(1960), - [anon_sym_u64] = ACTIONS(1960), - [anon_sym_i64] = ACTIONS(1960), - [anon_sym_u128] = ACTIONS(1960), - [anon_sym_i128] = ACTIONS(1960), - [anon_sym_isize] = ACTIONS(1960), - [anon_sym_usize] = ACTIONS(1960), - [anon_sym_f32] = ACTIONS(1960), - [anon_sym_f64] = ACTIONS(1960), - [anon_sym_bool] = ACTIONS(1960), - [anon_sym_str] = ACTIONS(1960), - [anon_sym_char] = ACTIONS(1960), - [anon_sym_SQUOTE] = ACTIONS(1960), - [anon_sym_async] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1960), - [anon_sym_continue] = ACTIONS(1960), - [anon_sym_default] = ACTIONS(1960), - [anon_sym_enum] = ACTIONS(1960), - [anon_sym_fn] = ACTIONS(1960), - [anon_sym_for] = ACTIONS(1960), - [anon_sym_if] = ACTIONS(1960), - [anon_sym_impl] = ACTIONS(1960), - [anon_sym_let] = ACTIONS(1960), - [anon_sym_loop] = ACTIONS(1960), - [anon_sym_match] = ACTIONS(1960), - [anon_sym_mod] = ACTIONS(1960), - [anon_sym_pub] = ACTIONS(1960), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_static] = ACTIONS(1960), - [anon_sym_struct] = ACTIONS(1960), - [anon_sym_trait] = ACTIONS(1960), - [anon_sym_type] = ACTIONS(1960), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_unsafe] = ACTIONS(1960), - [anon_sym_use] = ACTIONS(1960), - [anon_sym_while] = ACTIONS(1960), - [anon_sym_POUND] = ACTIONS(1958), - [anon_sym_BANG] = ACTIONS(1958), - [anon_sym_extern] = ACTIONS(1960), - [anon_sym_LT] = ACTIONS(1958), - [anon_sym_COLON_COLON] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1958), - [anon_sym_DOT_DOT] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_PIPE] = ACTIONS(1958), - [anon_sym_yield] = ACTIONS(1960), - [anon_sym_move] = ACTIONS(1960), - [sym_integer_literal] = ACTIONS(1958), - [aux_sym_string_literal_token1] = ACTIONS(1958), - [sym_char_literal] = ACTIONS(1958), - [anon_sym_true] = ACTIONS(1960), - [anon_sym_false] = ACTIONS(1960), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1960), - [sym_super] = ACTIONS(1960), - [sym_crate] = ACTIONS(1960), - [sym_metavariable] = ACTIONS(1958), - [sym_raw_string_literal] = ACTIONS(1958), - [sym_float_literal] = ACTIONS(1958), + [ts_builtin_sym_end] = ACTIONS(1980), + [sym_identifier] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1980), + [anon_sym_macro_rules_BANG] = ACTIONS(1980), + [anon_sym_LPAREN] = ACTIONS(1980), + [anon_sym_LBRACE] = ACTIONS(1980), + [anon_sym_RBRACE] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_STAR] = ACTIONS(1980), + [anon_sym_u8] = ACTIONS(1982), + [anon_sym_i8] = ACTIONS(1982), + [anon_sym_u16] = ACTIONS(1982), + [anon_sym_i16] = ACTIONS(1982), + [anon_sym_u32] = ACTIONS(1982), + [anon_sym_i32] = ACTIONS(1982), + [anon_sym_u64] = ACTIONS(1982), + [anon_sym_i64] = ACTIONS(1982), + [anon_sym_u128] = ACTIONS(1982), + [anon_sym_i128] = ACTIONS(1982), + [anon_sym_isize] = ACTIONS(1982), + [anon_sym_usize] = ACTIONS(1982), + [anon_sym_f32] = ACTIONS(1982), + [anon_sym_f64] = ACTIONS(1982), + [anon_sym_bool] = ACTIONS(1982), + [anon_sym_str] = ACTIONS(1982), + [anon_sym_char] = ACTIONS(1982), + [anon_sym_SQUOTE] = ACTIONS(1982), + [anon_sym_async] = ACTIONS(1982), + [anon_sym_break] = ACTIONS(1982), + [anon_sym_const] = ACTIONS(1982), + [anon_sym_continue] = ACTIONS(1982), + [anon_sym_default] = ACTIONS(1982), + [anon_sym_enum] = ACTIONS(1982), + [anon_sym_fn] = ACTIONS(1982), + [anon_sym_for] = ACTIONS(1982), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_impl] = ACTIONS(1982), + [anon_sym_let] = ACTIONS(1982), + [anon_sym_loop] = ACTIONS(1982), + [anon_sym_match] = ACTIONS(1982), + [anon_sym_mod] = ACTIONS(1982), + [anon_sym_pub] = ACTIONS(1982), + [anon_sym_return] = ACTIONS(1982), + [anon_sym_static] = ACTIONS(1982), + [anon_sym_struct] = ACTIONS(1982), + [anon_sym_trait] = ACTIONS(1982), + [anon_sym_type] = ACTIONS(1982), + [anon_sym_union] = ACTIONS(1982), + [anon_sym_unsafe] = ACTIONS(1982), + [anon_sym_use] = ACTIONS(1982), + [anon_sym_while] = ACTIONS(1982), + [anon_sym_POUND] = ACTIONS(1980), + [anon_sym_BANG] = ACTIONS(1980), + [anon_sym_extern] = ACTIONS(1982), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_DOT_DOT] = ACTIONS(1980), + [anon_sym_DASH] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1980), + [anon_sym_yield] = ACTIONS(1982), + [anon_sym_move] = ACTIONS(1982), + [sym_integer_literal] = ACTIONS(1980), + [aux_sym_string_literal_token1] = ACTIONS(1980), + [sym_char_literal] = ACTIONS(1980), + [anon_sym_true] = ACTIONS(1982), + [anon_sym_false] = ACTIONS(1982), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1982), + [sym_super] = ACTIONS(1982), + [sym_crate] = ACTIONS(1982), + [sym_metavariable] = ACTIONS(1980), + [sym_raw_string_literal] = ACTIONS(1980), + [sym_float_literal] = ACTIONS(1980), [sym_block_comment] = ACTIONS(3), }, [480] = { - [ts_builtin_sym_end] = ACTIONS(1962), - [sym_identifier] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_macro_rules_BANG] = ACTIONS(1962), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_LBRACE] = ACTIONS(1962), - [anon_sym_RBRACE] = ACTIONS(1962), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1962), - [anon_sym_u8] = ACTIONS(1964), - [anon_sym_i8] = ACTIONS(1964), - [anon_sym_u16] = ACTIONS(1964), - [anon_sym_i16] = ACTIONS(1964), - [anon_sym_u32] = ACTIONS(1964), - [anon_sym_i32] = ACTIONS(1964), - [anon_sym_u64] = ACTIONS(1964), - [anon_sym_i64] = ACTIONS(1964), - [anon_sym_u128] = ACTIONS(1964), - [anon_sym_i128] = ACTIONS(1964), - [anon_sym_isize] = ACTIONS(1964), - [anon_sym_usize] = ACTIONS(1964), - [anon_sym_f32] = ACTIONS(1964), - [anon_sym_f64] = ACTIONS(1964), - [anon_sym_bool] = ACTIONS(1964), - [anon_sym_str] = ACTIONS(1964), - [anon_sym_char] = ACTIONS(1964), - [anon_sym_SQUOTE] = ACTIONS(1964), - [anon_sym_async] = ACTIONS(1964), - [anon_sym_break] = ACTIONS(1964), - [anon_sym_const] = ACTIONS(1964), - [anon_sym_continue] = ACTIONS(1964), - [anon_sym_default] = ACTIONS(1964), - [anon_sym_enum] = ACTIONS(1964), - [anon_sym_fn] = ACTIONS(1964), - [anon_sym_for] = ACTIONS(1964), - [anon_sym_if] = ACTIONS(1964), - [anon_sym_impl] = ACTIONS(1964), - [anon_sym_let] = ACTIONS(1964), - [anon_sym_loop] = ACTIONS(1964), - [anon_sym_match] = ACTIONS(1964), - [anon_sym_mod] = ACTIONS(1964), - [anon_sym_pub] = ACTIONS(1964), - [anon_sym_return] = ACTIONS(1964), - [anon_sym_static] = ACTIONS(1964), - [anon_sym_struct] = ACTIONS(1964), - [anon_sym_trait] = ACTIONS(1964), - [anon_sym_type] = ACTIONS(1964), - [anon_sym_union] = ACTIONS(1964), - [anon_sym_unsafe] = ACTIONS(1964), - [anon_sym_use] = ACTIONS(1964), - [anon_sym_while] = ACTIONS(1964), - [anon_sym_POUND] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(1962), - [anon_sym_extern] = ACTIONS(1964), - [anon_sym_LT] = ACTIONS(1962), - [anon_sym_COLON_COLON] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1962), - [anon_sym_DOT_DOT] = ACTIONS(1962), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1962), - [anon_sym_yield] = ACTIONS(1964), - [anon_sym_move] = ACTIONS(1964), - [sym_integer_literal] = ACTIONS(1962), - [aux_sym_string_literal_token1] = ACTIONS(1962), - [sym_char_literal] = ACTIONS(1962), - [anon_sym_true] = ACTIONS(1964), - [anon_sym_false] = ACTIONS(1964), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1964), - [sym_super] = ACTIONS(1964), - [sym_crate] = ACTIONS(1964), - [sym_metavariable] = ACTIONS(1962), - [sym_raw_string_literal] = ACTIONS(1962), - [sym_float_literal] = ACTIONS(1962), + [ts_builtin_sym_end] = ACTIONS(1984), + [sym_identifier] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_macro_rules_BANG] = ACTIONS(1984), + [anon_sym_LPAREN] = ACTIONS(1984), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_RBRACE] = ACTIONS(1984), + [anon_sym_LBRACK] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(1984), + [anon_sym_u8] = ACTIONS(1986), + [anon_sym_i8] = ACTIONS(1986), + [anon_sym_u16] = ACTIONS(1986), + [anon_sym_i16] = ACTIONS(1986), + [anon_sym_u32] = ACTIONS(1986), + [anon_sym_i32] = ACTIONS(1986), + [anon_sym_u64] = ACTIONS(1986), + [anon_sym_i64] = ACTIONS(1986), + [anon_sym_u128] = ACTIONS(1986), + [anon_sym_i128] = ACTIONS(1986), + [anon_sym_isize] = ACTIONS(1986), + [anon_sym_usize] = ACTIONS(1986), + [anon_sym_f32] = ACTIONS(1986), + [anon_sym_f64] = ACTIONS(1986), + [anon_sym_bool] = ACTIONS(1986), + [anon_sym_str] = ACTIONS(1986), + [anon_sym_char] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1986), + [anon_sym_async] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1986), + [anon_sym_const] = ACTIONS(1986), + [anon_sym_continue] = ACTIONS(1986), + [anon_sym_default] = ACTIONS(1986), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_fn] = ACTIONS(1986), + [anon_sym_for] = ACTIONS(1986), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_impl] = ACTIONS(1986), + [anon_sym_let] = ACTIONS(1986), + [anon_sym_loop] = ACTIONS(1986), + [anon_sym_match] = ACTIONS(1986), + [anon_sym_mod] = ACTIONS(1986), + [anon_sym_pub] = ACTIONS(1986), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_static] = ACTIONS(1986), + [anon_sym_struct] = ACTIONS(1986), + [anon_sym_trait] = ACTIONS(1986), + [anon_sym_type] = ACTIONS(1986), + [anon_sym_union] = ACTIONS(1986), + [anon_sym_unsafe] = ACTIONS(1986), + [anon_sym_use] = ACTIONS(1986), + [anon_sym_while] = ACTIONS(1986), + [anon_sym_POUND] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_extern] = ACTIONS(1986), + [anon_sym_LT] = ACTIONS(1984), + [anon_sym_COLON_COLON] = ACTIONS(1984), + [anon_sym_AMP] = ACTIONS(1984), + [anon_sym_DOT_DOT] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_PIPE] = ACTIONS(1984), + [anon_sym_yield] = ACTIONS(1986), + [anon_sym_move] = ACTIONS(1986), + [sym_integer_literal] = ACTIONS(1984), + [aux_sym_string_literal_token1] = ACTIONS(1984), + [sym_char_literal] = ACTIONS(1984), + [anon_sym_true] = ACTIONS(1986), + [anon_sym_false] = ACTIONS(1986), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1986), + [sym_super] = ACTIONS(1986), + [sym_crate] = ACTIONS(1986), + [sym_metavariable] = ACTIONS(1984), + [sym_raw_string_literal] = ACTIONS(1984), + [sym_float_literal] = ACTIONS(1984), [sym_block_comment] = ACTIONS(3), }, [481] = { - [ts_builtin_sym_end] = ACTIONS(1966), - [sym_identifier] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_macro_rules_BANG] = ACTIONS(1966), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1966), - [anon_sym_u8] = ACTIONS(1968), - [anon_sym_i8] = ACTIONS(1968), - [anon_sym_u16] = ACTIONS(1968), - [anon_sym_i16] = ACTIONS(1968), - [anon_sym_u32] = ACTIONS(1968), - [anon_sym_i32] = ACTIONS(1968), - [anon_sym_u64] = ACTIONS(1968), - [anon_sym_i64] = ACTIONS(1968), - [anon_sym_u128] = ACTIONS(1968), - [anon_sym_i128] = ACTIONS(1968), - [anon_sym_isize] = ACTIONS(1968), - [anon_sym_usize] = ACTIONS(1968), - [anon_sym_f32] = ACTIONS(1968), - [anon_sym_f64] = ACTIONS(1968), - [anon_sym_bool] = ACTIONS(1968), - [anon_sym_str] = ACTIONS(1968), - [anon_sym_char] = ACTIONS(1968), - [anon_sym_SQUOTE] = ACTIONS(1968), - [anon_sym_async] = ACTIONS(1968), - [anon_sym_break] = ACTIONS(1968), - [anon_sym_const] = ACTIONS(1968), - [anon_sym_continue] = ACTIONS(1968), - [anon_sym_default] = ACTIONS(1968), - [anon_sym_enum] = ACTIONS(1968), - [anon_sym_fn] = ACTIONS(1968), - [anon_sym_for] = ACTIONS(1968), - [anon_sym_if] = ACTIONS(1968), - [anon_sym_impl] = ACTIONS(1968), - [anon_sym_let] = ACTIONS(1968), - [anon_sym_loop] = ACTIONS(1968), - [anon_sym_match] = ACTIONS(1968), - [anon_sym_mod] = ACTIONS(1968), - [anon_sym_pub] = ACTIONS(1968), - [anon_sym_return] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1968), - [anon_sym_struct] = ACTIONS(1968), - [anon_sym_trait] = ACTIONS(1968), - [anon_sym_type] = ACTIONS(1968), - [anon_sym_union] = ACTIONS(1968), - [anon_sym_unsafe] = ACTIONS(1968), - [anon_sym_use] = ACTIONS(1968), - [anon_sym_while] = ACTIONS(1968), - [anon_sym_POUND] = ACTIONS(1966), - [anon_sym_BANG] = ACTIONS(1966), - [anon_sym_extern] = ACTIONS(1968), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_COLON_COLON] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1966), - [anon_sym_DOT_DOT] = ACTIONS(1966), - [anon_sym_DASH] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1966), - [anon_sym_yield] = ACTIONS(1968), - [anon_sym_move] = ACTIONS(1968), - [sym_integer_literal] = ACTIONS(1966), - [aux_sym_string_literal_token1] = ACTIONS(1966), - [sym_char_literal] = ACTIONS(1966), - [anon_sym_true] = ACTIONS(1968), - [anon_sym_false] = ACTIONS(1968), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1968), - [sym_super] = ACTIONS(1968), - [sym_crate] = ACTIONS(1968), - [sym_metavariable] = ACTIONS(1966), - [sym_raw_string_literal] = ACTIONS(1966), - [sym_float_literal] = ACTIONS(1966), - [sym_block_comment] = ACTIONS(3), - }, - [482] = { - [ts_builtin_sym_end] = ACTIONS(1970), - [sym_identifier] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_macro_rules_BANG] = ACTIONS(1970), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_RBRACE] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_u8] = ACTIONS(1972), - [anon_sym_i8] = ACTIONS(1972), - [anon_sym_u16] = ACTIONS(1972), - [anon_sym_i16] = ACTIONS(1972), - [anon_sym_u32] = ACTIONS(1972), - [anon_sym_i32] = ACTIONS(1972), - [anon_sym_u64] = ACTIONS(1972), - [anon_sym_i64] = ACTIONS(1972), - [anon_sym_u128] = ACTIONS(1972), - [anon_sym_i128] = ACTIONS(1972), - [anon_sym_isize] = ACTIONS(1972), - [anon_sym_usize] = ACTIONS(1972), - [anon_sym_f32] = ACTIONS(1972), - [anon_sym_f64] = ACTIONS(1972), - [anon_sym_bool] = ACTIONS(1972), - [anon_sym_str] = ACTIONS(1972), - [anon_sym_char] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_async] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_default] = ACTIONS(1972), - [anon_sym_enum] = ACTIONS(1972), - [anon_sym_fn] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_impl] = ACTIONS(1972), - [anon_sym_let] = ACTIONS(1972), - [anon_sym_loop] = ACTIONS(1972), - [anon_sym_match] = ACTIONS(1972), - [anon_sym_mod] = ACTIONS(1972), - [anon_sym_pub] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_struct] = ACTIONS(1972), - [anon_sym_trait] = ACTIONS(1972), - [anon_sym_type] = ACTIONS(1972), - [anon_sym_union] = ACTIONS(1972), - [anon_sym_unsafe] = ACTIONS(1972), - [anon_sym_use] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1970), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_COLON_COLON] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_DOT_DOT] = ACTIONS(1970), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_yield] = ACTIONS(1972), - [anon_sym_move] = ACTIONS(1972), - [sym_integer_literal] = ACTIONS(1970), - [aux_sym_string_literal_token1] = ACTIONS(1970), - [sym_char_literal] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(1972), - [anon_sym_false] = ACTIONS(1972), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1972), - [sym_super] = ACTIONS(1972), - [sym_crate] = ACTIONS(1972), - [sym_metavariable] = ACTIONS(1970), - [sym_raw_string_literal] = ACTIONS(1970), - [sym_float_literal] = ACTIONS(1970), - [sym_block_comment] = ACTIONS(3), - }, - [483] = { - [ts_builtin_sym_end] = ACTIONS(1974), - [sym_identifier] = ACTIONS(1976), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_macro_rules_BANG] = ACTIONS(1974), - [anon_sym_LPAREN] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_LBRACK] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1974), - [anon_sym_u8] = ACTIONS(1976), - [anon_sym_i8] = ACTIONS(1976), - [anon_sym_u16] = ACTIONS(1976), - [anon_sym_i16] = ACTIONS(1976), - [anon_sym_u32] = ACTIONS(1976), - [anon_sym_i32] = ACTIONS(1976), - [anon_sym_u64] = ACTIONS(1976), - [anon_sym_i64] = ACTIONS(1976), - [anon_sym_u128] = ACTIONS(1976), - [anon_sym_i128] = ACTIONS(1976), - [anon_sym_isize] = ACTIONS(1976), - [anon_sym_usize] = ACTIONS(1976), - [anon_sym_f32] = ACTIONS(1976), - [anon_sym_f64] = ACTIONS(1976), - [anon_sym_bool] = ACTIONS(1976), - [anon_sym_str] = ACTIONS(1976), - [anon_sym_char] = ACTIONS(1976), - [anon_sym_SQUOTE] = ACTIONS(1976), - [anon_sym_async] = ACTIONS(1976), - [anon_sym_break] = ACTIONS(1976), - [anon_sym_const] = ACTIONS(1976), - [anon_sym_continue] = ACTIONS(1976), - [anon_sym_default] = ACTIONS(1976), - [anon_sym_enum] = ACTIONS(1976), - [anon_sym_fn] = ACTIONS(1976), - [anon_sym_for] = ACTIONS(1976), - [anon_sym_if] = ACTIONS(1976), - [anon_sym_impl] = ACTIONS(1976), - [anon_sym_let] = ACTIONS(1976), - [anon_sym_loop] = ACTIONS(1976), - [anon_sym_match] = ACTIONS(1976), - [anon_sym_mod] = ACTIONS(1976), - [anon_sym_pub] = ACTIONS(1976), - [anon_sym_return] = ACTIONS(1976), - [anon_sym_static] = ACTIONS(1976), - [anon_sym_struct] = ACTIONS(1976), - [anon_sym_trait] = ACTIONS(1976), - [anon_sym_type] = ACTIONS(1976), - [anon_sym_union] = ACTIONS(1976), - [anon_sym_unsafe] = ACTIONS(1976), - [anon_sym_use] = ACTIONS(1976), - [anon_sym_while] = ACTIONS(1976), - [anon_sym_POUND] = ACTIONS(1974), - [anon_sym_BANG] = ACTIONS(1974), - [anon_sym_extern] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_COLON_COLON] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1974), - [anon_sym_DOT_DOT] = ACTIONS(1974), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_yield] = ACTIONS(1976), - [anon_sym_move] = ACTIONS(1976), - [sym_integer_literal] = ACTIONS(1974), - [aux_sym_string_literal_token1] = ACTIONS(1974), - [sym_char_literal] = ACTIONS(1974), - [anon_sym_true] = ACTIONS(1976), - [anon_sym_false] = ACTIONS(1976), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1976), - [sym_super] = ACTIONS(1976), - [sym_crate] = ACTIONS(1976), - [sym_metavariable] = ACTIONS(1974), - [sym_raw_string_literal] = ACTIONS(1974), - [sym_float_literal] = ACTIONS(1974), - [sym_block_comment] = ACTIONS(3), - }, - [484] = { - [ts_builtin_sym_end] = ACTIONS(1978), - [sym_identifier] = ACTIONS(1980), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_macro_rules_BANG] = ACTIONS(1978), - [anon_sym_LPAREN] = ACTIONS(1978), - [anon_sym_LBRACE] = ACTIONS(1978), - [anon_sym_RBRACE] = ACTIONS(1978), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_STAR] = ACTIONS(1978), - [anon_sym_u8] = ACTIONS(1980), - [anon_sym_i8] = ACTIONS(1980), - [anon_sym_u16] = ACTIONS(1980), - [anon_sym_i16] = ACTIONS(1980), - [anon_sym_u32] = ACTIONS(1980), - [anon_sym_i32] = ACTIONS(1980), - [anon_sym_u64] = ACTIONS(1980), - [anon_sym_i64] = ACTIONS(1980), - [anon_sym_u128] = ACTIONS(1980), - [anon_sym_i128] = ACTIONS(1980), - [anon_sym_isize] = ACTIONS(1980), - [anon_sym_usize] = ACTIONS(1980), - [anon_sym_f32] = ACTIONS(1980), - [anon_sym_f64] = ACTIONS(1980), - [anon_sym_bool] = ACTIONS(1980), - [anon_sym_str] = ACTIONS(1980), - [anon_sym_char] = ACTIONS(1980), - [anon_sym_SQUOTE] = ACTIONS(1980), - [anon_sym_async] = ACTIONS(1980), - [anon_sym_break] = ACTIONS(1980), - [anon_sym_const] = ACTIONS(1980), - [anon_sym_continue] = ACTIONS(1980), - [anon_sym_default] = ACTIONS(1980), - [anon_sym_enum] = ACTIONS(1980), - [anon_sym_fn] = ACTIONS(1980), - [anon_sym_for] = ACTIONS(1980), - [anon_sym_if] = ACTIONS(1980), - [anon_sym_impl] = ACTIONS(1980), - [anon_sym_let] = ACTIONS(1980), - [anon_sym_loop] = ACTIONS(1980), - [anon_sym_match] = ACTIONS(1980), - [anon_sym_mod] = ACTIONS(1980), - [anon_sym_pub] = ACTIONS(1980), - [anon_sym_return] = ACTIONS(1980), - [anon_sym_static] = ACTIONS(1980), - [anon_sym_struct] = ACTIONS(1980), - [anon_sym_trait] = ACTIONS(1980), - [anon_sym_type] = ACTIONS(1980), - [anon_sym_union] = ACTIONS(1980), - [anon_sym_unsafe] = ACTIONS(1980), - [anon_sym_use] = ACTIONS(1980), - [anon_sym_while] = ACTIONS(1980), - [anon_sym_POUND] = ACTIONS(1978), - [anon_sym_BANG] = ACTIONS(1978), - [anon_sym_extern] = ACTIONS(1980), - [anon_sym_LT] = ACTIONS(1978), - [anon_sym_COLON_COLON] = ACTIONS(1978), - [anon_sym_AMP] = ACTIONS(1978), - [anon_sym_DOT_DOT] = ACTIONS(1978), - [anon_sym_DASH] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_yield] = ACTIONS(1980), - [anon_sym_move] = ACTIONS(1980), - [sym_integer_literal] = ACTIONS(1978), - [aux_sym_string_literal_token1] = ACTIONS(1978), - [sym_char_literal] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1980), - [anon_sym_false] = ACTIONS(1980), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1980), - [sym_super] = ACTIONS(1980), - [sym_crate] = ACTIONS(1980), - [sym_metavariable] = ACTIONS(1978), - [sym_raw_string_literal] = ACTIONS(1978), - [sym_float_literal] = ACTIONS(1978), - [sym_block_comment] = ACTIONS(3), - }, - [485] = { - [ts_builtin_sym_end] = ACTIONS(1982), - [sym_identifier] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_macro_rules_BANG] = ACTIONS(1982), - [anon_sym_LPAREN] = ACTIONS(1982), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(1982), - [anon_sym_LBRACK] = ACTIONS(1982), - [anon_sym_STAR] = ACTIONS(1982), - [anon_sym_u8] = ACTIONS(1984), - [anon_sym_i8] = ACTIONS(1984), - [anon_sym_u16] = ACTIONS(1984), - [anon_sym_i16] = ACTIONS(1984), - [anon_sym_u32] = ACTIONS(1984), - [anon_sym_i32] = ACTIONS(1984), - [anon_sym_u64] = ACTIONS(1984), - [anon_sym_i64] = ACTIONS(1984), - [anon_sym_u128] = ACTIONS(1984), - [anon_sym_i128] = ACTIONS(1984), - [anon_sym_isize] = ACTIONS(1984), - [anon_sym_usize] = ACTIONS(1984), - [anon_sym_f32] = ACTIONS(1984), - [anon_sym_f64] = ACTIONS(1984), - [anon_sym_bool] = ACTIONS(1984), - [anon_sym_str] = ACTIONS(1984), - [anon_sym_char] = ACTIONS(1984), - [anon_sym_SQUOTE] = ACTIONS(1984), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_const] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_default] = ACTIONS(1984), - [anon_sym_enum] = ACTIONS(1984), - [anon_sym_fn] = ACTIONS(1984), - [anon_sym_for] = ACTIONS(1984), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_impl] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_loop] = ACTIONS(1984), - [anon_sym_match] = ACTIONS(1984), - [anon_sym_mod] = ACTIONS(1984), - [anon_sym_pub] = ACTIONS(1984), - [anon_sym_return] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_struct] = ACTIONS(1984), - [anon_sym_trait] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_union] = ACTIONS(1984), - [anon_sym_unsafe] = ACTIONS(1984), - [anon_sym_use] = ACTIONS(1984), - [anon_sym_while] = ACTIONS(1984), - [anon_sym_POUND] = ACTIONS(1982), - [anon_sym_BANG] = ACTIONS(1982), - [anon_sym_extern] = ACTIONS(1984), - [anon_sym_LT] = ACTIONS(1982), - [anon_sym_COLON_COLON] = ACTIONS(1982), - [anon_sym_AMP] = ACTIONS(1982), - [anon_sym_DOT_DOT] = ACTIONS(1982), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_yield] = ACTIONS(1984), - [anon_sym_move] = ACTIONS(1984), - [sym_integer_literal] = ACTIONS(1982), - [aux_sym_string_literal_token1] = ACTIONS(1982), - [sym_char_literal] = ACTIONS(1982), - [anon_sym_true] = ACTIONS(1984), - [anon_sym_false] = ACTIONS(1984), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1984), - [sym_super] = ACTIONS(1984), - [sym_crate] = ACTIONS(1984), - [sym_metavariable] = ACTIONS(1982), - [sym_raw_string_literal] = ACTIONS(1982), - [sym_float_literal] = ACTIONS(1982), - [sym_block_comment] = ACTIONS(3), - }, - [486] = { - [ts_builtin_sym_end] = ACTIONS(1986), + [sym__token_pattern] = STATE(490), + [sym_token_tree_pattern] = STATE(490), + [sym_token_binding_pattern] = STATE(490), + [sym_token_repetition_pattern] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_pattern_repeat1] = STATE(490), [sym_identifier] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_macro_rules_BANG] = ACTIONS(1986), - [anon_sym_LPAREN] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_RBRACE] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1986), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_DOLLAR] = ACTIONS(1998), [anon_sym_u8] = ACTIONS(1988), [anon_sym_i8] = ACTIONS(1988), [anon_sym_u16] = ACTIONS(1988), @@ -61067,8 +60098,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1988), [anon_sym_str] = ACTIONS(1988), [anon_sym_char] = ACTIONS(1988), + [aux_sym__non_special_token_token1] = ACTIONS(1988), [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_as] = ACTIONS(1988), [anon_sym_async] = ACTIONS(1988), + [anon_sym_await] = ACTIONS(1988), [anon_sym_break] = ACTIONS(1988), [anon_sym_const] = ACTIONS(1988), [anon_sym_continue] = ACTIONS(1988), @@ -61091,350 +60125,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1988), [anon_sym_unsafe] = ACTIONS(1988), [anon_sym_use] = ACTIONS(1988), + [anon_sym_where] = ACTIONS(1988), [anon_sym_while] = ACTIONS(1988), - [anon_sym_POUND] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1986), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_LT] = ACTIONS(1986), - [anon_sym_COLON_COLON] = ACTIONS(1986), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_DOT_DOT] = ACTIONS(1986), - [anon_sym_DASH] = ACTIONS(1986), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_yield] = ACTIONS(1988), - [anon_sym_move] = ACTIONS(1988), - [sym_integer_literal] = ACTIONS(1986), - [aux_sym_string_literal_token1] = ACTIONS(1986), - [sym_char_literal] = ACTIONS(1986), - [anon_sym_true] = ACTIONS(1988), - [anon_sym_false] = ACTIONS(1988), - [sym_line_comment] = ACTIONS(3), + [sym_mutable_specifier] = ACTIONS(1988), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(1988), [sym_super] = ACTIONS(1988), [sym_crate] = ACTIONS(1988), - [sym_metavariable] = ACTIONS(1986), - [sym_raw_string_literal] = ACTIONS(1986), - [sym_float_literal] = ACTIONS(1986), - [sym_block_comment] = ACTIONS(3), - }, - [487] = { - [ts_builtin_sym_end] = ACTIONS(1990), - [sym_identifier] = ACTIONS(1992), - [anon_sym_SEMI] = ACTIONS(1990), - [anon_sym_macro_rules_BANG] = ACTIONS(1990), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1990), - [anon_sym_RBRACE] = ACTIONS(1990), - [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_STAR] = ACTIONS(1990), - [anon_sym_u8] = ACTIONS(1992), - [anon_sym_i8] = ACTIONS(1992), - [anon_sym_u16] = ACTIONS(1992), - [anon_sym_i16] = ACTIONS(1992), - [anon_sym_u32] = ACTIONS(1992), - [anon_sym_i32] = ACTIONS(1992), - [anon_sym_u64] = ACTIONS(1992), - [anon_sym_i64] = ACTIONS(1992), - [anon_sym_u128] = ACTIONS(1992), - [anon_sym_i128] = ACTIONS(1992), - [anon_sym_isize] = ACTIONS(1992), - [anon_sym_usize] = ACTIONS(1992), - [anon_sym_f32] = ACTIONS(1992), - [anon_sym_f64] = ACTIONS(1992), - [anon_sym_bool] = ACTIONS(1992), - [anon_sym_str] = ACTIONS(1992), - [anon_sym_char] = ACTIONS(1992), - [anon_sym_SQUOTE] = ACTIONS(1992), - [anon_sym_async] = ACTIONS(1992), - [anon_sym_break] = ACTIONS(1992), - [anon_sym_const] = ACTIONS(1992), - [anon_sym_continue] = ACTIONS(1992), - [anon_sym_default] = ACTIONS(1992), - [anon_sym_enum] = ACTIONS(1992), - [anon_sym_fn] = ACTIONS(1992), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_impl] = ACTIONS(1992), - [anon_sym_let] = ACTIONS(1992), - [anon_sym_loop] = ACTIONS(1992), - [anon_sym_match] = ACTIONS(1992), - [anon_sym_mod] = ACTIONS(1992), - [anon_sym_pub] = ACTIONS(1992), - [anon_sym_return] = ACTIONS(1992), - [anon_sym_static] = ACTIONS(1992), - [anon_sym_struct] = ACTIONS(1992), - [anon_sym_trait] = ACTIONS(1992), - [anon_sym_type] = ACTIONS(1992), - [anon_sym_union] = ACTIONS(1992), - [anon_sym_unsafe] = ACTIONS(1992), - [anon_sym_use] = ACTIONS(1992), - [anon_sym_while] = ACTIONS(1992), - [anon_sym_POUND] = ACTIONS(1990), - [anon_sym_BANG] = ACTIONS(1990), - [anon_sym_extern] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1990), - [anon_sym_COLON_COLON] = ACTIONS(1990), - [anon_sym_AMP] = ACTIONS(1990), - [anon_sym_DOT_DOT] = ACTIONS(1990), - [anon_sym_DASH] = ACTIONS(1990), - [anon_sym_PIPE] = ACTIONS(1990), - [anon_sym_yield] = ACTIONS(1992), - [anon_sym_move] = ACTIONS(1992), - [sym_integer_literal] = ACTIONS(1990), - [aux_sym_string_literal_token1] = ACTIONS(1990), - [sym_char_literal] = ACTIONS(1990), - [anon_sym_true] = ACTIONS(1992), - [anon_sym_false] = ACTIONS(1992), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1992), - [sym_super] = ACTIONS(1992), - [sym_crate] = ACTIONS(1992), - [sym_metavariable] = ACTIONS(1990), - [sym_raw_string_literal] = ACTIONS(1990), - [sym_float_literal] = ACTIONS(1990), - [sym_block_comment] = ACTIONS(3), - }, - [488] = { - [ts_builtin_sym_end] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_macro_rules_BANG] = ACTIONS(1994), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_RBRACE] = ACTIONS(1994), - [anon_sym_LBRACK] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1994), - [anon_sym_u8] = ACTIONS(1996), - [anon_sym_i8] = ACTIONS(1996), - [anon_sym_u16] = ACTIONS(1996), - [anon_sym_i16] = ACTIONS(1996), - [anon_sym_u32] = ACTIONS(1996), - [anon_sym_i32] = ACTIONS(1996), - [anon_sym_u64] = ACTIONS(1996), - [anon_sym_i64] = ACTIONS(1996), - [anon_sym_u128] = ACTIONS(1996), - [anon_sym_i128] = ACTIONS(1996), - [anon_sym_isize] = ACTIONS(1996), - [anon_sym_usize] = ACTIONS(1996), - [anon_sym_f32] = ACTIONS(1996), - [anon_sym_f64] = ACTIONS(1996), - [anon_sym_bool] = ACTIONS(1996), - [anon_sym_str] = ACTIONS(1996), - [anon_sym_char] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_async] = ACTIONS(1996), - [anon_sym_break] = ACTIONS(1996), - [anon_sym_const] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(1996), - [anon_sym_default] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1996), - [anon_sym_fn] = ACTIONS(1996), - [anon_sym_for] = ACTIONS(1996), - [anon_sym_if] = ACTIONS(1996), - [anon_sym_impl] = ACTIONS(1996), - [anon_sym_let] = ACTIONS(1996), - [anon_sym_loop] = ACTIONS(1996), - [anon_sym_match] = ACTIONS(1996), - [anon_sym_mod] = ACTIONS(1996), - [anon_sym_pub] = ACTIONS(1996), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1996), - [anon_sym_struct] = ACTIONS(1996), - [anon_sym_trait] = ACTIONS(1996), - [anon_sym_type] = ACTIONS(1996), - [anon_sym_union] = ACTIONS(1996), - [anon_sym_unsafe] = ACTIONS(1996), - [anon_sym_use] = ACTIONS(1996), - [anon_sym_while] = ACTIONS(1996), - [anon_sym_POUND] = ACTIONS(1994), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1996), - [anon_sym_LT] = ACTIONS(1994), - [anon_sym_COLON_COLON] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_DOT_DOT] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PIPE] = ACTIONS(1994), - [anon_sym_yield] = ACTIONS(1996), - [anon_sym_move] = ACTIONS(1996), - [sym_integer_literal] = ACTIONS(1994), - [aux_sym_string_literal_token1] = ACTIONS(1994), - [sym_char_literal] = ACTIONS(1994), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1996), - [sym_super] = ACTIONS(1996), - [sym_crate] = ACTIONS(1996), - [sym_metavariable] = ACTIONS(1994), - [sym_raw_string_literal] = ACTIONS(1994), - [sym_float_literal] = ACTIONS(1994), - [sym_block_comment] = ACTIONS(3), - }, - [489] = { - [ts_builtin_sym_end] = ACTIONS(1998), - [sym_identifier] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(1998), - [anon_sym_macro_rules_BANG] = ACTIONS(1998), - [anon_sym_LPAREN] = ACTIONS(1998), - [anon_sym_LBRACE] = ACTIONS(1998), - [anon_sym_RBRACE] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_STAR] = ACTIONS(1998), - [anon_sym_u8] = ACTIONS(2000), - [anon_sym_i8] = ACTIONS(2000), - [anon_sym_u16] = ACTIONS(2000), - [anon_sym_i16] = ACTIONS(2000), - [anon_sym_u32] = ACTIONS(2000), - [anon_sym_i32] = ACTIONS(2000), - [anon_sym_u64] = ACTIONS(2000), - [anon_sym_i64] = ACTIONS(2000), - [anon_sym_u128] = ACTIONS(2000), - [anon_sym_i128] = ACTIONS(2000), - [anon_sym_isize] = ACTIONS(2000), - [anon_sym_usize] = ACTIONS(2000), - [anon_sym_f32] = ACTIONS(2000), - [anon_sym_f64] = ACTIONS(2000), - [anon_sym_bool] = ACTIONS(2000), - [anon_sym_str] = ACTIONS(2000), - [anon_sym_char] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_async] = ACTIONS(2000), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_const] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_default] = ACTIONS(2000), - [anon_sym_enum] = ACTIONS(2000), - [anon_sym_fn] = ACTIONS(2000), - [anon_sym_for] = ACTIONS(2000), - [anon_sym_if] = ACTIONS(2000), - [anon_sym_impl] = ACTIONS(2000), - [anon_sym_let] = ACTIONS(2000), - [anon_sym_loop] = ACTIONS(2000), - [anon_sym_match] = ACTIONS(2000), - [anon_sym_mod] = ACTIONS(2000), - [anon_sym_pub] = ACTIONS(2000), - [anon_sym_return] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(2000), - [anon_sym_struct] = ACTIONS(2000), - [anon_sym_trait] = ACTIONS(2000), - [anon_sym_type] = ACTIONS(2000), - [anon_sym_union] = ACTIONS(2000), - [anon_sym_unsafe] = ACTIONS(2000), - [anon_sym_use] = ACTIONS(2000), - [anon_sym_while] = ACTIONS(2000), - [anon_sym_POUND] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1998), - [anon_sym_extern] = ACTIONS(2000), - [anon_sym_LT] = ACTIONS(1998), - [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_AMP] = ACTIONS(1998), - [anon_sym_DOT_DOT] = ACTIONS(1998), - [anon_sym_DASH] = ACTIONS(1998), - [anon_sym_PIPE] = ACTIONS(1998), - [anon_sym_yield] = ACTIONS(2000), - [anon_sym_move] = ACTIONS(2000), - [sym_integer_literal] = ACTIONS(1998), - [aux_sym_string_literal_token1] = ACTIONS(1998), - [sym_char_literal] = ACTIONS(1998), - [anon_sym_true] = ACTIONS(2000), - [anon_sym_false] = ACTIONS(2000), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2000), - [sym_super] = ACTIONS(2000), - [sym_crate] = ACTIONS(2000), - [sym_metavariable] = ACTIONS(1998), - [sym_raw_string_literal] = ACTIONS(1998), - [sym_float_literal] = ACTIONS(1998), + [sym_metavariable] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [490] = { - [ts_builtin_sym_end] = ACTIONS(2002), - [sym_identifier] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2002), - [anon_sym_macro_rules_BANG] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_RBRACE] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_u8] = ACTIONS(2004), - [anon_sym_i8] = ACTIONS(2004), - [anon_sym_u16] = ACTIONS(2004), - [anon_sym_i16] = ACTIONS(2004), - [anon_sym_u32] = ACTIONS(2004), - [anon_sym_i32] = ACTIONS(2004), - [anon_sym_u64] = ACTIONS(2004), - [anon_sym_i64] = ACTIONS(2004), - [anon_sym_u128] = ACTIONS(2004), - [anon_sym_i128] = ACTIONS(2004), - [anon_sym_isize] = ACTIONS(2004), - [anon_sym_usize] = ACTIONS(2004), - [anon_sym_f32] = ACTIONS(2004), - [anon_sym_f64] = ACTIONS(2004), - [anon_sym_bool] = ACTIONS(2004), - [anon_sym_str] = ACTIONS(2004), - [anon_sym_char] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_async] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2004), - [anon_sym_const] = ACTIONS(2004), - [anon_sym_continue] = ACTIONS(2004), - [anon_sym_default] = ACTIONS(2004), - [anon_sym_enum] = ACTIONS(2004), - [anon_sym_fn] = ACTIONS(2004), - [anon_sym_for] = ACTIONS(2004), - [anon_sym_if] = ACTIONS(2004), - [anon_sym_impl] = ACTIONS(2004), - [anon_sym_let] = ACTIONS(2004), - [anon_sym_loop] = ACTIONS(2004), - [anon_sym_match] = ACTIONS(2004), - [anon_sym_mod] = ACTIONS(2004), - [anon_sym_pub] = ACTIONS(2004), - [anon_sym_return] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_struct] = ACTIONS(2004), - [anon_sym_trait] = ACTIONS(2004), - [anon_sym_type] = ACTIONS(2004), - [anon_sym_union] = ACTIONS(2004), - [anon_sym_unsafe] = ACTIONS(2004), - [anon_sym_use] = ACTIONS(2004), - [anon_sym_while] = ACTIONS(2004), - [anon_sym_POUND] = ACTIONS(2002), - [anon_sym_BANG] = ACTIONS(2002), - [anon_sym_extern] = ACTIONS(2004), - [anon_sym_LT] = ACTIONS(2002), - [anon_sym_COLON_COLON] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2002), - [anon_sym_DOT_DOT] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_yield] = ACTIONS(2004), - [anon_sym_move] = ACTIONS(2004), - [sym_integer_literal] = ACTIONS(2002), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2002), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), + [482] = { + [sym_attribute_item] = STATE(545), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_match_arm] = STATE(500), + [sym_last_match_arm] = STATE(2357), + [sym_match_pattern] = STATE(2312), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1916), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_enum_variant_list_repeat1] = STATE(545), + [aux_sym_match_block_repeat1] = STATE(500), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2004), - [sym_super] = ACTIONS(2004), - [sym_crate] = ACTIONS(2004), - [sym_metavariable] = ACTIONS(2002), - [sym_raw_string_literal] = ACTIONS(2002), - [sym_float_literal] = ACTIONS(2002), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [491] = { - [ts_builtin_sym_end] = ACTIONS(2006), + [483] = { + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2006), - [anon_sym_macro_rules_BANG] = ACTIONS(2006), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_RBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_RBRACK] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2022), [anon_sym_u8] = ACTIONS(2008), [anon_sym_i8] = ACTIONS(2008), [anon_sym_u16] = ACTIONS(2008), @@ -61452,8 +60251,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2008), [anon_sym_str] = ACTIONS(2008), [anon_sym_char] = ACTIONS(2008), + [aux_sym__non_special_token_token1] = ACTIONS(2008), [anon_sym_SQUOTE] = ACTIONS(2008), + [anon_sym_as] = ACTIONS(2008), [anon_sym_async] = ACTIONS(2008), + [anon_sym_await] = ACTIONS(2008), [anon_sym_break] = ACTIONS(2008), [anon_sym_const] = ACTIONS(2008), [anon_sym_continue] = ACTIONS(2008), @@ -61476,505 +60278,721 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(2008), [anon_sym_unsafe] = ACTIONS(2008), [anon_sym_use] = ACTIONS(2008), + [anon_sym_where] = ACTIONS(2008), [anon_sym_while] = ACTIONS(2008), - [anon_sym_POUND] = ACTIONS(2006), - [anon_sym_BANG] = ACTIONS(2006), - [anon_sym_extern] = ACTIONS(2008), - [anon_sym_LT] = ACTIONS(2006), - [anon_sym_COLON_COLON] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2006), - [anon_sym_DOT_DOT] = ACTIONS(2006), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_PIPE] = ACTIONS(2006), - [anon_sym_yield] = ACTIONS(2008), - [anon_sym_move] = ACTIONS(2008), - [sym_integer_literal] = ACTIONS(2006), - [aux_sym_string_literal_token1] = ACTIONS(2006), - [sym_char_literal] = ACTIONS(2006), - [anon_sym_true] = ACTIONS(2008), - [anon_sym_false] = ACTIONS(2008), - [sym_line_comment] = ACTIONS(3), + [sym_mutable_specifier] = ACTIONS(2008), + [sym_integer_literal] = ACTIONS(2025), + [aux_sym_string_literal_token1] = ACTIONS(2028), + [sym_char_literal] = ACTIONS(2025), + [anon_sym_true] = ACTIONS(2031), + [anon_sym_false] = ACTIONS(2031), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2008), [sym_super] = ACTIONS(2008), [sym_crate] = ACTIONS(2008), - [sym_metavariable] = ACTIONS(2006), - [sym_raw_string_literal] = ACTIONS(2006), - [sym_float_literal] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2025), + [sym_float_literal] = ACTIONS(2025), [sym_block_comment] = ACTIONS(3), }, - [492] = { - [ts_builtin_sym_end] = ACTIONS(2010), - [sym_identifier] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_macro_rules_BANG] = ACTIONS(2010), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_u8] = ACTIONS(2012), - [anon_sym_i8] = ACTIONS(2012), - [anon_sym_u16] = ACTIONS(2012), - [anon_sym_i16] = ACTIONS(2012), - [anon_sym_u32] = ACTIONS(2012), - [anon_sym_i32] = ACTIONS(2012), - [anon_sym_u64] = ACTIONS(2012), - [anon_sym_i64] = ACTIONS(2012), - [anon_sym_u128] = ACTIONS(2012), - [anon_sym_i128] = ACTIONS(2012), - [anon_sym_isize] = ACTIONS(2012), - [anon_sym_usize] = ACTIONS(2012), - [anon_sym_f32] = ACTIONS(2012), - [anon_sym_f64] = ACTIONS(2012), - [anon_sym_bool] = ACTIONS(2012), - [anon_sym_str] = ACTIONS(2012), - [anon_sym_char] = ACTIONS(2012), - [anon_sym_SQUOTE] = ACTIONS(2012), - [anon_sym_async] = ACTIONS(2012), - [anon_sym_break] = ACTIONS(2012), - [anon_sym_const] = ACTIONS(2012), - [anon_sym_continue] = ACTIONS(2012), - [anon_sym_default] = ACTIONS(2012), - [anon_sym_enum] = ACTIONS(2012), - [anon_sym_fn] = ACTIONS(2012), - [anon_sym_for] = ACTIONS(2012), - [anon_sym_if] = ACTIONS(2012), - [anon_sym_impl] = ACTIONS(2012), - [anon_sym_let] = ACTIONS(2012), - [anon_sym_loop] = ACTIONS(2012), - [anon_sym_match] = ACTIONS(2012), - [anon_sym_mod] = ACTIONS(2012), - [anon_sym_pub] = ACTIONS(2012), - [anon_sym_return] = ACTIONS(2012), - [anon_sym_static] = ACTIONS(2012), - [anon_sym_struct] = ACTIONS(2012), - [anon_sym_trait] = ACTIONS(2012), - [anon_sym_type] = ACTIONS(2012), - [anon_sym_union] = ACTIONS(2012), - [anon_sym_unsafe] = ACTIONS(2012), - [anon_sym_use] = ACTIONS(2012), - [anon_sym_while] = ACTIONS(2012), - [anon_sym_POUND] = ACTIONS(2010), - [anon_sym_BANG] = ACTIONS(2010), - [anon_sym_extern] = ACTIONS(2012), - [anon_sym_LT] = ACTIONS(2010), - [anon_sym_COLON_COLON] = ACTIONS(2010), - [anon_sym_AMP] = ACTIONS(2010), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_PIPE] = ACTIONS(2010), - [anon_sym_yield] = ACTIONS(2012), - [anon_sym_move] = ACTIONS(2012), - [sym_integer_literal] = ACTIONS(2010), - [aux_sym_string_literal_token1] = ACTIONS(2010), - [sym_char_literal] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(2012), - [anon_sym_false] = ACTIONS(2012), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2012), - [sym_super] = ACTIONS(2012), - [sym_crate] = ACTIONS(2012), - [sym_metavariable] = ACTIONS(2010), - [sym_raw_string_literal] = ACTIONS(2010), - [sym_float_literal] = ACTIONS(2010), + [484] = { + [sym_attribute_item] = STATE(545), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_match_arm] = STATE(500), + [sym_last_match_arm] = STATE(2511), + [sym_match_pattern] = STATE(2312), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1916), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_enum_variant_list_repeat1] = STATE(545), + [aux_sym_match_block_repeat1] = STATE(500), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [493] = { - [ts_builtin_sym_end] = ACTIONS(2014), - [sym_identifier] = ACTIONS(2016), - [anon_sym_SEMI] = ACTIONS(2014), - [anon_sym_macro_rules_BANG] = ACTIONS(2014), - [anon_sym_LPAREN] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_RBRACE] = ACTIONS(2014), - [anon_sym_LBRACK] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2014), - [anon_sym_u8] = ACTIONS(2016), - [anon_sym_i8] = ACTIONS(2016), - [anon_sym_u16] = ACTIONS(2016), - [anon_sym_i16] = ACTIONS(2016), - [anon_sym_u32] = ACTIONS(2016), - [anon_sym_i32] = ACTIONS(2016), - [anon_sym_u64] = ACTIONS(2016), - [anon_sym_i64] = ACTIONS(2016), - [anon_sym_u128] = ACTIONS(2016), - [anon_sym_i128] = ACTIONS(2016), - [anon_sym_isize] = ACTIONS(2016), - [anon_sym_usize] = ACTIONS(2016), - [anon_sym_f32] = ACTIONS(2016), - [anon_sym_f64] = ACTIONS(2016), - [anon_sym_bool] = ACTIONS(2016), - [anon_sym_str] = ACTIONS(2016), - [anon_sym_char] = ACTIONS(2016), - [anon_sym_SQUOTE] = ACTIONS(2016), - [anon_sym_async] = ACTIONS(2016), - [anon_sym_break] = ACTIONS(2016), - [anon_sym_const] = ACTIONS(2016), - [anon_sym_continue] = ACTIONS(2016), - [anon_sym_default] = ACTIONS(2016), - [anon_sym_enum] = ACTIONS(2016), - [anon_sym_fn] = ACTIONS(2016), - [anon_sym_for] = ACTIONS(2016), - [anon_sym_if] = ACTIONS(2016), - [anon_sym_impl] = ACTIONS(2016), - [anon_sym_let] = ACTIONS(2016), - [anon_sym_loop] = ACTIONS(2016), - [anon_sym_match] = ACTIONS(2016), - [anon_sym_mod] = ACTIONS(2016), - [anon_sym_pub] = ACTIONS(2016), - [anon_sym_return] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2016), - [anon_sym_struct] = ACTIONS(2016), - [anon_sym_trait] = ACTIONS(2016), - [anon_sym_type] = ACTIONS(2016), - [anon_sym_union] = ACTIONS(2016), - [anon_sym_unsafe] = ACTIONS(2016), - [anon_sym_use] = ACTIONS(2016), - [anon_sym_while] = ACTIONS(2016), - [anon_sym_POUND] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2014), - [anon_sym_extern] = ACTIONS(2016), - [anon_sym_LT] = ACTIONS(2014), - [anon_sym_COLON_COLON] = ACTIONS(2014), - [anon_sym_AMP] = ACTIONS(2014), - [anon_sym_DOT_DOT] = ACTIONS(2014), - [anon_sym_DASH] = ACTIONS(2014), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_yield] = ACTIONS(2016), - [anon_sym_move] = ACTIONS(2016), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2014), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2016), - [anon_sym_false] = ACTIONS(2016), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2016), - [sym_super] = ACTIONS(2016), - [sym_crate] = ACTIONS(2016), - [sym_metavariable] = ACTIONS(2014), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [485] = { + [sym_token_tree] = STATE(485), + [sym_token_repetition] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2034), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_RPAREN] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2042), + [anon_sym_RBRACE] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(2045), + [anon_sym_RBRACK] = ACTIONS(2040), + [anon_sym_DOLLAR] = ACTIONS(2048), + [anon_sym_u8] = ACTIONS(2034), + [anon_sym_i8] = ACTIONS(2034), + [anon_sym_u16] = ACTIONS(2034), + [anon_sym_i16] = ACTIONS(2034), + [anon_sym_u32] = ACTIONS(2034), + [anon_sym_i32] = ACTIONS(2034), + [anon_sym_u64] = ACTIONS(2034), + [anon_sym_i64] = ACTIONS(2034), + [anon_sym_u128] = ACTIONS(2034), + [anon_sym_i128] = ACTIONS(2034), + [anon_sym_isize] = ACTIONS(2034), + [anon_sym_usize] = ACTIONS(2034), + [anon_sym_f32] = ACTIONS(2034), + [anon_sym_f64] = ACTIONS(2034), + [anon_sym_bool] = ACTIONS(2034), + [anon_sym_str] = ACTIONS(2034), + [anon_sym_char] = ACTIONS(2034), + [aux_sym__non_special_token_token1] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_as] = ACTIONS(2034), + [anon_sym_async] = ACTIONS(2034), + [anon_sym_await] = ACTIONS(2034), + [anon_sym_break] = ACTIONS(2034), + [anon_sym_const] = ACTIONS(2034), + [anon_sym_continue] = ACTIONS(2034), + [anon_sym_default] = ACTIONS(2034), + [anon_sym_enum] = ACTIONS(2034), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_for] = ACTIONS(2034), + [anon_sym_if] = ACTIONS(2034), + [anon_sym_impl] = ACTIONS(2034), + [anon_sym_let] = ACTIONS(2034), + [anon_sym_loop] = ACTIONS(2034), + [anon_sym_match] = ACTIONS(2034), + [anon_sym_mod] = ACTIONS(2034), + [anon_sym_pub] = ACTIONS(2034), + [anon_sym_return] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2034), + [anon_sym_struct] = ACTIONS(2034), + [anon_sym_trait] = ACTIONS(2034), + [anon_sym_type] = ACTIONS(2034), + [anon_sym_union] = ACTIONS(2034), + [anon_sym_unsafe] = ACTIONS(2034), + [anon_sym_use] = ACTIONS(2034), + [anon_sym_where] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2034), + [sym_mutable_specifier] = ACTIONS(2034), + [sym_integer_literal] = ACTIONS(2051), + [aux_sym_string_literal_token1] = ACTIONS(2054), + [sym_char_literal] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2034), + [sym_super] = ACTIONS(2034), + [sym_crate] = ACTIONS(2034), + [sym_metavariable] = ACTIONS(2060), + [sym_raw_string_literal] = ACTIONS(2051), + [sym_float_literal] = ACTIONS(2051), [sym_block_comment] = ACTIONS(3), }, - [494] = { - [sym_attribute_item] = STATE(558), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_match_arm] = STATE(513), - [sym_last_match_arm] = STATE(2435), - [sym_match_pattern] = STATE(2369), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2033), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_match_block_repeat1] = STATE(513), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), + [486] = { + [sym_attribute_item] = STATE(545), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_match_arm] = STATE(500), + [sym_last_match_arm] = STATE(2391), + [sym_match_pattern] = STATE(2312), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1916), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_enum_variant_list_repeat1] = STATE(545), + [aux_sym_match_block_repeat1] = STATE(500), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [495] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2018), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2024), - [anon_sym_LBRACE] = ACTIONS(2026), - [anon_sym_RBRACE] = ACTIONS(2024), - [anon_sym_LBRACK] = ACTIONS(2029), - [anon_sym_RBRACK] = ACTIONS(2024), - [anon_sym_DOLLAR] = ACTIONS(2032), - [anon_sym_u8] = ACTIONS(2018), - [anon_sym_i8] = ACTIONS(2018), - [anon_sym_u16] = ACTIONS(2018), - [anon_sym_i16] = ACTIONS(2018), - [anon_sym_u32] = ACTIONS(2018), - [anon_sym_i32] = ACTIONS(2018), - [anon_sym_u64] = ACTIONS(2018), - [anon_sym_i64] = ACTIONS(2018), - [anon_sym_u128] = ACTIONS(2018), - [anon_sym_i128] = ACTIONS(2018), - [anon_sym_isize] = ACTIONS(2018), - [anon_sym_usize] = ACTIONS(2018), - [anon_sym_f32] = ACTIONS(2018), - [anon_sym_f64] = ACTIONS(2018), - [anon_sym_bool] = ACTIONS(2018), - [anon_sym_str] = ACTIONS(2018), - [anon_sym_char] = ACTIONS(2018), - [aux_sym__non_special_token_token1] = ACTIONS(2018), - [anon_sym_SQUOTE] = ACTIONS(2018), - [anon_sym_as] = ACTIONS(2018), - [anon_sym_async] = ACTIONS(2018), - [anon_sym_await] = ACTIONS(2018), - [anon_sym_break] = ACTIONS(2018), - [anon_sym_const] = ACTIONS(2018), - [anon_sym_continue] = ACTIONS(2018), - [anon_sym_default] = ACTIONS(2018), - [anon_sym_enum] = ACTIONS(2018), - [anon_sym_fn] = ACTIONS(2018), - [anon_sym_for] = ACTIONS(2018), - [anon_sym_if] = ACTIONS(2018), - [anon_sym_impl] = ACTIONS(2018), - [anon_sym_let] = ACTIONS(2018), - [anon_sym_loop] = ACTIONS(2018), - [anon_sym_match] = ACTIONS(2018), - [anon_sym_mod] = ACTIONS(2018), - [anon_sym_pub] = ACTIONS(2018), - [anon_sym_return] = ACTIONS(2018), - [anon_sym_static] = ACTIONS(2018), - [anon_sym_struct] = ACTIONS(2018), - [anon_sym_trait] = ACTIONS(2018), - [anon_sym_type] = ACTIONS(2018), - [anon_sym_union] = ACTIONS(2018), - [anon_sym_unsafe] = ACTIONS(2018), - [anon_sym_use] = ACTIONS(2018), - [anon_sym_where] = ACTIONS(2018), - [anon_sym_while] = ACTIONS(2018), - [sym_mutable_specifier] = ACTIONS(2018), - [sym_integer_literal] = ACTIONS(2035), - [aux_sym_string_literal_token1] = ACTIONS(2038), - [sym_char_literal] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2018), - [sym_super] = ACTIONS(2018), - [sym_crate] = ACTIONS(2018), - [sym_raw_string_literal] = ACTIONS(2035), - [sym_float_literal] = ACTIONS(2035), + [487] = { + [sym__token_pattern] = STATE(252), + [sym_token_tree_pattern] = STATE(252), + [sym_token_binding_pattern] = STATE(252), + [sym_token_repetition_pattern] = STATE(252), + [sym__literal] = STATE(252), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_pattern_repeat1] = STATE(252), + [sym_identifier] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_RPAREN] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_DOLLAR] = ACTIONS(1998), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2063), + [anon_sym_as] = ACTIONS(2063), + [anon_sym_async] = ACTIONS(2063), + [anon_sym_await] = 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_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_where] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2063), + [sym_mutable_specifier] = ACTIONS(2063), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2063), + [sym_super] = ACTIONS(2063), + [sym_crate] = ACTIONS(2063), + [sym_metavariable] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [496] = { - [sym_attribute_item] = STATE(558), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_match_arm] = STATE(513), - [sym_last_match_arm] = STATE(2568), - [sym_match_pattern] = STATE(2369), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2033), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_match_block_repeat1] = STATE(513), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [488] = { + [sym__token_pattern] = STATE(489), + [sym_token_tree_pattern] = STATE(489), + [sym_token_binding_pattern] = STATE(489), + [sym_token_repetition_pattern] = STATE(489), + [sym__literal] = STATE(489), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_pattern_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_RBRACK] = ACTIONS(1994), + [anon_sym_DOLLAR] = ACTIONS(1998), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_await] = 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_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_where] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [sym_mutable_specifier] = ACTIONS(2067), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_crate] = ACTIONS(2067), + [sym_metavariable] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [497] = { - [sym_token_tree] = STATE(497), - [sym_token_repetition] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(497), - [sym_identifier] = ACTIONS(2044), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_RPAREN] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_RBRACE] = ACTIONS(2050), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_RBRACK] = ACTIONS(2050), - [anon_sym_DOLLAR] = ACTIONS(2058), - [anon_sym_u8] = ACTIONS(2044), - [anon_sym_i8] = ACTIONS(2044), - [anon_sym_u16] = ACTIONS(2044), - [anon_sym_i16] = ACTIONS(2044), - [anon_sym_u32] = ACTIONS(2044), - [anon_sym_i32] = ACTIONS(2044), - [anon_sym_u64] = ACTIONS(2044), - [anon_sym_i64] = ACTIONS(2044), - [anon_sym_u128] = ACTIONS(2044), - [anon_sym_i128] = ACTIONS(2044), - [anon_sym_isize] = ACTIONS(2044), - [anon_sym_usize] = ACTIONS(2044), - [anon_sym_f32] = ACTIONS(2044), - [anon_sym_f64] = ACTIONS(2044), - [anon_sym_bool] = ACTIONS(2044), - [anon_sym_str] = ACTIONS(2044), - [anon_sym_char] = ACTIONS(2044), - [aux_sym__non_special_token_token1] = ACTIONS(2044), - [anon_sym_SQUOTE] = ACTIONS(2044), - [anon_sym_as] = ACTIONS(2044), - [anon_sym_async] = ACTIONS(2044), - [anon_sym_await] = ACTIONS(2044), - [anon_sym_break] = ACTIONS(2044), - [anon_sym_const] = ACTIONS(2044), - [anon_sym_continue] = ACTIONS(2044), - [anon_sym_default] = ACTIONS(2044), - [anon_sym_enum] = ACTIONS(2044), - [anon_sym_fn] = ACTIONS(2044), - [anon_sym_for] = ACTIONS(2044), - [anon_sym_if] = ACTIONS(2044), - [anon_sym_impl] = ACTIONS(2044), - [anon_sym_let] = ACTIONS(2044), - [anon_sym_loop] = ACTIONS(2044), - [anon_sym_match] = ACTIONS(2044), - [anon_sym_mod] = ACTIONS(2044), - [anon_sym_pub] = ACTIONS(2044), - [anon_sym_return] = ACTIONS(2044), - [anon_sym_static] = ACTIONS(2044), - [anon_sym_struct] = ACTIONS(2044), - [anon_sym_trait] = ACTIONS(2044), - [anon_sym_type] = ACTIONS(2044), - [anon_sym_union] = ACTIONS(2044), - [anon_sym_unsafe] = ACTIONS(2044), - [anon_sym_use] = ACTIONS(2044), - [anon_sym_where] = ACTIONS(2044), - [anon_sym_while] = ACTIONS(2044), - [sym_mutable_specifier] = ACTIONS(2044), - [sym_integer_literal] = ACTIONS(2061), - [aux_sym_string_literal_token1] = ACTIONS(2064), - [sym_char_literal] = ACTIONS(2061), - [anon_sym_true] = ACTIONS(2067), - [anon_sym_false] = ACTIONS(2067), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2044), - [sym_super] = ACTIONS(2044), - [sym_crate] = ACTIONS(2044), - [sym_metavariable] = ACTIONS(2070), - [sym_raw_string_literal] = ACTIONS(2061), - [sym_float_literal] = ACTIONS(2061), + [489] = { + [sym__token_pattern] = STATE(252), + [sym_token_tree_pattern] = STATE(252), + [sym_token_binding_pattern] = STATE(252), + [sym_token_repetition_pattern] = STATE(252), + [sym__literal] = STATE(252), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_pattern_repeat1] = STATE(252), + [sym_identifier] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_RBRACK] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(1998), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2063), + [anon_sym_as] = ACTIONS(2063), + [anon_sym_async] = ACTIONS(2063), + [anon_sym_await] = 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_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_where] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2063), + [sym_mutable_specifier] = ACTIONS(2063), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2063), + [sym_super] = ACTIONS(2063), + [sym_crate] = ACTIONS(2063), + [sym_metavariable] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [498] = { - [sym__token_pattern] = STATE(502), - [sym_token_tree_pattern] = STATE(502), - [sym_token_binding_pattern] = STATE(502), - [sym_token_repetition_pattern] = STATE(502), - [sym__literal] = STATE(502), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(502), + [490] = { + [sym__token_pattern] = STATE(252), + [sym_token_tree_pattern] = STATE(252), + [sym_token_binding_pattern] = STATE(252), + [sym_token_repetition_pattern] = STATE(252), + [sym__literal] = STATE(252), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_pattern_repeat1] = STATE(252), + [sym_identifier] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_DOLLAR] = ACTIONS(1998), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2063), + [anon_sym_as] = ACTIONS(2063), + [anon_sym_async] = ACTIONS(2063), + [anon_sym_await] = 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_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_where] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2063), + [sym_mutable_specifier] = ACTIONS(2063), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2063), + [sym_super] = ACTIONS(2063), + [sym_crate] = ACTIONS(2063), + [sym_metavariable] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, + [491] = { + [sym__token_pattern] = STATE(252), + [sym_token_tree_pattern] = STATE(252), + [sym_token_binding_pattern] = STATE(252), + [sym_token_repetition_pattern] = STATE(252), + [sym__literal] = STATE(252), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_pattern_repeat1] = STATE(252), + [sym_identifier] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_RBRACK] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(1998), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2063), + [anon_sym_as] = ACTIONS(2063), + [anon_sym_async] = ACTIONS(2063), + [anon_sym_await] = 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_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_where] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2063), + [sym_mutable_specifier] = ACTIONS(2063), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2063), + [sym_super] = ACTIONS(2063), + [sym_crate] = ACTIONS(2063), + [sym_metavariable] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, + [492] = { + [sym__token_pattern] = STATE(252), + [sym_token_tree_pattern] = STATE(252), + [sym_token_binding_pattern] = STATE(252), + [sym_token_repetition_pattern] = STATE(252), + [sym__literal] = STATE(252), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_pattern_repeat1] = STATE(252), + [sym_identifier] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_RPAREN] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_DOLLAR] = ACTIONS(1998), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2063), + [anon_sym_as] = ACTIONS(2063), + [anon_sym_async] = ACTIONS(2063), + [anon_sym_await] = 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_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_where] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2063), + [sym_mutable_specifier] = ACTIONS(2063), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2063), + [sym_super] = ACTIONS(2063), + [sym_crate] = ACTIONS(2063), + [sym_metavariable] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, + [493] = { + [sym__token_pattern] = STATE(487), + [sym_token_tree_pattern] = STATE(487), + [sym_token_binding_pattern] = STATE(487), + [sym_token_repetition_pattern] = STATE(487), + [sym__literal] = STATE(487), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_pattern_repeat1] = STATE(487), [sym_identifier] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_RPAREN] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_RPAREN] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_DOLLAR] = ACTIONS(1998), [anon_sym_u8] = ACTIONS(2073), [anon_sym_i8] = ACTIONS(2073), [anon_sym_u16] = ACTIONS(2073), @@ -62022,1246 +61040,1157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2073), [anon_sym_while] = ACTIONS(2073), [sym_mutable_specifier] = ACTIONS(2073), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2073), [sym_super] = ACTIONS(2073), [sym_crate] = ACTIONS(2073), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_metavariable] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, + [494] = { + [sym__token_pattern] = STATE(491), + [sym_token_tree_pattern] = STATE(491), + [sym_token_binding_pattern] = STATE(491), + [sym_token_repetition_pattern] = STATE(491), + [sym__literal] = STATE(491), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_pattern_repeat1] = STATE(491), + [sym_identifier] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_RBRACK] = ACTIONS(2079), + [anon_sym_DOLLAR] = ACTIONS(1998), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2077), + [anon_sym_SQUOTE] = ACTIONS(2077), + [anon_sym_as] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_await] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_default] = ACTIONS(2077), + [anon_sym_enum] = ACTIONS(2077), + [anon_sym_fn] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_impl] = ACTIONS(2077), + [anon_sym_let] = ACTIONS(2077), + [anon_sym_loop] = ACTIONS(2077), + [anon_sym_match] = ACTIONS(2077), + [anon_sym_mod] = ACTIONS(2077), + [anon_sym_pub] = ACTIONS(2077), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_static] = ACTIONS(2077), + [anon_sym_struct] = ACTIONS(2077), + [anon_sym_trait] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_union] = ACTIONS(2077), + [anon_sym_unsafe] = ACTIONS(2077), + [anon_sym_use] = ACTIONS(2077), + [anon_sym_where] = ACTIONS(2077), + [anon_sym_while] = ACTIONS(2077), + [sym_mutable_specifier] = ACTIONS(2077), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2077), + [sym_super] = ACTIONS(2077), + [sym_crate] = ACTIONS(2077), + [sym_metavariable] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, + [495] = { + [sym__token_pattern] = STATE(252), + [sym_token_tree_pattern] = STATE(252), + [sym_token_binding_pattern] = STATE(252), + [sym_token_repetition_pattern] = STATE(252), + [sym__literal] = STATE(252), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_pattern_repeat1] = STATE(252), + [sym_identifier] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_DOLLAR] = ACTIONS(1998), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2063), + [anon_sym_as] = ACTIONS(2063), + [anon_sym_async] = ACTIONS(2063), + [anon_sym_await] = 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_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_where] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2063), + [sym_mutable_specifier] = ACTIONS(2063), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2063), + [sym_super] = ACTIONS(2063), + [sym_crate] = ACTIONS(2063), + [sym_metavariable] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, + [496] = { + [sym__token_pattern] = STATE(495), + [sym_token_tree_pattern] = STATE(495), + [sym_token_binding_pattern] = STATE(495), + [sym_token_repetition_pattern] = STATE(495), + [sym__literal] = STATE(495), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_pattern_repeat1] = STATE(495), + [sym_identifier] = ACTIONS(2081), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_DOLLAR] = ACTIONS(1998), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2081), + [anon_sym_SQUOTE] = ACTIONS(2081), + [anon_sym_as] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_await] = ACTIONS(2081), + [anon_sym_break] = ACTIONS(2081), + [anon_sym_const] = ACTIONS(2081), + [anon_sym_continue] = ACTIONS(2081), + [anon_sym_default] = ACTIONS(2081), + [anon_sym_enum] = ACTIONS(2081), + [anon_sym_fn] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_impl] = ACTIONS(2081), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_loop] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_mod] = ACTIONS(2081), + [anon_sym_pub] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_static] = ACTIONS(2081), + [anon_sym_struct] = ACTIONS(2081), + [anon_sym_trait] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_union] = ACTIONS(2081), + [anon_sym_unsafe] = ACTIONS(2081), + [anon_sym_use] = ACTIONS(2081), + [anon_sym_where] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [sym_mutable_specifier] = ACTIONS(2081), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2081), + [sym_super] = ACTIONS(2081), + [sym_crate] = ACTIONS(2081), + [sym_metavariable] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, + [497] = { + [sym__token_pattern] = STATE(252), + [sym_token_tree_pattern] = STATE(252), + [sym_token_binding_pattern] = STATE(252), + [sym_token_repetition_pattern] = STATE(252), + [sym__literal] = STATE(252), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_pattern_repeat1] = STATE(252), + [sym_identifier] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_DOLLAR] = ACTIONS(1998), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2063), + [anon_sym_as] = ACTIONS(2063), + [anon_sym_async] = ACTIONS(2063), + [anon_sym_await] = 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_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_where] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2063), + [sym_mutable_specifier] = ACTIONS(2063), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2063), + [sym_super] = ACTIONS(2063), + [sym_crate] = ACTIONS(2063), + [sym_metavariable] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, + [498] = { + [sym__token_pattern] = STATE(492), + [sym_token_tree_pattern] = STATE(492), + [sym_token_binding_pattern] = STATE(492), + [sym_token_repetition_pattern] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_pattern_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_RPAREN] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_DOLLAR] = ACTIONS(1998), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2083), + [anon_sym_SQUOTE] = ACTIONS(2083), + [anon_sym_as] = ACTIONS(2083), + [anon_sym_async] = ACTIONS(2083), + [anon_sym_await] = 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_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_where] = ACTIONS(2083), + [anon_sym_while] = ACTIONS(2083), + [sym_mutable_specifier] = ACTIONS(2083), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2083), + [sym_super] = ACTIONS(2083), + [sym_crate] = ACTIONS(2083), + [sym_metavariable] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, [499] = { - [sym__token_pattern] = STATE(506), - [sym_token_tree_pattern] = STATE(506), - [sym_token_binding_pattern] = STATE(506), - [sym_token_repetition_pattern] = STATE(506), - [sym__literal] = STATE(506), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2093), - [anon_sym_i8] = ACTIONS(2093), - [anon_sym_u16] = ACTIONS(2093), - [anon_sym_i16] = ACTIONS(2093), - [anon_sym_u32] = ACTIONS(2093), - [anon_sym_i32] = ACTIONS(2093), - [anon_sym_u64] = ACTIONS(2093), - [anon_sym_i64] = ACTIONS(2093), - [anon_sym_u128] = ACTIONS(2093), - [anon_sym_i128] = ACTIONS(2093), - [anon_sym_isize] = ACTIONS(2093), - [anon_sym_usize] = ACTIONS(2093), - [anon_sym_f32] = ACTIONS(2093), - [anon_sym_f64] = ACTIONS(2093), - [anon_sym_bool] = ACTIONS(2093), - [anon_sym_str] = ACTIONS(2093), - [anon_sym_char] = ACTIONS(2093), - [aux_sym__non_special_token_token1] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_impl] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_loop] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_mod] = ACTIONS(2093), - [anon_sym_pub] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_trait] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_union] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_use] = ACTIONS(2093), - [anon_sym_where] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [sym_mutable_specifier] = ACTIONS(2093), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_crate] = ACTIONS(2093), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym__token_pattern] = STATE(497), + [sym_token_tree_pattern] = STATE(497), + [sym_token_binding_pattern] = STATE(497), + [sym_token_repetition_pattern] = STATE(497), + [sym__literal] = STATE(497), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_pattern_repeat1] = STATE(497), + [sym_identifier] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_RPAREN] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_DOLLAR] = ACTIONS(1998), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2085), + [anon_sym_SQUOTE] = ACTIONS(2085), + [anon_sym_as] = ACTIONS(2085), + [anon_sym_async] = ACTIONS(2085), + [anon_sym_await] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(2085), + [anon_sym_enum] = ACTIONS(2085), + [anon_sym_fn] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2085), + [anon_sym_impl] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_loop] = ACTIONS(2085), + [anon_sym_match] = ACTIONS(2085), + [anon_sym_mod] = ACTIONS(2085), + [anon_sym_pub] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_static] = ACTIONS(2085), + [anon_sym_struct] = ACTIONS(2085), + [anon_sym_trait] = ACTIONS(2085), + [anon_sym_type] = ACTIONS(2085), + [anon_sym_union] = ACTIONS(2085), + [anon_sym_unsafe] = ACTIONS(2085), + [anon_sym_use] = ACTIONS(2085), + [anon_sym_where] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2085), + [sym_mutable_specifier] = ACTIONS(2085), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2085), + [sym_super] = ACTIONS(2085), + [sym_crate] = ACTIONS(2085), + [sym_metavariable] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, [500] = { - [sym__token_pattern] = STATE(507), - [sym_token_tree_pattern] = STATE(507), - [sym_token_binding_pattern] = STATE(507), - [sym_token_repetition_pattern] = STATE(507), - [sym__literal] = STATE(507), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_RBRACK] = ACTIONS(2077), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2095), - [anon_sym_i8] = ACTIONS(2095), - [anon_sym_u16] = ACTIONS(2095), - [anon_sym_i16] = ACTIONS(2095), - [anon_sym_u32] = ACTIONS(2095), - [anon_sym_i32] = ACTIONS(2095), - [anon_sym_u64] = ACTIONS(2095), - [anon_sym_i64] = ACTIONS(2095), - [anon_sym_u128] = ACTIONS(2095), - [anon_sym_i128] = ACTIONS(2095), - [anon_sym_isize] = ACTIONS(2095), - [anon_sym_usize] = ACTIONS(2095), - [anon_sym_f32] = ACTIONS(2095), - [anon_sym_f64] = ACTIONS(2095), - [anon_sym_bool] = ACTIONS(2095), - [anon_sym_str] = ACTIONS(2095), - [anon_sym_char] = ACTIONS(2095), - [aux_sym__non_special_token_token1] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), - [anon_sym_as] = ACTIONS(2095), - [anon_sym_async] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2095), - [anon_sym_break] = ACTIONS(2095), - [anon_sym_const] = ACTIONS(2095), - [anon_sym_continue] = ACTIONS(2095), - [anon_sym_default] = ACTIONS(2095), - [anon_sym_enum] = ACTIONS(2095), - [anon_sym_fn] = ACTIONS(2095), - [anon_sym_for] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_impl] = ACTIONS(2095), - [anon_sym_let] = ACTIONS(2095), - [anon_sym_loop] = ACTIONS(2095), - [anon_sym_match] = ACTIONS(2095), - [anon_sym_mod] = ACTIONS(2095), - [anon_sym_pub] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2095), - [anon_sym_static] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2095), - [anon_sym_trait] = ACTIONS(2095), - [anon_sym_type] = ACTIONS(2095), - [anon_sym_union] = ACTIONS(2095), - [anon_sym_unsafe] = ACTIONS(2095), - [anon_sym_use] = ACTIONS(2095), - [anon_sym_where] = ACTIONS(2095), - [anon_sym_while] = ACTIONS(2095), - [sym_mutable_specifier] = ACTIONS(2095), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2095), - [sym_super] = ACTIONS(2095), - [sym_crate] = ACTIONS(2095), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_attribute_item] = STATE(546), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_match_arm] = STATE(500), + [sym_match_pattern] = STATE(2422), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1916), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_enum_variant_list_repeat1] = STATE(546), + [aux_sym_match_block_repeat1] = STATE(500), + [sym_identifier] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_u8] = ACTIONS(2096), + [anon_sym_i8] = ACTIONS(2096), + [anon_sym_u16] = ACTIONS(2096), + [anon_sym_i16] = ACTIONS(2096), + [anon_sym_u32] = ACTIONS(2096), + [anon_sym_i32] = ACTIONS(2096), + [anon_sym_u64] = ACTIONS(2096), + [anon_sym_i64] = ACTIONS(2096), + [anon_sym_u128] = ACTIONS(2096), + [anon_sym_i128] = ACTIONS(2096), + [anon_sym_isize] = ACTIONS(2096), + [anon_sym_usize] = ACTIONS(2096), + [anon_sym_f32] = ACTIONS(2096), + [anon_sym_f64] = ACTIONS(2096), + [anon_sym_bool] = ACTIONS(2096), + [anon_sym_str] = ACTIONS(2096), + [anon_sym_char] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2099), + [anon_sym_default] = ACTIONS(2102), + [anon_sym_union] = ACTIONS(2102), + [anon_sym_POUND] = ACTIONS(2105), + [anon_sym_ref] = ACTIONS(2108), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym__] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2120), + [sym_mutable_specifier] = ACTIONS(2123), + [anon_sym_DOT_DOT] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2129), + [sym_integer_literal] = ACTIONS(2132), + [aux_sym_string_literal_token1] = ACTIONS(2135), + [sym_char_literal] = ACTIONS(2132), + [anon_sym_true] = ACTIONS(2138), + [anon_sym_false] = ACTIONS(2138), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2141), + [sym_super] = ACTIONS(2141), + [sym_crate] = ACTIONS(2141), + [sym_metavariable] = ACTIONS(2144), + [sym_raw_string_literal] = ACTIONS(2132), + [sym_float_literal] = ACTIONS(2132), [sym_block_comment] = ACTIONS(3), }, [501] = { - [sym_attribute_item] = STATE(558), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_match_arm] = STATE(513), - [sym_last_match_arm] = STATE(2462), - [sym_match_pattern] = STATE(2369), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2033), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_match_block_repeat1] = STATE(513), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_token_tree] = STATE(538), + [sym_token_repetition] = STATE(538), + [sym__literal] = STATE(538), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_repeat1] = STATE(538), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_RPAREN] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_u8] = ACTIONS(2147), + [anon_sym_i8] = ACTIONS(2147), + [anon_sym_u16] = ACTIONS(2147), + [anon_sym_i16] = ACTIONS(2147), + [anon_sym_u32] = ACTIONS(2147), + [anon_sym_i32] = ACTIONS(2147), + [anon_sym_u64] = ACTIONS(2147), + [anon_sym_i64] = ACTIONS(2147), + [anon_sym_u128] = ACTIONS(2147), + [anon_sym_i128] = ACTIONS(2147), + [anon_sym_isize] = ACTIONS(2147), + [anon_sym_usize] = ACTIONS(2147), + [anon_sym_f32] = ACTIONS(2147), + [anon_sym_f64] = ACTIONS(2147), + [anon_sym_bool] = ACTIONS(2147), + [anon_sym_str] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [aux_sym__non_special_token_token1] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_impl] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_mod] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_trait] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_where] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [sym_mutable_specifier] = ACTIONS(2147), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_crate] = ACTIONS(2147), + [sym_metavariable] = ACTIONS(2159), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, [502] = { - [sym__token_pattern] = STATE(264), - [sym_token_tree_pattern] = STATE(264), - [sym_token_binding_pattern] = STATE(264), - [sym_token_repetition_pattern] = STATE(264), - [sym__literal] = STATE(264), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_RPAREN] = ACTIONS(2099), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2097), - [anon_sym_i8] = ACTIONS(2097), - [anon_sym_u16] = ACTIONS(2097), - [anon_sym_i16] = ACTIONS(2097), - [anon_sym_u32] = ACTIONS(2097), - [anon_sym_i32] = ACTIONS(2097), - [anon_sym_u64] = ACTIONS(2097), - [anon_sym_i64] = ACTIONS(2097), - [anon_sym_u128] = ACTIONS(2097), - [anon_sym_i128] = ACTIONS(2097), - [anon_sym_isize] = ACTIONS(2097), - [anon_sym_usize] = ACTIONS(2097), - [anon_sym_f32] = ACTIONS(2097), - [anon_sym_f64] = ACTIONS(2097), - [anon_sym_bool] = ACTIONS(2097), - [anon_sym_str] = ACTIONS(2097), - [anon_sym_char] = ACTIONS(2097), - [aux_sym__non_special_token_token1] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_impl] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_mod] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_where] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [sym_mutable_specifier] = ACTIONS(2097), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_crate] = ACTIONS(2097), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_token_tree] = STATE(485), + [sym_token_repetition] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_RPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2165), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, [503] = { - [sym__token_pattern] = STATE(509), - [sym_token_tree_pattern] = STATE(509), - [sym_token_binding_pattern] = STATE(509), - [sym_token_repetition_pattern] = STATE(509), - [sym__literal] = STATE(509), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(509), - [sym_identifier] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_RPAREN] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2101), - [anon_sym_i8] = ACTIONS(2101), - [anon_sym_u16] = ACTIONS(2101), - [anon_sym_i16] = ACTIONS(2101), - [anon_sym_u32] = ACTIONS(2101), - [anon_sym_i32] = ACTIONS(2101), - [anon_sym_u64] = ACTIONS(2101), - [anon_sym_i64] = ACTIONS(2101), - [anon_sym_u128] = ACTIONS(2101), - [anon_sym_i128] = ACTIONS(2101), - [anon_sym_isize] = ACTIONS(2101), - [anon_sym_usize] = ACTIONS(2101), - [anon_sym_f32] = ACTIONS(2101), - [anon_sym_f64] = ACTIONS(2101), - [anon_sym_bool] = ACTIONS(2101), - [anon_sym_str] = ACTIONS(2101), - [anon_sym_char] = ACTIONS(2101), - [aux_sym__non_special_token_token1] = ACTIONS(2101), - [anon_sym_SQUOTE] = ACTIONS(2101), - [anon_sym_as] = ACTIONS(2101), - [anon_sym_async] = ACTIONS(2101), - [anon_sym_await] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_default] = ACTIONS(2101), - [anon_sym_enum] = ACTIONS(2101), - [anon_sym_fn] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_impl] = ACTIONS(2101), - [anon_sym_let] = ACTIONS(2101), - [anon_sym_loop] = ACTIONS(2101), - [anon_sym_match] = ACTIONS(2101), - [anon_sym_mod] = ACTIONS(2101), - [anon_sym_pub] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_static] = ACTIONS(2101), - [anon_sym_struct] = ACTIONS(2101), - [anon_sym_trait] = ACTIONS(2101), - [anon_sym_type] = ACTIONS(2101), - [anon_sym_union] = ACTIONS(2101), - [anon_sym_unsafe] = ACTIONS(2101), - [anon_sym_use] = ACTIONS(2101), - [anon_sym_where] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [sym_mutable_specifier] = ACTIONS(2101), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2101), - [sym_super] = ACTIONS(2101), - [sym_crate] = ACTIONS(2101), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_token_tree] = STATE(543), + [sym_token_repetition] = STATE(543), + [sym__literal] = STATE(543), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_repeat1] = STATE(543), + [sym_identifier] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_as] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_await] = 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_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_where] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [sym_mutable_specifier] = ACTIONS(2167), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2167), + [sym_super] = ACTIONS(2167), + [sym_crate] = ACTIONS(2167), + [sym_metavariable] = ACTIONS(2171), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, [504] = { - [sym__token_pattern] = STATE(510), - [sym_token_tree_pattern] = STATE(510), - [sym_token_binding_pattern] = STATE(510), - [sym_token_repetition_pattern] = STATE(510), - [sym__literal] = STATE(510), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(510), - [sym_identifier] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2105), - [anon_sym_i8] = ACTIONS(2105), - [anon_sym_u16] = ACTIONS(2105), - [anon_sym_i16] = ACTIONS(2105), - [anon_sym_u32] = ACTIONS(2105), - [anon_sym_i32] = ACTIONS(2105), - [anon_sym_u64] = ACTIONS(2105), - [anon_sym_i64] = ACTIONS(2105), - [anon_sym_u128] = ACTIONS(2105), - [anon_sym_i128] = ACTIONS(2105), - [anon_sym_isize] = ACTIONS(2105), - [anon_sym_usize] = ACTIONS(2105), - [anon_sym_f32] = ACTIONS(2105), - [anon_sym_f64] = ACTIONS(2105), - [anon_sym_bool] = ACTIONS(2105), - [anon_sym_str] = ACTIONS(2105), - [anon_sym_char] = ACTIONS(2105), - [aux_sym__non_special_token_token1] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [anon_sym_fn] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_impl] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_loop] = ACTIONS(2105), - [anon_sym_match] = ACTIONS(2105), - [anon_sym_mod] = ACTIONS(2105), - [anon_sym_pub] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(2105), - [anon_sym_trait] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_union] = ACTIONS(2105), - [anon_sym_unsafe] = ACTIONS(2105), - [anon_sym_use] = ACTIONS(2105), - [anon_sym_where] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [sym_mutable_specifier] = ACTIONS(2105), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_crate] = ACTIONS(2105), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_token_tree] = STATE(485), + [sym_token_repetition] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_RBRACK] = ACTIONS(2163), + [anon_sym_DOLLAR] = ACTIONS(2157), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2165), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, [505] = { - [sym__token_pattern] = STATE(511), - [sym_token_tree_pattern] = STATE(511), - [sym_token_binding_pattern] = STATE(511), - [sym_token_repetition_pattern] = STATE(511), - [sym__literal] = STATE(511), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(511), - [sym_identifier] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_RBRACK] = ACTIONS(2103), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2107), - [anon_sym_i8] = ACTIONS(2107), - [anon_sym_u16] = ACTIONS(2107), - [anon_sym_i16] = ACTIONS(2107), - [anon_sym_u32] = ACTIONS(2107), - [anon_sym_i32] = ACTIONS(2107), - [anon_sym_u64] = ACTIONS(2107), - [anon_sym_i64] = ACTIONS(2107), - [anon_sym_u128] = ACTIONS(2107), - [anon_sym_i128] = ACTIONS(2107), - [anon_sym_isize] = ACTIONS(2107), - [anon_sym_usize] = ACTIONS(2107), - [anon_sym_f32] = ACTIONS(2107), - [anon_sym_f64] = ACTIONS(2107), - [anon_sym_bool] = ACTIONS(2107), - [anon_sym_str] = ACTIONS(2107), - [anon_sym_char] = ACTIONS(2107), - [aux_sym__non_special_token_token1] = ACTIONS(2107), - [anon_sym_SQUOTE] = ACTIONS(2107), - [anon_sym_as] = ACTIONS(2107), - [anon_sym_async] = ACTIONS(2107), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_const] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2107), - [anon_sym_default] = ACTIONS(2107), - [anon_sym_enum] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(2107), - [anon_sym_for] = ACTIONS(2107), - [anon_sym_if] = ACTIONS(2107), - [anon_sym_impl] = ACTIONS(2107), - [anon_sym_let] = ACTIONS(2107), - [anon_sym_loop] = ACTIONS(2107), - [anon_sym_match] = ACTIONS(2107), - [anon_sym_mod] = ACTIONS(2107), - [anon_sym_pub] = ACTIONS(2107), - [anon_sym_return] = ACTIONS(2107), - [anon_sym_static] = ACTIONS(2107), - [anon_sym_struct] = ACTIONS(2107), - [anon_sym_trait] = ACTIONS(2107), - [anon_sym_type] = ACTIONS(2107), - [anon_sym_union] = ACTIONS(2107), - [anon_sym_unsafe] = ACTIONS(2107), - [anon_sym_use] = ACTIONS(2107), - [anon_sym_where] = ACTIONS(2107), - [anon_sym_while] = ACTIONS(2107), - [sym_mutable_specifier] = ACTIONS(2107), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2107), - [sym_super] = ACTIONS(2107), - [sym_crate] = ACTIONS(2107), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_delim_token_tree] = STATE(514), + [sym__delim_tokens] = STATE(514), + [sym__non_delim_token] = STATE(514), + [sym__literal] = STATE(514), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(514), + [sym_identifier] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_RPAREN] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2183), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2173), + [anon_sym_SQUOTE] = ACTIONS(2173), + [anon_sym_as] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_await] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), + [anon_sym_fn] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_impl] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_loop] = ACTIONS(2173), + [anon_sym_match] = ACTIONS(2173), + [anon_sym_mod] = ACTIONS(2173), + [anon_sym_pub] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_struct] = ACTIONS(2173), + [anon_sym_trait] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_union] = ACTIONS(2173), + [anon_sym_unsafe] = ACTIONS(2173), + [anon_sym_use] = ACTIONS(2173), + [anon_sym_where] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [sym_mutable_specifier] = ACTIONS(2173), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_crate] = ACTIONS(2173), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, [506] = { - [sym__token_pattern] = STATE(264), - [sym_token_tree_pattern] = STATE(264), - [sym_token_binding_pattern] = STATE(264), - [sym_token_repetition_pattern] = STATE(264), - [sym__literal] = STATE(264), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2097), - [anon_sym_i8] = ACTIONS(2097), - [anon_sym_u16] = ACTIONS(2097), - [anon_sym_i16] = ACTIONS(2097), - [anon_sym_u32] = ACTIONS(2097), - [anon_sym_i32] = ACTIONS(2097), - [anon_sym_u64] = ACTIONS(2097), - [anon_sym_i64] = ACTIONS(2097), - [anon_sym_u128] = ACTIONS(2097), - [anon_sym_i128] = ACTIONS(2097), - [anon_sym_isize] = ACTIONS(2097), - [anon_sym_usize] = ACTIONS(2097), - [anon_sym_f32] = ACTIONS(2097), - [anon_sym_f64] = ACTIONS(2097), - [anon_sym_bool] = ACTIONS(2097), - [anon_sym_str] = ACTIONS(2097), - [anon_sym_char] = ACTIONS(2097), - [aux_sym__non_special_token_token1] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_impl] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_mod] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_where] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [sym_mutable_specifier] = ACTIONS(2097), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_crate] = ACTIONS(2097), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_delim_token_tree] = STATE(516), + [sym__delim_tokens] = STATE(516), + [sym__non_delim_token] = STATE(516), + [sym__literal] = STATE(516), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2193), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_await] = 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_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_where] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [sym_mutable_specifier] = ACTIONS(2191), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_crate] = ACTIONS(2191), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, [507] = { - [sym__token_pattern] = STATE(264), - [sym_token_tree_pattern] = STATE(264), - [sym_token_binding_pattern] = STATE(264), - [sym_token_repetition_pattern] = STATE(264), - [sym__literal] = STATE(264), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_RBRACK] = ACTIONS(2099), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2097), - [anon_sym_i8] = ACTIONS(2097), - [anon_sym_u16] = ACTIONS(2097), - [anon_sym_i16] = ACTIONS(2097), - [anon_sym_u32] = ACTIONS(2097), - [anon_sym_i32] = ACTIONS(2097), - [anon_sym_u64] = ACTIONS(2097), - [anon_sym_i64] = ACTIONS(2097), - [anon_sym_u128] = ACTIONS(2097), - [anon_sym_i128] = ACTIONS(2097), - [anon_sym_isize] = ACTIONS(2097), - [anon_sym_usize] = ACTIONS(2097), - [anon_sym_f32] = ACTIONS(2097), - [anon_sym_f64] = ACTIONS(2097), - [anon_sym_bool] = ACTIONS(2097), - [anon_sym_str] = ACTIONS(2097), - [anon_sym_char] = ACTIONS(2097), - [aux_sym__non_special_token_token1] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_impl] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_mod] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_where] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [sym_mutable_specifier] = ACTIONS(2097), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_crate] = ACTIONS(2097), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_RBRACK] = ACTIONS(2197), + [anon_sym_DOLLAR] = ACTIONS(2199), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u128] = ACTIONS(2195), + [anon_sym_i128] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_str] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [aux_sym__non_special_token_token1] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_fn] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_impl] = ACTIONS(2195), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_loop] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_mod] = ACTIONS(2195), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_trait] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_unsafe] = ACTIONS(2195), + [anon_sym_use] = ACTIONS(2195), + [anon_sym_where] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [sym_mutable_specifier] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, [508] = { - [sym__token_pattern] = STATE(512), - [sym_token_tree_pattern] = STATE(512), - [sym_token_binding_pattern] = STATE(512), - [sym_token_repetition_pattern] = STATE(512), - [sym__literal] = STATE(512), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(512), - [sym_identifier] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_RPAREN] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2109), - [anon_sym_i8] = ACTIONS(2109), - [anon_sym_u16] = ACTIONS(2109), - [anon_sym_i16] = ACTIONS(2109), - [anon_sym_u32] = ACTIONS(2109), - [anon_sym_i32] = ACTIONS(2109), - [anon_sym_u64] = ACTIONS(2109), - [anon_sym_i64] = ACTIONS(2109), - [anon_sym_u128] = ACTIONS(2109), - [anon_sym_i128] = ACTIONS(2109), - [anon_sym_isize] = ACTIONS(2109), - [anon_sym_usize] = ACTIONS(2109), - [anon_sym_f32] = ACTIONS(2109), - [anon_sym_f64] = ACTIONS(2109), - [anon_sym_bool] = ACTIONS(2109), - [anon_sym_str] = ACTIONS(2109), - [anon_sym_char] = ACTIONS(2109), - [aux_sym__non_special_token_token1] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [anon_sym_fn] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_impl] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_loop] = ACTIONS(2109), - [anon_sym_match] = ACTIONS(2109), - [anon_sym_mod] = ACTIONS(2109), - [anon_sym_pub] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_struct] = ACTIONS(2109), - [anon_sym_trait] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_union] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(2109), - [anon_sym_use] = ACTIONS(2109), - [anon_sym_where] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [sym_mutable_specifier] = ACTIONS(2109), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_crate] = ACTIONS(2109), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2199), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u128] = ACTIONS(2195), + [anon_sym_i128] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_str] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [aux_sym__non_special_token_token1] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_fn] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_impl] = ACTIONS(2195), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_loop] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_mod] = ACTIONS(2195), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_trait] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_unsafe] = ACTIONS(2195), + [anon_sym_use] = ACTIONS(2195), + [anon_sym_where] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [sym_mutable_specifier] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, [509] = { - [sym__token_pattern] = STATE(264), - [sym_token_tree_pattern] = STATE(264), - [sym_token_binding_pattern] = STATE(264), - [sym_token_repetition_pattern] = STATE(264), - [sym__literal] = STATE(264), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_RPAREN] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2097), - [anon_sym_i8] = ACTIONS(2097), - [anon_sym_u16] = ACTIONS(2097), - [anon_sym_i16] = ACTIONS(2097), - [anon_sym_u32] = ACTIONS(2097), - [anon_sym_i32] = ACTIONS(2097), - [anon_sym_u64] = ACTIONS(2097), - [anon_sym_i64] = ACTIONS(2097), - [anon_sym_u128] = ACTIONS(2097), - [anon_sym_i128] = ACTIONS(2097), - [anon_sym_isize] = ACTIONS(2097), - [anon_sym_usize] = ACTIONS(2097), - [anon_sym_f32] = ACTIONS(2097), - [anon_sym_f64] = ACTIONS(2097), - [anon_sym_bool] = ACTIONS(2097), - [anon_sym_str] = ACTIONS(2097), - [anon_sym_char] = ACTIONS(2097), - [aux_sym__non_special_token_token1] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_impl] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_mod] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_where] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [sym_mutable_specifier] = ACTIONS(2097), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_crate] = ACTIONS(2097), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), - [sym_block_comment] = ACTIONS(3), - }, - [510] = { - [sym__token_pattern] = STATE(264), - [sym_token_tree_pattern] = STATE(264), - [sym_token_binding_pattern] = STATE(264), - [sym_token_repetition_pattern] = STATE(264), - [sym__literal] = STATE(264), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2097), - [anon_sym_i8] = ACTIONS(2097), - [anon_sym_u16] = ACTIONS(2097), - [anon_sym_i16] = ACTIONS(2097), - [anon_sym_u32] = ACTIONS(2097), - [anon_sym_i32] = ACTIONS(2097), - [anon_sym_u64] = ACTIONS(2097), - [anon_sym_i64] = ACTIONS(2097), - [anon_sym_u128] = ACTIONS(2097), - [anon_sym_i128] = ACTIONS(2097), - [anon_sym_isize] = ACTIONS(2097), - [anon_sym_usize] = ACTIONS(2097), - [anon_sym_f32] = ACTIONS(2097), - [anon_sym_f64] = ACTIONS(2097), - [anon_sym_bool] = ACTIONS(2097), - [anon_sym_str] = ACTIONS(2097), - [anon_sym_char] = ACTIONS(2097), - [aux_sym__non_special_token_token1] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_impl] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_mod] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_where] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [sym_mutable_specifier] = ACTIONS(2097), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_crate] = ACTIONS(2097), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), - [sym_block_comment] = ACTIONS(3), - }, - [511] = { - [sym__token_pattern] = STATE(264), - [sym_token_tree_pattern] = STATE(264), - [sym_token_binding_pattern] = STATE(264), - [sym_token_repetition_pattern] = STATE(264), - [sym__literal] = STATE(264), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_RBRACK] = ACTIONS(2113), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2097), - [anon_sym_i8] = ACTIONS(2097), - [anon_sym_u16] = ACTIONS(2097), - [anon_sym_i16] = ACTIONS(2097), - [anon_sym_u32] = ACTIONS(2097), - [anon_sym_i32] = ACTIONS(2097), - [anon_sym_u64] = ACTIONS(2097), - [anon_sym_i64] = ACTIONS(2097), - [anon_sym_u128] = ACTIONS(2097), - [anon_sym_i128] = ACTIONS(2097), - [anon_sym_isize] = ACTIONS(2097), - [anon_sym_usize] = ACTIONS(2097), - [anon_sym_f32] = ACTIONS(2097), - [anon_sym_f64] = ACTIONS(2097), - [anon_sym_bool] = ACTIONS(2097), - [anon_sym_str] = ACTIONS(2097), - [anon_sym_char] = ACTIONS(2097), - [aux_sym__non_special_token_token1] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_impl] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_mod] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_where] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [sym_mutable_specifier] = ACTIONS(2097), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_crate] = ACTIONS(2097), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), - [sym_block_comment] = ACTIONS(3), - }, - [512] = { - [sym__token_pattern] = STATE(264), - [sym_token_tree_pattern] = STATE(264), - [sym_token_binding_pattern] = STATE(264), - [sym_token_repetition_pattern] = STATE(264), - [sym__literal] = STATE(264), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_pattern_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_RPAREN] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2097), - [anon_sym_i8] = ACTIONS(2097), - [anon_sym_u16] = ACTIONS(2097), - [anon_sym_i16] = ACTIONS(2097), - [anon_sym_u32] = ACTIONS(2097), - [anon_sym_i32] = ACTIONS(2097), - [anon_sym_u64] = ACTIONS(2097), - [anon_sym_i64] = ACTIONS(2097), - [anon_sym_u128] = ACTIONS(2097), - [anon_sym_i128] = ACTIONS(2097), - [anon_sym_isize] = ACTIONS(2097), - [anon_sym_usize] = ACTIONS(2097), - [anon_sym_f32] = ACTIONS(2097), - [anon_sym_f64] = ACTIONS(2097), - [anon_sym_bool] = ACTIONS(2097), - [anon_sym_str] = ACTIONS(2097), - [anon_sym_char] = ACTIONS(2097), - [aux_sym__non_special_token_token1] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_as] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_await] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_impl] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_mod] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_where] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [sym_mutable_specifier] = ACTIONS(2097), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_crate] = ACTIONS(2097), - [sym_metavariable] = ACTIONS(2091), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), - [sym_block_comment] = ACTIONS(3), - }, - [513] = { - [sym_attribute_item] = STATE(560), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_match_arm] = STATE(513), - [sym_match_pattern] = STATE(2535), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2033), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_enum_variant_list_repeat1] = STATE(560), - [aux_sym_match_block_repeat1] = STATE(513), - [sym_identifier] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2120), - [anon_sym_LBRACK] = ACTIONS(2123), - [anon_sym_u8] = ACTIONS(2126), - [anon_sym_i8] = ACTIONS(2126), - [anon_sym_u16] = ACTIONS(2126), - [anon_sym_i16] = ACTIONS(2126), - [anon_sym_u32] = ACTIONS(2126), - [anon_sym_i32] = ACTIONS(2126), - [anon_sym_u64] = ACTIONS(2126), - [anon_sym_i64] = ACTIONS(2126), - [anon_sym_u128] = ACTIONS(2126), - [anon_sym_i128] = ACTIONS(2126), - [anon_sym_isize] = ACTIONS(2126), - [anon_sym_usize] = ACTIONS(2126), - [anon_sym_f32] = ACTIONS(2126), - [anon_sym_f64] = ACTIONS(2126), - [anon_sym_bool] = ACTIONS(2126), - [anon_sym_str] = ACTIONS(2126), - [anon_sym_char] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_default] = ACTIONS(2132), - [anon_sym_union] = ACTIONS(2132), - [anon_sym_POUND] = ACTIONS(2135), - [anon_sym_ref] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2141), - [anon_sym_COLON_COLON] = ACTIONS(2144), - [anon_sym__] = ACTIONS(2147), - [anon_sym_AMP] = ACTIONS(2150), - [sym_mutable_specifier] = ACTIONS(2153), - [anon_sym_DOT_DOT] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2159), - [sym_integer_literal] = ACTIONS(2162), - [aux_sym_string_literal_token1] = ACTIONS(2165), - [sym_char_literal] = ACTIONS(2162), - [anon_sym_true] = ACTIONS(2168), - [anon_sym_false] = ACTIONS(2168), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2171), - [sym_super] = ACTIONS(2171), - [sym_crate] = ACTIONS(2171), - [sym_metavariable] = ACTIONS(2174), - [sym_raw_string_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), - [sym_block_comment] = ACTIONS(3), - }, - [514] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2185), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [515] = { - [sym_token_tree] = STATE(521), - [sym_token_repetition] = STATE(521), - [sym__literal] = STATE(521), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(521), + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_RBRACK] = ACTIONS(2203), - [anon_sym_DOLLAR] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_RPAREN] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2199), [anon_sym_u8] = ACTIONS(2195), [anon_sym_i8] = ACTIONS(2195), [anon_sym_u16] = ACTIONS(2195), @@ -63309,108 +62238,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2195), [anon_sym_while] = ACTIONS(2195), [sym_mutable_specifier] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2195), [sym_super] = ACTIONS(2195), [sym_crate] = ACTIONS(2195), - [sym_metavariable] = ACTIONS(2207), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, - [516] = { - [sym_token_tree] = STATE(550), - [sym_token_repetition] = STATE(550), - [sym__literal] = STATE(550), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(550), - [sym_identifier] = ACTIONS(2209), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_RPAREN] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2209), - [anon_sym_i8] = ACTIONS(2209), - [anon_sym_u16] = ACTIONS(2209), - [anon_sym_i16] = ACTIONS(2209), - [anon_sym_u32] = ACTIONS(2209), - [anon_sym_i32] = ACTIONS(2209), - [anon_sym_u64] = ACTIONS(2209), - [anon_sym_i64] = ACTIONS(2209), - [anon_sym_u128] = ACTIONS(2209), - [anon_sym_i128] = ACTIONS(2209), - [anon_sym_isize] = ACTIONS(2209), - [anon_sym_usize] = ACTIONS(2209), - [anon_sym_f32] = ACTIONS(2209), - [anon_sym_f64] = ACTIONS(2209), - [anon_sym_bool] = ACTIONS(2209), - [anon_sym_str] = ACTIONS(2209), - [anon_sym_char] = ACTIONS(2209), - [aux_sym__non_special_token_token1] = ACTIONS(2209), - [anon_sym_SQUOTE] = ACTIONS(2209), - [anon_sym_as] = ACTIONS(2209), - [anon_sym_async] = ACTIONS(2209), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_break] = ACTIONS(2209), - [anon_sym_const] = ACTIONS(2209), - [anon_sym_continue] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2209), - [anon_sym_enum] = ACTIONS(2209), - [anon_sym_fn] = ACTIONS(2209), - [anon_sym_for] = ACTIONS(2209), - [anon_sym_if] = ACTIONS(2209), - [anon_sym_impl] = ACTIONS(2209), - [anon_sym_let] = ACTIONS(2209), - [anon_sym_loop] = ACTIONS(2209), - [anon_sym_match] = ACTIONS(2209), - [anon_sym_mod] = ACTIONS(2209), - [anon_sym_pub] = ACTIONS(2209), - [anon_sym_return] = ACTIONS(2209), - [anon_sym_static] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(2209), - [anon_sym_trait] = ACTIONS(2209), - [anon_sym_type] = ACTIONS(2209), - [anon_sym_union] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(2209), - [anon_sym_use] = ACTIONS(2209), - [anon_sym_where] = ACTIONS(2209), - [anon_sym_while] = ACTIONS(2209), - [sym_mutable_specifier] = ACTIONS(2209), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2209), - [sym_super] = ACTIONS(2209), - [sym_crate] = ACTIONS(2209), - [sym_metavariable] = ACTIONS(2213), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [510] = { + [sym_delim_token_tree] = STATE(517), + [sym__delim_tokens] = STATE(517), + [sym__non_delim_token] = STATE(517), + [sym__literal] = STATE(517), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(517), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_RBRACK] = ACTIONS(2177), + [anon_sym_DOLLAR] = ACTIONS(2203), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2201), + [anon_sym_SQUOTE] = ACTIONS(2201), + [anon_sym_as] = ACTIONS(2201), + [anon_sym_async] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_default] = ACTIONS(2201), + [anon_sym_enum] = ACTIONS(2201), + [anon_sym_fn] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_impl] = ACTIONS(2201), + [anon_sym_let] = ACTIONS(2201), + [anon_sym_loop] = ACTIONS(2201), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_mod] = ACTIONS(2201), + [anon_sym_pub] = ACTIONS(2201), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_static] = ACTIONS(2201), + [anon_sym_struct] = ACTIONS(2201), + [anon_sym_trait] = ACTIONS(2201), + [anon_sym_type] = ACTIONS(2201), + [anon_sym_union] = ACTIONS(2201), + [anon_sym_unsafe] = ACTIONS(2201), + [anon_sym_use] = ACTIONS(2201), + [anon_sym_where] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [sym_mutable_specifier] = ACTIONS(2201), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2201), + [sym_super] = ACTIONS(2201), + [sym_crate] = ACTIONS(2201), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, - [517] = { - [sym_delim_token_tree] = STATE(514), - [sym__delim_tokens] = STATE(514), - [sym__non_delim_token] = STATE(514), - [sym__literal] = STATE(514), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(514), + [511] = { + [sym_delim_token_tree] = STATE(507), + [sym__delim_tokens] = STATE(507), + [sym__non_delim_token] = STATE(507), + [sym__literal] = STATE(507), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(507), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_RBRACK] = ACTIONS(2207), + [anon_sym_DOLLAR] = ACTIONS(2209), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_fn] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_impl] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_loop] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_mod] = ACTIONS(2205), + [anon_sym_pub] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_trait] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_union] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_where] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [sym_mutable_specifier] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_crate] = ACTIONS(2205), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), + [sym_block_comment] = ACTIONS(3), + }, + [512] = { + [sym_delim_token_tree] = STATE(508), + [sym__delim_tokens] = STATE(508), + [sym__non_delim_token] = STATE(508), + [sym__literal] = STATE(508), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2213), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2211), + [anon_sym_SQUOTE] = ACTIONS(2211), + [anon_sym_as] = ACTIONS(2211), + [anon_sym_async] = ACTIONS(2211), + [anon_sym_await] = 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_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_where] = ACTIONS(2211), + [anon_sym_while] = ACTIONS(2211), + [sym_mutable_specifier] = ACTIONS(2211), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2211), + [sym_super] = ACTIONS(2211), + [sym_crate] = ACTIONS(2211), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), + [sym_block_comment] = ACTIONS(3), + }, + [513] = { + [sym_delim_token_tree] = STATE(509), + [sym__delim_tokens] = STATE(509), + [sym__non_delim_token] = STATE(509), + [sym__literal] = STATE(509), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(509), [sym_identifier] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2217), - [anon_sym_DOLLAR] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_RPAREN] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2217), [anon_sym_u8] = ACTIONS(2215), [anon_sym_i8] = ACTIONS(2215), [anon_sym_u16] = ACTIONS(2215), @@ -63458,33 +62534,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2215), [anon_sym_while] = ACTIONS(2215), [sym_mutable_specifier] = ACTIONS(2215), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2215), [sym_super] = ACTIONS(2215), [sym_crate] = ACTIONS(2215), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, - [518] = { - [sym_delim_token_tree] = STATE(543), - [sym__delim_tokens] = STATE(543), - [sym__non_delim_token] = STATE(543), - [sym__literal] = STATE(543), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(543), + [514] = { + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_RPAREN] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2199), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u128] = ACTIONS(2195), + [anon_sym_i128] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_str] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [aux_sym__non_special_token_token1] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_fn] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_impl] = ACTIONS(2195), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_loop] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_mod] = ACTIONS(2195), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_trait] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_unsafe] = ACTIONS(2195), + [anon_sym_use] = ACTIONS(2195), + [anon_sym_where] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [sym_mutable_specifier] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), + [sym_block_comment] = ACTIONS(3), + }, + [515] = { + [sym_token_tree] = STATE(504), + [sym_token_repetition] = STATE(504), + [sym__literal] = STATE(504), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_repeat1] = STATE(504), [sym_identifier] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_RBRACK] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(2157), [anon_sym_u8] = ACTIONS(2221), [anon_sym_i8] = ACTIONS(2221), [anon_sym_u16] = ACTIONS(2221), @@ -63532,33 +62681,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2221), [anon_sym_while] = ACTIONS(2221), [sym_mutable_specifier] = ACTIONS(2221), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2221), [sym_super] = ACTIONS(2221), [sym_crate] = ACTIONS(2221), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_metavariable] = ACTIONS(2223), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [519] = { - [sym_delim_token_tree] = STATE(542), - [sym__delim_tokens] = STATE(542), - [sym__non_delim_token] = STATE(542), - [sym__literal] = STATE(542), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(542), + [516] = { + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2199), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u128] = ACTIONS(2195), + [anon_sym_i128] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_str] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [aux_sym__non_special_token_token1] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_fn] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_impl] = ACTIONS(2195), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_loop] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_mod] = ACTIONS(2195), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_trait] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_unsafe] = ACTIONS(2195), + [anon_sym_use] = ACTIONS(2195), + [anon_sym_where] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [sym_mutable_specifier] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), + [sym_block_comment] = ACTIONS(3), + }, + [517] = { + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_RBRACK] = ACTIONS(2219), + [anon_sym_DOLLAR] = ACTIONS(2199), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u128] = ACTIONS(2195), + [anon_sym_i128] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_str] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [aux_sym__non_special_token_token1] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_fn] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_impl] = ACTIONS(2195), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_loop] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_mod] = ACTIONS(2195), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_trait] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_unsafe] = ACTIONS(2195), + [anon_sym_use] = ACTIONS(2195), + [anon_sym_where] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [sym_mutable_specifier] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), + [sym_block_comment] = ACTIONS(3), + }, + [518] = { + [sym_delim_token_tree] = STATE(523), + [sym__delim_tokens] = STATE(523), + [sym__non_delim_token] = STATE(523), + [sym__literal] = STATE(523), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(523), [sym_identifier] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_RPAREN] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2229), [anon_sym_u8] = ACTIONS(2225), [anon_sym_i8] = ACTIONS(2225), [anon_sym_u16] = ACTIONS(2225), @@ -63606,106 +62904,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2225), [anon_sym_while] = ACTIONS(2225), [sym_mutable_specifier] = ACTIONS(2225), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2225), [sym_super] = ACTIONS(2225), [sym_crate] = ACTIONS(2225), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, - [520] = { - [sym_delim_token_tree] = STATE(523), - [sym__delim_tokens] = STATE(523), - [sym__non_delim_token] = STATE(523), - [sym__literal] = STATE(523), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(523), - [sym_identifier] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2231), + [519] = { + [sym_delim_token_tree] = STATE(525), + [sym__delim_tokens] = STATE(525), + [sym__non_delim_token] = STATE(525), + [sym__literal] = STATE(525), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(525), + [sym_identifier] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2181), [anon_sym_DOLLAR] = ACTIONS(2233), - [anon_sym_u8] = ACTIONS(2229), - [anon_sym_i8] = ACTIONS(2229), - [anon_sym_u16] = ACTIONS(2229), - [anon_sym_i16] = ACTIONS(2229), - [anon_sym_u32] = ACTIONS(2229), - [anon_sym_i32] = ACTIONS(2229), - [anon_sym_u64] = ACTIONS(2229), - [anon_sym_i64] = ACTIONS(2229), - [anon_sym_u128] = ACTIONS(2229), - [anon_sym_i128] = ACTIONS(2229), - [anon_sym_isize] = ACTIONS(2229), - [anon_sym_usize] = ACTIONS(2229), - [anon_sym_f32] = ACTIONS(2229), - [anon_sym_f64] = ACTIONS(2229), - [anon_sym_bool] = ACTIONS(2229), - [anon_sym_str] = ACTIONS(2229), - [anon_sym_char] = ACTIONS(2229), - [aux_sym__non_special_token_token1] = ACTIONS(2229), - [anon_sym_SQUOTE] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_await] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_default] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [anon_sym_fn] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_impl] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_loop] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_mod] = ACTIONS(2229), - [anon_sym_pub] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_static] = ACTIONS(2229), - [anon_sym_struct] = ACTIONS(2229), - [anon_sym_trait] = ACTIONS(2229), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_union] = ACTIONS(2229), - [anon_sym_unsafe] = ACTIONS(2229), - [anon_sym_use] = ACTIONS(2229), - [anon_sym_where] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [sym_mutable_specifier] = ACTIONS(2229), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2229), - [sym_super] = ACTIONS(2229), - [sym_crate] = ACTIONS(2229), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2231), + [anon_sym_SQUOTE] = ACTIONS(2231), + [anon_sym_as] = ACTIONS(2231), + [anon_sym_async] = ACTIONS(2231), + [anon_sym_await] = 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_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_where] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [sym_mutable_specifier] = ACTIONS(2231), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2231), + [sym_super] = ACTIONS(2231), + [sym_crate] = ACTIONS(2231), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, - [521] = { - [sym_token_tree] = STATE(497), - [sym_token_repetition] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(497), + [520] = { + [sym_delim_token_tree] = STATE(528), + [sym__delim_tokens] = STATE(528), + [sym__non_delim_token] = STATE(528), + [sym__literal] = STATE(528), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(528), [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_RBRACK] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_RBRACK] = ACTIONS(2227), + [anon_sym_DOLLAR] = ACTIONS(2237), [anon_sym_u8] = ACTIONS(2235), [anon_sym_i8] = ACTIONS(2235), [anon_sym_u16] = ACTIONS(2235), @@ -63753,1217 +63052,995 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2235), [anon_sym_while] = ACTIONS(2235), [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2235), [sym_super] = ACTIONS(2235), [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), + [sym_block_comment] = ACTIONS(3), + }, + [521] = { + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_RBRACK] = ACTIONS(2239), + [anon_sym_DOLLAR] = ACTIONS(2199), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u128] = ACTIONS(2195), + [anon_sym_i128] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_str] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [aux_sym__non_special_token_token1] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_fn] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_impl] = ACTIONS(2195), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_loop] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_mod] = ACTIONS(2195), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_trait] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_unsafe] = ACTIONS(2195), + [anon_sym_use] = ACTIONS(2195), + [anon_sym_where] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [sym_mutable_specifier] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, [522] = { - [sym_token_tree] = STATE(497), - [sym_token_repetition] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(497), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_RPAREN] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_token_tree] = STATE(539), + [sym_token_repetition] = STATE(539), + [sym__literal] = STATE(539), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2241), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_as] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_await] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [anon_sym_fn] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_impl] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_loop] = ACTIONS(2241), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_mod] = ACTIONS(2241), + [anon_sym_pub] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(2241), + [anon_sym_trait] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_union] = ACTIONS(2241), + [anon_sym_unsafe] = ACTIONS(2241), + [anon_sym_use] = ACTIONS(2241), + [anon_sym_where] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [sym_mutable_specifier] = ACTIONS(2241), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2241), + [sym_super] = ACTIONS(2241), + [sym_crate] = ACTIONS(2241), + [sym_metavariable] = ACTIONS(2243), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, [523] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_RPAREN] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2199), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u128] = ACTIONS(2195), + [anon_sym_i128] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_str] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [aux_sym__non_special_token_token1] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_fn] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_impl] = ACTIONS(2195), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_loop] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_mod] = ACTIONS(2195), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_trait] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_unsafe] = ACTIONS(2195), + [anon_sym_use] = ACTIONS(2195), + [anon_sym_where] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [sym_mutable_specifier] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, [524] = { - [sym_token_tree] = STATE(497), - [sym_token_repetition] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(497), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_token_tree] = STATE(540), + [sym_token_repetition] = STATE(540), + [sym__literal] = STATE(540), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_repeat1] = STATE(540), + [sym_identifier] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_RBRACK] = ACTIONS(2151), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_u8] = ACTIONS(2247), + [anon_sym_i8] = ACTIONS(2247), + [anon_sym_u16] = ACTIONS(2247), + [anon_sym_i16] = ACTIONS(2247), + [anon_sym_u32] = ACTIONS(2247), + [anon_sym_i32] = ACTIONS(2247), + [anon_sym_u64] = ACTIONS(2247), + [anon_sym_i64] = ACTIONS(2247), + [anon_sym_u128] = ACTIONS(2247), + [anon_sym_i128] = ACTIONS(2247), + [anon_sym_isize] = ACTIONS(2247), + [anon_sym_usize] = ACTIONS(2247), + [anon_sym_f32] = ACTIONS(2247), + [anon_sym_f64] = ACTIONS(2247), + [anon_sym_bool] = ACTIONS(2247), + [anon_sym_str] = ACTIONS(2247), + [anon_sym_char] = ACTIONS(2247), + [aux_sym__non_special_token_token1] = ACTIONS(2247), + [anon_sym_SQUOTE] = ACTIONS(2247), + [anon_sym_as] = ACTIONS(2247), + [anon_sym_async] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2247), + [anon_sym_break] = ACTIONS(2247), + [anon_sym_const] = ACTIONS(2247), + [anon_sym_continue] = ACTIONS(2247), + [anon_sym_default] = ACTIONS(2247), + [anon_sym_enum] = ACTIONS(2247), + [anon_sym_fn] = ACTIONS(2247), + [anon_sym_for] = ACTIONS(2247), + [anon_sym_if] = ACTIONS(2247), + [anon_sym_impl] = ACTIONS(2247), + [anon_sym_let] = ACTIONS(2247), + [anon_sym_loop] = ACTIONS(2247), + [anon_sym_match] = ACTIONS(2247), + [anon_sym_mod] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2247), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_static] = ACTIONS(2247), + [anon_sym_struct] = ACTIONS(2247), + [anon_sym_trait] = ACTIONS(2247), + [anon_sym_type] = ACTIONS(2247), + [anon_sym_union] = ACTIONS(2247), + [anon_sym_unsafe] = ACTIONS(2247), + [anon_sym_use] = ACTIONS(2247), + [anon_sym_where] = ACTIONS(2247), + [anon_sym_while] = ACTIONS(2247), + [sym_mutable_specifier] = ACTIONS(2247), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2247), + [sym_super] = ACTIONS(2247), + [sym_crate] = ACTIONS(2247), + [sym_metavariable] = ACTIONS(2249), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, [525] = { - [sym_token_tree] = STATE(497), - [sym_token_repetition] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(497), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2199), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u128] = ACTIONS(2195), + [anon_sym_i128] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_str] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [aux_sym__non_special_token_token1] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_fn] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_impl] = ACTIONS(2195), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_loop] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_mod] = ACTIONS(2195), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_trait] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_unsafe] = ACTIONS(2195), + [anon_sym_use] = ACTIONS(2195), + [anon_sym_where] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [sym_mutable_specifier] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, [526] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_token_tree] = STATE(485), + [sym_token_repetition] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_RPAREN] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2165), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, [527] = { - [sym_token_tree] = STATE(497), - [sym_token_repetition] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(497), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_RBRACK] = ACTIONS(2241), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_delim_token_tree] = STATE(529), + [sym__delim_tokens] = STATE(529), + [sym__non_delim_token] = STATE(529), + [sym__literal] = STATE(529), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(529), + [sym_identifier] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_RPAREN] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2257), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2253), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_as] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_await] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_default] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [anon_sym_fn] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_impl] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_loop] = ACTIONS(2253), + [anon_sym_match] = ACTIONS(2253), + [anon_sym_mod] = ACTIONS(2253), + [anon_sym_pub] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_struct] = ACTIONS(2253), + [anon_sym_trait] = ACTIONS(2253), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_union] = ACTIONS(2253), + [anon_sym_unsafe] = ACTIONS(2253), + [anon_sym_use] = ACTIONS(2253), + [anon_sym_where] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [sym_mutable_specifier] = ACTIONS(2253), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2253), + [sym_super] = ACTIONS(2253), + [sym_crate] = ACTIONS(2253), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, [528] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_RBRACK] = ACTIONS(2245), + [anon_sym_DOLLAR] = ACTIONS(2199), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u128] = ACTIONS(2195), + [anon_sym_i128] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_str] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [aux_sym__non_special_token_token1] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_fn] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_impl] = ACTIONS(2195), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_loop] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_mod] = ACTIONS(2195), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_trait] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_unsafe] = ACTIONS(2195), + [anon_sym_use] = ACTIONS(2195), + [anon_sym_where] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [sym_mutable_specifier] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, [529] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_RPAREN] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2199), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u128] = ACTIONS(2195), + [anon_sym_i128] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_str] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [aux_sym__non_special_token_token1] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_fn] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_impl] = ACTIONS(2195), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_loop] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_mod] = ACTIONS(2195), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_trait] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_unsafe] = ACTIONS(2195), + [anon_sym_use] = ACTIONS(2195), + [anon_sym_where] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [sym_mutable_specifier] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, [530] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2247), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2199), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u128] = ACTIONS(2195), + [anon_sym_i128] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_str] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [aux_sym__non_special_token_token1] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_fn] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_impl] = ACTIONS(2195), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_loop] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_mod] = ACTIONS(2195), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_trait] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_unsafe] = ACTIONS(2195), + [anon_sym_use] = ACTIONS(2195), + [anon_sym_where] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [sym_mutable_specifier] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, [531] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_RBRACK] = ACTIONS(2259), + [anon_sym_DOLLAR] = ACTIONS(2199), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u128] = ACTIONS(2195), + [anon_sym_i128] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_str] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [aux_sym__non_special_token_token1] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_fn] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_impl] = ACTIONS(2195), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_loop] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_mod] = ACTIONS(2195), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_trait] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_unsafe] = ACTIONS(2195), + [anon_sym_use] = ACTIONS(2195), + [anon_sym_where] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [sym_mutable_specifier] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, [532] = { - [sym_token_tree] = STATE(533), - [sym_token_repetition] = STATE(533), - [sym__literal] = STATE(533), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(533), - [sym_identifier] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_RPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2249), - [anon_sym_i8] = ACTIONS(2249), - [anon_sym_u16] = ACTIONS(2249), - [anon_sym_i16] = ACTIONS(2249), - [anon_sym_u32] = ACTIONS(2249), - [anon_sym_i32] = ACTIONS(2249), - [anon_sym_u64] = ACTIONS(2249), - [anon_sym_i64] = ACTIONS(2249), - [anon_sym_u128] = ACTIONS(2249), - [anon_sym_i128] = ACTIONS(2249), - [anon_sym_isize] = ACTIONS(2249), - [anon_sym_usize] = ACTIONS(2249), - [anon_sym_f32] = ACTIONS(2249), - [anon_sym_f64] = ACTIONS(2249), - [anon_sym_bool] = ACTIONS(2249), - [anon_sym_str] = ACTIONS(2249), - [anon_sym_char] = ACTIONS(2249), - [aux_sym__non_special_token_token1] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_as] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_await] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_default] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [anon_sym_fn] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_impl] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2249), - [anon_sym_loop] = ACTIONS(2249), - [anon_sym_match] = ACTIONS(2249), - [anon_sym_mod] = ACTIONS(2249), - [anon_sym_pub] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2249), - [anon_sym_struct] = ACTIONS(2249), - [anon_sym_trait] = ACTIONS(2249), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_union] = ACTIONS(2249), - [anon_sym_unsafe] = ACTIONS(2249), - [anon_sym_use] = ACTIONS(2249), - [anon_sym_where] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [sym_mutable_specifier] = ACTIONS(2249), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2249), - [sym_super] = ACTIONS(2249), - [sym_crate] = ACTIONS(2249), - [sym_metavariable] = ACTIONS(2251), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2199), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u128] = ACTIONS(2195), + [anon_sym_i128] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_str] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [aux_sym__non_special_token_token1] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_fn] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_impl] = ACTIONS(2195), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_loop] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_mod] = ACTIONS(2195), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_trait] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_unsafe] = ACTIONS(2195), + [anon_sym_use] = ACTIONS(2195), + [anon_sym_where] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [sym_mutable_specifier] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, [533] = { - [sym_token_tree] = STATE(497), - [sym_token_repetition] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(497), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_RPAREN] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_RPAREN] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2199), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u128] = ACTIONS(2195), + [anon_sym_i128] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_str] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [aux_sym__non_special_token_token1] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_fn] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_impl] = ACTIONS(2195), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_loop] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_mod] = ACTIONS(2195), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_trait] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_unsafe] = ACTIONS(2195), + [anon_sym_use] = ACTIONS(2195), + [anon_sym_where] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [sym_mutable_specifier] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, [534] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2253), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [535] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [536] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [537] = { - [sym_delim_token_tree] = STATE(534), - [sym__delim_tokens] = STATE(534), - [sym__non_delim_token] = STATE(534), - [sym__literal] = STATE(534), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(534), - [sym_identifier] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2257), - [anon_sym_DOLLAR] = ACTIONS(2259), - [anon_sym_u8] = ACTIONS(2255), - [anon_sym_i8] = ACTIONS(2255), - [anon_sym_u16] = ACTIONS(2255), - [anon_sym_i16] = ACTIONS(2255), - [anon_sym_u32] = ACTIONS(2255), - [anon_sym_i32] = ACTIONS(2255), - [anon_sym_u64] = ACTIONS(2255), - [anon_sym_i64] = ACTIONS(2255), - [anon_sym_u128] = ACTIONS(2255), - [anon_sym_i128] = ACTIONS(2255), - [anon_sym_isize] = ACTIONS(2255), - [anon_sym_usize] = ACTIONS(2255), - [anon_sym_f32] = ACTIONS(2255), - [anon_sym_f64] = ACTIONS(2255), - [anon_sym_bool] = ACTIONS(2255), - [anon_sym_str] = ACTIONS(2255), - [anon_sym_char] = ACTIONS(2255), - [aux_sym__non_special_token_token1] = ACTIONS(2255), - [anon_sym_SQUOTE] = ACTIONS(2255), - [anon_sym_as] = ACTIONS(2255), - [anon_sym_async] = ACTIONS(2255), - [anon_sym_await] = ACTIONS(2255), - [anon_sym_break] = ACTIONS(2255), - [anon_sym_const] = ACTIONS(2255), - [anon_sym_continue] = ACTIONS(2255), - [anon_sym_default] = ACTIONS(2255), - [anon_sym_enum] = ACTIONS(2255), - [anon_sym_fn] = ACTIONS(2255), - [anon_sym_for] = ACTIONS(2255), - [anon_sym_if] = ACTIONS(2255), - [anon_sym_impl] = ACTIONS(2255), - [anon_sym_let] = ACTIONS(2255), - [anon_sym_loop] = ACTIONS(2255), - [anon_sym_match] = ACTIONS(2255), - [anon_sym_mod] = ACTIONS(2255), - [anon_sym_pub] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2255), - [anon_sym_static] = ACTIONS(2255), - [anon_sym_struct] = ACTIONS(2255), - [anon_sym_trait] = ACTIONS(2255), - [anon_sym_type] = ACTIONS(2255), - [anon_sym_union] = ACTIONS(2255), - [anon_sym_unsafe] = ACTIONS(2255), - [anon_sym_use] = ACTIONS(2255), - [anon_sym_where] = ACTIONS(2255), - [anon_sym_while] = ACTIONS(2255), - [sym_mutable_specifier] = ACTIONS(2255), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2255), - [sym_super] = ACTIONS(2255), - [sym_crate] = ACTIONS(2255), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), - [sym_block_comment] = ACTIONS(3), - }, - [538] = { - [sym_token_tree] = STATE(525), - [sym_token_repetition] = STATE(525), - [sym__literal] = STATE(525), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(525), + [sym_delim_token_tree] = STATE(530), + [sym__delim_tokens] = STATE(530), + [sym__non_delim_token] = STATE(530), + [sym__literal] = STATE(530), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(530), [sym_identifier] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2263), [anon_sym_u8] = ACTIONS(2261), [anon_sym_i8] = ACTIONS(2261), [anon_sym_u16] = ACTIONS(2261), @@ -65011,34 +64088,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2261), [anon_sym_while] = ACTIONS(2261), [sym_mutable_specifier] = ACTIONS(2261), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2261), [sym_super] = ACTIONS(2261), [sym_crate] = ACTIONS(2261), - [sym_metavariable] = ACTIONS(2263), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, - [539] = { - [sym_delim_token_tree] = STATE(535), - [sym__delim_tokens] = STATE(535), - [sym__non_delim_token] = STATE(535), - [sym__literal] = STATE(535), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(535), + [535] = { + [sym_delim_token_tree] = STATE(521), + [sym__delim_tokens] = STATE(521), + [sym__non_delim_token] = STATE(521), + [sym__literal] = STATE(521), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(521), [sym_identifier] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_RBRACK] = ACTIONS(2267), + [anon_sym_DOLLAR] = ACTIONS(2269), [anon_sym_u8] = ACTIONS(2265), [anon_sym_i8] = ACTIONS(2265), [anon_sym_u16] = ACTIONS(2265), @@ -65086,2216 +64162,2185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2265), [anon_sym_while] = ACTIONS(2265), [sym_mutable_specifier] = ACTIONS(2265), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2265), [sym_super] = ACTIONS(2265), [sym_crate] = ACTIONS(2265), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), + [sym_block_comment] = ACTIONS(3), + }, + [536] = { + [sym_token_tree] = STATE(502), + [sym_token_repetition] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_RPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_u8] = ACTIONS(2271), + [anon_sym_i8] = ACTIONS(2271), + [anon_sym_u16] = ACTIONS(2271), + [anon_sym_i16] = ACTIONS(2271), + [anon_sym_u32] = ACTIONS(2271), + [anon_sym_i32] = ACTIONS(2271), + [anon_sym_u64] = ACTIONS(2271), + [anon_sym_i64] = ACTIONS(2271), + [anon_sym_u128] = ACTIONS(2271), + [anon_sym_i128] = ACTIONS(2271), + [anon_sym_isize] = ACTIONS(2271), + [anon_sym_usize] = ACTIONS(2271), + [anon_sym_f32] = ACTIONS(2271), + [anon_sym_f64] = ACTIONS(2271), + [anon_sym_bool] = ACTIONS(2271), + [anon_sym_str] = ACTIONS(2271), + [anon_sym_char] = ACTIONS(2271), + [aux_sym__non_special_token_token1] = ACTIONS(2271), + [anon_sym_SQUOTE] = ACTIONS(2271), + [anon_sym_as] = ACTIONS(2271), + [anon_sym_async] = ACTIONS(2271), + [anon_sym_await] = ACTIONS(2271), + [anon_sym_break] = ACTIONS(2271), + [anon_sym_const] = ACTIONS(2271), + [anon_sym_continue] = ACTIONS(2271), + [anon_sym_default] = ACTIONS(2271), + [anon_sym_enum] = ACTIONS(2271), + [anon_sym_fn] = ACTIONS(2271), + [anon_sym_for] = ACTIONS(2271), + [anon_sym_if] = ACTIONS(2271), + [anon_sym_impl] = ACTIONS(2271), + [anon_sym_let] = ACTIONS(2271), + [anon_sym_loop] = ACTIONS(2271), + [anon_sym_match] = ACTIONS(2271), + [anon_sym_mod] = ACTIONS(2271), + [anon_sym_pub] = ACTIONS(2271), + [anon_sym_return] = ACTIONS(2271), + [anon_sym_static] = ACTIONS(2271), + [anon_sym_struct] = ACTIONS(2271), + [anon_sym_trait] = ACTIONS(2271), + [anon_sym_type] = ACTIONS(2271), + [anon_sym_union] = ACTIONS(2271), + [anon_sym_unsafe] = ACTIONS(2271), + [anon_sym_use] = ACTIONS(2271), + [anon_sym_where] = ACTIONS(2271), + [anon_sym_while] = ACTIONS(2271), + [sym_mutable_specifier] = ACTIONS(2271), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2271), + [sym_super] = ACTIONS(2271), + [sym_crate] = ACTIONS(2271), + [sym_metavariable] = ACTIONS(2273), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, + [537] = { + [sym_delim_token_tree] = STATE(531), + [sym__delim_tokens] = STATE(531), + [sym__non_delim_token] = STATE(531), + [sym__literal] = STATE(531), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(531), + [sym_identifier] = ACTIONS(2275), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_RBRACK] = ACTIONS(2255), + [anon_sym_DOLLAR] = ACTIONS(2277), + [anon_sym_u8] = ACTIONS(2275), + [anon_sym_i8] = ACTIONS(2275), + [anon_sym_u16] = ACTIONS(2275), + [anon_sym_i16] = ACTIONS(2275), + [anon_sym_u32] = ACTIONS(2275), + [anon_sym_i32] = ACTIONS(2275), + [anon_sym_u64] = ACTIONS(2275), + [anon_sym_i64] = ACTIONS(2275), + [anon_sym_u128] = ACTIONS(2275), + [anon_sym_i128] = ACTIONS(2275), + [anon_sym_isize] = ACTIONS(2275), + [anon_sym_usize] = ACTIONS(2275), + [anon_sym_f32] = ACTIONS(2275), + [anon_sym_f64] = ACTIONS(2275), + [anon_sym_bool] = ACTIONS(2275), + [anon_sym_str] = ACTIONS(2275), + [anon_sym_char] = ACTIONS(2275), + [aux_sym__non_special_token_token1] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2275), + [anon_sym_as] = ACTIONS(2275), + [anon_sym_async] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2275), + [anon_sym_break] = ACTIONS(2275), + [anon_sym_const] = ACTIONS(2275), + [anon_sym_continue] = ACTIONS(2275), + [anon_sym_default] = ACTIONS(2275), + [anon_sym_enum] = ACTIONS(2275), + [anon_sym_fn] = ACTIONS(2275), + [anon_sym_for] = ACTIONS(2275), + [anon_sym_if] = ACTIONS(2275), + [anon_sym_impl] = ACTIONS(2275), + [anon_sym_let] = ACTIONS(2275), + [anon_sym_loop] = ACTIONS(2275), + [anon_sym_match] = ACTIONS(2275), + [anon_sym_mod] = ACTIONS(2275), + [anon_sym_pub] = ACTIONS(2275), + [anon_sym_return] = ACTIONS(2275), + [anon_sym_static] = ACTIONS(2275), + [anon_sym_struct] = ACTIONS(2275), + [anon_sym_trait] = ACTIONS(2275), + [anon_sym_type] = ACTIONS(2275), + [anon_sym_union] = ACTIONS(2275), + [anon_sym_unsafe] = ACTIONS(2275), + [anon_sym_use] = ACTIONS(2275), + [anon_sym_where] = ACTIONS(2275), + [anon_sym_while] = ACTIONS(2275), + [sym_mutable_specifier] = ACTIONS(2275), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2275), + [sym_super] = ACTIONS(2275), + [sym_crate] = ACTIONS(2275), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), + [sym_block_comment] = ACTIONS(3), + }, + [538] = { + [sym_token_tree] = STATE(485), + [sym_token_repetition] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2165), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, + [539] = { + [sym_token_tree] = STATE(485), + [sym_token_repetition] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2165), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, [540] = { - [sym_delim_token_tree] = STATE(536), - [sym__delim_tokens] = STATE(536), - [sym__non_delim_token] = STATE(536), - [sym__literal] = STATE(536), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(536), - [sym_identifier] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2271), - [anon_sym_u8] = ACTIONS(2269), - [anon_sym_i8] = ACTIONS(2269), - [anon_sym_u16] = ACTIONS(2269), - [anon_sym_i16] = ACTIONS(2269), - [anon_sym_u32] = ACTIONS(2269), - [anon_sym_i32] = ACTIONS(2269), - [anon_sym_u64] = ACTIONS(2269), - [anon_sym_i64] = ACTIONS(2269), - [anon_sym_u128] = ACTIONS(2269), - [anon_sym_i128] = ACTIONS(2269), - [anon_sym_isize] = ACTIONS(2269), - [anon_sym_usize] = ACTIONS(2269), - [anon_sym_f32] = ACTIONS(2269), - [anon_sym_f64] = ACTIONS(2269), - [anon_sym_bool] = ACTIONS(2269), - [anon_sym_str] = ACTIONS(2269), - [anon_sym_char] = ACTIONS(2269), - [aux_sym__non_special_token_token1] = ACTIONS(2269), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_as] = ACTIONS(2269), - [anon_sym_async] = ACTIONS(2269), - [anon_sym_await] = ACTIONS(2269), - [anon_sym_break] = ACTIONS(2269), - [anon_sym_const] = ACTIONS(2269), - [anon_sym_continue] = ACTIONS(2269), - [anon_sym_default] = ACTIONS(2269), - [anon_sym_enum] = ACTIONS(2269), - [anon_sym_fn] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_impl] = ACTIONS(2269), - [anon_sym_let] = ACTIONS(2269), - [anon_sym_loop] = ACTIONS(2269), - [anon_sym_match] = ACTIONS(2269), - [anon_sym_mod] = ACTIONS(2269), - [anon_sym_pub] = ACTIONS(2269), - [anon_sym_return] = ACTIONS(2269), - [anon_sym_static] = ACTIONS(2269), - [anon_sym_struct] = ACTIONS(2269), - [anon_sym_trait] = ACTIONS(2269), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_union] = ACTIONS(2269), - [anon_sym_unsafe] = ACTIONS(2269), - [anon_sym_use] = ACTIONS(2269), - [anon_sym_where] = ACTIONS(2269), - [anon_sym_while] = ACTIONS(2269), - [sym_mutable_specifier] = ACTIONS(2269), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2269), - [sym_super] = ACTIONS(2269), - [sym_crate] = ACTIONS(2269), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_token_tree] = STATE(485), + [sym_token_repetition] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_RBRACK] = ACTIONS(2279), + [anon_sym_DOLLAR] = ACTIONS(2157), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2165), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, [541] = { - [sym_delim_token_tree] = STATE(549), - [sym__delim_tokens] = STATE(549), - [sym__non_delim_token] = STATE(549), - [sym__literal] = STATE(549), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(549), - [sym_identifier] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2231), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_u8] = ACTIONS(2273), - [anon_sym_i8] = ACTIONS(2273), - [anon_sym_u16] = ACTIONS(2273), - [anon_sym_i16] = ACTIONS(2273), - [anon_sym_u32] = ACTIONS(2273), - [anon_sym_i32] = ACTIONS(2273), - [anon_sym_u64] = ACTIONS(2273), - [anon_sym_i64] = ACTIONS(2273), - [anon_sym_u128] = ACTIONS(2273), - [anon_sym_i128] = ACTIONS(2273), - [anon_sym_isize] = ACTIONS(2273), - [anon_sym_usize] = ACTIONS(2273), - [anon_sym_f32] = ACTIONS(2273), - [anon_sym_f64] = ACTIONS(2273), - [anon_sym_bool] = ACTIONS(2273), - [anon_sym_str] = ACTIONS(2273), - [anon_sym_char] = ACTIONS(2273), - [aux_sym__non_special_token_token1] = ACTIONS(2273), - [anon_sym_SQUOTE] = ACTIONS(2273), - [anon_sym_as] = ACTIONS(2273), - [anon_sym_async] = ACTIONS(2273), - [anon_sym_await] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_default] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [anon_sym_fn] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_impl] = ACTIONS(2273), - [anon_sym_let] = ACTIONS(2273), - [anon_sym_loop] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_mod] = ACTIONS(2273), - [anon_sym_pub] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_static] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_trait] = ACTIONS(2273), - [anon_sym_type] = ACTIONS(2273), - [anon_sym_union] = ACTIONS(2273), - [anon_sym_unsafe] = ACTIONS(2273), - [anon_sym_use] = ACTIONS(2273), - [anon_sym_where] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [sym_mutable_specifier] = ACTIONS(2273), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2273), - [sym_super] = ACTIONS(2273), - [sym_crate] = ACTIONS(2273), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_token_tree] = STATE(526), + [sym_token_repetition] = STATE(526), + [sym__literal] = STATE(526), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_repeat1] = STATE(526), + [sym_identifier] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_RPAREN] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2281), + [anon_sym_SQUOTE] = ACTIONS(2281), + [anon_sym_as] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_await] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [anon_sym_fn] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_impl] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_loop] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2281), + [anon_sym_mod] = ACTIONS(2281), + [anon_sym_pub] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_struct] = ACTIONS(2281), + [anon_sym_trait] = ACTIONS(2281), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), + [anon_sym_unsafe] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_where] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [sym_mutable_specifier] = ACTIONS(2281), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2281), + [sym_super] = ACTIONS(2281), + [sym_crate] = ACTIONS(2281), + [sym_metavariable] = ACTIONS(2285), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, [542] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_delim_token_tree] = STATE(532), + [sym__delim_tokens] = STATE(532), + [sym__non_delim_token] = STATE(532), + [sym__literal] = STATE(532), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(532), + [sym_identifier] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2289), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2287), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_as] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(2287), + [anon_sym_await] = 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_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_where] = ACTIONS(2287), + [anon_sym_while] = ACTIONS(2287), + [sym_mutable_specifier] = ACTIONS(2287), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2287), + [sym_super] = ACTIONS(2287), + [sym_crate] = ACTIONS(2287), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, [543] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_token_tree] = STATE(485), + [sym_token_repetition] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(582), + [sym_boolean_literal] = STATE(582), + [aux_sym_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2165), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, [544] = { - [sym_delim_token_tree] = STATE(548), - [sym__delim_tokens] = STATE(548), - [sym__non_delim_token] = STATE(548), - [sym__literal] = STATE(548), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(548), - [sym_identifier] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2281), - [anon_sym_u8] = ACTIONS(2277), - [anon_sym_i8] = ACTIONS(2277), - [anon_sym_u16] = ACTIONS(2277), - [anon_sym_i16] = ACTIONS(2277), - [anon_sym_u32] = ACTIONS(2277), - [anon_sym_i32] = ACTIONS(2277), - [anon_sym_u64] = ACTIONS(2277), - [anon_sym_i64] = ACTIONS(2277), - [anon_sym_u128] = ACTIONS(2277), - [anon_sym_i128] = ACTIONS(2277), - [anon_sym_isize] = ACTIONS(2277), - [anon_sym_usize] = ACTIONS(2277), - [anon_sym_f32] = ACTIONS(2277), - [anon_sym_f64] = ACTIONS(2277), - [anon_sym_bool] = ACTIONS(2277), - [anon_sym_str] = ACTIONS(2277), - [anon_sym_char] = ACTIONS(2277), - [aux_sym__non_special_token_token1] = ACTIONS(2277), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_as] = ACTIONS(2277), - [anon_sym_async] = ACTIONS(2277), - [anon_sym_await] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_default] = ACTIONS(2277), - [anon_sym_enum] = ACTIONS(2277), - [anon_sym_fn] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_impl] = ACTIONS(2277), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_loop] = ACTIONS(2277), - [anon_sym_match] = ACTIONS(2277), - [anon_sym_mod] = ACTIONS(2277), - [anon_sym_pub] = ACTIONS(2277), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_static] = ACTIONS(2277), - [anon_sym_struct] = ACTIONS(2277), - [anon_sym_trait] = ACTIONS(2277), - [anon_sym_type] = ACTIONS(2277), - [anon_sym_union] = ACTIONS(2277), - [anon_sym_unsafe] = ACTIONS(2277), - [anon_sym_use] = ACTIONS(2277), - [anon_sym_where] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [sym_mutable_specifier] = ACTIONS(2277), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2277), - [sym_super] = ACTIONS(2277), - [sym_crate] = ACTIONS(2277), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_delim_token_tree] = STATE(533), + [sym__delim_tokens] = STATE(533), + [sym__non_delim_token] = STATE(533), + [sym__literal] = STATE(533), + [sym_string_literal] = STATE(595), + [sym_boolean_literal] = STATE(595), + [aux_sym_delim_token_tree_repeat1] = STATE(533), + [sym_identifier] = ACTIONS(2291), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_RPAREN] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_DOLLAR] = ACTIONS(2293), + [anon_sym_u8] = ACTIONS(2291), + [anon_sym_i8] = ACTIONS(2291), + [anon_sym_u16] = ACTIONS(2291), + [anon_sym_i16] = ACTIONS(2291), + [anon_sym_u32] = ACTIONS(2291), + [anon_sym_i32] = ACTIONS(2291), + [anon_sym_u64] = ACTIONS(2291), + [anon_sym_i64] = ACTIONS(2291), + [anon_sym_u128] = ACTIONS(2291), + [anon_sym_i128] = ACTIONS(2291), + [anon_sym_isize] = ACTIONS(2291), + [anon_sym_usize] = ACTIONS(2291), + [anon_sym_f32] = ACTIONS(2291), + [anon_sym_f64] = ACTIONS(2291), + [anon_sym_bool] = ACTIONS(2291), + [anon_sym_str] = ACTIONS(2291), + [anon_sym_char] = ACTIONS(2291), + [aux_sym__non_special_token_token1] = ACTIONS(2291), + [anon_sym_SQUOTE] = ACTIONS(2291), + [anon_sym_as] = ACTIONS(2291), + [anon_sym_async] = ACTIONS(2291), + [anon_sym_await] = ACTIONS(2291), + [anon_sym_break] = ACTIONS(2291), + [anon_sym_const] = ACTIONS(2291), + [anon_sym_continue] = ACTIONS(2291), + [anon_sym_default] = ACTIONS(2291), + [anon_sym_enum] = ACTIONS(2291), + [anon_sym_fn] = ACTIONS(2291), + [anon_sym_for] = ACTIONS(2291), + [anon_sym_if] = ACTIONS(2291), + [anon_sym_impl] = ACTIONS(2291), + [anon_sym_let] = ACTIONS(2291), + [anon_sym_loop] = ACTIONS(2291), + [anon_sym_match] = ACTIONS(2291), + [anon_sym_mod] = ACTIONS(2291), + [anon_sym_pub] = ACTIONS(2291), + [anon_sym_return] = ACTIONS(2291), + [anon_sym_static] = ACTIONS(2291), + [anon_sym_struct] = ACTIONS(2291), + [anon_sym_trait] = ACTIONS(2291), + [anon_sym_type] = ACTIONS(2291), + [anon_sym_union] = ACTIONS(2291), + [anon_sym_unsafe] = ACTIONS(2291), + [anon_sym_use] = ACTIONS(2291), + [anon_sym_where] = ACTIONS(2291), + [anon_sym_while] = ACTIONS(2291), + [sym_mutable_specifier] = ACTIONS(2291), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2291), + [sym_super] = ACTIONS(2291), + [sym_crate] = ACTIONS(2291), + [sym_raw_string_literal] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), [sym_block_comment] = ACTIONS(3), }, [545] = { - [sym_token_tree] = STATE(527), - [sym_token_repetition] = STATE(527), - [sym__literal] = STATE(527), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(527), - [sym_identifier] = ACTIONS(2283), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_RBRACK] = ACTIONS(2285), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2283), - [anon_sym_i8] = ACTIONS(2283), - [anon_sym_u16] = ACTIONS(2283), - [anon_sym_i16] = ACTIONS(2283), - [anon_sym_u32] = ACTIONS(2283), - [anon_sym_i32] = ACTIONS(2283), - [anon_sym_u64] = ACTIONS(2283), - [anon_sym_i64] = ACTIONS(2283), - [anon_sym_u128] = ACTIONS(2283), - [anon_sym_i128] = ACTIONS(2283), - [anon_sym_isize] = ACTIONS(2283), - [anon_sym_usize] = ACTIONS(2283), - [anon_sym_f32] = ACTIONS(2283), - [anon_sym_f64] = ACTIONS(2283), - [anon_sym_bool] = ACTIONS(2283), - [anon_sym_str] = ACTIONS(2283), - [anon_sym_char] = ACTIONS(2283), - [aux_sym__non_special_token_token1] = ACTIONS(2283), - [anon_sym_SQUOTE] = ACTIONS(2283), - [anon_sym_as] = ACTIONS(2283), - [anon_sym_async] = ACTIONS(2283), - [anon_sym_await] = ACTIONS(2283), - [anon_sym_break] = ACTIONS(2283), - [anon_sym_const] = ACTIONS(2283), - [anon_sym_continue] = ACTIONS(2283), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_enum] = ACTIONS(2283), - [anon_sym_fn] = ACTIONS(2283), - [anon_sym_for] = ACTIONS(2283), - [anon_sym_if] = ACTIONS(2283), - [anon_sym_impl] = ACTIONS(2283), - [anon_sym_let] = ACTIONS(2283), - [anon_sym_loop] = ACTIONS(2283), - [anon_sym_match] = ACTIONS(2283), - [anon_sym_mod] = ACTIONS(2283), - [anon_sym_pub] = ACTIONS(2283), - [anon_sym_return] = ACTIONS(2283), - [anon_sym_static] = ACTIONS(2283), - [anon_sym_struct] = ACTIONS(2283), - [anon_sym_trait] = ACTIONS(2283), - [anon_sym_type] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), - [anon_sym_unsafe] = ACTIONS(2283), - [anon_sym_use] = ACTIONS(2283), - [anon_sym_where] = ACTIONS(2283), - [anon_sym_while] = ACTIONS(2283), - [sym_mutable_specifier] = ACTIONS(2283), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2283), - [sym_super] = ACTIONS(2283), - [sym_crate] = ACTIONS(2283), - [sym_metavariable] = ACTIONS(2287), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_attribute_item] = STATE(621), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_match_pattern] = STATE(2385), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1916), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_enum_variant_list_repeat1] = STATE(621), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [546] = { - [sym_delim_token_tree] = STATE(530), - [sym__delim_tokens] = STATE(530), - [sym__non_delim_token] = STATE(530), - [sym__literal] = STATE(530), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(530), - [sym_identifier] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2291), - [anon_sym_DOLLAR] = ACTIONS(2293), - [anon_sym_u8] = ACTIONS(2289), - [anon_sym_i8] = ACTIONS(2289), - [anon_sym_u16] = ACTIONS(2289), - [anon_sym_i16] = ACTIONS(2289), - [anon_sym_u32] = ACTIONS(2289), - [anon_sym_i32] = ACTIONS(2289), - [anon_sym_u64] = ACTIONS(2289), - [anon_sym_i64] = ACTIONS(2289), - [anon_sym_u128] = ACTIONS(2289), - [anon_sym_i128] = ACTIONS(2289), - [anon_sym_isize] = ACTIONS(2289), - [anon_sym_usize] = ACTIONS(2289), - [anon_sym_f32] = ACTIONS(2289), - [anon_sym_f64] = ACTIONS(2289), - [anon_sym_bool] = ACTIONS(2289), - [anon_sym_str] = ACTIONS(2289), - [anon_sym_char] = ACTIONS(2289), - [aux_sym__non_special_token_token1] = ACTIONS(2289), - [anon_sym_SQUOTE] = ACTIONS(2289), - [anon_sym_as] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_break] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_continue] = ACTIONS(2289), - [anon_sym_default] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - [anon_sym_fn] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_impl] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_loop] = ACTIONS(2289), - [anon_sym_match] = ACTIONS(2289), - [anon_sym_mod] = ACTIONS(2289), - [anon_sym_pub] = ACTIONS(2289), - [anon_sym_return] = ACTIONS(2289), - [anon_sym_static] = ACTIONS(2289), - [anon_sym_struct] = ACTIONS(2289), - [anon_sym_trait] = ACTIONS(2289), - [anon_sym_type] = ACTIONS(2289), - [anon_sym_union] = ACTIONS(2289), - [anon_sym_unsafe] = ACTIONS(2289), - [anon_sym_use] = ACTIONS(2289), - [anon_sym_where] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [sym_mutable_specifier] = ACTIONS(2289), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2289), - [sym_super] = ACTIONS(2289), - [sym_crate] = ACTIONS(2289), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_attribute_item] = STATE(621), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_match_pattern] = STATE(2433), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1916), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [aux_sym_enum_variant_list_repeat1] = STATE(621), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [547] = { - [sym_delim_token_tree] = STATE(552), - [sym__delim_tokens] = STATE(552), - [sym__non_delim_token] = STATE(552), - [sym__literal] = STATE(552), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(552), + [sym_attribute_item] = STATE(554), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym_visibility_modifier] = STATE(685), + [sym__type] = STATE(1832), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_enum_variant_list_repeat1] = STATE(554), + [aux_sym_function_modifiers_repeat1] = STATE(1551), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2297), - [anon_sym_u8] = ACTIONS(2295), - [anon_sym_i8] = ACTIONS(2295), - [anon_sym_u16] = ACTIONS(2295), - [anon_sym_i16] = ACTIONS(2295), - [anon_sym_u32] = ACTIONS(2295), - [anon_sym_i32] = ACTIONS(2295), - [anon_sym_u64] = ACTIONS(2295), - [anon_sym_i64] = ACTIONS(2295), - [anon_sym_u128] = ACTIONS(2295), - [anon_sym_i128] = ACTIONS(2295), - [anon_sym_isize] = ACTIONS(2295), - [anon_sym_usize] = ACTIONS(2295), - [anon_sym_f32] = ACTIONS(2295), - [anon_sym_f64] = ACTIONS(2295), - [anon_sym_bool] = ACTIONS(2295), - [anon_sym_str] = ACTIONS(2295), - [anon_sym_char] = ACTIONS(2295), - [aux_sym__non_special_token_token1] = ACTIONS(2295), - [anon_sym_SQUOTE] = ACTIONS(2295), - [anon_sym_as] = ACTIONS(2295), - [anon_sym_async] = ACTIONS(2295), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_break] = ACTIONS(2295), - [anon_sym_const] = ACTIONS(2295), - [anon_sym_continue] = ACTIONS(2295), - [anon_sym_default] = ACTIONS(2295), - [anon_sym_enum] = ACTIONS(2295), - [anon_sym_fn] = ACTIONS(2295), - [anon_sym_for] = ACTIONS(2295), - [anon_sym_if] = ACTIONS(2295), - [anon_sym_impl] = ACTIONS(2295), - [anon_sym_let] = ACTIONS(2295), - [anon_sym_loop] = ACTIONS(2295), - [anon_sym_match] = ACTIONS(2295), - [anon_sym_mod] = ACTIONS(2295), - [anon_sym_pub] = ACTIONS(2295), - [anon_sym_return] = ACTIONS(2295), - [anon_sym_static] = ACTIONS(2295), - [anon_sym_struct] = ACTIONS(2295), - [anon_sym_trait] = ACTIONS(2295), - [anon_sym_type] = ACTIONS(2295), - [anon_sym_union] = ACTIONS(2295), - [anon_sym_unsafe] = ACTIONS(2295), - [anon_sym_use] = ACTIONS(2295), - [anon_sym_where] = ACTIONS(2295), - [anon_sym_while] = ACTIONS(2295), - [sym_mutable_specifier] = ACTIONS(2295), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2295), - [sym_super] = ACTIONS(2295), - [sym_crate] = ACTIONS(2295), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_pub] = ACTIONS(2301), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(2303), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(2305), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(2307), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [548] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym_visibility_modifier] = STATE(692), + [sym__type] = STATE(2054), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_pub] = ACTIONS(2301), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(2303), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(2307), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [549] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym_visibility_modifier] = STATE(692), + [sym__type] = STATE(2054), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2311), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_pub] = ACTIONS(2301), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(2303), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(2307), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [550] = { - [sym_token_tree] = STATE(497), - [sym_token_repetition] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(497), - [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_RPAREN] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2239), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym_visibility_modifier] = STATE(692), + [sym__type] = STATE(2054), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_pub] = ACTIONS(2301), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(2303), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(2307), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [551] = { - [sym_delim_token_tree] = STATE(528), - [sym__delim_tokens] = STATE(528), - [sym__non_delim_token] = STATE(528), - [sym__literal] = STATE(528), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(528), - [sym_identifier] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2303), - [anon_sym_u8] = ACTIONS(2301), - [anon_sym_i8] = ACTIONS(2301), - [anon_sym_u16] = ACTIONS(2301), - [anon_sym_i16] = ACTIONS(2301), - [anon_sym_u32] = ACTIONS(2301), - [anon_sym_i32] = ACTIONS(2301), - [anon_sym_u64] = ACTIONS(2301), - [anon_sym_i64] = ACTIONS(2301), - [anon_sym_u128] = ACTIONS(2301), - [anon_sym_i128] = ACTIONS(2301), - [anon_sym_isize] = ACTIONS(2301), - [anon_sym_usize] = ACTIONS(2301), - [anon_sym_f32] = ACTIONS(2301), - [anon_sym_f64] = ACTIONS(2301), - [anon_sym_bool] = ACTIONS(2301), - [anon_sym_str] = ACTIONS(2301), - [anon_sym_char] = ACTIONS(2301), - [aux_sym__non_special_token_token1] = ACTIONS(2301), - [anon_sym_SQUOTE] = ACTIONS(2301), - [anon_sym_as] = ACTIONS(2301), - [anon_sym_async] = ACTIONS(2301), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_break] = ACTIONS(2301), - [anon_sym_const] = ACTIONS(2301), - [anon_sym_continue] = ACTIONS(2301), - [anon_sym_default] = ACTIONS(2301), - [anon_sym_enum] = ACTIONS(2301), - [anon_sym_fn] = ACTIONS(2301), - [anon_sym_for] = ACTIONS(2301), - [anon_sym_if] = ACTIONS(2301), - [anon_sym_impl] = ACTIONS(2301), - [anon_sym_let] = ACTIONS(2301), - [anon_sym_loop] = ACTIONS(2301), - [anon_sym_match] = ACTIONS(2301), - [anon_sym_mod] = ACTIONS(2301), + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym_visibility_modifier] = STATE(692), + [sym__type] = STATE(2054), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2315), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2301), - [anon_sym_return] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2301), - [anon_sym_struct] = ACTIONS(2301), - [anon_sym_trait] = ACTIONS(2301), - [anon_sym_type] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(2301), - [anon_sym_unsafe] = ACTIONS(2301), - [anon_sym_use] = ACTIONS(2301), - [anon_sym_where] = ACTIONS(2301), - [anon_sym_while] = ACTIONS(2301), - [sym_mutable_specifier] = ACTIONS(2301), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2301), - [sym_super] = ACTIONS(2301), - [sym_crate] = ACTIONS(2301), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(2303), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(2307), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [552] = { - [sym_delim_token_tree] = STATE(495), - [sym__delim_tokens] = STATE(495), - [sym__non_delim_token] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_RPAREN] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [aux_sym__non_special_token_token1] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_await] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_where] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [sym_mutable_specifier] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym_visibility_modifier] = STATE(692), + [sym__type] = STATE(2054), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_pub] = ACTIONS(2301), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(2303), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(2307), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [553] = { - [sym_token_tree] = STATE(524), - [sym_token_repetition] = STATE(524), - [sym__literal] = STATE(524), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(524), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2305), - [anon_sym_i8] = ACTIONS(2305), - [anon_sym_u16] = ACTIONS(2305), - [anon_sym_i16] = ACTIONS(2305), - [anon_sym_u32] = ACTIONS(2305), - [anon_sym_i32] = ACTIONS(2305), - [anon_sym_u64] = ACTIONS(2305), - [anon_sym_i64] = ACTIONS(2305), - [anon_sym_u128] = ACTIONS(2305), - [anon_sym_i128] = ACTIONS(2305), - [anon_sym_isize] = ACTIONS(2305), - [anon_sym_usize] = ACTIONS(2305), - [anon_sym_f32] = ACTIONS(2305), - [anon_sym_f64] = ACTIONS(2305), - [anon_sym_bool] = ACTIONS(2305), - [anon_sym_str] = ACTIONS(2305), - [anon_sym_char] = ACTIONS(2305), - [aux_sym__non_special_token_token1] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_as] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2305), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_default] = ACTIONS(2305), - [anon_sym_enum] = ACTIONS(2305), - [anon_sym_fn] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_impl] = ACTIONS(2305), - [anon_sym_let] = ACTIONS(2305), - [anon_sym_loop] = ACTIONS(2305), - [anon_sym_match] = ACTIONS(2305), - [anon_sym_mod] = ACTIONS(2305), - [anon_sym_pub] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_static] = ACTIONS(2305), - [anon_sym_struct] = ACTIONS(2305), - [anon_sym_trait] = ACTIONS(2305), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_union] = ACTIONS(2305), - [anon_sym_unsafe] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2305), - [anon_sym_where] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [sym_mutable_specifier] = ACTIONS(2305), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2305), - [sym_super] = ACTIONS(2305), - [sym_crate] = ACTIONS(2305), - [sym_metavariable] = ACTIONS(2307), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym_visibility_modifier] = STATE(692), + [sym__type] = STATE(2054), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_pub] = ACTIONS(2301), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(2303), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(2307), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [554] = { - [sym_delim_token_tree] = STATE(526), - [sym__delim_tokens] = STATE(526), - [sym__non_delim_token] = STATE(526), - [sym__literal] = STATE(526), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(526), - [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2311), - [anon_sym_u8] = ACTIONS(2309), - [anon_sym_i8] = ACTIONS(2309), - [anon_sym_u16] = ACTIONS(2309), - [anon_sym_i16] = ACTIONS(2309), - [anon_sym_u32] = ACTIONS(2309), - [anon_sym_i32] = ACTIONS(2309), - [anon_sym_u64] = ACTIONS(2309), - [anon_sym_i64] = ACTIONS(2309), - [anon_sym_u128] = ACTIONS(2309), - [anon_sym_i128] = ACTIONS(2309), - [anon_sym_isize] = ACTIONS(2309), - [anon_sym_usize] = ACTIONS(2309), - [anon_sym_f32] = ACTIONS(2309), - [anon_sym_f64] = ACTIONS(2309), - [anon_sym_bool] = ACTIONS(2309), - [anon_sym_str] = ACTIONS(2309), - [anon_sym_char] = ACTIONS(2309), - [aux_sym__non_special_token_token1] = ACTIONS(2309), - [anon_sym_SQUOTE] = ACTIONS(2309), - [anon_sym_as] = ACTIONS(2309), - [anon_sym_async] = ACTIONS(2309), - [anon_sym_await] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_const] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_default] = ACTIONS(2309), - [anon_sym_enum] = ACTIONS(2309), - [anon_sym_fn] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_impl] = ACTIONS(2309), - [anon_sym_let] = ACTIONS(2309), - [anon_sym_loop] = ACTIONS(2309), - [anon_sym_match] = ACTIONS(2309), - [anon_sym_mod] = ACTIONS(2309), - [anon_sym_pub] = ACTIONS(2309), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_static] = ACTIONS(2309), - [anon_sym_struct] = ACTIONS(2309), - [anon_sym_trait] = ACTIONS(2309), - [anon_sym_type] = ACTIONS(2309), - [anon_sym_union] = ACTIONS(2309), - [anon_sym_unsafe] = ACTIONS(2309), - [anon_sym_use] = ACTIONS(2309), - [anon_sym_where] = ACTIONS(2309), - [anon_sym_while] = ACTIONS(2309), - [sym_mutable_specifier] = ACTIONS(2309), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2309), - [sym_super] = ACTIONS(2309), - [sym_crate] = ACTIONS(2309), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_attribute_item] = STATE(1048), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym_visibility_modifier] = STATE(719), + [sym__type] = STATE(1824), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_enum_variant_list_repeat1] = STATE(1048), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_pub] = ACTIONS(2301), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(2303), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(2307), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [555] = { - [sym_delim_token_tree] = STATE(529), - [sym__delim_tokens] = STATE(529), - [sym__non_delim_token] = STATE(529), - [sym__literal] = STATE(529), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(529), - [sym_identifier] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2291), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2315), - [anon_sym_u8] = ACTIONS(2313), - [anon_sym_i8] = ACTIONS(2313), - [anon_sym_u16] = ACTIONS(2313), - [anon_sym_i16] = ACTIONS(2313), - [anon_sym_u32] = ACTIONS(2313), - [anon_sym_i32] = ACTIONS(2313), - [anon_sym_u64] = ACTIONS(2313), - [anon_sym_i64] = ACTIONS(2313), - [anon_sym_u128] = ACTIONS(2313), - [anon_sym_i128] = ACTIONS(2313), - [anon_sym_isize] = ACTIONS(2313), - [anon_sym_usize] = ACTIONS(2313), - [anon_sym_f32] = ACTIONS(2313), - [anon_sym_f64] = ACTIONS(2313), - [anon_sym_bool] = ACTIONS(2313), - [anon_sym_str] = ACTIONS(2313), - [anon_sym_char] = ACTIONS(2313), - [aux_sym__non_special_token_token1] = ACTIONS(2313), - [anon_sym_SQUOTE] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(2313), - [anon_sym_await] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_default] = ACTIONS(2313), - [anon_sym_enum] = ACTIONS(2313), - [anon_sym_fn] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_impl] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2313), - [anon_sym_loop] = ACTIONS(2313), - [anon_sym_match] = ACTIONS(2313), - [anon_sym_mod] = ACTIONS(2313), - [anon_sym_pub] = ACTIONS(2313), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_static] = ACTIONS(2313), - [anon_sym_struct] = ACTIONS(2313), - [anon_sym_trait] = ACTIONS(2313), - [anon_sym_type] = ACTIONS(2313), - [anon_sym_union] = ACTIONS(2313), - [anon_sym_unsafe] = ACTIONS(2313), - [anon_sym_use] = ACTIONS(2313), - [anon_sym_where] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [sym_mutable_specifier] = ACTIONS(2313), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2313), - [sym_super] = ACTIONS(2313), - [sym_crate] = ACTIONS(2313), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1787), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_RBRACK] = ACTIONS(780), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_COMMA] = ACTIONS(788), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [556] = { - [sym_token_tree] = STATE(522), - [sym_token_repetition] = STATE(522), - [sym__literal] = STATE(522), - [sym_string_literal] = STATE(581), - [sym_boolean_literal] = STATE(581), - [aux_sym_token_tree_repeat1] = STATE(522), - [sym_identifier] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_RPAREN] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2317), - [anon_sym_i8] = ACTIONS(2317), - [anon_sym_u16] = ACTIONS(2317), - [anon_sym_i16] = ACTIONS(2317), - [anon_sym_u32] = ACTIONS(2317), - [anon_sym_i32] = ACTIONS(2317), - [anon_sym_u64] = ACTIONS(2317), - [anon_sym_i64] = ACTIONS(2317), - [anon_sym_u128] = ACTIONS(2317), - [anon_sym_i128] = ACTIONS(2317), - [anon_sym_isize] = ACTIONS(2317), - [anon_sym_usize] = ACTIONS(2317), - [anon_sym_f32] = ACTIONS(2317), - [anon_sym_f64] = ACTIONS(2317), - [anon_sym_bool] = ACTIONS(2317), - [anon_sym_str] = ACTIONS(2317), - [anon_sym_char] = ACTIONS(2317), - [aux_sym__non_special_token_token1] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_as] = ACTIONS(2317), - [anon_sym_async] = ACTIONS(2317), - [anon_sym_await] = ACTIONS(2317), - [anon_sym_break] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [anon_sym_continue] = ACTIONS(2317), - [anon_sym_default] = ACTIONS(2317), - [anon_sym_enum] = ACTIONS(2317), - [anon_sym_fn] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_impl] = ACTIONS(2317), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_loop] = ACTIONS(2317), - [anon_sym_match] = ACTIONS(2317), - [anon_sym_mod] = ACTIONS(2317), - [anon_sym_pub] = ACTIONS(2317), - [anon_sym_return] = ACTIONS(2317), - [anon_sym_static] = ACTIONS(2317), - [anon_sym_struct] = ACTIONS(2317), - [anon_sym_trait] = ACTIONS(2317), - [anon_sym_type] = ACTIONS(2317), - [anon_sym_union] = ACTIONS(2317), - [anon_sym_unsafe] = ACTIONS(2317), - [anon_sym_use] = ACTIONS(2317), - [anon_sym_where] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [sym_mutable_specifier] = ACTIONS(2317), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2317), - [sym_super] = ACTIONS(2317), - [sym_crate] = ACTIONS(2317), - [sym_metavariable] = ACTIONS(2319), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1853), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_COMMA] = ACTIONS(2323), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [557] = { - [sym_delim_token_tree] = STATE(531), - [sym__delim_tokens] = STATE(531), - [sym__non_delim_token] = STATE(531), - [sym__literal] = STATE(531), - [sym_string_literal] = STATE(606), - [sym_boolean_literal] = STATE(606), - [aux_sym_delim_token_tree_repeat1] = STATE(531), - [sym_identifier] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2323), - [anon_sym_u8] = ACTIONS(2321), - [anon_sym_i8] = ACTIONS(2321), - [anon_sym_u16] = ACTIONS(2321), - [anon_sym_i16] = ACTIONS(2321), - [anon_sym_u32] = ACTIONS(2321), - [anon_sym_i32] = ACTIONS(2321), - [anon_sym_u64] = ACTIONS(2321), - [anon_sym_i64] = ACTIONS(2321), - [anon_sym_u128] = ACTIONS(2321), - [anon_sym_i128] = ACTIONS(2321), - [anon_sym_isize] = ACTIONS(2321), - [anon_sym_usize] = ACTIONS(2321), - [anon_sym_f32] = ACTIONS(2321), - [anon_sym_f64] = ACTIONS(2321), - [anon_sym_bool] = ACTIONS(2321), - [anon_sym_str] = ACTIONS(2321), - [anon_sym_char] = ACTIONS(2321), - [aux_sym__non_special_token_token1] = ACTIONS(2321), - [anon_sym_SQUOTE] = ACTIONS(2321), - [anon_sym_as] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2321), - [anon_sym_await] = ACTIONS(2321), - [anon_sym_break] = ACTIONS(2321), - [anon_sym_const] = ACTIONS(2321), - [anon_sym_continue] = ACTIONS(2321), - [anon_sym_default] = ACTIONS(2321), - [anon_sym_enum] = ACTIONS(2321), - [anon_sym_fn] = ACTIONS(2321), - [anon_sym_for] = ACTIONS(2321), - [anon_sym_if] = ACTIONS(2321), - [anon_sym_impl] = ACTIONS(2321), - [anon_sym_let] = ACTIONS(2321), - [anon_sym_loop] = ACTIONS(2321), - [anon_sym_match] = ACTIONS(2321), - [anon_sym_mod] = ACTIONS(2321), - [anon_sym_pub] = ACTIONS(2321), - [anon_sym_return] = ACTIONS(2321), - [anon_sym_static] = ACTIONS(2321), - [anon_sym_struct] = ACTIONS(2321), - [anon_sym_trait] = ACTIONS(2321), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_union] = ACTIONS(2321), - [anon_sym_unsafe] = ACTIONS(2321), - [anon_sym_use] = ACTIONS(2321), - [anon_sym_where] = ACTIONS(2321), - [anon_sym_while] = ACTIONS(2321), - [sym_mutable_specifier] = ACTIONS(2321), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2321), - [sym_super] = ACTIONS(2321), - [sym_crate] = ACTIONS(2321), - [sym_raw_string_literal] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym_visibility_modifier] = STATE(692), + [sym__type] = STATE(2054), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_pub] = ACTIONS(2301), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(2303), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(2307), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [558] = { - [sym_attribute_item] = STATE(640), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_match_pattern] = STATE(2461), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2033), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_enum_variant_list_repeat1] = STATE(640), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), + [sym_attribute_item] = STATE(1048), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym_visibility_modifier] = STATE(740), + [sym__type] = STATE(2043), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_enum_variant_list_repeat1] = STATE(1048), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_pub] = ACTIONS(2301), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(2303), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(2307), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [559] = { - [sym_attribute_item] = STATE(573), - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym_visibility_modifier] = STATE(683), - [sym__type] = STATE(1874), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_enum_variant_list_repeat1] = STATE(573), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_COMMA] = ACTIONS(2335), - [anon_sym_extern] = ACTIONS(714), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1789), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_COMMA] = ACTIONS(810), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(924), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [560] = { - [sym_attribute_item] = STATE(640), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_match_pattern] = STATE(2569), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2033), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [aux_sym_enum_variant_list_repeat1] = STATE(640), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(716), + [sym_parameter] = STATE(1882), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1845), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(2327), + [anon_sym_union] = ACTIONS(2327), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(2329), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [anon_sym_PIPE] = ACTIONS(2331), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2333), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [561] = { - [sym_attribute_item] = STATE(569), - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym_visibility_modifier] = STATE(672), - [sym__type] = STATE(1930), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_enum_variant_list_repeat1] = STATE(569), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2339), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(924), + [sym_identifier] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_RPAREN] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_RBRACE] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_RBRACK] = ACTIONS(2337), + [anon_sym_COLON] = ACTIONS(2339), + [anon_sym_DOLLAR] = ACTIONS(2335), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2335), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_as] = ACTIONS(2335), + [anon_sym_async] = ACTIONS(2335), + [anon_sym_await] = 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_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_where] = ACTIONS(2335), + [anon_sym_while] = ACTIONS(2335), + [sym_mutable_specifier] = ACTIONS(2335), + [sym_integer_literal] = ACTIONS(2337), + [aux_sym_string_literal_token1] = ACTIONS(2337), + [sym_char_literal] = ACTIONS(2337), + [anon_sym_true] = ACTIONS(2335), + [anon_sym_false] = ACTIONS(2335), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2335), + [sym_super] = ACTIONS(2335), + [sym_crate] = ACTIONS(2335), + [sym_metavariable] = ACTIONS(2337), + [sym_raw_string_literal] = ACTIONS(2337), + [sym_float_literal] = ACTIONS(2337), [sym_block_comment] = ACTIONS(3), }, [562] = { - [sym_attribute_item] = STATE(569), - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym_visibility_modifier] = STATE(672), - [sym__type] = STATE(1930), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_enum_variant_list_repeat1] = STATE(569), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2341), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(924), + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2343), + [anon_sym_RPAREN] = ACTIONS(2343), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(2343), + [anon_sym_RBRACK] = ACTIONS(2343), + [anon_sym_DOLLAR] = ACTIONS(2341), + [anon_sym_u8] = ACTIONS(2341), + [anon_sym_i8] = ACTIONS(2341), + [anon_sym_u16] = ACTIONS(2341), + [anon_sym_i16] = ACTIONS(2341), + [anon_sym_u32] = ACTIONS(2341), + [anon_sym_i32] = ACTIONS(2341), + [anon_sym_u64] = ACTIONS(2341), + [anon_sym_i64] = ACTIONS(2341), + [anon_sym_u128] = ACTIONS(2341), + [anon_sym_i128] = ACTIONS(2341), + [anon_sym_isize] = ACTIONS(2341), + [anon_sym_usize] = ACTIONS(2341), + [anon_sym_f32] = ACTIONS(2341), + [anon_sym_f64] = ACTIONS(2341), + [anon_sym_bool] = ACTIONS(2341), + [anon_sym_str] = ACTIONS(2341), + [anon_sym_char] = ACTIONS(2341), + [aux_sym__non_special_token_token1] = ACTIONS(2341), + [anon_sym_SQUOTE] = ACTIONS(2341), + [anon_sym_as] = ACTIONS(2341), + [anon_sym_async] = ACTIONS(2341), + [anon_sym_await] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_default] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_fn] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_impl] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2341), + [anon_sym_loop] = ACTIONS(2341), + [anon_sym_match] = ACTIONS(2341), + [anon_sym_mod] = ACTIONS(2341), + [anon_sym_pub] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_struct] = ACTIONS(2341), + [anon_sym_trait] = ACTIONS(2341), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_union] = ACTIONS(2341), + [anon_sym_unsafe] = ACTIONS(2341), + [anon_sym_use] = ACTIONS(2341), + [anon_sym_where] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [sym_mutable_specifier] = ACTIONS(2341), + [sym_integer_literal] = ACTIONS(2343), + [aux_sym_string_literal_token1] = ACTIONS(2343), + [sym_char_literal] = ACTIONS(2343), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2341), + [sym_super] = ACTIONS(2341), + [sym_crate] = ACTIONS(2341), + [sym_metavariable] = ACTIONS(2343), + [sym_raw_string_literal] = ACTIONS(2343), + [sym_float_literal] = ACTIONS(2343), [sym_block_comment] = ACTIONS(3), }, [563] = { - [sym_attribute_item] = STATE(569), - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym_visibility_modifier] = STATE(672), - [sym__type] = STATE(1930), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_enum_variant_list_repeat1] = STATE(569), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1788), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_RBRACK] = ACTIONS(2345), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(924), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [564] = { - [sym_attribute_item] = STATE(569), - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym_visibility_modifier] = STATE(672), - [sym__type] = STATE(1930), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_enum_variant_list_repeat1] = STATE(569), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2345), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [565] = { - [sym_attribute_item] = STATE(569), - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym_visibility_modifier] = STATE(672), - [sym__type] = STATE(1930), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_enum_variant_list_repeat1] = STATE(569), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [566] = { - [sym_attribute_item] = STATE(569), - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym_visibility_modifier] = STATE(672), - [sym__type] = STATE(1930), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_enum_variant_list_repeat1] = STATE(569), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), + [sym_identifier] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(2349), [anon_sym_RPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [567] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1814), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_RBRACK] = ACTIONS(826), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_LBRACE] = ACTIONS(2349), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_RBRACK] = ACTIONS(2349), + [anon_sym_DOLLAR] = ACTIONS(2347), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2347), + [anon_sym_as] = ACTIONS(2347), + [anon_sym_async] = ACTIONS(2347), + [anon_sym_await] = 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_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_where] = ACTIONS(2347), + [anon_sym_while] = ACTIONS(2347), + [sym_mutable_specifier] = ACTIONS(2347), + [sym_integer_literal] = ACTIONS(2349), + [aux_sym_string_literal_token1] = ACTIONS(2349), + [sym_char_literal] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2347), + [sym_super] = ACTIONS(2347), + [sym_crate] = ACTIONS(2347), + [sym_metavariable] = ACTIONS(2349), + [sym_raw_string_literal] = ACTIONS(2349), + [sym_float_literal] = ACTIONS(2349), [sym_block_comment] = ACTIONS(3), }, - [568] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1827), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), + [565] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1788), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), [anon_sym_RPAREN] = ACTIONS(2351), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_COMMA] = ACTIONS(812), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [569] = { - [sym_attribute_item] = STATE(1098), - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym_visibility_modifier] = STATE(700), - [sym__type] = STATE(2032), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_enum_variant_list_repeat1] = STATE(1098), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(924), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [570] = { + [566] = { [sym_identifier] = ACTIONS(2353), [anon_sym_LPAREN] = ACTIONS(2355), [anon_sym_RPAREN] = ACTIONS(2355), @@ -67303,7 +66348,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(2355), [anon_sym_LBRACK] = ACTIONS(2355), [anon_sym_RBRACK] = ACTIONS(2355), - [anon_sym_COLON] = ACTIONS(2357), [anon_sym_DOLLAR] = ACTIONS(2353), [anon_sym_u8] = ACTIONS(2353), [anon_sym_i8] = ACTIONS(2353), @@ -67357,7 +66401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2355), [anon_sym_true] = ACTIONS(2353), [anon_sym_false] = ACTIONS(2353), - [sym_line_comment] = ACTIONS(1097), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2353), [sym_super] = ACTIONS(2353), [sym_crate] = ACTIONS(2353), @@ -67366,361 +66410,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2355), [sym_block_comment] = ACTIONS(3), }, - [571] = { - [sym_attribute_item] = STATE(569), - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym_visibility_modifier] = STATE(672), - [sym__type] = STATE(1930), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_enum_variant_list_repeat1] = STATE(569), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [572] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1838), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), + [567] = { + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2359), [anon_sym_RPAREN] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_COMMA] = ACTIONS(2361), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_RBRACK] = ACTIONS(2359), + [anon_sym_DOLLAR] = ACTIONS(2357), + [anon_sym_u8] = ACTIONS(2357), + [anon_sym_i8] = ACTIONS(2357), + [anon_sym_u16] = ACTIONS(2357), + [anon_sym_i16] = ACTIONS(2357), + [anon_sym_u32] = ACTIONS(2357), + [anon_sym_i32] = ACTIONS(2357), + [anon_sym_u64] = ACTIONS(2357), + [anon_sym_i64] = ACTIONS(2357), + [anon_sym_u128] = ACTIONS(2357), + [anon_sym_i128] = ACTIONS(2357), + [anon_sym_isize] = ACTIONS(2357), + [anon_sym_usize] = ACTIONS(2357), + [anon_sym_f32] = ACTIONS(2357), + [anon_sym_f64] = ACTIONS(2357), + [anon_sym_bool] = ACTIONS(2357), + [anon_sym_str] = ACTIONS(2357), + [anon_sym_char] = ACTIONS(2357), + [aux_sym__non_special_token_token1] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_as] = ACTIONS(2357), + [anon_sym_async] = ACTIONS(2357), + [anon_sym_await] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_default] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_fn] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_impl] = ACTIONS(2357), + [anon_sym_let] = ACTIONS(2357), + [anon_sym_loop] = ACTIONS(2357), + [anon_sym_match] = ACTIONS(2357), + [anon_sym_mod] = ACTIONS(2357), + [anon_sym_pub] = ACTIONS(2357), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_trait] = ACTIONS(2357), + [anon_sym_type] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [anon_sym_unsafe] = ACTIONS(2357), + [anon_sym_use] = ACTIONS(2357), + [anon_sym_where] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [sym_mutable_specifier] = ACTIONS(2357), + [sym_integer_literal] = ACTIONS(2359), + [aux_sym_string_literal_token1] = ACTIONS(2359), + [sym_char_literal] = ACTIONS(2359), + [anon_sym_true] = ACTIONS(2357), + [anon_sym_false] = ACTIONS(2357), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2357), + [sym_super] = ACTIONS(2357), + [sym_crate] = ACTIONS(2357), + [sym_metavariable] = ACTIONS(2359), + [sym_raw_string_literal] = ACTIONS(2359), + [sym_float_literal] = ACTIONS(2359), [sym_block_comment] = ACTIONS(3), }, - [573] = { - [sym_attribute_item] = STATE(1098), - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym_visibility_modifier] = STATE(676), - [sym__type] = STATE(1888), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_enum_variant_list_repeat1] = STATE(1098), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_pub] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_POUND] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(2337), - [sym_metavariable] = ACTIONS(924), + [568] = { + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_RPAREN] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_RBRACK] = ACTIONS(2363), + [anon_sym_DOLLAR] = ACTIONS(2361), + [anon_sym_u8] = ACTIONS(2361), + [anon_sym_i8] = ACTIONS(2361), + [anon_sym_u16] = ACTIONS(2361), + [anon_sym_i16] = ACTIONS(2361), + [anon_sym_u32] = ACTIONS(2361), + [anon_sym_i32] = ACTIONS(2361), + [anon_sym_u64] = ACTIONS(2361), + [anon_sym_i64] = ACTIONS(2361), + [anon_sym_u128] = ACTIONS(2361), + [anon_sym_i128] = ACTIONS(2361), + [anon_sym_isize] = ACTIONS(2361), + [anon_sym_usize] = ACTIONS(2361), + [anon_sym_f32] = ACTIONS(2361), + [anon_sym_f64] = ACTIONS(2361), + [anon_sym_bool] = ACTIONS(2361), + [anon_sym_str] = ACTIONS(2361), + [anon_sym_char] = ACTIONS(2361), + [aux_sym__non_special_token_token1] = ACTIONS(2361), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_as] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(2361), + [anon_sym_await] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_fn] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_impl] = ACTIONS(2361), + [anon_sym_let] = ACTIONS(2361), + [anon_sym_loop] = ACTIONS(2361), + [anon_sym_match] = ACTIONS(2361), + [anon_sym_mod] = ACTIONS(2361), + [anon_sym_pub] = ACTIONS(2361), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2361), + [anon_sym_trait] = ACTIONS(2361), + [anon_sym_type] = ACTIONS(2361), + [anon_sym_union] = ACTIONS(2361), + [anon_sym_unsafe] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2361), + [anon_sym_where] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [sym_mutable_specifier] = ACTIONS(2361), + [sym_integer_literal] = ACTIONS(2363), + [aux_sym_string_literal_token1] = ACTIONS(2363), + [sym_char_literal] = ACTIONS(2363), + [anon_sym_true] = ACTIONS(2361), + [anon_sym_false] = ACTIONS(2361), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2361), + [sym_super] = ACTIONS(2361), + [sym_crate] = ACTIONS(2361), + [sym_metavariable] = ACTIONS(2363), + [sym_raw_string_literal] = ACTIONS(2363), + [sym_float_literal] = ACTIONS(2363), [sym_block_comment] = ACTIONS(3), }, - [574] = { - [sym_parameter] = STATE(1951), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1848), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), + [569] = { + [sym_identifier] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2367), + [anon_sym_RPAREN] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(2367), + [anon_sym_RBRACK] = ACTIONS(2367), + [anon_sym_DOLLAR] = ACTIONS(2365), + [anon_sym_u8] = ACTIONS(2365), + [anon_sym_i8] = ACTIONS(2365), + [anon_sym_u16] = ACTIONS(2365), + [anon_sym_i16] = ACTIONS(2365), + [anon_sym_u32] = ACTIONS(2365), + [anon_sym_i32] = ACTIONS(2365), + [anon_sym_u64] = ACTIONS(2365), + [anon_sym_i64] = ACTIONS(2365), + [anon_sym_u128] = ACTIONS(2365), + [anon_sym_i128] = ACTIONS(2365), + [anon_sym_isize] = ACTIONS(2365), + [anon_sym_usize] = ACTIONS(2365), + [anon_sym_f32] = ACTIONS(2365), + [anon_sym_f64] = ACTIONS(2365), + [anon_sym_bool] = ACTIONS(2365), + [anon_sym_str] = ACTIONS(2365), + [anon_sym_char] = ACTIONS(2365), + [aux_sym__non_special_token_token1] = ACTIONS(2365), + [anon_sym_SQUOTE] = ACTIONS(2365), + [anon_sym_as] = ACTIONS(2365), + [anon_sym_async] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2365), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_default] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2365), + [anon_sym_fn] = ACTIONS(2365), + [anon_sym_for] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2365), + [anon_sym_impl] = ACTIONS(2365), + [anon_sym_let] = ACTIONS(2365), + [anon_sym_loop] = ACTIONS(2365), + [anon_sym_match] = ACTIONS(2365), + [anon_sym_mod] = ACTIONS(2365), + [anon_sym_pub] = ACTIONS(2365), + [anon_sym_return] = ACTIONS(2365), + [anon_sym_static] = ACTIONS(2365), + [anon_sym_struct] = ACTIONS(2365), + [anon_sym_trait] = ACTIONS(2365), + [anon_sym_type] = ACTIONS(2365), + [anon_sym_union] = ACTIONS(2365), + [anon_sym_unsafe] = ACTIONS(2365), + [anon_sym_use] = ACTIONS(2365), + [anon_sym_where] = ACTIONS(2365), + [anon_sym_while] = ACTIONS(2365), [sym_mutable_specifier] = ACTIONS(2365), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_PIPE] = ACTIONS(2367), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2369), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_integer_literal] = ACTIONS(2367), + [aux_sym_string_literal_token1] = ACTIONS(2367), + [sym_char_literal] = ACTIONS(2367), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2365), + [sym_super] = ACTIONS(2365), + [sym_crate] = ACTIONS(2365), + [sym_metavariable] = ACTIONS(2367), + [sym_raw_string_literal] = ACTIONS(2367), + [sym_float_literal] = ACTIONS(2367), [sym_block_comment] = ACTIONS(3), }, - [575] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1853), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), + [570] = { + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2371), [anon_sym_RBRACK] = ACTIONS(2371), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_DOLLAR] = ACTIONS(2369), + [anon_sym_u8] = ACTIONS(2369), + [anon_sym_i8] = ACTIONS(2369), + [anon_sym_u16] = ACTIONS(2369), + [anon_sym_i16] = ACTIONS(2369), + [anon_sym_u32] = ACTIONS(2369), + [anon_sym_i32] = ACTIONS(2369), + [anon_sym_u64] = ACTIONS(2369), + [anon_sym_i64] = ACTIONS(2369), + [anon_sym_u128] = ACTIONS(2369), + [anon_sym_i128] = ACTIONS(2369), + [anon_sym_isize] = ACTIONS(2369), + [anon_sym_usize] = ACTIONS(2369), + [anon_sym_f32] = ACTIONS(2369), + [anon_sym_f64] = ACTIONS(2369), + [anon_sym_bool] = ACTIONS(2369), + [anon_sym_str] = ACTIONS(2369), + [anon_sym_char] = ACTIONS(2369), + [aux_sym__non_special_token_token1] = ACTIONS(2369), + [anon_sym_SQUOTE] = ACTIONS(2369), + [anon_sym_as] = ACTIONS(2369), + [anon_sym_async] = ACTIONS(2369), + [anon_sym_await] = ACTIONS(2369), + [anon_sym_break] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2369), + [anon_sym_continue] = ACTIONS(2369), + [anon_sym_default] = ACTIONS(2369), + [anon_sym_enum] = ACTIONS(2369), + [anon_sym_fn] = ACTIONS(2369), + [anon_sym_for] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_impl] = ACTIONS(2369), + [anon_sym_let] = ACTIONS(2369), + [anon_sym_loop] = ACTIONS(2369), + [anon_sym_match] = ACTIONS(2369), + [anon_sym_mod] = ACTIONS(2369), + [anon_sym_pub] = ACTIONS(2369), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_static] = ACTIONS(2369), + [anon_sym_struct] = ACTIONS(2369), + [anon_sym_trait] = ACTIONS(2369), + [anon_sym_type] = ACTIONS(2369), + [anon_sym_union] = ACTIONS(2369), + [anon_sym_unsafe] = ACTIONS(2369), + [anon_sym_use] = ACTIONS(2369), + [anon_sym_where] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2369), + [sym_mutable_specifier] = ACTIONS(2369), + [sym_integer_literal] = ACTIONS(2371), + [aux_sym_string_literal_token1] = ACTIONS(2371), + [sym_char_literal] = ACTIONS(2371), + [anon_sym_true] = ACTIONS(2369), + [anon_sym_false] = ACTIONS(2369), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2369), + [sym_super] = ACTIONS(2369), + [sym_crate] = ACTIONS(2369), + [sym_metavariable] = ACTIONS(2371), + [sym_raw_string_literal] = ACTIONS(2371), + [sym_float_literal] = ACTIONS(2371), [sym_block_comment] = ACTIONS(3), }, - [576] = { + [571] = { [sym_identifier] = ACTIONS(2373), [anon_sym_LPAREN] = ACTIONS(2375), [anon_sym_RPAREN] = ACTIONS(2375), @@ -67781,7 +66751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2375), [anon_sym_true] = ACTIONS(2373), [anon_sym_false] = ACTIONS(2373), - [sym_line_comment] = ACTIONS(1097), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2373), [sym_super] = ACTIONS(2373), [sym_crate] = ACTIONS(2373), @@ -67790,7 +66760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2375), [sym_block_comment] = ACTIONS(3), }, - [577] = { + [572] = { [sym_identifier] = ACTIONS(2377), [anon_sym_LPAREN] = ACTIONS(2379), [anon_sym_RPAREN] = ACTIONS(2379), @@ -67850,507 +66820,437 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_literal_token1] = ACTIONS(2379), [sym_char_literal] = ACTIONS(2379), [anon_sym_true] = ACTIONS(2377), - [anon_sym_false] = ACTIONS(2377), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2377), - [sym_super] = ACTIONS(2377), - [sym_crate] = ACTIONS(2377), - [sym_metavariable] = ACTIONS(2379), - [sym_raw_string_literal] = ACTIONS(2379), - [sym_float_literal] = ACTIONS(2379), - [sym_block_comment] = ACTIONS(3), - }, - [578] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1853), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [579] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1853), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [580] = { - [sym_identifier] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_RPAREN] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_RBRACK] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(2385), - [anon_sym_u8] = ACTIONS(2385), - [anon_sym_i8] = ACTIONS(2385), - [anon_sym_u16] = ACTIONS(2385), - [anon_sym_i16] = ACTIONS(2385), - [anon_sym_u32] = ACTIONS(2385), - [anon_sym_i32] = ACTIONS(2385), - [anon_sym_u64] = ACTIONS(2385), - [anon_sym_i64] = ACTIONS(2385), - [anon_sym_u128] = ACTIONS(2385), - [anon_sym_i128] = ACTIONS(2385), - [anon_sym_isize] = ACTIONS(2385), - [anon_sym_usize] = ACTIONS(2385), - [anon_sym_f32] = ACTIONS(2385), - [anon_sym_f64] = ACTIONS(2385), - [anon_sym_bool] = ACTIONS(2385), - [anon_sym_str] = ACTIONS(2385), - [anon_sym_char] = ACTIONS(2385), - [aux_sym__non_special_token_token1] = ACTIONS(2385), - [anon_sym_SQUOTE] = ACTIONS(2385), - [anon_sym_as] = ACTIONS(2385), - [anon_sym_async] = ACTIONS(2385), - [anon_sym_await] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_enum] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_impl] = ACTIONS(2385), - [anon_sym_let] = ACTIONS(2385), - [anon_sym_loop] = ACTIONS(2385), - [anon_sym_match] = ACTIONS(2385), - [anon_sym_mod] = ACTIONS(2385), - [anon_sym_pub] = ACTIONS(2385), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_struct] = ACTIONS(2385), - [anon_sym_trait] = ACTIONS(2385), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), - [anon_sym_unsafe] = ACTIONS(2385), - [anon_sym_use] = ACTIONS(2385), - [anon_sym_where] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [sym_mutable_specifier] = ACTIONS(2385), - [sym_integer_literal] = ACTIONS(2387), - [aux_sym_string_literal_token1] = ACTIONS(2387), - [sym_char_literal] = ACTIONS(2387), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2385), - [sym_super] = ACTIONS(2385), - [sym_crate] = ACTIONS(2385), - [sym_metavariable] = ACTIONS(2387), - [sym_raw_string_literal] = ACTIONS(2387), - [sym_float_literal] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2377), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2377), + [sym_super] = ACTIONS(2377), + [sym_crate] = ACTIONS(2377), + [sym_metavariable] = ACTIONS(2379), + [sym_raw_string_literal] = ACTIONS(2379), + [sym_float_literal] = ACTIONS(2379), [sym_block_comment] = ACTIONS(3), }, - [581] = { - [sym_identifier] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_RPAREN] = ACTIONS(2391), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_LBRACK] = ACTIONS(2391), - [anon_sym_RBRACK] = ACTIONS(2391), - [anon_sym_DOLLAR] = ACTIONS(2389), - [anon_sym_u8] = ACTIONS(2389), - [anon_sym_i8] = ACTIONS(2389), - [anon_sym_u16] = ACTIONS(2389), - [anon_sym_i16] = ACTIONS(2389), - [anon_sym_u32] = ACTIONS(2389), - [anon_sym_i32] = ACTIONS(2389), - [anon_sym_u64] = ACTIONS(2389), - [anon_sym_i64] = ACTIONS(2389), - [anon_sym_u128] = ACTIONS(2389), - [anon_sym_i128] = ACTIONS(2389), - [anon_sym_isize] = ACTIONS(2389), - [anon_sym_usize] = ACTIONS(2389), - [anon_sym_f32] = ACTIONS(2389), - [anon_sym_f64] = ACTIONS(2389), - [anon_sym_bool] = ACTIONS(2389), - [anon_sym_str] = ACTIONS(2389), - [anon_sym_char] = ACTIONS(2389), - [aux_sym__non_special_token_token1] = ACTIONS(2389), - [anon_sym_SQUOTE] = ACTIONS(2389), - [anon_sym_as] = ACTIONS(2389), - [anon_sym_async] = ACTIONS(2389), - [anon_sym_await] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_const] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_default] = ACTIONS(2389), - [anon_sym_enum] = ACTIONS(2389), - [anon_sym_fn] = ACTIONS(2389), - [anon_sym_for] = ACTIONS(2389), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_impl] = ACTIONS(2389), - [anon_sym_let] = ACTIONS(2389), - [anon_sym_loop] = ACTIONS(2389), - [anon_sym_match] = ACTIONS(2389), - [anon_sym_mod] = ACTIONS(2389), - [anon_sym_pub] = ACTIONS(2389), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_static] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(2389), - [anon_sym_trait] = ACTIONS(2389), - [anon_sym_type] = ACTIONS(2389), - [anon_sym_union] = ACTIONS(2389), - [anon_sym_unsafe] = ACTIONS(2389), - [anon_sym_use] = ACTIONS(2389), - [anon_sym_where] = ACTIONS(2389), - [anon_sym_while] = ACTIONS(2389), - [sym_mutable_specifier] = ACTIONS(2389), - [sym_integer_literal] = ACTIONS(2391), - [aux_sym_string_literal_token1] = ACTIONS(2391), - [sym_char_literal] = ACTIONS(2391), - [anon_sym_true] = ACTIONS(2389), - [anon_sym_false] = ACTIONS(2389), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2389), - [sym_super] = ACTIONS(2389), - [sym_crate] = ACTIONS(2389), - [sym_metavariable] = ACTIONS(2391), - [sym_raw_string_literal] = ACTIONS(2391), - [sym_float_literal] = ACTIONS(2391), + [573] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1788), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [582] = { - [sym_identifier] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2395), - [anon_sym_RPAREN] = ACTIONS(2395), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_RBRACE] = ACTIONS(2395), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_RBRACK] = ACTIONS(2395), - [anon_sym_DOLLAR] = ACTIONS(2393), - [anon_sym_u8] = ACTIONS(2393), - [anon_sym_i8] = ACTIONS(2393), - [anon_sym_u16] = ACTIONS(2393), - [anon_sym_i16] = ACTIONS(2393), - [anon_sym_u32] = ACTIONS(2393), - [anon_sym_i32] = ACTIONS(2393), - [anon_sym_u64] = ACTIONS(2393), - [anon_sym_i64] = ACTIONS(2393), - [anon_sym_u128] = ACTIONS(2393), - [anon_sym_i128] = ACTIONS(2393), - [anon_sym_isize] = ACTIONS(2393), - [anon_sym_usize] = ACTIONS(2393), - [anon_sym_f32] = ACTIONS(2393), - [anon_sym_f64] = ACTIONS(2393), - [anon_sym_bool] = ACTIONS(2393), - [anon_sym_str] = ACTIONS(2393), - [anon_sym_char] = ACTIONS(2393), - [aux_sym__non_special_token_token1] = ACTIONS(2393), - [anon_sym_SQUOTE] = ACTIONS(2393), - [anon_sym_as] = ACTIONS(2393), - [anon_sym_async] = ACTIONS(2393), - [anon_sym_await] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_default] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [anon_sym_fn] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_impl] = ACTIONS(2393), - [anon_sym_let] = ACTIONS(2393), - [anon_sym_loop] = ACTIONS(2393), - [anon_sym_match] = ACTIONS(2393), - [anon_sym_mod] = ACTIONS(2393), - [anon_sym_pub] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(2393), - [anon_sym_trait] = ACTIONS(2393), - [anon_sym_type] = ACTIONS(2393), - [anon_sym_union] = ACTIONS(2393), - [anon_sym_unsafe] = ACTIONS(2393), - [anon_sym_use] = ACTIONS(2393), - [anon_sym_where] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [sym_mutable_specifier] = ACTIONS(2393), - [sym_integer_literal] = ACTIONS(2395), - [aux_sym_string_literal_token1] = ACTIONS(2395), - [sym_char_literal] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2393), - [sym_super] = ACTIONS(2393), - [sym_crate] = ACTIONS(2393), - [sym_metavariable] = ACTIONS(2395), - [sym_raw_string_literal] = ACTIONS(2395), - [sym_float_literal] = ACTIONS(2395), + [574] = { + [sym_identifier] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_RPAREN] = ACTIONS(2385), + [anon_sym_LBRACE] = ACTIONS(2385), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2385), + [anon_sym_RBRACK] = ACTIONS(2385), + [anon_sym_DOLLAR] = ACTIONS(2383), + [anon_sym_u8] = ACTIONS(2383), + [anon_sym_i8] = ACTIONS(2383), + [anon_sym_u16] = ACTIONS(2383), + [anon_sym_i16] = ACTIONS(2383), + [anon_sym_u32] = ACTIONS(2383), + [anon_sym_i32] = ACTIONS(2383), + [anon_sym_u64] = ACTIONS(2383), + [anon_sym_i64] = ACTIONS(2383), + [anon_sym_u128] = ACTIONS(2383), + [anon_sym_i128] = ACTIONS(2383), + [anon_sym_isize] = ACTIONS(2383), + [anon_sym_usize] = ACTIONS(2383), + [anon_sym_f32] = ACTIONS(2383), + [anon_sym_f64] = ACTIONS(2383), + [anon_sym_bool] = ACTIONS(2383), + [anon_sym_str] = ACTIONS(2383), + [anon_sym_char] = ACTIONS(2383), + [aux_sym__non_special_token_token1] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(2383), + [anon_sym_as] = ACTIONS(2383), + [anon_sym_async] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(2383), + [anon_sym_break] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2383), + [anon_sym_continue] = ACTIONS(2383), + [anon_sym_default] = ACTIONS(2383), + [anon_sym_enum] = ACTIONS(2383), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_impl] = ACTIONS(2383), + [anon_sym_let] = ACTIONS(2383), + [anon_sym_loop] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_mod] = ACTIONS(2383), + [anon_sym_pub] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2383), + [anon_sym_static] = ACTIONS(2383), + [anon_sym_struct] = ACTIONS(2383), + [anon_sym_trait] = ACTIONS(2383), + [anon_sym_type] = ACTIONS(2383), + [anon_sym_union] = ACTIONS(2383), + [anon_sym_unsafe] = ACTIONS(2383), + [anon_sym_use] = ACTIONS(2383), + [anon_sym_where] = ACTIONS(2383), + [anon_sym_while] = ACTIONS(2383), + [sym_mutable_specifier] = ACTIONS(2383), + [sym_integer_literal] = ACTIONS(2385), + [aux_sym_string_literal_token1] = ACTIONS(2385), + [sym_char_literal] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(2383), + [anon_sym_false] = ACTIONS(2383), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2383), + [sym_super] = ACTIONS(2383), + [sym_crate] = ACTIONS(2383), + [sym_metavariable] = ACTIONS(2385), + [sym_raw_string_literal] = ACTIONS(2385), + [sym_float_literal] = ACTIONS(2385), [sym_block_comment] = ACTIONS(3), }, - [583] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1853), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [575] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1788), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_RBRACK] = ACTIONS(2387), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [584] = { - [sym_parameter] = STATE(2315), - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2086), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), - [anon_sym_ref] = ACTIONS(716), + [576] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1788), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(2389), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(2365), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2369), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [585] = { + [577] = { + [sym_identifier] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_RPAREN] = ACTIONS(2393), + [anon_sym_LBRACE] = ACTIONS(2393), + [anon_sym_RBRACE] = ACTIONS(2393), + [anon_sym_LBRACK] = ACTIONS(2393), + [anon_sym_RBRACK] = ACTIONS(2393), + [anon_sym_DOLLAR] = ACTIONS(2391), + [anon_sym_u8] = ACTIONS(2391), + [anon_sym_i8] = ACTIONS(2391), + [anon_sym_u16] = ACTIONS(2391), + [anon_sym_i16] = ACTIONS(2391), + [anon_sym_u32] = ACTIONS(2391), + [anon_sym_i32] = ACTIONS(2391), + [anon_sym_u64] = ACTIONS(2391), + [anon_sym_i64] = ACTIONS(2391), + [anon_sym_u128] = ACTIONS(2391), + [anon_sym_i128] = ACTIONS(2391), + [anon_sym_isize] = ACTIONS(2391), + [anon_sym_usize] = ACTIONS(2391), + [anon_sym_f32] = ACTIONS(2391), + [anon_sym_f64] = ACTIONS(2391), + [anon_sym_bool] = ACTIONS(2391), + [anon_sym_str] = ACTIONS(2391), + [anon_sym_char] = ACTIONS(2391), + [aux_sym__non_special_token_token1] = ACTIONS(2391), + [anon_sym_SQUOTE] = ACTIONS(2391), + [anon_sym_as] = ACTIONS(2391), + [anon_sym_async] = ACTIONS(2391), + [anon_sym_await] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(2391), + [anon_sym_const] = ACTIONS(2391), + [anon_sym_continue] = ACTIONS(2391), + [anon_sym_default] = ACTIONS(2391), + [anon_sym_enum] = ACTIONS(2391), + [anon_sym_fn] = ACTIONS(2391), + [anon_sym_for] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2391), + [anon_sym_impl] = ACTIONS(2391), + [anon_sym_let] = ACTIONS(2391), + [anon_sym_loop] = ACTIONS(2391), + [anon_sym_match] = ACTIONS(2391), + [anon_sym_mod] = ACTIONS(2391), + [anon_sym_pub] = ACTIONS(2391), + [anon_sym_return] = ACTIONS(2391), + [anon_sym_static] = ACTIONS(2391), + [anon_sym_struct] = ACTIONS(2391), + [anon_sym_trait] = ACTIONS(2391), + [anon_sym_type] = ACTIONS(2391), + [anon_sym_union] = ACTIONS(2391), + [anon_sym_unsafe] = ACTIONS(2391), + [anon_sym_use] = ACTIONS(2391), + [anon_sym_where] = ACTIONS(2391), + [anon_sym_while] = ACTIONS(2391), + [sym_mutable_specifier] = ACTIONS(2391), + [sym_integer_literal] = ACTIONS(2393), + [aux_sym_string_literal_token1] = ACTIONS(2393), + [sym_char_literal] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(2391), + [anon_sym_false] = ACTIONS(2391), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2391), + [sym_super] = ACTIONS(2391), + [sym_crate] = ACTIONS(2391), + [sym_metavariable] = ACTIONS(2393), + [sym_raw_string_literal] = ACTIONS(2393), + [sym_float_literal] = ACTIONS(2393), + [sym_block_comment] = ACTIONS(3), + }, + [578] = { + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2397), + [anon_sym_RPAREN] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2397), + [anon_sym_RBRACK] = ACTIONS(2397), + [anon_sym_DOLLAR] = ACTIONS(2395), + [anon_sym_u8] = ACTIONS(2395), + [anon_sym_i8] = ACTIONS(2395), + [anon_sym_u16] = ACTIONS(2395), + [anon_sym_i16] = ACTIONS(2395), + [anon_sym_u32] = ACTIONS(2395), + [anon_sym_i32] = ACTIONS(2395), + [anon_sym_u64] = ACTIONS(2395), + [anon_sym_i64] = ACTIONS(2395), + [anon_sym_u128] = ACTIONS(2395), + [anon_sym_i128] = ACTIONS(2395), + [anon_sym_isize] = ACTIONS(2395), + [anon_sym_usize] = ACTIONS(2395), + [anon_sym_f32] = ACTIONS(2395), + [anon_sym_f64] = ACTIONS(2395), + [anon_sym_bool] = ACTIONS(2395), + [anon_sym_str] = ACTIONS(2395), + [anon_sym_char] = ACTIONS(2395), + [aux_sym__non_special_token_token1] = ACTIONS(2395), + [anon_sym_SQUOTE] = ACTIONS(2395), + [anon_sym_as] = ACTIONS(2395), + [anon_sym_async] = ACTIONS(2395), + [anon_sym_await] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_fn] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_impl] = ACTIONS(2395), + [anon_sym_let] = ACTIONS(2395), + [anon_sym_loop] = ACTIONS(2395), + [anon_sym_match] = ACTIONS(2395), + [anon_sym_mod] = ACTIONS(2395), + [anon_sym_pub] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_trait] = ACTIONS(2395), + [anon_sym_type] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_unsafe] = ACTIONS(2395), + [anon_sym_use] = ACTIONS(2395), + [anon_sym_where] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [sym_mutable_specifier] = ACTIONS(2395), + [sym_integer_literal] = ACTIONS(2397), + [aux_sym_string_literal_token1] = ACTIONS(2397), + [sym_char_literal] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(2395), + [anon_sym_false] = ACTIONS(2395), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2395), + [sym_super] = ACTIONS(2395), + [sym_crate] = ACTIONS(2395), + [sym_metavariable] = ACTIONS(2397), + [sym_raw_string_literal] = ACTIONS(2397), + [sym_float_literal] = ACTIONS(2397), + [sym_block_comment] = ACTIONS(3), + }, + [579] = { [sym_identifier] = ACTIONS(2399), [anon_sym_LPAREN] = ACTIONS(2401), [anon_sym_RPAREN] = ACTIONS(2401), @@ -68411,7 +67311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2401), [anon_sym_true] = ACTIONS(2399), [anon_sym_false] = ACTIONS(2399), - [sym_line_comment] = ACTIONS(1097), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2399), [sym_super] = ACTIONS(2399), [sym_crate] = ACTIONS(2399), @@ -68420,147 +67320,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2401), [sym_block_comment] = ACTIONS(3), }, - [586] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1853), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_RBRACK] = ACTIONS(2403), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [587] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1853), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), + [580] = { + [sym_identifier] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2405), [anon_sym_RPAREN] = ACTIONS(2405), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_RBRACE] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_RBRACK] = ACTIONS(2405), + [anon_sym_DOLLAR] = ACTIONS(2403), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2403), + [anon_sym_SQUOTE] = ACTIONS(2403), + [anon_sym_as] = ACTIONS(2403), + [anon_sym_async] = ACTIONS(2403), + [anon_sym_await] = 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_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_where] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [sym_mutable_specifier] = ACTIONS(2403), + [sym_integer_literal] = ACTIONS(2405), + [aux_sym_string_literal_token1] = ACTIONS(2405), + [sym_char_literal] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(2403), + [anon_sym_false] = ACTIONS(2403), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2403), + [sym_super] = ACTIONS(2403), + [sym_crate] = ACTIONS(2403), + [sym_metavariable] = ACTIONS(2405), + [sym_raw_string_literal] = ACTIONS(2405), + [sym_float_literal] = ACTIONS(2405), [sym_block_comment] = ACTIONS(3), }, - [588] = { + [581] = { [sym_identifier] = ACTIONS(2407), [anon_sym_LPAREN] = ACTIONS(2409), [anon_sym_RPAREN] = ACTIONS(2409), @@ -68621,7 +67451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2409), [anon_sym_true] = ACTIONS(2407), [anon_sym_false] = ACTIONS(2407), - [sym_line_comment] = ACTIONS(1097), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2407), [sym_super] = ACTIONS(2407), [sym_crate] = ACTIONS(2407), @@ -68630,7 +67460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2409), [sym_block_comment] = ACTIONS(3), }, - [589] = { + [582] = { [sym_identifier] = ACTIONS(2411), [anon_sym_LPAREN] = ACTIONS(2413), [anon_sym_RPAREN] = ACTIONS(2413), @@ -68691,7 +67521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2413), [anon_sym_true] = ACTIONS(2411), [anon_sym_false] = ACTIONS(2411), - [sym_line_comment] = ACTIONS(1097), + [sym_line_comment] = ACTIONS(1069), [sym_self] = ACTIONS(2411), [sym_super] = ACTIONS(2411), [sym_crate] = ACTIONS(2411), @@ -68700,4741 +67530,3838 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2413), [sym_block_comment] = ACTIONS(3), }, + [583] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1788), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [584] = { + [sym_function_modifiers] = STATE(2432), + [sym_const_parameter] = STATE(2116), + [sym_constrained_type_parameter] = STATE(1757), + [sym_optional_type_parameter] = STATE(2116), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1866), + [sym_bracketed_type] = STATE(2367), + [sym_qualified_type] = STATE(2506), + [sym_lifetime] = STATE(1627), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(2419), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(2421), + [sym_block_comment] = ACTIONS(3), + }, + [585] = { + [sym_parameter] = STATE(2284), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2001), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(2327), + [anon_sym_union] = ACTIONS(2327), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(2329), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2333), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [586] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1439), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [587] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2153), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [588] = { + [sym_identifier] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_RPAREN] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_RBRACE] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_RBRACK] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(462), + [anon_sym_u8] = ACTIONS(464), + [anon_sym_i8] = ACTIONS(464), + [anon_sym_u16] = ACTIONS(464), + [anon_sym_i16] = ACTIONS(464), + [anon_sym_u32] = ACTIONS(464), + [anon_sym_i32] = ACTIONS(464), + [anon_sym_u64] = ACTIONS(464), + [anon_sym_i64] = ACTIONS(464), + [anon_sym_u128] = ACTIONS(464), + [anon_sym_i128] = ACTIONS(464), + [anon_sym_isize] = ACTIONS(464), + [anon_sym_usize] = ACTIONS(464), + [anon_sym_f32] = ACTIONS(464), + [anon_sym_f64] = ACTIONS(464), + [anon_sym_bool] = ACTIONS(464), + [anon_sym_str] = ACTIONS(464), + [anon_sym_char] = ACTIONS(464), + [aux_sym__non_special_token_token1] = ACTIONS(464), + [anon_sym_SQUOTE] = ACTIONS(464), + [anon_sym_as] = ACTIONS(464), + [anon_sym_async] = ACTIONS(464), + [anon_sym_await] = ACTIONS(464), + [anon_sym_break] = ACTIONS(464), + [anon_sym_const] = ACTIONS(464), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_default] = ACTIONS(464), + [anon_sym_enum] = ACTIONS(464), + [anon_sym_fn] = ACTIONS(464), + [anon_sym_for] = ACTIONS(464), + [anon_sym_if] = ACTIONS(464), + [anon_sym_impl] = ACTIONS(464), + [anon_sym_let] = ACTIONS(464), + [anon_sym_loop] = ACTIONS(464), + [anon_sym_match] = ACTIONS(464), + [anon_sym_mod] = ACTIONS(464), + [anon_sym_pub] = ACTIONS(464), + [anon_sym_return] = ACTIONS(464), + [anon_sym_static] = ACTIONS(464), + [anon_sym_struct] = ACTIONS(464), + [anon_sym_trait] = ACTIONS(464), + [anon_sym_type] = ACTIONS(464), + [anon_sym_union] = ACTIONS(464), + [anon_sym_unsafe] = ACTIONS(464), + [anon_sym_use] = ACTIONS(464), + [anon_sym_where] = ACTIONS(464), + [anon_sym_while] = ACTIONS(464), + [sym_mutable_specifier] = ACTIONS(464), + [sym_integer_literal] = ACTIONS(462), + [aux_sym_string_literal_token1] = ACTIONS(462), + [sym_char_literal] = ACTIONS(462), + [anon_sym_true] = ACTIONS(464), + [anon_sym_false] = ACTIONS(464), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(464), + [sym_super] = ACTIONS(464), + [sym_crate] = ACTIONS(464), + [sym_raw_string_literal] = ACTIONS(462), + [sym_float_literal] = ACTIONS(462), + [sym_block_comment] = ACTIONS(3), + }, + [589] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1784), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, [590] = { - [sym_function_modifiers] = STATE(2420), - [sym_const_parameter] = STATE(2096), - [sym_constrained_type_parameter] = STATE(1816), - [sym_optional_type_parameter] = STATE(2096), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1988), - [sym_bracketed_type] = STATE(2383), - [sym_qualified_type] = STATE(2348), - [sym_lifetime] = STATE(1702), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(2417), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [sym_function_modifiers] = STATE(2432), + [sym_higher_ranked_trait_bound] = STATE(1574), + [sym_removed_trait_bound] = STATE(1574), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1577), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(1576), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(2423), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(2419), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [591] = { - [sym_identifier] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_RPAREN] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2423), - [anon_sym_RBRACK] = ACTIONS(2423), - [anon_sym_DOLLAR] = ACTIONS(2421), - [anon_sym_u8] = ACTIONS(2421), - [anon_sym_i8] = ACTIONS(2421), - [anon_sym_u16] = ACTIONS(2421), - [anon_sym_i16] = ACTIONS(2421), - [anon_sym_u32] = ACTIONS(2421), - [anon_sym_i32] = ACTIONS(2421), - [anon_sym_u64] = ACTIONS(2421), - [anon_sym_i64] = ACTIONS(2421), - [anon_sym_u128] = ACTIONS(2421), - [anon_sym_i128] = ACTIONS(2421), - [anon_sym_isize] = ACTIONS(2421), - [anon_sym_usize] = ACTIONS(2421), - [anon_sym_f32] = ACTIONS(2421), - [anon_sym_f64] = ACTIONS(2421), - [anon_sym_bool] = ACTIONS(2421), - [anon_sym_str] = ACTIONS(2421), - [anon_sym_char] = ACTIONS(2421), - [aux_sym__non_special_token_token1] = ACTIONS(2421), - [anon_sym_SQUOTE] = ACTIONS(2421), - [anon_sym_as] = ACTIONS(2421), - [anon_sym_async] = ACTIONS(2421), - [anon_sym_await] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_default] = ACTIONS(2421), - [anon_sym_enum] = ACTIONS(2421), - [anon_sym_fn] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_impl] = ACTIONS(2421), - [anon_sym_let] = ACTIONS(2421), - [anon_sym_loop] = ACTIONS(2421), - [anon_sym_match] = ACTIONS(2421), - [anon_sym_mod] = ACTIONS(2421), - [anon_sym_pub] = ACTIONS(2421), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2421), - [anon_sym_trait] = ACTIONS(2421), - [anon_sym_type] = ACTIONS(2421), - [anon_sym_union] = ACTIONS(2421), - [anon_sym_unsafe] = ACTIONS(2421), - [anon_sym_use] = ACTIONS(2421), - [anon_sym_where] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [sym_mutable_specifier] = ACTIONS(2421), - [sym_integer_literal] = ACTIONS(2423), - [aux_sym_string_literal_token1] = ACTIONS(2423), - [sym_char_literal] = ACTIONS(2423), - [anon_sym_true] = ACTIONS(2421), - [anon_sym_false] = ACTIONS(2421), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2421), - [sym_super] = ACTIONS(2421), - [sym_crate] = ACTIONS(2421), - [sym_metavariable] = ACTIONS(2423), - [sym_raw_string_literal] = ACTIONS(2423), - [sym_float_literal] = ACTIONS(2423), + [sym_function_modifiers] = STATE(2432), + [sym_higher_ranked_trait_bound] = STATE(1574), + [sym_removed_trait_bound] = STATE(1574), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1577), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(1579), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(2423), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [592] = { - [sym_identifier] = ACTIONS(2425), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_RPAREN] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_RBRACE] = ACTIONS(2427), - [anon_sym_LBRACK] = ACTIONS(2427), - [anon_sym_RBRACK] = ACTIONS(2427), - [anon_sym_DOLLAR] = ACTIONS(2425), - [anon_sym_u8] = ACTIONS(2425), - [anon_sym_i8] = ACTIONS(2425), - [anon_sym_u16] = ACTIONS(2425), - [anon_sym_i16] = ACTIONS(2425), - [anon_sym_u32] = ACTIONS(2425), - [anon_sym_i32] = ACTIONS(2425), - [anon_sym_u64] = ACTIONS(2425), - [anon_sym_i64] = ACTIONS(2425), - [anon_sym_u128] = ACTIONS(2425), - [anon_sym_i128] = ACTIONS(2425), - [anon_sym_isize] = ACTIONS(2425), - [anon_sym_usize] = ACTIONS(2425), - [anon_sym_f32] = ACTIONS(2425), - [anon_sym_f64] = ACTIONS(2425), - [anon_sym_bool] = ACTIONS(2425), - [anon_sym_str] = ACTIONS(2425), - [anon_sym_char] = ACTIONS(2425), - [aux_sym__non_special_token_token1] = ACTIONS(2425), - [anon_sym_SQUOTE] = ACTIONS(2425), - [anon_sym_as] = ACTIONS(2425), - [anon_sym_async] = ACTIONS(2425), - [anon_sym_await] = ACTIONS(2425), - [anon_sym_break] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [anon_sym_continue] = ACTIONS(2425), - [anon_sym_default] = ACTIONS(2425), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_fn] = ACTIONS(2425), + [sym_function_modifiers] = STATE(2432), + [sym_higher_ranked_trait_bound] = STATE(1574), + [sym_removed_trait_bound] = STATE(1574), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1575), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(1576), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(2423), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_impl] = ACTIONS(2425), - [anon_sym_let] = ACTIONS(2425), - [anon_sym_loop] = ACTIONS(2425), - [anon_sym_match] = ACTIONS(2425), - [anon_sym_mod] = ACTIONS(2425), - [anon_sym_pub] = ACTIONS(2425), - [anon_sym_return] = ACTIONS(2425), - [anon_sym_static] = ACTIONS(2425), - [anon_sym_struct] = ACTIONS(2425), - [anon_sym_trait] = ACTIONS(2425), - [anon_sym_type] = ACTIONS(2425), - [anon_sym_union] = ACTIONS(2425), - [anon_sym_unsafe] = ACTIONS(2425), - [anon_sym_use] = ACTIONS(2425), - [anon_sym_where] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [sym_mutable_specifier] = ACTIONS(2425), - [sym_integer_literal] = ACTIONS(2427), - [aux_sym_string_literal_token1] = ACTIONS(2427), - [sym_char_literal] = ACTIONS(2427), - [anon_sym_true] = ACTIONS(2425), - [anon_sym_false] = ACTIONS(2425), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2425), - [sym_super] = ACTIONS(2425), - [sym_crate] = ACTIONS(2425), - [sym_metavariable] = ACTIONS(2427), - [sym_raw_string_literal] = ACTIONS(2427), - [sym_float_literal] = ACTIONS(2427), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [593] = { - [sym_identifier] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_RPAREN] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_RBRACK] = ACTIONS(2431), - [anon_sym_DOLLAR] = ACTIONS(2429), - [anon_sym_u8] = ACTIONS(2429), - [anon_sym_i8] = ACTIONS(2429), - [anon_sym_u16] = ACTIONS(2429), - [anon_sym_i16] = ACTIONS(2429), - [anon_sym_u32] = ACTIONS(2429), - [anon_sym_i32] = ACTIONS(2429), - [anon_sym_u64] = ACTIONS(2429), - [anon_sym_i64] = ACTIONS(2429), - [anon_sym_u128] = ACTIONS(2429), - [anon_sym_i128] = ACTIONS(2429), - [anon_sym_isize] = ACTIONS(2429), - [anon_sym_usize] = ACTIONS(2429), - [anon_sym_f32] = ACTIONS(2429), - [anon_sym_f64] = ACTIONS(2429), - [anon_sym_bool] = ACTIONS(2429), - [anon_sym_str] = ACTIONS(2429), - [anon_sym_char] = ACTIONS(2429), - [aux_sym__non_special_token_token1] = ACTIONS(2429), - [anon_sym_SQUOTE] = ACTIONS(2429), - [anon_sym_as] = ACTIONS(2429), - [anon_sym_async] = ACTIONS(2429), - [anon_sym_await] = ACTIONS(2429), - [anon_sym_break] = ACTIONS(2429), - [anon_sym_const] = ACTIONS(2429), - [anon_sym_continue] = ACTIONS(2429), - [anon_sym_default] = ACTIONS(2429), - [anon_sym_enum] = ACTIONS(2429), - [anon_sym_fn] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_impl] = ACTIONS(2429), - [anon_sym_let] = ACTIONS(2429), - [anon_sym_loop] = ACTIONS(2429), - [anon_sym_match] = ACTIONS(2429), - [anon_sym_mod] = ACTIONS(2429), - [anon_sym_pub] = ACTIONS(2429), - [anon_sym_return] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2429), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_trait] = ACTIONS(2429), - [anon_sym_type] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2429), - [anon_sym_unsafe] = ACTIONS(2429), - [anon_sym_use] = ACTIONS(2429), - [anon_sym_where] = ACTIONS(2429), - [anon_sym_while] = ACTIONS(2429), - [sym_mutable_specifier] = ACTIONS(2429), - [sym_integer_literal] = ACTIONS(2431), - [aux_sym_string_literal_token1] = ACTIONS(2431), - [sym_char_literal] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(2429), - [anon_sym_false] = ACTIONS(2429), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2429), - [sym_super] = ACTIONS(2429), - [sym_crate] = ACTIONS(2429), - [sym_metavariable] = ACTIONS(2431), - [sym_raw_string_literal] = ACTIONS(2431), - [sym_float_literal] = ACTIONS(2431), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2266), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [594] = { - [sym_identifier] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_RBRACK] = ACTIONS(2435), - [anon_sym_DOLLAR] = ACTIONS(2433), - [anon_sym_u8] = ACTIONS(2433), - [anon_sym_i8] = ACTIONS(2433), - [anon_sym_u16] = ACTIONS(2433), - [anon_sym_i16] = ACTIONS(2433), - [anon_sym_u32] = ACTIONS(2433), - [anon_sym_i32] = ACTIONS(2433), - [anon_sym_u64] = ACTIONS(2433), - [anon_sym_i64] = ACTIONS(2433), - [anon_sym_u128] = ACTIONS(2433), - [anon_sym_i128] = ACTIONS(2433), - [anon_sym_isize] = ACTIONS(2433), - [anon_sym_usize] = ACTIONS(2433), - [anon_sym_f32] = ACTIONS(2433), - [anon_sym_f64] = ACTIONS(2433), - [anon_sym_bool] = ACTIONS(2433), - [anon_sym_str] = ACTIONS(2433), - [anon_sym_char] = ACTIONS(2433), - [aux_sym__non_special_token_token1] = ACTIONS(2433), - [anon_sym_SQUOTE] = ACTIONS(2433), - [anon_sym_as] = ACTIONS(2433), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_await] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_fn] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_impl] = ACTIONS(2433), - [anon_sym_let] = ACTIONS(2433), - [anon_sym_loop] = ACTIONS(2433), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_mod] = ACTIONS(2433), - [anon_sym_pub] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_trait] = ACTIONS(2433), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_union] = ACTIONS(2433), - [anon_sym_unsafe] = ACTIONS(2433), - [anon_sym_use] = ACTIONS(2433), - [anon_sym_where] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [sym_mutable_specifier] = ACTIONS(2433), - [sym_integer_literal] = ACTIONS(2435), - [aux_sym_string_literal_token1] = ACTIONS(2435), - [sym_char_literal] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2433), - [anon_sym_false] = ACTIONS(2433), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2433), - [sym_super] = ACTIONS(2433), - [sym_crate] = ACTIONS(2433), - [sym_metavariable] = ACTIONS(2435), - [sym_raw_string_literal] = ACTIONS(2435), - [sym_float_literal] = ACTIONS(2435), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1803), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(2427), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [595] = { - [sym_identifier] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_RPAREN] = ACTIONS(2439), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2439), - [anon_sym_RBRACK] = ACTIONS(2439), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_u8] = ACTIONS(2437), - [anon_sym_i8] = ACTIONS(2437), - [anon_sym_u16] = ACTIONS(2437), - [anon_sym_i16] = ACTIONS(2437), - [anon_sym_u32] = ACTIONS(2437), - [anon_sym_i32] = ACTIONS(2437), - [anon_sym_u64] = ACTIONS(2437), - [anon_sym_i64] = ACTIONS(2437), - [anon_sym_u128] = ACTIONS(2437), - [anon_sym_i128] = ACTIONS(2437), - [anon_sym_isize] = ACTIONS(2437), - [anon_sym_usize] = ACTIONS(2437), - [anon_sym_f32] = ACTIONS(2437), - [anon_sym_f64] = ACTIONS(2437), - [anon_sym_bool] = ACTIONS(2437), - [anon_sym_str] = ACTIONS(2437), - [anon_sym_char] = ACTIONS(2437), - [aux_sym__non_special_token_token1] = ACTIONS(2437), - [anon_sym_SQUOTE] = ACTIONS(2437), - [anon_sym_as] = ACTIONS(2437), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_const] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_default] = ACTIONS(2437), - [anon_sym_enum] = ACTIONS(2437), - [anon_sym_fn] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_impl] = ACTIONS(2437), - [anon_sym_let] = ACTIONS(2437), - [anon_sym_loop] = ACTIONS(2437), - [anon_sym_match] = ACTIONS(2437), - [anon_sym_mod] = ACTIONS(2437), - [anon_sym_pub] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_static] = ACTIONS(2437), - [anon_sym_struct] = ACTIONS(2437), - [anon_sym_trait] = ACTIONS(2437), - [anon_sym_type] = ACTIONS(2437), - [anon_sym_union] = ACTIONS(2437), - [anon_sym_unsafe] = ACTIONS(2437), - [anon_sym_use] = ACTIONS(2437), - [anon_sym_where] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [sym_mutable_specifier] = ACTIONS(2437), - [sym_integer_literal] = ACTIONS(2439), - [aux_sym_string_literal_token1] = ACTIONS(2439), - [sym_char_literal] = ACTIONS(2439), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2437), - [sym_super] = ACTIONS(2437), - [sym_crate] = ACTIONS(2437), - [sym_metavariable] = ACTIONS(2439), - [sym_raw_string_literal] = ACTIONS(2439), - [sym_float_literal] = ACTIONS(2439), + [sym_identifier] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2413), + [anon_sym_RPAREN] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_RBRACE] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2413), + [anon_sym_RBRACK] = ACTIONS(2413), + [anon_sym_DOLLAR] = ACTIONS(2413), + [anon_sym_u8] = ACTIONS(2411), + [anon_sym_i8] = ACTIONS(2411), + [anon_sym_u16] = ACTIONS(2411), + [anon_sym_i16] = ACTIONS(2411), + [anon_sym_u32] = ACTIONS(2411), + [anon_sym_i32] = ACTIONS(2411), + [anon_sym_u64] = ACTIONS(2411), + [anon_sym_i64] = ACTIONS(2411), + [anon_sym_u128] = ACTIONS(2411), + [anon_sym_i128] = ACTIONS(2411), + [anon_sym_isize] = ACTIONS(2411), + [anon_sym_usize] = ACTIONS(2411), + [anon_sym_f32] = ACTIONS(2411), + [anon_sym_f64] = ACTIONS(2411), + [anon_sym_bool] = ACTIONS(2411), + [anon_sym_str] = ACTIONS(2411), + [anon_sym_char] = ACTIONS(2411), + [aux_sym__non_special_token_token1] = ACTIONS(2411), + [anon_sym_SQUOTE] = ACTIONS(2411), + [anon_sym_as] = ACTIONS(2411), + [anon_sym_async] = ACTIONS(2411), + [anon_sym_await] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_default] = ACTIONS(2411), + [anon_sym_enum] = ACTIONS(2411), + [anon_sym_fn] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_impl] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2411), + [anon_sym_loop] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_mod] = ACTIONS(2411), + [anon_sym_pub] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_struct] = ACTIONS(2411), + [anon_sym_trait] = ACTIONS(2411), + [anon_sym_type] = ACTIONS(2411), + [anon_sym_union] = ACTIONS(2411), + [anon_sym_unsafe] = ACTIONS(2411), + [anon_sym_use] = ACTIONS(2411), + [anon_sym_where] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [sym_mutable_specifier] = ACTIONS(2411), + [sym_integer_literal] = ACTIONS(2413), + [aux_sym_string_literal_token1] = ACTIONS(2413), + [sym_char_literal] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(2411), + [anon_sym_false] = ACTIONS(2411), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2411), + [sym_super] = ACTIONS(2411), + [sym_crate] = ACTIONS(2411), + [sym_raw_string_literal] = ACTIONS(2413), + [sym_float_literal] = ACTIONS(2413), [sym_block_comment] = ACTIONS(3), }, [596] = { - [sym_identifier] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_RBRACK] = ACTIONS(2443), - [anon_sym_DOLLAR] = ACTIONS(2441), - [anon_sym_u8] = ACTIONS(2441), - [anon_sym_i8] = ACTIONS(2441), - [anon_sym_u16] = ACTIONS(2441), - [anon_sym_i16] = ACTIONS(2441), - [anon_sym_u32] = ACTIONS(2441), - [anon_sym_i32] = ACTIONS(2441), - [anon_sym_u64] = ACTIONS(2441), - [anon_sym_i64] = ACTIONS(2441), - [anon_sym_u128] = ACTIONS(2441), - [anon_sym_i128] = ACTIONS(2441), - [anon_sym_isize] = ACTIONS(2441), - [anon_sym_usize] = ACTIONS(2441), - [anon_sym_f32] = ACTIONS(2441), - [anon_sym_f64] = ACTIONS(2441), - [anon_sym_bool] = ACTIONS(2441), - [anon_sym_str] = ACTIONS(2441), - [anon_sym_char] = ACTIONS(2441), - [aux_sym__non_special_token_token1] = ACTIONS(2441), - [anon_sym_SQUOTE] = ACTIONS(2441), - [anon_sym_as] = ACTIONS(2441), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_await] = ACTIONS(2441), - [anon_sym_break] = ACTIONS(2441), - [anon_sym_const] = ACTIONS(2441), - [anon_sym_continue] = ACTIONS(2441), - [anon_sym_default] = ACTIONS(2441), - [anon_sym_enum] = ACTIONS(2441), - [anon_sym_fn] = ACTIONS(2441), - [anon_sym_for] = ACTIONS(2441), - [anon_sym_if] = ACTIONS(2441), - [anon_sym_impl] = ACTIONS(2441), - [anon_sym_let] = ACTIONS(2441), - [anon_sym_loop] = ACTIONS(2441), - [anon_sym_match] = ACTIONS(2441), - [anon_sym_mod] = ACTIONS(2441), - [anon_sym_pub] = ACTIONS(2441), - [anon_sym_return] = ACTIONS(2441), - [anon_sym_static] = ACTIONS(2441), - [anon_sym_struct] = ACTIONS(2441), - [anon_sym_trait] = ACTIONS(2441), - [anon_sym_type] = ACTIONS(2441), - [anon_sym_union] = ACTIONS(2441), - [anon_sym_unsafe] = ACTIONS(2441), - [anon_sym_use] = ACTIONS(2441), - [anon_sym_where] = ACTIONS(2441), - [anon_sym_while] = ACTIONS(2441), - [sym_mutable_specifier] = ACTIONS(2441), - [sym_integer_literal] = ACTIONS(2443), - [aux_sym_string_literal_token1] = ACTIONS(2443), - [sym_char_literal] = ACTIONS(2443), - [anon_sym_true] = ACTIONS(2441), - [anon_sym_false] = ACTIONS(2441), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2441), - [sym_super] = ACTIONS(2441), - [sym_crate] = ACTIONS(2441), - [sym_metavariable] = ACTIONS(2443), - [sym_raw_string_literal] = ACTIONS(2443), - [sym_float_literal] = ACTIONS(2443), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2144), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [597] = { - [sym_identifier] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_RPAREN] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_RBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2445), - [anon_sym_u8] = ACTIONS(2445), - [anon_sym_i8] = ACTIONS(2445), - [anon_sym_u16] = ACTIONS(2445), - [anon_sym_i16] = ACTIONS(2445), - [anon_sym_u32] = ACTIONS(2445), - [anon_sym_i32] = ACTIONS(2445), - [anon_sym_u64] = ACTIONS(2445), - [anon_sym_i64] = ACTIONS(2445), - [anon_sym_u128] = ACTIONS(2445), - [anon_sym_i128] = ACTIONS(2445), - [anon_sym_isize] = ACTIONS(2445), - [anon_sym_usize] = ACTIONS(2445), - [anon_sym_f32] = ACTIONS(2445), - [anon_sym_f64] = ACTIONS(2445), - [anon_sym_bool] = ACTIONS(2445), - [anon_sym_str] = ACTIONS(2445), - [anon_sym_char] = ACTIONS(2445), - [aux_sym__non_special_token_token1] = ACTIONS(2445), - [anon_sym_SQUOTE] = ACTIONS(2445), - [anon_sym_as] = ACTIONS(2445), - [anon_sym_async] = ACTIONS(2445), - [anon_sym_await] = ACTIONS(2445), - [anon_sym_break] = ACTIONS(2445), - [anon_sym_const] = ACTIONS(2445), - [anon_sym_continue] = ACTIONS(2445), - [anon_sym_default] = ACTIONS(2445), - [anon_sym_enum] = ACTIONS(2445), - [anon_sym_fn] = ACTIONS(2445), - [anon_sym_for] = ACTIONS(2445), - [anon_sym_if] = ACTIONS(2445), - [anon_sym_impl] = ACTIONS(2445), - [anon_sym_let] = ACTIONS(2445), - [anon_sym_loop] = ACTIONS(2445), - [anon_sym_match] = ACTIONS(2445), - [anon_sym_mod] = ACTIONS(2445), - [anon_sym_pub] = ACTIONS(2445), - [anon_sym_return] = ACTIONS(2445), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_struct] = ACTIONS(2445), - [anon_sym_trait] = ACTIONS(2445), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_union] = ACTIONS(2445), - [anon_sym_unsafe] = ACTIONS(2445), - [anon_sym_use] = ACTIONS(2445), - [anon_sym_where] = ACTIONS(2445), - [anon_sym_while] = ACTIONS(2445), - [sym_mutable_specifier] = ACTIONS(2445), - [sym_integer_literal] = ACTIONS(2447), - [aux_sym_string_literal_token1] = ACTIONS(2447), - [sym_char_literal] = ACTIONS(2447), - [anon_sym_true] = ACTIONS(2445), - [anon_sym_false] = ACTIONS(2445), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2445), - [sym_super] = ACTIONS(2445), - [sym_crate] = ACTIONS(2445), - [sym_metavariable] = ACTIONS(2447), - [sym_raw_string_literal] = ACTIONS(2447), - [sym_float_literal] = ACTIONS(2447), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2060), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [598] = { - [sym_identifier] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_RPAREN] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_LBRACK] = ACTIONS(2451), - [anon_sym_RBRACK] = ACTIONS(2451), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_u8] = ACTIONS(2449), - [anon_sym_i8] = ACTIONS(2449), - [anon_sym_u16] = ACTIONS(2449), - [anon_sym_i16] = ACTIONS(2449), - [anon_sym_u32] = ACTIONS(2449), - [anon_sym_i32] = ACTIONS(2449), - [anon_sym_u64] = ACTIONS(2449), - [anon_sym_i64] = ACTIONS(2449), - [anon_sym_u128] = ACTIONS(2449), - [anon_sym_i128] = ACTIONS(2449), - [anon_sym_isize] = ACTIONS(2449), - [anon_sym_usize] = ACTIONS(2449), - [anon_sym_f32] = ACTIONS(2449), - [anon_sym_f64] = ACTIONS(2449), - [anon_sym_bool] = ACTIONS(2449), - [anon_sym_str] = ACTIONS(2449), - [anon_sym_char] = ACTIONS(2449), - [aux_sym__non_special_token_token1] = ACTIONS(2449), - [anon_sym_SQUOTE] = ACTIONS(2449), - [anon_sym_as] = ACTIONS(2449), - [anon_sym_async] = ACTIONS(2449), - [anon_sym_await] = ACTIONS(2449), - [anon_sym_break] = ACTIONS(2449), - [anon_sym_const] = ACTIONS(2449), - [anon_sym_continue] = ACTIONS(2449), - [anon_sym_default] = ACTIONS(2449), - [anon_sym_enum] = ACTIONS(2449), - [anon_sym_fn] = ACTIONS(2449), - [anon_sym_for] = ACTIONS(2449), - [anon_sym_if] = ACTIONS(2449), - [anon_sym_impl] = ACTIONS(2449), - [anon_sym_let] = ACTIONS(2449), - [anon_sym_loop] = ACTIONS(2449), - [anon_sym_match] = ACTIONS(2449), - [anon_sym_mod] = ACTIONS(2449), - [anon_sym_pub] = ACTIONS(2449), - [anon_sym_return] = ACTIONS(2449), - [anon_sym_static] = ACTIONS(2449), - [anon_sym_struct] = ACTIONS(2449), - [anon_sym_trait] = ACTIONS(2449), - [anon_sym_type] = ACTIONS(2449), - [anon_sym_union] = ACTIONS(2449), - [anon_sym_unsafe] = ACTIONS(2449), - [anon_sym_use] = ACTIONS(2449), - [anon_sym_where] = ACTIONS(2449), - [anon_sym_while] = ACTIONS(2449), - [sym_mutable_specifier] = ACTIONS(2449), - [sym_integer_literal] = ACTIONS(2451), - [aux_sym_string_literal_token1] = ACTIONS(2451), - [sym_char_literal] = ACTIONS(2451), - [anon_sym_true] = ACTIONS(2449), - [anon_sym_false] = ACTIONS(2449), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2449), - [sym_super] = ACTIONS(2449), - [sym_crate] = ACTIONS(2449), - [sym_metavariable] = ACTIONS(2451), - [sym_raw_string_literal] = ACTIONS(2451), - [sym_float_literal] = ACTIONS(2451), - [sym_block_comment] = ACTIONS(3), - }, - [599] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1502), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [sym_identifier] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(2409), + [anon_sym_RPAREN] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_RBRACE] = ACTIONS(2409), + [anon_sym_LBRACK] = ACTIONS(2409), + [anon_sym_RBRACK] = ACTIONS(2409), + [anon_sym_DOLLAR] = ACTIONS(2409), + [anon_sym_u8] = ACTIONS(2407), + [anon_sym_i8] = ACTIONS(2407), + [anon_sym_u16] = ACTIONS(2407), + [anon_sym_i16] = ACTIONS(2407), + [anon_sym_u32] = ACTIONS(2407), + [anon_sym_i32] = ACTIONS(2407), + [anon_sym_u64] = ACTIONS(2407), + [anon_sym_i64] = ACTIONS(2407), + [anon_sym_u128] = ACTIONS(2407), + [anon_sym_i128] = ACTIONS(2407), + [anon_sym_isize] = ACTIONS(2407), + [anon_sym_usize] = ACTIONS(2407), + [anon_sym_f32] = ACTIONS(2407), + [anon_sym_f64] = ACTIONS(2407), + [anon_sym_bool] = ACTIONS(2407), + [anon_sym_str] = ACTIONS(2407), + [anon_sym_char] = ACTIONS(2407), + [aux_sym__non_special_token_token1] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_as] = ACTIONS(2407), + [anon_sym_async] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(2407), + [anon_sym_const] = ACTIONS(2407), + [anon_sym_continue] = ACTIONS(2407), + [anon_sym_default] = ACTIONS(2407), + [anon_sym_enum] = ACTIONS(2407), + [anon_sym_fn] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2407), + [anon_sym_if] = ACTIONS(2407), + [anon_sym_impl] = ACTIONS(2407), + [anon_sym_let] = ACTIONS(2407), + [anon_sym_loop] = ACTIONS(2407), + [anon_sym_match] = ACTIONS(2407), + [anon_sym_mod] = ACTIONS(2407), + [anon_sym_pub] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2407), + [anon_sym_static] = ACTIONS(2407), + [anon_sym_struct] = ACTIONS(2407), + [anon_sym_trait] = ACTIONS(2407), + [anon_sym_type] = ACTIONS(2407), + [anon_sym_union] = ACTIONS(2407), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2407), + [anon_sym_where] = ACTIONS(2407), + [anon_sym_while] = ACTIONS(2407), + [sym_mutable_specifier] = ACTIONS(2407), + [sym_integer_literal] = ACTIONS(2409), + [aux_sym_string_literal_token1] = ACTIONS(2409), + [sym_char_literal] = ACTIONS(2409), + [anon_sym_true] = ACTIONS(2407), + [anon_sym_false] = ACTIONS(2407), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2407), + [sym_super] = ACTIONS(2407), + [sym_crate] = ACTIONS(2407), + [sym_raw_string_literal] = ACTIONS(2409), + [sym_float_literal] = ACTIONS(2409), + [sym_block_comment] = ACTIONS(3), + }, + [599] = { + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1450), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [600] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2057), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2147), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [601] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2301), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1449), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [602] = { - [sym_function_modifiers] = STATE(2420), - [sym_higher_ranked_trait_bound] = STATE(1602), - [sym_removed_trait_bound] = STATE(1602), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1629), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(1635), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2453), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1831), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2431), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [603] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1873), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1978), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [604] = { - [sym_function_modifiers] = STATE(2420), - [sym_higher_ranked_trait_bound] = STATE(1602), - [sym_removed_trait_bound] = STATE(1602), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1629), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(1614), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2453), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2129), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [605] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2193), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1935), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [606] = { - [sym_identifier] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_RPAREN] = ACTIONS(2391), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_LBRACK] = ACTIONS(2391), - [anon_sym_RBRACK] = ACTIONS(2391), - [anon_sym_DOLLAR] = ACTIONS(2391), - [anon_sym_u8] = ACTIONS(2389), - [anon_sym_i8] = ACTIONS(2389), - [anon_sym_u16] = ACTIONS(2389), - [anon_sym_i16] = ACTIONS(2389), - [anon_sym_u32] = ACTIONS(2389), - [anon_sym_i32] = ACTIONS(2389), - [anon_sym_u64] = ACTIONS(2389), - [anon_sym_i64] = ACTIONS(2389), - [anon_sym_u128] = ACTIONS(2389), - [anon_sym_i128] = ACTIONS(2389), - [anon_sym_isize] = ACTIONS(2389), - [anon_sym_usize] = ACTIONS(2389), - [anon_sym_f32] = ACTIONS(2389), - [anon_sym_f64] = ACTIONS(2389), - [anon_sym_bool] = ACTIONS(2389), - [anon_sym_str] = ACTIONS(2389), - [anon_sym_char] = ACTIONS(2389), - [aux_sym__non_special_token_token1] = ACTIONS(2389), - [anon_sym_SQUOTE] = ACTIONS(2389), - [anon_sym_as] = ACTIONS(2389), - [anon_sym_async] = ACTIONS(2389), - [anon_sym_await] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_const] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_default] = ACTIONS(2389), - [anon_sym_enum] = ACTIONS(2389), - [anon_sym_fn] = ACTIONS(2389), - [anon_sym_for] = ACTIONS(2389), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_impl] = ACTIONS(2389), - [anon_sym_let] = ACTIONS(2389), - [anon_sym_loop] = ACTIONS(2389), - [anon_sym_match] = ACTIONS(2389), - [anon_sym_mod] = ACTIONS(2389), - [anon_sym_pub] = ACTIONS(2389), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_static] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(2389), - [anon_sym_trait] = ACTIONS(2389), - [anon_sym_type] = ACTIONS(2389), - [anon_sym_union] = ACTIONS(2389), - [anon_sym_unsafe] = ACTIONS(2389), - [anon_sym_use] = ACTIONS(2389), - [anon_sym_where] = ACTIONS(2389), - [anon_sym_while] = ACTIONS(2389), - [sym_mutable_specifier] = ACTIONS(2389), - [sym_integer_literal] = ACTIONS(2391), - [aux_sym_string_literal_token1] = ACTIONS(2391), - [sym_char_literal] = ACTIONS(2391), - [anon_sym_true] = ACTIONS(2389), - [anon_sym_false] = ACTIONS(2389), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2389), - [sym_super] = ACTIONS(2389), - [sym_crate] = ACTIONS(2389), - [sym_raw_string_literal] = ACTIONS(2391), - [sym_float_literal] = ACTIONS(2391), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1777), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [607] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1811), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(2457), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_identifier] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_RPAREN] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_RBRACE] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_RBRACK] = ACTIONS(2405), + [anon_sym_DOLLAR] = ACTIONS(2405), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2403), + [anon_sym_SQUOTE] = ACTIONS(2403), + [anon_sym_as] = ACTIONS(2403), + [anon_sym_async] = ACTIONS(2403), + [anon_sym_await] = 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_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_where] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [sym_mutable_specifier] = ACTIONS(2403), + [sym_integer_literal] = ACTIONS(2405), + [aux_sym_string_literal_token1] = ACTIONS(2405), + [sym_char_literal] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(2403), + [anon_sym_false] = ACTIONS(2403), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2403), + [sym_super] = ACTIONS(2403), + [sym_crate] = ACTIONS(2403), + [sym_raw_string_literal] = ACTIONS(2405), + [sym_float_literal] = ACTIONS(2405), [sym_block_comment] = ACTIONS(3), }, [608] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2196), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_identifier] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym_RPAREN] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_RBRACE] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_RBRACK] = ACTIONS(2401), + [anon_sym_DOLLAR] = ACTIONS(2401), + [anon_sym_u8] = ACTIONS(2399), + [anon_sym_i8] = ACTIONS(2399), + [anon_sym_u16] = ACTIONS(2399), + [anon_sym_i16] = ACTIONS(2399), + [anon_sym_u32] = ACTIONS(2399), + [anon_sym_i32] = ACTIONS(2399), + [anon_sym_u64] = ACTIONS(2399), + [anon_sym_i64] = ACTIONS(2399), + [anon_sym_u128] = ACTIONS(2399), + [anon_sym_i128] = ACTIONS(2399), + [anon_sym_isize] = ACTIONS(2399), + [anon_sym_usize] = ACTIONS(2399), + [anon_sym_f32] = ACTIONS(2399), + [anon_sym_f64] = ACTIONS(2399), + [anon_sym_bool] = ACTIONS(2399), + [anon_sym_str] = ACTIONS(2399), + [anon_sym_char] = ACTIONS(2399), + [aux_sym__non_special_token_token1] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_as] = ACTIONS(2399), + [anon_sym_async] = ACTIONS(2399), + [anon_sym_await] = ACTIONS(2399), + [anon_sym_break] = ACTIONS(2399), + [anon_sym_const] = ACTIONS(2399), + [anon_sym_continue] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(2399), + [anon_sym_enum] = ACTIONS(2399), + [anon_sym_fn] = ACTIONS(2399), + [anon_sym_for] = ACTIONS(2399), + [anon_sym_if] = ACTIONS(2399), + [anon_sym_impl] = ACTIONS(2399), + [anon_sym_let] = ACTIONS(2399), + [anon_sym_loop] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_mod] = ACTIONS(2399), + [anon_sym_pub] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2399), + [anon_sym_trait] = ACTIONS(2399), + [anon_sym_type] = ACTIONS(2399), + [anon_sym_union] = ACTIONS(2399), + [anon_sym_unsafe] = ACTIONS(2399), + [anon_sym_use] = ACTIONS(2399), + [anon_sym_where] = ACTIONS(2399), + [anon_sym_while] = ACTIONS(2399), + [sym_mutable_specifier] = ACTIONS(2399), + [sym_integer_literal] = ACTIONS(2401), + [aux_sym_string_literal_token1] = ACTIONS(2401), + [sym_char_literal] = ACTIONS(2401), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(2399), + [sym_super] = ACTIONS(2399), + [sym_crate] = ACTIONS(2399), + [sym_raw_string_literal] = ACTIONS(2401), + [sym_float_literal] = ACTIONS(2401), [sym_block_comment] = ACTIONS(3), }, [609] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2270), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1426), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [610] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2197), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_identifier] = ACTIONS(448), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_RPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(446), + [anon_sym_RBRACE] = ACTIONS(446), + [anon_sym_LBRACK] = ACTIONS(446), + [anon_sym_RBRACK] = ACTIONS(446), + [anon_sym_DOLLAR] = ACTIONS(446), + [anon_sym_u8] = ACTIONS(448), + [anon_sym_i8] = ACTIONS(448), + [anon_sym_u16] = ACTIONS(448), + [anon_sym_i16] = ACTIONS(448), + [anon_sym_u32] = ACTIONS(448), + [anon_sym_i32] = ACTIONS(448), + [anon_sym_u64] = ACTIONS(448), + [anon_sym_i64] = ACTIONS(448), + [anon_sym_u128] = ACTIONS(448), + [anon_sym_i128] = ACTIONS(448), + [anon_sym_isize] = ACTIONS(448), + [anon_sym_usize] = ACTIONS(448), + [anon_sym_f32] = ACTIONS(448), + [anon_sym_f64] = ACTIONS(448), + [anon_sym_bool] = ACTIONS(448), + [anon_sym_str] = ACTIONS(448), + [anon_sym_char] = ACTIONS(448), + [aux_sym__non_special_token_token1] = ACTIONS(448), + [anon_sym_SQUOTE] = ACTIONS(448), + [anon_sym_as] = ACTIONS(448), + [anon_sym_async] = ACTIONS(448), + [anon_sym_await] = ACTIONS(448), + [anon_sym_break] = ACTIONS(448), + [anon_sym_const] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(448), + [anon_sym_default] = ACTIONS(448), + [anon_sym_enum] = ACTIONS(448), + [anon_sym_fn] = ACTIONS(448), + [anon_sym_for] = ACTIONS(448), + [anon_sym_if] = ACTIONS(448), + [anon_sym_impl] = ACTIONS(448), + [anon_sym_let] = ACTIONS(448), + [anon_sym_loop] = ACTIONS(448), + [anon_sym_match] = ACTIONS(448), + [anon_sym_mod] = ACTIONS(448), + [anon_sym_pub] = ACTIONS(448), + [anon_sym_return] = ACTIONS(448), + [anon_sym_static] = ACTIONS(448), + [anon_sym_struct] = ACTIONS(448), + [anon_sym_trait] = ACTIONS(448), + [anon_sym_type] = ACTIONS(448), + [anon_sym_union] = ACTIONS(448), + [anon_sym_unsafe] = ACTIONS(448), + [anon_sym_use] = ACTIONS(448), + [anon_sym_where] = ACTIONS(448), + [anon_sym_while] = ACTIONS(448), + [sym_mutable_specifier] = ACTIONS(448), + [sym_integer_literal] = ACTIONS(446), + [aux_sym_string_literal_token1] = ACTIONS(446), + [sym_char_literal] = ACTIONS(446), + [anon_sym_true] = ACTIONS(448), + [anon_sym_false] = ACTIONS(448), + [sym_line_comment] = ACTIONS(1069), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(448), + [sym_crate] = ACTIONS(448), + [sym_raw_string_literal] = ACTIONS(446), + [sym_float_literal] = ACTIONS(446), [sym_block_comment] = ACTIONS(3), }, [611] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2191), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1831), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2433), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [612] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2203), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1852), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(2435), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [613] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1480), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1788), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [614] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2205), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1448), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(2437), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [615] = { - [sym_identifier] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_RPAREN] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_RBRACK] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2447), - [anon_sym_u8] = ACTIONS(2445), - [anon_sym_i8] = ACTIONS(2445), - [anon_sym_u16] = ACTIONS(2445), - [anon_sym_i16] = ACTIONS(2445), - [anon_sym_u32] = ACTIONS(2445), - [anon_sym_i32] = ACTIONS(2445), - [anon_sym_u64] = ACTIONS(2445), - [anon_sym_i64] = ACTIONS(2445), - [anon_sym_u128] = ACTIONS(2445), - [anon_sym_i128] = ACTIONS(2445), - [anon_sym_isize] = ACTIONS(2445), - [anon_sym_usize] = ACTIONS(2445), - [anon_sym_f32] = ACTIONS(2445), - [anon_sym_f64] = ACTIONS(2445), - [anon_sym_bool] = ACTIONS(2445), - [anon_sym_str] = ACTIONS(2445), - [anon_sym_char] = ACTIONS(2445), - [aux_sym__non_special_token_token1] = ACTIONS(2445), - [anon_sym_SQUOTE] = ACTIONS(2445), - [anon_sym_as] = ACTIONS(2445), - [anon_sym_async] = ACTIONS(2445), - [anon_sym_await] = ACTIONS(2445), - [anon_sym_break] = ACTIONS(2445), - [anon_sym_const] = ACTIONS(2445), - [anon_sym_continue] = ACTIONS(2445), - [anon_sym_default] = ACTIONS(2445), - [anon_sym_enum] = ACTIONS(2445), - [anon_sym_fn] = ACTIONS(2445), - [anon_sym_for] = ACTIONS(2445), - [anon_sym_if] = ACTIONS(2445), - [anon_sym_impl] = ACTIONS(2445), - [anon_sym_let] = ACTIONS(2445), - [anon_sym_loop] = ACTIONS(2445), - [anon_sym_match] = ACTIONS(2445), - [anon_sym_mod] = ACTIONS(2445), - [anon_sym_pub] = ACTIONS(2445), - [anon_sym_return] = ACTIONS(2445), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_struct] = ACTIONS(2445), - [anon_sym_trait] = ACTIONS(2445), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_union] = ACTIONS(2445), - [anon_sym_unsafe] = ACTIONS(2445), - [anon_sym_use] = ACTIONS(2445), - [anon_sym_where] = ACTIONS(2445), - [anon_sym_while] = ACTIONS(2445), - [sym_mutable_specifier] = ACTIONS(2445), - [sym_integer_literal] = ACTIONS(2447), - [aux_sym_string_literal_token1] = ACTIONS(2447), - [sym_char_literal] = ACTIONS(2447), - [anon_sym_true] = ACTIONS(2445), - [anon_sym_false] = ACTIONS(2445), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2445), - [sym_super] = ACTIONS(2445), - [sym_crate] = ACTIONS(2445), - [sym_raw_string_literal] = ACTIONS(2447), - [sym_float_literal] = ACTIONS(2447), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(1420), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [616] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2297), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [617] = { + [sym_function_modifiers] = STATE(2432), + [sym_higher_ranked_trait_bound] = STATE(1535), + [sym_removed_trait_bound] = STATE(1535), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1552), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(1553), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(2423), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [617] = { - [sym_identifier] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_RPAREN] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_RBRACK] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(2387), - [anon_sym_u8] = ACTIONS(2385), - [anon_sym_i8] = ACTIONS(2385), - [anon_sym_u16] = ACTIONS(2385), - [anon_sym_i16] = ACTIONS(2385), - [anon_sym_u32] = ACTIONS(2385), - [anon_sym_i32] = ACTIONS(2385), - [anon_sym_u64] = ACTIONS(2385), - [anon_sym_i64] = ACTIONS(2385), - [anon_sym_u128] = ACTIONS(2385), - [anon_sym_i128] = ACTIONS(2385), - [anon_sym_isize] = ACTIONS(2385), - [anon_sym_usize] = ACTIONS(2385), - [anon_sym_f32] = ACTIONS(2385), - [anon_sym_f64] = ACTIONS(2385), - [anon_sym_bool] = ACTIONS(2385), - [anon_sym_str] = ACTIONS(2385), - [anon_sym_char] = ACTIONS(2385), - [aux_sym__non_special_token_token1] = ACTIONS(2385), - [anon_sym_SQUOTE] = ACTIONS(2385), - [anon_sym_as] = ACTIONS(2385), - [anon_sym_async] = ACTIONS(2385), - [anon_sym_await] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_enum] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_impl] = ACTIONS(2385), - [anon_sym_let] = ACTIONS(2385), - [anon_sym_loop] = ACTIONS(2385), - [anon_sym_match] = ACTIONS(2385), - [anon_sym_mod] = ACTIONS(2385), - [anon_sym_pub] = ACTIONS(2385), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_struct] = ACTIONS(2385), - [anon_sym_trait] = ACTIONS(2385), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), - [anon_sym_unsafe] = ACTIONS(2385), - [anon_sym_use] = ACTIONS(2385), - [anon_sym_where] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [sym_mutable_specifier] = ACTIONS(2385), - [sym_integer_literal] = ACTIONS(2387), - [aux_sym_string_literal_token1] = ACTIONS(2387), - [sym_char_literal] = ACTIONS(2387), - [anon_sym_true] = ACTIONS(2385), - [anon_sym_false] = ACTIONS(2385), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2385), - [sym_super] = ACTIONS(2385), - [sym_crate] = ACTIONS(2385), - [sym_raw_string_literal] = ACTIONS(2387), - [sym_float_literal] = ACTIONS(2387), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [618] = { - [sym_identifier] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_RPAREN] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_RBRACK] = ACTIONS(2435), - [anon_sym_DOLLAR] = ACTIONS(2435), - [anon_sym_u8] = ACTIONS(2433), - [anon_sym_i8] = ACTIONS(2433), - [anon_sym_u16] = ACTIONS(2433), - [anon_sym_i16] = ACTIONS(2433), - [anon_sym_u32] = ACTIONS(2433), - [anon_sym_i32] = ACTIONS(2433), - [anon_sym_u64] = ACTIONS(2433), - [anon_sym_i64] = ACTIONS(2433), - [anon_sym_u128] = ACTIONS(2433), - [anon_sym_i128] = ACTIONS(2433), - [anon_sym_isize] = ACTIONS(2433), - [anon_sym_usize] = ACTIONS(2433), - [anon_sym_f32] = ACTIONS(2433), - [anon_sym_f64] = ACTIONS(2433), - [anon_sym_bool] = ACTIONS(2433), - [anon_sym_str] = ACTIONS(2433), - [anon_sym_char] = ACTIONS(2433), - [aux_sym__non_special_token_token1] = ACTIONS(2433), - [anon_sym_SQUOTE] = ACTIONS(2433), - [anon_sym_as] = ACTIONS(2433), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_await] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_fn] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_impl] = ACTIONS(2433), - [anon_sym_let] = ACTIONS(2433), - [anon_sym_loop] = ACTIONS(2433), - [anon_sym_match] = ACTIONS(2433), - [anon_sym_mod] = ACTIONS(2433), - [anon_sym_pub] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_trait] = ACTIONS(2433), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_union] = ACTIONS(2433), - [anon_sym_unsafe] = ACTIONS(2433), - [anon_sym_use] = ACTIONS(2433), - [anon_sym_where] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [sym_mutable_specifier] = ACTIONS(2433), - [sym_integer_literal] = ACTIONS(2435), - [aux_sym_string_literal_token1] = ACTIONS(2435), - [sym_char_literal] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(2433), - [anon_sym_false] = ACTIONS(2433), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(2433), - [sym_super] = ACTIONS(2433), - [sym_crate] = ACTIONS(2433), - [sym_raw_string_literal] = ACTIONS(2435), - [sym_float_literal] = ACTIONS(2435), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2273), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [619] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2175), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [sym_bracketed_type] = STATE(2456), + [sym_generic_type] = STATE(2452), + [sym_generic_type_with_turbofish] = STATE(2443), + [sym_macro_invocation] = STATE(1419), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(2030), + [sym_const_block] = STATE(1419), + [sym__pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(1419), + [sym_slice_pattern] = STATE(1419), + [sym_tuple_struct_pattern] = STATE(1419), + [sym_struct_pattern] = STATE(1419), + [sym_remaining_field_pattern] = STATE(1419), + [sym_mut_pattern] = STATE(1419), + [sym_range_pattern] = STATE(1419), + [sym_ref_pattern] = STATE(1419), + [sym_captured_pattern] = STATE(1419), + [sym_reference_pattern] = STATE(1419), + [sym_or_pattern] = STATE(1419), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1381), + [sym_string_literal] = STATE(1381), + [sym_boolean_literal] = STATE(1381), + [sym_identifier] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [620] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1917), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2375), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1117), + [sym_bracketed_type] = STATE(2474), + [sym_lifetime] = STATE(2321), + [sym_array_type] = STATE(1046), + [sym_for_lifetimes] = STATE(1190), + [sym_function_type] = STATE(1046), + [sym_tuple_type] = STATE(1046), + [sym_unit_type] = STATE(1046), + [sym_generic_type] = STATE(1001), + [sym_generic_type_with_turbofish] = STATE(2475), + [sym_bounded_type] = STATE(1046), + [sym_reference_type] = STATE(1046), + [sym_pointer_type] = STATE(1046), + [sym_empty_type] = STATE(1046), + [sym_abstract_type] = STATE(1046), + [sym_dynamic_type] = STATE(1046), + [sym_macro_invocation] = STATE(1046), + [sym_scoped_identifier] = STATE(2269), + [sym_scoped_type_identifier] = STATE(762), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2439), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_PLUS] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(2447), + [anon_sym_u8] = ACTIONS(2449), + [anon_sym_i8] = ACTIONS(2449), + [anon_sym_u16] = ACTIONS(2449), + [anon_sym_i16] = ACTIONS(2449), + [anon_sym_u32] = ACTIONS(2449), + [anon_sym_i32] = ACTIONS(2449), + [anon_sym_u64] = ACTIONS(2449), + [anon_sym_i64] = ACTIONS(2449), + [anon_sym_u128] = ACTIONS(2449), + [anon_sym_i128] = ACTIONS(2449), + [anon_sym_isize] = ACTIONS(2449), + [anon_sym_usize] = ACTIONS(2449), + [anon_sym_f32] = ACTIONS(2449), + [anon_sym_f64] = ACTIONS(2449), + [anon_sym_bool] = ACTIONS(2449), + [anon_sym_str] = ACTIONS(2449), + [anon_sym_char] = ACTIONS(2449), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(2451), + [anon_sym_fn] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(2455), + [anon_sym_union] = ACTIONS(2457), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(2463), + [anon_sym_dyn] = ACTIONS(2465), + [sym_mutable_specifier] = ACTIONS(2467), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2469), + [sym_super] = ACTIONS(2469), + [sym_crate] = ACTIONS(2469), + [sym_metavariable] = ACTIONS(2471), [sym_block_comment] = ACTIONS(3), }, [621] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1483), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_attribute_item] = STATE(621), + [aux_sym_enum_variant_list_repeat1] = STATE(621), + [sym_identifier] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_LBRACK] = ACTIONS(2475), + [anon_sym_RBRACK] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_u8] = ACTIONS(2473), + [anon_sym_i8] = ACTIONS(2473), + [anon_sym_u16] = ACTIONS(2473), + [anon_sym_i16] = ACTIONS(2473), + [anon_sym_u32] = ACTIONS(2473), + [anon_sym_i32] = ACTIONS(2473), + [anon_sym_u64] = ACTIONS(2473), + [anon_sym_i64] = ACTIONS(2473), + [anon_sym_u128] = ACTIONS(2473), + [anon_sym_i128] = ACTIONS(2473), + [anon_sym_isize] = ACTIONS(2473), + [anon_sym_usize] = ACTIONS(2473), + [anon_sym_f32] = ACTIONS(2473), + [anon_sym_f64] = ACTIONS(2473), + [anon_sym_bool] = ACTIONS(2473), + [anon_sym_str] = ACTIONS(2473), + [anon_sym_char] = ACTIONS(2473), + [anon_sym_SQUOTE] = ACTIONS(2473), + [anon_sym_async] = ACTIONS(2473), + [anon_sym_break] = ACTIONS(2473), + [anon_sym_const] = ACTIONS(2473), + [anon_sym_continue] = ACTIONS(2473), + [anon_sym_default] = ACTIONS(2473), + [anon_sym_for] = ACTIONS(2473), + [anon_sym_if] = ACTIONS(2473), + [anon_sym_loop] = ACTIONS(2473), + [anon_sym_match] = ACTIONS(2473), + [anon_sym_return] = ACTIONS(2473), + [anon_sym_union] = ACTIONS(2473), + [anon_sym_unsafe] = ACTIONS(2473), + [anon_sym_while] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2475), + [anon_sym_COMMA] = ACTIONS(2475), + [anon_sym_ref] = ACTIONS(2473), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_COLON_COLON] = ACTIONS(2475), + [anon_sym__] = ACTIONS(2473), + [anon_sym_AMP] = ACTIONS(2475), + [sym_mutable_specifier] = ACTIONS(2473), + [anon_sym_DOT_DOT] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(2475), + [anon_sym_yield] = ACTIONS(2473), + [anon_sym_move] = ACTIONS(2473), + [sym_integer_literal] = ACTIONS(2475), + [aux_sym_string_literal_token1] = ACTIONS(2475), + [sym_char_literal] = ACTIONS(2475), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2473), + [sym_super] = ACTIONS(2473), + [sym_crate] = ACTIONS(2473), + [sym_metavariable] = ACTIONS(2475), + [sym_raw_string_literal] = ACTIONS(2475), + [sym_float_literal] = ACTIONS(2475), [sym_block_comment] = ACTIONS(3), }, [622] = { - [sym_function_modifiers] = STATE(2420), - [sym_higher_ranked_trait_bound] = STATE(1590), - [sym_removed_trait_bound] = STATE(1590), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1592), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(1593), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2453), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1382), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(2482), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), + [sym_self] = ACTIONS(2484), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [623] = { - [sym_function_modifiers] = STATE(2420), - [sym_higher_ranked_trait_bound] = STATE(1602), - [sym_removed_trait_bound] = STATE(1602), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1612), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(1614), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_QMARK] = ACTIONS(2453), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(2195), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(2486), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [624] = { - [sym_identifier] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(620), - [anon_sym_RPAREN] = ACTIONS(620), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(620), - [anon_sym_RBRACK] = ACTIONS(620), - [anon_sym_DOLLAR] = ACTIONS(620), - [anon_sym_u8] = ACTIONS(622), - [anon_sym_i8] = ACTIONS(622), - [anon_sym_u16] = ACTIONS(622), - [anon_sym_i16] = ACTIONS(622), - [anon_sym_u32] = ACTIONS(622), - [anon_sym_i32] = ACTIONS(622), - [anon_sym_u64] = ACTIONS(622), - [anon_sym_i64] = ACTIONS(622), - [anon_sym_u128] = ACTIONS(622), - [anon_sym_i128] = ACTIONS(622), - [anon_sym_isize] = ACTIONS(622), - [anon_sym_usize] = ACTIONS(622), - [anon_sym_f32] = ACTIONS(622), - [anon_sym_f64] = ACTIONS(622), - [anon_sym_bool] = ACTIONS(622), - [anon_sym_str] = ACTIONS(622), - [anon_sym_char] = ACTIONS(622), - [aux_sym__non_special_token_token1] = ACTIONS(622), - [anon_sym_SQUOTE] = ACTIONS(622), - [anon_sym_as] = ACTIONS(622), - [anon_sym_async] = ACTIONS(622), - [anon_sym_await] = ACTIONS(622), - [anon_sym_break] = ACTIONS(622), - [anon_sym_const] = ACTIONS(622), - [anon_sym_continue] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), - [anon_sym_enum] = ACTIONS(622), - [anon_sym_fn] = ACTIONS(622), - [anon_sym_for] = ACTIONS(622), - [anon_sym_if] = ACTIONS(622), - [anon_sym_impl] = ACTIONS(622), - [anon_sym_let] = ACTIONS(622), - [anon_sym_loop] = ACTIONS(622), - [anon_sym_match] = ACTIONS(622), - [anon_sym_mod] = ACTIONS(622), - [anon_sym_pub] = ACTIONS(622), - [anon_sym_return] = ACTIONS(622), - [anon_sym_static] = ACTIONS(622), - [anon_sym_struct] = ACTIONS(622), - [anon_sym_trait] = ACTIONS(622), - [anon_sym_type] = ACTIONS(622), - [anon_sym_union] = ACTIONS(622), - [anon_sym_unsafe] = ACTIONS(622), - [anon_sym_use] = ACTIONS(622), - [anon_sym_where] = ACTIONS(622), - [anon_sym_while] = ACTIONS(622), - [sym_mutable_specifier] = ACTIONS(622), - [sym_integer_literal] = ACTIONS(620), - [aux_sym_string_literal_token1] = ACTIONS(620), - [sym_char_literal] = ACTIONS(620), - [anon_sym_true] = ACTIONS(622), - [anon_sym_false] = ACTIONS(622), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(622), - [sym_super] = ACTIONS(622), - [sym_crate] = ACTIONS(622), - [sym_raw_string_literal] = ACTIONS(620), - [sym_float_literal] = ACTIONS(620), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1382), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(2488), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [625] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1499), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_function_modifiers] = STATE(2432), + [sym_type_parameters] = STATE(702), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1639), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1625), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1492), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2490), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(2492), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [626] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2241), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1988), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2494), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [627] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1817), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1988), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2496), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(2459), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [628] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1495), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1988), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(2461), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [629] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1831), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_function_modifiers] = STATE(2432), + [sym_type_parameters] = STATE(660), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1664), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1659), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1512), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2500), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(2492), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [630] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2207), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1988), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2502), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [631] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1880), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(2463), - [anon_sym_union] = ACTIONS(2463), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(2182), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(623), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2465), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(2506), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [632] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1880), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(2463), - [anon_sym_union] = ACTIONS(2463), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1794), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2467), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [633] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1491), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [sym_function_modifiers] = STATE(2432), + [sym_type_parameters] = STATE(710), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1682), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1623), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1476), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(2492), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [634] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(1853), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1770), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [635] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2077), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [636] = { - [sym_identifier] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(574), - [anon_sym_RPAREN] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_RBRACE] = ACTIONS(574), - [anon_sym_LBRACK] = ACTIONS(574), - [anon_sym_RBRACK] = ACTIONS(574), - [anon_sym_DOLLAR] = ACTIONS(574), - [anon_sym_u8] = ACTIONS(576), - [anon_sym_i8] = ACTIONS(576), - [anon_sym_u16] = ACTIONS(576), - [anon_sym_i16] = ACTIONS(576), - [anon_sym_u32] = ACTIONS(576), - [anon_sym_i32] = ACTIONS(576), - [anon_sym_u64] = ACTIONS(576), - [anon_sym_i64] = ACTIONS(576), - [anon_sym_u128] = ACTIONS(576), - [anon_sym_i128] = ACTIONS(576), - [anon_sym_isize] = ACTIONS(576), - [anon_sym_usize] = ACTIONS(576), - [anon_sym_f32] = ACTIONS(576), - [anon_sym_f64] = ACTIONS(576), - [anon_sym_bool] = ACTIONS(576), - [anon_sym_str] = ACTIONS(576), - [anon_sym_char] = ACTIONS(576), - [aux_sym__non_special_token_token1] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(576), - [anon_sym_as] = ACTIONS(576), - [anon_sym_async] = ACTIONS(576), - [anon_sym_await] = ACTIONS(576), - [anon_sym_break] = ACTIONS(576), - [anon_sym_const] = ACTIONS(576), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_default] = ACTIONS(576), - [anon_sym_enum] = ACTIONS(576), - [anon_sym_fn] = ACTIONS(576), - [anon_sym_for] = ACTIONS(576), - [anon_sym_if] = ACTIONS(576), - [anon_sym_impl] = ACTIONS(576), - [anon_sym_let] = ACTIONS(576), - [anon_sym_loop] = ACTIONS(576), - [anon_sym_match] = ACTIONS(576), - [anon_sym_mod] = ACTIONS(576), - [anon_sym_pub] = ACTIONS(576), - [anon_sym_return] = ACTIONS(576), - [anon_sym_static] = ACTIONS(576), - [anon_sym_struct] = ACTIONS(576), - [anon_sym_trait] = ACTIONS(576), - [anon_sym_type] = ACTIONS(576), - [anon_sym_union] = ACTIONS(576), - [anon_sym_unsafe] = ACTIONS(576), - [anon_sym_use] = ACTIONS(576), - [anon_sym_where] = ACTIONS(576), - [anon_sym_while] = ACTIONS(576), - [sym_mutable_specifier] = ACTIONS(576), - [sym_integer_literal] = ACTIONS(574), - [aux_sym_string_literal_token1] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [anon_sym_true] = ACTIONS(576), - [anon_sym_false] = ACTIONS(576), - [sym_line_comment] = ACTIONS(1097), - [sym_self] = ACTIONS(576), - [sym_super] = ACTIONS(576), - [sym_crate] = ACTIONS(576), - [sym_raw_string_literal] = ACTIONS(574), - [sym_float_literal] = ACTIONS(574), - [sym_block_comment] = ACTIONS(3), - }, - [637] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2229), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [638] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2220), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [639] = { - [sym_bracketed_type] = STATE(2450), - [sym_generic_type] = STATE(2448), - [sym_generic_type_with_turbofish] = STATE(2447), - [sym_macro_invocation] = STATE(1470), - [sym_scoped_identifier] = STATE(1367), - [sym_scoped_type_identifier] = STATE(2126), - [sym_const_block] = STATE(1470), - [sym__pattern] = STATE(2212), - [sym_tuple_pattern] = STATE(1470), - [sym_slice_pattern] = STATE(1470), - [sym_tuple_struct_pattern] = STATE(1470), - [sym_struct_pattern] = STATE(1470), - [sym_remaining_field_pattern] = STATE(1470), - [sym_mut_pattern] = STATE(1470), - [sym_range_pattern] = STATE(1470), - [sym_ref_pattern] = STATE(1470), - [sym_captured_pattern] = STATE(1470), - [sym_reference_pattern] = STATE(1470), - [sym_or_pattern] = STATE(1470), - [sym__literal_pattern] = STATE(1419), - [sym_negative_literal] = STATE(1431), - [sym_string_literal] = STATE(1431), - [sym_boolean_literal] = STATE(1431), - [sym_identifier] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1248), - [anon_sym_i8] = ACTIONS(1248), - [anon_sym_u16] = ACTIONS(1248), - [anon_sym_i16] = ACTIONS(1248), - [anon_sym_u32] = ACTIONS(1248), - [anon_sym_i32] = ACTIONS(1248), - [anon_sym_u64] = ACTIONS(1248), - [anon_sym_i64] = ACTIONS(1248), - [anon_sym_u128] = ACTIONS(1248), - [anon_sym_i128] = ACTIONS(1248), - [anon_sym_isize] = ACTIONS(1248), - [anon_sym_usize] = ACTIONS(1248), - [anon_sym_f32] = ACTIONS(1248), - [anon_sym_f64] = ACTIONS(1248), - [anon_sym_bool] = ACTIONS(1248), - [anon_sym_str] = ACTIONS(1248), - [anon_sym_char] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_ref] = ACTIONS(716), + [sym_function_modifiers] = STATE(2375), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1105), + [sym_bracketed_type] = STATE(2474), + [sym_lifetime] = STATE(620), + [sym_array_type] = STATE(1046), + [sym_for_lifetimes] = STATE(1190), + [sym_function_type] = STATE(1046), + [sym_tuple_type] = STATE(1046), + [sym_unit_type] = STATE(1046), + [sym_generic_type] = STATE(1001), + [sym_generic_type_with_turbofish] = STATE(2475), + [sym_bounded_type] = STATE(1046), + [sym_reference_type] = STATE(1046), + [sym_pointer_type] = STATE(1046), + [sym_empty_type] = STATE(1046), + [sym_abstract_type] = STATE(1046), + [sym_dynamic_type] = STATE(1046), + [sym_macro_invocation] = STATE(1046), + [sym_scoped_identifier] = STATE(2269), + [sym_scoped_type_identifier] = STATE(762), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2439), + [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_LBRACK] = ACTIONS(2443), + [anon_sym_STAR] = ACTIONS(2447), + [anon_sym_u8] = ACTIONS(2449), + [anon_sym_i8] = ACTIONS(2449), + [anon_sym_u16] = ACTIONS(2449), + [anon_sym_i16] = ACTIONS(2449), + [anon_sym_u32] = ACTIONS(2449), + [anon_sym_i32] = ACTIONS(2449), + [anon_sym_u64] = ACTIONS(2449), + [anon_sym_i64] = ACTIONS(2449), + [anon_sym_u128] = ACTIONS(2449), + [anon_sym_i128] = ACTIONS(2449), + [anon_sym_isize] = ACTIONS(2449), + [anon_sym_usize] = ACTIONS(2449), + [anon_sym_f32] = ACTIONS(2449), + [anon_sym_f64] = ACTIONS(2449), + [anon_sym_bool] = ACTIONS(2449), + [anon_sym_str] = ACTIONS(2449), + [anon_sym_char] = ACTIONS(2449), + [anon_sym_SQUOTE] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(2451), + [anon_sym_fn] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(2455), + [anon_sym_union] = ACTIONS(2457), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1254), - [anon_sym__] = ACTIONS(814), - [anon_sym_AMP] = ACTIONS(1256), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(732), - [sym_integer_literal] = ACTIONS(734), - [aux_sym_string_literal_token1] = ACTIONS(736), - [sym_char_literal] = ACTIONS(734), - [anon_sym_true] = ACTIONS(738), - [anon_sym_false] = ACTIONS(738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(734), - [sym_float_literal] = ACTIONS(734), - [sym_block_comment] = ACTIONS(3), - }, - [640] = { - [sym_attribute_item] = STATE(640), - [aux_sym_enum_variant_list_repeat1] = STATE(640), - [sym_identifier] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(2471), - [anon_sym_RBRACK] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2471), - [anon_sym_u8] = ACTIONS(2469), - [anon_sym_i8] = ACTIONS(2469), - [anon_sym_u16] = ACTIONS(2469), - [anon_sym_i16] = ACTIONS(2469), - [anon_sym_u32] = ACTIONS(2469), - [anon_sym_i32] = ACTIONS(2469), - [anon_sym_u64] = ACTIONS(2469), - [anon_sym_i64] = ACTIONS(2469), - [anon_sym_u128] = ACTIONS(2469), - [anon_sym_i128] = ACTIONS(2469), - [anon_sym_isize] = ACTIONS(2469), - [anon_sym_usize] = ACTIONS(2469), - [anon_sym_f32] = ACTIONS(2469), - [anon_sym_f64] = ACTIONS(2469), - [anon_sym_bool] = ACTIONS(2469), - [anon_sym_str] = ACTIONS(2469), - [anon_sym_char] = ACTIONS(2469), - [anon_sym_SQUOTE] = ACTIONS(2469), - [anon_sym_async] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_default] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_loop] = ACTIONS(2469), - [anon_sym_match] = ACTIONS(2469), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_union] = ACTIONS(2469), - [anon_sym_unsafe] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_POUND] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(2471), - [anon_sym_COMMA] = ACTIONS(2471), - [anon_sym_ref] = ACTIONS(2469), - [anon_sym_LT] = ACTIONS(2471), - [anon_sym_COLON_COLON] = ACTIONS(2471), - [anon_sym__] = ACTIONS(2469), - [anon_sym_AMP] = ACTIONS(2471), - [sym_mutable_specifier] = ACTIONS(2469), - [anon_sym_DOT_DOT] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_PIPE] = ACTIONS(2471), - [anon_sym_yield] = ACTIONS(2469), - [anon_sym_move] = ACTIONS(2469), - [sym_integer_literal] = ACTIONS(2471), - [aux_sym_string_literal_token1] = ACTIONS(2471), - [sym_char_literal] = ACTIONS(2471), - [anon_sym_true] = ACTIONS(2469), - [anon_sym_false] = ACTIONS(2469), + [anon_sym_COLON_COLON] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(2463), + [anon_sym_dyn] = ACTIONS(2465), + [sym_mutable_specifier] = ACTIONS(2514), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2469), [sym_super] = ACTIONS(2469), [sym_crate] = ACTIONS(2469), [sym_metavariable] = ACTIONS(2471), - [sym_raw_string_literal] = ACTIONS(2471), - [sym_float_literal] = ACTIONS(2471), - [sym_block_comment] = ACTIONS(3), - }, - [641] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1433), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2478), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2480), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [642] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2288), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2482), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), [sym_block_comment] = ACTIONS(3), }, - [643] = { - [sym_function_modifiers] = STATE(2390), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1143), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(2497), - [sym_array_type] = STATE(1136), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1136), - [sym_tuple_type] = STATE(1136), - [sym_unit_type] = STATE(1136), - [sym_generic_type] = STATE(937), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1136), - [sym_reference_type] = STATE(1136), - [sym_pointer_type] = STATE(1136), - [sym_empty_type] = STATE(1136), - [sym_abstract_type] = STATE(1136), - [sym_dynamic_type] = STATE(1136), - [sym_macro_invocation] = STATE(1136), - [sym_scoped_identifier] = STATE(2329), - [sym_scoped_type_identifier] = STATE(780), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2484), - [anon_sym_LPAREN] = ACTIONS(2486), - [anon_sym_LBRACK] = ACTIONS(2488), - [anon_sym_PLUS] = ACTIONS(2490), - [anon_sym_STAR] = ACTIONS(2492), - [anon_sym_u8] = ACTIONS(2494), - [anon_sym_i8] = ACTIONS(2494), - [anon_sym_u16] = ACTIONS(2494), - [anon_sym_i16] = ACTIONS(2494), - [anon_sym_u32] = ACTIONS(2494), - [anon_sym_i32] = ACTIONS(2494), - [anon_sym_u64] = ACTIONS(2494), - [anon_sym_i64] = ACTIONS(2494), - [anon_sym_u128] = ACTIONS(2494), - [anon_sym_i128] = ACTIONS(2494), - [anon_sym_isize] = ACTIONS(2494), - [anon_sym_usize] = ACTIONS(2494), - [anon_sym_f32] = ACTIONS(2494), - [anon_sym_f64] = ACTIONS(2494), - [anon_sym_bool] = ACTIONS(2494), - [anon_sym_str] = ACTIONS(2494), - [anon_sym_char] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(2496), - [anon_sym_fn] = ACTIONS(2498), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(2500), - [anon_sym_union] = ACTIONS(2502), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2504), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2506), - [anon_sym_AMP] = ACTIONS(2508), - [anon_sym_dyn] = ACTIONS(2510), - [sym_mutable_specifier] = ACTIONS(2512), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2514), - [sym_super] = ACTIONS(2514), - [sym_crate] = ACTIONS(2514), - [sym_metavariable] = ACTIONS(2516), - [sym_block_comment] = ACTIONS(3), - }, - [644] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1433), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [636] = { + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1393), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(624), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2518), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(2516), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, - [645] = { - [sym_function_modifiers] = STATE(2390), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1061), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(643), - [sym_array_type] = STATE(1136), - [sym_for_lifetimes] = STATE(1215), - [sym_function_type] = STATE(1136), - [sym_tuple_type] = STATE(1136), - [sym_unit_type] = STATE(1136), - [sym_generic_type] = STATE(937), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1136), - [sym_reference_type] = STATE(1136), - [sym_pointer_type] = STATE(1136), - [sym_empty_type] = STATE(1136), - [sym_abstract_type] = STATE(1136), - [sym_dynamic_type] = STATE(1136), - [sym_macro_invocation] = STATE(1136), - [sym_scoped_identifier] = STATE(2329), - [sym_scoped_type_identifier] = STATE(780), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2484), - [anon_sym_LPAREN] = ACTIONS(2486), - [anon_sym_LBRACK] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(2492), - [anon_sym_u8] = ACTIONS(2494), - [anon_sym_i8] = ACTIONS(2494), - [anon_sym_u16] = ACTIONS(2494), - [anon_sym_i16] = ACTIONS(2494), - [anon_sym_u32] = ACTIONS(2494), - [anon_sym_i32] = ACTIONS(2494), - [anon_sym_u64] = ACTIONS(2494), - [anon_sym_i64] = ACTIONS(2494), - [anon_sym_u128] = ACTIONS(2494), - [anon_sym_i128] = ACTIONS(2494), - [anon_sym_isize] = ACTIONS(2494), - [anon_sym_usize] = ACTIONS(2494), - [anon_sym_f32] = ACTIONS(2494), - [anon_sym_f64] = ACTIONS(2494), - [anon_sym_bool] = ACTIONS(2494), - [anon_sym_str] = ACTIONS(2494), - [anon_sym_char] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2520), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(2496), - [anon_sym_fn] = ACTIONS(2498), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(2500), - [anon_sym_union] = ACTIONS(2502), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(2504), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2506), - [anon_sym_AMP] = ACTIONS(2508), - [anon_sym_dyn] = ACTIONS(2510), - [sym_mutable_specifier] = ACTIONS(2522), + [637] = { + [sym_function_modifiers] = STATE(2432), + [sym_type_parameters] = STATE(683), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1670), + [sym_bracketed_type] = STATE(2367), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1484), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(2492), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2514), - [sym_super] = ACTIONS(2514), - [sym_crate] = ACTIONS(2514), - [sym_metavariable] = ACTIONS(2516), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, - [646] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1988), - [sym_bracketed_type] = STATE(2383), - [sym_qualified_type] = STATE(2348), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [647] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1859), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2524), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [648] = { - [sym_function_modifiers] = STATE(2420), - [sym_type_parameters] = STATE(712), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1706), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1710), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1539), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [649] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2298), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(642), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2520), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2530), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [650] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2115), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2532), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [651] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1894), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [652] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2115), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [653] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2115), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2538), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [654] = { - [sym_function_modifiers] = STATE(2420), - [sym_type_parameters] = STATE(696), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1692), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1648), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1522), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2540), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [655] = { - [sym_function_modifiers] = STATE(2420), - [sym_type_parameters] = STATE(693), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1682), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1678), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1517), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [656] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1429), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(644), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2520), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(2544), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [657] = { - [sym_function_modifiers] = STATE(2420), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(2115), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1402), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1360), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), + [638] = { + [sym_function_modifiers] = STATE(2432), + [sym_extern_modifier] = STATE(1551), + [sym__type] = STATE(1866), + [sym_bracketed_type] = STATE(2367), + [sym_qualified_type] = STATE(2506), + [sym_lifetime] = STATE(2467), + [sym_array_type] = STATE(1370), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1370), + [sym_tuple_type] = STATE(1370), + [sym_unit_type] = STATE(1370), + [sym_generic_type] = STATE(1362), + [sym_generic_type_with_turbofish] = STATE(2368), + [sym_bounded_type] = STATE(1370), + [sym_reference_type] = STATE(1370), + [sym_pointer_type] = STATE(1370), + [sym_empty_type] = STATE(1370), + [sym_abstract_type] = STATE(1370), + [sym_dynamic_type] = STATE(1370), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(2180), + [sym_scoped_type_identifier] = STATE(1319), + [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), - [sym_block_comment] = ACTIONS(3), - }, - [658] = { - [sym_function_modifiers] = STATE(2420), - [sym_type_parameters] = STATE(724), - [sym_extern_modifier] = STATE(1564), - [sym__type] = STATE(1726), - [sym_bracketed_type] = STATE(2383), - [sym_lifetime] = STATE(2417), - [sym_array_type] = STATE(1421), - [sym_for_lifetimes] = STATE(1214), - [sym_function_type] = STATE(1421), - [sym_tuple_type] = STATE(1421), - [sym_unit_type] = STATE(1421), - [sym_generic_type] = STATE(1698), - [sym_generic_type_with_turbofish] = STATE(2384), - [sym_bounded_type] = STATE(1421), - [sym_reference_type] = STATE(1421), - [sym_pointer_type] = STATE(1421), - [sym_empty_type] = STATE(1421), - [sym_abstract_type] = STATE(1421), - [sym_dynamic_type] = STATE(1421), - [sym_macro_invocation] = STATE(1421), - [sym_scoped_identifier] = STATE(2320), - [sym_scoped_type_identifier] = STATE(1545), - [aux_sym_function_modifiers_repeat1] = STATE(1564), - [sym_identifier] = ACTIONS(2548), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_u8] = ACTIONS(908), - [anon_sym_i8] = ACTIONS(908), - [anon_sym_u16] = ACTIONS(908), - [anon_sym_i16] = ACTIONS(908), - [anon_sym_u32] = ACTIONS(908), - [anon_sym_i32] = ACTIONS(908), - [anon_sym_u64] = ACTIONS(908), - [anon_sym_i64] = ACTIONS(908), - [anon_sym_u128] = ACTIONS(908), - [anon_sym_i128] = ACTIONS(908), - [anon_sym_isize] = ACTIONS(908), - [anon_sym_usize] = ACTIONS(908), - [anon_sym_f32] = ACTIONS(908), - [anon_sym_f64] = ACTIONS(908), - [anon_sym_bool] = ACTIONS(908), - [anon_sym_str] = ACTIONS(908), - [anon_sym_char] = ACTIONS(908), - [anon_sym_SQUOTE] = ACTIONS(2329), - [anon_sym_async] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_default] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(702), - [anon_sym_impl] = ACTIONS(704), - [anon_sym_union] = ACTIONS(912), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_AMP] = ACTIONS(918), - [anon_sym_dyn] = ACTIONS(726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(922), - [sym_super] = ACTIONS(922), - [sym_crate] = ACTIONS(922), - [sym_metavariable] = ACTIONS(924), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, }; @@ -73443,71 +71370,71 @@ static const uint16_t ts_small_parse_table[] = { [0] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2288), 1, + STATE(2008), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73519,7 +71446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73540,71 +71467,71 @@ static const uint16_t ts_small_parse_table[] = { [129] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1729), 1, - sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2223), 1, + sym__type, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73616,7 +71543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73637,71 +71564,71 @@ static const uint16_t ts_small_parse_table[] = { [258] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1923), 1, + STATE(1988), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73713,7 +71640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73734,71 +71661,71 @@ static const uint16_t ts_small_parse_table[] = { [387] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2053), 1, + STATE(2058), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73810,7 +71737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73831,71 +71758,71 @@ static const uint16_t ts_small_parse_table[] = { [516] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1660), 1, + STATE(1695), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73907,7 +71834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73928,71 +71855,71 @@ static const uint16_t ts_small_parse_table[] = { [645] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(702), 1, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(714), 1, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2484), 1, - sym_identifier, - ACTIONS(2486), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2488), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_STAR, - ACTIONS(2496), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2500), 1, - anon_sym_impl, - ACTIONS(2502), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2504), 1, - anon_sym_BANG, - ACTIONS(2506), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2508), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2510), 1, - anon_sym_dyn, - ACTIONS(2516), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(780), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(937), 1, + STATE(1362), 1, sym_generic_type, - STATE(1121), 1, + STATE(1965), 1, sym__type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2329), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2492), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2493), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2497), 1, + STATE(2432), 1, + sym_function_modifiers, + STATE(2467), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2514), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1136), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74004,7 +71931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2494), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74025,71 +71952,71 @@ static const uint16_t ts_small_parse_table[] = { [774] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1713), 1, + STATE(1693), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74101,7 +72028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74122,71 +72049,71 @@ static const uint16_t ts_small_parse_table[] = { [903] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(2447), 1, + anon_sym_STAR, + ACTIONS(2451), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, + STATE(762), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1001), 1, sym_generic_type, - STATE(1432), 1, + STATE(1107), 1, sym__type, - STATE(2320), 1, + STATE(1190), 1, + sym_for_lifetimes, + STATE(2269), 1, sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2321), 1, sym_lifetime, - STATE(2420), 1, + STATE(2375), 1, sym_function_modifiers, + STATE(2474), 1, + sym_bracketed_type, + STATE(2475), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1046), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74198,7 +72125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(2449), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74219,71 +72146,71 @@ static const uint16_t ts_small_parse_table[] = { [1032] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1711), 1, + STATE(1375), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74295,7 +72222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74316,71 +72243,71 @@ static const uint16_t ts_small_parse_table[] = { [1161] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2091), 1, + STATE(2053), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74392,7 +72319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74413,71 +72340,71 @@ static const uint16_t ts_small_parse_table[] = { [1290] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1426), 1, + STATE(1386), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74489,7 +72416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74510,71 +72437,71 @@ static const uint16_t ts_small_parse_table[] = { [1419] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(2447), 1, + anon_sym_STAR, + ACTIONS(2451), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, + STATE(762), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1001), 1, sym_generic_type, - STATE(1670), 1, + STATE(1065), 1, sym__type, - STATE(2320), 1, + STATE(1190), 1, + sym_for_lifetimes, + STATE(2269), 1, sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2321), 1, sym_lifetime, - STATE(2420), 1, + STATE(2375), 1, sym_function_modifiers, + STATE(2474), 1, + sym_bracketed_type, + STATE(2475), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1046), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74586,7 +72513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(2449), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74607,71 +72534,71 @@ static const uint16_t ts_small_parse_table[] = { [1548] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1413), 1, + STATE(1604), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74683,7 +72610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74704,71 +72631,71 @@ static const uint16_t ts_small_parse_table[] = { [1677] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2032), 1, + STATE(1683), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74780,7 +72707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74801,71 +72728,168 @@ static const uint16_t ts_small_parse_table[] = { [1806] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + ACTIONS(2447), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(2451), 1, + anon_sym_default, + ACTIONS(2453), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, + anon_sym_union, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, + anon_sym_COLON_COLON, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, + sym_metavariable, + STATE(762), 1, + sym_scoped_type_identifier, + STATE(1001), 1, + sym_generic_type, + STATE(1063), 1, + sym__type, + STATE(1190), 1, + sym_for_lifetimes, + STATE(2269), 1, + sym_scoped_identifier, + STATE(2321), 1, + sym_lifetime, + STATE(2375), 1, + sym_function_modifiers, + STATE(2474), 1, + sym_bracketed_type, + STATE(2475), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2469), 3, + sym_self, + sym_super, + sym_crate, + STATE(1046), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2449), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [1935] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1936), 1, + STATE(1571), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74877,7 +72901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74895,74 +72919,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1935] = 32, + [2064] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2133), 1, + STATE(1667), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2432), 1, + sym_function_modifiers, + STATE(2467), 1, sym_lifetime, - STATE(2420), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1370), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(878), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [2193] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + ACTIONS(2447), 1, + anon_sym_STAR, + ACTIONS(2451), 1, + anon_sym_default, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, + anon_sym_union, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, + anon_sym_COLON_COLON, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, + sym_metavariable, + STATE(762), 1, + sym_scoped_type_identifier, + STATE(1001), 1, + sym_generic_type, + STATE(1110), 1, + sym__type, + STATE(1190), 1, + sym_for_lifetimes, + STATE(2269), 1, + sym_scoped_identifier, + STATE(2321), 1, + sym_lifetime, + STATE(2375), 1, sym_function_modifiers, + STATE(2474), 1, + sym_bracketed_type, + STATE(2475), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1046), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74974,7 +73095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(2449), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74992,74 +73113,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2064] = 32, + [2322] = 33, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + ACTIONS(2520), 1, + sym_self, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1941), 1, + STATE(1375), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2432), 1, + sym_function_modifiers, + STATE(2467), 1, sym_lifetime, - STATE(2420), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(892), 2, + sym_super, + sym_crate, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + STATE(1370), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(878), 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, + [2453] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(872), 1, + anon_sym_LPAREN, + ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, + anon_sym_COLON_COLON, + ACTIONS(888), 1, + anon_sym_AMP, + ACTIONS(894), 1, + sym_metavariable, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1319), 1, + sym_scoped_type_identifier, + STATE(1362), 1, + sym_generic_type, + STATE(2180), 1, + sym_scoped_identifier, + STATE(2187), 1, + sym__type, + STATE(2367), 1, + sym_bracketed_type, + STATE(2368), 1, + sym_generic_type_with_turbofish, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75071,7 +73290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75089,74 +73308,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2193] = 32, + [2582] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1863), 1, + STATE(2073), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75168,7 +73387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75186,74 +73405,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2322] = 32, + [2711] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + ACTIONS(2522), 1, + sym_identifier, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1483), 1, sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(2103), 1, + STATE(1671), 1, sym__type, - STATE(2320), 1, + STATE(1672), 1, + sym_generic_type, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75265,7 +73484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75283,74 +73502,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2451] = 32, + [2840] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2052), 1, + STATE(1660), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2432), 1, + sym_function_modifiers, + STATE(2467), 1, sym_lifetime, - STATE(2420), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1370), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(878), 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, + [2969] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + ACTIONS(2447), 1, + anon_sym_STAR, + ACTIONS(2451), 1, + anon_sym_default, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, + anon_sym_union, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, + anon_sym_COLON_COLON, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, + sym_metavariable, + STATE(762), 1, + sym_scoped_type_identifier, + STATE(1001), 1, + sym_generic_type, + STATE(1113), 1, + sym__type, + STATE(1190), 1, + sym_for_lifetimes, + STATE(2269), 1, + sym_scoped_identifier, + STATE(2321), 1, + sym_lifetime, + STATE(2375), 1, sym_function_modifiers, + STATE(2474), 1, + sym_bracketed_type, + STATE(2475), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1046), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75362,7 +73678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(2449), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75380,74 +73696,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2580] = 32, + [3098] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1694), 1, + STATE(1658), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75459,7 +73775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75477,74 +73793,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2709] = 32, + [3227] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1894), 1, + STATE(1394), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75556,7 +73872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75574,74 +73890,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2838] = 32, + [3356] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1689), 1, + STATE(2172), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75653,7 +73969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75671,74 +73987,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2967] = 32, + [3485] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1909), 1, + STATE(1941), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75750,7 +74066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75768,74 +74084,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3096] = 32, + [3614] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1888), 1, - sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2272), 1, + sym__type, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75847,7 +74163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75865,74 +74181,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3225] = 32, + [3743] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1424), 1, + STATE(2095), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75944,7 +74260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75962,74 +74278,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3354] = 32, + [3872] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(702), 1, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(714), 1, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2484), 1, - sym_identifier, - ACTIONS(2486), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2488), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_STAR, - ACTIONS(2496), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2500), 1, - anon_sym_impl, - ACTIONS(2502), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2504), 1, - anon_sym_BANG, - ACTIONS(2506), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2508), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2510), 1, - anon_sym_dyn, - ACTIONS(2516), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(780), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(937), 1, + STATE(1362), 1, sym_generic_type, - STATE(1145), 1, + STATE(1689), 1, sym__type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2329), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2492), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2493), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2497), 1, + STATE(2432), 1, + sym_function_modifiers, + STATE(2467), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2514), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1136), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76041,7 +74357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2494), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76059,74 +74375,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3483] = 32, + [4001] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2137), 1, + STATE(1373), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76138,7 +74454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76156,171 +74472,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3612] = 32, + [4130] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2484), 1, - sym_identifier, - ACTIONS(2486), 1, - anon_sym_LPAREN, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(2496), 1, - anon_sym_default, - ACTIONS(2498), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(2500), 1, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(2502), 1, - anon_sym_union, - ACTIONS(2504), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(2506), 1, - anon_sym_COLON_COLON, - ACTIONS(2508), 1, - anon_sym_AMP, - ACTIONS(2510), 1, - anon_sym_dyn, - ACTIONS(2516), 1, - sym_metavariable, - STATE(780), 1, - sym_scoped_type_identifier, - STATE(937), 1, - sym_generic_type, - STATE(1071), 1, - sym__type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2329), 1, - sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2492), 1, - sym_bracketed_type, - STATE(2493), 1, - sym_generic_type_with_turbofish, - STATE(2497), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2514), 3, - sym_self, - sym_super, - sym_crate, - STATE(1136), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2494), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [3741] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2484), 1, - sym_identifier, - ACTIONS(2486), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2488), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_STAR, - ACTIONS(2496), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2500), 1, - anon_sym_impl, - ACTIONS(2502), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2504), 1, - anon_sym_BANG, - ACTIONS(2506), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2508), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2510), 1, - anon_sym_dyn, - ACTIONS(2516), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(780), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(937), 1, + STATE(1362), 1, sym_generic_type, - STATE(1128), 1, + STATE(2124), 1, sym__type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2329), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2492), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2493), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2497), 1, + STATE(2432), 1, + sym_function_modifiers, + STATE(2467), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2514), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1136), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76332,7 +74551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2494), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76350,74 +74569,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3870] = 32, + [4259] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2185), 1, + STATE(2096), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76429,7 +74648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76447,74 +74666,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3999] = 32, + [4388] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2115), 1, + STATE(1657), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76526,7 +74745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76544,171 +74763,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4128] = 32, + [4517] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1410), 1, + STATE(1654), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [4257] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2484), 1, - sym_identifier, - ACTIONS(2486), 1, - anon_sym_LPAREN, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_STAR, - ACTIONS(2496), 1, - anon_sym_default, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2500), 1, - anon_sym_impl, - ACTIONS(2502), 1, - anon_sym_union, - ACTIONS(2504), 1, - anon_sym_BANG, - ACTIONS(2506), 1, - anon_sym_COLON_COLON, - ACTIONS(2508), 1, - anon_sym_AMP, - ACTIONS(2510), 1, - anon_sym_dyn, - ACTIONS(2516), 1, - sym_metavariable, - STATE(780), 1, - sym_scoped_type_identifier, - STATE(937), 1, - sym_generic_type, - STATE(1143), 1, - sym__type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2329), 1, - sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2492), 1, - sym_bracketed_type, - STATE(2493), 1, - sym_generic_type_with_turbofish, - STATE(2497), 1, + STATE(2467), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2514), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1136), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76720,7 +74842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2494), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76738,74 +74860,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4386] = 32, + [4646] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2550), 1, + ACTIONS(2295), 1, sym_identifier, - STATE(1214), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, sym_for_lifetimes, - STATE(1535), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1728), 1, + STATE(1362), 1, sym_generic_type, - STATE(1730), 1, + STATE(1919), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76817,7 +74939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76835,74 +74957,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4515] = 32, + [4775] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(702), 1, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(714), 1, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2484), 1, - sym_identifier, - ACTIONS(2486), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2488), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_STAR, - ACTIONS(2496), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2500), 1, - anon_sym_impl, - ACTIONS(2502), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2504), 1, - anon_sym_BANG, - ACTIONS(2506), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2508), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2510), 1, - anon_sym_dyn, - ACTIONS(2516), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(780), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(937), 1, + STATE(1362), 1, sym_generic_type, - STATE(1125), 1, + STATE(1651), 1, sym__type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2329), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2492), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2493), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2497), 1, + STATE(2432), 1, + sym_function_modifiers, + STATE(2467), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2514), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1136), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76914,7 +75036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2494), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76932,74 +75054,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4644] = 32, + [4904] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2028), 1, - sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2294), 1, + sym__type, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77011,7 +75133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77029,74 +75151,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4773] = 32, + [5033] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2552), 1, + ACTIONS(2295), 1, sym_identifier, - STATE(1214), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, sym_for_lifetimes, - STATE(1516), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1676), 1, + STATE(1362), 1, sym_generic_type, - STATE(1735), 1, + STATE(1619), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77108,7 +75230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77126,74 +75248,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4902] = 32, + [5162] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1599), 1, + STATE(1915), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77205,7 +75327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77223,74 +75345,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5031] = 32, + [5291] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2284), 1, + STATE(1771), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77302,7 +75424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77320,74 +75442,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5160] = 32, + [5420] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1605), 1, + STATE(1909), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77399,7 +75521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77417,74 +75539,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5289] = 32, + [5549] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1902), 1, + STATE(2102), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77496,7 +75618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77514,74 +75636,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5418] = 32, + [5678] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + ACTIONS(2524), 1, + sym_identifier, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1478), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1617), 1, sym_generic_type, - STATE(1423), 1, + STATE(1630), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77593,7 +75715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77611,74 +75733,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5547] = 32, + [5807] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(2447), 1, + anon_sym_STAR, + ACTIONS(2451), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, + STATE(762), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1001), 1, sym_generic_type, - STATE(1420), 1, + STATE(1094), 1, sym__type, - STATE(2320), 1, + STATE(1190), 1, + sym_for_lifetimes, + STATE(2269), 1, sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2321), 1, sym_lifetime, - STATE(2420), 1, + STATE(2375), 1, sym_function_modifiers, + STATE(2474), 1, + sym_bracketed_type, + STATE(2475), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1046), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77690,7 +75812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(2449), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77708,171 +75830,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5676] = 32, + [5936] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2142), 1, + STATE(1824), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [5805] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2484), 1, - sym_identifier, - ACTIONS(2486), 1, - anon_sym_LPAREN, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_STAR, - ACTIONS(2496), 1, - anon_sym_default, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2500), 1, - anon_sym_impl, - ACTIONS(2502), 1, - anon_sym_union, - ACTIONS(2504), 1, - anon_sym_BANG, - ACTIONS(2506), 1, - anon_sym_COLON_COLON, - ACTIONS(2508), 1, - anon_sym_AMP, - ACTIONS(2510), 1, - anon_sym_dyn, - ACTIONS(2516), 1, - sym_metavariable, - STATE(780), 1, - sym_scoped_type_identifier, - STATE(937), 1, - sym_generic_type, - STATE(1123), 1, - sym__type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2329), 1, - sym_scoped_identifier, - STATE(2390), 1, + STATE(2432), 1, sym_function_modifiers, - STATE(2492), 1, - sym_bracketed_type, - STATE(2493), 1, - sym_generic_type_with_turbofish, - STATE(2497), 1, + STATE(2467), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2514), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1136), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77884,7 +75909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2494), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77902,74 +75927,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5934] = 32, + [6065] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1651), 1, + STATE(2146), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77981,7 +76006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77999,74 +76024,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6063] = 32, + [6194] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1433), 1, + STATE(2104), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78078,7 +76103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78096,74 +76121,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6192] = 32, + [6323] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2075), 1, + STATE(1646), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78175,7 +76200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78193,74 +76218,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6321] = 32, + [6452] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2248), 1, + STATE(2097), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78272,7 +76297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78290,74 +76315,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6450] = 32, + [6581] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1430), 1, + STATE(1618), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78369,7 +76394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78387,74 +76412,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6579] = 32, + [6710] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(702), 1, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(714), 1, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2484), 1, - sym_identifier, - ACTIONS(2486), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2488), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_STAR, - ACTIONS(2496), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2500), 1, - anon_sym_impl, - ACTIONS(2502), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2504), 1, - anon_sym_BANG, - ACTIONS(2506), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2508), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2510), 1, - anon_sym_dyn, - ACTIONS(2516), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(780), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(937), 1, + STATE(1362), 1, sym_generic_type, - STATE(1109), 1, + STATE(1616), 1, sym__type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2329), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2492), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2493), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2497), 1, + STATE(2432), 1, + sym_function_modifiers, + STATE(2467), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2514), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1136), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78466,7 +76491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2494), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78484,74 +76509,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6708] = 32, + [6839] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1686), 1, + STATE(2043), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78563,7 +76588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78581,74 +76606,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6837] = 32, + [6968] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(2447), 1, + anon_sym_STAR, + ACTIONS(2451), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, sym_metavariable, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2554), 1, - sym_identifier, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1549), 1, + STATE(762), 1, sym_scoped_type_identifier, - STATE(1719), 1, - sym__type, - STATE(1722), 1, + STATE(1001), 1, sym_generic_type, - STATE(2320), 1, + STATE(1096), 1, + sym__type, + STATE(1190), 1, + sym_for_lifetimes, + STATE(2269), 1, sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2321), 1, sym_lifetime, - STATE(2420), 1, + STATE(2375), 1, sym_function_modifiers, + STATE(2474), 1, + sym_bracketed_type, + STATE(2475), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1046), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78660,7 +76685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(2449), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78678,74 +76703,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6966] = 32, + [7097] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2278), 1, + STATE(1687), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78757,7 +76782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78775,74 +76800,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7095] = 32, + [7226] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1685), 1, + STATE(2065), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78854,7 +76879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78872,74 +76897,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7224] = 32, + [7355] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2107), 1, - sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2229), 1, + sym__type, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78951,7 +76976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78969,74 +76994,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7353] = 32, + [7484] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(702), 1, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(714), 1, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2484), 1, - sym_identifier, - ACTIONS(2486), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2488), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_STAR, - ACTIONS(2496), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2500), 1, - anon_sym_impl, - ACTIONS(2502), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2504), 1, - anon_sym_BANG, - ACTIONS(2506), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2508), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2510), 1, - anon_sym_dyn, - ACTIONS(2516), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(780), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(937), 1, + STATE(1362), 1, sym_generic_type, - STATE(1141), 1, + STATE(1770), 1, sym__type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2329), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2492), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2493), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2497), 1, + STATE(2432), 1, + sym_function_modifiers, + STATE(2467), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2514), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1136), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79048,7 +77073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2494), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79066,74 +77091,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7482] = 32, + [7613] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2089), 1, + STATE(1872), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79145,7 +77170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79163,74 +77188,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7611] = 32, + [7742] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1643), 1, + STATE(1645), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79242,7 +77267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79260,74 +77285,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7740] = 32, + [7871] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(2447), 1, + anon_sym_STAR, + ACTIONS(2451), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, + STATE(762), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1001), 1, sym_generic_type, - STATE(2114), 1, + STATE(1061), 1, sym__type, - STATE(2320), 1, + STATE(1190), 1, + sym_for_lifetimes, + STATE(2269), 1, sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2321), 1, sym_lifetime, - STATE(2420), 1, + STATE(2375), 1, sym_function_modifiers, + STATE(2474), 1, + sym_bracketed_type, + STATE(2475), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1046), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79339,7 +77364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(2449), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79357,74 +77382,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7869] = 32, + [8000] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(702), 1, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(714), 1, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2484), 1, - sym_identifier, - ACTIONS(2486), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2488), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_STAR, - ACTIONS(2496), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2500), 1, - anon_sym_impl, - ACTIONS(2502), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2504), 1, - anon_sym_BANG, - ACTIONS(2506), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2508), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2510), 1, - anon_sym_dyn, - ACTIONS(2516), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(780), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(937), 1, + STATE(1362), 1, sym_generic_type, - STATE(1107), 1, + STATE(1581), 1, sym__type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2329), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2492), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2493), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2497), 1, + STATE(2432), 1, + sym_function_modifiers, + STATE(2467), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2514), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1136), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79436,7 +77461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2494), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79454,74 +77479,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7998] = 32, + [8129] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(702), 1, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(714), 1, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2484), 1, - sym_identifier, - ACTIONS(2486), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2488), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_STAR, - ACTIONS(2496), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2500), 1, - anon_sym_impl, - ACTIONS(2502), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2504), 1, - anon_sym_BANG, - ACTIONS(2506), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2508), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2510), 1, - anon_sym_dyn, - ACTIONS(2516), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(780), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2526), 1, + sym_identifier, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1509), 1, sym_scoped_type_identifier, - STATE(937), 1, + STATE(1605), 1, sym_generic_type, - STATE(1139), 1, + STATE(1607), 1, sym__type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2329), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2492), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2493), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2497), 1, + STATE(2432), 1, + sym_function_modifiers, + STATE(2467), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2514), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1136), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79533,7 +77558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2494), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79551,74 +77576,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8127] = 32, + [8258] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1903), 1, + STATE(2025), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2432), 1, + sym_function_modifiers, + STATE(2467), 1, sym_lifetime, - STATE(2420), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1370), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(878), 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, + [8387] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + ACTIONS(2447), 1, + anon_sym_STAR, + ACTIONS(2451), 1, + anon_sym_default, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, + anon_sym_union, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, + anon_sym_COLON_COLON, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, + sym_metavariable, + STATE(762), 1, + sym_scoped_type_identifier, + STATE(1001), 1, + sym_generic_type, + STATE(1057), 1, + sym__type, + STATE(1190), 1, + sym_for_lifetimes, + STATE(2269), 1, + sym_scoped_identifier, + STATE(2321), 1, + sym_lifetime, + STATE(2375), 1, sym_function_modifiers, + STATE(2474), 1, + sym_bracketed_type, + STATE(2475), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1046), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79630,7 +77752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(2449), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79648,74 +77770,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8256] = 32, + [8516] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2177), 1, + STATE(1807), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79727,7 +77849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79745,74 +77867,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8385] = 32, + [8645] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2556), 1, + ACTIONS(2295), 1, sym_identifier, - STATE(1214), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, sym_for_lifetimes, - STATE(1551), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1667), 1, - sym__type, - STATE(1733), 1, + STATE(1362), 1, sym_generic_type, - STATE(2320), 1, + STATE(1690), 1, + sym__type, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79824,7 +77946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79842,74 +77964,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8514] = 32, + [8774] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1697), 1, + STATE(1613), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79921,7 +78043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79939,74 +78061,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8643] = 32, + [8903] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1731), 1, - sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2201), 1, + sym__type, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80018,7 +78140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80036,171 +78158,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8772] = 32, + [9032] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1647), 1, + STATE(1606), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [8901] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2484), 1, - sym_identifier, - ACTIONS(2486), 1, - anon_sym_LPAREN, - ACTIONS(2488), 1, - anon_sym_LBRACK, - ACTIONS(2492), 1, - anon_sym_STAR, - ACTIONS(2496), 1, - anon_sym_default, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2500), 1, - anon_sym_impl, - ACTIONS(2502), 1, - anon_sym_union, - ACTIONS(2504), 1, - anon_sym_BANG, - ACTIONS(2506), 1, - anon_sym_COLON_COLON, - ACTIONS(2508), 1, - anon_sym_AMP, - ACTIONS(2510), 1, - anon_sym_dyn, - ACTIONS(2516), 1, - sym_metavariable, - STATE(780), 1, - sym_scoped_type_identifier, - STATE(937), 1, - sym_generic_type, - STATE(1106), 1, - sym__type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2329), 1, - sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2492), 1, - sym_bracketed_type, - STATE(2493), 1, - sym_generic_type_with_turbofish, - STATE(2497), 1, + STATE(2467), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2514), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1136), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80212,7 +78237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2494), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80230,74 +78255,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9030] = 32, + [9161] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + ACTIONS(2528), 1, + sym_identifier, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1487), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1622), 1, sym_generic_type, - STATE(1409), 1, + STATE(1697), 1, sym__type, - STATE(1422), 1, - sym_lifetime, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80309,7 +78334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80327,74 +78352,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9159] = 32, + [9290] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1993), 1, + STATE(1383), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80406,7 +78431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80424,74 +78449,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9288] = 32, + [9419] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2156), 1, + STATE(2018), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80503,7 +78528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80521,74 +78546,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9417] = 32, + [9548] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1409), 1, + STATE(1383), 1, sym__type, - STATE(2320), 1, + STATE(1385), 1, + sym_lifetime, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80600,7 +78625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80618,74 +78643,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9546] = 32, + [9677] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2291), 1, + STATE(1698), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80697,7 +78722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80715,74 +78740,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9675] = 32, + [9806] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2025), 1, - sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2216), 1, + sym__type, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80794,7 +78819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80812,74 +78837,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9804] = 32, + [9935] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1734), 1, + STATE(1847), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80891,7 +78916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80909,74 +78934,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9933] = 32, + [10064] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2029), 1, + STATE(1846), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80988,7 +79013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81006,75 +79031,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10062] = 33, + [10193] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(2558), 1, - sym_self, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1426), 1, + STATE(2071), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(922), 2, - sym_super, - sym_crate, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - STATE(1421), 11, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81086,50 +79110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [10193] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1834), 20, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1836), 42, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81147,99 +79128,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [10264] = 32, + [10322] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2039), 1, + STATE(1768), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81251,7 +79207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81269,74 +79225,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10393] = 32, + [10451] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1666), 1, + STATE(1656), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81348,7 +79304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81366,74 +79322,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10522] = 32, + [10580] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1669), 1, + STATE(1641), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81445,7 +79401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81463,74 +79419,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10651] = 32, + [10709] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2123), 1, + STATE(2049), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81542,7 +79498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81560,74 +79516,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10780] = 32, + [10838] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2121), 1, + STATE(1940), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81639,7 +79595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81657,74 +79613,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10909] = 32, + [10967] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2183), 1, + STATE(1681), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81736,7 +79692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81754,74 +79710,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11038] = 32, + [11096] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(2447), 1, + anon_sym_STAR, + ACTIONS(2451), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, + STATE(762), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1001), 1, sym_generic_type, - STATE(1652), 1, + STATE(1124), 1, sym__type, - STATE(2320), 1, + STATE(1190), 1, + sym_for_lifetimes, + STATE(2269), 1, sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2321), 1, sym_lifetime, - STATE(2420), 1, + STATE(2375), 1, sym_function_modifiers, + STATE(2474), 1, + sym_bracketed_type, + STATE(2475), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1046), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81833,7 +79789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(2449), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81851,74 +79807,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11167] = 32, + [11225] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1672), 1, + STATE(1382), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81930,7 +79886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81948,74 +79904,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11296] = 32, + [11354] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1677), 1, - sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2242), 1, + sym__type, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82027,7 +79983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82045,74 +80001,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11425] = 32, + [11483] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1646), 1, + STATE(1655), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82124,7 +80080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82142,86 +80098,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11554] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, + [11612] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1852), 20, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - ACTIONS(906), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(910), 1, - anon_sym_default, - ACTIONS(912), 1, - anon_sym_union, - ACTIONS(916), 1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(918), 1, anon_sym_AMP, - ACTIONS(924), 1, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, - sym_scoped_type_identifier, - STATE(1402), 1, - sym_generic_type, - STATE(2320), 1, - sym_scoped_identifier, - STATE(2324), 1, - sym__type, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(1421), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(1854), 42, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82239,74 +80141,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, [11683] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1691), 1, + STATE(1993), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82318,7 +80245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82339,71 +80266,71 @@ static const uint16_t ts_small_parse_table[] = { [11812] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2085), 1, + STATE(1980), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82415,7 +80342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82436,71 +80363,71 @@ static const uint16_t ts_small_parse_table[] = { [11941] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1662), 1, + STATE(1379), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82512,7 +80439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82533,71 +80460,71 @@ static const uint16_t ts_small_parse_table[] = { [12070] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2316), 1, + STATE(1380), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82609,7 +80536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82630,71 +80557,71 @@ static const uint16_t ts_small_parse_table[] = { [12199] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2199), 1, + STATE(2103), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82706,7 +80633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82727,71 +80654,71 @@ static const uint16_t ts_small_parse_table[] = { [12328] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1800), 1, + STATE(1692), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82803,7 +80730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82824,71 +80751,71 @@ static const uint16_t ts_small_parse_table[] = { [12457] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1801), 1, + STATE(1387), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82900,7 +80827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82921,71 +80848,71 @@ static const uint16_t ts_small_parse_table[] = { [12586] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1725), 1, + STATE(1384), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82997,7 +80924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83018,71 +80945,71 @@ static const uint16_t ts_small_parse_table[] = { [12715] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2238), 1, + STATE(1674), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83094,7 +81021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83115,71 +81042,71 @@ static const uint16_t ts_small_parse_table[] = { [12844] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1804), 1, + STATE(1378), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83191,7 +81118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83212,71 +81139,71 @@ static const uint16_t ts_small_parse_table[] = { [12973] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1807), 1, + STATE(1926), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83288,7 +81215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83309,71 +81236,71 @@ static const uint16_t ts_small_parse_table[] = { [13102] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(2034), 1, + STATE(2023), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83385,7 +81312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83406,71 +81333,71 @@ static const uint16_t ts_small_parse_table[] = { [13231] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1434), 1, + STATE(1679), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83482,7 +81409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83503,71 +81430,71 @@ static const uint16_t ts_small_parse_table[] = { [13360] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1718), 1, + STATE(1989), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83579,7 +81506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83600,71 +81527,71 @@ static const uint16_t ts_small_parse_table[] = { [13489] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1673), 1, + STATE(2032), 1, sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83676,7 +81603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83697,71 +81624,71 @@ static const uint16_t ts_small_parse_table[] = { [13618] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(2447), 1, + anon_sym_STAR, + ACTIONS(2451), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, + STATE(762), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1001), 1, sym_generic_type, - STATE(1717), 1, + STATE(1044), 1, sym__type, - STATE(2320), 1, + STATE(1190), 1, + sym_for_lifetimes, + STATE(2269), 1, sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2321), 1, sym_lifetime, - STATE(2420), 1, + STATE(2375), 1, sym_function_modifiers, + STATE(2474), 1, + sym_bracketed_type, + STATE(2475), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1046), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83773,7 +81700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(2449), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83794,71 +81721,71 @@ static const uint16_t ts_small_parse_table[] = { [13747] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, - anon_sym_STAR, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, - anon_sym_impl, - ACTIONS(710), 1, - anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, - anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(2447), 1, + anon_sym_STAR, + ACTIONS(2451), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, sym_metavariable, - ACTIONS(2325), 1, - sym_identifier, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1360), 1, + STATE(762), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1001), 1, sym_generic_type, - STATE(2235), 1, + STATE(1117), 1, sym__type, - STATE(2320), 1, + STATE(1190), 1, + sym_for_lifetimes, + STATE(2269), 1, sym_scoped_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2321), 1, sym_lifetime, - STATE(2420), 1, + STATE(2375), 1, sym_function_modifiers, + STATE(2474), 1, + sym_bracketed_type, + STATE(2475), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1046), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83870,7 +81797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(2449), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83891,71 +81818,71 @@ static const uint16_t ts_small_parse_table[] = { [13876] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1681), 1, - sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2193), 1, + sym__type, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83967,7 +81894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83988,71 +81915,71 @@ static const uint16_t ts_small_parse_table[] = { [14005] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(688), 1, + ACTIONS(658), 1, anon_sym_STAR, - ACTIONS(700), 1, + ACTIONS(670), 1, anon_sym_fn, - ACTIONS(702), 1, + ACTIONS(672), 1, anon_sym_for, - ACTIONS(704), 1, + ACTIONS(674), 1, anon_sym_impl, - ACTIONS(710), 1, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(714), 1, + ACTIONS(684), 1, anon_sym_extern, - ACTIONS(726), 1, + ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(902), 1, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(910), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(912), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(916), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(918), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(924), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2325), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2329), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1214), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1360), 1, + STATE(1319), 1, sym_scoped_type_identifier, - STATE(1402), 1, + STATE(1362), 1, sym_generic_type, - STATE(1967), 1, - sym__type, - STATE(2320), 1, + STATE(2180), 1, sym_scoped_identifier, - STATE(2383), 1, + STATE(2195), 1, + sym__type, + STATE(2367), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2368), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, - sym_lifetime, - STATE(2420), 1, + STATE(2432), 1, sym_function_modifiers, + STATE(2467), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, + STATE(1551), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1421), 11, + STATE(1370), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -84064,7 +81991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(908), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84086,70 +82013,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2562), 17, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_DASH_GT, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2560), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_DASH, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14200] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(408), 18, + ACTIONS(522), 18, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -84168,7 +82032,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2564), 39, + ACTIONS(2530), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84208,11 +82072,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14266] = 3, + [14200] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2568), 17, + ACTIONS(2534), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -84230,7 +82094,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2566), 40, + ACTIONS(2532), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84271,11 +82135,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14332] = 3, + [14266] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(880), 17, + ACTIONS(850), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -84293,7 +82157,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(878), 40, + ACTIONS(848), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84331,311 +82195,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - sym_self, - sym_super, - sym_crate, - [14398] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1834), 15, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1836), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_ref, - anon_sym__, - anon_sym_dyn, - sym_mutable_specifier, - anon_sym_DOT_DOT, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14460] = 9, - ACTIONS(2572), 1, - anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_BANG, - ACTIONS(2578), 1, - anon_sym_COLON_COLON, - ACTIONS(2580), 1, - anon_sym_LT2, - STATE(1007), 1, - sym_type_arguments, - STATE(1043), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2574), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2570), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14530] = 8, - ACTIONS(2572), 1, - anon_sym_LPAREN, - ACTIONS(2578), 1, - anon_sym_COLON_COLON, - ACTIONS(2580), 1, - anon_sym_LT2, - STATE(1007), 1, - sym_type_arguments, - STATE(1043), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2584), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2582), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14597] = 8, - ACTIONS(2572), 1, - anon_sym_LPAREN, - ACTIONS(2578), 1, - anon_sym_COLON_COLON, - ACTIONS(2580), 1, - anon_sym_LT2, - STATE(1007), 1, - sym_type_arguments, - STATE(1043), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2588), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2586), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14664] = 5, - ACTIONS(2594), 1, - anon_sym_BANG, - ACTIONS(2596), 1, - anon_sym_COLON_COLON, + sym_self, + sym_super, + sym_crate, + [14332] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 17, - anon_sym_PLUS, + ACTIONS(2538), 17, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_EQ, + anon_sym_BANG, + anon_sym_DASH_GT, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2590), 28, - anon_sym_SEMI, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2536), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_DASH, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14398] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1852), 15, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14724] = 5, - ACTIONS(2602), 1, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(1854), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_ref, + anon_sym__, + anon_sym_dyn, + sym_mutable_specifier, + anon_sym_DOT_DOT, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14460] = 9, + ACTIONS(2542), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, anon_sym_BANG, - ACTIONS(2604), 1, + ACTIONS(2548), 1, anon_sym_COLON_COLON, + ACTIONS(2550), 1, + anon_sym_LT2, + STATE(824), 1, + sym_type_arguments, + STATE(832), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 17, + ACTIONS(2544), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84653,9 +82354,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2598), 28, + ACTIONS(2540), 26, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84666,7 +82366,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84682,15 +82381,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14784] = 5, - ACTIONS(2610), 1, - anon_sym_BANG, - ACTIONS(2612), 1, + [14530] = 8, + ACTIONS(2542), 1, + anon_sym_LPAREN, + ACTIONS(2548), 1, anon_sym_COLON_COLON, + ACTIONS(2550), 1, + anon_sym_LT2, + STATE(824), 1, + sym_type_arguments, + STATE(832), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 17, + ACTIONS(2554), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84708,9 +82413,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2606), 28, + ACTIONS(2552), 26, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84721,7 +82425,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84737,19 +82440,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14844] = 7, - ACTIONS(2572), 1, + [14597] = 8, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2548), 1, + anon_sym_COLON_COLON, + ACTIONS(2550), 1, anon_sym_LT2, - STATE(1011), 1, + STATE(824), 1, sym_type_arguments, - STATE(1035), 1, + STATE(832), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 17, + ACTIONS(2558), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84767,7 +82472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2614), 26, + ACTIONS(2556), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -84794,64 +82499,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14908] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1746), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1748), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14964] = 3, + [14664] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1954), 9, + ACTIONS(1470), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84861,7 +82513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1956), 38, + ACTIONS(1472), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84900,19 +82552,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15020] = 7, - ACTIONS(2576), 1, + [14720] = 7, + ACTIONS(2546), 1, anon_sym_BANG, - ACTIONS(2618), 1, + ACTIONS(2560), 1, anon_sym_LBRACE, - ACTIONS(2620), 1, + ACTIONS(2562), 1, anon_sym_COLON_COLON, - STATE(1090), 1, + STATE(1131), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(422), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84928,7 +82580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 28, + ACTIONS(424), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84957,19 +82609,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15084] = 7, - ACTIONS(2572), 1, + [14784] = 7, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2550), 1, anon_sym_LT2, - STATE(1011), 1, + STATE(802), 1, sym_type_arguments, - STATE(1035), 1, + STATE(877), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 17, + ACTIONS(2566), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84987,7 +82639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2622), 26, + ACTIONS(2564), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -85014,17 +82666,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15148] = 5, - ACTIONS(2630), 1, + [14848] = 6, + ACTIONS(2574), 1, anon_sym_BANG, - ACTIONS(2632), 1, + ACTIONS(2576), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 17, + ACTIONS(2572), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(2570), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85033,32 +82693,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2626), 28, + ACTIONS(2568), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -85068,12 +82720,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15208] = 3, + [14910] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1522), 9, + ACTIONS(1848), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85083,7 +82736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1524), 38, + ACTIONS(1850), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85122,19 +82775,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15264] = 7, - ACTIONS(2572), 1, + [14966] = 7, + ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2550), 1, anon_sym_LT2, - STATE(1011), 1, + STATE(802), 1, sym_type_arguments, - STATE(1035), 1, + STATE(877), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2636), 17, + ACTIONS(2580), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85152,7 +82805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2634), 26, + ACTIONS(2578), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -85179,78 +82832,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15328] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1558), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1560), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15384] = 6, - ACTIONS(2644), 1, + [15030] = 5, + ACTIONS(2586), 1, anon_sym_BANG, - ACTIONS(2646), 1, + ACTIONS(2588), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(2640), 16, + ACTIONS(2584), 17, anon_sym_PLUS, anon_sym_STAR, - anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85259,110 +82851,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2638), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15446] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1610), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1612), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15502] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2630), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2632), 30, + ACTIONS(2582), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85374,14 +82870,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -85391,18 +82886,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15557] = 4, - ACTIONS(2648), 1, - anon_sym_LBRACE, + [15090] = 5, + ACTIONS(2594), 1, + anon_sym_BANG, + ACTIONS(2596), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2594), 16, + ACTIONS(2592), 17, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85411,15 +82906,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2596), 29, + ACTIONS(2590), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85427,14 +82925,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -85444,17 +82941,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15614] = 5, - ACTIONS(2654), 1, - anon_sym_SQUOTE, - STATE(1084), 1, - sym_loop_label, + [15150] = 5, + ACTIONS(2602), 1, + anon_sym_BANG, + ACTIONS(2604), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2652), 15, + ACTIONS(2600), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85465,12 +82961,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2650), 29, + ACTIONS(2598), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85483,12 +82981,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -85498,17 +82996,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15673] = 5, - ACTIONS(2656), 1, - anon_sym_else, - STATE(1132), 1, - sym_else_clause, + [15210] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1250), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1252), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15266] = 5, + ACTIONS(2610), 1, + anon_sym_BANG, + ACTIONS(2612), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(394), 15, + ACTIONS(2608), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85519,12 +83069,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(392), 29, + ACTIONS(2606), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85537,12 +83089,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -85552,18 +83104,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15732] = 4, - ACTIONS(2658), 1, - anon_sym_LBRACE, + [15326] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 16, + ACTIONS(1314), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1316), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15382] = 7, + ACTIONS(2542), 1, + anon_sym_LPAREN, + ACTIONS(2550), 1, + anon_sym_LT2, + STATE(802), 1, + sym_type_arguments, + STATE(877), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2616), 17, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85572,15 +83181,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2612), 29, + ACTIONS(2614), 26, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85588,14 +83199,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -85605,19 +83214,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15789] = 5, - ACTIONS(2656), 1, - anon_sym_else, - STATE(1063), 1, - sym_else_clause, + [15446] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(502), 15, + ACTIONS(1186), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1188), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15502] = 4, + ACTIONS(2618), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2610), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85631,11 +83291,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(500), 29, + ACTIONS(2612), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85643,6 +83302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85661,8 +83321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15848] = 4, - ACTIONS(2660), 1, + [15559] = 4, + ACTIONS(2620), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, @@ -85714,13 +83374,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15905] = 4, - ACTIONS(2662), 1, + [15616] = 4, + ACTIONS(2622), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 16, + ACTIONS(2594), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -85737,7 +83397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2632), 29, + ACTIONS(2596), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85767,119 +83427,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15962] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1426), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1428), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16016] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1538), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1540), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16070] = 5, - ACTIONS(2666), 1, - anon_sym_LPAREN, - STATE(1096), 1, - sym_arguments, + [15673] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2668), 15, + ACTIONS(2594), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85893,8 +83448,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2664), 28, + ACTIONS(2596), 30, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -85904,6 +83460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85922,15 +83479,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16128] = 4, - ACTIONS(2670), 1, - anon_sym_COLON_COLON, + [15728] = 4, + ACTIONS(2624), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(2586), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85944,11 +83502,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 29, + ACTIONS(2588), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85956,6 +83513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85974,15 +83532,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16184] = 5, - ACTIONS(2646), 1, - anon_sym_COLON_COLON, - ACTIONS(2672), 1, - anon_sym_BANG, + [15785] = 5, + ACTIONS(2630), 1, + anon_sym_SQUOTE, + STATE(1128), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, + ACTIONS(2628), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85998,10 +83556,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2638), 28, + ACTIONS(2626), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -86027,113 +83586,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16242] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1722), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1724), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16296] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1448), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1450), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16350] = 3, + [15844] = 5, + ACTIONS(2632), 1, + anon_sym_else, + STATE(1047), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(848), 15, + ACTIONS(398), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86149,7 +83610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(850), 30, + ACTIONS(396), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86158,7 +83619,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, @@ -86180,15 +83640,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16404] = 5, + [15903] = 5, ACTIONS(2576), 1, - anon_sym_BANG, - ACTIONS(2674), 1, anon_sym_COLON_COLON, + ACTIONS(2634), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(2570), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86204,7 +83664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 28, + ACTIONS(2568), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86233,164 +83693,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16462] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1590), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1592), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16516] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(554), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(556), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16570] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1670), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1672), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16624] = 3, + [15961] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1542), 7, + ACTIONS(446), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86398,7 +83705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1544), 38, + ACTIONS(448), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86437,11 +83744,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16678] = 3, + [16015] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(542), 7, + ACTIONS(1976), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86449,7 +83756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(544), 38, + ACTIONS(1978), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86488,11 +83795,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16732] = 3, + [16069] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(548), 7, + ACTIONS(1984), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86500,7 +83807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(550), 38, + ACTIONS(1986), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86539,11 +83846,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16786] = 3, + [16123] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1678), 7, + ACTIONS(1246), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86551,7 +83858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1680), 38, + ACTIONS(1248), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86590,11 +83897,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16840] = 3, + [16177] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1742), 7, + ACTIONS(1980), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86602,7 +83909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1744), 38, + ACTIONS(1982), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86641,11 +83948,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16894] = 3, + [16231] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1602), 7, + ACTIONS(1972), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86653,7 +83960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1604), 38, + ACTIONS(1974), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86692,164 +83999,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16948] = 3, + [16285] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(574), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2638), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(576), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17002] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(620), 7, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2636), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(622), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17056] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16339] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1834), 7, + ACTIONS(818), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(820), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1836), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17110] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16393] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(586), 7, + ACTIONS(1948), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86857,7 +84113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(588), 38, + ACTIONS(1950), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86896,11 +84152,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17164] = 3, + [16447] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1686), 7, + ACTIONS(1944), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86908,7 +84164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1688), 38, + ACTIONS(1946), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86947,11 +84203,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17218] = 3, + [16501] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(672), 7, + ACTIONS(1932), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86959,7 +84215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(674), 38, + ACTIONS(1934), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86998,11 +84254,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17272] = 3, + [16555] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2678), 15, + ACTIONS(2642), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87018,7 +84274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2676), 30, + ACTIONS(2640), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87049,11 +84305,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17326] = 3, + [16609] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1802), 7, + ACTIONS(1928), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87061,7 +84317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1804), 38, + ACTIONS(1930), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87100,14 +84356,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17380] = 4, + [16663] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2682), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2684), 15, + ACTIONS(2646), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87123,10 +84376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2680), 28, + ACTIONS(2644), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -87134,6 +84388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -87152,11 +84407,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17436] = 3, + [16717] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1472), 7, + ACTIONS(1238), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87164,7 +84419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1474), 38, + ACTIONS(1240), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87203,62 +84458,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17490] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2688), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2686), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [17544] = 3, + [16771] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1496), 7, + ACTIONS(1234), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87266,7 +84470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1498), 38, + ACTIONS(1236), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87305,166 +84509,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17598] = 4, - ACTIONS(2694), 1, - anon_sym_DASH_GT, + [16825] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2692), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2690), 29, + ACTIONS(1230), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [17654] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2698), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2696), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [17708] = 4, + sym_metavariable, + ACTIONS(1232), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16879] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2700), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2684), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2680), 28, + ACTIONS(1226), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [17764] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1228), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16933] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1366), 7, + ACTIONS(1222), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87472,7 +84623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1368), 38, + ACTIONS(1224), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87511,11 +84662,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17818] = 3, + [16987] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1978), 7, + ACTIONS(1210), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87523,7 +84674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1980), 38, + ACTIONS(1212), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87562,11 +84713,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17872] = 3, + [17041] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1970), 7, + ACTIONS(1202), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87574,7 +84725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1972), 38, + ACTIONS(1204), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87613,11 +84764,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17926] = 3, + [17095] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1518), 7, + ACTIONS(1150), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87625,7 +84776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1520), 38, + ACTIONS(1152), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87664,11 +84815,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17980] = 3, + [17149] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1224), 7, + ACTIONS(1952), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87676,7 +84827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1226), 38, + ACTIONS(1954), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87715,11 +84866,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18034] = 3, + [17203] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1962), 7, + ACTIONS(2650), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2648), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17257] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1074), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87727,7 +84929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1964), 38, + ACTIONS(1076), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87766,11 +84968,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18088] = 3, + [17311] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1946), 7, + ACTIONS(1174), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87778,7 +84980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1948), 38, + ACTIONS(1176), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87817,11 +85019,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18142] = 3, + [17365] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1334), 7, + ACTIONS(1956), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87829,7 +85031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1336), 38, + ACTIONS(1958), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87868,11 +85070,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18196] = 3, + [17419] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1330), 7, + ACTIONS(1960), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87880,7 +85082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1332), 38, + ACTIONS(1962), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87919,11 +85121,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18250] = 3, + [17473] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1806), 7, + ACTIONS(1166), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87931,7 +85133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1808), 38, + ACTIONS(1168), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87970,11 +85172,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18304] = 3, + [17527] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1822), 7, + ACTIONS(1162), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87982,7 +85184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1824), 38, + ACTIONS(1164), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88021,11 +85223,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18358] = 3, + [17581] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1830), 7, + ACTIONS(1964), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88033,7 +85235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1832), 38, + ACTIONS(1966), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88072,11 +85274,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18412] = 3, + [17635] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1322), 7, + ACTIONS(1158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88084,7 +85286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1324), 38, + ACTIONS(1160), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88123,11 +85325,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18466] = 3, + [17689] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2704), 15, + ACTIONS(2654), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2656), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88143,7 +85348,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2702), 30, + ACTIONS(2652), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17745] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2660), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2658), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88155,7 +85409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -88174,11 +85428,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18520] = 3, + [17799] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1302), 7, + ACTIONS(2664), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2662), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17853] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1138), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88186,7 +85491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1304), 38, + ACTIONS(1140), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88225,11 +85530,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18574] = 3, + [17907] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1286), 7, + ACTIONS(1134), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88237,7 +85542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1288), 38, + ACTIONS(1136), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88276,11 +85581,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18628] = 3, + [17961] = 4, + ACTIONS(2666), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2616), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2614), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18017] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(1126), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88288,7 +85645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1844), 38, + ACTIONS(1128), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88327,11 +85684,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18682] = 3, + [18071] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1942), 7, + ACTIONS(1912), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88339,7 +85696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1944), 38, + ACTIONS(1914), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88378,11 +85735,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18736] = 3, + [18125] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1870), 7, + ACTIONS(1122), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88390,7 +85747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1872), 38, + ACTIONS(1124), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88429,11 +85786,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18790] = 3, + [18179] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1228), 7, + ACTIONS(1908), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88441,7 +85798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1230), 38, + ACTIONS(1910), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88480,11 +85837,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18844] = 3, + [18233] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1934), 7, + ACTIONS(1118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88492,7 +85849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1936), 38, + ACTIONS(1120), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88531,11 +85888,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18898] = 3, + [18287] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1476), 7, + ACTIONS(1114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88543,7 +85900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1478), 38, + ACTIONS(1116), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88582,11 +85939,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18952] = 3, + [18341] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1626), 7, + ACTIONS(1146), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88594,7 +85951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1628), 38, + ACTIONS(1148), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88633,11 +85990,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19006] = 3, + [18395] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1378), 7, + ACTIONS(2670), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2668), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18449] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1102), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88645,7 +86053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1380), 38, + ACTIONS(1104), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88684,11 +86092,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19060] = 3, + [18503] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1204), 7, + ACTIONS(1924), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88696,7 +86104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1206), 38, + ACTIONS(1926), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88735,11 +86143,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19114] = 3, + [18557] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1410), 7, + ACTIONS(1098), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88747,7 +86155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1412), 38, + ACTIONS(1100), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88786,11 +86194,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19168] = 3, + [18611] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1188), 7, + ACTIONS(1904), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88798,7 +86206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1190), 38, + ACTIONS(1906), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88837,11 +86245,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19222] = 3, + [18665] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1156), 7, + ACTIONS(1170), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88849,7 +86257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1158), 38, + ACTIONS(1172), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88888,11 +86296,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19276] = 3, + [18719] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1140), 7, + ACTIONS(1094), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88900,7 +86308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1142), 38, + ACTIONS(1096), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88939,11 +86347,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19330] = 3, + [18773] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1894), 7, + ACTIONS(1090), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88951,7 +86359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1896), 38, + ACTIONS(1092), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88990,11 +86398,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19384] = 3, + [18827] = 4, + ACTIONS(2676), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2674), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2672), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18883] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1818), 7, + ACTIONS(1900), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89002,7 +86462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1820), 38, + ACTIONS(1902), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89041,11 +86501,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19438] = 3, + [18937] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1502), 7, + ACTIONS(1086), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89053,7 +86513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1504), 38, + ACTIONS(1088), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89092,11 +86552,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19492] = 3, + [18991] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1550), 7, + ACTIONS(1082), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89104,7 +86564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1552), 38, + ACTIONS(1084), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89143,11 +86603,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19546] = 3, + [19045] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1762), 7, + ACTIONS(1708), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89155,7 +86615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1764), 38, + ACTIONS(1710), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89194,62 +86654,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19600] = 3, + [19099] = 4, + ACTIONS(2682), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1810), 7, + ACTIONS(2680), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2678), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1812), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19654] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19155] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1898), 7, + ACTIONS(1920), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89257,7 +86718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1900), 38, + ACTIONS(1922), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89296,11 +86757,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19708] = 3, + [19209] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1128), 7, + ACTIONS(1896), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89308,7 +86769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1130), 38, + ACTIONS(1898), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89347,11 +86808,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19762] = 3, + [19263] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1112), 7, + ACTIONS(1110), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89359,7 +86820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1114), 38, + ACTIONS(1112), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89398,11 +86859,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19816] = 3, + [19317] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2014), 7, + ACTIONS(1892), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89410,7 +86871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2016), 38, + ACTIONS(1894), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89449,11 +86910,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19870] = 3, + [19371] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1120), 7, + ACTIONS(1130), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89461,7 +86922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1122), 38, + ACTIONS(1132), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89500,11 +86961,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19924] = 3, + [19425] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2010), 7, + ACTIONS(1154), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89512,7 +86973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2012), 38, + ACTIONS(1156), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89551,11 +87012,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19978] = 3, + [19479] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1124), 7, + ACTIONS(1884), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89563,7 +87024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1126), 38, + ACTIONS(1886), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89602,11 +87063,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20032] = 3, + [19533] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1786), 7, + ACTIONS(1888), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89614,7 +87075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1788), 38, + ACTIONS(1890), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89653,11 +87114,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20086] = 3, + [19587] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1990), 7, + ACTIONS(1874), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89665,7 +87126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1992), 38, + ACTIONS(1876), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89704,11 +87165,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20140] = 3, + [19641] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1838), 7, + ACTIONS(1868), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89716,7 +87177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1840), 38, + ACTIONS(1870), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89755,11 +87216,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20194] = 3, + [19695] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1132), 7, + ACTIONS(1454), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89767,7 +87228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1134), 38, + ACTIONS(1456), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89806,11 +87267,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20248] = 3, + [19749] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1184), 7, + ACTIONS(1182), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89818,7 +87279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1186), 38, + ACTIONS(1184), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89857,11 +87318,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20302] = 3, + [19803] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1794), 7, + ACTIONS(1878), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89869,7 +87330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1796), 38, + ACTIONS(1880), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89908,11 +87369,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20356] = 3, + [19857] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1196), 7, + ACTIONS(1206), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89920,7 +87381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1198), 38, + ACTIONS(1208), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89959,11 +87420,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20410] = 3, + [19911] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1790), 7, + ACTIONS(1860), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89971,7 +87432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1792), 38, + ACTIONS(1862), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90010,11 +87471,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20464] = 3, + [19965] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1220), 7, + ACTIONS(1258), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90022,7 +87483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1222), 38, + ACTIONS(1260), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90061,11 +87522,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20518] = 3, + [20019] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1104), 7, + ACTIONS(1844), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90073,7 +87534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1106), 38, + ACTIONS(1846), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90112,11 +87573,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20572] = 3, + [20073] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1754), 7, + ACTIONS(1840), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90124,7 +87585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1756), 38, + ACTIONS(1842), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90163,11 +87624,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20626] = 3, + [20127] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1750), 7, + ACTIONS(1836), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90175,7 +87636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1752), 38, + ACTIONS(1838), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90214,11 +87675,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20680] = 3, + [20181] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1734), 7, + ACTIONS(1828), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90226,7 +87687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1736), 38, + ACTIONS(1830), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90265,11 +87726,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20734] = 3, + [20235] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1778), 7, + ACTIONS(1824), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90277,7 +87738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1780), 38, + ACTIONS(1826), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90316,11 +87777,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20788] = 3, + [20289] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1726), 7, + ACTIONS(1688), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90328,7 +87789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1728), 38, + ACTIONS(1690), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90367,11 +87828,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20842] = 3, + [20343] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1718), 7, + ACTIONS(1242), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90379,7 +87840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1720), 38, + ACTIONS(1244), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90418,11 +87879,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20896] = 3, + [20397] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1266), 7, + ACTIONS(1820), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90430,7 +87891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1268), 38, + ACTIONS(1822), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90469,11 +87930,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20950] = 3, + [20451] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1706), 7, + ACTIONS(1816), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90481,7 +87942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1708), 38, + ACTIONS(1818), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90520,11 +87981,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21004] = 3, + [20505] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1270), 7, + ACTIONS(1812), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90532,7 +87993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1272), 38, + ACTIONS(1814), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90571,11 +88032,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21058] = 3, + [20559] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1690), 7, + ACTIONS(1808), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90583,7 +88044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1692), 38, + ACTIONS(1810), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90622,11 +88083,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21112] = 3, + [20613] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1666), 7, + ACTIONS(1800), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90634,7 +88095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1668), 38, + ACTIONS(1802), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90673,11 +88134,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21166] = 3, + [20667] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1654), 7, + ACTIONS(1796), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90685,7 +88146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1656), 38, + ACTIONS(1798), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90724,11 +88185,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21220] = 3, + [20721] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1634), 7, + ACTIONS(1792), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90736,7 +88197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1636), 38, + ACTIONS(1794), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90775,113 +88236,114 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21274] = 3, + [20775] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1622), 7, + ACTIONS(2686), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2684), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20829] = 4, + ACTIONS(2688), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1624), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21328] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1274), 7, + ACTIONS(422), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(424), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1276), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21382] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20885] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1642), 7, + ACTIONS(1788), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90889,7 +88351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1644), 38, + ACTIONS(1790), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90928,11 +88390,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21436] = 3, + [20939] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1618), 7, + ACTIONS(1676), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90940,7 +88402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1620), 38, + ACTIONS(1678), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90979,11 +88441,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21490] = 3, + [20993] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1278), 7, + ACTIONS(1262), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90991,7 +88453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1280), 38, + ACTIONS(1264), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91030,11 +88492,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21544] = 3, + [21047] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1578), 7, + ACTIONS(1672), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91042,7 +88504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1580), 38, + ACTIONS(1674), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91081,11 +88543,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21598] = 3, + [21101] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1294), 7, + ACTIONS(1494), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91093,7 +88555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1296), 38, + ACTIONS(1496), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91132,11 +88594,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21652] = 3, + [21155] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1574), 7, + ACTIONS(2692), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2690), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [21209] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1282), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91144,7 +88657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1576), 38, + ACTIONS(1284), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91183,11 +88696,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21706] = 3, + [21263] = 4, + ACTIONS(2698), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2696), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2694), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [21319] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1554), 7, + ACTIONS(1668), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91195,7 +88760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1556), 38, + ACTIONS(1670), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91234,11 +88799,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21760] = 3, + [21373] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1456), 7, + ACTIONS(1784), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91246,7 +88811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1458), 38, + ACTIONS(1786), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91285,11 +88850,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21814] = 3, + [21427] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1306), 7, + ACTIONS(1498), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91297,7 +88862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1308), 38, + ACTIONS(1500), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91336,11 +88901,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21868] = 3, + [21481] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1514), 7, + ACTIONS(1780), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91348,7 +88913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1516), 38, + ACTIONS(1782), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91387,166 +88952,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21922] = 4, - ACTIONS(2710), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2708), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2706), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [21978] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(550), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(548), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_else, - [22032] = 4, - ACTIONS(2716), 1, - anon_sym_DASH_GT, + [21535] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2714), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2712), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22088] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1438), 7, + ACTIONS(1266), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91554,7 +88964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1440), 38, + ACTIONS(1268), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91593,11 +89003,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22142] = 3, + [21589] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1318), 7, + ACTIONS(1776), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91605,7 +89015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1320), 38, + ACTIONS(1778), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91644,11 +89054,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22196] = 3, + [21643] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1314), 7, + ACTIONS(1772), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91656,7 +89066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1316), 38, + ACTIONS(1774), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91695,11 +89105,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22250] = 3, + [21697] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1414), 7, + ACTIONS(1536), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91707,7 +89117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1416), 38, + ACTIONS(1538), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91746,11 +89156,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22304] = 3, + [21751] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1350), 7, + ACTIONS(1652), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91758,7 +89168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1352), 38, + ACTIONS(1654), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91797,11 +89207,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22358] = 3, + [21805] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1262), 7, + ACTIONS(1540), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91809,7 +89219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1264), 38, + ACTIONS(1542), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91848,11 +89258,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22412] = 3, + [21859] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1236), 7, + ACTIONS(1764), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91860,7 +89270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1238), 38, + ACTIONS(1766), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91899,11 +89309,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22466] = 3, + [21913] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1342), 7, + ACTIONS(1760), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91911,7 +89321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1344), 38, + ACTIONS(1762), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91950,63 +89360,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22520] = 4, - ACTIONS(2722), 1, - anon_sym_DASH_GT, + [21967] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2720), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2718), 29, + ACTIONS(1568), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22576] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1570), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22021] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1390), 7, + ACTIONS(1564), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92014,7 +89423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1392), 38, + ACTIONS(1566), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92053,11 +89462,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22630] = 3, + [22075] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1394), 7, + ACTIONS(1756), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92065,7 +89474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1396), 38, + ACTIONS(1758), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92104,11 +89513,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22684] = 3, + [22129] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1406), 7, + ACTIONS(1748), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92116,7 +89525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1408), 38, + ACTIONS(1750), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92155,114 +89564,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22738] = 3, + [22183] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2726), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2724), 30, + ACTIONS(1744), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22792] = 4, - ACTIONS(2728), 1, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1746), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22237] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2614), 29, + ACTIONS(1740), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22848] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1742), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22291] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1658), 7, + ACTIONS(1736), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92270,7 +89678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1660), 38, + ACTIONS(1738), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92309,11 +89717,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22902] = 3, + [22345] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1698), 7, + ACTIONS(1732), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92321,7 +89729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1700), 38, + ACTIONS(1734), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92360,11 +89768,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22956] = 3, + [22399] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1212), 7, + ACTIONS(1576), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92372,7 +89780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1214), 38, + ACTIONS(1578), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92411,11 +89819,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23010] = 3, + [22453] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1714), 7, + ACTIONS(1728), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92423,7 +89831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1716), 38, + ACTIONS(1730), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92462,11 +89870,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23064] = 3, + [22507] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1738), 7, + ACTIONS(1724), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92474,7 +89882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1740), 38, + ACTIONS(1726), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92513,11 +89921,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23118] = 3, + [22561] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1172), 7, + ACTIONS(1720), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92525,7 +89933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1174), 38, + ACTIONS(1722), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92564,114 +89972,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23172] = 3, + [22615] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2732), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2730), 30, + ACTIONS(1712), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23226] = 4, - ACTIONS(2734), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2616), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2614), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23282] = 3, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1714), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22669] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1164), 7, + ACTIONS(1596), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92679,7 +90035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1166), 38, + ACTIONS(1598), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92718,11 +90074,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23336] = 3, + [22723] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1160), 7, + ACTIONS(1270), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92730,7 +90086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1162), 38, + ACTIONS(1272), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92769,11 +90125,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23390] = 3, + [22777] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1882), 7, + ACTIONS(1612), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92781,7 +90137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1884), 38, + ACTIONS(1614), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92820,63 +90176,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23444] = 4, - ACTIONS(2736), 1, - anon_sym_COLON_COLON, + [22831] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2614), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23500] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1148), 7, + ACTIONS(1278), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92884,7 +90188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1150), 38, + ACTIONS(1280), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92923,62 +90227,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23554] = 3, + [22885] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2626), 28, + ACTIONS(1106), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [23608] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1108), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22939] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1290), 7, + ACTIONS(1680), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92986,7 +90290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1292), 38, + ACTIONS(1682), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93025,11 +90329,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23662] = 3, + [22993] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1902), 7, + ACTIONS(1628), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93037,7 +90341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1904), 38, + ACTIONS(1630), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93076,11 +90380,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23716] = 3, + [23047] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1398), 7, + ACTIONS(1482), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93088,7 +90392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1400), 38, + ACTIONS(1484), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93127,11 +90431,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23770] = 3, + [23101] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1922), 7, + ACTIONS(1664), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93139,7 +90443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1924), 38, + ACTIONS(1666), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93178,11 +90482,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23824] = 3, + [23155] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1926), 7, + ACTIONS(408), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(406), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_else, + [23209] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1656), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93190,7 +90545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1928), 38, + ACTIONS(1658), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93229,11 +90584,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23878] = 3, + [23263] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1974), 7, + ACTIONS(1704), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93241,7 +90596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1976), 38, + ACTIONS(1706), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93280,11 +90635,64 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23932] = 3, + [23317] = 5, + ACTIONS(2702), 1, + anon_sym_LPAREN, + STATE(1127), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1986), 7, + ACTIONS(2704), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2700), 28, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23375] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1318), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93292,7 +90700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1988), 38, + ACTIONS(1320), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93331,11 +90739,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23986] = 3, + [23429] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1418), 7, + ACTIONS(1326), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93343,7 +90751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1420), 38, + ACTIONS(1328), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93382,11 +90790,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24040] = 3, + [23483] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1434), 7, + ACTIONS(2708), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2706), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23537] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1330), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93394,7 +90853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1436), 38, + ACTIONS(1332), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93433,11 +90892,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24094] = 3, + [23591] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1464), 7, + ACTIONS(1478), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93445,7 +90904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1466), 38, + ACTIONS(1480), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93484,11 +90943,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24148] = 3, + [23645] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1492), 7, + ACTIONS(1636), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93496,7 +90955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1494), 38, + ACTIONS(1638), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93535,11 +90994,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24202] = 3, + [23699] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1530), 7, + ACTIONS(1632), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93547,7 +91006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1532), 38, + ACTIONS(1634), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93586,62 +91045,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24256] = 3, + [23753] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2740), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2738), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24310] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1460), 7, + ACTIONS(1624), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93649,7 +91057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1462), 38, + ACTIONS(1626), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93688,11 +91096,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24364] = 3, + [23807] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1468), 7, + ACTIONS(1286), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93700,7 +91108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1470), 38, + ACTIONS(1288), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93739,11 +91147,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24418] = 3, + [23861] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1782), 7, + ACTIONS(1620), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93751,7 +91159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1784), 38, + ACTIONS(1622), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93790,11 +91198,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24472] = 3, + [23915] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2744), 15, + ACTIONS(2712), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93810,7 +91218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2742), 30, + ACTIONS(2710), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93822,7 +91230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -93841,11 +91249,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24526] = 3, + [23969] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1770), 7, + ACTIONS(1462), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93853,7 +91261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1772), 38, + ACTIONS(1464), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93892,62 +91300,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24580] = 3, + [24023] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1774), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1776), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24634] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1354), 7, + ACTIONS(1378), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93955,7 +91312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1356), 38, + ACTIONS(1380), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93994,11 +91351,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24688] = 3, + [24077] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1950), 7, + ACTIONS(1406), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94006,7 +91363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1952), 38, + ACTIONS(1408), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94045,11 +91402,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24742] = 3, + [24131] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1374), 7, + ACTIONS(1474), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94057,7 +91414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1376), 38, + ACTIONS(1476), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94096,11 +91453,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24796] = 3, + [24185] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2002), 7, + ACTIONS(1608), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94108,7 +91465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2004), 38, + ACTIONS(1610), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94147,11 +91504,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24850] = 3, + [24239] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2006), 7, + ACTIONS(1832), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94159,7 +91516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2008), 38, + ACTIONS(1834), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94198,11 +91555,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24904] = 3, + [24293] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1998), 7, + ACTIONS(1604), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94210,7 +91567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2000), 38, + ACTIONS(1606), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94249,62 +91606,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24958] = 3, + [24347] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(556), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1410), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(554), 30, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1412), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24401] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1486), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_else, - [25012] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1488), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24455] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1370), 7, + ACTIONS(1502), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94312,7 +91720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1372), 38, + ACTIONS(1504), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94351,11 +91759,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25066] = 3, + [24509] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1422), 7, + ACTIONS(410), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94363,7 +91771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1424), 38, + ACTIONS(412), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94402,11 +91810,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25120] = 3, + [24563] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1850), 7, + ACTIONS(1600), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94414,7 +91822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1852), 38, + ACTIONS(1602), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94453,11 +91861,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25174] = 3, + [24617] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1730), 7, + ACTIONS(1592), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94465,7 +91873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1732), 38, + ACTIONS(1594), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94504,11 +91912,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25228] = 3, + [24671] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1994), 7, + ACTIONS(1588), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94516,7 +91924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1996), 38, + ACTIONS(1590), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94555,11 +91963,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25282] = 3, + [24725] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1702), 7, + ACTIONS(406), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94567,7 +91975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1704), 38, + ACTIONS(408), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94606,11 +92014,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25336] = 3, + [24779] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1982), 7, + ACTIONS(414), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94618,7 +92026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1984), 38, + ACTIONS(416), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94657,11 +92065,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25390] = 3, + [24833] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1966), 7, + ACTIONS(1584), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94669,7 +92077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1968), 38, + ACTIONS(1586), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94708,11 +92116,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25444] = 3, + [24887] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1694), 7, + ACTIONS(462), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94720,7 +92128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1696), 38, + ACTIONS(464), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94759,11 +92167,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25498] = 3, + [24941] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1958), 7, + ACTIONS(1506), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94771,7 +92179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1960), 38, + ACTIONS(1508), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94810,11 +92218,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25552] = 3, + [24995] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1682), 7, + ACTIONS(1532), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94822,7 +92230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1684), 38, + ACTIONS(1534), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94861,11 +92269,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25606] = 3, + [25049] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1938), 7, + ACTIONS(1556), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94873,7 +92281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1940), 38, + ACTIONS(1558), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94912,11 +92320,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25660] = 3, + [25103] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1650), 7, + ACTIONS(1322), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94924,7 +92332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1652), 38, + ACTIONS(1324), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94963,11 +92371,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25714] = 3, + [25157] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1646), 7, + ACTIONS(1310), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94975,7 +92383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1648), 38, + ACTIONS(1312), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95014,11 +92422,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25768] = 3, + [25211] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1638), 7, + ACTIONS(1616), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95026,7 +92434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1640), 38, + ACTIONS(1618), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95065,11 +92473,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25822] = 3, + [25265] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1930), 7, + ACTIONS(1856), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95077,7 +92485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1932), 38, + ACTIONS(1858), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95116,11 +92524,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25876] = 3, + [25319] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1346), 7, + ACTIONS(1306), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95128,7 +92536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1348), 38, + ACTIONS(1308), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95167,11 +92575,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25930] = 3, + [25373] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1906), 7, + ACTIONS(1290), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95179,7 +92587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1908), 38, + ACTIONS(1292), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95218,11 +92626,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25984] = 3, + [25427] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1108), 7, + ACTIONS(1580), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95230,7 +92638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1110), 38, + ACTIONS(1582), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95269,11 +92677,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26038] = 3, + [25481] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1606), 7, + ACTIONS(1968), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95281,7 +92689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1608), 38, + ACTIONS(1970), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95320,11 +92728,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26092] = 3, + [25535] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1890), 7, + ACTIONS(1572), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95332,7 +92740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1892), 38, + ACTIONS(1574), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95371,11 +92779,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26146] = 3, + [25589] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1594), 7, + ACTIONS(1560), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95383,7 +92791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1596), 38, + ACTIONS(1562), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95422,11 +92830,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26200] = 3, + [25643] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1886), 7, + ACTIONS(1552), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95434,7 +92842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1888), 38, + ACTIONS(1554), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95473,11 +92881,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26254] = 3, + [25697] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1430), 7, + ACTIONS(1640), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95485,7 +92893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1432), 38, + ACTIONS(1642), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95524,11 +92932,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26308] = 3, + [25751] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1878), 7, + ACTIONS(416), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(414), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_else, + [25805] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1644), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95536,7 +92995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1880), 38, + ACTIONS(1646), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95575,11 +93034,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26362] = 3, + [25859] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1402), 7, + ACTIONS(2714), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2656), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2652), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25915] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1648), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95587,7 +93098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1404), 38, + ACTIONS(1650), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95626,11 +93137,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26416] = 3, + [25969] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1918), 7, + ACTIONS(1490), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95638,7 +93149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1920), 38, + ACTIONS(1492), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95677,11 +93188,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26470] = 3, + [26023] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1338), 7, + ACTIONS(1852), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95689,7 +93200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1340), 38, + ACTIONS(1854), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95728,11 +93239,64 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26524] = 3, + [26077] = 5, + ACTIONS(2546), 1, + anon_sym_BANG, + ACTIONS(2716), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1874), 7, + ACTIONS(422), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(424), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26135] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1466), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95740,7 +93304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1876), 38, + ACTIONS(1468), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95779,11 +93343,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26578] = 3, + [26189] = 4, + ACTIONS(2718), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1310), 7, + ACTIONS(2580), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2578), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26245] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1458), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95791,7 +93407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1312), 38, + ACTIONS(1460), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95830,11 +93446,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26632] = 3, + [26299] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1866), 7, + ACTIONS(1450), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95842,7 +93458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1868), 38, + ACTIONS(1452), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95881,11 +93497,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26686] = 3, + [26353] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1862), 7, + ACTIONS(466), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95893,7 +93509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1864), 38, + ACTIONS(468), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95932,11 +93548,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26740] = 3, + [26407] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1298), 7, + ACTIONS(1446), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95944,7 +93560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1300), 38, + ACTIONS(1448), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95983,11 +93599,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26794] = 3, + [26461] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1858), 7, + ACTIONS(1442), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95995,7 +93611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1860), 38, + ACTIONS(1444), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96034,11 +93650,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26848] = 3, + [26515] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1854), 7, + ACTIONS(1936), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96046,7 +93662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1856), 38, + ACTIONS(1938), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96085,11 +93701,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26902] = 3, + [26569] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1914), 7, + ACTIONS(1438), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96097,7 +93713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1916), 38, + ACTIONS(1440), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96136,11 +93752,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26956] = 3, + [26623] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(1940), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96148,7 +93764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1912), 38, + ACTIONS(1942), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96187,62 +93803,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27010] = 3, + [26677] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(544), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(542), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_else, - [27064] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1826), 7, + ACTIONS(1916), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96250,7 +93815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1828), 38, + ACTIONS(1918), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96289,11 +93854,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27118] = 3, + [26731] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1846), 7, + ACTIONS(1864), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96301,7 +93866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1848), 38, + ACTIONS(1866), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96340,11 +93905,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27172] = 3, + [26785] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1144), 7, + ACTIONS(1660), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96352,7 +93917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1146), 38, + ACTIONS(1662), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96391,62 +93956,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27226] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2748), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2746), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27280] = 3, + [26839] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1814), 7, + ACTIONS(1684), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96454,7 +93968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1816), 38, + ACTIONS(1686), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96493,11 +94007,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27334] = 3, + [26893] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1798), 7, + ACTIONS(500), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96505,7 +94019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1800), 38, + ACTIONS(502), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96544,11 +94058,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27388] = 3, + [26947] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1710), 7, + ACTIONS(1434), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96556,7 +94070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1712), 38, + ACTIONS(1436), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96595,11 +94109,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27442] = 3, + [27001] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2752), 15, + ACTIONS(412), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96615,7 +94129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2750), 30, + ACTIONS(410), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96627,7 +94141,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -96646,11 +94159,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27496] = 3, + anon_sym_else, + [27055] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1766), 7, + ACTIONS(1692), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96658,7 +94172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1768), 38, + ACTIONS(1694), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96697,11 +94211,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27550] = 3, + [27109] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1758), 7, + ACTIONS(1430), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96709,7 +94223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1760), 38, + ACTIONS(1432), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96748,11 +94262,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27604] = 3, + [27163] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1674), 7, + ACTIONS(1696), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96760,7 +94274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1676), 38, + ACTIONS(1698), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96799,11 +94313,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27658] = 3, + [27217] = 4, + ACTIONS(2720), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1662), 7, + ACTIONS(2580), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2578), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27273] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1254), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96811,7 +94377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1664), 38, + ACTIONS(1256), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96850,11 +94416,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27712] = 3, + [27327] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1282), 7, + ACTIONS(1426), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96862,7 +94428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1284), 38, + ACTIONS(1428), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96901,11 +94467,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27766] = 3, + [27381] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1598), 7, + ACTIONS(1700), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96913,7 +94479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1600), 38, + ACTIONS(1702), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96952,11 +94518,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27820] = 3, + [27435] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1582), 7, + ACTIONS(1078), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96964,7 +94530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1584), 38, + ACTIONS(1080), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97003,11 +94569,115 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27874] = 3, + [27489] = 4, + ACTIONS(2666), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1566), 7, + ACTIONS(2566), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2564), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27545] = 4, + ACTIONS(2726), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2724), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2722), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27601] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1194), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97015,7 +94685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1568), 38, + ACTIONS(1196), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97054,11 +94724,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27928] = 3, + [27655] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1630), 7, + ACTIONS(1294), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97066,7 +94736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1632), 38, + ACTIONS(1296), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97105,11 +94775,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27982] = 3, + [27709] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1614), 7, + ACTIONS(1190), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97117,7 +94787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1616), 38, + ACTIONS(1192), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97156,11 +94826,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28036] = 3, + [27763] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2730), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2728), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27817] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1152), 7, + ACTIONS(1716), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97168,7 +94889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1154), 38, + ACTIONS(1718), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97207,11 +94928,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28090] = 3, + [27871] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1546), 7, + ACTIONS(1422), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97219,7 +94940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1548), 38, + ACTIONS(1424), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97258,11 +94979,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28144] = 3, + [27925] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1534), 7, + ACTIONS(1418), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97270,7 +94991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1536), 38, + ACTIONS(1420), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97309,11 +95030,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28198] = 3, + [27979] = 4, + ACTIONS(2666), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1510), 7, + ACTIONS(2580), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2578), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28035] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1142), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97321,7 +95094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1512), 38, + ACTIONS(1144), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97360,11 +95133,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28252] = 3, + [28089] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1232), 7, + ACTIONS(1414), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97372,7 +95145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1234), 38, + ACTIONS(1416), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97411,11 +95184,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28306] = 3, + [28143] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1506), 7, + ACTIONS(1402), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97423,7 +95196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1508), 38, + ACTIONS(1404), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97462,63 +95235,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28360] = 4, - ACTIONS(2758), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2756), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2754), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28416] = 3, + [28197] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1216), 7, + ACTIONS(1398), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97526,7 +95247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1218), 38, + ACTIONS(1400), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97565,11 +95286,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28470] = 3, + [28251] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1586), 7, + ACTIONS(1394), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97577,7 +95298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1588), 38, + ACTIONS(1396), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97616,11 +95337,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28524] = 3, + [28305] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1208), 7, + ACTIONS(1390), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97628,7 +95349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1210), 38, + ACTIONS(1392), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97667,11 +95388,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28578] = 3, + [28359] = 4, + ACTIONS(2736), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1488), 7, + ACTIONS(2734), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2732), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28415] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1302), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97679,7 +95452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1490), 38, + ACTIONS(1304), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97718,11 +95491,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28632] = 3, + [28469] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1200), 7, + ACTIONS(1298), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97730,7 +95503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1202), 38, + ACTIONS(1300), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97769,11 +95542,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28686] = 3, + [28523] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1192), 7, + ACTIONS(1386), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97781,7 +95554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1194), 38, + ACTIONS(1388), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97820,63 +95593,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28740] = 4, - ACTIONS(2764), 1, - anon_sym_DASH_GT, + [28577] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2762), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2760), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28796] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1180), 7, + ACTIONS(1382), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97884,7 +95605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1182), 38, + ACTIONS(1384), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97923,11 +95644,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28850] = 3, + [28631] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1176), 7, + ACTIONS(1548), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97935,7 +95656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1178), 38, + ACTIONS(1550), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97974,11 +95695,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28904] = 3, + [28685] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1452), 7, + ACTIONS(1374), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97986,7 +95707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1454), 38, + ACTIONS(1376), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98025,11 +95746,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28958] = 3, + [28739] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1168), 7, + ACTIONS(1544), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98037,7 +95758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1170), 38, + ACTIONS(1546), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98076,11 +95797,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29012] = 3, + [28793] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1136), 7, + ACTIONS(1370), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98088,7 +95809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1138), 38, + ACTIONS(1372), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98127,11 +95848,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29066] = 3, + [28847] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1116), 7, + ACTIONS(1178), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98139,7 +95860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1118), 38, + ACTIONS(1180), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98178,11 +95899,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29120] = 3, + [28901] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1444), 7, + ACTIONS(1366), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98190,7 +95911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1446), 38, + ACTIONS(1368), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98229,63 +95950,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29174] = 4, - ACTIONS(2770), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2768), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2766), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29230] = 3, + [28955] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1570), 7, + ACTIONS(1752), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98293,7 +95962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1572), 38, + ACTIONS(1754), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98332,11 +96001,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29284] = 3, + [29009] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1358), 7, + ACTIONS(1768), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98344,7 +96013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1360), 38, + ACTIONS(1770), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98383,11 +96052,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29338] = 3, + [29063] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1362), 7, + ACTIONS(1804), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98395,7 +96064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1364), 38, + ACTIONS(1806), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98434,11 +96103,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29392] = 3, + [29117] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1382), 7, + ACTIONS(1362), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98446,7 +96115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1384), 38, + ACTIONS(1364), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98485,63 +96154,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29446] = 4, - ACTIONS(2736), 1, - anon_sym_COLON_COLON, + [29171] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2636), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2634), 29, + ACTIONS(1358), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29502] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1360), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29225] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1562), 7, + ACTIONS(1218), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98549,7 +96217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1564), 38, + ACTIONS(1220), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98588,13 +96256,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29556] = 4, - ACTIONS(2736), 1, - anon_sym_COLON_COLON, + [29279] = 4, + ACTIONS(2742), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 15, + ACTIONS(2740), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98610,7 +96278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2622), 29, + ACTIONS(2738), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98640,11 +96308,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29612] = 3, + [29335] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1386), 7, + ACTIONS(1354), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98652,7 +96320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1388), 38, + ACTIONS(1356), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98691,11 +96359,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29666] = 3, + [29389] = 4, + ACTIONS(2748), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2774), 15, + ACTIONS(2746), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98711,7 +96381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2772), 30, + ACTIONS(2744), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98723,7 +96393,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -98742,11 +96411,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29720] = 3, + [29445] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1480), 7, + ACTIONS(1214), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98754,7 +96423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1482), 38, + ACTIONS(1216), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98793,62 +96462,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29774] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2778), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2776), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29828] = 3, + [29499] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1484), 7, + ACTIONS(1350), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98856,7 +96474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1486), 38, + ACTIONS(1352), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98895,11 +96513,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29882] = 3, + [29553] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1526), 7, + ACTIONS(1346), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98907,7 +96525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1528), 38, + ACTIONS(1348), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98946,11 +96564,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29936] = 3, + [29607] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2782), 15, + ACTIONS(2592), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98961,62 +96579,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2780), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29989] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2786), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2784), 29, + ACTIONS(2590), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99029,12 +96599,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -99044,264 +96614,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30042] = 3, + [29661] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2790), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2788), 29, + ACTIONS(1198), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30095] = 4, - ACTIONS(2646), 1, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1200), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29715] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2638), 28, + ACTIONS(1334), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30150] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2794), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2792), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30203] = 3, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1336), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29769] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2622), 29, + ACTIONS(1342), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30256] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1344), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29823] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(658), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(656), 29, + ACTIONS(1338), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30309] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1340), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29877] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2636), 15, + ACTIONS(2752), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99317,7 +96839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2634), 29, + ACTIONS(2750), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99347,11 +96869,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30362] = 3, + [29930] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2385), 15, + ACTIONS(2756), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99367,7 +96889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2387), 29, + ACTIONS(2754), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99397,11 +96919,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30415] = 3, + [29983] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2798), 15, + ACTIONS(2760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99417,7 +96939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2796), 29, + ACTIONS(2758), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99447,11 +96969,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30468] = 3, + [30036] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(670), 15, + ACTIONS(2764), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99467,7 +96989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(668), 29, + ACTIONS(2762), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99497,11 +97019,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30521] = 3, + [30089] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2802), 15, + ACTIONS(2768), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99517,7 +97039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2800), 29, + ACTIONS(2766), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99547,63 +97069,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30574] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2806), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2804), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [30627] = 4, - ACTIONS(2808), 1, - anon_sym_COLON_COLON, + [30142] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(452), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99619,10 +97089,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 28, + ACTIONS(450), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -99648,11 +97119,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30682] = 3, + [30195] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2812), 15, + ACTIONS(2772), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99668,7 +97139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2810), 29, + ACTIONS(2770), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99698,11 +97169,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30735] = 3, + [30248] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2816), 15, + ACTIONS(456), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99718,7 +97189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2814), 29, + ACTIONS(454), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99748,11 +97219,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30788] = 3, + [30301] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2820), 15, + ACTIONS(2776), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99768,7 +97239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2818), 29, + ACTIONS(2774), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99798,11 +97269,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30841] = 3, + [30354] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2824), 15, + ACTIONS(444), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99818,7 +97289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2822), 29, + ACTIONS(442), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99848,11 +97319,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30894] = 3, + [30407] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2828), 15, + ACTIONS(2580), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99868,7 +97339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2826), 29, + ACTIONS(2578), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99898,11 +97369,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30947] = 3, + [30460] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2668), 15, + ACTIONS(480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99918,7 +97389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2664), 29, + ACTIONS(478), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99948,211 +97419,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31000] = 3, + [30513] = 5, + ACTIONS(2778), 1, + anon_sym_POUND, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(626), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(624), 29, - anon_sym_SEMI, + STATE(1048), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2475), 9, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31053] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2832), 15, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2830), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31106] = 3, + sym_metavariable, + ACTIONS(2473), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30570] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2836), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2834), 29, + ACTIONS(2783), 12, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31159] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2840), 15, - anon_sym_PLUS, anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2838), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31212] = 3, + sym_metavariable, + ACTIONS(2781), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30623] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(646), 15, + ACTIONS(2407), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100168,7 +97541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(644), 29, + ACTIONS(2409), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100198,11 +97571,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31265] = 3, + [30676] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2844), 15, + ACTIONS(2787), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100218,7 +97591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2842), 29, + ACTIONS(2785), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100248,11 +97621,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31318] = 3, + [30729] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2848), 15, + ACTIONS(2791), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100268,7 +97641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2846), 29, + ACTIONS(2789), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100298,11 +97671,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31371] = 3, + [30782] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2852), 15, + ACTIONS(460), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100318,7 +97691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2850), 29, + ACTIONS(458), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100348,11 +97721,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31424] = 3, + [30835] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2389), 15, + ACTIONS(488), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100368,7 +97741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2391), 29, + ACTIONS(486), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100398,11 +97771,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31477] = 3, + [30888] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(588), 15, + ACTIONS(430), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100418,7 +97791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(586), 29, + ACTIONS(428), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100448,62 +97821,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31530] = 4, - ACTIONS(2858), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2856), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2854), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31585] = 3, + [30941] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(334), 15, + ACTIONS(2795), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100519,7 +97841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(332), 29, + ACTIONS(2793), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100549,11 +97871,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31638] = 3, + [30994] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2445), 15, + ACTIONS(2799), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100569,7 +97891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2447), 29, + ACTIONS(2797), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100599,61 +97921,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31691] = 3, + [31047] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2862), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2860), 29, + ACTIONS(2803), 12, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31744] = 3, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2801), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31100] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(674), 15, + ACTIONS(2807), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100669,7 +97991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(672), 29, + ACTIONS(2805), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100699,62 +98021,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31797] = 4, - ACTIONS(2868), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2866), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, + [31153] = 4, + ACTIONS(2809), 1, anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2864), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31852] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2872), 15, + ACTIONS(422), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100770,11 +98043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2870), 29, + ACTIONS(424), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -100800,11 +98072,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31905] = 3, + [31208] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(662), 15, + ACTIONS(2813), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100820,7 +98092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(660), 29, + ACTIONS(2811), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100850,11 +98122,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31958] = 3, + [31261] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2876), 15, + ACTIONS(2566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100870,7 +98142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2874), 29, + ACTIONS(2564), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100900,11 +98172,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32011] = 3, + [31314] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2880), 15, + ACTIONS(2817), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100920,7 +98192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2878), 29, + ACTIONS(2815), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100950,131 +98222,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32064] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2882), 1, - sym_identifier, - ACTIONS(2886), 1, - anon_sym_LPAREN, - ACTIONS(2888), 1, - anon_sym_STAR, - ACTIONS(2894), 1, - anon_sym_for, - ACTIONS(2896), 1, - anon_sym_AMP, - ACTIONS(2898), 1, - sym_metavariable, - STATE(1849), 1, - sym_scoped_type_identifier, - STATE(1945), 1, - sym_where_predicate, - STATE(1949), 1, - sym_generic_type, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2480), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2884), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(2892), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(2335), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2890), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [32153] = 5, - ACTIONS(2900), 1, - anon_sym_POUND, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1098), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2471), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2469), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32210] = 3, + [31367] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2905), 15, + ACTIONS(318), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101090,7 +98242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2903), 29, + ACTIONS(316), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101120,11 +98272,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32263] = 3, + [31420] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2909), 15, + ACTIONS(2821), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101140,7 +98292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2907), 29, + ACTIONS(2819), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101170,11 +98322,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32316] = 3, + [31473] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2913), 15, + ACTIONS(2825), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101190,7 +98342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2911), 29, + ACTIONS(2823), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101220,11 +98372,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32369] = 3, + [31526] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2917), 15, + ACTIONS(2829), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101240,7 +98392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2915), 29, + ACTIONS(2827), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101270,11 +98422,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32422] = 3, + [31579] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2921), 15, + ACTIONS(468), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101290,7 +98442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2919), 29, + ACTIONS(466), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101320,11 +98472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32475] = 3, + [31632] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2925), 12, + ACTIONS(2833), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -101337,7 +98489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2923), 32, + ACTIONS(2831), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101370,11 +98522,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32528] = 3, + [31685] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2929), 15, + ACTIONS(2837), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101390,7 +98542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2927), 29, + ACTIONS(2835), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101420,11 +98572,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32581] = 3, + [31738] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2933), 15, + ACTIONS(506), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101440,7 +98592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2931), 29, + ACTIONS(504), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101470,11 +98622,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32634] = 3, + [31791] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2937), 15, + ACTIONS(2841), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2839), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31844] = 4, + ACTIONS(2576), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2570), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101490,11 +98694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2935), 29, + ACTIONS(2568), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -101520,11 +98723,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32687] = 3, + [31899] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(650), 15, + ACTIONS(510), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101540,7 +98743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(648), 29, + ACTIONS(508), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101570,11 +98773,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32740] = 3, + [31952] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2941), 15, + ACTIONS(2845), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101590,7 +98793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2939), 29, + ACTIONS(2843), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101620,11 +98823,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32793] = 3, + [32005] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 15, + ACTIONS(434), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101640,7 +98843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2943), 29, + ACTIONS(432), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101670,11 +98873,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32846] = 3, + [32058] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2949), 15, + ACTIONS(2849), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101690,7 +98893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2947), 29, + ACTIONS(2847), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101720,11 +98923,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32899] = 3, + [32111] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(596), 15, + ACTIONS(2704), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101740,7 +98943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(594), 29, + ACTIONS(2700), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101770,11 +98973,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32952] = 3, + [32164] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(592), 15, + ACTIONS(2411), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101790,7 +98993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(590), 29, + ACTIONS(2413), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101820,11 +99023,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33005] = 3, + [32217] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2953), 15, + ACTIONS(2853), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101840,7 +99043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2951), 29, + ACTIONS(2851), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101870,11 +99073,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33058] = 3, + [32270] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2433), 15, + ACTIONS(2857), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101890,7 +99093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2435), 29, + ACTIONS(2855), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101920,11 +99123,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33111] = 3, + [32323] = 4, + ACTIONS(2863), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2957), 15, + ACTIONS(2861), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2859), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32378] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(476), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101940,7 +99194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2955), 29, + ACTIONS(474), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101970,11 +99224,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33164] = 3, + [32431] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2961), 15, + ACTIONS(448), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101990,7 +99244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2959), 29, + ACTIONS(446), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102020,11 +99274,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33217] = 3, + [32484] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(622), 15, + ACTIONS(2776), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102040,7 +99294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(620), 29, + ACTIONS(2774), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102070,61 +99324,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33270] = 3, + [32537] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(630), 15, - anon_sym_PLUS, + ACTIONS(2867), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(628), 29, + sym_metavariable, + ACTIONS(2865), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32590] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2871), 12, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33323] = 3, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2869), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32643] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(666), 15, + ACTIONS(2875), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102140,7 +99444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(664), 29, + ACTIONS(2873), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102170,11 +99474,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33376] = 3, + [32696] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2965), 15, + ACTIONS(502), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102190,7 +99494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2963), 29, + ACTIONS(500), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102220,11 +99524,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33429] = 3, + [32749] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2969), 15, + ACTIONS(494), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102240,7 +99544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2967), 29, + ACTIONS(492), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102270,11 +99574,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33482] = 3, + [32802] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2973), 15, + ACTIONS(514), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102290,7 +99594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2971), 29, + ACTIONS(512), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102320,11 +99624,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33535] = 3, + [32855] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(886), 1, + anon_sym_COLON_COLON, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2877), 1, + sym_identifier, + ACTIONS(2881), 1, + anon_sym_LPAREN, + ACTIONS(2883), 1, + anon_sym_STAR, + ACTIONS(2889), 1, + anon_sym_for, + ACTIONS(2891), 1, + anon_sym_AMP, + ACTIONS(2893), 1, + sym_metavariable, + STATE(1835), 1, + sym_scoped_type_identifier, + STATE(1917), 1, + sym_generic_type, + STATE(1932), 1, + sym_where_predicate, + STATE(2367), 1, + sym_bracketed_type, + STATE(2368), 1, + sym_generic_type_with_turbofish, + STATE(2545), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2879), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(2887), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(2222), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2885), 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, + [32944] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2977), 15, + ACTIONS(2897), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102340,7 +99712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2975), 29, + ACTIONS(2895), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102370,11 +99742,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33588] = 3, + [32997] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2981), 15, + ACTIONS(2901), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102390,7 +99762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2979), 29, + ACTIONS(2899), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102420,11 +99792,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33641] = 3, + [33050] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(886), 1, + anon_sym_COLON_COLON, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2877), 1, + sym_identifier, + ACTIONS(2881), 1, + anon_sym_LPAREN, + ACTIONS(2883), 1, + anon_sym_STAR, + ACTIONS(2889), 1, + anon_sym_for, + ACTIONS(2891), 1, + anon_sym_AMP, + ACTIONS(2893), 1, + sym_metavariable, + STATE(1835), 1, + sym_scoped_type_identifier, + STATE(1917), 1, + sym_generic_type, + STATE(1932), 1, + sym_where_predicate, + STATE(2367), 1, + sym_bracketed_type, + STATE(2368), 1, + sym_generic_type_with_turbofish, + STATE(2545), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2887), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(2903), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(2222), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2885), 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, + [33139] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(638), 15, + ACTIONS(2907), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102440,7 +99880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(636), 29, + ACTIONS(2905), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102470,11 +99910,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33694] = 3, + [33192] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(654), 15, + ACTIONS(2911), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102490,7 +99930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(652), 29, + ACTIONS(2909), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102520,11 +99960,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33747] = 3, + [33245] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2985), 15, + ACTIONS(2915), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102540,7 +99980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2983), 29, + ACTIONS(2913), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102570,11 +100010,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33800] = 3, + [33298] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(576), 15, + ACTIONS(2919), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102590,7 +100030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(574), 29, + ACTIONS(2917), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102620,11 +100060,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33853] = 3, + [33351] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2684), 15, + ACTIONS(2923), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102640,7 +100080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2680), 29, + ACTIONS(2921), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102670,11 +100110,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33906] = 3, + [33404] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2989), 15, + ACTIONS(2927), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102690,7 +100130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2987), 29, + ACTIONS(2925), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102720,11 +100160,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33959] = 3, + [33457] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(580), 15, + ACTIONS(2931), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102740,7 +100180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(578), 29, + ACTIONS(2929), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102770,11 +100210,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34012] = 3, + [33510] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(642), 15, + ACTIONS(2935), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102790,7 +100230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(640), 29, + ACTIONS(2933), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102820,11 +100260,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34065] = 3, + [33563] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2993), 15, + ACTIONS(2939), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102840,7 +100280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2991), 29, + ACTIONS(2937), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102870,11 +100310,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34118] = 3, + [33616] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(634), 15, + ACTIONS(2943), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102890,7 +100330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(632), 29, + ACTIONS(2941), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102920,11 +100360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34171] = 3, + [33669] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 15, + ACTIONS(498), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102940,7 +100380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2614), 29, + ACTIONS(496), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102970,11 +100410,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34224] = 3, + [33722] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2997), 15, + ACTIONS(2947), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102990,7 +100430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2995), 29, + ACTIONS(2945), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103020,11 +100460,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34277] = 3, + [33775] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 15, + ACTIONS(2951), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103040,7 +100480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2999), 29, + ACTIONS(2949), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103070,11 +100510,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34330] = 3, + [33828] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3005), 15, + ACTIONS(2399), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103090,7 +100530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3003), 29, + ACTIONS(2401), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103120,11 +100560,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34383] = 3, + [33881] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3009), 15, + ACTIONS(2955), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103140,7 +100580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3007), 29, + ACTIONS(2953), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103170,11 +100610,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34436] = 3, + [33934] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3013), 15, + ACTIONS(2959), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103190,7 +100630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3011), 29, + ACTIONS(2957), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103220,11 +100660,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34489] = 3, + [33987] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(560), 15, + ACTIONS(2616), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103240,7 +100680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(558), 29, + ACTIONS(2614), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103270,11 +100710,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34542] = 3, + [34040] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3017), 15, + ACTIONS(2963), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103290,7 +100730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3015), 29, + ACTIONS(2961), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103320,61 +100760,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34595] = 3, + [34093] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3021), 12, + ACTIONS(2967), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2965), 29, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34146] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2971), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, - sym_metavariable, - ACTIONS(3019), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [34648] = 3, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2969), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34199] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3025), 15, + ACTIONS(2975), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103390,7 +100880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3023), 29, + ACTIONS(2973), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103420,11 +100910,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34701] = 3, + [34252] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(584), 15, + ACTIONS(2979), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103440,7 +100930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(582), 29, + ACTIONS(2977), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103470,79 +100960,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34754] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2882), 1, - sym_identifier, - ACTIONS(2886), 1, - anon_sym_LPAREN, - ACTIONS(2888), 1, - anon_sym_STAR, - ACTIONS(2894), 1, - anon_sym_for, - ACTIONS(2896), 1, - anon_sym_AMP, - ACTIONS(2898), 1, - sym_metavariable, - STATE(1849), 1, - sym_scoped_type_identifier, - STATE(1945), 1, - sym_where_predicate, - STATE(1949), 1, - sym_generic_type, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2480), 1, - sym_scoped_identifier, + [34305] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2892), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(3027), 2, + ACTIONS(472), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(470), 29, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(2335), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2890), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [34843] = 3, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34358] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3025), 15, + ACTIONS(484), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103558,7 +101030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3023), 29, + ACTIONS(482), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103588,61 +101060,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34896] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3031), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3029), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [34949] = 3, + [34411] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(600), 15, + ACTIONS(2983), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103658,7 +101080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(598), 29, + ACTIONS(2981), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103688,11 +101110,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35002] = 3, + [34464] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3035), 15, + ACTIONS(2987), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103708,7 +101130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3033), 29, + ACTIONS(2985), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103738,61 +101160,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35055] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3039), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3037), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [35108] = 3, + [34517] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3043), 15, + ACTIONS(2991), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103808,7 +101180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3041), 29, + ACTIONS(2989), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103838,24 +101210,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35161] = 3, + [34570] = 4, + ACTIONS(2997), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3047), 12, - anon_sym_SEMI, + ACTIONS(2995), 14, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(3045), 32, + ACTIONS(2993), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103873,26 +101249,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [35214] = 3, + [34625] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3051), 15, + ACTIONS(3001), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103908,7 +101281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3049), 29, + ACTIONS(2999), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103938,11 +101311,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35267] = 3, + [34678] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(678), 15, + ACTIONS(3005), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103958,7 +101331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(676), 29, + ACTIONS(3003), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103988,92 +101361,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35320] = 20, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3073), 1, - anon_sym_DOT_DOT, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3071), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3059), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3053), 7, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3087), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35406] = 7, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_DOT_DOT, - ACTIONS(3089), 1, - anon_sym_DOT, + [34731] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3071), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3093), 13, + ACTIONS(2656), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -104081,16 +101380,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3091), 25, + anon_sym_DOT, + ACTIONS(2652), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -104107,26 +101411,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35466] = 7, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_DOT_DOT, - ACTIONS(3089), 1, - anon_sym_DOT, + [34784] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3071), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3097), 13, + ACTIONS(3009), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -104134,16 +101430,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3095), 25, + anon_sym_DOT, + ACTIONS(3007), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -104160,19 +101461,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35526] = 7, - ACTIONS(2618), 1, - anon_sym_LBRACE, - ACTIONS(2620), 1, - anon_sym_COLON_COLON, - ACTIONS(3099), 1, - anon_sym_BANG, - STATE(1090), 1, - sym_field_initializer_list, + [34837] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(3013), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104188,13 +101481,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 24, + ACTIONS(3011), 29, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -104213,174 +101511,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35586] = 3, + [34890] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2856), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, + ACTIONS(3017), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2854), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [35638] = 17, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3073), 1, - anon_sym_DOT_DOT, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, anon_sym_PIPE, - ACTIONS(3081), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3071), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3059), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3101), 19, + anon_sym_DOT, + ACTIONS(3015), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35718] = 20, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3073), 1, - anon_sym_DOT_DOT, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3071), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3059), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3083), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3105), 7, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104391,44 +101561,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35804] = 8, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_DOT_DOT, - ACTIONS(3089), 1, - anon_sym_DOT, + [34943] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3071), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3109), 10, + ACTIONS(2403), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3107), 25, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2405), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -104445,26 +101611,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35866] = 7, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3073), 1, - anon_sym_DOT_DOT, - ACTIONS(3089), 1, - anon_sym_DOT, + [34996] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3071), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3109), 13, + ACTIONS(3021), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -104472,16 +101630,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 25, + anon_sym_DOT, + ACTIONS(3019), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -104498,59 +101661,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35926] = 17, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3073), 1, - anon_sym_DOT_DOT, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3113), 1, - anon_sym_EQ, + [35049] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(464), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3071), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3059), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3111), 19, + anon_sym_DOT, + ACTIONS(462), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104561,20 +101711,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36006] = 7, - ACTIONS(3055), 1, + [35102] = 7, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3031), 1, anon_sym_DOT_DOT, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3071), 2, + ACTIONS(3029), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3117), 13, + ACTIONS(3027), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104588,7 +101738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3115), 25, + ACTIONS(3023), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104614,109 +101764,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36066] = 13, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3073), 1, - anon_sym_DOT_DOT, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, + [35162] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3059), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3109), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3107), 25, - anon_sym_SEMI, + ACTIONS(2861), 14, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36138] = 17, - ACTIONS(288), 1, - anon_sym_EQ, - ACTIONS(3055), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_AMP, - ACTIONS(3073), 1, anon_sym_DOT_DOT, - ACTIONS(3075), 1, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2859), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [35214] = 16, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3031), 1, + anon_sym_DOT_DOT, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3041), 1, + anon_sym_EQ, + ACTIONS(3045), 1, + anon_sym_AMP, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3029), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(3071), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, + anon_sym_GT, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(282), 19, + ACTIONS(3035), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104726,6 +101864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104736,11 +101875,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36218] = 3, + [35292] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2866), 14, + ACTIONS(2995), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -104755,7 +101894,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2864), 29, + ACTIONS(2993), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104785,37 +101924,50 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36270] = 10, - ACTIONS(3055), 1, + [35344] = 17, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3031), 1, anon_sym_DOT_DOT, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, + ACTIONS(3045), 1, + anon_sym_AMP, + ACTIONS(3047), 1, + anon_sym_AMP_AMP, + ACTIONS(3049), 1, + anon_sym_PIPE, + ACTIONS(3051), 1, + anon_sym_CARET, + ACTIONS(3059), 1, + anon_sym_EQ, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3029), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, + ACTIONS(3037), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3043), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3109), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3107), 25, + ACTIONS(3053), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3057), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104825,12 +101977,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104841,50 +101987,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36336] = 17, - ACTIONS(3055), 1, + [35424] = 17, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3073), 1, + ACTIONS(3031), 1, anon_sym_DOT_DOT, - ACTIONS(3075), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, + anon_sym_AMP, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3121), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3065), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3029), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3071), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3119), 19, + ACTIONS(3063), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104904,46 +102050,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36416] = 15, - ACTIONS(3055), 1, + [35504] = 17, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3073), 1, + ACTIONS(3031), 1, anon_sym_DOT_DOT, - ACTIONS(3079), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, + anon_sym_AMP, + ACTIONS(3047), 1, + anon_sym_AMP_AMP, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3109), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3069), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3029), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3071), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3107), 21, + ACTIONS(3067), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35584] = 11, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3031), 1, + anon_sym_DOT_DOT, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3029), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3037), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3055), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3039), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3041), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3035), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104955,6 +102156,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104965,48 +102170,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36492] = 16, - ACTIONS(3055), 1, + [35652] = 17, + ACTIONS(288), 1, + anon_sym_EQ, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3073), 1, + ACTIONS(3031), 1, anon_sym_DOT_DOT, - ACTIONS(3075), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, + anon_sym_AMP, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3109), 1, - anon_sym_EQ, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3029), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3071), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3107), 20, + ACTIONS(282), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105016,7 +102223,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105027,39 +102233,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36570] = 12, - ACTIONS(3055), 1, + [35732] = 13, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3073), 1, + ACTIONS(3031), 1, anon_sym_DOT_DOT, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, + ACTIONS(3045), 1, + anon_sym_AMP, + ACTIONS(3049), 1, + anon_sym_PIPE, + ACTIONS(3051), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3029), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, + ACTIONS(3037), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3109), 4, + ACTIONS(3041), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - ACTIONS(3107), 25, + ACTIONS(3035), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105085,38 +102292,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36640] = 11, - ACTIONS(3055), 1, + [35804] = 9, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3073), 1, + ACTIONS(3031), 1, anon_sym_DOT_DOT, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3029), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3059), 3, + ACTIONS(3037), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3109), 5, + ACTIONS(3041), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3107), 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3035), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105142,36 +102347,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36708] = 9, - ACTIONS(3055), 1, + [35868] = 10, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3073), 1, + ACTIONS(3031), 1, anon_sym_DOT_DOT, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3071), 2, + ACTIONS(3029), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3037), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3055), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3109), 8, + ACTIONS(3041), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3107), 25, + ACTIONS(3035), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105197,50 +102403,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36772] = 17, - ACTIONS(3055), 1, + [35934] = 15, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3073), 1, + ACTIONS(3031), 1, anon_sym_DOT_DOT, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3125), 1, + ACTIONS(3041), 1, anon_sym_EQ, + ACTIONS(3045), 1, + anon_sym_AMP, + ACTIONS(3049), 1, + anon_sym_PIPE, + ACTIONS(3051), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3029), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3071), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 19, + ACTIONS(3035), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105250,6 +102452,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105260,50 +102464,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36852] = 17, - ACTIONS(3055), 1, + [36010] = 7, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3073), 1, + ACTIONS(3031), 1, anon_sym_DOT_DOT, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3129), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3029), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3073), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3071), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3085), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3059), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3127), 19, + ACTIONS(3071), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105313,6 +102501,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105323,420 +102517,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36932] = 17, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(890), 1, - anon_sym_COLON_COLON, - ACTIONS(3131), 1, - sym_identifier, - ACTIONS(3133), 1, - anon_sym_RPAREN, - ACTIONS(3137), 1, - anon_sym_COMMA, - ACTIONS(3141), 1, - sym_metavariable, - STATE(1703), 1, - sym_scoped_identifier, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2486), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1085), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2000), 2, - sym_meta_item, - sym__literal, - ACTIONS(3139), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3135), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [37011] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(2898), 1, - sym_metavariable, - ACTIONS(3143), 1, - sym_identifier, - ACTIONS(3145), 1, - anon_sym_default, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1364), 1, - sym_scoped_type_identifier, - STATE(1395), 1, - sym_generic_type, - STATE(1428), 1, - sym_function_type, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2420), 1, - sym_function_modifiers, - STATE(2480), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2892), 18, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_union, - [37098] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2506), 1, - anon_sym_COLON_COLON, - ACTIONS(3147), 1, - sym_identifier, - ACTIONS(3151), 1, - anon_sym_default, - ACTIONS(3153), 1, - sym_metavariable, - STATE(787), 1, - sym_scoped_type_identifier, - STATE(1048), 1, - sym_generic_type, - STATE(1064), 1, - sym_function_type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2390), 1, - sym_function_modifiers, - STATE(2416), 1, - sym_scoped_identifier, - STATE(2492), 1, - sym_bracketed_type, - STATE(2493), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2514), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3149), 18, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_union, - [37185] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(2498), 1, - anon_sym_fn, - ACTIONS(2506), 1, - anon_sym_COLON_COLON, - ACTIONS(3151), 1, - anon_sym_default, - ACTIONS(3153), 1, - sym_metavariable, - ACTIONS(3155), 1, - sym_identifier, - STATE(784), 1, - sym_scoped_type_identifier, - STATE(1050), 1, - sym_generic_type, - STATE(1062), 1, - sym_function_type, - STATE(1215), 1, - sym_for_lifetimes, - STATE(2390), 1, - sym_function_modifiers, - STATE(2416), 1, - sym_scoped_identifier, - STATE(2492), 1, - sym_bracketed_type, - STATE(2493), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2514), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3149), 18, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_union, - [37272] = 20, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2882), 1, - sym_identifier, - ACTIONS(2886), 1, - anon_sym_LPAREN, - ACTIONS(2888), 1, - anon_sym_STAR, - ACTIONS(2894), 1, - anon_sym_for, - ACTIONS(2896), 1, - anon_sym_AMP, - ACTIONS(2898), 1, - sym_metavariable, - STATE(1849), 1, - sym_scoped_type_identifier, - STATE(1852), 1, - sym_where_predicate, - STATE(1949), 1, - sym_generic_type, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2480), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2892), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(2335), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2890), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [37357] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1834), 10, - anon_sym_LPAREN, + [36070] = 17, + ACTIONS(3025), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_POUND, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, + ACTIONS(3031), 1, + anon_sym_DOT_DOT, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - sym_metavariable, - ACTIONS(1836), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [37408] = 6, - ACTIONS(2644), 1, - anon_sym_BANG, - ACTIONS(2646), 1, - anon_sym_COLON_COLON, - ACTIONS(3157), 1, - sym_identifier, + ACTIONS(3047), 1, + anon_sym_AMP_AMP, + ACTIONS(3049), 1, + anon_sym_PIPE, + ACTIONS(3051), 1, + anon_sym_CARET, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3077), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 16, + ACTIONS(3029), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3037), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_as, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3039), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2638), 23, + ACTIONS(3053), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3075), 19, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36150] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, + ACTIONS(3031), 1, + anon_sym_DOT_DOT, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, + anon_sym_AMP, + ACTIONS(3047), 1, + anon_sym_AMP_AMP, + ACTIONS(3049), 1, + anon_sym_PIPE, + ACTIONS(3051), 1, + anon_sym_CARET, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3029), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3037), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3043), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3055), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3039), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3079), 7, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105747,201 +102646,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37465] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2800), 10, - anon_sym_LPAREN, + [36236] = 7, + ACTIONS(3025), 1, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2802), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_mutable_specifier, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [37516] = 20, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(2882), 1, - sym_identifier, - ACTIONS(2886), 1, - anon_sym_LPAREN, - ACTIONS(2888), 1, - anon_sym_STAR, - ACTIONS(2894), 1, - anon_sym_for, - ACTIONS(2896), 1, - anon_sym_AMP, - ACTIONS(2898), 1, - sym_metavariable, - STATE(1849), 1, - sym_scoped_type_identifier, - STATE(1945), 1, - sym_where_predicate, - STATE(1949), 1, - sym_generic_type, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2480), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2892), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - STATE(2335), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2890), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [37601] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(700), 1, - anon_sym_fn, - ACTIONS(702), 1, - anon_sym_for, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(2898), 1, - sym_metavariable, - ACTIONS(3145), 1, - anon_sym_default, - ACTIONS(3159), 1, - sym_identifier, - STATE(1214), 1, - sym_for_lifetimes, - STATE(1362), 1, - sym_scoped_type_identifier, - STATE(1397), 1, - sym_generic_type, - STATE(1417), 1, - sym_function_type, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2420), 1, - sym_function_modifiers, - STATE(2480), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2892), 18, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_union, - [37688] = 5, - ACTIONS(2674), 1, - anon_sym_COLON_COLON, - ACTIONS(3099), 1, - anon_sym_BANG, + ACTIONS(3031), 1, + anon_sym_DOT_DOT, + ACTIONS(3033), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(3029), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3041), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -105949,16 +102673,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(566), 24, + ACTIONS(3035), 25, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -105975,264 +102699,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37742] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(890), 1, - anon_sym_COLON_COLON, - ACTIONS(3131), 1, - sym_identifier, - ACTIONS(3141), 1, - sym_metavariable, - ACTIONS(3161), 1, - anon_sym_RPAREN, - STATE(1703), 1, - sym_scoped_identifier, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2486), 1, - sym_bracketed_type, + [36296] = 12, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3031), 1, + anon_sym_DOT_DOT, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, + anon_sym_AMP, + ACTIONS(3051), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1085), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2227), 2, - sym_meta_item, - sym__literal, - ACTIONS(3139), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3135), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [37818] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(732), 1, + ACTIONS(3029), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3037), 2, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(890), 1, - anon_sym_COLON_COLON, - ACTIONS(3163), 1, - sym_identifier, - ACTIONS(3169), 1, - sym_metavariable, - STATE(1456), 1, - sym_scoped_identifier, - STATE(1485), 1, - sym__literal_pattern, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2374), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(738), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3167), 3, - sym_self, - sym_super, - sym_crate, - STATE(1431), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(734), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3165), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [37894] = 16, - ACTIONS(77), 1, + ACTIONS(3055), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3039), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3041), 4, + anon_sym_EQ, anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(890), 1, - anon_sym_COLON_COLON, - ACTIONS(3131), 1, - sym_identifier, - ACTIONS(3141), 1, - sym_metavariable, - ACTIONS(3171), 1, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(3035), 25, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1703), 1, - sym_scoped_identifier, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2486), 1, - sym_bracketed_type, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36366] = 17, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3031), 1, + anon_sym_DOT_DOT, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, + anon_sym_AMP, + ACTIONS(3047), 1, + anon_sym_AMP_AMP, + ACTIONS(3049), 1, + anon_sym_PIPE, + ACTIONS(3051), 1, + anon_sym_CARET, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3091), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1085), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2227), 2, - sym_meta_item, - sym__literal, - ACTIONS(3139), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3135), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [37970] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(732), 1, + ACTIONS(3029), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3037), 2, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(890), 1, - anon_sym_COLON_COLON, - ACTIONS(3173), 1, - sym_identifier, - ACTIONS(3179), 1, - sym_metavariable, - STATE(1444), 1, - sym_scoped_identifier, - STATE(1500), 1, - sym__literal_pattern, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2374), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(738), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3177), 3, - sym_self, - sym_super, - sym_crate, - STATE(1431), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(734), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3175), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [38046] = 6, - ACTIONS(2576), 1, - anon_sym_BANG, - ACTIONS(3181), 1, - anon_sym_COLON_COLON, - STATE(1090), 1, - sym_field_initializer_list, + ACTIONS(3043), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3055), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3039), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3053), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3089), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36446] = 7, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3031), 1, + anon_sym_DOT_DOT, + ACTIONS(3033), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(3029), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3095), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -106240,15 +102847,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(566), 23, + ACTIONS(3093), 25, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -106265,15 +102873,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38102] = 5, - ACTIONS(2672), 1, - anon_sym_BANG, - ACTIONS(3183), 1, + [36506] = 7, + ACTIONS(2560), 1, + anon_sym_LBRACE, + ACTIONS(2562), 1, anon_sym_COLON_COLON, + ACTIONS(3097), 1, + anon_sym_BANG, + STATE(1131), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, + ACTIONS(422), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106289,9 +102901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2638), 23, + ACTIONS(424), 24, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, @@ -106313,42 +102926,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38155] = 3, + [36566] = 20, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3031), 1, + anon_sym_DOT_DOT, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, + anon_sym_AMP, + ACTIONS(3047), 1, + anon_sym_AMP_AMP, + ACTIONS(3049), 1, + anon_sym_PIPE, + ACTIONS(3051), 1, + anon_sym_CARET, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2594), 16, + ACTIONS(3029), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3037), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3039), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2596), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3099), 7, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106359,36 +102992,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38204] = 3, + [36652] = 8, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3031), 1, + anon_sym_DOT_DOT, + ACTIONS(3033), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 16, - anon_sym_PLUS, + ACTIONS(3029), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3039), 3, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3041), 10, + anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2632), 24, + ACTIONS(3035), 25, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -106405,21 +103046,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38253] = 3, + [36714] = 17, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(858), 1, + anon_sym_COLON_COLON, + ACTIONS(3101), 1, + sym_identifier, + ACTIONS(3103), 1, + anon_sym_RPAREN, + ACTIONS(3107), 1, + anon_sym_COMMA, + ACTIONS(3111), 1, + sym_metavariable, + STATE(1633), 1, + sym_scoped_identifier, + STATE(2322), 1, + sym_bracketed_type, + STATE(2525), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1079), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1886), 2, + sym_meta_item, + sym__literal, + ACTIONS(3109), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3105), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [36793] = 20, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(886), 1, + anon_sym_COLON_COLON, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2877), 1, + sym_identifier, + ACTIONS(2881), 1, + anon_sym_LPAREN, + ACTIONS(2883), 1, + anon_sym_STAR, + ACTIONS(2889), 1, + anon_sym_for, + ACTIONS(2891), 1, + anon_sym_AMP, + ACTIONS(2893), 1, + sym_metavariable, + STATE(1835), 1, + sym_scoped_type_identifier, + STATE(1917), 1, + sym_generic_type, + STATE(1932), 1, + sym_where_predicate, + STATE(2367), 1, + sym_bracketed_type, + STATE(2368), 1, + sym_generic_type_with_turbofish, + STATE(2545), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2887), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(2222), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2885), 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, + [36878] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3187), 9, + ACTIONS(1852), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, + anon_sym_POUND, anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3185), 31, + ACTIONS(1854), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106443,6 +103212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_for, anon_sym_impl, + anon_sym_pub, anon_sym_union, anon_sym_unsafe, anon_sym_extern, @@ -106451,22 +103221,54 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38302] = 4, - ACTIONS(3193), 1, + [36929] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(886), 1, anon_sym_COLON_COLON, + ACTIONS(2893), 1, + sym_metavariable, + ACTIONS(3113), 1, + sym_identifier, + ACTIONS(3115), 1, + anon_sym_default, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1326), 1, + sym_scoped_type_identifier, + STATE(1351), 1, + sym_generic_type, + STATE(1395), 1, + sym_function_type, + STATE(2367), 1, + sym_bracketed_type, + STATE(2368), 1, + sym_generic_type_with_turbofish, + STATE(2432), 1, + sym_function_modifiers, + STATE(2545), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3191), 8, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3189), 31, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(2887), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106484,28 +103286,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_union, + [37016] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2461), 1, + anon_sym_COLON_COLON, + ACTIONS(3117), 1, + sym_identifier, + ACTIONS(3121), 1, + anon_sym_default, + ACTIONS(3123), 1, + sym_metavariable, + STATE(769), 1, + sym_scoped_type_identifier, + STATE(816), 1, + sym_generic_type, + STATE(1112), 1, + sym_function_type, + STATE(1190), 1, + sym_for_lifetimes, + STATE(2375), 1, + sym_function_modifiers, + STATE(2401), 1, + sym_scoped_identifier, + STATE(2474), 1, + sym_bracketed_type, + STATE(2475), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, anon_sym_async, anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, anon_sym_unsafe, + ACTIONS(2469), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3119), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [37103] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, anon_sym_extern, - anon_sym_dyn, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2461), 1, + anon_sym_COLON_COLON, + ACTIONS(3121), 1, + anon_sym_default, + ACTIONS(3123), 1, + sym_metavariable, + ACTIONS(3125), 1, sym_identifier, + STATE(759), 1, + sym_scoped_type_identifier, + STATE(992), 1, + sym_generic_type, + STATE(1062), 1, + sym_function_type, + STATE(1190), 1, + sym_for_lifetimes, + STATE(2375), 1, + sym_function_modifiers, + STATE(2401), 1, + sym_scoped_identifier, + STATE(2474), 1, + sym_bracketed_type, + STATE(2475), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - [38353] = 4, - ACTIONS(3195), 1, - anon_sym_LPAREN, + ACTIONS(3119), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [37190] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3191), 8, + ACTIONS(3003), 10, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SQUOTE, anon_sym_BANG, @@ -106513,7 +103434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3189), 31, + ACTIONS(3005), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106541,18 +103462,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, anon_sym_dyn, + sym_mutable_specifier, sym_identifier, sym_self, sym_super, sym_crate, - [38404] = 3, + [37241] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(886), 1, + anon_sym_COLON_COLON, + ACTIONS(2893), 1, + sym_metavariable, + ACTIONS(3115), 1, + anon_sym_default, + ACTIONS(3127), 1, + sym_identifier, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1321), 1, + sym_scoped_type_identifier, + STATE(1360), 1, + sym_generic_type, + STATE(1392), 1, + sym_function_type, + STATE(2367), 1, + sym_bracketed_type, + STATE(2368), 1, + sym_generic_type_with_turbofish, + STATE(2432), 1, + sym_function_modifiers, + STATE(2545), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 16, - anon_sym_PLUS, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(2887), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [37328] = 20, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(886), 1, + anon_sym_COLON_COLON, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2877), 1, + sym_identifier, + ACTIONS(2881), 1, + anon_sym_LPAREN, + ACTIONS(2883), 1, anon_sym_STAR, + ACTIONS(2889), 1, + anon_sym_for, + ACTIONS(2891), 1, + anon_sym_AMP, + ACTIONS(2893), 1, + sym_metavariable, + STATE(1828), 1, + sym_where_predicate, + STATE(1835), 1, + sym_scoped_type_identifier, + STATE(1917), 1, + sym_generic_type, + STATE(2367), 1, + sym_bracketed_type, + STATE(2368), 1, + sym_generic_type_with_turbofish, + STATE(2545), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2887), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(2222), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2885), 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, + [37413] = 6, + ACTIONS(2574), 1, anon_sym_BANG, + ACTIONS(2576), 1, + anon_sym_COLON_COLON, + ACTIONS(3129), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2570), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106566,13 +103625,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2604), 24, + ACTIONS(2568), 23, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -106591,36 +103649,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38453] = 15, + [37470] = 16, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(702), 1, + anon_sym_DASH, + ACTIONS(706), 1, + aux_sym_string_literal_token1, + ACTIONS(858), 1, + anon_sym_COLON_COLON, + ACTIONS(3131), 1, + sym_identifier, + ACTIONS(3137), 1, + sym_metavariable, + STATE(1413), 1, + sym_scoped_identifier, + STATE(1425), 1, + sym__literal_pattern, + STATE(2358), 1, + sym_bracketed_type, + STATE(2525), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(708), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3135), 3, + sym_self, + sym_super, + sym_crate, + STATE(1381), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(704), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3133), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [37546] = 16, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(858), 1, + anon_sym_COLON_COLON, + ACTIONS(3101), 1, + sym_identifier, + ACTIONS(3111), 1, + sym_metavariable, + ACTIONS(3139), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_scoped_identifier, + STATE(2322), 1, + sym_bracketed_type, + STATE(2525), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1079), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2286), 2, + sym_meta_item, + sym__literal, + ACTIONS(3109), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3105), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [37622] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(93), 1, aux_sym_string_literal_token1, - ACTIONS(890), 1, + ACTIONS(858), 1, anon_sym_COLON_COLON, - ACTIONS(3131), 1, + ACTIONS(3101), 1, sym_identifier, - ACTIONS(3141), 1, + ACTIONS(3111), 1, sym_metavariable, - STATE(1703), 1, + ACTIONS(3141), 1, + anon_sym_RPAREN, + STATE(1633), 1, sym_scoped_identifier, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2486), 1, + STATE(2322), 1, sym_bracketed_type, + STATE(2525), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1085), 2, + STATE(1079), 2, sym_string_literal, sym_boolean_literal, - STATE(2227), 2, + STATE(2286), 2, sym_meta_item, sym__literal, - ACTIONS(3139), 3, + ACTIONS(3109), 3, sym_self, sym_super, sym_crate, @@ -106629,7 +103809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3135), 19, + ACTIONS(3105), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106649,87 +103829,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [38526] = 23, - ACTIONS(368), 1, - anon_sym_RBRACK, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3197), 1, - anon_sym_SEMI, - ACTIONS(3199), 1, - anon_sym_COMMA, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - STATE(2070), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, + [37698] = 16, + ACTIONS(77), 1, anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3087), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38615] = 3, + ACTIONS(702), 1, + anon_sym_DASH, + ACTIONS(706), 1, + aux_sym_string_literal_token1, + ACTIONS(858), 1, + anon_sym_COLON_COLON, + ACTIONS(3143), 1, + sym_identifier, + ACTIONS(3149), 1, + sym_metavariable, + STATE(1408), 1, + sym_scoped_identifier, + STATE(1437), 1, + sym__literal_pattern, + STATE(2358), 1, + sym_bracketed_type, + STATE(2525), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2925), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2923), 31, + ACTIONS(708), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3147), 3, + sym_self, + sym_super, + sym_crate, + STATE(1381), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(704), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3145), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106747,94 +103887,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [38664] = 23, - ACTIONS(512), 1, - anon_sym_RBRACK, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3205), 1, - anon_sym_SEMI, - ACTIONS(3207), 1, - anon_sym_COMMA, - STATE(1937), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3087), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38753] = 3, + [37774] = 5, + ACTIONS(2716), 1, + anon_sym_COLON_COLON, + ACTIONS(3097), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 16, + ACTIONS(422), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106848,13 +103913,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2612), 24, + ACTIONS(424), 24, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -106873,61 +103938,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38802] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3211), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3209), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [38851] = 5, - ACTIONS(2576), 1, + [37828] = 6, + ACTIONS(2546), 1, anon_sym_BANG, - ACTIONS(3213), 1, + ACTIONS(3151), 1, anon_sym_COLON_COLON, + STATE(1131), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(422), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106943,7 +103964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 23, + ACTIONS(424), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106967,11 +103988,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38904] = 3, + [37884] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3217), 9, + ACTIONS(3155), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -106981,7 +104002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3215), 31, + ACTIONS(3153), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -107013,11 +104034,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38953] = 3, + [37933] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3021), 9, + ACTIONS(2833), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -107027,7 +104048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3019), 31, + ACTIONS(2831), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -107059,60 +104080,42 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [39002] = 22, - ACTIONS(384), 1, - anon_sym_RPAREN, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3219), 1, - anon_sym_COMMA, - STATE(1971), 1, - aux_sym_arguments_repeat1, + [37982] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(2594), 16, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + anon_sym_DOT, + ACTIONS(2596), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107123,13 +104126,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39088] = 4, - ACTIONS(2700), 1, + [38031] = 5, + ACTIONS(2634), 1, + anon_sym_BANG, + ACTIONS(3157), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2684), 15, + ACTIONS(2570), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107145,7 +104150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2680), 23, + ACTIONS(2568), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -107169,108 +104174,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39138] = 18, + [38084] = 15, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(916), 1, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(858), 1, anon_sym_COLON_COLON, - ACTIONS(2898), 1, - sym_metavariable, - ACTIONS(3145), 1, - anon_sym_default, - ACTIONS(3221), 1, + ACTIONS(3101), 1, sym_identifier, - ACTIONS(3223), 1, - anon_sym_fn, - STATE(1865), 1, - sym_scoped_type_identifier, - STATE(2383), 1, - sym_bracketed_type, - STATE(2384), 1, - sym_generic_type_with_turbofish, - STATE(2448), 1, - sym_generic_type, - STATE(2480), 1, - sym_scoped_identifier, - STATE(2533), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2892), 18, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_union, - [39216] = 18, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(714), 1, - anon_sym_extern, - ACTIONS(916), 1, - anon_sym_COLON_COLON, - ACTIONS(2898), 1, + ACTIONS(3111), 1, sym_metavariable, - ACTIONS(3145), 1, - anon_sym_default, - ACTIONS(3225), 1, - sym_identifier, - ACTIONS(3227), 1, - anon_sym_fn, - STATE(1871), 1, - sym_scoped_type_identifier, - STATE(2383), 1, + STATE(1633), 1, + sym_scoped_identifier, + STATE(2322), 1, sym_bracketed_type, - STATE(2384), 1, + STATE(2525), 1, sym_generic_type_with_turbofish, - STATE(2418), 1, - sym_function_modifiers, - STATE(2448), 1, - sym_generic_type, - STATE(2480), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1564), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(694), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(922), 3, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1079), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2286), 2, + sym_meta_item, + sym__literal, + ACTIONS(3109), 3, sym_self, sym_super, sym_crate, - ACTIONS(2892), 18, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3105), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -107288,16 +104230,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_default, anon_sym_union, - [39294] = 4, - ACTIONS(3229), 1, - anon_sym_COLON_COLON, + [38157] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(568), 15, + ACTIONS(2610), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -107311,12 +104253,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(566), 23, + ACTIONS(2612), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -107335,79 +104278,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39344] = 22, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3231), 1, - anon_sym_RPAREN, - ACTIONS(3233), 1, - anon_sym_COMMA, - STATE(2112), 1, - aux_sym_arguments_repeat1, + [38206] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3161), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3087), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [39430] = 4, - ACTIONS(3183), 1, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3159), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38255] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, + ACTIONS(2602), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -107421,12 +104345,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2638), 23, + ACTIONS(2604), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -107445,15 +104370,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39480] = 4, - ACTIONS(2682), 1, + [38304] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3165), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3163), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38353] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2867), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2865), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38402] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2684), 15, + ACTIONS(2586), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -107467,12 +104483,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2680), 23, + ACTIONS(2588), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -107491,115 +104508,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39530] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [38451] = 4, + ACTIONS(3171), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3169), 8, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3167), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38502] = 23, + ACTIONS(630), 1, + anon_sym_RBRACK, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3051), 1, anon_sym_CARET, - STATE(142), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3235), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3241), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3237), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3257), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3261), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [39613] = 21, - ACTIONS(400), 1, - anon_sym_RPAREN, - ACTIONS(3055), 1, - anon_sym_LBRACK, ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3083), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3085), 1, anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3263), 1, + ACTIONS(3173), 1, + anon_sym_SEMI, + ACTIONS(3175), 1, anon_sym_COMMA, + ACTIONS(3179), 1, + anon_sym_DOT_DOT, + STATE(1948), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -107615,110 +104621,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39696] = 11, - ACTIONS(3055), 1, + [38591] = 23, + ACTIONS(374), 1, + anon_sym_RBRACK, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3243), 1, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3267), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3235), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3265), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3109), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3047), 1, + anon_sym_AMP_AMP, + ACTIONS(3049), 1, anon_sym_PIPE, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3107), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [39759] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, - anon_sym_LBRACK, ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3083), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3085), 1, anon_sym_EQ, - ACTIONS(3243), 1, - anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, - anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, - anon_sym_PIPE, - ACTIONS(3255), 1, - anon_sym_CARET, - STATE(145), 1, - sym_block, + ACTIONS(3181), 1, + anon_sym_SEMI, + ACTIONS(3183), 1, + anon_sym_COMMA, + STATE(1995), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3177), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107729,43 +104687,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39842] = 12, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3243), 1, - anon_sym_AMP, - ACTIONS(3255), 1, - anon_sym_CARET, - ACTIONS(3267), 1, - anon_sym_DOT_DOT, + [38680] = 5, + ACTIONS(2546), 1, + anon_sym_BANG, + ACTIONS(3185), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(422), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3265), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3109), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(3107), 20, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(424), 23, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -107782,171 +104735,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39907] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, - anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, - anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, - anon_sym_PIPE, - ACTIONS(3255), 1, - anon_sym_CARET, - STATE(119), 1, - sym_block, + [38733] = 4, + ACTIONS(3187), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3241), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3169), 8, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3257), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3261), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [39990] = 16, - ACTIONS(3055), 1, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3167), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38784] = 22, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3109), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3249), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3253), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3267), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3235), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3241), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3265), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3257), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3107), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, anon_sym_QMARK, + ACTIONS(3083), 1, anon_sym_as, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40063] = 15, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3109), 1, + ACTIONS(3085), 1, anon_sym_EQ, - ACTIONS(3243), 1, - anon_sym_AMP, - ACTIONS(3253), 1, - anon_sym_PIPE, - ACTIONS(3255), 1, - anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3179), 1, anon_sym_DOT_DOT, + ACTIONS(3189), 1, + anon_sym_RPAREN, + ACTIONS(3191), 1, + anon_sym_COMMA, + STATE(2068), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3259), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3107), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107957,41 +104846,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40134] = 10, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3267), 1, - anon_sym_DOT_DOT, + [38870] = 4, + ACTIONS(2654), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(2656), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3265), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3109), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3107), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2652), 23, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -108008,88 +104892,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40195] = 21, - ACTIONS(270), 1, - anon_sym_RBRACE, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3269), 1, - anon_sym_SEMI, + [38920] = 18, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(886), 1, + anon_sym_COLON_COLON, + ACTIONS(2893), 1, + sym_metavariable, + ACTIONS(3115), 1, + anon_sym_default, + ACTIONS(3193), 1, + sym_identifier, + ACTIONS(3195), 1, + anon_sym_fn, + STATE(1785), 1, + sym_scoped_type_identifier, + STATE(2367), 1, + sym_bracketed_type, + STATE(2368), 1, + sym_generic_type_with_turbofish, + STATE(2403), 1, + sym_function_modifiers, + STATE(2452), 1, + sym_generic_type, + STATE(2545), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(2887), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [38998] = 18, + ACTIONS(77), 1, anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3087), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40278] = 7, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3267), 1, - anon_sym_DOT_DOT, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(886), 1, + anon_sym_COLON_COLON, + ACTIONS(2893), 1, + sym_metavariable, + ACTIONS(3115), 1, + anon_sym_default, + ACTIONS(3197), 1, + sym_identifier, + ACTIONS(3199), 1, + anon_sym_fn, + STATE(1772), 1, + sym_scoped_type_identifier, + STATE(2367), 1, + sym_bracketed_type, + STATE(2368), 1, + sym_generic_type_with_turbofish, + STATE(2452), 1, + sym_generic_type, + STATE(2472), 1, + sym_function_modifiers, + STATE(2545), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(2887), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [39076] = 4, + ACTIONS(2714), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3265), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3117), 13, + ACTIONS(2656), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -108097,11 +105033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3115), 20, + anon_sym_DOT, + ACTIONS(2652), 23, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -108118,54 +105058,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40333] = 17, - ACTIONS(288), 1, - anon_sym_EQ, - ACTIONS(3055), 1, + [39126] = 22, + ACTIONS(392), 1, + anon_sym_RPAREN, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3243), 1, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3249), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, + ACTIONS(3201), 1, + anon_sym_COMMA, + STATE(1885), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3259), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(282), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108176,26 +105122,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40408] = 7, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3267), 1, - anon_sym_DOT_DOT, + [39212] = 4, + ACTIONS(3157), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3265), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3109), 13, + ACTIONS(2570), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -108203,11 +105143,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 20, + anon_sym_DOT, + ACTIONS(2568), 23, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -108224,57 +105168,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40463] = 20, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, + [39262] = 4, ACTIONS(3203), 1, - anon_sym_DOT_DOT, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(422), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3271), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3059), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + anon_sym_DOT, + ACTIONS(424), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108285,58 +105214,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40544] = 21, - ACTIONS(3055), 1, + [39312] = 21, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3083), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3205), 1, + anon_sym_LBRACE, + ACTIONS(3211), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3219), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3221), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3223), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3225), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3227), 1, anon_sym_CARET, - ACTIONS(3273), 1, - anon_sym_LBRACE, - STATE(1067), 1, + STATE(63), 1, sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3213), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, + ACTIONS(3217), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3229), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108347,54 +105276,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40627] = 17, - ACTIONS(3055), 1, + [39395] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3125), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3249), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3259), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3235), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3123), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108405,58 +105337,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40702] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [39476] = 21, + ACTIONS(278), 1, + anon_sym_RBRACE, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3051), 1, anon_sym_CARET, - STATE(1077), 1, - sym_block, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, + anon_sym_DOT_DOT, + ACTIONS(3237), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3177), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108467,44 +105399,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40785] = 7, - ACTIONS(3055), 1, + [39559] = 21, + ACTIONS(490), 1, + anon_sym_RPAREN, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3267), 1, + ACTIONS(3045), 1, + anon_sym_AMP, + ACTIONS(3047), 1, + anon_sym_AMP_AMP, + ACTIONS(3049), 1, + anon_sym_PIPE, + ACTIONS(3051), 1, + anon_sym_CARET, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, + ACTIONS(3239), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3265), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3093), 13, + ACTIONS(3037), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3177), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3039), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3091), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108515,54 +105461,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40840] = 17, - ACTIONS(3055), 1, + [39642] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3121), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3249), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3259), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3241), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3119), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108573,53 +105522,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40915] = 21, - ACTIONS(3055), 1, + [39723] = 21, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, + ACTIONS(3237), 1, anon_sym_SEMI, - ACTIONS(3275), 1, + ACTIONS(3243), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -108635,57 +105584,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40998] = 20, - ACTIONS(3055), 1, + [39806] = 21, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3249), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, + ACTIONS(3237), 1, + anon_sym_SEMI, + ACTIONS(3245), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3053), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3235), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3259), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108696,44 +105646,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41079] = 7, - ACTIONS(3055), 1, + [39889] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3267), 1, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3211), 1, + anon_sym_EQ, + ACTIONS(3215), 1, + anon_sym_AMP, + ACTIONS(3219), 1, anon_sym_DOT_DOT, + ACTIONS(3221), 1, + anon_sym_AMP_AMP, + ACTIONS(3223), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3225), 1, + anon_sym_PIPE, + ACTIONS(3227), 1, + anon_sym_CARET, + STATE(1090), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3265), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3097), 13, + ACTIONS(3207), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3213), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3217), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3231), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3209), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3095), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3229), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108744,53 +105708,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41134] = 21, - ACTIONS(3055), 1, + [39972] = 21, + ACTIONS(270), 1, + anon_sym_RBRACE, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, + ACTIONS(3237), 1, anon_sym_SEMI, - ACTIONS(3277), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -108806,57 +105770,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41217] = 20, - ACTIONS(3055), 1, + [40055] = 17, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3091), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3221), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3223), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3225), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3227), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3213), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3279), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3229), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3089), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108867,53 +105828,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41298] = 21, - ACTIONS(3055), 1, + [40130] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3263), 1, - anon_sym_COMMA, - ACTIONS(3281), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3251), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -108929,58 +105889,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41381] = 21, - ACTIONS(3055), 1, + [40211] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3083), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3211), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3219), 1, + anon_sym_DOT_DOT, + ACTIONS(3221), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3223), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3225), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3227), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3283), 1, - anon_sym_RPAREN, - ACTIONS(3285), 1, - anon_sym_COMMA, + STATE(77), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3213), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3217), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3229), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108991,58 +105951,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41464] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [40294] = 7, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3249), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3247), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3073), 13, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(3243), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3071), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_AMP_AMP, - ACTIONS(3251), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [40349] = 20, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, + anon_sym_AMP, + ACTIONS(3047), 1, + anon_sym_AMP_AMP, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3051), 1, anon_sym_CARET, - STATE(1113), 1, - sym_block, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3177), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3253), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109053,53 +106060,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41547] = 21, - ACTIONS(113), 1, - anon_sym_RBRACE, - ACTIONS(3055), 1, + [40430] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3255), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -109115,52 +106121,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41630] = 20, - ACTIONS(3055), 1, + [40511] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3287), 2, + ACTIONS(3257), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -109176,58 +106182,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41711] = 21, + [40592] = 21, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3083), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3211), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3219), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3221), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3223), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3225), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3227), 1, anon_sym_CARET, - STATE(1150), 1, + STATE(1119), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3213), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, + ACTIONS(3217), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3229), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109238,52 +106244,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41794] = 20, - ACTIONS(3055), 1, + [40675] = 21, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, + ACTIONS(3237), 1, + anon_sym_SEMI, + ACTIONS(3259), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3289), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -109299,58 +106306,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41875] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [40758] = 17, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3069), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3221), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3223), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3225), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3227), 1, anon_sym_CARET, - STATE(796), 1, - sym_block, + ACTIONS(3249), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3213), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3247), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3229), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3067), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109361,58 +106364,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41958] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [40833] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3083), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3211), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3221), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3223), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3225), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3227), 1, anon_sym_CARET, - STATE(128), 1, - sym_block, + ACTIONS(3249), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3079), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3213), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3247), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3229), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109423,58 +106425,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42041] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [40914] = 17, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3059), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3221), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3223), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3225), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3227), 1, anon_sym_CARET, - STATE(50), 1, - sym_block, + ACTIONS(3249), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3213), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3247), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3229), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3057), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109485,58 +106483,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42124] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [40989] = 21, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3083), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3211), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3219), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3221), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3223), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3225), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3227), 1, anon_sym_CARET, - STATE(1108), 1, - sym_block, + ACTIONS(3261), 1, + anon_sym_LBRACE, + STATE(1076), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3213), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, + ACTIONS(3217), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3229), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109547,52 +106545,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42207] = 20, - ACTIONS(3055), 1, + [41072] = 21, + ACTIONS(436), 1, + anon_sym_RPAREN, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, + ACTIONS(3239), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3291), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -109608,58 +106607,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42288] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [41155] = 21, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3051), 1, anon_sym_CARET, - STATE(45), 1, - sym_block, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, + anon_sym_DOT_DOT, + ACTIONS(3263), 1, + anon_sym_RBRACE, + ACTIONS(3265), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3177), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109670,57 +106669,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42371] = 20, - ACTIONS(3055), 1, + [41238] = 17, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3077), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3221), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3223), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3225), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3227), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3213), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3293), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3229), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3075), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109731,108 +106727,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42452] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [41313] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3051), 1, anon_sym_CARET, - STATE(1119), 1, - sym_block, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3257), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3261), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [42535] = 9, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3267), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3235), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3265), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3267), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3109), 8, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3107), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109843,58 +106788,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42594] = 21, - ACTIONS(3055), 1, + [41394] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3083), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3211), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3219), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3221), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3223), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3225), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3227), 1, anon_sym_CARET, - ACTIONS(3295), 1, - anon_sym_LBRACE, - STATE(176), 1, - sym_match_block, + STATE(80), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3213), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, + ACTIONS(3217), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3229), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109905,58 +106850,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42677] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [41477] = 21, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3051), 1, anon_sym_CARET, - STATE(794), 1, - sym_block, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, + anon_sym_DOT_DOT, + ACTIONS(3237), 1, + anon_sym_SEMI, + ACTIONS(3269), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3177), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109967,58 +106912,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42760] = 21, - ACTIONS(3055), 1, + [41560] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3083), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3211), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3221), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3223), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3225), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3227), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, - ACTIONS(3297), 1, - anon_sym_RBRACE, - ACTIONS(3299), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3099), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3213), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3229), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110029,58 +106973,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42843] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [41641] = 21, + ACTIONS(266), 1, + anon_sym_RBRACE, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3051), 1, anon_sym_CARET, - STATE(1126), 1, - sym_block, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, + anon_sym_DOT_DOT, + ACTIONS(3237), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3177), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110091,52 +107035,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42926] = 20, - ACTIONS(3055), 1, + [41724] = 21, + ACTIONS(262), 1, + anon_sym_RBRACE, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, + ACTIONS(3237), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3301), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -110152,43 +107097,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43007] = 15, + [41807] = 15, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3271), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3307), 1, + ACTIONS(3275), 1, anon_sym_RBRACE, - ACTIONS(3309), 1, + ACTIONS(3277), 1, anon_sym_STAR, - ACTIONS(3313), 1, + ACTIONS(3281), 1, anon_sym_COMMA, - ACTIONS(3315), 1, + ACTIONS(3283), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3287), 1, sym_metavariable, - STATE(1790), 1, + STATE(1741), 1, sym_scoped_identifier, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2486), 1, + STATE(2322), 1, sym_bracketed_type, + STATE(2525), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(1954), 5, + STATE(1896), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3279), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110208,58 +107153,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [43078] = 21, - ACTIONS(3055), 1, + [41878] = 8, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, - ACTIONS(3321), 1, - anon_sym_RBRACE, - ACTIONS(3323), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3041), 10, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3035), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110270,58 +107202,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43161] = 21, - ACTIONS(107), 1, - anon_sym_RBRACE, - ACTIONS(3055), 1, + [41935] = 17, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, + ACTIONS(3033), 1, + anon_sym_DOT, ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3221), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3223), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3225), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3227), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3213), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3229), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3063), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110332,57 +107260,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43244] = 20, - ACTIONS(3055), 1, + [42010] = 21, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3083), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3211), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3219), 1, + anon_sym_DOT_DOT, + ACTIONS(3221), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3223), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3225), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3227), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, + ACTIONS(3289), 1, + anon_sym_LBRACE, + STATE(229), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3213), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3217), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3325), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3229), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110393,58 +107322,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43325] = 21, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [42093] = 13, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, - anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3225), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3227), 1, anon_sym_CARET, - STATE(220), 1, - sym_block, + ACTIONS(3249), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3247), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3041), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3035), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110455,54 +107376,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43408] = 17, - ACTIONS(3055), 1, + [42160] = 9, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3129), 1, - anon_sym_EQ, - ACTIONS(3243), 1, - anon_sym_AMP, ACTIONS(3249), 1, - anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, - anon_sym_PIPE, - ACTIONS(3255), 1, - anon_sym_CARET, - ACTIONS(3267), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3127), 14, + ACTIONS(3041), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3035), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110513,57 +107426,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43483] = 20, - ACTIONS(3055), 1, + [42219] = 7, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3247), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3041), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3059), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3035), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110574,53 +107474,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43564] = 21, - ACTIONS(3055), 1, + [42274] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, - anon_sym_SEMI, - ACTIONS(3329), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3291), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -110636,53 +107535,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43647] = 21, - ACTIONS(278), 1, - anon_sym_RBRACE, - ACTIONS(3055), 1, + [42355] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3293), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -110698,58 +107596,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43730] = 21, - ACTIONS(3055), 1, + [42436] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3331), 1, - anon_sym_LBRACE, - STATE(256), 1, - sym_match_block, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3177), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3295), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110760,58 +107657,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43813] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [42517] = 21, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3051), 1, anon_sym_CARET, - STATE(143), 1, - sym_block, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, + anon_sym_DOT_DOT, + ACTIONS(3237), 1, + anon_sym_SEMI, + ACTIONS(3297), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3177), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110822,58 +107719,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43896] = 21, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [42600] = 21, + ACTIONS(264), 1, + anon_sym_RBRACE, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3051), 1, anon_sym_CARET, - STATE(254), 1, - sym_block, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, + anon_sym_DOT_DOT, + ACTIONS(3237), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3177), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110884,50 +107781,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43979] = 17, - ACTIONS(3055), 1, + [42683] = 17, + ACTIONS(288), 1, + anon_sym_EQ, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3113), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3249), 1, + ACTIONS(3221), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3223), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3225), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3227), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3213), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3229), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3111), 14, + ACTIONS(282), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -110942,40 +107839,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44054] = 13, - ACTIONS(3055), 1, + [42758] = 7, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3243), 1, - anon_sym_AMP, - ACTIONS(3253), 1, - anon_sym_PIPE, - ACTIONS(3255), 1, - anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3259), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3109), 3, + ACTIONS(3095), 13, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3237), 3, - anon_sym_STAR, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3107), 20, + ACTIONS(3093), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -110996,58 +107887,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44121] = 21, - ACTIONS(3055), 1, + [42813] = 11, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3215), 1, + anon_sym_AMP, + ACTIONS(3249), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, - anon_sym_SEMI, - ACTIONS(3333), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3041), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3035), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111058,35 +107939,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44204] = 8, - ACTIONS(3055), 1, + [42876] = 10, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3267), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3265), 2, + ACTIONS(3207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3109), 10, - anon_sym_PLUS, + ACTIONS(3041), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3107), 20, + ACTIONS(3035), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -111107,53 +107990,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44261] = 21, - ACTIONS(3055), 1, + [42937] = 21, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, - anon_sym_SEMI, - ACTIONS(3335), 1, - anon_sym_RBRACE, + ACTIONS(3299), 1, + anon_sym_RPAREN, + ACTIONS(3301), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -111169,53 +108052,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44344] = 21, - ACTIONS(119), 1, - anon_sym_RBRACE, - ACTIONS(3055), 1, + [43020] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3303), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -111231,58 +108113,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44427] = 21, - ACTIONS(398), 1, - anon_sym_RPAREN, - ACTIONS(3055), 1, + [43101] = 7, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3249), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3247), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3027), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3023), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_QMARK, - ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3065), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [43156] = 21, + ACTIONS(632), 1, + anon_sym_LBRACE, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3211), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3219), 1, + anon_sym_DOT_DOT, + ACTIONS(3221), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3223), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3225), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3227), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3263), 1, - anon_sym_COMMA, + STATE(239), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3213), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3217), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3229), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111293,57 +108223,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44510] = 20, - ACTIONS(3055), 1, + [43239] = 15, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3041), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3249), 1, - anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3225), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3227), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3105), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3235), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3213), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3229), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3035), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111354,53 +108279,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44591] = 21, - ACTIONS(3055), 1, + [43310] = 21, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, - anon_sym_SEMI, - ACTIONS(3337), 1, - anon_sym_RBRACE, + ACTIONS(3239), 1, + anon_sym_COMMA, + ACTIONS(3305), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -111416,58 +108341,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44674] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [43393] = 21, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3051), 1, anon_sym_CARET, - STATE(161), 1, - sym_block, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, + anon_sym_DOT_DOT, + ACTIONS(3307), 1, + anon_sym_RBRACE, + ACTIONS(3309), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3177), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111478,58 +108403,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44757] = 21, - ACTIONS(602), 1, + [43476] = 21, + ACTIONS(632), 1, anon_sym_LBRACE, - ACTIONS(3055), 1, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3083), 1, anon_sym_as, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3211), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3219), 1, anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3221), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, + ACTIONS(3223), 1, anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3225), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3227), 1, anon_sym_CARET, - STATE(240), 1, + STATE(231), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3213), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, + ACTIONS(3217), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3229), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111540,53 +108465,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44840] = 21, + [43559] = 21, ACTIONS(272), 1, anon_sym_RBRACE, - ACTIONS(3055), 1, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, + ACTIONS(3237), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -111602,58 +108527,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44923] = 21, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [43642] = 21, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3051), 1, anon_sym_CARET, - STATE(249), 1, - sym_block, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, + anon_sym_DOT_DOT, + ACTIONS(3237), 1, + anon_sym_SEMI, + ACTIONS(3311), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3177), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111664,52 +108589,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45006] = 20, - ACTIONS(3055), 1, + [43725] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3339), 2, + ACTIONS(3313), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -111725,58 +108650,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45087] = 21, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [43806] = 16, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3239), 1, + ACTIONS(3041), 1, anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3221), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3225), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3227), 1, anon_sym_CARET, - STATE(226), 1, - sym_block, + ACTIONS(3249), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3213), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3247), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3229), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3035), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111787,58 +108707,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45170] = 21, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [43879] = 12, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, - anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, - anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3227), 1, anon_sym_CARET, - STATE(232), 1, - sym_block, + ACTIONS(3249), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3247), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3041), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(3035), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111849,58 +108760,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45253] = 21, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [43944] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3051), 1, anon_sym_CARET, - STATE(245), 1, - sym_block, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, + anon_sym_DOT_DOT, + ACTIONS(3315), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3177), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111911,52 +108820,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45336] = 20, - ACTIONS(3055), 1, + [44024] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, + ACTIONS(3317), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3341), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -111972,58 +108880,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45417] = 21, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(3055), 1, + [44104] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3239), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_DOT_DOT, - ACTIONS(3249), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3051), 1, anon_sym_CARET, - STATE(244), 1, - sym_block, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, + anon_sym_DOT_DOT, + ACTIONS(3319), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3245), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3259), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3237), 3, + ACTIONS(3177), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3261), 10, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112034,54 +108940,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45500] = 17, - ACTIONS(3055), 1, + [44184] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3089), 1, + ACTIONS(3033), 1, anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_EQ, - ACTIONS(3243), 1, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3249), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3251), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3253), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3255), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3267), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, + ACTIONS(3321), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3235), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3241), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3259), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3265), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3237), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3257), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3101), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112092,52 +109000,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45575] = 20, - ACTIONS(3055), 1, + [44264] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, + ACTIONS(3323), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -112153,51 +109060,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45656] = 20, - ACTIONS(3055), 1, + [44344] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3345), 1, - anon_sym_SEMI, + ACTIONS(3325), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -112213,51 +109120,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45736] = 20, - ACTIONS(3055), 1, + [44424] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, + ACTIONS(3327), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -112273,51 +109180,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45816] = 20, - ACTIONS(3055), 1, + [44504] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3347), 1, + ACTIONS(3329), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -112333,105 +109240,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45896] = 14, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3303), 1, - sym_identifier, - ACTIONS(3305), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_STAR, - ACTIONS(3315), 1, - anon_sym_COLON_COLON, - ACTIONS(3319), 1, - sym_metavariable, - ACTIONS(3349), 1, - anon_sym_RBRACE, - STATE(1790), 1, - sym_scoped_identifier, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2486), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3317), 3, - sym_self, - sym_super, - sym_crate, - STATE(2266), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3311), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [45964] = 20, - ACTIONS(3055), 1, + [44584] = 19, + ACTIONS(3025), 1, anon_sym_LBRACK, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, + anon_sym_AMP, + ACTIONS(3049), 1, + anon_sym_PIPE, + ACTIONS(3051), 1, + anon_sym_CARET, ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3083), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3085), 1, anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3351), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3331), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -112447,51 +109299,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46044] = 20, - ACTIONS(3055), 1, + [44662] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3353), 1, + ACTIONS(3333), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -112507,51 +109359,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46124] = 20, - ACTIONS(3055), 1, + [44742] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3355), 1, - anon_sym_RBRACK, + ACTIONS(3335), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -112567,51 +109419,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46204] = 20, - ACTIONS(3055), 1, + [44822] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3357), 1, - anon_sym_RBRACK, + ACTIONS(3337), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -112627,51 +109479,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46284] = 20, - ACTIONS(3055), 1, + [44902] = 19, + ACTIONS(3025), 1, anon_sym_LBRACK, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, + anon_sym_AMP, + ACTIONS(3049), 1, + anon_sym_PIPE, + ACTIONS(3051), 1, + anon_sym_CARET, ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3083), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3085), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3179), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3037), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3043), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3055), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3177), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3339), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(3039), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3053), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3087), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44980] = 20, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3359), 1, + ACTIONS(3239), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -112687,51 +109598,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46364] = 20, - ACTIONS(3055), 1, + [45060] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3361), 1, - anon_sym_SEMI, + ACTIONS(3341), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -112747,51 +109658,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46444] = 20, - ACTIONS(3055), 1, + [45140] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3363), 1, + ACTIONS(3343), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -112807,51 +109718,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46524] = 20, - ACTIONS(3055), 1, + [45220] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3365), 1, - anon_sym_RBRACK, + ACTIONS(3345), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -112867,51 +109778,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46604] = 20, - ACTIONS(3055), 1, + [45300] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3263), 1, - anon_sym_COMMA, + ACTIONS(3347), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -112927,51 +109838,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46684] = 20, - ACTIONS(3055), 1, + [45380] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3367), 1, + ACTIONS(3349), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -112987,51 +109898,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46764] = 20, - ACTIONS(3055), 1, + [45460] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3369), 1, - anon_sym_COMMA, + ACTIONS(3351), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -113047,51 +109958,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46844] = 20, - ACTIONS(3055), 1, + [45540] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3371), 1, + ACTIONS(3353), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -113107,51 +110018,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46924] = 20, - ACTIONS(3055), 1, + [45620] = 14, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3271), 1, + sym_identifier, + ACTIONS(3273), 1, + anon_sym_LBRACE, + ACTIONS(3277), 1, + anon_sym_STAR, + ACTIONS(3283), 1, + anon_sym_COLON_COLON, + ACTIONS(3287), 1, + sym_metavariable, + ACTIONS(3355), 1, + anon_sym_RBRACE, + STATE(1741), 1, + sym_scoped_identifier, + STATE(2322), 1, + sym_bracketed_type, + STATE(2525), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3285), 3, + sym_self, + sym_super, + sym_crate, + STATE(2200), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3279), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [45688] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3373), 1, - anon_sym_SEMI, + ACTIONS(3357), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -113167,51 +110132,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47004] = 20, - ACTIONS(3055), 1, + [45768] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3375), 1, + ACTIONS(3359), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -113227,51 +110192,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47084] = 20, - ACTIONS(3055), 1, + [45848] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3377), 1, + ACTIONS(3361), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -113287,51 +110252,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47164] = 20, - ACTIONS(3055), 1, + [45928] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3379), 1, - anon_sym_RBRACK, + ACTIONS(3363), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -113347,51 +110312,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47244] = 20, - ACTIONS(3055), 1, + [46008] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3381), 1, - anon_sym_RBRACK, + ACTIONS(3365), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -113407,41 +110372,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47324] = 14, + [46088] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3271), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3277), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3283), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3287), 1, sym_metavariable, - ACTIONS(3383), 1, + ACTIONS(3367), 1, anon_sym_RBRACE, - STATE(1790), 1, + STATE(1741), 1, sym_scoped_identifier, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2486), 1, + STATE(2322), 1, sym_bracketed_type, + STATE(2525), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(2266), 5, + STATE(2200), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3279), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113461,111 +110426,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47392] = 20, - ACTIONS(3055), 1, + [46156] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3385), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3087), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [47472] = 20, - ACTIONS(3055), 1, - anon_sym_LBRACK, ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3083), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3085), 1, anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3387), 1, - anon_sym_SEMI, + ACTIONS(3369), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -113581,51 +110486,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47552] = 20, - ACTIONS(3055), 1, + [46236] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3389), 1, + ACTIONS(3371), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -113641,56 +110546,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47632] = 20, - ACTIONS(3055), 1, + [46316] = 19, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3083), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3211), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3219), 1, + anon_sym_DOT_DOT, + ACTIONS(3223), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3225), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3227), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3391), 1, - anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3213), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3217), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3331), 2, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3229), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -113701,51 +110605,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47712] = 20, - ACTIONS(3055), 1, + [46394] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3393), 1, - anon_sym_SEMI, + ACTIONS(3373), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -113761,51 +110665,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47792] = 20, - ACTIONS(3055), 1, + [46474] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3395), 1, + ACTIONS(3375), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -113821,51 +110725,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47872] = 20, - ACTIONS(3055), 1, + [46554] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3397), 1, - anon_sym_SEMI, + ACTIONS(3377), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -113881,111 +110785,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47952] = 20, - ACTIONS(3055), 1, + [46634] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3399), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3087), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [48032] = 20, - ACTIONS(3055), 1, - anon_sym_LBRACK, ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3083), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3085), 1, anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3401), 1, + ACTIONS(3379), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -114001,56 +110845,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48112] = 20, - ACTIONS(3055), 1, + [46714] = 19, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3083), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3211), 1, anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, + ACTIONS(3219), 1, + anon_sym_DOT_DOT, + ACTIONS(3223), 1, anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3225), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3227), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3403), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3207), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3213), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3217), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3339), 2, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + ACTIONS(3209), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3229), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -114061,111 +110904,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48192] = 20, - ACTIONS(3055), 1, + [46792] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, - anon_sym_DOT_DOT, - ACTIONS(3405), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3057), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3067), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3085), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3083), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3087), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [48272] = 20, - ACTIONS(3055), 1, - anon_sym_LBRACK, ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3083), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3085), 1, anon_sym_EQ, - ACTIONS(3069), 1, - anon_sym_AMP, - ACTIONS(3075), 1, - anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, - anon_sym_PIPE, - ACTIONS(3081), 1, - anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3407), 1, - anon_sym_COMMA, + ACTIONS(3381), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -114181,51 +110964,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48352] = 20, - ACTIONS(3055), 1, + [46872] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3409), 1, - anon_sym_RBRACK, + ACTIONS(3237), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -114241,51 +111024,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48432] = 20, - ACTIONS(3055), 1, + [46952] = 20, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3069), 1, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3045), 1, anon_sym_AMP, - ACTIONS(3075), 1, + ACTIONS(3047), 1, anon_sym_AMP_AMP, - ACTIONS(3077), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 1, + ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3081), 1, + ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3089), 1, - anon_sym_DOT, - ACTIONS(3203), 1, + ACTIONS(3061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3081), 1, + anon_sym_QMARK, + ACTIONS(3083), 1, + anon_sym_as, + ACTIONS(3085), 1, + anon_sym_EQ, + ACTIONS(3179), 1, anon_sym_DOT_DOT, - ACTIONS(3411), 1, - anon_sym_SEMI, + ACTIONS(3383), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3057), 2, + ACTIONS(3037), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3067), 2, + ACTIONS(3043), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3085), 2, + ACTIONS(3055), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 2, + ACTIONS(3177), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3059), 3, + ACTIONS(3039), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3083), 4, + ACTIONS(3053), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -114301,39 +111084,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48512] = 13, + [47032] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3271), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3277), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3283), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3287), 1, sym_metavariable, - STATE(1790), 1, + STATE(1741), 1, sym_scoped_identifier, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2486), 1, + STATE(2322), 1, sym_bracketed_type, + STATE(2525), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(2361), 5, + STATE(2316), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3279), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114353,39 +111136,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48577] = 13, + [47097] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3271), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3277), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3283), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3287), 1, sym_metavariable, - STATE(1790), 1, + STATE(1741), 1, sym_scoped_identifier, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2486), 1, + STATE(2322), 1, sym_bracketed_type, + STATE(2525), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(2539), 5, + STATE(2526), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3279), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114405,39 +111188,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48642] = 13, + [47162] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3271), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3277), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3283), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3287), 1, sym_metavariable, - STATE(1790), 1, + STATE(1741), 1, sym_scoped_identifier, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2486), 1, + STATE(2322), 1, sym_bracketed_type, + STATE(2525), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(2266), 5, + STATE(2430), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3279), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114457,39 +111240,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48707] = 13, + [47227] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3271), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3277), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3283), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3287), 1, sym_metavariable, - STATE(1790), 1, + STATE(1741), 1, sym_scoped_identifier, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2486), 1, + STATE(2322), 1, sym_bracketed_type, + STATE(2525), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(2444), 5, + STATE(2341), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3279), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114509,39 +111292,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48772] = 13, + [47292] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3271), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3277), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3283), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3287), 1, sym_metavariable, - STATE(1790), 1, + STATE(1741), 1, sym_scoped_identifier, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2486), 1, + STATE(2322), 1, sym_bracketed_type, + STATE(2525), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3285), 3, sym_self, sym_super, sym_crate, - STATE(2500), 5, + STATE(2200), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3279), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114561,15 +111344,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48837] = 3, + [47357] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3415), 3, + ACTIONS(3387), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3413), 28, + ACTIONS(3385), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114598,15 +111381,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [48877] = 3, + [47397] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3419), 3, + ACTIONS(3391), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3417), 28, + ACTIONS(3389), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114635,15 +111418,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [48917] = 3, + [47437] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3423), 3, + ACTIONS(3395), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3421), 28, + ACTIONS(3393), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114672,29 +111455,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [48957] = 10, + [47477] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(890), 1, + ACTIONS(858), 1, anon_sym_COLON_COLON, - ACTIONS(3425), 1, + ACTIONS(3397), 1, sym_identifier, - ACTIONS(3431), 1, + ACTIONS(3403), 1, sym_metavariable, - STATE(2186), 1, + STATE(2156), 1, sym_scoped_identifier, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2486), 1, + STATE(2322), 1, sym_bracketed_type, + STATE(2525), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3429), 3, + ACTIONS(3401), 3, sym_self, sym_super, sym_crate, - ACTIONS(3427), 19, + ACTIONS(3399), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114714,29 +111497,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49009] = 10, + [47529] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(890), 1, + ACTIONS(858), 1, anon_sym_COLON_COLON, - ACTIONS(3433), 1, + ACTIONS(3405), 1, sym_identifier, - ACTIONS(3439), 1, + ACTIONS(3411), 1, sym_metavariable, - STATE(2339), 1, + STATE(2230), 1, sym_scoped_identifier, - STATE(2359), 1, - sym_generic_type_with_turbofish, - STATE(2486), 1, + STATE(2322), 1, sym_bracketed_type, + STATE(2525), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3437), 3, + ACTIONS(3409), 3, sym_self, sym_super, sym_crate, - ACTIONS(3435), 19, + ACTIONS(3407), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114756,13 +111539,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [49061] = 3, - ACTIONS(2433), 1, + [47581] = 3, + ACTIONS(2403), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2435), 20, + ACTIONS(2405), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114783,13 +111566,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49091] = 3, - ACTIONS(2445), 1, + [47611] = 3, + ACTIONS(2407), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2447), 20, + ACTIONS(2409), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114810,31 +111593,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49121] = 11, - ACTIONS(3443), 1, + [47641] = 11, + ACTIONS(3415), 1, anon_sym_LPAREN, - ACTIONS(3445), 1, + ACTIONS(3417), 1, anon_sym_LBRACE, - ACTIONS(3449), 1, + ACTIONS(3421), 1, anon_sym_BANG, - ACTIONS(3451), 1, + ACTIONS(3423), 1, anon_sym_COLON_COLON, - ACTIONS(3455), 1, + ACTIONS(3427), 1, anon_sym_LT2, - ACTIONS(3457), 1, + ACTIONS(3429), 1, anon_sym_AT, - STATE(1375), 1, + STATE(1346), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3419), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3453), 2, + ACTIONS(3425), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3441), 9, + ACTIONS(3413), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114844,25 +111627,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [49166] = 9, - ACTIONS(2574), 1, + [47686] = 9, + ACTIONS(2544), 1, anon_sym_COLON, - ACTIONS(3449), 1, + ACTIONS(3421), 1, anon_sym_BANG, - ACTIONS(3455), 1, + ACTIONS(3427), 1, anon_sym_LT2, - ACTIONS(3459), 1, + ACTIONS(3431), 1, anon_sym_LPAREN, - ACTIONS(3461), 1, + ACTIONS(3433), 1, anon_sym_COLON_COLON, - STATE(1375), 1, + STATE(1346), 1, sym_type_arguments, - STATE(1400), 1, + STATE(1349), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 12, + ACTIONS(2540), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114875,57 +111658,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49206] = 4, - ACTIONS(2592), 1, - anon_sym_COLON, + [47726] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2590), 15, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2598), 2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, anon_sym_LT2, - anon_sym_PIPE, - [49235] = 4, - ACTIONS(2600), 1, + ACTIONS(2602), 2, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2604), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2598), 15, + anon_sym_EQ, + ACTIONS(2604), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, - anon_sym_LT2, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49264] = 4, + [47755] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -114950,46 +111708,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49293] = 8, - ACTIONS(2588), 1, - anon_sym_COLON, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3461), 1, - anon_sym_COLON_COLON, - STATE(1375), 1, - sym_type_arguments, - STATE(1400), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2586), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [49330] = 4, + [47784] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 2, + ACTIONS(2582), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2602), 2, + ACTIONS(2586), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2604), 14, + ACTIONS(2588), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115004,7 +111733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49359] = 4, + [47813] = 4, ACTIONS(2608), 1, anon_sym_COLON, ACTIONS(3), 2, @@ -115029,86 +111758,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [49388] = 8, + [47842] = 4, ACTIONS(2584), 1, anon_sym_COLON, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3461), 1, - anon_sym_COLON_COLON, - STATE(1375), 1, - sym_type_arguments, - STATE(1400), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 12, + ACTIONS(2588), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2582), 15, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [49425] = 4, + [47871] = 8, + ACTIONS(2558), 1, + anon_sym_COLON, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3433), 1, + anon_sym_COLON_COLON, + STATE(1346), 1, + sym_type_arguments, + STATE(1349), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2630), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2632), 14, + ACTIONS(2556), 12, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [49454] = 4, - ACTIONS(2628), 1, + [47908] = 8, + ACTIONS(2554), 1, anon_sym_COLON, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3433), 1, + anon_sym_COLON_COLON, + STATE(1346), 1, + sym_type_arguments, + STATE(1349), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2632), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2626), 15, + ACTIONS(2552), 12, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_LT2, anon_sym_PIPE, - [49483] = 4, + [47945] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -115133,65 +111866,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49512] = 3, + [47974] = 4, + ACTIONS(2600), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2604), 15, + ACTIONS(2604), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2598), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_PLUS, anon_sym_as, - anon_sym_if, - anon_sym_BANG, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, + anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [49538] = 3, + [48003] = 4, + ACTIONS(2592), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2612), 15, + ACTIONS(2596), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2590), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_PLUS, anon_sym_as, - anon_sym_if, - anon_sym_BANG, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, + anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [49564] = 6, - ACTIONS(3455), 1, + [48032] = 6, + ACTIONS(3427), 1, anon_sym_LT2, - ACTIONS(3459), 1, + ACTIONS(3431), 1, anon_sym_LPAREN, - STATE(1386), 1, + STATE(1347), 1, sym_type_arguments, - STATE(1403), 1, + STATE(1358), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 13, + ACTIONS(2578), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115205,56 +111942,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49596] = 17, - ACTIONS(3465), 1, + [48064] = 17, + ACTIONS(3437), 1, anon_sym_const, - ACTIONS(3467), 1, + ACTIONS(3439), 1, anon_sym_enum, - ACTIONS(3469), 1, + ACTIONS(3441), 1, anon_sym_fn, - ACTIONS(3471), 1, + ACTIONS(3443), 1, anon_sym_mod, - ACTIONS(3473), 1, + ACTIONS(3445), 1, anon_sym_static, - ACTIONS(3475), 1, + ACTIONS(3447), 1, anon_sym_struct, - ACTIONS(3477), 1, + ACTIONS(3449), 1, anon_sym_trait, - ACTIONS(3479), 1, + ACTIONS(3451), 1, anon_sym_type, - ACTIONS(3481), 1, + ACTIONS(3453), 1, anon_sym_union, - ACTIONS(3483), 1, + ACTIONS(3455), 1, anon_sym_unsafe, - ACTIONS(3485), 1, + ACTIONS(3457), 1, anon_sym_use, - ACTIONS(3487), 1, + ACTIONS(3459), 1, anon_sym_extern, - STATE(1527), 1, + STATE(1506), 1, sym_extern_modifier, - STATE(1564), 1, + STATE(1551), 1, aux_sym_function_modifiers_repeat1, - STATE(2433), 1, + STATE(2412), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3463), 2, + ACTIONS(3435), 2, anon_sym_async, anon_sym_default, - [49650] = 6, - ACTIONS(3455), 1, + [48118] = 6, + ACTIONS(3427), 1, anon_sym_LT2, - ACTIONS(3459), 1, + ACTIONS(3431), 1, anon_sym_LPAREN, - STATE(1386), 1, + STATE(1347), 1, sym_type_arguments, - STATE(1403), 1, + STATE(1358), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 13, + ACTIONS(2614), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115268,14 +112005,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49682] = 3, + [48150] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2594), 2, + ACTIONS(2602), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2596), 15, + ACTIONS(2604), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115291,76 +112028,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [49708] = 6, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - STATE(1386), 1, - sym_type_arguments, - STATE(1403), 1, - sym_parameters, + [48176] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2634), 13, + ACTIONS(2610), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2612), 15, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [49740] = 17, - ACTIONS(3489), 1, + [48202] = 17, + ACTIONS(3461), 1, anon_sym_const, - ACTIONS(3491), 1, + ACTIONS(3463), 1, anon_sym_enum, - ACTIONS(3493), 1, + ACTIONS(3465), 1, anon_sym_fn, - ACTIONS(3495), 1, + ACTIONS(3467), 1, anon_sym_mod, - ACTIONS(3497), 1, + ACTIONS(3469), 1, anon_sym_static, - ACTIONS(3499), 1, + ACTIONS(3471), 1, anon_sym_struct, - ACTIONS(3501), 1, + ACTIONS(3473), 1, anon_sym_trait, - ACTIONS(3503), 1, + ACTIONS(3475), 1, anon_sym_type, - ACTIONS(3505), 1, + ACTIONS(3477), 1, anon_sym_union, - ACTIONS(3507), 1, + ACTIONS(3479), 1, anon_sym_unsafe, - ACTIONS(3509), 1, + ACTIONS(3481), 1, anon_sym_use, - ACTIONS(3511), 1, + ACTIONS(3483), 1, anon_sym_extern, - STATE(1547), 1, + STATE(1513), 1, sym_extern_modifier, - STATE(1564), 1, + STATE(1551), 1, aux_sym_function_modifiers_repeat1, - STATE(2571), 1, + STATE(2542), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3463), 2, + ACTIONS(3435), 2, anon_sym_async, anon_sym_default, - [49794] = 3, - ACTIONS(622), 1, + [48256] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2586), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2588), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_as, + anon_sym_if, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_in, + anon_sym_PIPE, + [48282] = 6, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3431), 1, + anon_sym_LPAREN, + STATE(1347), 1, + sym_type_arguments, + STATE(1358), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2564), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [48314] = 3, + ACTIONS(468), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(620), 15, + ACTIONS(466), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115376,37 +112159,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [49819] = 7, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3513), 1, - anon_sym_COLON_COLON, + [48339] = 3, + ACTIONS(464), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3441), 9, + ACTIONS(462), 15, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, anon_sym_if, + anon_sym_where, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [49852] = 2, + [48364] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 16, + ACTIONS(2590), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115423,13 +112202,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [49875] = 3, - ACTIONS(588), 1, + [48387] = 3, + ACTIONS(502), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(586), 15, + ACTIONS(500), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115445,13 +112224,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [49900] = 3, - ACTIONS(3515), 1, + [48412] = 3, + ACTIONS(3485), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3189), 15, + ACTIONS(3167), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -115467,13 +112246,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [49925] = 3, - ACTIONS(576), 1, + [48437] = 3, + ACTIONS(448), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(574), 15, + ACTIONS(446), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115489,33 +112268,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [49950] = 3, - ACTIONS(674), 1, - anon_sym_EQ, + [48462] = 7, + ACTIONS(3415), 1, + anon_sym_LPAREN, + ACTIONS(3421), 1, + anon_sym_BANG, + ACTIONS(3487), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(672), 15, + ACTIONS(3419), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3425), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3413), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [48495] = 3, + ACTIONS(2712), 1, anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2710), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, - anon_sym_if, + anon_sym_for, anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_in, + anon_sym_COLON_COLON, + anon_sym_PIPE, + [48519] = 13, + ACTIONS(3413), 1, anon_sym_PIPE, - [49975] = 2, + ACTIONS(3417), 1, + anon_sym_LBRACE, + ACTIONS(3419), 1, + anon_sym_COLON, + ACTIONS(3421), 1, + anon_sym_BANG, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3429), 1, + anon_sym_AT, + ACTIONS(3489), 1, + anon_sym_LPAREN, + ACTIONS(3491), 1, + anon_sym_COLON_COLON, + STATE(1346), 1, + sym_type_arguments, + STATE(1349), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3425), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2540), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [48563] = 3, + ACTIONS(2809), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3215), 15, + ACTIONS(3169), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -115530,34 +112367,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [49997] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2800), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - sym_mutable_specifier, - anon_sym_PIPE, - sym_self, - [50019] = 3, - ACTIONS(2748), 1, + [48587] = 3, + ACTIONS(2646), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2746), 14, + ACTIONS(2644), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115572,13 +112388,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [50043] = 3, - ACTIONS(2808), 1, + [48611] = 3, + ACTIONS(3493), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3191), 14, + ACTIONS(3169), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -115593,11 +112409,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [50067] = 2, + [48635] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3185), 15, + ACTIONS(3153), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -115613,34 +112429,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [50089] = 3, - ACTIONS(2678), 1, + [48657] = 14, + ACTIONS(2540), 1, + anon_sym_PLUS, + ACTIONS(3413), 1, + anon_sym_PIPE, + ACTIONS(3417), 1, + anon_sym_LBRACE, + ACTIONS(3419), 1, anon_sym_COLON, + ACTIONS(3421), 1, + anon_sym_BANG, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3429), 1, + anon_sym_AT, + ACTIONS(3495), 1, + anon_sym_LPAREN, + ACTIONS(3500), 1, + anon_sym_COLON_COLON, + STATE(1346), 1, + sym_type_arguments, + STATE(1349), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2676), 14, - anon_sym_SEMI, + ACTIONS(3425), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3497), 2, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [50113] = 3, - ACTIONS(3517), 1, - anon_sym_COLON_COLON, + [48703] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3191), 14, + ACTIONS(3159), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -115655,75 +112480,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [50137] = 13, - ACTIONS(3441), 1, - anon_sym_PIPE, - ACTIONS(3445), 1, + sym_identifier, + [48725] = 13, + ACTIONS(3417), 1, anon_sym_LBRACE, - ACTIONS(3447), 1, - anon_sym_COLON, - ACTIONS(3449), 1, + ACTIONS(3421), 1, anon_sym_BANG, - ACTIONS(3455), 1, + ACTIONS(3427), 1, anon_sym_LT2, - ACTIONS(3457), 1, + ACTIONS(3429), 1, anon_sym_AT, - ACTIONS(3519), 1, + ACTIONS(3497), 1, + anon_sym_RBRACK, + ACTIONS(3502), 1, anon_sym_LPAREN, - ACTIONS(3521), 1, + ACTIONS(3504), 1, anon_sym_COLON_COLON, - STATE(1375), 1, + STATE(1346), 1, sym_type_arguments, - STATE(1400), 1, + STATE(1349), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, + ACTIONS(2540), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3413), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3425), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2570), 3, + [48769] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3163), 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, + [48791] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3003), 15, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [50181] = 13, - ACTIONS(3445), 1, anon_sym_LBRACE, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3457), 1, - anon_sym_AT, - ACTIONS(3523), 1, - anon_sym_LPAREN, - ACTIONS(3525), 1, + anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(3528), 1, - anon_sym_COLON_COLON, - STATE(1375), 1, - sym_type_arguments, - STATE(1400), 1, - sym_parameters, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + sym_mutable_specifier, + anon_sym_PIPE, + sym_self, + [48813] = 3, + ACTIONS(2642), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 2, + ACTIONS(2640), 14, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, - ACTIONS(3441), 2, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_PIPE, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [50225] = 3, - ACTIONS(2778), 1, + [48837] = 3, + ACTIONS(2670), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2776), 14, + ACTIONS(2668), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115738,13 +112594,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [50249] = 3, - ACTIONS(2732), 1, + [48861] = 3, + ACTIONS(2650), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2730), 14, + ACTIONS(2648), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115759,93 +112615,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [50273] = 14, - ACTIONS(2570), 1, - anon_sym_PLUS, - ACTIONS(3441), 1, - anon_sym_PIPE, - ACTIONS(3445), 1, - anon_sym_LBRACE, - ACTIONS(3447), 1, - anon_sym_COLON, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3457), 1, - anon_sym_AT, - ACTIONS(3530), 1, - anon_sym_LPAREN, - ACTIONS(3532), 1, - anon_sym_COLON_COLON, - STATE(1375), 1, - sym_type_arguments, - STATE(1400), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3525), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [50319] = 2, + [48885] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3209), 15, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - [50341] = 3, - ACTIONS(2752), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2750), 14, + ACTIONS(2684), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, - anon_sym_COLON_COLON, anon_sym_PIPE, - [50365] = 4, - ACTIONS(2616), 1, - anon_sym_COLON, - ACTIONS(3534), 1, - anon_sym_COLON_COLON, + [48906] = 3, + ACTIONS(3506), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 12, + ACTIONS(2672), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -115853,69 +112654,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50390] = 2, + [48929] = 3, + ACTIONS(2399), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2724), 14, + ACTIONS(2401), 13, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50411] = 14, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3461), 1, - anon_sym_COLON_COLON, - ACTIONS(3536), 1, + [48952] = 4, + ACTIONS(2566), 1, anon_sym_COLON, - ACTIONS(3538), 1, - anon_sym_EQ, - ACTIONS(3540), 1, - anon_sym_COMMA, - ACTIONS(3542), 1, - anon_sym_GT, - STATE(1375), 1, - sym_type_arguments, - STATE(1400), 1, - sym_parameters, - STATE(2015), 1, - sym_trait_bounds, - STATE(2017), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2570), 2, - anon_sym_PLUS, - anon_sym_as, - [50456] = 3, - ACTIONS(3544), 1, - anon_sym_DASH_GT, + ACTIONS(3508), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2754), 13, + ACTIONS(2564), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -115923,13 +112695,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50479] = 3, - ACTIONS(3546), 1, + [48977] = 3, + ACTIONS(3510), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2690), 13, + ACTIONS(2738), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115943,33 +112715,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50502] = 5, - ACTIONS(3552), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3550), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3548), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [50529] = 2, + [49000] = 3, + ACTIONS(3512), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2742), 14, + ACTIONS(2744), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115981,60 +112733,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50550] = 4, - ACTIONS(2616), 1, - anon_sym_COLON, - ACTIONS(3193), 1, - anon_sym_COLON_COLON, + [49023] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 12, + ACTIONS(2706), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [50575] = 4, - ACTIONS(2636), 1, anon_sym_COLON, - ACTIONS(3556), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2634), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50600] = 4, - ACTIONS(3560), 1, + [49044] = 4, + ACTIONS(3516), 1, anon_sym_pat, - STATE(593), 1, + STATE(578), 1, sym_fragment_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3558), 12, + ACTIONS(3514), 12, anon_sym_block, anon_sym_expr, anon_sym_ident, @@ -116047,54 +112775,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_tt, anon_sym_ty, anon_sym_vis, - [50625] = 4, - ACTIONS(2624), 1, - anon_sym_COLON, - ACTIONS(3556), 1, - anon_sym_COLON_COLON, + [49069] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 12, + ACTIONS(2728), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50650] = 3, - ACTIONS(2385), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2387), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50673] = 3, - ACTIONS(3562), 1, + [49090] = 3, + ACTIONS(3518), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2706), 13, + ACTIONS(2722), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116108,13 +112814,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50696] = 3, - ACTIONS(3564), 1, + [49113] = 3, + ACTIONS(3520), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2766), 13, + ACTIONS(2694), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116128,13 +112834,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50719] = 3, - ACTIONS(3566), 1, + [49136] = 3, + ACTIONS(3522), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2712), 13, + ACTIONS(2678), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116148,10 +112854,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50742] = 4, + [49159] = 4, ACTIONS(2616), 1, anon_sym_COLON, - ACTIONS(3556), 1, + ACTIONS(3508), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -116169,58 +112875,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50767] = 3, - ACTIONS(3568), 1, - anon_sym_DASH_GT, + [49184] = 5, + ACTIONS(3528), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2760), 13, + ACTIONS(3526), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3530), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3524), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_in, anon_sym_PIPE, - [50790] = 2, + [49211] = 4, + ACTIONS(2580), 1, + anon_sym_COLON, + ACTIONS(3508), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2702), 14, + ACTIONS(2578), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50811] = 3, - ACTIONS(3570), 1, - anon_sym_DASH_GT, + [49236] = 4, + ACTIONS(2580), 1, + anon_sym_COLON, + ACTIONS(3171), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2718), 13, + ACTIONS(2578), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -116228,11 +112939,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50834] = 2, + [49261] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2738), 14, + ACTIONS(2636), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116247,30 +112958,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50855] = 2, + [49282] = 4, + ACTIONS(2580), 1, + anon_sym_COLON, + ACTIONS(3532), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2772), 14, + ACTIONS(2578), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50876] = 2, + [49307] = 14, + ACTIONS(3421), 1, + anon_sym_BANG, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3433), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_COLON, + ACTIONS(3536), 1, + anon_sym_EQ, + ACTIONS(3538), 1, + anon_sym_COMMA, + ACTIONS(3540), 1, + anon_sym_GT, + STATE(1346), 1, + sym_type_arguments, + STATE(1349), 1, + sym_parameters, + STATE(1901), 1, + sym_trait_bounds, + STATE(1905), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2540), 2, + anon_sym_PLUS, + anon_sym_as, + [49352] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2911), 13, + ACTIONS(2690), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116282,13 +113026,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [50896] = 2, + [49373] = 3, + ACTIONS(3542), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3023), 13, + ACTIONS(2732), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116302,11 +113049,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50916] = 2, + [49396] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3011), 13, + ACTIONS(2766), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116320,11 +113067,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50936] = 2, + [49416] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2995), 13, + ACTIONS(2578), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116338,29 +113085,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50956] = 2, + [49436] = 3, + ACTIONS(3546), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2999), 13, + ACTIONS(3544), 12, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50976] = 2, + [49458] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2810), 13, + ACTIONS(2758), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116374,11 +113122,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50996] = 2, + [49478] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2947), 13, + ACTIONS(2999), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116392,11 +113140,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51016] = 2, + [49498] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2991), 13, + ACTIONS(2789), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116410,51 +113158,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51036] = 3, - ACTIONS(3574), 1, - anon_sym_EQ, + [49518] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3572), 12, + ACTIONS(2953), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [51058] = 2, + [49538] = 4, + ACTIONS(3419), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 13, + ACTIONS(3425), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3413), 10, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_in, anon_sym_PIPE, - [51078] = 3, + [49562] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 2, + ACTIONS(2594), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2632), 11, + ACTIONS(2596), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116466,31 +113215,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [51100] = 4, - ACTIONS(3447), 1, - anon_sym_EQ, + [49584] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3441), 10, + ACTIONS(2819), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, + anon_sym_GT, anon_sym_PIPE, - [51124] = 2, + [49604] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2979), 13, + ACTIONS(2797), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116504,11 +113251,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51144] = 2, + [49624] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 13, + ACTIONS(2811), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116522,29 +113269,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51164] = 2, + [49644] = 3, + ACTIONS(3550), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3023), 13, + ACTIONS(3548), 12, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51184] = 2, + [49666] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2971), 13, + ACTIONS(2977), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116558,11 +113306,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51204] = 2, + [49686] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 13, + ACTIONS(2774), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116576,11 +113324,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51224] = 2, + [49706] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3007), 13, + ACTIONS(2815), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116594,11 +113342,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51244] = 2, + [49726] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2935), 13, + ACTIONS(2774), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116612,11 +113360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51264] = 2, + [49746] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2826), 13, + ACTIONS(2945), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116630,11 +113378,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51284] = 2, + [49766] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2634), 13, + ACTIONS(2961), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116648,11 +113396,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51304] = 2, + [49786] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2792), 13, + ACTIONS(2823), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116666,11 +113414,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51324] = 2, + [49806] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2983), 13, + ACTIONS(2827), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116684,30 +113432,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51344] = 3, - ACTIONS(3578), 1, - anon_sym_EQ, + [49826] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 12, + ACTIONS(2965), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [51366] = 2, + [49846] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3003), 13, + ACTIONS(2981), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116721,11 +113468,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51386] = 2, + [49866] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3015), 13, + ACTIONS(2614), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116739,11 +113486,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51406] = 2, + [49886] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2931), 13, + ACTIONS(2941), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -116757,71 +113504,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [51426] = 3, - ACTIONS(544), 1, - anon_sym_EQ, + [49906] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(542), 11, + ACTIONS(2899), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_in, anon_sym_PIPE, - [51447] = 5, - ACTIONS(2610), 1, - anon_sym_COLON, - ACTIONS(3580), 1, - anon_sym_LPAREN, + [49926] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 5, + ACTIONS(2564), 13, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2612), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [51472] = 5, - ACTIONS(2594), 1, - anon_sym_COLON, + [49946] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 3, + ACTIONS(3552), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2598), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3583), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2596), 5, + ACTIONS(2604), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51497] = 3, - ACTIONS(550), 1, + [49969] = 3, + ACTIONS(412), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(548), 11, + ACTIONS(410), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116833,266 +113577,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51518] = 4, - ACTIONS(3590), 1, - anon_sym_COLON_COLON, + [49990] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3588), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3586), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51541] = 5, - ACTIONS(2630), 1, - anon_sym_COLON, - ACTIONS(3592), 1, + ACTIONS(3555), 2, anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2626), 5, - anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(2590), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2632), 5, + ACTIONS(2596), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51566] = 4, - ACTIONS(3599), 1, - anon_sym_COLON_COLON, + [50013] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3597), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3595), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51589] = 5, - ACTIONS(2602), 1, - anon_sym_COLON, - ACTIONS(3601), 1, + ACTIONS(3558), 2, anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2598), 5, - anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(2606), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2604), 5, + ACTIONS(2612), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51614] = 4, - ACTIONS(3517), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3597), 2, + [50036] = 5, + ACTIONS(2586), 1, anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3595), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51637] = 4, - ACTIONS(3604), 1, - anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3597), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3595), 9, - anon_sym_SEMI, + ACTIONS(2582), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3561), 3, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, anon_sym_COMMA, - anon_sym_in, + ACTIONS(2588), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51660] = 4, + [50061] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3580), 2, + ACTIONS(3561), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2606), 4, + ACTIONS(2582), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2612), 6, + ACTIONS(2588), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51683] = 4, + [50084] = 5, + ACTIONS(2602), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3592), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2626), 4, - anon_sym_SEMI, + ACTIONS(2598), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2632), 6, - anon_sym_BANG, + ACTIONS(3552), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2604), 5, + anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51706] = 4, + [50109] = 5, + ACTIONS(2610), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3601), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2598), 4, - anon_sym_SEMI, + ACTIONS(2606), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2604), 6, - anon_sym_BANG, + ACTIONS(3558), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2612), 5, + anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51729] = 4, + [50134] = 5, + ACTIONS(2594), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3583), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2590), 4, - anon_sym_SEMI, + ACTIONS(2590), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2596), 6, - anon_sym_BANG, + ACTIONS(3555), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2596), 5, + anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51752] = 5, - ACTIONS(2610), 1, + [50159] = 5, + ACTIONS(2594), 1, anon_sym_COLON, + ACTIONS(3555), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 3, + ACTIONS(2590), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3580), 3, + ACTIONS(2596), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [50184] = 5, + ACTIONS(2602), 1, + anon_sym_COLON, + ACTIONS(3552), 1, anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2598), 5, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_COMMA, - ACTIONS(2612), 5, + anon_sym_LT2, + ACTIONS(2604), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51777] = 5, - ACTIONS(2594), 1, + [50209] = 5, + ACTIONS(2610), 1, anon_sym_COLON, - ACTIONS(3583), 1, + ACTIONS(3558), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 5, + ACTIONS(2606), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2596), 5, + ACTIONS(2612), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51802] = 3, - ACTIONS(556), 1, - anon_sym_EQ, + [50234] = 4, + ACTIONS(3568), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(554), 11, + ACTIONS(3566), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3564), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51823] = 4, - ACTIONS(3590), 1, + [50257] = 4, + ACTIONS(3493), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3608), 2, + ACTIONS(3566), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3606), 9, + ACTIONS(3564), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117102,36 +113812,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51846] = 5, - ACTIONS(2630), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2626), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3592), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2632), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [51871] = 4, - ACTIONS(3599), 1, + [50280] = 4, + ACTIONS(3574), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3612), 2, + ACTIONS(3572), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3610), 9, + ACTIONS(3570), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117141,16 +113831,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51894] = 4, - ACTIONS(3517), 1, + [50303] = 4, + ACTIONS(3580), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3612), 2, + ACTIONS(3578), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3610), 9, + ACTIONS(3576), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117160,16 +113850,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51917] = 4, - ACTIONS(3604), 1, + [50326] = 4, + ACTIONS(3493), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3612), 2, + ACTIONS(3578), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3610), 9, + ACTIONS(3576), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117179,33 +113869,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51940] = 5, - ACTIONS(2602), 1, - anon_sym_COLON, + [50349] = 4, + ACTIONS(3568), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3601), 3, - anon_sym_LPAREN, + ACTIONS(3578), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3576), 9, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, anon_sym_COMMA, - ACTIONS(2604), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_in, anon_sym_PIPE, - [51965] = 3, - ACTIONS(3616), 1, + [50372] = 3, + ACTIONS(416), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3614), 10, + ACTIONS(414), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117214,34 +113903,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [51985] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3620), 1, - sym_crate, - STATE(1559), 1, - sym_string_literal, + [50393] = 4, + ACTIONS(3574), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3618), 8, + ACTIONS(3584), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3582), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52009] = 3, - ACTIONS(3624), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [50416] = 3, + ACTIONS(408), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3622), 10, + ACTIONS(406), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117250,78 +113940,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [52029] = 9, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, + [50437] = 5, + ACTIONS(2586), 1, + anon_sym_COLON, + ACTIONS(3561), 1, anon_sym_LPAREN, - ACTIONS(3461), 1, - anon_sym_COLON_COLON, - ACTIONS(3626), 1, - anon_sym_for, - STATE(1375), 1, - sym_type_arguments, - STATE(1400), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 4, - anon_sym_SEMI, + ACTIONS(2582), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_where, - [52061] = 9, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3455), 1, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3461), 1, + ACTIONS(2588), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [50462] = 4, + ACTIONS(3580), 1, anon_sym_COLON_COLON, - ACTIONS(3628), 1, - anon_sym_for, - STATE(1375), 1, - sym_type_arguments, - STATE(1400), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52093] = 3, - ACTIONS(3632), 1, + ACTIONS(3566), 2, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3630), 10, + ACTIONS(3564), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52113] = 3, - ACTIONS(3636), 1, + [50485] = 3, + ACTIONS(3419), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3634), 10, + ACTIONS(3413), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117332,13 +113999,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52133] = 3, - ACTIONS(3640), 1, + [50505] = 3, + ACTIONS(3588), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3638), 10, + ACTIONS(3586), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117349,13 +114016,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52153] = 3, - ACTIONS(3644), 1, + [50525] = 3, + ACTIONS(3592), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3642), 10, + ACTIONS(3590), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117366,13 +114033,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52173] = 3, - ACTIONS(3648), 1, + [50545] = 3, + ACTIONS(3596), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3646), 10, + ACTIONS(3594), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117383,13 +114050,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52193] = 3, - ACTIONS(3652), 1, + [50565] = 3, + ACTIONS(3600), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3650), 10, + ACTIONS(3598), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117400,33 +114067,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52213] = 6, - ACTIONS(3654), 1, - anon_sym_COLON, - ACTIONS(3656), 1, - anon_sym_BANG, - ACTIONS(3658), 1, - anon_sym_COLON_COLON, + [50585] = 5, + ACTIONS(706), 1, + aux_sym_string_literal_token1, + ACTIONS(3604), 1, + sym_crate, + STATE(1556), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2642), 6, + ACTIONS(3602), 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, - [52239] = 3, - ACTIONS(3447), 1, + [50609] = 3, + ACTIONS(3578), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 10, + ACTIONS(3576), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117437,36 +114103,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52259] = 9, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3461), 1, - anon_sym_COLON_COLON, - ACTIONS(3660), 1, - anon_sym_for, - STATE(1375), 1, - sym_type_arguments, - STATE(1400), 1, - sym_parameters, + [50629] = 3, + ACTIONS(3608), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 4, + ACTIONS(3606), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52291] = 3, - ACTIONS(3664), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [50649] = 3, + ACTIONS(3612), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3662), 10, + ACTIONS(3610), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117477,13 +114137,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52311] = 3, - ACTIONS(3668), 1, + [50669] = 3, + ACTIONS(460), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3666), 10, + ACTIONS(458), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117494,40 +114154,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52331] = 9, - ACTIONS(3449), 1, + [50689] = 9, + ACTIONS(3421), 1, anon_sym_BANG, - ACTIONS(3455), 1, + ACTIONS(3427), 1, anon_sym_LT2, - ACTIONS(3459), 1, + ACTIONS(3431), 1, anon_sym_LPAREN, - ACTIONS(3461), 1, + ACTIONS(3433), 1, anon_sym_COLON_COLON, - ACTIONS(3670), 1, + ACTIONS(3614), 1, anon_sym_for, - STATE(1375), 1, + STATE(1346), 1, + sym_type_arguments, + STATE(1349), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2540), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [50721] = 9, + ACTIONS(3421), 1, + anon_sym_BANG, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3433), 1, + anon_sym_COLON_COLON, + ACTIONS(3616), 1, + anon_sym_for, + STATE(1346), 1, sym_type_arguments, - STATE(1400), 1, + STATE(1349), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 4, + ACTIONS(2540), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52363] = 5, - ACTIONS(736), 1, + [50753] = 5, + ACTIONS(706), 1, aux_sym_string_literal_token1, - ACTIONS(3672), 1, + ACTIONS(3618), 1, sym_crate, - STATE(1559), 1, + STATE(1556), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3618), 8, + ACTIONS(3602), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -117536,36 +114219,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52387] = 9, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3461), 1, - anon_sym_COLON_COLON, - ACTIONS(3674), 1, - anon_sym_for, - STATE(1375), 1, - sym_type_arguments, - STATE(1400), 1, - sym_parameters, + [50777] = 3, + ACTIONS(3622), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 4, + ACTIONS(3620), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52419] = 3, - ACTIONS(3678), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [50797] = 3, + ACTIONS(3626), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3676), 10, + ACTIONS(3624), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117576,56 +114253,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52439] = 9, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3461), 1, - anon_sym_COLON_COLON, - ACTIONS(3680), 1, - anon_sym_for, - STATE(1375), 1, - sym_type_arguments, - STATE(1400), 1, - sym_parameters, + [50817] = 3, + ACTIONS(3630), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 4, + ACTIONS(3628), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52471] = 6, - ACTIONS(3654), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(3656), 1, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [50837] = 6, + ACTIONS(3632), 1, + anon_sym_COLON, + ACTIONS(3634), 1, anon_sym_BANG, - ACTIONS(3682), 1, + ACTIONS(3636), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, + ACTIONS(3530), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2642), 6, + ACTIONS(2572), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52497] = 3, - ACTIONS(3686), 1, + [50863] = 9, + ACTIONS(3421), 1, + anon_sym_BANG, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3433), 1, + anon_sym_COLON_COLON, + ACTIONS(3638), 1, + anon_sym_for, + STATE(1346), 1, + sym_type_arguments, + STATE(1349), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2540), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [50895] = 3, + ACTIONS(3566), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3684), 10, + ACTIONS(3564), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117636,13 +114330,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52517] = 3, - ACTIONS(3690), 1, + [50915] = 9, + ACTIONS(3421), 1, + anon_sym_BANG, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3433), 1, + anon_sym_COLON_COLON, + ACTIONS(3640), 1, + anon_sym_for, + STATE(1346), 1, + sym_type_arguments, + STATE(1349), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2540), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [50947] = 3, + ACTIONS(3644), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3688), 10, + ACTIONS(3642), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117653,13 +114370,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52537] = 3, - ACTIONS(560), 1, + [50967] = 3, + ACTIONS(3648), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(558), 10, + ACTIONS(3646), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117670,13 +114387,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52557] = 3, - ACTIONS(3694), 1, + [50987] = 3, + ACTIONS(3652), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3692), 10, + ACTIONS(3650), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117687,53 +114404,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52577] = 9, - ACTIONS(3449), 1, + [51007] = 9, + ACTIONS(3421), 1, anon_sym_BANG, - ACTIONS(3455), 1, + ACTIONS(3427), 1, anon_sym_LT2, - ACTIONS(3459), 1, + ACTIONS(3431), 1, anon_sym_LPAREN, - ACTIONS(3461), 1, + ACTIONS(3433), 1, anon_sym_COLON_COLON, - ACTIONS(3696), 1, + ACTIONS(3654), 1, anon_sym_for, - STATE(1375), 1, + STATE(1346), 1, sym_type_arguments, - STATE(1400), 1, + STATE(1349), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 4, + ACTIONS(2540), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52609] = 3, - ACTIONS(3612), 1, - anon_sym_EQ, + [51039] = 9, + ACTIONS(3421), 1, + anon_sym_BANG, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3433), 1, + anon_sym_COLON_COLON, + ACTIONS(3656), 1, + anon_sym_for, + STATE(1346), 1, + sym_type_arguments, + STATE(1349), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3610), 10, + ACTIONS(2540), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [52629] = 3, - ACTIONS(3700), 1, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [51071] = 9, + ACTIONS(3421), 1, + anon_sym_BANG, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3433), 1, + anon_sym_COLON_COLON, + ACTIONS(3658), 1, + anon_sym_for, + STATE(1346), 1, + sym_type_arguments, + STATE(1349), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2540), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [51103] = 3, + ACTIONS(3662), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3698), 10, + ACTIONS(3660), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117744,32 +114490,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52649] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3702), 1, - sym_crate, - STATE(1559), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3618), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52673] = 3, - ACTIONS(3706), 1, + [51123] = 3, + ACTIONS(3666), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3704), 10, + ACTIONS(3664), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117780,13 +114507,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52693] = 3, - ACTIONS(3710), 1, + [51143] = 3, + ACTIONS(3670), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3708), 10, + ACTIONS(3668), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117797,32 +114524,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52713] = 5, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - ACTIONS(3712), 1, - sym_crate, - STATE(1559), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3618), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52737] = 3, - ACTIONS(3716), 1, + [51163] = 3, + ACTIONS(3674), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3714), 10, + ACTIONS(3672), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117833,13 +114541,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52757] = 3, - ACTIONS(3720), 1, + [51183] = 3, + ACTIONS(3678), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3718), 10, + ACTIONS(3676), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117850,13 +114558,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52777] = 3, - ACTIONS(3724), 1, + [51203] = 3, + ACTIONS(3682), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3722), 10, + ACTIONS(3680), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117867,13 +114575,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52797] = 3, - ACTIONS(3728), 1, + [51223] = 3, + ACTIONS(3686), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3726), 10, + ACTIONS(3684), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117884,13 +114592,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52817] = 3, - ACTIONS(3732), 1, + [51243] = 3, + ACTIONS(3690), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3730), 10, + ACTIONS(3688), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117901,13 +114609,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52837] = 3, - ACTIONS(3736), 1, + [51263] = 5, + ACTIONS(706), 1, + aux_sym_string_literal_token1, + ACTIONS(3692), 1, + sym_crate, + STATE(1556), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3602), 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, + [51287] = 3, + ACTIONS(3696), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3734), 10, + ACTIONS(3694), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117918,13 +114645,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52857] = 3, - ACTIONS(3740), 1, + [51307] = 3, + ACTIONS(3700), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3738), 10, + ACTIONS(3698), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117935,36 +114662,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52877] = 9, - ACTIONS(3449), 1, + [51327] = 9, + ACTIONS(3421), 1, anon_sym_BANG, - ACTIONS(3455), 1, + ACTIONS(3427), 1, anon_sym_LT2, - ACTIONS(3459), 1, + ACTIONS(3431), 1, anon_sym_LPAREN, - ACTIONS(3461), 1, + ACTIONS(3433), 1, anon_sym_COLON_COLON, - ACTIONS(3742), 1, + ACTIONS(3702), 1, anon_sym_for, - STATE(1375), 1, + STATE(1346), 1, sym_type_arguments, - STATE(1400), 1, + STATE(1349), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 4, + ACTIONS(2540), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52909] = 3, - ACTIONS(3746), 1, + [51359] = 3, + ACTIONS(3706), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3744), 10, + ACTIONS(3704), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117975,13 +114702,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52929] = 3, - ACTIONS(3597), 1, + [51379] = 3, + ACTIONS(3710), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3595), 10, + ACTIONS(3708), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -117992,13 +114719,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52949] = 3, - ACTIONS(3750), 1, + [51399] = 3, + ACTIONS(3714), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3748), 10, + ACTIONS(3712), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -118009,13 +114736,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52969] = 3, - ACTIONS(3754), 1, + [51419] = 5, + ACTIONS(706), 1, + aux_sym_string_literal_token1, + ACTIONS(3716), 1, + sym_crate, + STATE(1556), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3602), 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, + [51443] = 3, + ACTIONS(3720), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3718), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [51463] = 3, + ACTIONS(3724), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3752), 10, + ACTIONS(3722), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -118026,2067 +114789,2035 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52989] = 10, + [51483] = 6, + ACTIONS(3632), 1, + anon_sym_COLON, + ACTIONS(3634), 1, + anon_sym_BANG, + ACTIONS(3726), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3530), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2572), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [51509] = 6, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3449), 1, + anon_sym_trait, + ACTIONS(3728), 1, + anon_sym_impl, + STATE(70), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2572), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [51534] = 5, + ACTIONS(3634), 1, + anon_sym_BANG, + ACTIONS(3730), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3530), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2572), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [51557] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3732), 1, sym_identifier, - ACTIONS(3758), 1, + ACTIONS(3734), 1, anon_sym_RBRACE, - ACTIONS(3760), 1, + ACTIONS(3736), 1, anon_sym_COMMA, - ACTIONS(3762), 1, + ACTIONS(3738), 1, sym_crate, - STATE(2042), 1, - sym_field_declaration, - STATE(2385), 1, + STATE(2070), 1, + sym_enum_variant, + STATE(2449), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1586), 2, + STATE(1523), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53022] = 8, - ACTIONS(2333), 1, + [51590] = 8, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3764), 1, + ACTIONS(3740), 1, sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3742), 1, anon_sym_RBRACE, - ACTIONS(3768), 1, + ACTIONS(3744), 1, anon_sym_COMMA, - ACTIONS(3770), 1, + ACTIONS(3746), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1883), 2, + STATE(1826), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1916), 3, + STATE(1922), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [53051] = 7, - ACTIONS(3455), 1, + [51619] = 7, + ACTIONS(3427), 1, anon_sym_LT2, - ACTIONS(3459), 1, + ACTIONS(3431), 1, anon_sym_LPAREN, - ACTIONS(3772), 1, + ACTIONS(3748), 1, anon_sym_LBRACE, - STATE(1386), 1, + STATE(1347), 1, sym_type_arguments, - STATE(1403), 1, + STATE(1358), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 5, + ACTIONS(2578), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_COMMA, - [53078] = 5, - ACTIONS(3656), 1, - anon_sym_BANG, - ACTIONS(3682), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53101] = 10, + [51646] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3762), 1, + ACTIONS(3738), 1, sym_crate, - ACTIONS(3774), 1, + ACTIONS(3750), 1, sym_identifier, - ACTIONS(3776), 1, + ACTIONS(3752), 1, anon_sym_RBRACE, - ACTIONS(3778), 1, + ACTIONS(3754), 1, anon_sym_COMMA, - STATE(2080), 1, - sym_enum_variant, - STATE(2389), 1, + STATE(2106), 1, + sym_field_declaration, + STATE(2402), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1575), 2, + STATE(1536), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53134] = 6, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3477), 1, - anon_sym_trait, - ACTIONS(3780), 1, - anon_sym_impl, - STATE(154), 1, - sym_block, + [51679] = 9, + ACTIONS(3421), 1, + anon_sym_BANG, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3433), 1, + anon_sym_COLON_COLON, + ACTIONS(3756), 1, + anon_sym_EQ, + STATE(1349), 1, + sym_parameters, + STATE(1723), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2540), 3, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_GT, + [51710] = 5, + ACTIONS(3634), 1, + anon_sym_BANG, + ACTIONS(3636), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + ACTIONS(3530), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2572), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53159] = 9, - ACTIONS(3449), 1, + [51733] = 5, + ACTIONS(3634), 1, anon_sym_BANG, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3461), 1, + ACTIONS(3726), 1, anon_sym_COLON_COLON, - ACTIONS(3782), 1, - anon_sym_EQ, - STATE(1400), 1, - sym_parameters, - STATE(1775), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 3, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_GT, - [53190] = 10, + ACTIONS(3530), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2572), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [51756] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3762), 1, - sym_crate, - ACTIONS(3774), 1, + ACTIONS(3732), 1, sym_identifier, - ACTIONS(3784), 1, + ACTIONS(3738), 1, + sym_crate, + ACTIONS(3758), 1, anon_sym_RBRACE, - ACTIONS(3786), 1, + ACTIONS(3760), 1, anon_sym_COMMA, - STATE(1944), 1, + STATE(1936), 1, sym_enum_variant, - STATE(2389), 1, + STATE(2449), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1588), 2, + STATE(1549), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53223] = 10, + [51789] = 10, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3738), 1, + sym_crate, + ACTIONS(3750), 1, sym_identifier, ACTIONS(3762), 1, - sym_crate, - ACTIONS(3788), 1, anon_sym_RBRACE, - ACTIONS(3790), 1, + ACTIONS(3764), 1, anon_sym_COMMA, - STATE(2116), 1, + STATE(1923), 1, sym_field_declaration, - STATE(2385), 1, + STATE(2402), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1558), 2, + STATE(1544), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53256] = 5, - ACTIONS(3656), 1, - anon_sym_BANG, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, + [51822] = 5, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3766), 1, + sym_identifier, + STATE(71), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2642), 6, + ACTIONS(3768), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53279] = 5, - ACTIONS(3656), 1, - anon_sym_BANG, - ACTIONS(3658), 1, - anon_sym_COLON_COLON, + [51844] = 7, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3770), 1, + anon_sym_for, + STATE(1347), 1, + sym_type_arguments, + STATE(1358), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2642), 6, - anon_sym_async, + ACTIONS(2578), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [51870] = 10, + ACTIONS(3772), 1, + anon_sym_SEMI, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3776), 1, + anon_sym_LBRACE, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3780), 1, + anon_sym_LT, + STATE(898), 1, + sym_field_declaration_list, + STATE(1572), 1, + sym_type_parameters, + STATE(2033), 1, + sym_ordered_field_declaration_list, + STATE(2245), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [51902] = 7, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3782), 1, + anon_sym_for, + STATE(1347), 1, + sym_type_arguments, + STATE(1358), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [51928] = 9, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(3784), 1, + sym_identifier, + ACTIONS(3786), 1, anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53302] = 5, - ACTIONS(3794), 1, + ACTIONS(3788), 1, + anon_sym_GT, + ACTIONS(3790), 1, + sym_metavariable, + STATE(1806), 1, + sym_lifetime, + STATE(1973), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2309), 2, + sym_const_parameter, + sym_optional_type_parameter, + [51958] = 10, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3780), 1, + anon_sym_LT, + ACTIONS(3792), 1, anon_sym_SEMI, + ACTIONS(3794), 1, + anon_sym_LBRACE, + STATE(473), 1, + sym_field_declaration_list, + STATE(1578), 1, + sym_type_parameters, + STATE(2041), 1, + sym_ordered_field_declaration_list, + STATE(2231), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [51990] = 5, ACTIONS(3796), 1, + anon_sym_SEMI, + ACTIONS(3798), 1, anon_sym_LBRACE, - STATE(351), 1, + STATE(1015), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + ACTIONS(2572), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53324] = 7, - ACTIONS(2333), 1, + [52012] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3764), 1, + ACTIONS(3738), 1, + sym_crate, + ACTIONS(3750), 1, sym_identifier, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3798), 1, + ACTIONS(3800), 1, anon_sym_RBRACE, + STATE(2191), 1, + sym_field_declaration, + STATE(2402), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1883), 2, + STATE(1538), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2254), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [53350] = 7, - ACTIONS(3455), 1, + [52042] = 7, + ACTIONS(3427), 1, anon_sym_LT2, - ACTIONS(3459), 1, + ACTIONS(3431), 1, anon_sym_LPAREN, - ACTIONS(3800), 1, + ACTIONS(3802), 1, anon_sym_for, - STATE(1386), 1, + STATE(1347), 1, sym_type_arguments, - STATE(1403), 1, + STATE(1358), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2578), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53376] = 7, - ACTIONS(3455), 1, + [52068] = 7, + ACTIONS(3427), 1, anon_sym_LT2, - ACTIONS(3459), 1, + ACTIONS(3431), 1, anon_sym_LPAREN, - ACTIONS(3802), 1, + ACTIONS(3804), 1, anon_sym_for, - STATE(1386), 1, + STATE(1347), 1, sym_type_arguments, - STATE(1403), 1, + STATE(1358), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2578), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53402] = 5, - ACTIONS(3804), 1, - anon_sym_SEMI, - ACTIONS(3806), 1, - anon_sym_LBRACE, - STATE(953), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53424] = 9, + [52094] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3762), 1, - sym_crate, - ACTIONS(3774), 1, + ACTIONS(3732), 1, sym_identifier, - ACTIONS(3808), 1, + ACTIONS(3738), 1, + sym_crate, + ACTIONS(3806), 1, anon_sym_RBRACE, - STATE(2239), 1, + STATE(2141), 1, sym_enum_variant, - STATE(2389), 1, + STATE(2449), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1577), 2, + STATE(1534), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53454] = 9, + [52124] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3762), 1, + ACTIONS(3738), 1, sym_crate, - ACTIONS(3774), 1, + ACTIONS(3750), 1, sym_identifier, - ACTIONS(3810), 1, + ACTIONS(3808), 1, anon_sym_RBRACE, - STATE(2239), 1, - sym_enum_variant, - STATE(2389), 1, + STATE(2191), 1, + sym_field_declaration, + STATE(2402), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1577), 2, + STATE(1538), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53484] = 9, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3812), 1, - sym_identifier, - ACTIONS(3814), 1, - anon_sym_const, - ACTIONS(3816), 1, - anon_sym_GT, - ACTIONS(3818), 1, - sym_metavariable, - STATE(1810), 1, - sym_lifetime, - STATE(2095), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2282), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53514] = 7, - ACTIONS(3455), 1, + [52154] = 7, + ACTIONS(3427), 1, anon_sym_LT2, - ACTIONS(3459), 1, + ACTIONS(3431), 1, anon_sym_LPAREN, - ACTIONS(3820), 1, + ACTIONS(3810), 1, anon_sym_for, - STATE(1386), 1, + STATE(1347), 1, sym_type_arguments, - STATE(1403), 1, + STATE(1358), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2578), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53540] = 10, - ACTIONS(3822), 1, - anon_sym_SEMI, - ACTIONS(3824), 1, + [52180] = 10, + ACTIONS(3774), 1, anon_sym_LPAREN, - ACTIONS(3826), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(3780), 1, anon_sym_LT, - STATE(430), 1, + ACTIONS(3794), 1, + anon_sym_LBRACE, + ACTIONS(3812), 1, + anon_sym_SEMI, + STATE(375), 1, sym_field_declaration_list, - STATE(1617), 1, + STATE(1569), 1, sym_type_parameters, - STATE(2100), 1, + STATE(2035), 1, sym_ordered_field_declaration_list, - STATE(2306), 1, + STATE(2251), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53572] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3832), 1, - sym_identifier, - STATE(72), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3834), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53594] = 9, - ACTIONS(2329), 1, + [52212] = 9, + ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(3812), 1, + ACTIONS(3784), 1, sym_identifier, - ACTIONS(3814), 1, + ACTIONS(3786), 1, anon_sym_const, - ACTIONS(3818), 1, + ACTIONS(3790), 1, sym_metavariable, - ACTIONS(3836), 1, + ACTIONS(3814), 1, anon_sym_GT, - STATE(1810), 1, + STATE(1806), 1, sym_lifetime, - STATE(2095), 1, + STATE(1973), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2282), 2, + STATE(2309), 2, sym_const_parameter, sym_optional_type_parameter, - [53624] = 9, + [52242] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3762), 1, + ACTIONS(3738), 1, sym_crate, - ACTIONS(3774), 1, + ACTIONS(3750), 1, sym_identifier, - ACTIONS(3838), 1, + ACTIONS(3816), 1, anon_sym_RBRACE, - STATE(2239), 1, - sym_enum_variant, - STATE(2389), 1, + STATE(2191), 1, + sym_field_declaration, + STATE(2402), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1577), 2, + STATE(1538), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53654] = 5, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3840), 1, - anon_sym_SEMI, - STATE(468), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53676] = 9, - ACTIONS(2329), 1, + [52272] = 9, + ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(3812), 1, + ACTIONS(3784), 1, sym_identifier, - ACTIONS(3814), 1, + ACTIONS(3786), 1, anon_sym_const, - ACTIONS(3818), 1, + ACTIONS(3790), 1, sym_metavariable, - ACTIONS(3842), 1, - anon_sym_GT, - STATE(1810), 1, - sym_lifetime, - STATE(2095), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2282), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53706] = 9, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3812), 1, - sym_identifier, - ACTIONS(3814), 1, - anon_sym_const, ACTIONS(3818), 1, - sym_metavariable, - ACTIONS(3844), 1, anon_sym_GT, - STATE(1810), 1, + STATE(1806), 1, sym_lifetime, - STATE(2095), 1, + STATE(1973), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2282), 2, + STATE(2309), 2, sym_const_parameter, sym_optional_type_parameter, - [53736] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3846), 1, - anon_sym_move, - STATE(91), 1, - sym_block, + [52302] = 7, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3820), 1, + anon_sym_for, + STATE(1347), 1, + sym_type_arguments, + STATE(1358), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53758] = 7, - ACTIONS(2333), 1, + ACTIONS(2578), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52328] = 7, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3764), 1, + ACTIONS(3740), 1, sym_identifier, - ACTIONS(3770), 1, + ACTIONS(3746), 1, anon_sym_DOT_DOT, - ACTIONS(3848), 1, + ACTIONS(3822), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1883), 2, + STATE(1826), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2254), 3, + STATE(2184), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [53784] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3756), 1, + [52354] = 9, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(3784), 1, sym_identifier, - ACTIONS(3762), 1, - sym_crate, - ACTIONS(3850), 1, - anon_sym_RBRACE, - STATE(2218), 1, - sym_field_declaration, - STATE(2385), 1, - sym_visibility_modifier, + ACTIONS(3786), 1, + anon_sym_const, + ACTIONS(3790), 1, + sym_metavariable, + ACTIONS(3824), 1, + anon_sym_GT, + STATE(1806), 1, + sym_lifetime, + STATE(1973), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53814] = 9, + STATE(2309), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52384] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3732), 1, sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3738), 1, sym_crate, - ACTIONS(3852), 1, + ACTIONS(3826), 1, anon_sym_RBRACE, - STATE(2218), 1, - sym_field_declaration, - STATE(2385), 1, + STATE(2141), 1, + sym_enum_variant, + STATE(2449), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1534), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53844] = 9, - ACTIONS(2329), 1, + [52414] = 9, + ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(3812), 1, + ACTIONS(3784), 1, sym_identifier, - ACTIONS(3814), 1, + ACTIONS(3786), 1, anon_sym_const, - ACTIONS(3818), 1, + ACTIONS(3790), 1, sym_metavariable, - ACTIONS(3854), 1, + ACTIONS(3828), 1, anon_sym_GT, - STATE(1822), 1, + STATE(1806), 1, sym_lifetime, - STATE(2095), 1, + STATE(1973), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2282), 2, + STATE(2309), 2, sym_const_parameter, sym_optional_type_parameter, - [53874] = 7, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3856), 1, - anon_sym_for, - STATE(1386), 1, - sym_type_arguments, - STATE(1403), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53900] = 9, - ACTIONS(2329), 1, + [52444] = 9, + ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(3812), 1, + ACTIONS(3784), 1, sym_identifier, - ACTIONS(3814), 1, + ACTIONS(3786), 1, anon_sym_const, - ACTIONS(3818), 1, + ACTIONS(3790), 1, sym_metavariable, - ACTIONS(3858), 1, + ACTIONS(3830), 1, anon_sym_GT, - STATE(1810), 1, + STATE(1806), 1, sym_lifetime, - STATE(2095), 1, + STATE(1973), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2282), 2, + STATE(2309), 2, sym_const_parameter, sym_optional_type_parameter, - [53930] = 10, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LT, - ACTIONS(3860), 1, - anon_sym_SEMI, - ACTIONS(3862), 1, + [52474] = 5, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1023), 1, - sym_field_declaration_list, - STATE(1624), 1, - sym_type_parameters, - STATE(2043), 1, - sym_ordered_field_declaration_list, - STATE(2222), 1, - sym_where_clause, + ACTIONS(3832), 1, + anon_sym_move, + STATE(78), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53962] = 9, + ACTIONS(2572), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52496] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3732), 1, sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3738), 1, sym_crate, - ACTIONS(3864), 1, + ACTIONS(3834), 1, anon_sym_RBRACE, - STATE(2218), 1, - sym_field_declaration, - STATE(2385), 1, + STATE(2141), 1, + sym_enum_variant, + STATE(2449), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1534), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53992] = 7, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3866), 1, - anon_sym_for, - STATE(1386), 1, - sym_type_arguments, - STATE(1403), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54018] = 9, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3812), 1, - sym_identifier, - ACTIONS(3814), 1, - anon_sym_const, - ACTIONS(3818), 1, - sym_metavariable, - ACTIONS(3868), 1, - anon_sym_GT, - STATE(1810), 1, - sym_lifetime, - STATE(2095), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2282), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54048] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, + [52526] = 7, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3740), 1, sym_identifier, - ACTIONS(3762), 1, - sym_crate, - ACTIONS(3870), 1, + ACTIONS(3746), 1, + anon_sym_DOT_DOT, + ACTIONS(3836), 1, anon_sym_RBRACE, - STATE(2218), 1, - sym_field_declaration, - STATE(2385), 1, - sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1826), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54078] = 10, - ACTIONS(3824), 1, + STATE(2184), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [52552] = 10, + ACTIONS(3774), 1, anon_sym_LPAREN, - ACTIONS(3826), 1, + ACTIONS(3776), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(3780), 1, anon_sym_LT, - ACTIONS(3872), 1, + ACTIONS(3838), 1, anon_sym_SEMI, - STATE(373), 1, + STATE(805), 1, sym_field_declaration_list, - STATE(1604), 1, + STATE(1602), 1, sym_type_parameters, - STATE(2004), 1, + STATE(2117), 1, sym_ordered_field_declaration_list, - STATE(2243), 1, + STATE(2126), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54110] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3762), 1, - sym_crate, - ACTIONS(3774), 1, + [52584] = 7, + ACTIONS(3415), 1, + anon_sym_LPAREN, + ACTIONS(3419), 1, + anon_sym_COLON, + ACTIONS(3421), 1, + anon_sym_BANG, + ACTIONS(3840), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3425), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3413), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [52610] = 9, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(3784), 1, sym_identifier, - ACTIONS(3874), 1, - anon_sym_RBRACE, - STATE(2239), 1, - sym_enum_variant, - STATE(2389), 1, - sym_visibility_modifier, + ACTIONS(3786), 1, + anon_sym_const, + ACTIONS(3790), 1, + sym_metavariable, + ACTIONS(3842), 1, + anon_sym_GT, + STATE(1829), 1, + sym_lifetime, + STATE(1973), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1577), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54140] = 9, + STATE(2309), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52640] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3762), 1, + ACTIONS(3738), 1, sym_crate, - ACTIONS(3774), 1, + ACTIONS(3750), 1, sym_identifier, - ACTIONS(3876), 1, + ACTIONS(3844), 1, anon_sym_RBRACE, - STATE(2239), 1, - sym_enum_variant, - STATE(2389), 1, + STATE(2191), 1, + sym_field_declaration, + STATE(2402), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1577), 2, + STATE(1538), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54170] = 7, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3878), 1, - anon_sym_for, - STATE(1386), 1, - sym_type_arguments, - STATE(1403), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54196] = 9, + [52670] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3762), 1, - sym_crate, - ACTIONS(3774), 1, + ACTIONS(3732), 1, sym_identifier, - ACTIONS(3880), 1, + ACTIONS(3738), 1, + sym_crate, + ACTIONS(3846), 1, anon_sym_RBRACE, - STATE(2239), 1, + STATE(2141), 1, sym_enum_variant, - STATE(2389), 1, + STATE(2449), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1577), 2, + STATE(1534), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54226] = 5, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3882), 1, + [52700] = 5, + ACTIONS(3848), 1, anon_sym_SEMI, - STATE(1001), 1, + ACTIONS(3850), 1, + anon_sym_LBRACE, + STATE(469), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + ACTIONS(2572), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54248] = 7, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, - anon_sym_COLON, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3884), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3441), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [54274] = 7, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3886), 1, - anon_sym_for, - STATE(1386), 1, - sym_type_arguments, - STATE(1403), 1, - sym_parameters, + [52722] = 9, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(3784), 1, + sym_identifier, + ACTIONS(3786), 1, + anon_sym_const, + ACTIONS(3790), 1, + sym_metavariable, + ACTIONS(3852), 1, + anon_sym_GT, + STATE(1806), 1, + sym_lifetime, + STATE(1973), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [54300] = 9, - ACTIONS(2329), 1, + STATE(2309), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52752] = 9, + ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(3812), 1, + ACTIONS(3784), 1, sym_identifier, - ACTIONS(3814), 1, + ACTIONS(3786), 1, anon_sym_const, - ACTIONS(3818), 1, + ACTIONS(3790), 1, sym_metavariable, - ACTIONS(3888), 1, + ACTIONS(3854), 1, anon_sym_GT, - STATE(1810), 1, + STATE(1806), 1, sym_lifetime, - STATE(2095), 1, + STATE(1973), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2282), 2, + STATE(2309), 2, sym_const_parameter, sym_optional_type_parameter, - [54330] = 7, - ACTIONS(3455), 1, + [52782] = 7, + ACTIONS(3427), 1, anon_sym_LT2, - ACTIONS(3459), 1, + ACTIONS(3431), 1, anon_sym_LPAREN, - ACTIONS(3890), 1, + ACTIONS(3856), 1, anon_sym_for, - STATE(1386), 1, + STATE(1347), 1, sym_type_arguments, - STATE(1403), 1, + STATE(1358), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2578), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [54356] = 9, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3812), 1, - sym_identifier, - ACTIONS(3814), 1, - anon_sym_const, - ACTIONS(3818), 1, - sym_metavariable, - ACTIONS(3892), 1, - anon_sym_GT, - STATE(1810), 1, - sym_lifetime, - STATE(2095), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2282), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54386] = 9, + [52808] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3732), 1, sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3738), 1, sym_crate, - ACTIONS(3894), 1, + ACTIONS(3858), 1, anon_sym_RBRACE, - STATE(2218), 1, - sym_field_declaration, - STATE(2385), 1, + STATE(2141), 1, + sym_enum_variant, + STATE(2449), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1534), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54416] = 9, + [52838] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3756), 1, - sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3738), 1, sym_crate, - ACTIONS(3896), 1, + ACTIONS(3750), 1, + sym_identifier, + ACTIONS(3860), 1, anon_sym_RBRACE, - STATE(2218), 1, + STATE(2191), 1, sym_field_declaration, - STATE(2385), 1, + STATE(2402), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, + STATE(1538), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54446] = 10, - ACTIONS(3824), 1, + [52868] = 7, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3431), 1, anon_sym_LPAREN, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LT, ACTIONS(3862), 1, - anon_sym_LBRACE, - ACTIONS(3898), 1, - anon_sym_SEMI, - STATE(865), 1, - sym_field_declaration_list, - STATE(1625), 1, - sym_type_parameters, - STATE(2135), 1, - sym_ordered_field_declaration_list, - STATE(2169), 1, - sym_where_clause, + anon_sym_for, + STATE(1347), 1, + sym_type_arguments, + STATE(1358), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54478] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3756), 1, - sym_identifier, - ACTIONS(3762), 1, - sym_crate, - STATE(2218), 1, - sym_field_declaration, - STATE(2385), 1, - sym_visibility_modifier, + ACTIONS(2578), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52894] = 5, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(3864), 1, + anon_sym_SEMI, + STATE(976), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1557), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54505] = 8, + ACTIONS(2572), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52916] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3756), 1, - sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3738), 1, sym_crate, - STATE(2162), 1, + ACTIONS(3750), 1, + sym_identifier, + ACTIONS(3866), 1, + anon_sym_RBRACE, + STATE(2191), 1, sym_field_declaration, - STATE(2385), 1, + STATE(2402), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1098), 2, + STATE(1538), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54532] = 8, + [52946] = 9, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3732), 1, sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3738), 1, sym_crate, - STATE(2117), 1, - sym_field_declaration, - STATE(2385), 1, + ACTIONS(3868), 1, + anon_sym_RBRACE, + STATE(2141), 1, + sym_enum_variant, + STATE(2449), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1098), 2, + STATE(1534), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54559] = 2, + [52976] = 5, + ACTIONS(3850), 1, + anon_sym_LBRACE, + ACTIONS(3870), 1, + anon_sym_SEMI, + STATE(367), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3900), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2572), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54574] = 6, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3764), 1, - sym_identifier, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1883), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2254), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [54597] = 9, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [52998] = 9, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(3902), 1, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(3872), 1, anon_sym_COLON, - ACTIONS(3904), 1, + ACTIONS(3874), 1, anon_sym_LT, - STATE(438), 1, + STATE(903), 1, sym_declaration_list, - STATE(1723), 1, + STATE(1677), 1, sym_type_parameters, - STATE(1793), 1, + STATE(1782), 1, sym_trait_bounds, - STATE(2321), 1, + STATE(2244), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54626] = 6, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3906), 1, - anon_sym_RBRACK, + [53027] = 9, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3850), 1, + anon_sym_LBRACE, + ACTIONS(3872), 1, + anon_sym_COLON, + ACTIONS(3874), 1, + anon_sym_LT, + STATE(403), 1, + sym_declaration_list, + STATE(1675), 1, + sym_type_parameters, + STATE(1816), 1, + sym_trait_bounds, + STATE(2298), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3548), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [54649] = 9, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [53056] = 9, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(3902), 1, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(3872), 1, anon_sym_COLON, - ACTIONS(3904), 1, + ACTIONS(3874), 1, anon_sym_LT, - STATE(903), 1, + STATE(901), 1, sym_declaration_list, - STATE(1714), 1, + STATE(1663), 1, sym_type_parameters, - STATE(1796), 1, + STATE(1776), 1, sym_trait_bounds, - STATE(2201), 1, + STATE(2189), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54678] = 5, - ACTIONS(3911), 1, - anon_sym_fn, - ACTIONS(3913), 1, - anon_sym_extern, + [53085] = 8, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(3786), 1, + anon_sym_const, + ACTIONS(3876), 1, + sym_identifier, + ACTIONS(3878), 1, + sym_metavariable, + STATE(1640), 1, + sym_lifetime, + STATE(1757), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1572), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3909), 4, + STATE(2116), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53112] = 4, + ACTIONS(3882), 1, + anon_sym_PLUS, + STATE(1527), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3880), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [53131] = 4, + ACTIONS(3532), 1, + anon_sym_COLON_COLON, + ACTIONS(3634), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2572), 6, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, anon_sym_unsafe, - [54699] = 8, - ACTIONS(820), 1, + anon_sym_extern, + [53150] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(3732), 1, + sym_identifier, + ACTIONS(3738), 1, + sym_crate, + STATE(2113), 1, + sym_enum_variant, + STATE(2449), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1048), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53177] = 8, + ACTIONS(798), 1, anon_sym_DOT_DOT, - ACTIONS(3915), 1, + ACTIONS(3884), 1, sym_identifier, - ACTIONS(3917), 1, + ACTIONS(3886), 1, anon_sym_RBRACE, - ACTIONS(3919), 1, + ACTIONS(3888), 1, anon_sym_COMMA, - ACTIONS(3921), 1, + ACTIONS(3890), 1, anon_sym_ref, - ACTIONS(3923), 1, + ACTIONS(3892), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1992), 2, + STATE(1880), 2, sym_field_pattern, sym_remaining_field_pattern, - [54726] = 4, - ACTIONS(3501), 1, - anon_sym_trait, - ACTIONS(3925), 1, - anon_sym_impl, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, + [53204] = 5, + ACTIONS(3897), 1, anon_sym_fn, - anon_sym_unsafe, + ACTIONS(3899), 1, anon_sym_extern, - [54745] = 4, - ACTIONS(3590), 1, - anon_sym_COLON_COLON, - ACTIONS(3927), 1, - anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + STATE(1525), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3894), 4, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, anon_sym_unsafe, - anon_sym_extern, - [54764] = 8, - ACTIONS(3929), 1, + [53225] = 8, + ACTIONS(3902), 1, anon_sym_LPAREN, - ACTIONS(3934), 1, + ACTIONS(3907), 1, anon_sym_LBRACE, - ACTIONS(3937), 1, + ACTIONS(3910), 1, anon_sym_LBRACK, - STATE(1568), 1, + STATE(1526), 1, aux_sym_macro_definition_repeat1, - STATE(2422), 1, - sym_token_tree_pattern, - STATE(2507), 1, + STATE(2313), 1, sym_macro_rule, + STATE(2416), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3932), 2, + ACTIONS(3905), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [54791] = 8, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3814), 1, - anon_sym_const, - ACTIONS(3940), 1, - sym_identifier, - ACTIONS(3942), 1, - sym_metavariable, - STATE(1771), 1, - sym_lifetime, - STATE(1816), 1, - sym_constrained_type_parameter, + [53252] = 4, + ACTIONS(3915), 1, + anon_sym_PLUS, + STATE(1527), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2096), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54818] = 8, + ACTIONS(3913), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [53271] = 9, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3850), 1, + anon_sym_LBRACE, + ACTIONS(3872), 1, + anon_sym_COLON, + ACTIONS(3874), 1, + anon_sym_LT, + STATE(380), 1, + sym_declaration_list, + STATE(1691), 1, + sym_type_parameters, + STATE(1790), 1, + sym_trait_bounds, + STATE(2252), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53300] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3762), 1, - sym_crate, - ACTIONS(3774), 1, + ACTIONS(3732), 1, sym_identifier, - STATE(2239), 1, + ACTIONS(3738), 1, + sym_crate, + STATE(2141), 1, sym_enum_variant, - STATE(2389), 1, + STATE(2449), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1577), 2, + STATE(1534), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54845] = 4, - ACTIONS(3534), 1, + [53327] = 8, + ACTIONS(798), 1, + anon_sym_DOT_DOT, + ACTIONS(3884), 1, + sym_identifier, + ACTIONS(3890), 1, + anon_sym_ref, + ACTIONS(3892), 1, + sym_mutable_specifier, + ACTIONS(3918), 1, + anon_sym_RBRACE, + ACTIONS(3920), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1893), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [53354] = 7, + ACTIONS(2578), 1, + anon_sym_PLUS, + ACTIONS(3524), 1, + anon_sym_PIPE, + ACTIONS(3526), 1, + anon_sym_COLON, + ACTIONS(3726), 1, anon_sym_COLON_COLON, - ACTIONS(3656), 1, - anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, + ACTIONS(3530), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3922), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [53379] = 8, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(3784), 1, + sym_identifier, + ACTIONS(3786), 1, anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54864] = 5, - ACTIONS(3947), 1, - anon_sym_fn, - ACTIONS(3949), 1, - anon_sym_extern, + ACTIONS(3790), 1, + sym_metavariable, + STATE(1806), 1, + sym_lifetime, + STATE(1973), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1572), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3944), 4, + STATE(2309), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53406] = 4, + ACTIONS(706), 1, + aux_sym_string_literal_token1, + STATE(1556), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3602), 6, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, anon_sym_unsafe, - [54885] = 9, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(3904), 1, - anon_sym_LT, - STATE(879), 1, - sym_declaration_list, - STATE(1664), 1, - sym_type_parameters, - STATE(1837), 1, - sym_trait_bounds, - STATE(2172), 1, - sym_where_clause, + anon_sym_extern, + [53425] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(3732), 1, + sym_identifier, + ACTIONS(3738), 1, + sym_crate, + STATE(2175), 1, + sym_enum_variant, + STATE(2449), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54914] = 4, - ACTIONS(3954), 1, + STATE(1048), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53452] = 4, + ACTIONS(3882), 1, anon_sym_PLUS, - STATE(1574), 1, + STATE(1521), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3952), 6, + ACTIONS(3925), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54933] = 8, + [53471] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3762), 1, + ACTIONS(3738), 1, sym_crate, - ACTIONS(3774), 1, + ACTIONS(3750), 1, sym_identifier, - STATE(2145), 1, - sym_enum_variant, - STATE(2389), 1, + STATE(2084), 1, + sym_field_declaration, + STATE(2402), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1098), 2, + STATE(1048), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54960] = 9, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [53498] = 9, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(3902), 1, + ACTIONS(3850), 1, + anon_sym_LBRACE, + ACTIONS(3872), 1, anon_sym_COLON, - ACTIONS(3904), 1, + ACTIONS(3874), 1, anon_sym_LT, - STATE(309), 1, + STATE(411), 1, sym_declaration_list, - STATE(1688), 1, + STATE(1614), 1, sym_type_parameters, - STATE(1818), 1, + STATE(1854), 1, sym_trait_bounds, - STATE(2246), 1, + STATE(2163), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54989] = 8, + [53527] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3762), 1, + ACTIONS(3738), 1, sym_crate, - ACTIONS(3774), 1, + ACTIONS(3750), 1, sym_identifier, - STATE(2176), 1, - sym_enum_variant, - STATE(2389), 1, + STATE(2248), 1, + sym_field_declaration, + STATE(2402), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1098), 2, + STATE(1048), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55016] = 8, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3915), 1, - sym_identifier, - ACTIONS(3921), 1, - anon_sym_ref, - ACTIONS(3923), 1, - sym_mutable_specifier, - ACTIONS(3957), 1, - anon_sym_RBRACE, - ACTIONS(3959), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2006), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55043] = 8, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3814), 1, - anon_sym_const, - ACTIONS(3961), 1, - sym_identifier, - ACTIONS(3963), 1, - sym_metavariable, - STATE(1785), 1, - sym_lifetime, - STATE(1869), 1, - sym_constrained_type_parameter, + [53554] = 9, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(3872), 1, + anon_sym_COLON, + ACTIONS(3874), 1, + anon_sym_LT, + STATE(859), 1, + sym_declaration_list, + STATE(1634), 1, + sym_type_parameters, + STATE(1761), 1, + sym_trait_bounds, + STATE(2127), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2030), 2, - sym_const_parameter, - sym_optional_type_parameter, - [55070] = 4, - ACTIONS(3967), 1, - anon_sym_PLUS, - STATE(1574), 1, - aux_sym_trait_bounds_repeat1, + [53583] = 6, + ACTIONS(3730), 1, + anon_sym_COLON_COLON, + ACTIONS(3922), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3965), 6, + ACTIONS(2578), 2, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(3524), 2, anon_sym_COMMA, - anon_sym_GT, - [55089] = 8, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3814), 1, - anon_sym_const, - ACTIONS(3940), 1, + anon_sym_PIPE, + ACTIONS(3530), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53606] = 6, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(3740), 1, sym_identifier, - ACTIONS(3942), 1, - sym_metavariable, - STATE(1657), 1, - sym_lifetime, - STATE(1816), 1, - sym_constrained_type_parameter, + ACTIONS(3746), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2096), 2, - sym_const_parameter, - sym_optional_type_parameter, - [55116] = 4, - ACTIONS(736), 1, - aux_sym_string_literal_token1, - STATE(1559), 1, - sym_string_literal, + STATE(1826), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2184), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53629] = 4, + ACTIONS(874), 1, + anon_sym_LBRACE, + STATE(1428), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3618), 6, + ACTIONS(2572), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55135] = 9, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(3902), 1, + [53648] = 6, + ACTIONS(3524), 1, + anon_sym_PIPE, + ACTIONS(3526), 1, anon_sym_COLON, - ACTIONS(3904), 1, - anon_sym_LT, - STATE(378), 1, - sym_declaration_list, - STATE(1693), 1, - sym_type_parameters, - STATE(1809), 1, - sym_trait_bounds, - STATE(2244), 1, - sym_where_clause, + ACTIONS(3636), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55164] = 8, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(3812), 1, + ACTIONS(3530), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2578), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [53671] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(3738), 1, + sym_crate, + ACTIONS(3750), 1, sym_identifier, - ACTIONS(3814), 1, + STATE(1925), 1, + sym_field_declaration, + STATE(2402), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1048), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53698] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(3738), 1, + sym_crate, + ACTIONS(3750), 1, + sym_identifier, + STATE(2191), 1, + sym_field_declaration, + STATE(2402), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1538), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53725] = 4, + ACTIONS(3574), 1, + anon_sym_COLON_COLON, + ACTIONS(3927), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2572), 6, + anon_sym_async, anon_sym_const, - ACTIONS(3818), 1, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53744] = 8, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(3786), 1, + anon_sym_const, + ACTIONS(3929), 1, + sym_identifier, + ACTIONS(3931), 1, sym_metavariable, - STATE(1810), 1, + STATE(1731), 1, sym_lifetime, - STATE(2095), 1, + STATE(1793), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2282), 2, + STATE(2020), 2, sym_const_parameter, sym_optional_type_parameter, - [55191] = 6, - ACTIONS(3443), 1, + [53771] = 6, + ACTIONS(3415), 1, anon_sym_LPAREN, - ACTIONS(3449), 1, + ACTIONS(3421), 1, anon_sym_BANG, - ACTIONS(3969), 1, + ACTIONS(3933), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, + ACTIONS(3425), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3441), 3, + ACTIONS(3413), 3, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_PIPE, - [55214] = 8, + [53794] = 8, ACTIONS(53), 1, anon_sym_pub, - ACTIONS(2333), 1, + ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3732), 1, sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3738), 1, sym_crate, - STATE(2038), 1, - sym_field_declaration, - STATE(2385), 1, + STATE(2092), 1, + sym_enum_variant, + STATE(2449), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1098), 2, + STATE(1048), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [55241] = 4, - ACTIONS(904), 1, - anon_sym_LBRACE, - STATE(1482), 1, - sym_block, + [53821] = 4, + ACTIONS(3473), 1, + anon_sym_trait, + ACTIONS(3935), 1, + anon_sym_impl, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + ACTIONS(2572), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55260] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(3762), 1, - sym_crate, - ACTIONS(3774), 1, - sym_identifier, - STATE(2134), 1, - sym_enum_variant, - STATE(2389), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1098), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [55287] = 4, - ACTIONS(2728), 1, - anon_sym_COLON_COLON, - ACTIONS(3971), 1, - anon_sym_BANG, + [53840] = 5, + ACTIONS(3939), 1, + anon_sym_fn, + ACTIONS(3941), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + STATE(1525), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3937), 4, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, anon_sym_unsafe, - anon_sym_extern, - [55306] = 4, - ACTIONS(3967), 1, + [53861] = 4, + ACTIONS(3943), 1, anon_sym_PLUS, - STATE(1580), 1, + STATE(1521), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3973), 6, + ACTIONS(3925), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55325] = 7, - ACTIONS(2614), 1, - anon_sym_PLUS, - ACTIONS(3548), 1, - anon_sym_PIPE, - ACTIONS(3550), 1, - anon_sym_COLON, - ACTIONS(3658), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3906), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [55350] = 4, - ACTIONS(3975), 1, + [53880] = 4, + ACTIONS(3945), 1, anon_sym_PLUS, - STATE(1580), 1, + STATE(1521), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3973), 6, + ACTIONS(3925), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55369] = 4, - ACTIONS(3977), 1, - anon_sym_PLUS, - STATE(1580), 1, - aux_sym_trait_bounds_repeat1, + [53899] = 8, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(3786), 1, + anon_sym_const, + ACTIONS(3876), 1, + sym_identifier, + ACTIONS(3878), 1, + sym_metavariable, + STATE(1727), 1, + sym_lifetime, + STATE(1757), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3973), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55388] = 6, - ACTIONS(3548), 1, - anon_sym_PIPE, - ACTIONS(3550), 1, - anon_sym_COLON, - ACTIONS(3682), 1, + STATE(2116), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53926] = 4, + ACTIONS(2718), 1, anon_sym_COLON_COLON, + ACTIONS(3947), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2614), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [55411] = 9, - ACTIONS(3806), 1, + ACTIONS(2572), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53945] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3949), 8, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(3904), 1, - anon_sym_LT, - STATE(1019), 1, - sym_declaration_list, - STATE(1737), 1, - sym_type_parameters, - STATE(1884), 1, - sym_trait_bounds, - STATE(2221), 1, - sym_where_clause, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53960] = 3, + ACTIONS(3951), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55440] = 8, - ACTIONS(3979), 1, + ACTIONS(3768), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53976] = 8, + ACTIONS(3953), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(3955), 1, anon_sym_LBRACE, - ACTIONS(3983), 1, + ACTIONS(3957), 1, anon_sym_RBRACE, - ACTIONS(3985), 1, + ACTIONS(3959), 1, anon_sym_LBRACK, - STATE(1568), 1, + STATE(1526), 1, aux_sym_macro_definition_repeat1, - STATE(2167), 1, + STATE(2137), 1, sym_macro_rule, - STATE(2422), 1, + STATE(2416), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55466] = 8, - ACTIONS(3979), 1, + [54002] = 8, + ACTIONS(3953), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(3955), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, + ACTIONS(3959), 1, anon_sym_LBRACK, - ACTIONS(3987), 1, - anon_sym_RPAREN, - STATE(1568), 1, + ACTIONS(3961), 1, + anon_sym_RBRACE, + STATE(1526), 1, aux_sym_macro_definition_repeat1, - STATE(2280), 1, + STATE(2139), 1, sym_macro_rule, - STATE(2422), 1, + STATE(2416), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55492] = 7, - ACTIONS(3441), 1, - anon_sym_PIPE, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, - anon_sym_COLON, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3989), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [55516] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3991), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55530] = 6, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3862), 1, - anon_sym_LBRACE, - ACTIONS(3995), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3993), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2128), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [55552] = 8, - ACTIONS(3979), 1, + [54028] = 8, + ACTIONS(3953), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(3955), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, + ACTIONS(3959), 1, anon_sym_LBRACK, - ACTIONS(3997), 1, + ACTIONS(3963), 1, anon_sym_RPAREN, - STATE(1618), 1, + STATE(1526), 1, aux_sym_macro_definition_repeat1, - STATE(2307), 1, + STATE(2143), 1, sym_macro_rule, - STATE(2422), 1, + STATE(2416), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55578] = 2, + [54054] = 3, + ACTIONS(3965), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3952), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55592] = 8, - ACTIONS(3979), 1, + ACTIONS(2572), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54070] = 6, + ACTIONS(3774), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(3776), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, - anon_sym_LBRACK, - ACTIONS(3999), 1, - anon_sym_RPAREN, - STATE(1597), 1, - aux_sym_macro_definition_repeat1, - STATE(2305), 1, - sym_macro_rule, - STATE(2422), 1, - sym_token_tree_pattern, + ACTIONS(3969), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55618] = 8, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3826), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4001), 1, - anon_sym_SEMI, - STATE(403), 1, + ACTIONS(3967), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1924), 2, sym_field_declaration_list, - STATE(2048), 1, sym_ordered_field_declaration_list, - STATE(2328), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55644] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4003), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55658] = 8, - ACTIONS(3979), 1, + [54092] = 8, + ACTIONS(3971), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(3973), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, + ACTIONS(3975), 1, anon_sym_LBRACK, - ACTIONS(4005), 1, - anon_sym_RBRACE, - STATE(1568), 1, - aux_sym_macro_definition_repeat1, - STATE(2292), 1, - sym_macro_rule, - STATE(2422), 1, - sym_token_tree_pattern, + ACTIONS(3977), 1, + anon_sym_RBRACK, + ACTIONS(3979), 1, + anon_sym_EQ, + ACTIONS(3981), 1, + anon_sym_COLON_COLON, + STATE(2315), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55684] = 3, - ACTIONS(2728), 1, - anon_sym_COLON_COLON, + [54118] = 3, + ACTIONS(3983), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + ACTIONS(3768), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55700] = 8, - ACTIONS(3979), 1, + [54134] = 8, + ACTIONS(3971), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(3973), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, + ACTIONS(3975), 1, anon_sym_LBRACK, - ACTIONS(4007), 1, - anon_sym_RPAREN, - STATE(1568), 1, - aux_sym_macro_definition_repeat1, - STATE(2293), 1, - sym_macro_rule, - STATE(2422), 1, - sym_token_tree_pattern, + ACTIONS(3977), 1, + anon_sym_RBRACK, + ACTIONS(3979), 1, + anon_sym_EQ, + ACTIONS(3985), 1, + anon_sym_COLON_COLON, + STATE(2315), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55726] = 8, - ACTIONS(3979), 1, + [54160] = 8, + ACTIONS(3953), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(3955), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, + ACTIONS(3959), 1, anon_sym_LBRACK, - ACTIONS(4009), 1, + ACTIONS(3987), 1, anon_sym_RPAREN, - STATE(1608), 1, + STATE(1526), 1, aux_sym_macro_definition_repeat1, - STATE(2323), 1, + STATE(2134), 1, sym_macro_rule, - STATE(2422), 1, + STATE(2416), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55752] = 3, - ACTIONS(4011), 1, - sym_identifier, + [54186] = 8, + ACTIONS(3971), 1, + anon_sym_LPAREN, + ACTIONS(3973), 1, + anon_sym_LBRACE, + ACTIONS(3975), 1, + anon_sym_LBRACK, + ACTIONS(3977), 1, + anon_sym_RBRACK, + ACTIONS(3979), 1, + anon_sym_EQ, + ACTIONS(3989), 1, + anon_sym_COLON_COLON, + STATE(2315), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3834), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55768] = 8, - ACTIONS(3979), 1, + [54212] = 8, + ACTIONS(3574), 1, + anon_sym_COLON_COLON, + ACTIONS(3971), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(3973), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, + ACTIONS(3975), 1, anon_sym_LBRACK, - ACTIONS(4013), 1, - anon_sym_RBRACE, - STATE(1568), 1, - aux_sym_macro_definition_repeat1, - STATE(2158), 1, - sym_macro_rule, - STATE(2422), 1, - sym_token_tree_pattern, + ACTIONS(3991), 1, + anon_sym_RBRACK, + ACTIONS(3993), 1, + anon_sym_EQ, + STATE(2317), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55794] = 2, + [54238] = 8, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3794), 1, + anon_sym_LBRACE, + ACTIONS(3995), 1, + anon_sym_SEMI, + STATE(313), 1, + sym_field_declaration_list, + STATE(1931), 1, + sym_ordered_field_declaration_list, + STATE(2250), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3952), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55808] = 8, - ACTIONS(3979), 1, + [54264] = 8, + ACTIONS(3953), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(3955), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, + ACTIONS(3959), 1, anon_sym_LBRACK, - ACTIONS(4015), 1, - anon_sym_RPAREN, - STATE(1568), 1, + ACTIONS(3997), 1, + anon_sym_RBRACE, + STATE(1526), 1, aux_sym_macro_definition_repeat1, - STATE(2299), 1, + STATE(2140), 1, sym_macro_rule, - STATE(2422), 1, + STATE(2416), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55834] = 2, + [54290] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3952), 7, + ACTIONS(3999), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -120094,2122 +116825,2397 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55848] = 3, - ACTIONS(4017), 1, - anon_sym_trait, + [54304] = 8, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3776), 1, + anon_sym_LBRACE, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(4001), 1, + anon_sym_SEMI, + STATE(949), 1, + sym_field_declaration_list, + STATE(2108), 1, + sym_ordered_field_declaration_list, + STATE(2151), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55864] = 7, - ACTIONS(820), 1, + [54330] = 7, + ACTIONS(798), 1, anon_sym_DOT_DOT, - ACTIONS(3915), 1, + ACTIONS(3884), 1, sym_identifier, - ACTIONS(3921), 1, + ACTIONS(3890), 1, anon_sym_ref, - ACTIONS(3923), 1, + ACTIONS(3892), 1, sym_mutable_specifier, - ACTIONS(4019), 1, + ACTIONS(4003), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2287), 2, + STATE(2310), 2, sym_field_pattern, sym_remaining_field_pattern, - [55888] = 8, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3826), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4021), 1, - anon_sym_SEMI, - STATE(303), 1, - sym_field_declaration_list, - STATE(1986), 1, - sym_ordered_field_declaration_list, - STATE(2249), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55914] = 8, - ACTIONS(3979), 1, - anon_sym_LPAREN, - ACTIONS(3981), 1, - anon_sym_LBRACE, - ACTIONS(3985), 1, - anon_sym_LBRACK, - ACTIONS(4023), 1, - anon_sym_RPAREN, - STATE(1568), 1, - aux_sym_macro_definition_repeat1, - STATE(2281), 1, - sym_macro_rule, - STATE(2422), 1, - sym_token_tree_pattern, + [54354] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55940] = 8, - ACTIONS(3590), 1, - anon_sym_COLON_COLON, - ACTIONS(4025), 1, - anon_sym_LPAREN, - ACTIONS(4027), 1, + ACTIONS(3913), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4029), 1, - anon_sym_LBRACK, - ACTIONS(4031), 1, - anon_sym_RBRACK, - ACTIONS(4033), 1, + anon_sym_PLUS, + anon_sym_where, anon_sym_EQ, - STATE(2410), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55966] = 3, - ACTIONS(4035), 1, - sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + [54368] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3834), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55982] = 8, - ACTIONS(3979), 1, - anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(3913), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3985), 1, - anon_sym_LBRACK, - ACTIONS(4037), 1, - anon_sym_RBRACE, - STATE(1568), 1, - aux_sym_macro_definition_repeat1, - STATE(2165), 1, - sym_macro_rule, - STATE(2422), 1, - sym_token_tree_pattern, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54382] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56008] = 8, - ACTIONS(4025), 1, - anon_sym_LPAREN, - ACTIONS(4027), 1, + ACTIONS(3913), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4029), 1, - anon_sym_LBRACK, - ACTIONS(4039), 1, - anon_sym_RBRACK, - ACTIONS(4041), 1, + anon_sym_PLUS, + anon_sym_where, anon_sym_EQ, - ACTIONS(4043), 1, - anon_sym_COLON_COLON, - STATE(2412), 1, - sym_delim_token_tree, + anon_sym_COMMA, + anon_sym_GT, + [54396] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56034] = 8, - ACTIONS(4025), 1, - anon_sym_LPAREN, - ACTIONS(4027), 1, + ACTIONS(3913), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4029), 1, - anon_sym_LBRACK, - ACTIONS(4039), 1, - anon_sym_RBRACK, - ACTIONS(4041), 1, + anon_sym_PLUS, + anon_sym_where, anon_sym_EQ, - ACTIONS(4045), 1, - anon_sym_COLON_COLON, - STATE(2412), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56060] = 8, - ACTIONS(3824), 1, + anon_sym_COMMA, + anon_sym_GT, + [54410] = 8, + ACTIONS(3774), 1, anon_sym_LPAREN, - ACTIONS(3828), 1, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(3862), 1, + ACTIONS(3794), 1, anon_sym_LBRACE, - ACTIONS(4047), 1, + ACTIONS(4005), 1, anon_sym_SEMI, - STATE(894), 1, + STATE(414), 1, sym_field_declaration_list, - STATE(2118), 1, + STATE(1860), 1, sym_ordered_field_declaration_list, - STATE(2180), 1, + STATE(2122), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56086] = 8, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3828), 1, + [54436] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3913), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3862), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54450] = 8, + ACTIONS(3953), 1, + anon_sym_LPAREN, + ACTIONS(3955), 1, anon_sym_LBRACE, - ACTIONS(4049), 1, - anon_sym_SEMI, - STATE(892), 1, - sym_field_declaration_list, - STATE(2083), 1, - sym_ordered_field_declaration_list, - STATE(2198), 1, - sym_where_clause, + ACTIONS(3959), 1, + anon_sym_LBRACK, + ACTIONS(4007), 1, + anon_sym_RBRACE, + STATE(1559), 1, + aux_sym_macro_definition_repeat1, + STATE(2199), 1, + sym_macro_rule, + STATE(2416), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56112] = 8, - ACTIONS(4025), 1, + [54476] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4009), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54490] = 8, + ACTIONS(3953), 1, anon_sym_LPAREN, - ACTIONS(4027), 1, + ACTIONS(3955), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + ACTIONS(3959), 1, anon_sym_LBRACK, - ACTIONS(4039), 1, - anon_sym_RBRACK, - ACTIONS(4041), 1, - anon_sym_EQ, - ACTIONS(4051), 1, - anon_sym_COLON_COLON, - STATE(2412), 1, - sym_delim_token_tree, + ACTIONS(4011), 1, + anon_sym_RPAREN, + STATE(1560), 1, + aux_sym_macro_definition_repeat1, + STATE(2234), 1, + sym_macro_rule, + STATE(2416), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56138] = 3, - ACTIONS(4053), 1, - sym_identifier, + [54516] = 3, + ACTIONS(4013), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3834), 6, + ACTIONS(2572), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56154] = 7, - ACTIONS(820), 1, + [54532] = 8, + ACTIONS(3953), 1, + anon_sym_LPAREN, + ACTIONS(3955), 1, + anon_sym_LBRACE, + ACTIONS(3959), 1, + anon_sym_LBRACK, + ACTIONS(4015), 1, + anon_sym_RBRACE, + STATE(1558), 1, + aux_sym_macro_definition_repeat1, + STATE(2204), 1, + sym_macro_rule, + STATE(2416), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54558] = 7, + ACTIONS(798), 1, anon_sym_DOT_DOT, - ACTIONS(3915), 1, + ACTIONS(3884), 1, sym_identifier, - ACTIONS(3921), 1, + ACTIONS(3890), 1, anon_sym_ref, - ACTIONS(3923), 1, + ACTIONS(3892), 1, sym_mutable_specifier, - ACTIONS(4055), 1, + ACTIONS(4017), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2287), 2, + STATE(2310), 2, sym_field_pattern, sym_remaining_field_pattern, - [56178] = 2, + [54582] = 7, + ACTIONS(798), 1, + anon_sym_DOT_DOT, + ACTIONS(3884), 1, + sym_identifier, + ACTIONS(3890), 1, + anon_sym_ref, + ACTIONS(3892), 1, + sym_mutable_specifier, + ACTIONS(4019), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3952), 7, - anon_sym_SEMI, + STATE(2310), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [54606] = 8, + ACTIONS(3953), 1, + anon_sym_LPAREN, + ACTIONS(3955), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56192] = 3, - ACTIONS(4057), 1, - sym_identifier, + ACTIONS(3959), 1, + anon_sym_LBRACK, + ACTIONS(4021), 1, + anon_sym_RPAREN, + STATE(1526), 1, + aux_sym_macro_definition_repeat1, + STATE(2209), 1, + sym_macro_rule, + STATE(2416), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3834), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56208] = 8, - ACTIONS(3979), 1, + [54632] = 8, + ACTIONS(3953), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(3955), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, + ACTIONS(3959), 1, anon_sym_LBRACK, - ACTIONS(4059), 1, - anon_sym_RBRACE, - STATE(1606), 1, + ACTIONS(4023), 1, + anon_sym_RPAREN, + STATE(1526), 1, aux_sym_macro_definition_repeat1, - STATE(2308), 1, + STATE(2120), 1, + sym_macro_rule, + STATE(2416), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54658] = 8, + ACTIONS(3953), 1, + anon_sym_LPAREN, + ACTIONS(3955), 1, + anon_sym_LBRACE, + ACTIONS(3959), 1, + anon_sym_LBRACK, + ACTIONS(4025), 1, + anon_sym_RPAREN, + STATE(1587), 1, + aux_sym_macro_definition_repeat1, + STATE(2233), 1, sym_macro_rule, - STATE(2422), 1, + STATE(2416), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56234] = 7, - ACTIONS(820), 1, + [54684] = 7, + ACTIONS(798), 1, anon_sym_DOT_DOT, - ACTIONS(3915), 1, + ACTIONS(3884), 1, sym_identifier, - ACTIONS(3921), 1, + ACTIONS(3890), 1, anon_sym_ref, - ACTIONS(3923), 1, + ACTIONS(3892), 1, sym_mutable_specifier, - ACTIONS(4061), 1, + ACTIONS(4027), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2287), 2, + STATE(2310), 2, sym_field_pattern, sym_remaining_field_pattern, - [56258] = 6, - ACTIONS(3824), 1, + [54708] = 8, + ACTIONS(3953), 1, anon_sym_LPAREN, - ACTIONS(3862), 1, + ACTIONS(3955), 1, anon_sym_LBRACE, - ACTIONS(4065), 1, + ACTIONS(3959), 1, + anon_sym_LBRACK, + ACTIONS(4029), 1, + anon_sym_RPAREN, + STATE(1588), 1, + aux_sym_macro_definition_repeat1, + STATE(2237), 1, + sym_macro_rule, + STATE(2416), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54734] = 8, + ACTIONS(3953), 1, + anon_sym_LPAREN, + ACTIONS(3955), 1, + anon_sym_LBRACE, + ACTIONS(3959), 1, + anon_sym_LBRACK, + ACTIONS(4031), 1, + anon_sym_RBRACE, + STATE(1570), 1, + aux_sym_macro_definition_repeat1, + STATE(2239), 1, + sym_macro_rule, + STATE(2416), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54760] = 8, + ACTIONS(3953), 1, + anon_sym_LPAREN, + ACTIONS(3955), 1, + anon_sym_LBRACE, + ACTIONS(3959), 1, + anon_sym_LBRACK, + ACTIONS(4033), 1, + anon_sym_RBRACE, + STATE(1526), 1, + aux_sym_macro_definition_repeat1, + STATE(2133), 1, + sym_macro_rule, + STATE(2416), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54786] = 6, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3776), 1, + anon_sym_LBRACE, + ACTIONS(4037), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4063), 2, + ACTIONS(4035), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1955), 2, + STATE(2118), 2, sym_field_declaration_list, sym_ordered_field_declaration_list, - [56280] = 7, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3915), 1, - sym_identifier, - ACTIONS(3921), 1, - anon_sym_ref, - ACTIONS(3923), 1, - sym_mutable_specifier, - ACTIONS(4067), 1, - anon_sym_RBRACE, + [54808] = 8, + ACTIONS(3953), 1, + anon_sym_LPAREN, + ACTIONS(3955), 1, + anon_sym_LBRACE, + ACTIONS(3959), 1, + anon_sym_LBRACK, + ACTIONS(4039), 1, + anon_sym_RPAREN, + STATE(1566), 1, + aux_sym_macro_definition_repeat1, + STATE(2255), 1, + sym_macro_rule, + STATE(2416), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2287), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [56304] = 2, + [54834] = 7, + ACTIONS(3413), 1, + anon_sym_PIPE, + ACTIONS(3415), 1, + anon_sym_LPAREN, + ACTIONS(3419), 1, + anon_sym_COLON, + ACTIONS(3421), 1, + anon_sym_BANG, + ACTIONS(4041), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3952), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [56318] = 3, - ACTIONS(4069), 1, - anon_sym_trait, + ACTIONS(3425), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54858] = 3, + ACTIONS(4043), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + ACTIONS(3768), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56334] = 8, - ACTIONS(3979), 1, - anon_sym_LPAREN, - ACTIONS(3981), 1, - anon_sym_LBRACE, - ACTIONS(3985), 1, - anon_sym_LBRACK, - ACTIONS(4071), 1, - anon_sym_RBRACE, - STATE(1596), 1, - aux_sym_macro_definition_repeat1, - STATE(2204), 1, - sym_macro_rule, - STATE(2422), 1, - sym_token_tree_pattern, + [54874] = 3, + ACTIONS(3532), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56360] = 3, - ACTIONS(3534), 1, + ACTIONS(2572), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54890] = 3, + ACTIONS(2718), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 6, + ACTIONS(2572), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56376] = 8, - ACTIONS(3979), 1, - anon_sym_LPAREN, - ACTIONS(3981), 1, - anon_sym_LBRACE, - ACTIONS(3985), 1, - anon_sym_LBRACK, - ACTIONS(4073), 1, - anon_sym_RPAREN, - STATE(1613), 1, - aux_sym_macro_definition_repeat1, - STATE(2314), 1, - sym_macro_rule, - STATE(2422), 1, - sym_token_tree_pattern, + [54906] = 3, + ACTIONS(4045), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56402] = 8, - ACTIONS(3979), 1, + ACTIONS(3768), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54922] = 8, + ACTIONS(3953), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(3955), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, + ACTIONS(3959), 1, anon_sym_LBRACK, - ACTIONS(4075), 1, + ACTIONS(4047), 1, anon_sym_RBRACE, - STATE(1621), 1, + STATE(1593), 1, aux_sym_macro_definition_repeat1, - STATE(2206), 1, + STATE(2302), 1, sym_macro_rule, - STATE(2422), 1, + STATE(2416), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56428] = 8, - ACTIONS(3979), 1, + [54948] = 8, + ACTIONS(3774), 1, anon_sym_LPAREN, - ACTIONS(3981), 1, + ACTIONS(3776), 1, anon_sym_LBRACE, - ACTIONS(3985), 1, - anon_sym_LBRACK, - ACTIONS(4077), 1, - anon_sym_RBRACE, - STATE(1611), 1, - aux_sym_macro_definition_repeat1, - STATE(2317), 1, - sym_macro_rule, - STATE(2422), 1, - sym_token_tree_pattern, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(4049), 1, + anon_sym_SEMI, + STATE(897), 1, + sym_field_declaration_list, + STATE(2072), 1, + sym_ordered_field_declaration_list, + STATE(2186), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56454] = 7, - ACTIONS(3826), 1, + [54974] = 7, + ACTIONS(3776), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(3780), 1, anon_sym_LT, - STATE(386), 1, + STATE(806), 1, sym_field_declaration_list, - STATE(1858), 1, + STATE(1754), 1, sym_type_parameters, - STATE(2250), 1, + STATE(2128), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56477] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [54997] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4079), 1, + ACTIONS(3850), 1, + anon_sym_LBRACE, + ACTIONS(4051), 1, anon_sym_SEMI, - ACTIONS(4081), 1, + ACTIONS(4053), 1, anon_sym_PLUS, - STATE(407), 1, + STATE(379), 1, sym_declaration_list, - STATE(1953), 1, + STATE(2027), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56500] = 7, - ACTIONS(3828), 1, + [55020] = 4, + ACTIONS(3508), 1, + anon_sym_COLON_COLON, + ACTIONS(3856), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LT, - ACTIONS(4083), 1, + [55037] = 7, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3850), 1, anon_sym_LBRACE, - STATE(492), 1, - sym_enum_variant_list, - STATE(1812), 1, - sym_type_parameters, - STATE(2312), 1, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4055), 1, + anon_sym_SEMI, + STATE(275), 1, + sym_declaration_list, + STATE(2016), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56523] = 7, - ACTIONS(3826), 1, + [55060] = 7, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3850), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4057), 1, + anon_sym_SEMI, + STATE(272), 1, + sym_declaration_list, + STATE(1910), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55083] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(4059), 1, + anon_sym_SEMI, + ACTIONS(4061), 1, + anon_sym_LBRACE, + ACTIONS(4063), 1, + anon_sym_DASH_GT, + STATE(279), 1, + sym_block, + STATE(1868), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55106] = 7, + ACTIONS(3872), 1, + anon_sym_COLON, + ACTIONS(3874), 1, anon_sym_LT, - STATE(374), 1, + ACTIONS(4065), 1, + anon_sym_SEMI, + ACTIONS(4067), 1, + anon_sym_EQ, + STATE(1805), 1, + sym_type_parameters, + STATE(2429), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55129] = 7, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3780), 1, + anon_sym_LT, + ACTIONS(3794), 1, + anon_sym_LBRACE, + STATE(388), 1, sym_field_declaration_list, - STATE(1830), 1, + STATE(1808), 1, sym_type_parameters, - STATE(2303), 1, + STATE(2308), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56546] = 7, - ACTIONS(3828), 1, + [55152] = 5, + ACTIONS(4071), 1, + anon_sym_COLON, + ACTIONS(4073), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3425), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4069), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55171] = 4, + ACTIONS(4073), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3425), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2578), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [55188] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(3850), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(4085), 1, + ACTIONS(4075), 1, anon_sym_SEMI, - ACTIONS(4087), 1, + STATE(269), 1, + sym_declaration_list, + STATE(2013), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55211] = 7, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3850), 1, anon_sym_LBRACE, - STATE(424), 1, - sym_block, - STATE(1922), 1, + ACTIONS(3872), 1, + anon_sym_COLON, + STATE(321), 1, + sym_declaration_list, + STATE(1764), 1, + sym_trait_bounds, + STATE(2145), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56569] = 7, - ACTIONS(3828), 1, + [55234] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4089), 1, + ACTIONS(4077), 1, anon_sym_SEMI, - ACTIONS(4091), 1, + ACTIONS(4079), 1, anon_sym_LBRACE, - STATE(930), 1, + ACTIONS(4081), 1, + anon_sym_DASH_GT, + STATE(788), 1, sym_block, - STATE(2051), 1, + STATE(2107), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55257] = 7, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4083), 1, + anon_sym_SEMI, + STATE(820), 1, + sym_declaration_list, + STATE(2101), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56592] = 4, - ACTIONS(3556), 1, + [55280] = 4, + ACTIONS(3508), 1, anon_sym_COLON_COLON, - ACTIONS(3820), 1, + ACTIONS(3782), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2578), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56609] = 4, - ACTIONS(4093), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3698), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2742), 3, - anon_sym_SEMI, + [55297] = 7, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_PLUS, - anon_sym_DASH_GT, - [56626] = 4, - ACTIONS(4096), 1, - anon_sym_RBRACK, + ACTIONS(4085), 1, + anon_sym_SEMI, + STATE(841), 1, + sym_declaration_list, + STATE(2099), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3630), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2702), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [56643] = 7, - ACTIONS(3828), 1, + [55320] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(4087), 1, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, + ACTIONS(4087), 1, anon_sym_SEMI, - STATE(321), 1, + STATE(259), 1, sym_block, - STATE(1996), 1, + STATE(1994), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56666] = 7, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4081), 1, + [55343] = 4, + ACTIONS(3508), 1, + anon_sym_COLON_COLON, + ACTIONS(3804), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4087), 1, + anon_sym_where, + [55360] = 7, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(4101), 1, + ACTIONS(4089), 1, anon_sym_SEMI, - STATE(357), 1, + ACTIONS(4091), 1, + anon_sym_DASH_GT, + STATE(470), 1, sym_block, - STATE(2110), 1, + STATE(1934), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56689] = 5, - ACTIONS(4105), 1, - anon_sym_COLON, - ACTIONS(4107), 1, + [55383] = 4, + ACTIONS(3508), 1, anon_sym_COLON_COLON, + ACTIONS(3810), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4103), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56708] = 3, + ACTIONS(2578), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [55400] = 4, + ACTIONS(3508), 1, + anon_sym_COLON_COLON, + ACTIONS(3770), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3698), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2742), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [56723] = 7, - ACTIONS(3305), 1, + ACTIONS(2578), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4109), 1, - sym_identifier, - ACTIONS(4111), 1, - anon_sym_STAR, - STATE(2073), 1, - sym_use_list, - STATE(2358), 1, - sym_type_arguments, + anon_sym_PLUS, + anon_sym_where, + [55417] = 7, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(4061), 1, + anon_sym_LBRACE, + ACTIONS(4093), 1, + anon_sym_SEMI, + ACTIONS(4095), 1, + anon_sym_DASH_GT, + STATE(334), 1, + sym_block, + STATE(2114), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56746] = 7, - ACTIONS(3305), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4109), 1, - sym_identifier, - ACTIONS(4111), 1, - anon_sym_STAR, - STATE(2073), 1, - sym_use_list, - STATE(2355), 1, - sym_type_arguments, + [55440] = 4, + ACTIONS(3508), 1, + anon_sym_COLON_COLON, + ACTIONS(3820), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56769] = 7, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(4113), 1, - anon_sym_COMMA, - ACTIONS(4115), 1, - anon_sym_GT, - STATE(2018), 1, - aux_sym_type_parameters_repeat1, - STATE(2019), 1, - sym_trait_bounds, - STATE(2109), 1, - aux_sym_for_lifetimes_repeat1, + ACTIONS(2578), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [55457] = 4, + ACTIONS(4097), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56792] = 7, - ACTIONS(3538), 1, - anon_sym_EQ, - ACTIONS(3540), 1, + ACTIONS(3425), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2578), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [55474] = 7, + ACTIONS(2480), 1, + anon_sym_PLUS, + ACTIONS(3872), 1, + anon_sym_COLON, + ACTIONS(4099), 1, anon_sym_COMMA, - ACTIONS(3542), 1, + ACTIONS(4101), 1, anon_sym_GT, - ACTIONS(3902), 1, - anon_sym_COLON, - STATE(2015), 1, - sym_trait_bounds, - STATE(2017), 1, + STATE(1906), 1, aux_sym_type_parameters_repeat1, + STATE(1907), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56815] = 7, - ACTIONS(3828), 1, + [55497] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4087), 1, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(4117), 1, + ACTIONS(4103), 1, anon_sym_SEMI, - ACTIONS(4119), 1, + ACTIONS(4105), 1, anon_sym_DASH_GT, - STATE(359), 1, + STATE(319), 1, sym_block, - STATE(1970), 1, + STATE(2109), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56838] = 7, - ACTIONS(3796), 1, + [55520] = 7, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(4107), 1, + sym_identifier, + ACTIONS(4109), 1, + anon_sym_STAR, + STATE(1976), 1, + sym_use_list, + STATE(2471), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55543] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(4121), 1, + ACTIONS(4111), 1, anon_sym_SEMI, - STATE(443), 1, + STATE(866), 1, sym_declaration_list, - STATE(2098), 1, + STATE(2078), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56861] = 3, + [55566] = 6, + ACTIONS(3171), 1, + anon_sym_COLON_COLON, + ACTIONS(4099), 1, + anon_sym_COMMA, + ACTIONS(4101), 1, + anon_sym_GT, + STATE(1906), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3630), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2702), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [56876] = 7, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(2578), 2, anon_sym_PLUS, - ACTIONS(4091), 1, + anon_sym_as, + [55587] = 7, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(4123), 1, - anon_sym_SEMI, - STATE(852), 1, - sym_block, - STATE(1939), 1, - sym_where_clause, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(4107), 1, + sym_identifier, + ACTIONS(4109), 1, + anon_sym_STAR, + STATE(1976), 1, + sym_use_list, + STATE(2481), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56899] = 7, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4091), 1, - anon_sym_LBRACE, - ACTIONS(4125), 1, - anon_sym_SEMI, - ACTIONS(4127), 1, - anon_sym_DASH_GT, - STATE(873), 1, - sym_block, - STATE(2105), 1, - sym_where_clause, + [55610] = 6, + ACTIONS(3981), 1, + anon_sym_COLON_COLON, + ACTIONS(4113), 1, + anon_sym_LPAREN, + ACTIONS(4117), 1, + anon_sym_EQ, + STATE(2166), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56922] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + ACTIONS(4115), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55631] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(3902), 1, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(3872), 1, anon_sym_COLON, - STATE(868), 1, + STATE(883), 1, sym_declaration_list, - STATE(1824), 1, + STATE(1774), 1, sym_trait_bounds, - STATE(2188), 1, + STATE(2177), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56945] = 5, - ACTIONS(4131), 1, - anon_sym_COLON, - ACTIONS(4133), 1, + [55654] = 6, + ACTIONS(3985), 1, anon_sym_COLON_COLON, + ACTIONS(4113), 1, + anon_sym_LPAREN, + ACTIONS(4117), 1, + anon_sym_EQ, + STATE(2166), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4129), 2, + ACTIONS(4115), 2, anon_sym_RPAREN, anon_sym_COMMA, - [56964] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4135), 1, - anon_sym_SEMI, - STATE(944), 1, - sym_declaration_list, - STATE(2046), 1, - sym_where_clause, + [55675] = 6, + ACTIONS(3989), 1, + anon_sym_COLON_COLON, + ACTIONS(4113), 1, + anon_sym_LPAREN, + ACTIONS(4117), 1, + anon_sym_EQ, + STATE(2166), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56987] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + ACTIONS(4115), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55696] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4137), 1, + ACTIONS(4079), 1, + anon_sym_LBRACE, + ACTIONS(4119), 1, anon_sym_SEMI, - STATE(836), 1, - sym_declaration_list, - STATE(2113), 1, + ACTIONS(4121), 1, + anon_sym_DASH_GT, + STATE(889), 1, + sym_block, + STATE(2075), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57010] = 4, - ACTIONS(4133), 1, + [55719] = 6, + ACTIONS(3574), 1, anon_sym_COLON_COLON, + ACTIONS(4113), 1, + anon_sym_LPAREN, + ACTIONS(4125), 1, + anon_sym_EQ, + STATE(2169), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2614), 3, + ACTIONS(4123), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [57027] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [55740] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4139), 1, - anon_sym_SEMI, - STATE(946), 1, - sym_declaration_list, - STATE(2044), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57050] = 7, - ACTIONS(3796), 1, + ACTIONS(3850), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(4141), 1, + ACTIONS(4127), 1, anon_sym_SEMI, - STATE(453), 1, + STATE(351), 1, sym_declaration_list, - STATE(2074), 1, + STATE(2044), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57073] = 6, - ACTIONS(820), 1, - anon_sym_DOT_DOT, - ACTIONS(3915), 1, - sym_identifier, - ACTIONS(3921), 1, - anon_sym_ref, - ACTIONS(3923), 1, - sym_mutable_specifier, + [55763] = 7, + ACTIONS(3872), 1, + anon_sym_COLON, + ACTIONS(4129), 1, + anon_sym_COMMA, + ACTIONS(4131), 1, + anon_sym_GT, + STATE(1906), 1, + aux_sym_type_parameters_repeat1, + STATE(1907), 1, + sym_trait_bounds, + STATE(1981), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2287), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [57094] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [55786] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(3850), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(4143), 1, + ACTIONS(4133), 1, anon_sym_SEMI, - STATE(976), 1, + STATE(461), 1, sym_declaration_list, - STATE(2023), 1, + STATE(1957), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57117] = 7, - ACTIONS(3828), 1, + [55809] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(4145), 1, + ACTIONS(4135), 1, anon_sym_SEMI, - STATE(899), 1, + ACTIONS(4137), 1, + anon_sym_DASH_GT, + STATE(273), 1, sym_block, - STATE(1952), 1, + STATE(1955), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57140] = 4, - ACTIONS(4147), 1, - anon_sym_COLON_COLON, + [55832] = 7, + ACTIONS(3536), 1, + anon_sym_EQ, + ACTIONS(3872), 1, + anon_sym_COLON, + ACTIONS(4139), 1, + anon_sym_COMMA, + ACTIONS(4141), 1, + anon_sym_GT, + STATE(1901), 1, + sym_trait_bounds, + STATE(2089), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2614), 3, - anon_sym_SEMI, - anon_sym_RBRACK, + [55855] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2728), 2, anon_sym_PLUS, - [57157] = 7, - ACTIONS(3828), 1, + anon_sym_DASH_GT, + ACTIONS(3610), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4143), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55872] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4087), 1, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(4149), 1, + ACTIONS(4146), 1, anon_sym_SEMI, - ACTIONS(4151), 1, - anon_sym_DASH_GT, - STATE(445), 1, + STATE(406), 1, sym_block, - STATE(2157), 1, + STATE(1887), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57180] = 4, - ACTIONS(3556), 1, - anon_sym_COLON_COLON, - ACTIONS(3800), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + [55895] = 7, + ACTIONS(3778), 1, anon_sym_where, - [57197] = 7, - ACTIONS(3806), 1, + ACTIONS(3850), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(4153), 1, + ACTIONS(4148), 1, anon_sym_SEMI, - STATE(854), 1, + STATE(457), 1, sym_declaration_list, - STATE(2014), 1, + STATE(1942), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57220] = 4, - ACTIONS(3556), 1, - anon_sym_COLON_COLON, - ACTIONS(3802), 1, - anon_sym_for, + [55918] = 7, + ACTIONS(3536), 1, + anon_sym_EQ, + ACTIONS(3538), 1, + anon_sym_COMMA, + ACTIONS(3540), 1, + anon_sym_GT, + ACTIONS(3872), 1, + anon_sym_COLON, + STATE(1901), 1, + sym_trait_bounds, + STATE(1905), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55941] = 4, + ACTIONS(4143), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(3610), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2728), 3, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_where, - [57237] = 4, - ACTIONS(4155), 1, + anon_sym_DASH_GT, + [55958] = 4, + ACTIONS(4150), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, + ACTIONS(3425), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2614), 3, + ACTIONS(2578), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [57254] = 5, - ACTIONS(4131), 1, + [55975] = 5, + ACTIONS(4071), 1, anon_sym_COLON, - ACTIONS(4155), 1, + ACTIONS(4150), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, + ACTIONS(3425), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4129), 2, + ACTIONS(4069), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57273] = 7, - ACTIONS(3828), 1, + [55994] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4079), 1, anon_sym_LBRACE, - ACTIONS(4157), 1, + ACTIONS(4152), 1, anon_sym_SEMI, - STATE(919), 1, + STATE(925), 1, sym_block, - STATE(1960), 1, + STATE(2057), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57296] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4081), 1, + [56017] = 4, + ACTIONS(4154), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3684), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2636), 3, + anon_sym_SEMI, anon_sym_PLUS, + anon_sym_DASH_GT, + [56034] = 5, ACTIONS(4159), 1, + anon_sym_COLON, + ACTIONS(4161), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3425), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4157), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56053] = 7, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4163), 1, anon_sym_SEMI, - STATE(437), 1, + STATE(939), 1, sym_declaration_list, - STATE(2055), 1, + STATE(2056), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57319] = 7, - ACTIONS(3828), 1, + [56076] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4087), 1, + ACTIONS(3850), 1, anon_sym_LBRACE, - ACTIONS(4161), 1, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4165), 1, anon_sym_SEMI, - ACTIONS(4163), 1, - anon_sym_DASH_GT, - STATE(269), 1, - sym_block, - STATE(2010), 1, + STATE(342), 1, + sym_declaration_list, + STATE(2082), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57342] = 7, - ACTIONS(3828), 1, + [56099] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4091), 1, + ACTIONS(3850), 1, anon_sym_LBRACE, - ACTIONS(4165), 1, - anon_sym_SEMI, + ACTIONS(4053), 1, + anon_sym_PLUS, ACTIONS(4167), 1, - anon_sym_DASH_GT, - STATE(982), 1, - sym_block, - STATE(2013), 1, + anon_sym_SEMI, + STATE(346), 1, + sym_declaration_list, + STATE(2079), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57365] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [56122] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_PLUS, ACTIONS(4169), 1, anon_sym_SEMI, - STATE(814), 1, + STATE(943), 1, sym_declaration_list, - STATE(2124), 1, + STATE(2055), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57388] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [56145] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_PLUS, ACTIONS(4171), 1, anon_sym_SEMI, - STATE(815), 1, + STATE(973), 1, sym_declaration_list, - STATE(2131), 1, + STATE(2047), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57411] = 6, - ACTIONS(3193), 1, + [56168] = 4, + ACTIONS(3508), 1, anon_sym_COLON_COLON, - ACTIONS(4173), 1, - anon_sym_COMMA, - ACTIONS(4175), 1, - anon_sym_GT, - STATE(2018), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3862), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 2, - anon_sym_PLUS, - anon_sym_as, - [57432] = 7, - ACTIONS(3796), 1, + ACTIONS(2578), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3828), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3902), 1, - anon_sym_COLON, - STATE(282), 1, + [56185] = 7, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4173), 1, + anon_sym_SEMI, + STATE(989), 1, sym_declaration_list, - STATE(1799), 1, - sym_trait_bounds, - STATE(2208), 1, + STATE(2046), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57455] = 7, - ACTIONS(3828), 1, + [56208] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4087), 1, + ACTIONS(4079), 1, anon_sym_LBRACE, - ACTIONS(4177), 1, + ACTIONS(4175), 1, anon_sym_SEMI, - STATE(397), 1, + ACTIONS(4177), 1, + anon_sym_DASH_GT, + STATE(1006), 1, sym_block, - STATE(1969), 1, + STATE(2045), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57478] = 7, - ACTIONS(3828), 1, + [56231] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(3780), 1, anon_sym_LT, ACTIONS(4179), 1, anon_sym_LBRACE, - STATE(1006), 1, + STATE(845), 1, sym_enum_variant_list, - STATE(1836), 1, + STATE(1756), 1, sym_type_parameters, - STATE(2230), 1, + STATE(2123), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57501] = 7, - ACTIONS(3828), 1, + [56254] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4087), 1, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(3872), 1, + anon_sym_COLON, + STATE(1034), 1, + sym_declaration_list, + STATE(1791), 1, + sym_trait_bounds, + STATE(2225), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56277] = 7, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3850), 1, anon_sym_LBRACE, + ACTIONS(4053), 1, + anon_sym_PLUS, ACTIONS(4181), 1, anon_sym_SEMI, - STATE(473), 1, - sym_block, - STATE(1946), 1, + STATE(400), 1, + sym_declaration_list, + STATE(1954), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57524] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [56300] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, + ACTIONS(4079), 1, + anon_sym_LBRACE, ACTIONS(4183), 1, anon_sym_SEMI, - STATE(1038), 1, - sym_declaration_list, - STATE(2036), 1, + ACTIONS(4185), 1, + anon_sym_DASH_GT, + STATE(1033), 1, + sym_block, + STATE(2042), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57547] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [56323] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(3902), 1, - anon_sym_COLON, - STATE(418), 1, - sym_declaration_list, - STATE(1893), 1, - sym_trait_bounds, - STATE(2325), 1, + ACTIONS(3780), 1, + anon_sym_LT, + ACTIONS(4187), 1, + anon_sym_LBRACE, + STATE(456), 1, + sym_enum_variant_list, + STATE(1795), 1, + sym_type_parameters, + STATE(2249), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57570] = 7, - ACTIONS(3828), 1, + [56346] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4087), 1, + ACTIONS(3850), 1, anon_sym_LBRACE, - ACTIONS(4185), 1, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4189), 1, anon_sym_SEMI, - STATE(462), 1, - sym_block, - STATE(2140), 1, + STATE(377), 1, + sym_declaration_list, + STATE(2028), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57593] = 7, - ACTIONS(3828), 1, + [56369] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3684), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2636), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [56384] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4087), 1, - anon_sym_LBRACE, + ACTIONS(3780), 1, + anon_sym_LT, ACTIONS(4187), 1, - anon_sym_SEMI, - ACTIONS(4189), 1, - anon_sym_DASH_GT, - STATE(271), 1, - sym_block, - STATE(1904), 1, + anon_sym_LBRACE, + STATE(277), 1, + sym_enum_variant_list, + STATE(1797), 1, + sym_type_parameters, + STATE(2259), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57616] = 7, - ACTIONS(3828), 1, + [56407] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4087), 1, + ACTIONS(3798), 1, anon_sym_LBRACE, + ACTIONS(4053), 1, + anon_sym_PLUS, ACTIONS(4191), 1, anon_sym_SEMI, - ACTIONS(4193), 1, - anon_sym_DASH_GT, - STATE(322), 1, - sym_block, - STATE(1987), 1, + STATE(871), 1, + sym_declaration_list, + STATE(2115), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57639] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [56430] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(3850), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(4195), 1, + ACTIONS(4193), 1, anon_sym_SEMI, - STATE(425), 1, + STATE(430), 1, sym_declaration_list, - STATE(2084), 1, + STATE(1911), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57662] = 4, - ACTIONS(3556), 1, + [56453] = 4, + ACTIONS(3508), 1, anon_sym_COLON_COLON, - ACTIONS(3878), 1, + ACTIONS(3802), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2578), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57679] = 7, - ACTIONS(3828), 1, + [56470] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3610), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2728), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [56485] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4091), 1, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(4197), 1, + ACTIONS(4195), 1, anon_sym_SEMI, - ACTIONS(4199), 1, - anon_sym_DASH_GT, - STATE(842), 1, + STATE(393), 1, sym_block, - STATE(2152), 1, + STATE(1908), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57702] = 7, - ACTIONS(3902), 1, + [56508] = 7, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3850), 1, + anon_sym_LBRACE, + ACTIONS(3872), 1, anon_sym_COLON, - ACTIONS(3904), 1, - anon_sym_LT, - ACTIONS(4201), 1, - anon_sym_SEMI, - ACTIONS(4203), 1, - anon_sym_EQ, + STATE(425), 1, + sym_declaration_list, STATE(1834), 1, - sym_type_parameters, - STATE(2536), 1, sym_trait_bounds, + STATE(2203), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57725] = 7, - ACTIONS(3828), 1, + [56531] = 6, + ACTIONS(798), 1, + anon_sym_DOT_DOT, + ACTIONS(3884), 1, + sym_identifier, + ACTIONS(3890), 1, + anon_sym_ref, + ACTIONS(3892), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2310), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56552] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(3872), 1, + anon_sym_COLON, + STATE(920), 1, + sym_declaration_list, + STATE(1755), 1, + sym_trait_bounds, + STATE(2149), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56575] = 7, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3780), 1, anon_sym_LT, - ACTIONS(3862), 1, + ACTIONS(3794), 1, anon_sym_LBRACE, - STATE(1017), 1, + STATE(474), 1, sym_field_declaration_list, - STATE(1845), 1, + STATE(1786), 1, sym_type_parameters, - STATE(2219), 1, + STATE(2212), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57748] = 7, - ACTIONS(2476), 1, + [56598] = 7, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(4173), 1, - anon_sym_COMMA, - ACTIONS(4175), 1, - anon_sym_GT, - STATE(2018), 1, - aux_sym_type_parameters_repeat1, - STATE(2019), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57771] = 6, - ACTIONS(4051), 1, - anon_sym_COLON_COLON, - ACTIONS(4205), 1, - anon_sym_LPAREN, - ACTIONS(4209), 1, - anon_sym_EQ, - STATE(2213), 1, - sym_meta_arguments, + ACTIONS(4061), 1, + anon_sym_LBRACE, + ACTIONS(4197), 1, + anon_sym_SEMI, + STATE(299), 1, + sym_block, + STATE(2063), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4207), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57792] = 4, + [56621] = 7, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3780), 1, + anon_sym_LT, + ACTIONS(4179), 1, + anon_sym_LBRACE, + STATE(829), 1, + sym_enum_variant_list, + STATE(1796), 1, + sym_type_parameters, + STATE(2278), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2702), 2, + [56644] = 7, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(4053), 1, anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3630), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4096), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57809] = 6, - ACTIONS(4045), 1, - anon_sym_COLON_COLON, - ACTIONS(4205), 1, - anon_sym_LPAREN, - ACTIONS(4209), 1, - anon_sym_EQ, - STATE(2213), 1, - sym_meta_arguments, + ACTIONS(4061), 1, + anon_sym_LBRACE, + ACTIONS(4199), 1, + anon_sym_SEMI, + STATE(338), 1, + sym_block, + STATE(1921), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4207), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57830] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [56667] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(4211), 1, + ACTIONS(4201), 1, anon_sym_SEMI, - STATE(349), 1, + STATE(927), 1, sym_declaration_list, - STATE(2040), 1, + STATE(2026), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57853] = 7, - ACTIONS(3828), 1, + [56690] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4087), 1, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4079), 1, anon_sym_LBRACE, - ACTIONS(4213), 1, + ACTIONS(4203), 1, anon_sym_SEMI, - ACTIONS(4215), 1, - anon_sym_DASH_GT, - STATE(488), 1, + STATE(853), 1, sym_block, - STATE(2108), 1, + STATE(2039), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57876] = 6, - ACTIONS(4043), 1, - anon_sym_COLON_COLON, + [56713] = 7, + ACTIONS(3872), 1, + anon_sym_COLON, + ACTIONS(3874), 1, + anon_sym_LT, ACTIONS(4205), 1, - anon_sym_LPAREN, - ACTIONS(4209), 1, - anon_sym_EQ, - STATE(2213), 1, - sym_meta_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4207), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57897] = 7, - ACTIONS(3538), 1, + anon_sym_SEMI, + ACTIONS(4207), 1, anon_sym_EQ, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(4217), 1, - anon_sym_COMMA, - ACTIONS(4219), 1, - anon_sym_GT, - STATE(2015), 1, + STATE(1780), 1, + sym_type_parameters, + STATE(2398), 1, sym_trait_bounds, - STATE(2099), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57920] = 4, - ACTIONS(3556), 1, - anon_sym_COLON_COLON, - ACTIONS(3866), 1, - anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57937] = 7, - ACTIONS(3796), 1, + [56736] = 7, + ACTIONS(3776), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4221), 1, - anon_sym_SEMI, - STATE(471), 1, - sym_declaration_list, - STATE(1905), 1, + ACTIONS(3780), 1, + anon_sym_LT, + STATE(909), 1, + sym_field_declaration_list, + STATE(1779), 1, + sym_type_parameters, + STATE(2236), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57960] = 7, - ACTIONS(3828), 1, + [56759] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4091), 1, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(4223), 1, + ACTIONS(4209), 1, anon_sym_SEMI, - ACTIONS(4225), 1, + ACTIONS(4211), 1, anon_sym_DASH_GT, - STATE(970), 1, + STATE(421), 1, sym_block, - STATE(1963), 1, + STATE(1874), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57983] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [56782] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(4227), 1, + ACTIONS(4061), 1, + anon_sym_LBRACE, + ACTIONS(4213), 1, anon_sym_SEMI, - STATE(486), 1, - sym_declaration_list, - STATE(1906), 1, + STATE(386), 1, + sym_block, + STATE(1975), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58006] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [56805] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(3902), 1, - anon_sym_COLON, - STATE(1039), 1, - sym_declaration_list, - STATE(1844), 1, - sym_trait_bounds, - STATE(2237), 1, + ACTIONS(4079), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + anon_sym_SEMI, + ACTIONS(4217), 1, + anon_sym_DASH_GT, + STATE(1017), 1, + sym_block, + STATE(2080), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58029] = 7, - ACTIONS(3828), 1, + [56828] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4091), 1, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4079), 1, anon_sym_LBRACE, - ACTIONS(4229), 1, + ACTIONS(4219), 1, anon_sym_SEMI, - ACTIONS(4231), 1, - anon_sym_DASH_GT, - STATE(1041), 1, + STATE(990), 1, sym_block, - STATE(2003), 1, + STATE(2017), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58052] = 6, - ACTIONS(3590), 1, - anon_sym_COLON_COLON, - ACTIONS(4205), 1, - anon_sym_LPAREN, - ACTIONS(4235), 1, - anon_sym_EQ, - STATE(2215), 1, - sym_meta_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4233), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58073] = 7, - ACTIONS(3828), 1, + [56851] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4079), 1, anon_sym_LBRACE, - ACTIONS(4237), 1, + ACTIONS(4221), 1, anon_sym_SEMI, - STATE(986), 1, + STATE(963), 1, sym_block, - STATE(1972), 1, + STATE(2024), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58096] = 7, - ACTIONS(3806), 1, + [56874] = 7, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3850), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, + ACTIONS(3872), 1, + anon_sym_COLON, + STATE(355), 1, + sym_declaration_list, + STATE(1820), 1, + sym_trait_bounds, + STATE(2270), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56897] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(4239), 1, + ACTIONS(4079), 1, + anon_sym_LBRACE, + ACTIONS(4223), 1, anon_sym_SEMI, - STATE(1000), 1, - sym_declaration_list, - STATE(1977), 1, + STATE(934), 1, + sym_block, + STATE(2029), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58119] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [56920] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(4241), 1, + ACTIONS(4225), 1, anon_sym_SEMI, - STATE(301), 1, + STATE(808), 1, sym_declaration_list, - STATE(1907), 1, + STATE(2038), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58142] = 7, - ACTIONS(3828), 1, + [56943] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LT, - ACTIONS(3862), 1, + ACTIONS(4079), 1, anon_sym_LBRACE, - STATE(864), 1, - sym_field_declaration_list, - STATE(1855), 1, - sym_type_parameters, - STATE(2161), 1, + ACTIONS(4227), 1, + anon_sym_SEMI, + ACTIONS(4229), 1, + anon_sym_DASH_GT, + STATE(843), 1, + sym_block, + STATE(2031), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58165] = 7, - ACTIONS(3828), 1, + [56966] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LT, - ACTIONS(4179), 1, + ACTIONS(3798), 1, anon_sym_LBRACE, - STATE(872), 1, - sym_enum_variant_list, - STATE(1842), 1, - sym_type_parameters, - STATE(2170), 1, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4231), 1, + anon_sym_SEMI, + STATE(814), 1, + sym_declaration_list, + STATE(2037), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58188] = 4, - ACTIONS(3556), 1, - anon_sym_COLON_COLON, - ACTIONS(3886), 1, - anon_sym_for, + [56989] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2636), 2, anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3684), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4154), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57006] = 7, + ACTIONS(3778), 1, anon_sym_where, - [58205] = 7, - ACTIONS(3796), 1, + ACTIONS(3798), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(3902), 1, - anon_sym_COLON, - STATE(272), 1, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4233), 1, + anon_sym_SEMI, + STATE(800), 1, sym_declaration_list, - STATE(1839), 1, - sym_trait_bounds, - STATE(2275), 1, + STATE(2094), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58228] = 7, - ACTIONS(3828), 1, + [57029] = 7, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4091), 1, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4079), 1, anon_sym_LBRACE, - ACTIONS(4243), 1, + ACTIONS(4235), 1, anon_sym_SEMI, - ACTIONS(4245), 1, - anon_sym_DASH_GT, - STATE(950), 1, + STATE(827), 1, sym_block, - STATE(2090), 1, + STATE(2036), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58251] = 7, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4091), 1, - anon_sym_LBRACE, - ACTIONS(4247), 1, - anon_sym_SEMI, - STATE(1055), 1, - sym_block, - STATE(1983), 1, - sym_where_clause, + [57052] = 4, + ACTIONS(4073), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58274] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4249), 1, - anon_sym_SEMI, - STATE(881), 1, - sym_declaration_list, - STATE(2127), 1, - sym_where_clause, + ACTIONS(3425), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4157), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57068] = 5, + ACTIONS(4237), 1, + anon_sym_RPAREN, + ACTIONS(4239), 1, + anon_sym_COMMA, + STATE(2074), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58297] = 7, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LT, - ACTIONS(4083), 1, - anon_sym_LBRACE, - STATE(276), 1, - sym_enum_variant_list, - STATE(1866), 1, - sym_type_parameters, - STATE(2273), 1, - sym_where_clause, + ACTIONS(3413), 2, + anon_sym_COLON, + anon_sym_PIPE, + [57086] = 6, + ACTIONS(2542), 1, + anon_sym_LPAREN, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3433), 1, + anon_sym_COLON_COLON, + STATE(1027), 1, + sym_parameters, + STATE(1346), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58320] = 4, - ACTIONS(3556), 1, - anon_sym_COLON_COLON, - ACTIONS(3856), 1, - anon_sym_for, + [57106] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(4241), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [58337] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4251), 1, - anon_sym_SEMI, - STATE(1008), 1, - sym_declaration_list, - STATE(1980), 1, - sym_where_clause, + anon_sym_EQ, + anon_sym_COMMA, + [57118] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58360] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4253), 1, + ACTIONS(4243), 5, anon_sym_SEMI, - STATE(296), 1, - sym_declaration_list, - STATE(2027), 1, - sym_where_clause, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [57130] = 5, + ACTIONS(3536), 1, + anon_sym_EQ, + ACTIONS(3872), 1, + anon_sym_COLON, + STATE(1901), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58383] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4255), 1, - anon_sym_SEMI, - STATE(393), 1, - sym_declaration_list, - STATE(1965), 1, - sym_where_clause, + ACTIONS(4245), 2, + anon_sym_COMMA, + anon_sym_GT, + [57148] = 6, + ACTIONS(4247), 1, + anon_sym_RPAREN, + ACTIONS(4249), 1, + anon_sym_COLON, + ACTIONS(4251), 1, + anon_sym_COMMA, + ACTIONS(4253), 1, + anon_sym_PIPE, + STATE(2019), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58406] = 4, + [57168] = 4, + ACTIONS(2578), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2742), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3698), 2, + ACTIONS(3413), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4093), 2, + ACTIONS(4255), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58423] = 4, - ACTIONS(3556), 1, + [57184] = 4, + ACTIONS(4073), 1, anon_sym_COLON_COLON, - ACTIONS(3890), 1, - anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(3425), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4258), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57200] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2833), 5, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [58440] = 7, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + anon_sym_COLON, anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4257), 1, + anon_sym_EQ, + [57212] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4260), 5, anon_sym_SEMI, - STATE(406), 1, - sym_declaration_list, - STATE(2079), 1, - sym_where_clause, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [57224] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58463] = 7, - ACTIONS(3806), 1, + ACTIONS(2841), 5, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3828), 1, + anon_sym_COLON, anon_sym_where, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4259), 1, - anon_sym_SEMI, - STATE(917), 1, - sym_declaration_list, - STATE(2104), 1, - sym_where_clause, + anon_sym_EQ, + [57236] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58486] = 7, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(3904), 1, - anon_sym_LT, - ACTIONS(4261), 1, + ACTIONS(4262), 5, anon_sym_SEMI, - ACTIONS(4263), 1, + anon_sym_RBRACE, + anon_sym_where, anon_sym_EQ, - STATE(1815), 1, - sym_type_parameters, - STATE(2496), 1, - sym_trait_bounds, + anon_sym_COMMA, + [57248] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58509] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + ACTIONS(4264), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3902), 1, + anon_sym_EQ, + anon_sym_COMMA, + [57260] = 5, + ACTIONS(3632), 1, anon_sym_COLON, - STATE(889), 1, - sym_declaration_list, - STATE(1835), 1, - sym_trait_bounds, - STATE(2178), 1, - sym_where_clause, + ACTIONS(3634), 1, + anon_sym_BANG, + ACTIONS(3636), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58532] = 2, + ACTIONS(3530), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [57278] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4265), 5, + ACTIONS(4266), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58544] = 2, + [57290] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2925), 5, + ACTIONS(4268), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, - [58556] = 5, - ACTIONS(3654), 1, - anon_sym_COLON, - ACTIONS(3656), 1, - anon_sym_BANG, - ACTIONS(3682), 1, - anon_sym_COLON_COLON, + anon_sym_COMMA, + [57302] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58574] = 4, - ACTIONS(4267), 1, - anon_sym_RBRACK, + ACTIONS(4270), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [57314] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 2, + ACTIONS(4272), 5, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3441), 2, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_PIPE, - [58590] = 4, - ACTIONS(4270), 1, - anon_sym_RBRACK, + [57326] = 6, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3433), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_COLON, + STATE(1346), 1, + sym_type_arguments, + STATE(2088), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2826), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3646), 2, + [57346] = 5, + ACTIONS(764), 1, + anon_sym_RPAREN, + ACTIONS(4274), 1, anon_sym_COMMA, + STATE(1962), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3413), 2, + anon_sym_COLON, anon_sym_PIPE, - [58606] = 2, + [57364] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4273), 5, + ACTIONS(4276), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58618] = 4, - ACTIONS(2614), 1, + [57376] = 4, + ACTIONS(2981), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 2, + ACTIONS(3628), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4267), 2, + ACTIONS(4278), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58634] = 2, + [57392] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4275), 5, - anon_sym_SEMI, + ACTIONS(3905), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_where, + anon_sym_LBRACK, + [57404] = 3, + ACTIONS(4281), 1, anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2668), 4, + anon_sym_PLUS, anon_sym_COMMA, - [58646] = 2, + anon_sym_GT, + anon_sym_COLON_COLON, + [57418] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3039), 5, + ACTIONS(4283), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, - [58658] = 2, + anon_sym_COMMA, + [57430] = 4, + ACTIONS(4287), 1, + anon_sym_as, + ACTIONS(4289), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3047), 5, + ACTIONS(4285), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [58670] = 5, - ACTIONS(4277), 1, - anon_sym_RPAREN, - ACTIONS(4280), 1, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2146), 1, - aux_sym_parameters_repeat1, + [57446] = 6, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3433), 1, + anon_sym_COLON_COLON, + STATE(1346), 1, + sym_type_arguments, + STATE(1353), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 2, + [57466] = 6, + ACTIONS(3872), 1, anon_sym_COLON, - anon_sym_PIPE, - [58688] = 5, - ACTIONS(786), 1, + ACTIONS(4099), 1, + anon_sym_COMMA, + ACTIONS(4101), 1, + anon_sym_GT, + STATE(1906), 1, + aux_sym_type_parameters_repeat1, + STATE(1907), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57486] = 5, + ACTIONS(762), 1, anon_sym_RPAREN, - ACTIONS(4283), 1, + ACTIONS(4291), 1, anon_sym_COMMA, - STATE(2056), 1, + STATE(2059), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 2, + ACTIONS(3413), 2, anon_sym_COLON, anon_sym_PIPE, - [58706] = 4, - ACTIONS(602), 1, - anon_sym_LBRACE, - ACTIONS(4285), 1, - anon_sym_if, + [57504] = 4, + ACTIONS(4278), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(238), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [58722] = 5, - ACTIONS(790), 1, - anon_sym_RPAREN, - ACTIONS(4287), 1, + ACTIONS(2981), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3628), 2, anon_sym_COMMA, - STATE(1924), 1, - aux_sym_parameters_repeat1, + anon_sym_PIPE, + [57520] = 4, + ACTIONS(4150), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 2, + ACTIONS(3425), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4157), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57536] = 6, + ACTIONS(3872), 1, anon_sym_COLON, - anon_sym_PIPE, - [58740] = 2, + ACTIONS(4293), 1, + anon_sym_COMMA, + ACTIONS(4295), 1, + anon_sym_GT, + STATE(1907), 1, + sym_trait_bounds, + STATE(2091), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4289), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + [57556] = 5, + ACTIONS(4297), 1, + anon_sym_RPAREN, + ACTIONS(4299), 1, anon_sym_COMMA, - [58752] = 4, - ACTIONS(4133), 1, + STATE(2111), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3413), 2, + anon_sym_COLON, + anon_sym_PIPE, + [57574] = 4, + ACTIONS(4150), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, + ACTIONS(3425), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4103), 2, + ACTIONS(4258), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58768] = 2, + [57590] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4291), 5, + ACTIONS(2871), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - [58780] = 6, - ACTIONS(4293), 1, - anon_sym_RPAREN, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(4297), 1, - anon_sym_COMMA, - ACTIONS(4299), 1, - anon_sym_PIPE, - STATE(2141), 1, - aux_sym_tuple_pattern_repeat1, + [57602] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58800] = 2, + ACTIONS(2803), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [57614] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -122219,7028 +119225,6847 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58812] = 5, - ACTIONS(3552), 1, + [57626] = 4, + ACTIONS(4255), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3413), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [57642] = 5, + ACTIONS(3632), 1, + anon_sym_COLON, + ACTIONS(3634), 1, + anon_sym_BANG, + ACTIONS(3726), 1, anon_sym_COLON_COLON, - ACTIONS(3656), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3530), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [57660] = 5, + ACTIONS(3528), 1, + anon_sym_COLON_COLON, + ACTIONS(3634), 1, anon_sym_BANG, ACTIONS(4303), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, + ACTIONS(3530), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [58830] = 4, - ACTIONS(4133), 1, + [57678] = 5, + ACTIONS(3528), 1, anon_sym_COLON_COLON, + ACTIONS(3632), 1, + anon_sym_COLON, + ACTIONS(3634), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, + ACTIONS(3530), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4305), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58846] = 2, + [57696] = 4, + ACTIONS(4307), 1, + anon_sym_as, + ACTIONS(4309), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4307), 5, + ACTIONS(4305), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [58858] = 2, + [57712] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4309), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3413), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2578), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [58870] = 6, - ACTIONS(2572), 1, - anon_sym_LPAREN, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3461), 1, + [57726] = 4, + ACTIONS(4307), 1, + anon_sym_as, + ACTIONS(4311), 1, anon_sym_COLON_COLON, - STATE(911), 1, - sym_parameters, - STATE(1375), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58890] = 4, - ACTIONS(4155), 1, - anon_sym_COLON_COLON, + ACTIONS(4305), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [57742] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4103), 2, + ACTIONS(3628), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2981), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [58906] = 6, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3461), 1, + [57756] = 4, + ACTIONS(4307), 1, + anon_sym_as, + ACTIONS(4313), 1, anon_sym_COLON_COLON, - STATE(1375), 1, - sym_type_arguments, - STATE(1401), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58926] = 2, + ACTIONS(4305), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [57772] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4311), 5, + ACTIONS(4315), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58938] = 4, - ACTIONS(4315), 1, - anon_sym_as, - ACTIONS(4317), 1, - anon_sym_COLON_COLON, + [57784] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4313), 3, + ACTIONS(4317), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [57796] = 5, + ACTIONS(4319), 1, + anon_sym_RPAREN, + ACTIONS(4322), 1, anon_sym_COMMA, - [58954] = 2, + STATE(2074), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3413), 2, + anon_sym_COLON, + anon_sym_PIPE, + [57814] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4319), 5, + ACTIONS(2867), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - [58966] = 3, + [57826] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3646), 2, + ACTIONS(2783), 5, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2826), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [58980] = 6, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3461), 1, + anon_sym_where, + anon_sym_EQ, + [57838] = 4, + ACTIONS(3528), 1, anon_sym_COLON_COLON, - ACTIONS(3536), 1, - anon_sym_COLON, - STATE(1375), 1, - sym_type_arguments, - STATE(2138), 1, - sym_trait_bounds, + ACTIONS(3634), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59000] = 4, - ACTIONS(4323), 1, - anon_sym_as, + ACTIONS(3530), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [57853] = 5, + ACTIONS(2480), 1, + anon_sym_PLUS, ACTIONS(4325), 1, - anon_sym_COLON_COLON, + anon_sym_COMMA, + ACTIONS(4327), 1, + anon_sym_GT, + STATE(2105), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4321), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [57870] = 5, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4325), 1, anon_sym_COMMA, - [59016] = 2, + ACTIONS(4327), 1, + anon_sym_GT, + STATE(2105), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4327), 5, - anon_sym_SEMI, - anon_sym_RBRACE, + [57887] = 5, + ACTIONS(3776), 1, + anon_sym_LBRACE, + ACTIONS(3778), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [59028] = 6, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(4173), 1, + STATE(900), 1, + sym_field_declaration_list, + STATE(2188), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57904] = 5, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3798), 1, + anon_sym_LBRACE, + STATE(861), 1, + sym_declaration_list, + STATE(2171), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57921] = 5, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(4179), 1, + anon_sym_LBRACE, + STATE(893), 1, + sym_enum_variant_list, + STATE(2183), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57938] = 5, + ACTIONS(4099), 1, anon_sym_COMMA, - ACTIONS(4175), 1, + ACTIONS(4101), 1, anon_sym_GT, - STATE(2018), 1, + ACTIONS(4329), 1, + anon_sym_EQ, + STATE(1906), 1, aux_sym_type_parameters_repeat1, - STATE(2019), 1, - sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59048] = 4, - ACTIONS(2826), 1, - anon_sym_PLUS, + [57955] = 4, + ACTIONS(4331), 1, + anon_sym_COMMA, + STATE(1823), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3646), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4270), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59064] = 5, - ACTIONS(4329), 1, + ACTIONS(2879), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [57970] = 5, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4297), 1, anon_sym_RPAREN, - ACTIONS(4331), 1, + ACTIONS(4299), 1, anon_sym_COMMA, - STATE(2146), 1, + STATE(2111), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 2, - anon_sym_COLON, - anon_sym_PIPE, - [59082] = 5, - ACTIONS(3552), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_COLON, - ACTIONS(3656), 1, - anon_sym_BANG, + [57987] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4333), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1118), 2, + sym_if_expression, + sym_block, + [58002] = 5, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3798), 1, + anon_sym_LBRACE, + STATE(881), 1, + sym_declaration_list, + STATE(2176), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59100] = 3, - ACTIONS(4333), 1, - anon_sym_EQ, + [58019] = 5, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4237), 1, + anon_sym_RPAREN, + ACTIONS(4239), 1, + anon_sym_COMMA, + STATE(2074), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2746), 4, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - [59114] = 2, + [58036] = 5, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3780), 1, + anon_sym_LT, + STATE(1686), 1, + sym_parameters, + STATE(2260), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4335), 5, - anon_sym_SEMI, - anon_sym_RBRACE, + [58053] = 5, + ACTIONS(3778), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [59126] = 2, + ACTIONS(3850), 1, + anon_sym_LBRACE, + STATE(408), 1, + sym_declaration_list, + STATE(2299), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3031), 5, - anon_sym_SEMI, + [58070] = 5, + ACTIONS(4335), 1, + anon_sym_LPAREN, + ACTIONS(4337), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [59138] = 2, + ACTIONS(4339), 1, + anon_sym_LBRACK, + STATE(1898), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3021), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, + [58087] = 5, + ACTIONS(4113), 1, + anon_sym_LPAREN, + ACTIONS(4341), 1, + anon_sym_RBRACK, + ACTIONS(4343), 1, anon_sym_EQ, - [59150] = 3, + STATE(2431), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2614), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [59164] = 2, - ACTIONS(3), 2, + [58104] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1069), 1, sym_line_comment, - ACTIONS(3932), 5, - anon_sym_LPAREN, + ACTIONS(4345), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4347), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [58119] = 5, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4349), 1, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - [59176] = 2, + ACTIONS(4351), 1, + anon_sym_COMMA, + STATE(2034), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4337), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + [58136] = 5, + ACTIONS(762), 1, + anon_sym_RPAREN, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4291), 1, anon_sym_COMMA, - [59188] = 5, - ACTIONS(3538), 1, - anon_sym_EQ, - ACTIONS(3902), 1, - anon_sym_COLON, - STATE(2015), 1, - sym_trait_bounds, + STATE(2059), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4339), 2, + [58153] = 5, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4353), 1, + anon_sym_RPAREN, + ACTIONS(4355), 1, anon_sym_COMMA, - anon_sym_GT, - [59206] = 4, - ACTIONS(4323), 1, - anon_sym_as, - ACTIONS(4341), 1, - anon_sym_COLON_COLON, + STATE(1899), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4321), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [59222] = 5, - ACTIONS(3654), 1, - anon_sym_COLON, - ACTIONS(3656), 1, - anon_sym_BANG, - ACTIONS(3658), 1, - anon_sym_COLON_COLON, + [58170] = 3, + ACTIONS(4053), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59240] = 6, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(4343), 1, + ACTIONS(4357), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4345), 1, - anon_sym_GT, - STATE(2019), 1, - sym_trait_bounds, - STATE(2101), 1, - aux_sym_type_parameters_repeat1, + anon_sym_PIPE, + [58183] = 5, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3431), 1, + anon_sym_LPAREN, + STATE(1347), 1, + sym_type_arguments, + STATE(1352), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59260] = 2, + [58200] = 5, + ACTIONS(764), 1, + anon_sym_RPAREN, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4274), 1, + anon_sym_COMMA, + STATE(1962), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4347), 5, - anon_sym_SEMI, - anon_sym_RBRACE, + [58217] = 5, + ACTIONS(3778), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [59272] = 4, - ACTIONS(284), 1, + ACTIONS(3798), 1, anon_sym_LBRACE, - ACTIONS(4349), 1, - anon_sym_if, + STATE(1003), 1, + sym_declaration_list, + STATE(2219), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1112), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [59288] = 4, - ACTIONS(4155), 1, - anon_sym_COLON_COLON, + [58234] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4305), 2, + ACTIONS(3413), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4359), 2, anon_sym_RPAREN, anon_sym_COMMA, - [59304] = 4, - ACTIONS(15), 1, + [58247] = 5, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3798), 1, anon_sym_LBRACE, - ACTIONS(4351), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(121), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [59320] = 4, - ACTIONS(4323), 1, - anon_sym_as, - ACTIONS(4353), 1, - anon_sym_COLON_COLON, + STATE(1030), 1, + sym_declaration_list, + STATE(2224), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4321), 3, + [58264] = 5, + ACTIONS(3676), 1, + anon_sym_PIPE, + ACTIONS(4361), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [59336] = 2, + ACTIONS(4363), 1, + anon_sym_COLON, + ACTIONS(4365), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2806), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [59348] = 5, - ACTIONS(4355), 1, - anon_sym_RPAREN, - ACTIONS(4357), 1, - anon_sym_COMMA, - STATE(2147), 1, - aux_sym_parameters_repeat1, + [58281] = 5, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3780), 1, + anon_sym_LT, + STATE(1608), 1, + sym_parameters, + STATE(2257), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 2, - anon_sym_COLON, - anon_sym_PIPE, - [59366] = 5, - ACTIONS(3796), 1, + [58298] = 5, + ACTIONS(3776), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, + ACTIONS(3778), 1, anon_sym_where, - STATE(275), 1, - sym_declaration_list, - STATE(2276), 1, + STATE(878), 1, + sym_field_declaration_list, + STATE(2125), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59383] = 5, - ACTIONS(3305), 1, - anon_sym_LBRACE, - ACTIONS(4359), 1, - sym_identifier, - ACTIONS(4361), 1, - anon_sym_STAR, - STATE(2067), 1, - sym_use_list, + [58315] = 5, + ACTIONS(3872), 1, + anon_sym_COLON, + ACTIONS(4367), 1, + anon_sym_SEMI, + ACTIONS(4369), 1, + anon_sym_EQ, + STATE(2534), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59400] = 4, - ACTIONS(3), 1, + [58332] = 5, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3780), 1, + anon_sym_LT, + STATE(1628), 1, + sym_parameters, + STATE(2192), 1, + sym_type_parameters, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1097), 1, sym_line_comment, - ACTIONS(4363), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4365), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59415] = 5, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [58349] = 5, + ACTIONS(3778), 1, anon_sym_where, - STATE(1037), 1, + ACTIONS(3798), 1, + anon_sym_LBRACE, + STATE(930), 1, sym_declaration_list, - STATE(2236), 1, + STATE(2150), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59432] = 5, - ACTIONS(4025), 1, + [58366] = 5, + ACTIONS(4371), 1, anon_sym_LPAREN, - ACTIONS(4027), 1, + ACTIONS(4373), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + ACTIONS(4375), 1, anon_sym_LBRACK, - STATE(1086), 1, + STATE(82), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59449] = 4, - ACTIONS(4367), 1, - anon_sym_DQUOTE, - STATE(1881), 1, - aux_sym_string_literal_repeat1, + [58383] = 5, + ACTIONS(3676), 1, + anon_sym_PIPE, + ACTIONS(4377), 1, + anon_sym_SEMI, + ACTIONS(4379), 1, + anon_sym_COLON, + ACTIONS(4381), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4369), 2, - sym__string_content, - sym_escape_sequence, - [59464] = 5, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [58400] = 5, + ACTIONS(2542), 1, + anon_sym_LPAREN, + ACTIONS(3427), 1, + anon_sym_LT2, + STATE(1025), 1, + sym_parameters, + STATE(1347), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58417] = 5, + ACTIONS(3778), 1, anon_sym_where, - STATE(479), 1, - sym_declaration_list, - STATE(2163), 1, + ACTIONS(3794), 1, + anon_sym_LBRACE, + STATE(412), 1, + sym_field_declaration_list, + STATE(2154), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59481] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + [58434] = 5, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(4383), 1, + anon_sym_RBRACK, + ACTIONS(4385), 1, + anon_sym_COMMA, + STATE(1870), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4371), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + [58451] = 3, + ACTIONS(4253), 1, anon_sym_PIPE, - [59494] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4373), 3, + ACTIONS(4387), 3, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, + [58464] = 5, + ACTIONS(4253), 1, anon_sym_PIPE, - [59507] = 5, - ACTIONS(2476), 1, - anon_sym_PLUS, - ACTIONS(4375), 1, + ACTIONS(4389), 1, + anon_sym_RPAREN, + ACTIONS(4391), 1, anon_sym_COMMA, - ACTIONS(4377), 1, - anon_sym_GT, - STATE(2125), 1, - aux_sym_type_arguments_repeat1, + STATE(1869), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59524] = 5, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4375), 1, - anon_sym_COMMA, - ACTIONS(4377), 1, - anon_sym_GT, - STATE(2125), 1, - aux_sym_type_arguments_repeat1, + [58481] = 5, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3850), 1, + anon_sym_LBRACE, + STATE(354), 1, + sym_declaration_list, + STATE(2265), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59541] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + [58498] = 5, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3798), 1, + anon_sym_LBRACE, + STATE(836), 1, + sym_declaration_list, + STATE(2246), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4379), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [59554] = 5, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4355), 1, - anon_sym_RPAREN, - ACTIONS(4357), 1, + [58515] = 4, + ACTIONS(4393), 1, anon_sym_COMMA, - STATE(2147), 1, - aux_sym_parameters_repeat1, + STATE(1792), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59571] = 5, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4381), 1, + ACTIONS(4387), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [58530] = 5, + ACTIONS(4293), 1, anon_sym_COMMA, - ACTIONS(4383), 1, + ACTIONS(4295), 1, anon_sym_GT, - STATE(2155), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4329), 1, + anon_sym_EQ, + STATE(2091), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59588] = 3, - ACTIONS(4081), 1, + [58547] = 5, + ACTIONS(4053), 1, anon_sym_PLUS, + ACTIONS(4396), 1, + anon_sym_RPAREN, + ACTIONS(4398), 1, + anon_sym_COMMA, + STATE(2087), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4385), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [59601] = 5, - ACTIONS(2476), 1, - anon_sym_PLUS, - ACTIONS(4381), 1, - anon_sym_COMMA, - ACTIONS(4383), 1, - anon_sym_GT, - STATE(2155), 1, - aux_sym_type_arguments_repeat1, + [58564] = 5, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(4187), 1, + anon_sym_LBRACE, + STATE(418), 1, + sym_enum_variant_list, + STATE(2161), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59618] = 5, - ACTIONS(3796), 1, + [58581] = 5, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(4179), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, + STATE(996), 1, + sym_enum_variant_list, + STATE(2185), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58598] = 5, + ACTIONS(3778), 1, anon_sym_where, - STATE(415), 1, - sym_declaration_list, - STATE(2326), 1, + ACTIONS(4187), 1, + anon_sym_LBRACE, + STATE(282), 1, + sym_enum_variant_list, + STATE(2208), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59635] = 4, - ACTIONS(3902), 1, - anon_sym_COLON, - STATE(2019), 1, - sym_trait_bounds, + [58615] = 5, + ACTIONS(3971), 1, + anon_sym_LPAREN, + ACTIONS(3973), 1, + anon_sym_LBRACE, + ACTIONS(3975), 1, + anon_sym_LBRACK, + STATE(1068), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4387), 2, - anon_sym_COMMA, - anon_sym_GT, - [59650] = 5, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(4389), 1, - anon_sym_SEMI, - ACTIONS(4391), 1, - anon_sym_COLON, - ACTIONS(4393), 1, - anon_sym_EQ, + [58632] = 4, + ACTIONS(4400), 1, + anon_sym_DQUOTE, + STATE(1827), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59667] = 5, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4083), 1, + ACTIONS(4402), 2, + sym__string_content, + sym_escape_sequence, + [58647] = 4, + ACTIONS(4404), 1, + anon_sym_DQUOTE, + STATE(1802), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4406), 2, + sym__string_content, + sym_escape_sequence, + [58662] = 5, + ACTIONS(4408), 1, + anon_sym_LPAREN, + ACTIONS(4410), 1, anon_sym_LBRACE, - STATE(286), 1, - sym_enum_variant_list, - STATE(2252), 1, - sym_where_clause, + ACTIONS(4412), 1, + anon_sym_LBRACK, + STATE(1330), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59684] = 4, - ACTIONS(3656), 1, - anon_sym_BANG, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, + [58679] = 4, + ACTIONS(4414), 1, + anon_sym_DQUOTE, + STATE(1827), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59699] = 5, - ACTIONS(4299), 1, + ACTIONS(4402), 2, + sym__string_content, + sym_escape_sequence, + [58694] = 5, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(4395), 1, - anon_sym_RBRACK, - ACTIONS(4397), 1, - anon_sym_COMMA, - STATE(1975), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4416), 1, + anon_sym_SEMI, + ACTIONS(4418), 1, + anon_sym_COLON, + ACTIONS(4420), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59716] = 5, - ACTIONS(3902), 1, + [58711] = 5, + ACTIONS(4408), 1, + anon_sym_LPAREN, + ACTIONS(4410), 1, + anon_sym_LBRACE, + ACTIONS(4412), 1, + anon_sym_LBRACK, + STATE(1327), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58728] = 5, + ACTIONS(3872), 1, anon_sym_COLON, - ACTIONS(4399), 1, + ACTIONS(4422), 1, anon_sym_SEMI, - ACTIONS(4401), 1, + ACTIONS(4424), 1, anon_sym_EQ, - STATE(2405), 1, + STATE(2370), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59733] = 5, - ACTIONS(4173), 1, + [58745] = 4, + ACTIONS(3872), 1, + anon_sym_COLON, + STATE(1907), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4426), 2, anon_sym_COMMA, - ACTIONS(4175), 1, anon_sym_GT, - ACTIONS(4403), 1, - anon_sym_EQ, - STATE(2018), 1, - aux_sym_type_parameters_repeat1, + [58760] = 3, + ACTIONS(4053), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59750] = 5, - ACTIONS(4299), 1, + ACTIONS(4428), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(4405), 1, - anon_sym_SEMI, - ACTIONS(4407), 1, - anon_sym_COLON, - ACTIONS(4409), 1, - anon_sym_EQ, + [58773] = 5, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(3794), 1, + anon_sym_LBRACE, + STATE(398), 1, + sym_field_declaration_list, + STATE(2287), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59767] = 5, - ACTIONS(3796), 1, + [58790] = 4, + ACTIONS(632), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - STATE(284), 1, - sym_declaration_list, - STATE(2210), 1, - sym_where_clause, + ACTIONS(4430), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59784] = 5, - ACTIONS(3459), 1, + STATE(238), 2, + sym_if_expression, + sym_block, + [58805] = 5, + ACTIONS(3971), 1, anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LT, - STATE(1663), 1, - sym_parameters, - STATE(2289), 1, - sym_type_parameters, + ACTIONS(3973), 1, + anon_sym_LBRACE, + ACTIONS(3975), 1, + anon_sym_LBRACK, + STATE(1089), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59801] = 5, - ACTIONS(4025), 1, + [58822] = 4, + ACTIONS(4432), 1, + anon_sym_DQUOTE, + STATE(1813), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4434), 2, + sym__string_content, + sym_escape_sequence, + [58837] = 5, + ACTIONS(4436), 1, anon_sym_LPAREN, - ACTIONS(4027), 1, + ACTIONS(4438), 1, anon_sym_LBRACE, - ACTIONS(4029), 1, + ACTIONS(4440), 1, anon_sym_LBRACK, - STATE(1091), 1, + STATE(981), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59818] = 4, - ACTIONS(4411), 1, + [58854] = 4, + ACTIONS(4442), 1, anon_sym_DQUOTE, - STATE(1851), 1, + STATE(1827), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4413), 2, + ACTIONS(4402), 2, sym__string_content, sym_escape_sequence, - [59833] = 4, - ACTIONS(3902), 1, - anon_sym_COLON, - STATE(2019), 1, - sym_trait_bounds, + [58869] = 5, + ACTIONS(4436), 1, + anon_sym_LPAREN, + ACTIONS(4438), 1, + anon_sym_LBRACE, + ACTIONS(4440), 1, + anon_sym_LBRACK, + STATE(971), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4415), 2, - anon_sym_COMMA, - anon_sym_GT, - [59848] = 5, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LT, - STATE(1683), 1, - sym_parameters, - STATE(2245), 1, - sym_type_parameters, + [58886] = 4, + ACTIONS(4444), 1, + anon_sym_DQUOTE, + STATE(1799), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59865] = 5, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + ACTIONS(4446), 2, + sym__string_content, + sym_escape_sequence, + [58901] = 5, + ACTIONS(3778), 1, anon_sym_where, - STATE(987), 1, + ACTIONS(3850), 1, + anon_sym_LBRACE, + STATE(426), 1, sym_declaration_list, - STATE(2231), 1, + STATE(2206), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59882] = 5, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LT, - STATE(1659), 1, - sym_parameters, - STATE(2268), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59899] = 4, + [58918] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1097), 1, + ACTIONS(1069), 1, sym_line_comment, - ACTIONS(4418), 1, + ACTIONS(4448), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4420), 3, + ACTIONS(4450), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [59914] = 5, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(4422), 1, - anon_sym_RPAREN, - ACTIONS(4424), 1, - anon_sym_COMMA, - STATE(1973), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59931] = 5, - ACTIONS(4426), 1, + [58933] = 5, + ACTIONS(3431), 1, anon_sym_LPAREN, - ACTIONS(4428), 1, - anon_sym_LBRACE, - ACTIONS(4430), 1, - anon_sym_LBRACK, - STATE(1961), 1, - sym_token_tree, + ACTIONS(3780), 1, + anon_sym_LT, + STATE(1688), 1, + sym_parameters, + STATE(2241), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59948] = 4, - ACTIONS(4432), 1, - anon_sym_DQUOTE, - STATE(1798), 1, - aux_sym_string_literal_repeat1, + [58950] = 4, + ACTIONS(3634), 1, + anon_sym_BANG, + ACTIONS(3726), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4434), 2, - sym__string_content, - sym_escape_sequence, - [59963] = 5, - ACTIONS(3826), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + ACTIONS(3530), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [58965] = 5, + ACTIONS(3778), 1, anon_sym_where, - STATE(305), 1, - sym_field_declaration_list, - STATE(2247), 1, + ACTIONS(3850), 1, + anon_sym_LBRACE, + STATE(436), 1, + sym_declaration_list, + STATE(2221), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59980] = 5, - ACTIONS(3744), 1, - anon_sym_PIPE, - ACTIONS(4436), 1, - anon_sym_SEMI, - ACTIONS(4438), 1, - anon_sym_COLON, - ACTIONS(4440), 1, - anon_sym_EQ, + [58982] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59997] = 5, - ACTIONS(4442), 1, - anon_sym_LPAREN, - ACTIONS(4444), 1, - anon_sym_LBRACE, - ACTIONS(4446), 1, - anon_sym_LBRACK, - STATE(183), 1, - sym_delim_token_tree, + ACTIONS(3413), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4452), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58995] = 3, + ACTIONS(4454), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60014] = 5, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4329), 1, - anon_sym_RPAREN, - ACTIONS(4331), 1, + ACTIONS(4456), 3, + sym_self, + sym_super, + sym_crate, + [59008] = 4, + ACTIONS(4460), 1, anon_sym_COMMA, - STATE(2146), 1, - aux_sym_parameters_repeat1, + STATE(1823), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60031] = 5, - ACTIONS(3902), 1, - anon_sym_COLON, - ACTIONS(4448), 1, + ACTIONS(4458), 2, anon_sym_SEMI, - ACTIONS(4450), 1, - anon_sym_EQ, - STATE(2573), 1, - sym_trait_bounds, + anon_sym_LBRACE, + [59023] = 5, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4463), 1, + anon_sym_RPAREN, + ACTIONS(4465), 1, + anon_sym_COMMA, + STATE(2051), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60048] = 5, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - STATE(840), 1, - sym_declaration_list, - STATE(2182), 1, - sym_where_clause, + [59040] = 4, + ACTIONS(4467), 1, + anon_sym_DQUOTE, + STATE(1841), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60065] = 5, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4179), 1, - anon_sym_LBRACE, - STATE(957), 1, - sym_enum_variant_list, - STATE(2202), 1, - sym_where_clause, + ACTIONS(4469), 2, + sym__string_content, + sym_escape_sequence, + [59055] = 4, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(4471), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60082] = 5, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - STATE(860), 1, - sym_declaration_list, - STATE(2187), 1, - sym_where_clause, + STATE(1048), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [59070] = 4, + ACTIONS(4473), 1, + anon_sym_DQUOTE, + STATE(1827), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60099] = 5, - ACTIONS(4293), 1, - anon_sym_RPAREN, - ACTIONS(4297), 1, + ACTIONS(4475), 2, + sym__string_content, + sym_escape_sequence, + [59085] = 4, + ACTIONS(4480), 1, anon_sym_COMMA, - ACTIONS(4299), 1, - anon_sym_PIPE, - STATE(2141), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1758), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60116] = 5, - ACTIONS(3796), 1, + ACTIONS(4478), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - STATE(385), 1, - sym_declaration_list, - STATE(2216), 1, - sym_where_clause, + [59100] = 4, + ACTIONS(3872), 1, + anon_sym_COLON, + STATE(1907), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60133] = 4, - ACTIONS(4107), 1, - anon_sym_COLON_COLON, - ACTIONS(4131), 1, + ACTIONS(4482), 2, + anon_sym_COMMA, + anon_sym_GT, + [59115] = 4, + ACTIONS(4159), 1, anon_sym_COLON, + ACTIONS(4161), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, + ACTIONS(3425), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [60148] = 4, - ACTIONS(3656), 1, - anon_sym_BANG, - ACTIONS(3682), 1, - anon_sym_COLON_COLON, + [59130] = 3, + ACTIONS(4485), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60163] = 5, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4179), 1, - anon_sym_LBRACE, - STATE(878), 1, - sym_enum_variant_list, - STATE(2195), 1, - sym_where_clause, + ACTIONS(3676), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [59143] = 5, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4487), 1, + anon_sym_RPAREN, + ACTIONS(4489), 1, + anon_sym_COMMA, + STATE(1928), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60180] = 4, - ACTIONS(3), 1, + [59160] = 5, + ACTIONS(3431), 1, + anon_sym_LPAREN, + ACTIONS(3780), 1, + anon_sym_LT, + STATE(1637), 1, + sym_parameters, + STATE(2215), 1, + sym_type_parameters, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1097), 1, sym_line_comment, - ACTIONS(4452), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4454), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60195] = 5, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, + [59177] = 5, + ACTIONS(3778), 1, anon_sym_where, - STATE(975), 1, + ACTIONS(3850), 1, + anon_sym_LBRACE, + STATE(339), 1, sym_declaration_list, - STATE(2258), 1, + STATE(2173), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60212] = 5, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(3862), 1, - anon_sym_LBRACE, - STATE(884), 1, - sym_field_declaration_list, - STATE(2173), 1, - sym_where_clause, + [59194] = 5, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3872), 1, + anon_sym_COLON, + STATE(1347), 1, + sym_type_arguments, + STATE(2090), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60229] = 5, - ACTIONS(3459), 1, + [59211] = 5, + ACTIONS(3431), 1, anon_sym_LPAREN, - ACTIONS(3830), 1, + ACTIONS(3780), 1, anon_sym_LT, - STATE(1715), 1, + STATE(1665), 1, sym_parameters, - STATE(2267), 1, + STATE(2205), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60246] = 4, - ACTIONS(4456), 1, - anon_sym_COMMA, - STATE(1860), 1, - aux_sym_where_clause_repeat1, - ACTIONS(3), 2, + [59228] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(1069), 1, sym_line_comment, - ACTIONS(3027), 2, - anon_sym_SEMI, + ACTIONS(4491), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4493), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59243] = 5, + ACTIONS(4371), 1, + anon_sym_LPAREN, + ACTIONS(4373), 1, anon_sym_LBRACE, - [60261] = 5, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(4458), 1, - anon_sym_COMMA, - ACTIONS(4460), 1, - anon_sym_PIPE, - STATE(1921), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(73), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60278] = 5, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3902), 1, - anon_sym_COLON, - STATE(1386), 1, - sym_type_arguments, - STATE(2136), 1, - sym_trait_bounds, + [59260] = 5, + ACTIONS(3273), 1, + anon_sym_LBRACE, + ACTIONS(4495), 1, + sym_identifier, + ACTIONS(4497), 1, + anon_sym_STAR, + STATE(1967), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60295] = 4, - ACTIONS(3552), 1, - anon_sym_COLON_COLON, - ACTIONS(3656), 1, - anon_sym_BANG, + [59277] = 4, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(4499), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60310] = 4, - ACTIONS(4462), 1, + STATE(74), 2, + sym_if_expression, + sym_block, + [59292] = 4, + ACTIONS(4501), 1, anon_sym_DQUOTE, - STATE(1881), 1, + STATE(1827), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4369), 2, + ACTIONS(4402), 2, sym__string_content, sym_escape_sequence, - [60325] = 4, - ACTIONS(4466), 1, - anon_sym_COMMA, - STATE(1847), 1, - aux_sym_where_clause_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4464), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [60340] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, + [59307] = 4, + ACTIONS(3634), 1, + anon_sym_BANG, + ACTIONS(3730), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4468), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [60353] = 4, - ACTIONS(4470), 1, + ACTIONS(3530), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59322] = 5, + ACTIONS(2480), 1, + anon_sym_PLUS, + ACTIONS(4503), 1, anon_sym_COMMA, - STATE(1854), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4468), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [60368] = 5, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(3862), 1, - anon_sym_LBRACE, - STATE(901), 1, - sym_field_declaration_list, - STATE(2200), 1, - sym_where_clause, + ACTIONS(4505), 1, + anon_sym_GT, + STATE(2000), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60385] = 5, - ACTIONS(3305), 1, + [59339] = 5, + ACTIONS(3273), 1, anon_sym_LBRACE, - ACTIONS(4109), 1, + ACTIONS(4107), 1, sym_identifier, - ACTIONS(4111), 1, + ACTIONS(4109), 1, anon_sym_STAR, - STATE(2073), 1, + STATE(1976), 1, sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60402] = 5, - ACTIONS(4442), 1, - anon_sym_LPAREN, - ACTIONS(4444), 1, - anon_sym_LBRACE, - ACTIONS(4446), 1, - anon_sym_LBRACK, - STATE(110), 1, - sym_delim_token_tree, + [59356] = 5, + ACTIONS(4249), 1, + anon_sym_COLON, + ACTIONS(4507), 1, + anon_sym_COMMA, + ACTIONS(4509), 1, + anon_sym_PIPE, + STATE(1912), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60419] = 5, - ACTIONS(3826), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - STATE(428), 1, - sym_field_declaration_list, - STATE(2322), 1, - sym_where_clause, + [59373] = 3, + ACTIONS(4053), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60436] = 5, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4473), 1, + ACTIONS(4511), 3, anon_sym_RPAREN, - ACTIONS(4475), 1, anon_sym_COMMA, - STATE(2097), 1, - aux_sym_tuple_type_repeat1, + anon_sym_PIPE, + [59386] = 3, + ACTIONS(4053), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60453] = 4, - ACTIONS(4479), 1, + ACTIONS(4513), 3, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1860), 1, - aux_sym_where_clause_repeat1, + anon_sym_PIPE, + [59399] = 4, + ACTIONS(4071), 1, + anon_sym_COLON, + ACTIONS(4161), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4477), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [60468] = 3, + ACTIONS(3425), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59414] = 5, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4503), 1, + anon_sym_COMMA, + ACTIONS(4505), 1, + anon_sym_GT, + STATE(2000), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4482), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60481] = 4, + [59431] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1097), 1, + ACTIONS(1069), 1, sym_line_comment, - ACTIONS(4484), 1, + ACTIONS(4515), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4486), 3, + ACTIONS(4517), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [60496] = 5, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4488), 1, - anon_sym_RPAREN, - ACTIONS(4490), 1, - anon_sym_COMMA, - STATE(2139), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [59446] = 4, + ACTIONS(3634), 1, + anon_sym_BANG, + ACTIONS(3636), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60513] = 4, - ACTIONS(4492), 1, - anon_sym_DQUOTE, - STATE(1887), 1, - aux_sym_string_literal_repeat1, + ACTIONS(3530), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59461] = 5, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(4519), 1, + anon_sym_SEMI, + ACTIONS(4521), 1, + anon_sym_COLON, + ACTIONS(4523), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4494), 2, - sym__string_content, - sym_escape_sequence, - [60528] = 5, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3459), 1, - anon_sym_LPAREN, - STATE(1386), 1, - sym_type_arguments, - STATE(1399), 1, - sym_parameters, + [59478] = 5, + ACTIONS(4247), 1, + anon_sym_RPAREN, + ACTIONS(4251), 1, + anon_sym_COMMA, + ACTIONS(4253), 1, + anon_sym_PIPE, + STATE(2019), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60545] = 5, - ACTIONS(3828), 1, + [59495] = 5, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4083), 1, + ACTIONS(3850), 1, anon_sym_LBRACE, - STATE(432), 1, - sym_enum_variant_list, - STATE(2337), 1, + STATE(322), 1, + sym_declaration_list, + STATE(2243), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60562] = 5, - ACTIONS(4205), 1, - anon_sym_LPAREN, - ACTIONS(4496), 1, - anon_sym_RBRACK, - ACTIONS(4498), 1, - anon_sym_EQ, - STATE(2413), 1, - sym_meta_arguments, + [59512] = 3, + ACTIONS(4525), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60579] = 5, - ACTIONS(4500), 1, - anon_sym_LPAREN, - ACTIONS(4502), 1, - anon_sym_LBRACE, - ACTIONS(4504), 1, - anon_sym_LBRACK, - STATE(1372), 1, - sym_delim_token_tree, + ACTIONS(4527), 3, + sym_self, + sym_super, + sym_crate, + [59525] = 4, + ACTIONS(4297), 1, + anon_sym_RPAREN, + ACTIONS(4299), 1, + anon_sym_COMMA, + STATE(2111), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60596] = 5, - ACTIONS(4343), 1, + [59539] = 4, + ACTIONS(3806), 1, + anon_sym_RBRACE, + ACTIONS(4529), 1, anon_sym_COMMA, - ACTIONS(4345), 1, - anon_sym_GT, - ACTIONS(4403), 1, - anon_sym_EQ, - STATE(2101), 1, - aux_sym_type_parameters_repeat1, + STATE(1913), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60613] = 5, - ACTIONS(4506), 1, - anon_sym_LPAREN, - ACTIONS(4508), 1, - anon_sym_LBRACE, - ACTIONS(4510), 1, - anon_sym_LBRACK, - STATE(820), 1, - sym_delim_token_tree, + [59553] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60630] = 5, - ACTIONS(2572), 1, - anon_sym_LPAREN, - ACTIONS(3455), 1, - anon_sym_LT2, - STATE(909), 1, - sym_parameters, - STATE(1386), 1, - sym_type_arguments, + ACTIONS(4531), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [59563] = 4, + ACTIONS(4533), 1, + sym_identifier, + ACTIONS(4535), 1, + anon_sym_ref, + ACTIONS(4537), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60647] = 4, - ACTIONS(4512), 1, - anon_sym_DQUOTE, - STATE(1881), 1, - aux_sym_string_literal_repeat1, + [59577] = 4, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(4539), 1, + anon_sym_SEMI, + STATE(2442), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59591] = 4, + ACTIONS(3273), 1, + anon_sym_LBRACE, + ACTIONS(4541), 1, + sym_identifier, + STATE(1889), 1, + sym_use_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59605] = 4, + ACTIONS(4543), 1, + sym_identifier, + ACTIONS(4545), 1, + anon_sym_ref, + ACTIONS(4547), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4369), 2, - sym__string_content, - sym_escape_sequence, - [60662] = 5, - ACTIONS(3744), 1, - anon_sym_PIPE, - ACTIONS(4514), 1, - anon_sym_SEMI, - ACTIONS(4516), 1, - anon_sym_COLON, - ACTIONS(4518), 1, - anon_sym_EQ, + [59619] = 4, + ACTIONS(4237), 1, + anon_sym_RPAREN, + ACTIONS(4239), 1, + anon_sym_COMMA, + STATE(2074), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60679] = 5, - ACTIONS(4081), 1, + [59633] = 4, + ACTIONS(2480), 1, anon_sym_PLUS, - ACTIONS(4520), 1, - anon_sym_RPAREN, - ACTIONS(4522), 1, - anon_sym_COMMA, - STATE(2047), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4549), 1, + sym_mutable_specifier, + ACTIONS(4551), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60696] = 5, - ACTIONS(3459), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, + [59647] = 4, + ACTIONS(3780), 1, anon_sym_LT, - STATE(1724), 1, - sym_parameters, - STATE(2319), 1, + ACTIONS(4553), 1, + anon_sym_EQ, + STATE(2527), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60713] = 5, - ACTIONS(4506), 1, - anon_sym_LPAREN, - ACTIONS(4508), 1, - anon_sym_LBRACE, - ACTIONS(4510), 1, - anon_sym_LBRACK, - STATE(822), 1, - sym_delim_token_tree, + [59661] = 4, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4555), 1, + anon_sym_as, + ACTIONS(4557), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60730] = 4, - ACTIONS(4524), 1, - anon_sym_DQUOTE, - STATE(1872), 1, - aux_sym_string_literal_repeat1, + [59675] = 4, + ACTIONS(3850), 1, + anon_sym_LBRACE, + ACTIONS(4559), 1, + anon_sym_SEMI, + STATE(366), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4526), 2, - sym__string_content, - sym_escape_sequence, - [60745] = 4, - ACTIONS(4105), 1, - anon_sym_COLON, - ACTIONS(4107), 1, - anon_sym_COLON_COLON, + [59689] = 4, + ACTIONS(4061), 1, + anon_sym_LBRACE, + ACTIONS(4561), 1, + anon_sym_SEMI, + STATE(466), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60760] = 4, - ACTIONS(3656), 1, - anon_sym_BANG, - ACTIONS(3658), 1, - anon_sym_COLON_COLON, + [59703] = 4, + ACTIONS(2415), 1, + anon_sym_RPAREN, + ACTIONS(4563), 1, + anon_sym_COMMA, + STATE(1792), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60775] = 3, - ACTIONS(4528), 1, - anon_sym_COLON, + [59717] = 4, + ACTIONS(2345), 1, + anon_sym_RBRACK, + ACTIONS(4565), 1, + anon_sym_COMMA, + STATE(1792), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3744), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [60788] = 4, - ACTIONS(4530), 1, - anon_sym_DQUOTE, - STATE(1881), 1, - aux_sym_string_literal_repeat1, + [59731] = 3, + ACTIONS(4567), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4532), 2, - sym__string_content, - sym_escape_sequence, - [60803] = 3, + ACTIONS(4569), 2, + anon_sym_default, + anon_sym_union, + [59743] = 4, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4571), 1, + anon_sym_SEMI, + ACTIONS(4573), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4535), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60816] = 4, - ACTIONS(2333), 1, - anon_sym_POUND, - ACTIONS(4537), 1, + [59757] = 3, + ACTIONS(4575), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1098), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [60831] = 5, - ACTIONS(3806), 1, + ACTIONS(4577), 2, + anon_sym_default, + anon_sym_union, + [59769] = 4, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - STATE(891), 1, - sym_declaration_list, - STATE(2179), 1, - sym_where_clause, + ACTIONS(4579), 1, + anon_sym_SEMI, + STATE(332), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60848] = 5, - ACTIONS(3459), 1, + [59783] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4581), 3, anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LT, - STATE(1695), 1, - sym_parameters, - STATE(2313), 1, - sym_type_parameters, + anon_sym_RBRACK, + anon_sym_EQ, + [59793] = 3, + ACTIONS(4097), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60865] = 5, - ACTIONS(790), 1, - anon_sym_RPAREN, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4287), 1, + ACTIONS(3425), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59805] = 4, + ACTIONS(4583), 1, + anon_sym_RBRACE, + ACTIONS(4585), 1, anon_sym_COMMA, - STATE(1924), 1, - aux_sym_parameters_repeat1, + STATE(1877), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60882] = 4, - ACTIONS(4539), 1, - anon_sym_DQUOTE, - STATE(1881), 1, - aux_sym_string_literal_repeat1, + [59819] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4369), 2, - sym__string_content, - sym_escape_sequence, - [60897] = 5, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4541), 1, + ACTIONS(4588), 3, anon_sym_RPAREN, - ACTIONS(4543), 1, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1919), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [59829] = 3, + ACTIONS(4592), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60914] = 5, - ACTIONS(786), 1, - anon_sym_RPAREN, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4283), 1, + ACTIONS(4590), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2056), 1, - aux_sym_parameters_repeat1, + [59841] = 4, + ACTIONS(4594), 1, + anon_sym_RBRACE, + ACTIONS(4596), 1, + anon_sym_COMMA, + STATE(2003), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60931] = 3, - ACTIONS(4545), 1, - anon_sym_in, + [59855] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4547), 3, - sym_self, - sym_super, - sym_crate, - [60944] = 5, - ACTIONS(4500), 1, - anon_sym_LPAREN, - ACTIONS(4502), 1, - anon_sym_LBRACE, - ACTIONS(4504), 1, - anon_sym_LBRACK, - STATE(1369), 1, - sym_delim_token_tree, + ACTIONS(4598), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59865] = 4, + ACTIONS(4507), 1, + anon_sym_COMMA, + ACTIONS(4600), 1, + anon_sym_PIPE, + STATE(1912), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60961] = 3, - ACTIONS(4549), 1, - anon_sym_in, + [59879] = 4, + ACTIONS(4602), 1, + anon_sym_for, + ACTIONS(4604), 1, + anon_sym_loop, + ACTIONS(4606), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4551), 3, - sym_self, - sym_super, - sym_crate, - [60974] = 5, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(3828), 1, - anon_sym_where, - STATE(318), 1, - sym_declaration_list, - STATE(2279), 1, - sym_where_clause, + [59893] = 4, + ACTIONS(3293), 1, + anon_sym_RPAREN, + ACTIONS(4608), 1, + anon_sym_COMMA, + STATE(1884), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60991] = 5, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4553), 1, + [59907] = 4, + ACTIONS(404), 1, anon_sym_RPAREN, - ACTIONS(4555), 1, + ACTIONS(4611), 1, anon_sym_COMMA, - STATE(2007), 1, - aux_sym_tuple_type_repeat1, + STATE(1884), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61008] = 4, - ACTIONS(3796), 1, + [59921] = 4, + ACTIONS(4613), 1, + anon_sym_RPAREN, + ACTIONS(4615), 1, + anon_sym_COMMA, + STATE(2112), 1, + aux_sym_meta_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59935] = 4, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(4557), 1, + ACTIONS(4617), 1, anon_sym_SEMI, - STATE(464), 1, - sym_declaration_list, + STATE(432), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61022] = 4, - ACTIONS(3455), 1, + [59949] = 4, + ACTIONS(3427), 1, anon_sym_LT2, - ACTIONS(4559), 1, + ACTIONS(4619), 1, sym_identifier, - STATE(2358), 1, + STATE(2481), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61036] = 3, - ACTIONS(2476), 1, - anon_sym_PLUS, + [59963] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4561), 2, + ACTIONS(4621), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [61048] = 4, - ACTIONS(4561), 1, - anon_sym_GT, - ACTIONS(4563), 1, + [59973] = 4, + ACTIONS(4503), 1, anon_sym_COMMA, - STATE(1898), 1, + ACTIONS(4505), 1, + anon_sym_GT, + STATE(2000), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61062] = 4, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(4566), 1, - anon_sym_GT, - STATE(2223), 1, - sym_lifetime, + [59987] = 3, + ACTIONS(4150), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61076] = 4, - ACTIONS(3455), 1, + ACTIONS(3425), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59999] = 4, + ACTIONS(3427), 1, anon_sym_LT2, - ACTIONS(4568), 1, + ACTIONS(4619), 1, sym_identifier, - STATE(2358), 1, + STATE(2471), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61090] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4568), 1, - sym_identifier, - STATE(2355), 1, - sym_type_arguments, + [60013] = 4, + ACTIONS(4623), 1, + anon_sym_RBRACE, + ACTIONS(4625), 1, + anon_sym_COMMA, + STATE(1999), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61104] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + [60027] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4570), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61116] = 3, - ACTIONS(4081), 1, + ACTIONS(4627), 3, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60037] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4572), 2, + ACTIONS(4629), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_GT, - [61128] = 4, - ACTIONS(4087), 1, - anon_sym_LBRACE, - ACTIONS(4574), 1, - anon_sym_SEMI, - STATE(313), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61142] = 4, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(4576), 1, - anon_sym_SEMI, - STATE(379), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61156] = 4, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(4578), 1, - anon_sym_SEMI, - STATE(278), 1, - sym_declaration_list, + [60047] = 4, + ACTIONS(4631), 1, + anon_sym_RBRACE, + ACTIONS(4633), 1, + anon_sym_COMMA, + STATE(1960), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61170] = 4, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(4580), 1, - anon_sym_SEMI, - STATE(416), 1, - sym_declaration_list, + [60061] = 4, + ACTIONS(4635), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_COMMA, + STATE(1897), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61184] = 4, - ACTIONS(3590), 1, - anon_sym_COLON_COLON, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(4582), 1, - sym_identifier, + [60075] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61198] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4584), 1, + ACTIONS(4640), 3, anon_sym_SEMI, - ACTIONS(4586), 1, - anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACE, + [60085] = 4, + ACTIONS(2498), 1, + anon_sym_RPAREN, + ACTIONS(4642), 1, + anon_sym_COMMA, + STATE(1987), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61212] = 4, - ACTIONS(4588), 1, + [60099] = 4, + ACTIONS(4644), 1, anon_sym_COMMA, - ACTIONS(4591), 1, + ACTIONS(4646), 1, anon_sym_GT, - STATE(1910), 1, + STATE(1981), 1, aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61226] = 4, - ACTIONS(4593), 1, - anon_sym_RBRACE, - ACTIONS(4595), 1, - anon_sym_COMMA, - STATE(1911), 1, - aux_sym_struct_pattern_repeat1, + [60113] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61240] = 4, - ACTIONS(3830), 1, - anon_sym_LT, - ACTIONS(4598), 1, + ACTIONS(4648), 3, anon_sym_EQ, - STATE(2434), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61254] = 4, - ACTIONS(4600), 1, - anon_sym_for, - ACTIONS(4602), 1, - anon_sym_loop, - ACTIONS(4604), 1, - anon_sym_while, + anon_sym_COMMA, + anon_sym_GT, + [60123] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61268] = 4, - ACTIONS(2580), 1, + ACTIONS(4650), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [60133] = 4, + ACTIONS(2550), 1, anon_sym_LT2, - ACTIONS(4606), 1, + ACTIONS(4652), 1, sym_identifier, - STATE(831), 1, + STATE(962), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61282] = 4, - ACTIONS(4608), 1, + [60147] = 4, + ACTIONS(4654), 1, sym_identifier, - ACTIONS(4610), 1, - anon_sym_await, - ACTIONS(4612), 1, - sym_integer_literal, + ACTIONS(4656), 1, + anon_sym_ref, + ACTIONS(4658), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61296] = 4, - ACTIONS(4614), 1, - anon_sym_RBRACE, - ACTIONS(4616), 1, + [60161] = 4, + ACTIONS(3852), 1, + anon_sym_GT, + ACTIONS(4660), 1, anon_sym_COMMA, - STATE(2092), 1, - aux_sym_field_initializer_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61310] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, + STATE(1968), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4618), 2, - anon_sym_RBRACE, + [60175] = 4, + ACTIONS(3854), 1, + anon_sym_GT, + ACTIONS(4662), 1, anon_sym_COMMA, - [61322] = 3, - ACTIONS(4622), 1, - anon_sym_COLON, + STATE(1968), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4620), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61334] = 4, - ACTIONS(4624), 1, - anon_sym_RPAREN, - ACTIONS(4626), 1, - anon_sym_COMMA, - STATE(1932), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [60189] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61348] = 3, - ACTIONS(4630), 1, - anon_sym_COLON, + ACTIONS(4664), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [60199] = 4, + ACTIONS(4061), 1, + anon_sym_LBRACE, + ACTIONS(4666), 1, + anon_sym_SEMI, + STATE(410), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4628), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61360] = 4, - ACTIONS(4458), 1, - anon_sym_COMMA, - ACTIONS(4632), 1, - anon_sym_PIPE, - STATE(2088), 1, - aux_sym_closure_parameters_repeat1, + [60213] = 4, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4668), 1, + anon_sym_SEMI, + ACTIONS(4670), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61374] = 4, - ACTIONS(4087), 1, + [60227] = 4, + ACTIONS(3850), 1, anon_sym_LBRACE, - ACTIONS(4634), 1, + ACTIONS(4672), 1, anon_sym_SEMI, - STATE(371), 1, - sym_block, + STATE(459), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61388] = 4, - ACTIONS(284), 1, + [60241] = 4, + ACTIONS(3850), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, - anon_sym_PLUS, - STATE(1078), 1, - sym_block, + ACTIONS(4674), 1, + anon_sym_SEMI, + STATE(344), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61402] = 4, - ACTIONS(792), 1, - anon_sym_RPAREN, - ACTIONS(4636), 1, + [60255] = 4, + ACTIONS(4507), 1, anon_sym_COMMA, - STATE(1928), 1, - aux_sym_parameters_repeat1, + ACTIONS(4676), 1, + anon_sym_PIPE, + STATE(2007), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61416] = 3, - ACTIONS(3193), 1, - anon_sym_COLON_COLON, + [60269] = 4, + ACTIONS(4678), 1, + anon_sym_RBRACE, + ACTIONS(4680), 1, + anon_sym_COMMA, + STATE(1913), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4305), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61428] = 4, - ACTIONS(4638), 1, + [60283] = 4, + ACTIONS(4683), 1, sym_identifier, - ACTIONS(4640), 1, + ACTIONS(4685), 1, anon_sym_ref, - ACTIONS(4642), 1, + ACTIONS(4687), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61442] = 2, + [60297] = 4, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4689), 1, + anon_sym_SEMI, + ACTIONS(4691), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4644), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61452] = 4, - ACTIONS(4482), 1, - anon_sym_RPAREN, - ACTIONS(4646), 1, - anon_sym_COMMA, - STATE(1928), 1, - aux_sym_parameters_repeat1, + [60311] = 4, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(4693), 1, + anon_sym_EQ_GT, + ACTIONS(4695), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61466] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + [60325] = 4, + ACTIONS(3508), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_COLON, + STATE(2090), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4482), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61478] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + [60339] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4649), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61490] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4651), 1, - sym_identifier, - STATE(2355), 1, - sym_type_arguments, + ACTIONS(4697), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60349] = 4, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4699), 1, + anon_sym_SEMI, + ACTIONS(4701), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61504] = 4, - ACTIONS(4653), 1, - anon_sym_RPAREN, - ACTIONS(4655), 1, - anon_sym_COMMA, - STATE(1932), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [60363] = 3, + ACTIONS(4705), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61518] = 3, - ACTIONS(4658), 1, - sym_identifier, + ACTIONS(4703), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [60375] = 4, + ACTIONS(4061), 1, + anon_sym_LBRACE, + ACTIONS(4707), 1, + anon_sym_SEMI, + STATE(404), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4660), 2, - anon_sym_default, - anon_sym_union, - [61530] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4651), 1, - sym_identifier, - STATE(2358), 1, - sym_type_arguments, + [60389] = 4, + ACTIONS(4709), 1, + anon_sym_RBRACE, + ACTIONS(4711), 1, + anon_sym_COMMA, + STATE(2010), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61544] = 2, + [60403] = 4, + ACTIONS(4713), 1, + anon_sym_RBRACE, + ACTIONS(4715), 1, + anon_sym_COMMA, + STATE(1927), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4662), 3, - anon_sym_LPAREN, - anon_sym_RBRACK, + [60417] = 3, + ACTIONS(4719), 1, anon_sym_EQ, - [61554] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4664), 2, + ACTIONS(4717), 2, anon_sym_RBRACE, anon_sym_COMMA, - [61566] = 4, - ACTIONS(522), 1, - anon_sym_RBRACK, - ACTIONS(4666), 1, + [60429] = 4, + ACTIONS(3866), 1, + anon_sym_RBRACE, + ACTIONS(4721), 1, anon_sym_COMMA, - STATE(1985), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61580] = 2, + STATE(2077), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4668), 3, + [60443] = 3, + ACTIONS(4053), 1, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61590] = 4, - ACTIONS(4091), 1, - anon_sym_LBRACE, - ACTIONS(4670), 1, - anon_sym_SEMI, - STATE(833), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61604] = 4, - ACTIONS(4672), 1, + ACTIONS(4723), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60455] = 4, + ACTIONS(3866), 1, anon_sym_RBRACE, - ACTIONS(4674), 1, + ACTIONS(4721), 1, anon_sym_COMMA, - STATE(1940), 1, + STATE(2076), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61618] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4677), 1, - anon_sym_SEMI, - ACTIONS(4679), 1, - anon_sym_EQ, + [60469] = 4, + ACTIONS(4725), 1, + anon_sym_RPAREN, + ACTIONS(4727), 1, + anon_sym_COMMA, + STATE(2067), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61632] = 4, - ACTIONS(2580), 1, - anon_sym_LT2, - ACTIONS(4606), 1, - sym_identifier, - STATE(825), 1, - sym_type_arguments, + [60483] = 4, + ACTIONS(3532), 1, + anon_sym_COLON_COLON, + ACTIONS(3534), 1, + anon_sym_COLON, + STATE(2090), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61646] = 4, - ACTIONS(3864), 1, + [60497] = 4, + ACTIONS(3846), 1, anon_sym_RBRACE, - ACTIONS(4681), 1, + ACTIONS(4729), 1, anon_sym_COMMA, - STATE(1940), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1913), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61660] = 4, - ACTIONS(4683), 1, - anon_sym_RBRACE, - ACTIONS(4685), 1, - anon_sym_COMMA, - STATE(2130), 1, - aux_sym_enum_variant_list_repeat2, + [60511] = 4, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(4731), 1, + anon_sym_SEMI, + STATE(2415), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61674] = 2, + [60525] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4477), 3, + ACTIONS(4458), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, - [61684] = 4, - ACTIONS(4087), 1, + [60535] = 4, + ACTIONS(4733), 1, + anon_sym_for, + ACTIONS(4735), 1, + anon_sym_loop, + ACTIONS(4737), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60549] = 4, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(4687), 1, + ACTIONS(4739), 1, anon_sym_SEMI, - STATE(484), 1, + STATE(389), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61698] = 4, - ACTIONS(3534), 1, - anon_sym_COLON_COLON, - ACTIONS(3536), 1, - anon_sym_COLON, - STATE(2136), 1, - sym_trait_bounds, + [60563] = 3, + ACTIONS(4253), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61712] = 4, - ACTIONS(3874), 1, + ACTIONS(4741), 2, anon_sym_RBRACE, - ACTIONS(4689), 1, anon_sym_COMMA, - STATE(1957), 1, + [60575] = 4, + ACTIONS(4743), 1, + anon_sym_RBRACE, + ACTIONS(4745), 1, + anon_sym_COMMA, + STATE(2098), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61726] = 4, - ACTIONS(3536), 1, - anon_sym_COLON, - ACTIONS(3556), 1, + [60589] = 4, + ACTIONS(3574), 1, anon_sym_COLON_COLON, - STATE(2136), 1, - sym_trait_bounds, + ACTIONS(3927), 1, + anon_sym_BANG, + ACTIONS(4747), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60603] = 4, + ACTIONS(4749), 1, + sym_identifier, + ACTIONS(4751), 1, + anon_sym_await, + ACTIONS(4753), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61740] = 2, + [60617] = 4, + ACTIONS(2550), 1, + anon_sym_LT2, + ACTIONS(4652), 1, + sym_identifier, + STATE(811), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4691), 3, + [60631] = 4, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4755), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61750] = 4, - ACTIONS(4458), 1, - anon_sym_COMMA, - ACTIONS(4693), 1, - anon_sym_PIPE, - STATE(1921), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(4757), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61764] = 4, - ACTIONS(4091), 1, - anon_sym_LBRACE, - ACTIONS(4695), 1, + [60645] = 4, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4759), 1, anon_sym_SEMI, - STATE(838), 1, - sym_block, + ACTIONS(4761), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61778] = 4, - ACTIONS(3796), 1, + [60659] = 4, + ACTIONS(3850), 1, anon_sym_LBRACE, - ACTIONS(4697), 1, + ACTIONS(4763), 1, anon_sym_SEMI, - STATE(431), 1, + STATE(374), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61792] = 4, - ACTIONS(4699), 1, - anon_sym_RBRACE, - ACTIONS(4701), 1, - anon_sym_COMMA, - STATE(2062), 1, - aux_sym_use_list_repeat1, + [60673] = 3, + ACTIONS(4073), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61806] = 3, - ACTIONS(4705), 1, - anon_sym_EQ, + ACTIONS(3425), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60685] = 4, + ACTIONS(3850), 1, + anon_sym_LBRACE, + ACTIONS(4765), 1, + anon_sym_SEMI, + STATE(465), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4703), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61818] = 2, + [60699] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4707), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61828] = 4, - ACTIONS(4709), 1, + ACTIONS(2375), 3, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(4711), 1, - anon_sym_COMMA, - STATE(1957), 1, - aux_sym_enum_variant_list_repeat2, + [60709] = 3, + ACTIONS(4053), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61842] = 3, - ACTIONS(4147), 1, - anon_sym_COLON_COLON, + ACTIONS(4452), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60721] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61854] = 2, + ACTIONS(4767), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60731] = 4, + ACTIONS(614), 1, + anon_sym_RBRACK, + ACTIONS(4769), 1, + anon_sym_COMMA, + STATE(1952), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4714), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61864] = 4, - ACTIONS(4091), 1, + [60745] = 4, + ACTIONS(2560), 1, anon_sym_LBRACE, - ACTIONS(4716), 1, - anon_sym_SEMI, - STATE(862), 1, - sym_block, + ACTIONS(4771), 1, + anon_sym_COLON_COLON, + STATE(1129), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61878] = 2, + [60759] = 4, + ACTIONS(4773), 1, + anon_sym_for, + ACTIONS(4775), 1, + anon_sym_loop, + ACTIONS(4777), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4718), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [61888] = 4, - ACTIONS(4329), 1, + [60773] = 4, + ACTIONS(4452), 1, anon_sym_RPAREN, - ACTIONS(4331), 1, + ACTIONS(4779), 1, anon_sym_COMMA, - STATE(2146), 1, + STATE(1951), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61902] = 4, - ACTIONS(4091), 1, - anon_sym_LBRACE, - ACTIONS(4720), 1, - anon_sym_SEMI, - STATE(902), 1, - sym_block, + [60787] = 4, + ACTIONS(3303), 1, + anon_sym_RBRACK, + ACTIONS(4782), 1, + anon_sym_COMMA, + STATE(1952), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61916] = 4, - ACTIONS(2476), 1, - anon_sym_PLUS, - ACTIONS(4722), 1, - sym_mutable_specifier, - ACTIONS(4724), 1, - sym_self, + [60801] = 4, + ACTIONS(632), 1, + anon_sym_LBRACE, + ACTIONS(4785), 1, + anon_sym_move, + STATE(233), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61930] = 4, - ACTIONS(3796), 1, + [60815] = 4, + ACTIONS(3850), 1, anon_sym_LBRACE, - ACTIONS(4726), 1, + ACTIONS(4787), 1, anon_sym_SEMI, - STATE(455), 1, + STATE(428), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61944] = 4, - ACTIONS(602), 1, + [60829] = 4, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(4728), 1, - anon_sym_move, - STATE(248), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61958] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4730), 1, + ACTIONS(4789), 1, anon_sym_SEMI, - ACTIONS(4732), 1, - anon_sym_EQ, + STATE(391), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61972] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4734), 1, - sym_identifier, - STATE(2355), 1, - sym_type_arguments, + [60843] = 3, + ACTIONS(3171), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61986] = 4, - ACTIONS(4087), 1, + ACTIONS(4258), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60855] = 4, + ACTIONS(3850), 1, anon_sym_LBRACE, - ACTIONS(4736), 1, + ACTIONS(4791), 1, anon_sym_SEMI, - STATE(476), 1, - sym_block, + STATE(382), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62000] = 4, - ACTIONS(4087), 1, - anon_sym_LBRACE, - ACTIONS(4738), 1, - anon_sym_SEMI, - STATE(440), 1, - sym_block, + [60869] = 4, + ACTIONS(3780), 1, + anon_sym_LT, + ACTIONS(4793), 1, + anon_sym_EQ, + STATE(2420), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62014] = 4, - ACTIONS(388), 1, - anon_sym_RPAREN, - ACTIONS(4740), 1, - anon_sym_COMMA, - STATE(1974), 1, - aux_sym_arguments_repeat1, + [60883] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62028] = 4, - ACTIONS(4091), 1, - anon_sym_LBRACE, - ACTIONS(4742), 1, + ACTIONS(4795), 3, anon_sym_SEMI, - STATE(915), 1, - sym_block, + anon_sym_RBRACE, + anon_sym_COMMA, + [60893] = 4, + ACTIONS(3355), 1, + anon_sym_RBRACE, + ACTIONS(4797), 1, + anon_sym_COMMA, + STATE(1897), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62042] = 4, - ACTIONS(2383), 1, - anon_sym_RPAREN, - ACTIONS(4744), 1, - anon_sym_COMMA, - STATE(1854), 1, - aux_sym_tuple_pattern_repeat1, + [60907] = 4, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(4799), 1, + sym_identifier, + STATE(2471), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62056] = 4, - ACTIONS(3325), 1, + [60921] = 4, + ACTIONS(768), 1, anon_sym_RPAREN, - ACTIONS(4746), 1, + ACTIONS(4801), 1, anon_sym_COMMA, - STATE(1974), 1, - aux_sym_arguments_repeat1, + STATE(1951), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62070] = 4, - ACTIONS(2371), 1, - anon_sym_RBRACK, - ACTIONS(4749), 1, - anon_sym_COMMA, - STATE(1854), 1, - aux_sym_tuple_pattern_repeat1, + [60935] = 4, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(4799), 1, + sym_identifier, + STATE(2481), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62084] = 4, - ACTIONS(4751), 1, - anon_sym_for, - ACTIONS(4753), 1, - anon_sym_loop, - ACTIONS(4755), 1, - anon_sym_while, + [60949] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62098] = 4, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(4757), 1, + ACTIONS(4803), 3, anon_sym_SEMI, - STATE(931), 1, - sym_declaration_list, + anon_sym_RBRACE, + anon_sym_COMMA, + [60959] = 3, + ACTIONS(4053), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62112] = 2, + ACTIONS(4805), 2, + anon_sym_COMMA, + anon_sym_GT, + [60971] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4759), 3, + ACTIONS(4807), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62122] = 3, - ACTIONS(4155), 1, - anon_sym_COLON_COLON, + [60981] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [62134] = 4, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(4761), 1, + ACTIONS(4809), 3, anon_sym_SEMI, - STATE(935), 1, - sym_declaration_list, + anon_sym_RBRACE, + anon_sym_COMMA, + [60991] = 4, + ACTIONS(4426), 1, + anon_sym_GT, + ACTIONS(4811), 1, + anon_sym_COMMA, + STATE(1968), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62148] = 2, + [61005] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4763), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [62158] = 4, - ACTIONS(3171), 1, - anon_sym_RPAREN, - ACTIONS(4765), 1, + ACTIONS(4814), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2148), 1, - aux_sym_meta_arguments_repeat1, + [61015] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62172] = 4, - ACTIONS(4091), 1, - anon_sym_LBRACE, - ACTIONS(4767), 1, + ACTIONS(4816), 3, anon_sym_SEMI, - STATE(947), 1, - sym_block, + anon_sym_RBRACE, + anon_sym_COMMA, + [61025] = 4, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(4818), 1, + sym_identifier, + STATE(2471), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62186] = 4, - ACTIONS(3455), 1, + [61039] = 4, + ACTIONS(3427), 1, anon_sym_LT2, - ACTIONS(4734), 1, + ACTIONS(4818), 1, sym_identifier, - STATE(2358), 1, + STATE(2481), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62200] = 4, - ACTIONS(3293), 1, - anon_sym_RBRACK, - ACTIONS(4769), 1, - anon_sym_COMMA, - STATE(1985), 1, - aux_sym_array_expression_repeat1, + [61053] = 3, + ACTIONS(4329), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62214] = 4, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4772), 1, - anon_sym_SEMI, - STATE(2541), 1, - sym_where_clause, + ACTIONS(4426), 2, + anon_sym_COMMA, + anon_sym_GT, + [61065] = 4, + ACTIONS(2560), 1, + anon_sym_LBRACE, + ACTIONS(4820), 1, + anon_sym_COLON_COLON, + STATE(1129), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62228] = 4, - ACTIONS(4087), 1, + [61079] = 4, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(4774), 1, + ACTIONS(4822), 1, anon_sym_SEMI, - STATE(459), 1, + STATE(296), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62242] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4776), 1, - anon_sym_as, - ACTIONS(4778), 1, - anon_sym_GT, + [61093] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62256] = 4, - ACTIONS(2618), 1, - anon_sym_LBRACE, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - STATE(1095), 1, - sym_field_initializer_list, + ACTIONS(4824), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [61103] = 3, + ACTIONS(4828), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62270] = 4, - ACTIONS(3806), 1, + ACTIONS(4826), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [61115] = 3, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4830), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [61127] = 4, + ACTIONS(3798), 1, anon_sym_LBRACE, - ACTIONS(4782), 1, + ACTIONS(4832), 1, anon_sym_SEMI, - STATE(1025), 1, + STATE(887), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62284] = 3, - ACTIONS(4786), 1, - anon_sym_COLON, + [61141] = 3, + ACTIONS(4053), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4784), 2, - anon_sym_RBRACE, + ACTIONS(4834), 2, anon_sym_COMMA, - [62296] = 4, - ACTIONS(4788), 1, - anon_sym_RBRACE, - ACTIONS(4790), 1, + anon_sym_GT, + [61153] = 4, + ACTIONS(4836), 1, anon_sym_COMMA, - STATE(2129), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(4838), 1, + anon_sym_GT, + STATE(2022), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62310] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4792), 1, - anon_sym_SEMI, - ACTIONS(4794), 1, - anon_sym_EQ, + [61167] = 4, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(4838), 1, + anon_sym_GT, + STATE(2262), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62324] = 4, - ACTIONS(4796), 1, - anon_sym_RBRACE, - ACTIONS(4798), 1, - anon_sym_COMMA, - STATE(1994), 1, - aux_sym_field_initializer_list_repeat1, + [61181] = 4, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(4107), 1, + sym_identifier, + STATE(2481), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62338] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4801), 1, - anon_sym_move, - STATE(1146), 1, - sym_block, + [61195] = 4, + ACTIONS(4840), 1, + anon_sym_RBRACE, + ACTIONS(4842), 1, + anon_sym_COMMA, + STATE(1984), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62352] = 4, - ACTIONS(4087), 1, - anon_sym_LBRACE, - ACTIONS(4803), 1, - anon_sym_SEMI, - STATE(444), 1, - sym_block, + [61209] = 4, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(4845), 1, + sym_identifier, + STATE(2471), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62366] = 2, + [61223] = 4, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(4845), 1, + sym_identifier, + STATE(2481), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4805), 3, + [61237] = 4, + ACTIONS(4847), 1, anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4849), 1, anon_sym_COMMA, - [62376] = 4, - ACTIONS(3830), 1, - anon_sym_LT, - ACTIONS(4807), 1, - anon_sym_EQ, - STATE(2550), 1, - sym_type_parameters, + STATE(1987), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62390] = 4, - ACTIONS(4375), 1, - anon_sym_COMMA, - ACTIONS(4377), 1, - anon_sym_GT, - STATE(2125), 1, - aux_sym_type_arguments_repeat1, + [61251] = 3, + ACTIONS(4053), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62404] = 4, - ACTIONS(4809), 1, + ACTIONS(4847), 2, anon_sym_RPAREN, - ACTIONS(4811), 1, anon_sym_COMMA, - STATE(1982), 1, - aux_sym_meta_arguments_repeat1, + [61263] = 3, + ACTIONS(4053), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62418] = 4, - ACTIONS(3455), 1, + ACTIONS(4852), 2, + anon_sym_COMMA, + anon_sym_GT, + [61275] = 3, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4854), 2, + anon_sym_COMMA, + anon_sym_GT, + [61287] = 4, + ACTIONS(2550), 1, anon_sym_LT2, - ACTIONS(4813), 1, + ACTIONS(4856), 1, sym_identifier, - STATE(2355), 1, + STATE(1192), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62432] = 4, - ACTIONS(2580), 1, + [61301] = 4, + ACTIONS(3427), 1, anon_sym_LT2, - ACTIONS(4815), 1, + ACTIONS(4107), 1, sym_identifier, - STATE(1219), 1, + STATE(2471), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62446] = 4, - ACTIONS(4091), 1, + [61315] = 4, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4858), 1, + anon_sym_SEMI, + ACTIONS(4860), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61329] = 4, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(4817), 1, + ACTIONS(4862), 1, anon_sym_SEMI, - STATE(962), 1, + STATE(361), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62460] = 4, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4819), 1, - anon_sym_SEMI, - STATE(2388), 1, - sym_where_clause, + [61343] = 4, + ACTIONS(630), 1, + anon_sym_RBRACK, + ACTIONS(3175), 1, + anon_sym_COMMA, + STATE(1952), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62474] = 4, - ACTIONS(3455), 1, + [61357] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4864), 1, + anon_sym_move, + STATE(1054), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61371] = 4, + ACTIONS(2550), 1, anon_sym_LT2, - ACTIONS(4813), 1, + ACTIONS(4856), 1, sym_identifier, - STATE(2358), 1, + STATE(1189), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62488] = 4, - ACTIONS(4821), 1, - anon_sym_RBRACE, - ACTIONS(4823), 1, + [61385] = 4, + ACTIONS(4866), 1, + anon_sym_RPAREN, + ACTIONS(4868), 1, anon_sym_COMMA, - STATE(2122), 1, - aux_sym_struct_pattern_repeat1, + STATE(1998), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62502] = 4, - ACTIONS(2532), 1, - anon_sym_RPAREN, - ACTIONS(4825), 1, + [61399] = 4, + ACTIONS(4017), 1, + anon_sym_RBRACE, + ACTIONS(4871), 1, anon_sym_COMMA, - STATE(2031), 1, - aux_sym_tuple_type_repeat1, + STATE(1984), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62516] = 4, - ACTIONS(2580), 1, - anon_sym_LT2, - ACTIONS(4815), 1, - sym_identifier, - STATE(1213), 1, - sym_type_arguments, + [61413] = 4, + ACTIONS(896), 1, + anon_sym_GT, + ACTIONS(4873), 1, + anon_sym_COMMA, + STATE(2009), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62530] = 2, + [61427] = 3, + ACTIONS(4249), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4827), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4875), 2, anon_sym_COMMA, - [62540] = 4, - ACTIONS(4087), 1, - anon_sym_LBRACE, - ACTIONS(4829), 1, - anon_sym_SEMI, - STATE(490), 1, - sym_block, + anon_sym_PIPE, + [61439] = 3, + ACTIONS(2480), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62554] = 4, - ACTIONS(4831), 1, + ACTIONS(4854), 2, anon_sym_COMMA, - ACTIONS(4833), 1, anon_sym_GT, - STATE(2109), 1, - aux_sym_for_lifetimes_repeat1, + [61451] = 4, + ACTIONS(4003), 1, + anon_sym_RBRACE, + ACTIONS(4877), 1, + anon_sym_COMMA, + STATE(1984), 1, + aux_sym_struct_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61465] = 3, + ACTIONS(4881), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62568] = 4, - ACTIONS(4835), 1, + ACTIONS(4879), 2, anon_sym_RBRACE, - ACTIONS(4837), 1, anon_sym_COMMA, - STATE(2012), 1, - aux_sym_use_list_repeat1, + [61477] = 4, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(4883), 1, + sym_identifier, + STATE(2471), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62582] = 4, - ACTIONS(4091), 1, - anon_sym_LBRACE, - ACTIONS(4840), 1, - anon_sym_SEMI, - STATE(990), 1, - sym_block, + [61491] = 4, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(4883), 1, + sym_identifier, + STATE(2481), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62596] = 4, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(4842), 1, - anon_sym_SEMI, - STATE(997), 1, - sym_declaration_list, + [61505] = 4, + ACTIONS(4875), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_COMMA, + STATE(2007), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62610] = 2, + [61519] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4053), 1, + anon_sym_PLUS, + STATE(1042), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4844), 3, - anon_sym_EQ, - anon_sym_COMMA, + [61533] = 4, + ACTIONS(4854), 1, anon_sym_GT, - [62620] = 2, + ACTIONS(4888), 1, + anon_sym_COMMA, + STATE(2009), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2401), 3, - anon_sym_SEMI, - anon_sym_RPAREN, + [61547] = 4, + ACTIONS(3836), 1, anon_sym_RBRACE, - [62630] = 4, - ACTIONS(3888), 1, - anon_sym_GT, - ACTIONS(4846), 1, + ACTIONS(4891), 1, anon_sym_COMMA, - STATE(2094), 1, - aux_sym_type_parameters_repeat1, + STATE(1877), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62644] = 4, - ACTIONS(3892), 1, - anon_sym_GT, - ACTIONS(4848), 1, - anon_sym_COMMA, - STATE(2094), 1, - aux_sym_type_parameters_repeat1, + [61561] = 4, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(4893), 1, + sym_identifier, + STATE(2481), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62658] = 2, + [61575] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4850), 3, - anon_sym_EQ, + ACTIONS(4895), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_GT, - [62668] = 2, + [61585] = 4, + ACTIONS(3850), 1, + anon_sym_LBRACE, + ACTIONS(4897), 1, + anon_sym_SEMI, + STATE(330), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4852), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62678] = 4, - ACTIONS(3305), 1, - anon_sym_LBRACE, - ACTIONS(4854), 1, - sym_identifier, - STATE(1950), 1, - sym_use_list, + [61599] = 3, + ACTIONS(4901), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62692] = 4, - ACTIONS(3455), 1, + ACTIONS(4899), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [61611] = 4, + ACTIONS(3427), 1, anon_sym_LT2, - ACTIONS(4559), 1, + ACTIONS(4893), 1, sym_identifier, - STATE(2355), 1, + STATE(2471), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62706] = 4, - ACTIONS(3806), 1, + [61625] = 4, + ACTIONS(3850), 1, anon_sym_LBRACE, - ACTIONS(4856), 1, + ACTIONS(4903), 1, anon_sym_SEMI, - STATE(1012), 1, + STATE(317), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62720] = 4, - ACTIONS(3896), 1, - anon_sym_RBRACE, - ACTIONS(4858), 1, - anon_sym_COMMA, - STATE(1940), 1, - aux_sym_field_declaration_list_repeat1, + [61639] = 4, + ACTIONS(4079), 1, + anon_sym_LBRACE, + ACTIONS(4905), 1, + anon_sym_SEMI, + STATE(1021), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62734] = 3, - ACTIONS(4081), 1, + [61653] = 4, + ACTIONS(4053), 1, anon_sym_PLUS, + ACTIONS(4907), 1, + anon_sym_SEMI, + ACTIONS(4909), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4860), 2, + [61667] = 4, + ACTIONS(2389), 1, + anon_sym_RPAREN, + ACTIONS(4911), 1, anon_sym_COMMA, - anon_sym_GT, - [62746] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + STATE(1792), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4561), 2, + [61681] = 4, + ACTIONS(4293), 1, anon_sym_COMMA, + ACTIONS(4295), 1, anon_sym_GT, - [62758] = 4, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(4862), 1, - anon_sym_SEMI, - STATE(398), 1, - sym_declaration_list, + STATE(2091), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62772] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4864), 1, - anon_sym_SEMI, - ACTIONS(4866), 1, - anon_sym_RBRACK, + [61695] = 4, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(4913), 1, + anon_sym_GT, + STATE(2262), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62786] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4868), 1, - anon_sym_SEMI, - ACTIONS(4870), 1, - anon_sym_EQ, + [61709] = 4, + ACTIONS(4915), 1, + anon_sym_COMMA, + ACTIONS(4918), 1, + anon_sym_GT, + STATE(2022), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62800] = 4, - ACTIONS(4343), 1, - anon_sym_COMMA, - ACTIONS(4345), 1, - anon_sym_GT, - STATE(2101), 1, - aux_sym_type_parameters_repeat1, + [61723] = 3, + ACTIONS(4053), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62814] = 4, - ACTIONS(4872), 1, - anon_sym_RPAREN, - ACTIONS(4874), 1, + ACTIONS(4920), 2, anon_sym_COMMA, - STATE(2031), 1, - aux_sym_tuple_type_repeat1, + anon_sym_GT, + [61735] = 4, + ACTIONS(4079), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, + anon_sym_SEMI, + STATE(998), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62828] = 3, - ACTIONS(4081), 1, + [61749] = 3, + ACTIONS(4053), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4877), 2, - anon_sym_RPAREN, + ACTIONS(4924), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [62840] = 4, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(4879), 1, - anon_sym_EQ_GT, - ACTIONS(4881), 1, - anon_sym_if, + [61761] = 4, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(4926), 1, + anon_sym_SEMI, + STATE(1028), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62854] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4883), 1, + [61775] = 4, + ACTIONS(3850), 1, + anon_sym_LBRACE, + ACTIONS(4928), 1, anon_sym_SEMI, - ACTIONS(4885), 1, - anon_sym_EQ, + STATE(293), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62868] = 2, + [61789] = 4, + ACTIONS(3850), 1, + anon_sym_LBRACE, + ACTIONS(4930), 1, + anon_sym_SEMI, + STATE(291), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4887), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62878] = 4, - ACTIONS(3806), 1, + [61803] = 4, + ACTIONS(4079), 1, anon_sym_LBRACE, - ACTIONS(4889), 1, + ACTIONS(4932), 1, anon_sym_SEMI, - STATE(913), 1, - sym_declaration_list, + STATE(984), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62892] = 4, - ACTIONS(2618), 1, + [61817] = 4, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(3748), 1, anon_sym_LBRACE, - ACTIONS(4891), 1, - anon_sym_COLON_COLON, - STATE(1095), 1, - sym_field_initializer_list, + STATE(1347), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62906] = 4, - ACTIONS(3870), 1, - anon_sym_RBRACE, - ACTIONS(4893), 1, - anon_sym_COMMA, - STATE(1943), 1, - aux_sym_field_declaration_list_repeat1, + [61831] = 4, + ACTIONS(4079), 1, + anon_sym_LBRACE, + ACTIONS(4934), 1, + anon_sym_SEMI, + STATE(959), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62920] = 4, - ACTIONS(4081), 1, + [61845] = 4, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(4895), 1, + ACTIONS(4936), 1, anon_sym_SEMI, - ACTIONS(4897), 1, + ACTIONS(4938), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62934] = 4, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(4899), 1, + [61859] = 4, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(4940), 1, anon_sym_SEMI, - STATE(315), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62948] = 4, - ACTIONS(3870), 1, - anon_sym_RBRACE, - ACTIONS(4893), 1, - anon_sym_COMMA, - STATE(1940), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2524), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62962] = 4, - ACTIONS(4901), 1, - anon_sym_RBRACE, - ACTIONS(4903), 1, + [61873] = 4, + ACTIONS(4942), 1, + anon_sym_RPAREN, + ACTIONS(4944), 1, anon_sym_COMMA, - STATE(2041), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2067), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62976] = 4, - ACTIONS(3828), 1, + [61887] = 4, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4905), 1, + ACTIONS(4946), 1, anon_sym_SEMI, - STATE(2565), 1, + STATE(2395), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62990] = 4, - ACTIONS(3806), 1, + [61901] = 4, + ACTIONS(4079), 1, anon_sym_LBRACE, - ACTIONS(4907), 1, + ACTIONS(4948), 1, anon_sym_SEMI, - STATE(1022), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63004] = 3, - ACTIONS(4133), 1, - anon_sym_COLON_COLON, + STATE(936), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [63016] = 4, - ACTIONS(3806), 1, + [61915] = 4, + ACTIONS(3798), 1, anon_sym_LBRACE, - ACTIONS(4909), 1, + ACTIONS(4950), 1, anon_sym_SEMI, - STATE(1044), 1, + STATE(928), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63030] = 4, - ACTIONS(4911), 1, - anon_sym_RPAREN, - ACTIONS(4913), 1, - anon_sym_COMMA, - STATE(1932), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [61929] = 4, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(4952), 1, + anon_sym_SEMI, + STATE(917), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63044] = 4, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(4915), 1, + [61943] = 4, + ACTIONS(4079), 1, + anon_sym_LBRACE, + ACTIONS(4954), 1, anon_sym_SEMI, - STATE(2464), 1, - sym_where_clause, + STATE(904), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63058] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4917), 1, - sym_identifier, - STATE(2355), 1, - sym_type_arguments, + [61957] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63072] = 4, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(4919), 1, + ACTIONS(4956), 3, anon_sym_SEMI, - STATE(364), 1, - sym_declaration_list, + anon_sym_RBRACE, + anon_sym_COMMA, + [61967] = 4, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(4958), 1, + anon_sym_SEMI, + STATE(2521), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63086] = 4, - ACTIONS(4091), 1, + [61981] = 4, + ACTIONS(4079), 1, anon_sym_LBRACE, - ACTIONS(4921), 1, + ACTIONS(4960), 1, anon_sym_SEMI, - STATE(800), 1, + STATE(851), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63100] = 4, - ACTIONS(4081), 1, + [61995] = 3, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(4923), 1, - anon_sym_SEMI, - ACTIONS(4925), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63114] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4927), 1, + ACTIONS(4962), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62007] = 4, + ACTIONS(3850), 1, + anon_sym_LBRACE, + ACTIONS(4964), 1, anon_sym_SEMI, - ACTIONS(4929), 1, - anon_sym_EQ, + STATE(288), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63128] = 4, - ACTIONS(4931), 1, - sym_identifier, - ACTIONS(4933), 1, - anon_sym_ref, - ACTIONS(4935), 1, - sym_mutable_specifier, + [62021] = 4, + ACTIONS(4079), 1, + anon_sym_LBRACE, + ACTIONS(4966), 1, + anon_sym_SEMI, + STATE(822), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63142] = 4, - ACTIONS(3796), 1, + [62035] = 4, + ACTIONS(3798), 1, anon_sym_LBRACE, - ACTIONS(4937), 1, + ACTIONS(4968), 1, anon_sym_SEMI, - STATE(287), 1, + STATE(817), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63156] = 4, - ACTIONS(794), 1, - anon_sym_RPAREN, - ACTIONS(4939), 1, - anon_sym_COMMA, - STATE(1928), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63170] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, + [62049] = 4, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(4970), 1, + anon_sym_SEMI, + STATE(804), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4941), 2, + [62063] = 4, + ACTIONS(3860), 1, anon_sym_RBRACE, + ACTIONS(4972), 1, anon_sym_COMMA, - [63182] = 4, - ACTIONS(4943), 1, - anon_sym_for, - ACTIONS(4945), 1, - anon_sym_loop, - ACTIONS(4947), 1, - anon_sym_while, + STATE(2076), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63196] = 2, + [62077] = 4, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4974), 1, + anon_sym_SEMI, + ACTIONS(4976), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4949), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63206] = 4, - ACTIONS(3806), 1, + [62091] = 4, + ACTIONS(3798), 1, anon_sym_LBRACE, - ACTIONS(4951), 1, + ACTIONS(4978), 1, anon_sym_SEMI, - STATE(867), 1, + STATE(826), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63220] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + [62105] = 4, + ACTIONS(4980), 1, + anon_sym_RPAREN, + ACTIONS(4982), 1, + anon_sym_COMMA, + STATE(2067), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4535), 2, + [62119] = 4, + ACTIONS(764), 1, anon_sym_RPAREN, + ACTIONS(4274), 1, anon_sym_COMMA, - [63232] = 4, - ACTIONS(3383), 1, - anon_sym_RBRACE, - ACTIONS(4953), 1, - anon_sym_COMMA, - STATE(2012), 1, - aux_sym_use_list_repeat1, + STATE(1962), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63246] = 4, - ACTIONS(4955), 1, - sym_identifier, - ACTIONS(4957), 1, - anon_sym_ref, - ACTIONS(4959), 1, - sym_mutable_specifier, + [62133] = 4, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(4984), 1, + anon_sym_SEMI, + ACTIONS(4986), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63260] = 2, + [62147] = 3, + ACTIONS(4053), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4961), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63270] = 4, - ACTIONS(3876), 1, - anon_sym_RBRACE, - ACTIONS(4963), 1, + ACTIONS(4988), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1957), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63284] = 2, + [62159] = 4, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(4990), 1, + anon_sym_SEMI, + STATE(796), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4965), 3, + [62173] = 4, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(4992), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63294] = 2, + STATE(794), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4967), 3, + [62187] = 4, + ACTIONS(4079), 1, + anon_sym_LBRACE, + ACTIONS(4994), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63304] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4917), 1, - sym_identifier, - STATE(2358), 1, - sym_type_arguments, + STATE(782), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63318] = 2, + [62201] = 3, + ACTIONS(4053), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2395), 3, - anon_sym_SEMI, + ACTIONS(4996), 2, + anon_sym_COMMA, + anon_sym_GT, + [62213] = 4, + ACTIONS(760), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [63328] = 4, - ACTIONS(512), 1, - anon_sym_RBRACK, - ACTIONS(3207), 1, + ACTIONS(4998), 1, anon_sym_COMMA, - STATE(1985), 1, - aux_sym_array_expression_repeat1, + STATE(1951), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63342] = 2, + [62227] = 3, + ACTIONS(4253), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4969), 3, - anon_sym_SEMI, + ACTIONS(5000), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62239] = 4, + ACTIONS(3826), 1, anon_sym_RBRACE, + ACTIONS(5002), 1, anon_sym_COMMA, - [63352] = 2, + STATE(1913), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4971), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63362] = 2, + [62253] = 4, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(5004), 1, + sym_identifier, + STATE(2481), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4973), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [63372] = 4, - ACTIONS(3796), 1, + [62267] = 4, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(5006), 1, anon_sym_SEMI, - STATE(283), 1, - sym_declaration_list, + STATE(302), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63386] = 4, - ACTIONS(4081), 1, + [62281] = 3, + ACTIONS(3171), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5008), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62293] = 4, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(4977), 1, + ACTIONS(5010), 1, anon_sym_SEMI, - ACTIONS(4979), 1, + ACTIONS(5012), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63400] = 2, + [62307] = 3, + ACTIONS(4161), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4981), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [63410] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, + ACTIONS(3425), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62319] = 4, + ACTIONS(5014), 1, + anon_sym_RPAREN, + ACTIONS(5016), 1, + anon_sym_COMMA, + STATE(2067), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4983), 2, - anon_sym_RBRACE, + [62333] = 4, + ACTIONS(392), 1, + anon_sym_RPAREN, + ACTIONS(3201), 1, anon_sym_COMMA, - [63422] = 3, - ACTIONS(3193), 1, - anon_sym_COLON_COLON, + STATE(1884), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4985), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63434] = 4, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(4987), 1, - anon_sym_SEMI, - STATE(435), 1, - sym_declaration_list, + [62347] = 3, + ACTIONS(4053), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63448] = 4, - ACTIONS(4989), 1, + ACTIONS(4359), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62359] = 4, + ACTIONS(5019), 1, anon_sym_RBRACE, - ACTIONS(4991), 1, + ACTIONS(5021), 1, anon_sym_COMMA, - STATE(2144), 1, + STATE(1857), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63462] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4109), 1, - sym_identifier, - STATE(2355), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63476] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(4109), 1, - sym_identifier, - STATE(2358), 1, - sym_type_arguments, + [62373] = 3, + ACTIONS(4053), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63490] = 4, - ACTIONS(3828), 1, + ACTIONS(5023), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62385] = 4, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5025), 1, anon_sym_SEMI, - STATE(2520), 1, + STATE(2427), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63504] = 4, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(4995), 1, + [62399] = 4, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(5027), 1, anon_sym_SEMI, - STATE(465), 1, - sym_declaration_list, + ACTIONS(5029), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63518] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(4997), 1, - anon_sym_SEMI, - ACTIONS(4999), 1, - anon_sym_EQ, + [62413] = 4, + ACTIONS(764), 1, + anon_sym_RPAREN, + ACTIONS(4274), 1, + anon_sym_COMMA, + STATE(1951), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63532] = 3, - ACTIONS(4295), 1, - anon_sym_COLON, + [62427] = 4, + ACTIONS(4079), 1, + anon_sym_LBRACE, + ACTIONS(5031), 1, + anon_sym_SEMI, + STATE(1011), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5001), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [63544] = 4, - ACTIONS(4355), 1, - anon_sym_RPAREN, - ACTIONS(4357), 1, + [62441] = 4, + ACTIONS(5033), 1, + anon_sym_RBRACE, + ACTIONS(5035), 1, anon_sym_COMMA, - STATE(2147), 1, - aux_sym_parameters_repeat1, + STATE(2076), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63558] = 4, - ACTIONS(5001), 1, - anon_sym_PIPE, - ACTIONS(5003), 1, + [62455] = 4, + ACTIONS(3844), 1, + anon_sym_RBRACE, + ACTIONS(5038), 1, anon_sym_COMMA, - STATE(2088), 1, - aux_sym_closure_parameters_repeat1, + STATE(2076), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63572] = 4, - ACTIONS(284), 1, + [62469] = 4, + ACTIONS(3798), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, - anon_sym_PLUS, - STATE(1074), 1, - sym_block, + ACTIONS(5040), 1, + anon_sym_SEMI, + STATE(982), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63586] = 4, - ACTIONS(4091), 1, + [62483] = 4, + ACTIONS(3850), 1, anon_sym_LBRACE, - ACTIONS(5006), 1, + ACTIONS(5042), 1, anon_sym_SEMI, - STATE(824), 1, + STATE(278), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62497] = 4, + ACTIONS(4079), 1, + anon_sym_LBRACE, + ACTIONS(5044), 1, + anon_sym_SEMI, + STATE(791), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63600] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + [62511] = 4, + ACTIONS(3427), 1, + anon_sym_LT2, + ACTIONS(5004), 1, + sym_identifier, + STATE(2471), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5008), 2, - anon_sym_COMMA, - anon_sym_GT, - [63612] = 4, - ACTIONS(3848), 1, - anon_sym_RBRACE, - ACTIONS(5010), 1, - anon_sym_COMMA, - STATE(1994), 1, - aux_sym_field_initializer_list_repeat1, + [62525] = 4, + ACTIONS(3850), 1, + anon_sym_LBRACE, + ACTIONS(5046), 1, + anon_sym_SEMI, + STATE(266), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63626] = 4, - ACTIONS(4381), 1, + [62539] = 4, + ACTIONS(4325), 1, anon_sym_COMMA, - ACTIONS(4383), 1, + ACTIONS(4327), 1, anon_sym_GT, - STATE(2155), 1, + STATE(2105), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63640] = 4, - ACTIONS(4387), 1, - anon_sym_GT, - ACTIONS(5012), 1, + [62553] = 4, + ACTIONS(3808), 1, + anon_sym_RBRACE, + ACTIONS(5048), 1, anon_sym_COMMA, - STATE(2094), 1, - aux_sym_type_parameters_repeat1, + STATE(2048), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63654] = 3, - ACTIONS(4403), 1, - anon_sym_EQ, + [62567] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4387), 2, + ACTIONS(5050), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [63666] = 4, - ACTIONS(4173), 1, + [62577] = 4, + ACTIONS(3808), 1, + anon_sym_RBRACE, + ACTIONS(5048), 1, anon_sym_COMMA, - ACTIONS(4175), 1, - anon_sym_GT, - STATE(2018), 1, - aux_sym_type_parameters_repeat1, + STATE(2076), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63680] = 4, - ACTIONS(2546), 1, + [62591] = 4, + ACTIONS(2496), 1, anon_sym_RPAREN, - ACTIONS(5015), 1, + ACTIONS(5052), 1, anon_sym_COMMA, - STATE(2031), 1, + STATE(1987), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63694] = 4, - ACTIONS(3796), 1, - anon_sym_LBRACE, - ACTIONS(5017), 1, - anon_sym_SEMI, - STATE(280), 1, - sym_declaration_list, + [62605] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63708] = 4, - ACTIONS(3868), 1, + ACTIONS(5054), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [62615] = 4, + ACTIONS(3830), 1, anon_sym_GT, - ACTIONS(5019), 1, + ACTIONS(5056), 1, anon_sym_COMMA, - STATE(2094), 1, + STATE(1968), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63722] = 4, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(5021), 1, - anon_sym_SEMI, - STATE(2491), 1, - sym_where_clause, + [62629] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63736] = 4, - ACTIONS(3858), 1, + ACTIONS(5058), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [62639] = 4, + ACTIONS(3814), 1, anon_sym_GT, - ACTIONS(5023), 1, + ACTIONS(5060), 1, anon_sym_COMMA, - STATE(2094), 1, + STATE(1968), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63750] = 3, - ACTIONS(5025), 1, - sym_identifier, + [62653] = 4, + ACTIONS(3834), 1, + anon_sym_RBRACE, + ACTIONS(5062), 1, + anon_sym_COMMA, + STATE(1930), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5027), 2, - anon_sym_default, - anon_sym_union, - [63762] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + [62667] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5029), 2, + ACTIONS(5064), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_GT, - [63774] = 4, - ACTIONS(3806), 1, + [62677] = 4, + ACTIONS(3798), 1, anon_sym_LBRACE, - ACTIONS(5031), 1, + ACTIONS(5066), 1, anon_sym_SEMI, - STATE(1010), 1, + STATE(833), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63788] = 4, - ACTIONS(4091), 1, - anon_sym_LBRACE, - ACTIONS(5033), 1, + [62691] = 4, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(5068), 1, anon_sym_SEMI, - STATE(995), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63802] = 3, - ACTIONS(5037), 1, - anon_sym_COLON, + ACTIONS(5070), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5035), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63814] = 4, - ACTIONS(4081), 1, + [62705] = 4, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(5039), 1, + ACTIONS(5072), 1, anon_sym_SEMI, - ACTIONS(5041), 1, + ACTIONS(5074), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63828] = 4, - ACTIONS(4087), 1, - anon_sym_LBRACE, - ACTIONS(5043), 1, + [62719] = 4, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(5076), 1, anon_sym_SEMI, - STATE(381), 1, - sym_block, + ACTIONS(5078), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63842] = 4, - ACTIONS(5045), 1, + [62733] = 4, + ACTIONS(3834), 1, + anon_sym_RBRACE, + ACTIONS(5062), 1, anon_sym_COMMA, - ACTIONS(5047), 1, - anon_sym_GT, - STATE(1910), 1, - aux_sym_for_lifetimes_repeat1, + STATE(1913), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63856] = 4, - ACTIONS(4087), 1, + [62747] = 4, + ACTIONS(3798), 1, anon_sym_LBRACE, - ACTIONS(5049), 1, + ACTIONS(5080), 1, anon_sym_SEMI, - STATE(340), 1, - sym_block, + STATE(956), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63870] = 4, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - ACTIONS(5047), 1, - anon_sym_GT, - STATE(2223), 1, - sym_lifetime, + [62761] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63884] = 4, - ACTIONS(384), 1, + ACTIONS(2385), 3, + anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(3219), 1, - anon_sym_COMMA, - STATE(1974), 1, - aux_sym_arguments_repeat1, + anon_sym_RBRACE, + [62771] = 4, + ACTIONS(3798), 1, + anon_sym_LBRACE, + ACTIONS(5082), 1, + anon_sym_SEMI, + STATE(933), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63898] = 4, - ACTIONS(3806), 1, + [62785] = 4, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(5051), 1, - anon_sym_SEMI, - STATE(979), 1, - sym_declaration_list, + ACTIONS(4053), 1, + anon_sym_PLUS, + STATE(1115), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63912] = 4, - ACTIONS(4081), 1, + [62799] = 4, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(5053), 1, + ACTIONS(5084), 1, anon_sym_SEMI, - ACTIONS(5055), 1, - anon_sym_EQ, + ACTIONS(5086), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63926] = 3, - ACTIONS(4081), 1, + [62813] = 4, + ACTIONS(4053), 1, anon_sym_PLUS, + ACTIONS(5088), 1, + anon_sym_SEMI, + ACTIONS(5090), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4872), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63938] = 4, - ACTIONS(5057), 1, - anon_sym_RBRACE, - ACTIONS(5059), 1, + [62827] = 4, + ACTIONS(904), 1, + anon_sym_GT, + ACTIONS(5092), 1, anon_sym_COMMA, - STATE(2119), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2009), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63952] = 4, - ACTIONS(3850), 1, + [62841] = 4, + ACTIONS(5094), 1, anon_sym_RBRACE, - ACTIONS(5061), 1, + ACTIONS(5096), 1, anon_sym_COMMA, - STATE(2024), 1, + STATE(2086), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63966] = 4, - ACTIONS(3828), 1, + [62855] = 4, + ACTIONS(4079), 1, + anon_sym_LBRACE, + ACTIONS(5098), 1, + anon_sym_SEMI, + STATE(922), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62869] = 4, + ACTIONS(3778), 1, anon_sym_where, - ACTIONS(5063), 1, + ACTIONS(5100), 1, anon_sym_SEMI, - STATE(2567), 1, + STATE(2504), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63980] = 4, - ACTIONS(3850), 1, - anon_sym_RBRACE, - ACTIONS(5061), 1, + [62883] = 4, + ACTIONS(4061), 1, + anon_sym_LBRACE, + ACTIONS(5102), 1, + anon_sym_SEMI, + STATE(286), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62897] = 4, + ACTIONS(762), 1, + anon_sym_RPAREN, + ACTIONS(4291), 1, anon_sym_COMMA, - STATE(1940), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2059), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63994] = 4, - ACTIONS(5065), 1, - sym_identifier, - ACTIONS(5067), 1, - anon_sym_ref, - ACTIONS(5069), 1, - sym_mutable_specifier, + [62911] = 4, + ACTIONS(762), 1, + anon_sym_RPAREN, + ACTIONS(4291), 1, + anon_sym_COMMA, + STATE(1951), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64008] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(5071), 1, - anon_sym_SEMI, - ACTIONS(5073), 1, - anon_sym_EQ, + [62925] = 4, + ACTIONS(3141), 1, + anon_sym_RPAREN, + ACTIONS(5104), 1, + anon_sym_COMMA, + STATE(1998), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64022] = 4, - ACTIONS(4055), 1, + [62939] = 4, + ACTIONS(3806), 1, anon_sym_RBRACE, - ACTIONS(5075), 1, + ACTIONS(4529), 1, anon_sym_COMMA, - STATE(1911), 1, - aux_sym_struct_pattern_repeat1, + STATE(2061), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64036] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(5077), 1, + [62953] = 4, + ACTIONS(4061), 1, + anon_sym_LBRACE, + ACTIONS(5106), 1, anon_sym_SEMI, - ACTIONS(5079), 1, - anon_sym_EQ, + STATE(263), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64050] = 4, - ACTIONS(3806), 1, + [62967] = 4, + ACTIONS(3798), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(5108), 1, anon_sym_SEMI, - STATE(955), 1, + STATE(870), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64064] = 4, - ACTIONS(926), 1, - anon_sym_GT, - ACTIONS(5083), 1, + [62981] = 4, + ACTIONS(4099), 1, anon_sym_COMMA, - STATE(1898), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64078] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(3772), 1, - anon_sym_LBRACE, - STATE(1386), 1, - sym_type_arguments, + ACTIONS(4101), 1, + anon_sym_GT, + STATE(1906), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64092] = 4, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(5085), 1, + [62995] = 4, + ACTIONS(3778), 1, + anon_sym_where, + ACTIONS(5110), 1, anon_sym_SEMI, - STATE(858), 1, - sym_declaration_list, + STATE(2484), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64106] = 3, - ACTIONS(5089), 1, + [63009] = 3, + ACTIONS(5114), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5087), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64118] = 4, - ACTIONS(4067), 1, - anon_sym_RBRACE, - ACTIONS(5091), 1, - anon_sym_COMMA, - STATE(1911), 1, - aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64132] = 4, - ACTIONS(3808), 1, + ACTIONS(5112), 2, anon_sym_RBRACE, - ACTIONS(5093), 1, anon_sym_COMMA, - STATE(1957), 1, - aux_sym_enum_variant_list_repeat2, + [63021] = 3, + ACTIONS(5116), 1, + anon_sym_SEMI, + ACTIONS(5118), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64146] = 4, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(5095), 1, + [63032] = 3, + ACTIONS(5120), 1, anon_sym_SEMI, - STATE(941), 1, - sym_declaration_list, + ACTIONS(5122), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64160] = 3, - ACTIONS(5099), 1, - anon_sym_COLON, + [63043] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5097), 2, - anon_sym_RBRACE, + ACTIONS(5124), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [64172] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + [63052] = 3, + ACTIONS(3794), 1, + anon_sym_LBRACE, + STATE(326), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5101), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64184] = 4, - ACTIONS(3808), 1, - anon_sym_RBRACE, - ACTIONS(5093), 1, - anon_sym_COMMA, - STATE(1948), 1, - aux_sym_enum_variant_list_repeat2, + [63063] = 3, + ACTIONS(4179), 1, + anon_sym_LBRACE, + STATE(892), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64198] = 4, - ACTIONS(3828), 1, - anon_sym_where, - ACTIONS(5103), 1, + [63074] = 3, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(5126), 1, anon_sym_SEMI, - STATE(2559), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64212] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5105), 3, - anon_sym_SEMI, + [63085] = 3, + ACTIONS(3776), 1, anon_sym_LBRACE, - anon_sym_COMMA, - [64222] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(5107), 1, - anon_sym_SEMI, - ACTIONS(5109), 1, - anon_sym_EQ, + STATE(864), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64236] = 2, + [63096] = 3, + ACTIONS(3776), 1, + anon_sym_LBRACE, + STATE(895), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5111), 3, - anon_sym_SEMI, + [63107] = 3, + ACTIONS(3798), 1, anon_sym_LBRACE, - anon_sym_COMMA, - [64246] = 4, - ACTIONS(5113), 1, - anon_sym_RPAREN, - ACTIONS(5115), 1, - anon_sym_COMMA, - STATE(1932), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(879), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64260] = 4, - ACTIONS(4087), 1, + [63118] = 3, + ACTIONS(3776), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, - anon_sym_SEMI, - STATE(339), 1, - sym_block, + STATE(899), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64274] = 4, - ACTIONS(2381), 1, - anon_sym_RPAREN, - ACTIONS(5119), 1, - anon_sym_COMMA, - STATE(1854), 1, - aux_sym_tuple_pattern_repeat1, + [63129] = 3, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(5128), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64288] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, + [63140] = 3, + ACTIONS(5130), 1, + sym_identifier, + ACTIONS(5132), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5121), 2, - anon_sym_COMMA, - anon_sym_GT, - [64300] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(5123), 1, - sym_identifier, - STATE(2355), 1, - sym_type_arguments, + [63151] = 3, + ACTIONS(5134), 1, + anon_sym_SEMI, + ACTIONS(5136), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64314] = 4, - ACTIONS(3810), 1, - anon_sym_RBRACE, - ACTIONS(5125), 1, - anon_sym_COMMA, - STATE(1957), 1, - aux_sym_enum_variant_list_repeat2, + [63162] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1074), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64328] = 4, - ACTIONS(3810), 1, + [63173] = 3, + ACTIONS(5120), 1, + anon_sym_SEMI, + ACTIONS(5138), 1, anon_sym_RBRACE, - ACTIONS(5125), 1, - anon_sym_COMMA, - STATE(2065), 1, - aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64342] = 4, - ACTIONS(790), 1, + [63184] = 3, + ACTIONS(5120), 1, + anon_sym_SEMI, + ACTIONS(5140), 1, anon_sym_RPAREN, - ACTIONS(4287), 1, - anon_sym_COMMA, - STATE(1928), 1, - aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64356] = 4, - ACTIONS(786), 1, - anon_sym_RPAREN, - ACTIONS(4283), 1, - anon_sym_COMMA, - STATE(1928), 1, - aux_sym_parameters_repeat1, + [63195] = 3, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(5142), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64370] = 4, - ACTIONS(5127), 1, - anon_sym_RPAREN, - ACTIONS(5129), 1, - anon_sym_COMMA, - STATE(2148), 1, - aux_sym_meta_arguments_repeat1, + [63206] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64384] = 4, - ACTIONS(790), 1, - anon_sym_RPAREN, - ACTIONS(4287), 1, + ACTIONS(2413), 2, anon_sym_COMMA, - STATE(1924), 1, - aux_sym_parameters_repeat1, + anon_sym_GT, + [63215] = 3, + ACTIONS(5120), 1, + anon_sym_SEMI, + ACTIONS(5144), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64398] = 4, - ACTIONS(786), 1, - anon_sym_RPAREN, - ACTIONS(4283), 1, - anon_sym_COMMA, - STATE(2056), 1, - aux_sym_parameters_repeat1, + [63226] = 3, + ACTIONS(4533), 1, + sym_identifier, + ACTIONS(4537), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64412] = 4, - ACTIONS(3455), 1, - anon_sym_LT2, - ACTIONS(5123), 1, - sym_identifier, - STATE(2358), 1, - sym_type_arguments, + [63237] = 3, + ACTIONS(5120), 1, + anon_sym_SEMI, + ACTIONS(5146), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64426] = 4, - ACTIONS(4091), 1, - anon_sym_LBRACE, - ACTIONS(5132), 1, + [63248] = 3, + ACTIONS(5120), 1, anon_sym_SEMI, - STATE(927), 1, - sym_block, + ACTIONS(5148), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64440] = 3, - ACTIONS(4107), 1, - anon_sym_COLON_COLON, + [63259] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [64452] = 2, + ACTIONS(4678), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63268] = 3, + ACTIONS(3574), 1, + anon_sym_COLON_COLON, + ACTIONS(5150), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5134), 3, + [63279] = 3, + ACTIONS(5120), 1, + anon_sym_SEMI, + ACTIONS(5152), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [64462] = 4, - ACTIONS(914), 1, - anon_sym_GT, - ACTIONS(5136), 1, - anon_sym_COMMA, - STATE(1898), 1, - aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64476] = 4, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(5138), 1, - anon_sym_SEMI, - ACTIONS(5140), 1, - anon_sym_RBRACK, + [63290] = 3, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(5154), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64490] = 4, - ACTIONS(4087), 1, + [63301] = 3, + ACTIONS(3850), 1, anon_sym_LBRACE, - ACTIONS(5142), 1, - anon_sym_SEMI, - STATE(412), 1, - sym_block, + STATE(255), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64504] = 3, - ACTIONS(5144), 1, + [63312] = 3, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(5156), 1, anon_sym_SEMI, - ACTIONS(5146), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64515] = 3, - ACTIONS(5148), 1, - sym_identifier, - ACTIONS(5150), 1, - sym_mutable_specifier, + [63323] = 3, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(5158), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64526] = 3, - ACTIONS(5152), 1, - anon_sym_SEMI, - ACTIONS(5154), 1, - anon_sym_as, + [63334] = 3, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1900), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64537] = 3, - ACTIONS(3862), 1, + [63345] = 3, + ACTIONS(3798), 1, anon_sym_LBRACE, - STATE(898), 1, - sym_field_declaration_list, + STATE(858), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64548] = 2, + [63356] = 3, + ACTIONS(3798), 1, + anon_sym_LBRACE, + STATE(857), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5156), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64557] = 3, - ACTIONS(3796), 1, + [63367] = 3, + ACTIONS(3776), 1, anon_sym_LBRACE, - STATE(375), 1, - sym_declaration_list, + STATE(856), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64568] = 3, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(2011), 1, - sym_lifetime, + [63378] = 3, + ACTIONS(4683), 1, + sym_identifier, + ACTIONS(4687), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64579] = 3, - ACTIONS(5144), 1, - anon_sym_SEMI, - ACTIONS(5158), 1, - anon_sym_RBRACE, + [63389] = 3, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(5160), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63400] = 3, + ACTIONS(3794), 1, + anon_sym_LBRACE, + STATE(324), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64590] = 2, + [63411] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5160), 2, + ACTIONS(5162), 2, sym_identifier, sym_metavariable, - [64599] = 3, - ACTIONS(5144), 1, - anon_sym_SEMI, - ACTIONS(5162), 1, - anon_sym_RBRACE, + [63420] = 3, + ACTIONS(3981), 1, + anon_sym_COLON_COLON, + ACTIONS(5164), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64610] = 3, + [63431] = 3, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(144), 1, + STATE(83), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64621] = 3, - ACTIONS(3862), 1, - anon_sym_LBRACE, - STATE(882), 1, - sym_field_declaration_list, + [63442] = 3, + ACTIONS(4249), 1, + anon_sym_COLON, + ACTIONS(4253), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64632] = 3, - ACTIONS(4179), 1, - anon_sym_LBRACE, - STATE(877), 1, - sym_enum_variant_list, + [63453] = 3, + ACTIONS(3985), 1, + anon_sym_COLON_COLON, + ACTIONS(5164), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64643] = 3, + [63464] = 3, + ACTIONS(3989), 1, + anon_sym_COLON_COLON, ACTIONS(5164), 1, - sym_identifier, - ACTIONS(5166), 1, - sym_mutable_specifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64654] = 3, - ACTIONS(3806), 1, + [63475] = 3, + ACTIONS(4187), 1, anon_sym_LBRACE, - STATE(859), 1, - sym_declaration_list, + STATE(329), 1, + sym_enum_variant_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63486] = 3, + ACTIONS(5166), 1, + anon_sym_LBRACE, + ACTIONS(5168), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64665] = 3, - ACTIONS(3862), 1, + [63497] = 3, + ACTIONS(3850), 1, anon_sym_LBRACE, - STATE(847), 1, - sym_field_declaration_list, + STATE(323), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64676] = 3, - ACTIONS(2329), 1, - anon_sym_SQUOTE, - STATE(2223), 1, - sym_lifetime, + [63508] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64687] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5168), 1, - anon_sym_EQ, + [63519] = 3, + ACTIONS(5170), 1, + anon_sym_SEMI, + ACTIONS(5172), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64698] = 2, + [63530] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5170), 2, - anon_sym_RBRACE, + ACTIONS(5174), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [64707] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(5172), 1, - anon_sym_SEMI, + [63539] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64718] = 3, - ACTIONS(3806), 1, - anon_sym_LBRACE, - STATE(839), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64729] = 3, - ACTIONS(3806), 1, - anon_sym_LBRACE, - STATE(805), 1, - sym_declaration_list, + ACTIONS(5176), 2, + sym_identifier, + sym_metavariable, + [63548] = 3, + ACTIONS(2542), 1, + anon_sym_LPAREN, + STATE(837), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64740] = 3, - ACTIONS(3862), 1, - anon_sym_LBRACE, - STATE(826), 1, - sym_field_declaration_list, + [63559] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64751] = 3, - ACTIONS(5065), 1, - sym_identifier, - ACTIONS(5069), 1, - sym_mutable_specifier, + ACTIONS(5178), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63568] = 3, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(5180), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64762] = 3, - ACTIONS(3806), 1, + [63579] = 3, + ACTIONS(3798), 1, anon_sym_LBRACE, STATE(969), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64773] = 3, - ACTIONS(4081), 1, + [63590] = 3, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(5174), 1, + ACTIONS(5182), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64784] = 2, + [63601] = 3, + ACTIONS(3850), 1, + anon_sym_LBRACE, + STATE(265), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4535), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64793] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(5176), 1, - anon_sym_SEMI, + [63612] = 3, + ACTIONS(3431), 1, + anon_sym_LPAREN, + STATE(1357), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64804] = 3, - ACTIONS(4051), 1, - anon_sym_COLON_COLON, - ACTIONS(5178), 1, - anon_sym_RPAREN, + [63623] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64815] = 3, - ACTIONS(3806), 1, + ACTIONS(5184), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63632] = 3, + ACTIONS(3798), 1, anon_sym_LBRACE, - STATE(984), 1, + STATE(999), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64826] = 3, - ACTIONS(3806), 1, + [63643] = 3, + ACTIONS(3798), 1, anon_sym_LBRACE, - STATE(985), 1, + STATE(1000), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64837] = 3, - ACTIONS(4045), 1, - anon_sym_COLON_COLON, - ACTIONS(5178), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64848] = 3, - ACTIONS(4043), 1, - anon_sym_COLON_COLON, - ACTIONS(5178), 1, - anon_sym_RPAREN, + [63654] = 3, + ACTIONS(5186), 1, + anon_sym_LBRACK, + ACTIONS(5188), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64859] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5180), 1, - anon_sym_EQ, + [63665] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64870] = 3, - ACTIONS(3590), 1, + ACTIONS(5190), 2, + sym_identifier, + sym_metavariable, + [63674] = 3, + ACTIONS(3421), 1, + anon_sym_BANG, + ACTIONS(5192), 1, anon_sym_COLON_COLON, - ACTIONS(5182), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64881] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5184), 1, - anon_sym_in, + [63685] = 3, + ACTIONS(5194), 1, + sym_identifier, + ACTIONS(5196), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64892] = 3, - ACTIONS(2572), 1, - anon_sym_LPAREN, - STATE(829), 1, - sym_parameters, + [63696] = 3, + ACTIONS(2941), 1, + anon_sym_COLON, + ACTIONS(4053), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64903] = 3, + [63707] = 3, ACTIONS(4179), 1, anon_sym_LBRACE, - STATE(1016), 1, + STATE(1014), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64914] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5186), 1, - anon_sym_EQ, + [63718] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64925] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5188), 1, - anon_sym_EQ, + ACTIONS(4583), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63727] = 3, + ACTIONS(4179), 1, + anon_sym_LBRACE, + STATE(784), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64936] = 3, - ACTIONS(3862), 1, + [63738] = 3, + ACTIONS(3776), 1, anon_sym_LBRACE, - STATE(1031), 1, + STATE(1022), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64947] = 3, - ACTIONS(4081), 1, + [63749] = 3, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(5190), 1, + ACTIONS(5198), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64958] = 3, - ACTIONS(3862), 1, + [63760] = 3, + ACTIONS(3776), 1, anon_sym_LBRACE, - STATE(1034), 1, + STATE(1026), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64969] = 3, - ACTIONS(3806), 1, + [63771] = 3, + ACTIONS(3798), 1, anon_sym_LBRACE, - STATE(1036), 1, + STATE(1029), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64980] = 3, - ACTIONS(4179), 1, - anon_sym_LBRACE, - STATE(848), 1, - sym_enum_variant_list, + [63782] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64991] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5192), 1, - anon_sym_in, + ACTIONS(4359), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63791] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65002] = 3, - ACTIONS(3983), 1, + ACTIONS(5033), 2, anon_sym_RBRACE, - ACTIONS(5144), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65013] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5194), 1, - anon_sym_EQ, + anon_sym_COMMA, + [63800] = 3, + ACTIONS(3431), 1, + anon_sym_LPAREN, + STATE(1642), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65024] = 3, - ACTIONS(4037), 1, - anon_sym_RBRACE, - ACTIONS(5144), 1, - anon_sym_SEMI, + [63811] = 3, + ACTIONS(2819), 1, + anon_sym_COLON, + ACTIONS(4053), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65035] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5196), 1, - anon_sym_in, + [63822] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65046] = 3, - ACTIONS(3796), 1, - anon_sym_LBRACE, - STATE(474), 1, - sym_declaration_list, + ACTIONS(5200), 2, + sym_float_literal, + sym_integer_literal, + [63831] = 3, + ACTIONS(2977), 1, + anon_sym_COLON, + ACTIONS(4053), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65057] = 2, + [63842] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5198), 2, + ACTIONS(5202), 2, sym_identifier, sym_metavariable, - [65066] = 3, - ACTIONS(3796), 1, - anon_sym_LBRACE, - STATE(472), 1, - sym_declaration_list, + [63851] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65077] = 3, - ACTIONS(3459), 1, - anon_sym_LPAREN, - STATE(1405), 1, - sym_parameters, + ACTIONS(5204), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [63860] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(81), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65088] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5200), 1, - anon_sym_EQ, + [63871] = 3, + ACTIONS(3961), 1, + anon_sym_RBRACE, + ACTIONS(5120), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65099] = 2, + [63882] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5202), 2, - anon_sym_RPAREN, + ACTIONS(4635), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [65108] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1127), 1, - sym_block, + [63891] = 3, + ACTIONS(2953), 1, + anon_sym_COLON, + ACTIONS(4053), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65119] = 2, + [63902] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(67), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5204), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65128] = 3, - ACTIONS(3796), 1, + [63913] = 3, + ACTIONS(3850), 1, anon_sym_LBRACE, - STATE(456), 1, + STATE(340), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65139] = 3, - ACTIONS(5206), 1, + [63924] = 3, + ACTIONS(3957), 1, + anon_sym_RBRACE, + ACTIONS(5120), 1, anon_sym_SEMI, - ACTIONS(5208), 1, - anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65150] = 2, + [63935] = 3, + ACTIONS(3431), 1, + anon_sym_LPAREN, + STATE(1694), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4672), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65159] = 3, - ACTIONS(3862), 1, + [63946] = 3, + ACTIONS(3850), 1, anon_sym_LBRACE, - STATE(885), 1, - sym_field_declaration_list, + STATE(341), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65170] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5210), 1, - anon_sym_EQ, + [63957] = 3, + ACTIONS(3532), 1, + anon_sym_COLON_COLON, + ACTIONS(3634), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65181] = 3, - ACTIONS(3806), 1, + [63968] = 3, + ACTIONS(4187), 1, anon_sym_LBRACE, - STATE(893), 1, - sym_declaration_list, + STATE(477), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65192] = 3, - ACTIONS(3862), 1, - anon_sym_LBRACE, - STATE(896), 1, - sym_field_declaration_list, + [63979] = 3, + ACTIONS(5120), 1, + anon_sym_SEMI, + ACTIONS(5206), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65203] = 2, + [63990] = 3, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(2262), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4591), 2, - anon_sym_COMMA, - anon_sym_GT, - [65212] = 3, - ACTIONS(2572), 1, - anon_sym_LPAREN, - STATE(920), 1, - sym_parameters, + [64001] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1106), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65223] = 2, + [64012] = 3, + ACTIONS(3794), 1, + anon_sym_LBRACE, + STATE(413), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4561), 2, - anon_sym_COMMA, - anon_sym_GT, - [65232] = 2, + [64023] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5212), 2, + ACTIONS(5208), 2, sym_identifier, sym_metavariable, - [65241] = 2, + [64032] = 3, + ACTIONS(3431), 1, + anon_sym_LPAREN, + STATE(1359), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5127), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65250] = 2, + [64043] = 3, + ACTIONS(3431), 1, + anon_sym_LPAREN, + STATE(1661), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4305), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65259] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5214), 1, - anon_sym_in, + [64054] = 3, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(5210), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65270] = 3, - ACTIONS(4179), 1, + [64065] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(958), 1, - sym_enum_variant_list, + STATE(43), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65281] = 3, - ACTIONS(3806), 1, + [64076] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4157), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64085] = 3, + ACTIONS(3798), 1, anon_sym_LBRACE, - STATE(996), 1, + STATE(819), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65292] = 2, + [64096] = 3, + ACTIONS(5212), 1, + anon_sym_SEMI, + ACTIONS(5214), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4482), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65301] = 3, - ACTIONS(5216), 1, - anon_sym_LBRACK, - ACTIONS(5218), 1, - anon_sym_BANG, + [64107] = 3, + ACTIONS(3850), 1, + anon_sym_LBRACE, + STATE(350), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65312] = 2, + [64118] = 3, + ACTIONS(3872), 1, + anon_sym_COLON, + STATE(2090), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5220), 2, - sym_identifier, - sym_metavariable, - [65321] = 3, - ACTIONS(4081), 1, + [64129] = 3, + ACTIONS(4053), 1, anon_sym_PLUS, - ACTIONS(5222), 1, + ACTIONS(5216), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65332] = 3, - ACTIONS(3806), 1, + [64140] = 3, + ACTIONS(3798), 1, anon_sym_LBRACE, - STATE(981), 1, + STATE(834), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65343] = 3, - ACTIONS(3806), 1, + [64151] = 3, + ACTIONS(3798), 1, anon_sym_LBRACE, - STATE(977), 1, + STATE(835), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65354] = 3, - ACTIONS(3991), 1, - anon_sym_COLON, - ACTIONS(4081), 1, - anon_sym_PLUS, + [64162] = 3, + ACTIONS(3574), 1, + anon_sym_COLON_COLON, + ACTIONS(5218), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65365] = 2, + [64173] = 3, + ACTIONS(3989), 1, + anon_sym_COLON_COLON, + ACTIONS(5220), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4709), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65374] = 3, - ACTIONS(5224), 1, + [64184] = 3, + ACTIONS(5222), 1, anon_sym_LBRACK, - ACTIONS(5226), 1, + ACTIONS(5224), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65385] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5228), 1, - anon_sym_EQ, + [64195] = 3, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(5226), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65396] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(66), 1, - sym_closure_parameters, + [64206] = 3, + ACTIONS(3981), 1, + anon_sym_COLON_COLON, + ACTIONS(5220), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65407] = 3, - ACTIONS(3826), 1, + [64217] = 3, + ACTIONS(3794), 1, anon_sym_LBRACE, - STATE(395), 1, + STATE(416), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65418] = 3, - ACTIONS(3796), 1, + [64228] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(409), 1, - sym_declaration_list, + STATE(75), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65429] = 3, - ACTIONS(3459), 1, + [64239] = 3, + ACTIONS(4021), 1, + anon_sym_RPAREN, + ACTIONS(5120), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64250] = 3, + ACTIONS(3963), 1, + anon_sym_RPAREN, + ACTIONS(5120), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64261] = 3, + ACTIONS(3431), 1, anon_sym_LPAREN, - STATE(1707), 1, + STATE(1368), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65440] = 3, - ACTIONS(3796), 1, + [64272] = 3, + ACTIONS(3776), 1, anon_sym_LBRACE, - STATE(285), 1, - sym_declaration_list, + STATE(886), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65451] = 3, - ACTIONS(3826), 1, - anon_sym_LBRACE, - STATE(288), 1, - sym_field_declaration_list, + [64283] = 3, + ACTIONS(4023), 1, + anon_sym_RPAREN, + ACTIONS(5120), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65462] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(5230), 1, + [64294] = 3, + ACTIONS(3985), 1, + anon_sym_COLON_COLON, + ACTIONS(5220), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64305] = 3, + ACTIONS(3997), 1, + anon_sym_RBRACE, + ACTIONS(5120), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65473] = 3, - ACTIONS(3826), 1, + [64316] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(88), 1, + sym_closure_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64327] = 3, + ACTIONS(3431), 1, + anon_sym_LPAREN, + STATE(1615), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64338] = 3, + ACTIONS(3999), 1, + anon_sym_COLON, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64349] = 3, + ACTIONS(3850), 1, anon_sym_LBRACE, - STATE(292), 1, - sym_field_declaration_list, + STATE(256), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65484] = 3, - ACTIONS(3826), 1, + [64360] = 3, + ACTIONS(3798), 1, anon_sym_LBRACE, - STATE(427), 1, - sym_field_declaration_list, + STATE(948), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65495] = 3, - ACTIONS(2572), 1, - anon_sym_LPAREN, - STATE(1028), 1, - sym_parameters, + [64371] = 3, + ACTIONS(3776), 1, + anon_sym_LBRACE, + STATE(1009), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65506] = 3, - ACTIONS(4083), 1, + [64382] = 3, + ACTIONS(3798), 1, anon_sym_LBRACE, - STATE(306), 1, - sym_enum_variant_list, + STATE(947), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65517] = 2, + [64393] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5232), 2, - anon_sym_const, - sym_mutable_specifier, - [65526] = 2, + ACTIONS(5228), 2, + sym_identifier, + sym_metavariable, + [64402] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4796), 2, + ACTIONS(5230), 2, anon_sym_RBRACE, anon_sym_COMMA, - [65535] = 3, - ACTIONS(284), 1, + [64411] = 3, + ACTIONS(4187), 1, anon_sym_LBRACE, - STATE(1094), 1, - sym_block, + STATE(420), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65546] = 3, - ACTIONS(2618), 1, + [64422] = 3, + ACTIONS(3794), 1, anon_sym_LBRACE, - STATE(1095), 1, - sym_field_initializer_list, + STATE(440), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65557] = 3, - ACTIONS(602), 1, + [64433] = 3, + ACTIONS(3794), 1, anon_sym_LBRACE, - STATE(252), 1, - sym_block, + STATE(311), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65568] = 3, - ACTIONS(3806), 1, + [64444] = 3, + ACTIONS(3850), 1, anon_sym_LBRACE, - STATE(905), 1, + STATE(316), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65579] = 3, - ACTIONS(904), 1, - anon_sym_LBRACE, - STATE(1482), 1, - sym_block, + [64455] = 3, + ACTIONS(5232), 1, + anon_sym_LT, + STATE(654), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65590] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(70), 1, - sym_closure_parameters, + [64466] = 3, + ACTIONS(2542), 1, + anon_sym_LPAREN, + STATE(993), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65601] = 3, - ACTIONS(5234), 1, - anon_sym_LPAREN, - ACTIONS(5236), 1, + [64477] = 3, + ACTIONS(3987), 1, + anon_sym_RPAREN, + ACTIONS(5120), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64488] = 3, + ACTIONS(632), 1, anon_sym_LBRACE, + STATE(227), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65612] = 3, - ACTIONS(5238), 1, + [64499] = 3, + ACTIONS(3431), 1, anon_sym_LPAREN, - ACTIONS(5240), 1, - anon_sym_LBRACE, + STATE(1621), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65623] = 3, - ACTIONS(284), 1, + [64510] = 3, + ACTIONS(632), 1, anon_sym_LBRACE, - STATE(1135), 1, + STATE(224), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65634] = 3, - ACTIONS(284), 1, + [64521] = 3, + ACTIONS(4187), 1, anon_sym_LBRACE, - STATE(1142), 1, - sym_block, + STATE(283), 1, + sym_enum_variant_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64532] = 3, + ACTIONS(3431), 1, + anon_sym_LPAREN, + STATE(1624), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65645] = 3, - ACTIONS(284), 1, + [64543] = 3, + ACTIONS(632), 1, anon_sym_LBRACE, - STATE(1133), 1, + STATE(225), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65656] = 2, + [64554] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4835), 2, - anon_sym_RBRACE, + ACTIONS(4918), 2, anon_sym_COMMA, - [65665] = 3, - ACTIONS(3459), 1, - anon_sym_LPAREN, - STATE(1712), 1, - sym_parameters, + anon_sym_GT, + [64563] = 3, + ACTIONS(3580), 1, + anon_sym_COLON_COLON, + ACTIONS(5234), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65676] = 3, - ACTIONS(3459), 1, - anon_sym_LPAREN, - STATE(1675), 1, - sym_parameters, + [64574] = 3, + ACTIONS(632), 1, + anon_sym_LBRACE, + STATE(213), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65687] = 3, - ACTIONS(602), 1, + [64585] = 3, + ACTIONS(3850), 1, anon_sym_LBRACE, - STATE(251), 1, - sym_block, + STATE(438), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65698] = 3, - ACTIONS(4299), 1, + [64596] = 3, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(5242), 1, + ACTIONS(5236), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65709] = 3, - ACTIONS(602), 1, + [64607] = 3, + ACTIONS(632), 1, anon_sym_LBRACE, - STATE(253), 1, + STATE(230), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65720] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(167), 1, - sym_block, + [64618] = 3, + ACTIONS(3568), 1, + anon_sym_COLON_COLON, + ACTIONS(5234), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65731] = 3, - ACTIONS(4083), 1, - anon_sym_LBRACE, - STATE(433), 1, - sym_enum_variant_list, + [64629] = 3, + ACTIONS(5238), 1, + anon_sym_BANG, + ACTIONS(5240), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65742] = 3, - ACTIONS(602), 1, + [64640] = 3, + ACTIONS(3850), 1, anon_sym_LBRACE, - STATE(255), 1, - sym_block, + STATE(437), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65753] = 3, - ACTIONS(3796), 1, - anon_sym_LBRACE, - STATE(388), 1, - sym_declaration_list, + [64651] = 3, + ACTIONS(2718), 1, + anon_sym_COLON_COLON, + ACTIONS(3947), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65764] = 3, - ACTIONS(3796), 1, - anon_sym_LBRACE, - STATE(267), 1, - sym_declaration_list, + [64662] = 3, + ACTIONS(4053), 1, + anon_sym_PLUS, + ACTIONS(5242), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65775] = 3, + [64673] = 3, + ACTIONS(4253), 1, + anon_sym_PIPE, ACTIONS(5244), 1, - anon_sym_SEMI, - ACTIONS(5246), 1, - anon_sym_as, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65786] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(5248), 1, - anon_sym_SEMI, + [64684] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65797] = 3, - ACTIONS(3796), 1, - anon_sym_LBRACE, - STATE(422), 1, - sym_declaration_list, + ACTIONS(5246), 2, + anon_sym_const, + sym_mutable_specifier, + [64693] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65808] = 3, - ACTIONS(5144), 1, - anon_sym_SEMI, - ACTIONS(5250), 1, - anon_sym_RPAREN, + ACTIONS(4854), 2, + anon_sym_COMMA, + anon_sym_GT, + [64702] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65819] = 3, - ACTIONS(5144), 1, - anon_sym_SEMI, - ACTIONS(5252), 1, + ACTIONS(4452), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [64711] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65830] = 2, + ACTIONS(5248), 2, + anon_sym_const, + sym_mutable_specifier, + [64720] = 3, + ACTIONS(4179), 1, + anon_sym_LBRACE, + STATE(994), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4387), 2, - anon_sym_COMMA, - anon_sym_GT, - [65839] = 2, + [64731] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1045), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5254), 2, - sym_identifier, - sym_metavariable, - [65848] = 3, - ACTIONS(2935), 1, - anon_sym_COLON, - ACTIONS(4081), 1, - anon_sym_PLUS, + [64742] = 3, + ACTIONS(5250), 1, + anon_sym_LPAREN, + ACTIONS(5252), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65859] = 3, - ACTIONS(3599), 1, - anon_sym_COLON_COLON, - ACTIONS(5256), 1, - anon_sym_BANG, + [64753] = 3, + ACTIONS(632), 1, + anon_sym_LBRACE, + STATE(240), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65870] = 3, - ACTIONS(3604), 1, - anon_sym_COLON_COLON, + [64764] = 3, + ACTIONS(5254), 1, + anon_sym_LPAREN, ACTIONS(5256), 1, - anon_sym_BANG, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65881] = 2, + [64775] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1043), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4593), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65890] = 3, - ACTIONS(3015), 1, - anon_sym_COLON, - ACTIONS(4081), 1, - anon_sym_PLUS, + [64786] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65901] = 3, - ACTIONS(3459), 1, - anon_sym_LPAREN, - STATE(1684), 1, - sym_parameters, + ACTIONS(4875), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [64795] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1053), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65912] = 2, + [64806] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5258), 2, - sym_float_literal, - sym_integer_literal, - [65921] = 3, - ACTIONS(3011), 1, - anon_sym_COLON, - ACTIONS(4081), 1, - anon_sym_PLUS, + ACTIONS(4866), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64815] = 3, + ACTIONS(3794), 1, + anon_sym_LBRACE, + STATE(433), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65932] = 3, - ACTIONS(5144), 1, - anon_sym_SEMI, - ACTIONS(5260), 1, - anon_sym_RBRACE, + [64826] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(93), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65943] = 3, - ACTIONS(5144), 1, - anon_sym_SEMI, - ACTIONS(5262), 1, - anon_sym_RPAREN, + [64837] = 3, + ACTIONS(632), 1, + anon_sym_LBRACE, + STATE(236), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65954] = 3, - ACTIONS(602), 1, + [64848] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(243), 1, + STATE(1071), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65965] = 3, - ACTIONS(5264), 1, + [64859] = 3, + ACTIONS(5258), 1, sym_identifier, - ACTIONS(5266), 1, + ACTIONS(5260), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65976] = 3, - ACTIONS(2580), 1, + [64870] = 3, + ACTIONS(2550), 1, anon_sym_LT2, - STATE(1130), 1, + STATE(1126), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65987] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5268), 1, - anon_sym_in, + [64881] = 3, + ACTIONS(3780), 1, + anon_sym_LT, + STATE(727), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65998] = 3, - ACTIONS(2792), 1, - anon_sym_COLON, - ACTIONS(4081), 1, + [64892] = 3, + ACTIONS(4053), 1, anon_sym_PLUS, + ACTIONS(5262), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66009] = 3, - ACTIONS(5144), 1, - anon_sym_SEMI, - ACTIONS(5270), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66020] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5272), 2, - anon_sym_const, - sym_mutable_specifier, - [66029] = 3, - ACTIONS(4299), 1, - anon_sym_PIPE, - ACTIONS(5274), 1, - anon_sym_in, + [64903] = 3, + ACTIONS(874), 1, + anon_sym_LBRACE, + STATE(1428), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66040] = 3, - ACTIONS(5276), 1, - anon_sym_SEMI, - ACTIONS(5278), 1, - anon_sym_as, + [64914] = 3, + ACTIONS(632), 1, + anon_sym_LBRACE, + STATE(237), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66051] = 3, - ACTIONS(3826), 1, + [64925] = 3, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5266), 1, anon_sym_LBRACE, - STATE(304), 1, - sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66062] = 2, + [64936] = 3, + ACTIONS(3850), 1, + anon_sym_LBRACE, + STATE(427), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5280), 2, - sym_identifier, - sym_metavariable, - [66071] = 3, - ACTIONS(3987), 1, - anon_sym_RPAREN, - ACTIONS(5144), 1, - anon_sym_SEMI, + [64947] = 3, + ACTIONS(3850), 1, + anon_sym_LBRACE, + STATE(370), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66082] = 3, - ACTIONS(3826), 1, + [64958] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(295), 1, - sym_field_declaration_list, + STATE(1083), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66093] = 3, - ACTIONS(4023), 1, - anon_sym_RPAREN, - ACTIONS(5144), 1, - anon_sym_SEMI, + [64969] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66104] = 3, - ACTIONS(4005), 1, + ACTIONS(4258), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64978] = 3, + ACTIONS(4033), 1, anon_sym_RBRACE, - ACTIONS(5144), 1, + ACTIONS(5120), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66115] = 3, - ACTIONS(15), 1, + [64989] = 3, + ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, anon_sym_LBRACE, - STATE(163), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66126] = 3, - ACTIONS(3459), 1, - anon_sym_LPAREN, - STATE(1390), 1, - sym_parameters, + [65000] = 3, + ACTIONS(5166), 1, + anon_sym_EQ_GT, + ACTIONS(5272), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66137] = 3, - ACTIONS(3534), 1, - anon_sym_COLON_COLON, - ACTIONS(3656), 1, - anon_sym_BANG, + [65011] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(777), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66148] = 3, - ACTIONS(4083), 1, - anon_sym_LBRACE, - STATE(273), 1, - sym_enum_variant_list, + [65022] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66159] = 3, - ACTIONS(3459), 1, + ACTIONS(5274), 2, + anon_sym_const, + sym_mutable_specifier, + [65031] = 3, + ACTIONS(2542), 1, anon_sym_LPAREN, - STATE(1696), 1, + STATE(1008), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66170] = 3, - ACTIONS(4015), 1, - anon_sym_RPAREN, - ACTIONS(5144), 1, - anon_sym_SEMI, + [65042] = 3, + ACTIONS(3794), 1, + anon_sym_LBRACE, + STATE(394), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66181] = 2, + [65053] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5001), 2, + ACTIONS(4426), 2, anon_sym_COMMA, - anon_sym_PIPE, - [66190] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(5282), 1, anon_sym_GT, + [65062] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66201] = 3, - ACTIONS(4013), 1, + ACTIONS(4840), 2, anon_sym_RBRACE, - ACTIONS(5144), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66212] = 2, + anon_sym_COMMA, + [65071] = 3, + ACTIONS(2560), 1, + anon_sym_LBRACE, + STATE(1129), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2391), 2, - anon_sym_COMMA, - anon_sym_GT, - [66221] = 3, - ACTIONS(3459), 1, - anon_sym_LPAREN, - STATE(1699), 1, - sym_parameters, + [65082] = 2, + ACTIONS(5276), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66232] = 3, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(5284), 1, - anon_sym_COLON_COLON, + [65090] = 2, + ACTIONS(5120), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66243] = 3, - ACTIONS(3796), 1, - anon_sym_LBRACE, - STATE(279), 1, - sym_declaration_list, + [65098] = 2, + ACTIONS(5278), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66254] = 3, - ACTIONS(3826), 1, - anon_sym_LBRACE, - STATE(307), 1, - sym_field_declaration_list, + [65106] = 2, + ACTIONS(5280), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66265] = 3, - ACTIONS(4007), 1, - anon_sym_RPAREN, - ACTIONS(5144), 1, + [65114] = 2, + ACTIONS(5282), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66276] = 3, - ACTIONS(4081), 1, - anon_sym_PLUS, - ACTIONS(5286), 1, - anon_sym_SEMI, + [65122] = 2, + ACTIONS(5284), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66287] = 3, - ACTIONS(3796), 1, - anon_sym_LBRACE, - STATE(319), 1, - sym_declaration_list, + [65130] = 2, + ACTIONS(5286), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66298] = 3, - ACTIONS(3796), 1, - anon_sym_LBRACE, - STATE(348), 1, - sym_declaration_list, + [65138] = 2, + ACTIONS(4495), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66309] = 3, - ACTIONS(5288), 1, - anon_sym_LT, - STATE(697), 1, - sym_type_parameters, + [65146] = 2, + ACTIONS(4709), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66320] = 3, - ACTIONS(3826), 1, - anon_sym_LBRACE, - STATE(354), 1, - sym_field_declaration_list, + [65154] = 2, + ACTIONS(2445), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66331] = 3, - ACTIONS(5290), 1, - anon_sym_BANG, - ACTIONS(5292), 1, + [65162] = 2, + ACTIONS(3985), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66342] = 3, - ACTIONS(4638), 1, + [65170] = 2, + ACTIONS(5288), 1, sym_identifier, - ACTIONS(4642), 1, - sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66353] = 3, - ACTIONS(2728), 1, - anon_sym_COLON_COLON, - ACTIONS(3971), 1, - anon_sym_BANG, + [65178] = 2, + ACTIONS(5290), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66364] = 2, + [65186] = 2, + ACTIONS(4818), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5294), 2, - anon_sym_const, - sym_mutable_specifier, - [66373] = 3, - ACTIONS(3830), 1, - anon_sym_LT, - STATE(758), 1, - sym_type_parameters, + [65194] = 2, + ACTIONS(5292), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66384] = 2, + [65202] = 2, + ACTIONS(4845), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4103), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66393] = 3, - ACTIONS(3902), 1, - anon_sym_COLON, - STATE(2136), 1, - sym_trait_bounds, + [65210] = 2, + ACTIONS(5294), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66404] = 3, - ACTIONS(5296), 1, - anon_sym_LPAREN, - ACTIONS(5298), 1, - anon_sym_LBRACE, + [65218] = 2, + ACTIONS(4856), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66415] = 3, - ACTIONS(4083), 1, - anon_sym_LBRACE, - STATE(450), 1, - sym_enum_variant_list, + [65226] = 2, + ACTIONS(5296), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66426] = 3, - ACTIONS(5300), 1, - anon_sym_LPAREN, - ACTIONS(5302), 1, - anon_sym_LBRACE, + [65234] = 2, + ACTIONS(3441), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66437] = 3, - ACTIONS(4051), 1, - anon_sym_COLON_COLON, - ACTIONS(5304), 1, - anon_sym_RPAREN, + [65242] = 2, + ACTIONS(5298), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66448] = 2, + [65250] = 2, + ACTIONS(5300), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5306), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66457] = 3, - ACTIONS(4045), 1, - anon_sym_COLON_COLON, - ACTIONS(5304), 1, - anon_sym_RPAREN, + [65258] = 2, + ACTIONS(5302), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66468] = 3, - ACTIONS(4043), 1, - anon_sym_COLON_COLON, + [65266] = 2, ACTIONS(5304), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66479] = 3, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(4299), 1, - anon_sym_PIPE, + [65274] = 2, + ACTIONS(5306), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66490] = 3, - ACTIONS(3590), 1, - anon_sym_COLON_COLON, + [65282] = 2, ACTIONS(5308), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66501] = 3, - ACTIONS(3459), 1, - anon_sym_LPAREN, - STATE(1391), 1, - sym_parameters, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66512] = 2, + [65290] = 2, ACTIONS(5310), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66520] = 2, - ACTIONS(5312), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66528] = 2, - ACTIONS(4778), 1, - anon_sym_GT, + [65298] = 2, + ACTIONS(4799), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66536] = 2, - ACTIONS(4788), 1, - anon_sym_RBRACE, + [65306] = 2, + ACTIONS(5312), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66544] = 2, + [65314] = 2, ACTIONS(5314), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66552] = 2, + [65322] = 2, ACTIONS(5316), 1, - anon_sym_LBRACK, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66560] = 2, + [65330] = 2, ACTIONS(5318), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66568] = 2, - ACTIONS(5320), 1, - sym_identifier, + [65338] = 2, + ACTIONS(2809), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66576] = 2, - ACTIONS(5322), 1, + [65346] = 2, + ACTIONS(4619), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66584] = 2, - ACTIONS(2682), 1, - anon_sym_COLON_COLON, + [65354] = 2, + ACTIONS(5320), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66592] = 2, - ACTIONS(4813), 1, + [65362] = 2, + ACTIONS(5322), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66600] = 2, + [65370] = 2, ACTIONS(5324), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66608] = 2, - ACTIONS(2700), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66616] = 2, + [65378] = 2, ACTIONS(5326), 1, - anon_sym_COLON_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66624] = 2, + [65386] = 2, ACTIONS(5328), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66632] = 2, + [65394] = 2, ACTIONS(5330), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66640] = 2, - ACTIONS(4821), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66648] = 2, + [65402] = 2, ACTIONS(5332), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66656] = 2, + [65410] = 2, ACTIONS(5334), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66664] = 2, + [65418] = 2, ACTIONS(5336), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66672] = 2, + [65426] = 2, ACTIONS(5338), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66680] = 2, - ACTIONS(5340), 1, - sym_identifier, + [65434] = 2, + ACTIONS(3203), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66688] = 2, - ACTIONS(5342), 1, + [65442] = 2, + ACTIONS(5340), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66696] = 2, - ACTIONS(5344), 1, - anon_sym_EQ_GT, + [65450] = 2, + ACTIONS(3493), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66704] = 2, - ACTIONS(5346), 1, - sym_identifier, + [65458] = 2, + ACTIONS(5342), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66712] = 2, - ACTIONS(5348), 1, + [65466] = 2, + ACTIONS(5344), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66720] = 2, - ACTIONS(3229), 1, - anon_sym_COLON_COLON, + [65474] = 2, + ACTIONS(5346), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66728] = 2, - ACTIONS(5350), 1, + [65482] = 2, + ACTIONS(5348), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66736] = 2, - ACTIONS(3517), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66744] = 2, - ACTIONS(5352), 1, + [65490] = 2, + ACTIONS(5350), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66752] = 2, - ACTIONS(4734), 1, + [65498] = 2, + ACTIONS(5352), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66760] = 2, + [65506] = 2, ACTIONS(5354), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66768] = 2, - ACTIONS(4329), 1, - anon_sym_RPAREN, + [65514] = 2, + ACTIONS(5356), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66776] = 2, - ACTIONS(5356), 1, - anon_sym_COLON, + [65522] = 2, + ACTIONS(3171), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66784] = 2, + [65530] = 2, ACTIONS(5358), 1, - sym_identifier, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66792] = 2, - ACTIONS(4901), 1, - anon_sym_RBRACE, + [65538] = 2, + ACTIONS(4883), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66800] = 2, + [65546] = 2, ACTIONS(5360), 1, - anon_sym_COLON, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66808] = 2, - ACTIONS(3193), 1, - anon_sym_COLON_COLON, + [65554] = 2, + ACTIONS(4743), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66816] = 2, + [65562] = 2, ACTIONS(5362), 1, - anon_sym_COLON_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66824] = 2, + [65570] = 2, ACTIONS(5364), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66832] = 2, + [65578] = 2, + ACTIONS(374), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65586] = 2, ACTIONS(5366), 1, - anon_sym_COLON, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66840] = 2, + [65594] = 2, ACTIONS(5368), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66848] = 2, - ACTIONS(5370), 1, - anon_sym_SEMI, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66856] = 2, - ACTIONS(5372), 1, + [65602] = 2, + ACTIONS(4893), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66864] = 2, - ACTIONS(5374), 1, - anon_sym_fn, + [65610] = 2, + ACTIONS(5370), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66872] = 2, - ACTIONS(5376), 1, + [65618] = 2, + ACTIONS(3169), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66880] = 2, - ACTIONS(3191), 1, + [65626] = 2, + ACTIONS(5372), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66888] = 2, - ACTIONS(4683), 1, - anon_sym_RBRACE, + [65634] = 2, + ACTIONS(5374), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66896] = 2, - ACTIONS(4606), 1, + [65642] = 2, + ACTIONS(5376), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66904] = 2, + [65650] = 2, ACTIONS(5378), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66912] = 2, + [65658] = 2, ACTIONS(5380), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66920] = 2, + [65666] = 2, ACTIONS(5382), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66928] = 2, + [65674] = 2, ACTIONS(5384), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66936] = 2, + [65682] = 2, ACTIONS(5386), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66944] = 2, + [65690] = 2, ACTIONS(5388), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66952] = 2, + [65698] = 2, ACTIONS(5390), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66960] = 2, + [65706] = 2, + ACTIONS(4033), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65714] = 2, ACTIONS(5392), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66968] = 2, + [65722] = 2, ACTIONS(5394), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66976] = 2, - ACTIONS(5396), 1, - sym_identifier, + [65730] = 2, + ACTIONS(3574), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66984] = 2, - ACTIONS(5398), 1, - anon_sym_SEMI, + [65738] = 2, + ACTIONS(4389), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66992] = 2, - ACTIONS(4651), 1, - sym_identifier, + [65746] = 2, + ACTIONS(5396), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67000] = 2, - ACTIONS(5400), 1, + [65754] = 2, + ACTIONS(5398), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67008] = 2, - ACTIONS(4359), 1, + [65762] = 2, + ACTIONS(5400), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67016] = 2, - ACTIONS(4005), 1, + [65770] = 2, + ACTIONS(5402), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67024] = 2, - ACTIONS(5402), 1, - anon_sym_RBRACK, + [65778] = 2, + ACTIONS(2718), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67032] = 2, + [65786] = 2, ACTIONS(5404), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67040] = 2, - ACTIONS(5406), 1, - anon_sym_RBRACK, + [65794] = 2, + ACTIONS(5240), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67048] = 2, - ACTIONS(5408), 1, - anon_sym_RBRACK, + [65802] = 2, + ACTIONS(5406), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67056] = 2, - ACTIONS(2728), 1, - anon_sym_COLON_COLON, + [65810] = 2, + ACTIONS(5408), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67064] = 2, + [65818] = 2, ACTIONS(5410), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67072] = 2, - ACTIONS(5292), 1, - anon_sym_COLON_COLON, + [65826] = 2, + ACTIONS(5412), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67080] = 2, - ACTIONS(2476), 1, - anon_sym_PLUS, + [65834] = 2, + ACTIONS(5414), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67088] = 2, - ACTIONS(5412), 1, - anon_sym_fn, + [65842] = 2, + ACTIONS(4713), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67096] = 2, - ACTIONS(5414), 1, + [65850] = 2, + ACTIONS(5416), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67104] = 2, - ACTIONS(5416), 1, - anon_sym_fn, + [65858] = 2, + ACTIONS(4107), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67112] = 2, + [65866] = 2, ACTIONS(5418), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67120] = 2, + [65874] = 2, ACTIONS(5420), 1, - anon_sym_EQ_GT, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67128] = 2, + [65882] = 2, ACTIONS(5422), 1, - sym_identifier, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67136] = 2, + [65890] = 2, ACTIONS(5424), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67144] = 2, + [65898] = 2, ACTIONS(5426), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67152] = 2, + [65906] = 2, ACTIONS(5428), 1, - anon_sym_LT, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67160] = 2, + [65914] = 2, ACTIONS(5430), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67168] = 2, + [65922] = 2, ACTIONS(5432), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67176] = 2, + [65930] = 2, ACTIONS(5434), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67184] = 2, - ACTIONS(4013), 1, - anon_sym_SEMI, + [65938] = 2, + ACTIONS(5436), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67192] = 2, - ACTIONS(5436), 1, - sym_identifier, + [65946] = 2, + ACTIONS(5438), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67200] = 2, - ACTIONS(5438), 1, + [65954] = 2, + ACTIONS(4237), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67208] = 2, + [65962] = 2, ACTIONS(5440), 1, - anon_sym_fn, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67216] = 2, + [65970] = 2, ACTIONS(5442), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67224] = 2, - ACTIONS(5444), 1, - anon_sym_RBRACE, + [65978] = 2, + ACTIONS(5138), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67232] = 2, - ACTIONS(4109), 1, - sym_identifier, + [65986] = 2, + ACTIONS(5444), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67240] = 2, + [65994] = 2, ACTIONS(5446), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67248] = 2, - ACTIONS(2375), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67256] = 2, + [66002] = 2, ACTIONS(5448), 1, - anon_sym_LPAREN, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67264] = 2, - ACTIONS(5450), 1, - sym_identifier, + [66010] = 2, + ACTIONS(4383), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67272] = 2, - ACTIONS(5146), 1, + [66018] = 2, + ACTIONS(5450), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67280] = 2, + [66026] = 2, ACTIONS(5452), 1, - anon_sym_RBRACE, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67288] = 2, + [66034] = 2, ACTIONS(5454), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67296] = 2, + [66042] = 2, ACTIONS(5456), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67304] = 2, - ACTIONS(5260), 1, - anon_sym_SEMI, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67312] = 2, + [66050] = 2, ACTIONS(5458), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67320] = 2, + [66058] = 2, ACTIONS(5460), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67328] = 2, - ACTIONS(3556), 1, - anon_sym_COLON_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67336] = 2, + [66066] = 2, ACTIONS(5462), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67344] = 2, - ACTIONS(4107), 1, - anon_sym_COLON_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67352] = 2, + [66074] = 2, ACTIONS(5464), 1, - sym_self, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67360] = 2, + [66082] = 2, ACTIONS(5466), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67368] = 2, + [66090] = 2, ACTIONS(5468), 1, - sym_identifier, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67376] = 2, + [66098] = 2, ACTIONS(5470), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67384] = 2, - ACTIONS(5158), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67392] = 2, - ACTIONS(4568), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67400] = 2, + [66106] = 2, ACTIONS(5472), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67408] = 2, - ACTIONS(5474), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67416] = 2, - ACTIONS(3590), 1, - anon_sym_COLON_COLON, + [66114] = 2, + ACTIONS(3997), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67424] = 2, - ACTIONS(4614), 1, - anon_sym_RBRACE, + [66122] = 2, + ACTIONS(5474), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67432] = 2, + [66130] = 2, ACTIONS(5476), 1, - anon_sym_EQ_GT, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67440] = 2, + [66138] = 2, ACTIONS(5478), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67448] = 2, - ACTIONS(4293), 1, - anon_sym_RPAREN, + [66146] = 2, + ACTIONS(3957), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67456] = 2, - ACTIONS(5480), 1, - anon_sym_SEMI, + [66154] = 2, + ACTIONS(4652), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67464] = 2, - ACTIONS(512), 1, - anon_sym_RBRACK, + [66162] = 2, + ACTIONS(5480), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67472] = 2, + [66170] = 2, ACTIONS(5482), 1, - anon_sym_COLON_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67480] = 2, + [66178] = 2, ACTIONS(5484), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67488] = 2, + [66186] = 2, ACTIONS(5486), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67496] = 2, + [66194] = 2, ACTIONS(5488), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67504] = 2, + [66202] = 2, + ACTIONS(3508), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66210] = 2, ACTIONS(5490), 1, - anon_sym_RBRACK, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67512] = 2, - ACTIONS(5492), 1, - sym_identifier, + [66218] = 2, + ACTIONS(4631), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67520] = 2, - ACTIONS(5494), 1, + [66226] = 2, + ACTIONS(5492), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67528] = 2, - ACTIONS(4854), 1, - sym_identifier, + [66234] = 2, + ACTIONS(4161), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67536] = 2, - ACTIONS(368), 1, - anon_sym_RBRACK, + [66242] = 2, + ACTIONS(5494), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67544] = 2, + [66250] = 2, ACTIONS(5496), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67552] = 2, + [66258] = 2, ACTIONS(5498), 1, - anon_sym_LBRACK, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67560] = 2, + [66266] = 2, ACTIONS(5500), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67568] = 2, - ACTIONS(4699), 1, - anon_sym_RBRACE, + [66274] = 2, + ACTIONS(5502), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67576] = 2, - ACTIONS(4809), 1, - anon_sym_RPAREN, + [66282] = 2, + ACTIONS(4541), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67584] = 2, - ACTIONS(5284), 1, - anon_sym_COLON_COLON, + [66290] = 2, + ACTIONS(3189), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67592] = 2, - ACTIONS(5502), 1, + [66298] = 2, + ACTIONS(5504), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67600] = 2, - ACTIONS(5504), 1, + [66306] = 2, + ACTIONS(3961), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67608] = 2, + [66314] = 2, ACTIONS(5506), 1, - anon_sym_COLON, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67616] = 2, - ACTIONS(4422), 1, - anon_sym_RPAREN, + [66322] = 2, + ACTIONS(2480), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67624] = 2, - ACTIONS(5508), 1, - sym_identifier, + [66330] = 2, + ACTIONS(4623), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67632] = 2, - ACTIONS(4045), 1, - anon_sym_COLON_COLON, + [66338] = 2, + ACTIONS(5508), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67640] = 2, + [66346] = 2, ACTIONS(5510), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67648] = 2, - ACTIONS(3469), 1, - anon_sym_fn, + [66354] = 2, + ACTIONS(2654), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67656] = 2, + [66362] = 2, ACTIONS(5512), 1, - ts_builtin_sym_end, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67664] = 2, - ACTIONS(5514), 1, - anon_sym_COLON, + [66370] = 2, + ACTIONS(5019), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67672] = 2, - ACTIONS(5516), 1, - anon_sym_SEMI, + [66378] = 2, + ACTIONS(2720), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67680] = 2, - ACTIONS(2734), 1, + [66386] = 2, + ACTIONS(5514), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67688] = 2, - ACTIONS(5518), 1, - anon_sym_COLON_COLON, + [66394] = 2, + ACTIONS(5516), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67696] = 2, - ACTIONS(5520), 1, - sym_identifier, + [66402] = 2, + ACTIONS(4613), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67704] = 2, - ACTIONS(4395), 1, - anon_sym_RBRACK, + [66410] = 2, + ACTIONS(2393), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67712] = 2, - ACTIONS(5522), 1, - anon_sym_SEMI, + [66418] = 2, + ACTIONS(5518), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67720] = 2, - ACTIONS(2490), 1, - anon_sym_PLUS, + [66426] = 2, + ACTIONS(5520), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67728] = 2, - ACTIONS(2808), 1, + [66434] = 2, + ACTIONS(2714), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67736] = 2, - ACTIONS(5524), 1, + [66442] = 2, + ACTIONS(5522), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67744] = 2, - ACTIONS(5526), 1, - anon_sym_SEMI, + [66450] = 2, + ACTIONS(5004), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67752] = 2, - ACTIONS(5528), 1, - sym_identifier, + [66458] = 2, + ACTIONS(5524), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67760] = 2, - ACTIONS(5530), 1, + [66466] = 2, + ACTIONS(5526), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67768] = 2, - ACTIONS(4815), 1, + [66474] = 2, + ACTIONS(5528), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67776] = 2, - ACTIONS(2409), 1, - anon_sym_EQ_GT, + [66482] = 2, + ACTIONS(4297), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67784] = 2, - ACTIONS(5123), 1, - sym_identifier, + [66490] = 2, + ACTIONS(4073), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67792] = 2, - ACTIONS(5532), 1, - anon_sym_SEMI, + [66498] = 2, + ACTIONS(5530), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67800] = 2, - ACTIONS(5144), 1, - anon_sym_SEMI, + [66506] = 2, + ACTIONS(5532), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67808] = 2, + [66514] = 2, ACTIONS(5534), 1, - anon_sym_SEMI, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67816] = 2, - ACTIONS(4133), 1, + [66522] = 2, + ACTIONS(4150), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67824] = 2, + [66530] = 2, ACTIONS(5536), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67832] = 2, + [66538] = 2, ACTIONS(5538), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67840] = 2, - ACTIONS(5540), 1, - sym_identifier, + [66546] = 2, + ACTIONS(4097), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67848] = 2, - ACTIONS(4155), 1, + [66554] = 2, + ACTIONS(5540), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67856] = 2, + [66562] = 2, ACTIONS(5542), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67864] = 2, + [66570] = 2, ACTIONS(5544), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67872] = 2, - ACTIONS(4147), 1, - anon_sym_COLON_COLON, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67880] = 2, + [66578] = 2, ACTIONS(5546), 1, - anon_sym_COLON_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67888] = 2, - ACTIONS(5548), 1, - anon_sym_SEMI, + [66586] = 2, + ACTIONS(4594), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67896] = 2, - ACTIONS(3231), 1, - anon_sym_RPAREN, + [66594] = 2, + ACTIONS(5548), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67904] = 2, + [66602] = 2, ACTIONS(5550), 1, - anon_sym_SEMI, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67912] = 2, + [66610] = 2, ACTIONS(5552), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67920] = 2, + [66618] = 2, ACTIONS(5554), 1, - anon_sym_COLON, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67928] = 2, + [66626] = 2, ACTIONS(5556), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67936] = 2, - ACTIONS(5558), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67944] = 2, - ACTIONS(5560), 1, - anon_sym_RPAREN, + [66634] = 2, + ACTIONS(4557), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67952] = 2, - ACTIONS(5562), 1, + [66642] = 2, + ACTIONS(4247), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67960] = 2, - ACTIONS(5564), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67968] = 2, - ACTIONS(4559), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67976] = 2, - ACTIONS(5566), 1, + [66650] = 2, + ACTIONS(5558), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67984] = 2, - ACTIONS(5568), 1, + [66658] = 2, + ACTIONS(5560), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67992] = 2, - ACTIONS(5570), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68000] = 2, - ACTIONS(5572), 1, - sym_identifier, + [66666] = 2, + ACTIONS(630), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68008] = 2, - ACTIONS(5574), 1, - anon_sym_fn, + [66674] = 2, + ACTIONS(5562), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68016] = 2, - ACTIONS(5576), 1, - anon_sym_RPAREN, + [66682] = 2, + ACTIONS(5564), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68024] = 2, - ACTIONS(5578), 1, - anon_sym_EQ_GT, + [66690] = 2, + ACTIONS(5566), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68032] = 2, - ACTIONS(5580), 1, - anon_sym_SEMI, + [66698] = 2, + ACTIONS(5568), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68040] = 2, - ACTIONS(5582), 1, - anon_sym_RBRACK, + [66706] = 2, + ACTIONS(5570), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68048] = 2, - ACTIONS(5584), 1, + [66714] = 2, + ACTIONS(5572), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68056] = 2, - ACTIONS(5586), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68064] = 2, - ACTIONS(5588), 1, - anon_sym_RPAREN, + [66722] = 2, + ACTIONS(2371), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68072] = 2, - ACTIONS(5590), 1, - anon_sym_SEMI, + [66730] = 2, + ACTIONS(5574), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68080] = 2, - ACTIONS(4917), 1, - sym_identifier, + [66738] = 2, + ACTIONS(5576), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68088] = 2, - ACTIONS(5592), 1, + [66746] = 2, + ACTIONS(5578), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68096] = 2, - ACTIONS(4037), 1, + [66754] = 2, + ACTIONS(5580), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68104] = 2, - ACTIONS(5594), 1, - sym_identifier, + [66762] = 2, + ACTIONS(5094), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68112] = 2, - ACTIONS(5596), 1, + [66770] = 2, + ACTIONS(5582), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68120] = 2, - ACTIONS(5598), 1, + [66778] = 2, + ACTIONS(5584), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68128] = 2, - ACTIONS(5600), 1, - anon_sym_SEMI, + [66786] = 2, + ACTIONS(5586), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68136] = 2, - ACTIONS(5602), 1, - anon_sym_LPAREN, + [66794] = 2, + ACTIONS(5588), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68144] = 2, - ACTIONS(5604), 1, + [66802] = 2, + ACTIONS(5590), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68152] = 2, - ACTIONS(5606), 1, + [66810] = 2, + ACTIONS(5148), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68160] = 2, - ACTIONS(5608), 1, + [66818] = 2, + ACTIONS(5592), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68168] = 2, - ACTIONS(5610), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68176] = 2, - ACTIONS(5612), 1, + [66826] = 2, + ACTIONS(5594), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68184] = 2, - ACTIONS(5614), 1, + [66834] = 2, + ACTIONS(5596), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68192] = 2, - ACTIONS(3983), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68200] = 2, - ACTIONS(4989), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68208] = 2, - ACTIONS(5616), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68216] = 2, - ACTIONS(5618), 1, + [66842] = 2, + ACTIONS(5598), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68224] = 2, - ACTIONS(5620), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68232] = 2, - ACTIONS(5622), 1, + [66850] = 2, + ACTIONS(5600), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68240] = 2, - ACTIONS(5624), 1, + [66858] = 2, + ACTIONS(5602), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68248] = 2, - ACTIONS(3493), 1, - anon_sym_fn, + [66866] = 2, + ACTIONS(5604), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68256] = 2, - ACTIONS(5057), 1, - anon_sym_RBRACE, + [66874] = 2, + ACTIONS(3465), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68264] = 2, - ACTIONS(5626), 1, + [66882] = 2, + ACTIONS(5146), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68272] = 2, - ACTIONS(5628), 1, + [66890] = 2, + ACTIONS(5606), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68280] = 2, - ACTIONS(5630), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68288] = 2, - ACTIONS(5632), 1, - anon_sym_RBRACE, + [66898] = 2, + ACTIONS(5608), 1, + anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68296] = 2, - ACTIONS(5634), 1, - anon_sym_EQ_GT, + [66906] = 2, + ACTIONS(5144), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68304] = 2, - ACTIONS(5636), 1, + [66914] = 2, + ACTIONS(5610), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68312] = 2, - ACTIONS(5638), 1, + [66922] = 2, + ACTIONS(5612), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68320] = 2, - ACTIONS(5640), 1, + [66930] = 2, + ACTIONS(5614), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68328] = 2, - ACTIONS(5642), 1, - anon_sym_SEMI, + [66938] = 2, + ACTIONS(3532), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68336] = 2, - ACTIONS(5644), 1, - sym_identifier, + [66946] = 2, + ACTIONS(5192), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68344] = 2, - ACTIONS(5646), 1, + [66954] = 2, + ACTIONS(5616), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68352] = 2, - ACTIONS(5648), 1, + [66962] = 2, + ACTIONS(5618), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68360] = 2, - ACTIONS(4355), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68368] = 2, - ACTIONS(5650), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68376] = 2, - ACTIONS(5162), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68384] = 2, - ACTIONS(3534), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68392] = 2, - ACTIONS(5652), 1, + [66970] = 2, + ACTIONS(5620), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -129248,1929 +126073,1916 @@ static const uint16_t ts_small_parse_table[] = { }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(659)] = 0, - [SMALL_STATE(660)] = 129, - [SMALL_STATE(661)] = 258, - [SMALL_STATE(662)] = 387, - [SMALL_STATE(663)] = 516, - [SMALL_STATE(664)] = 645, - [SMALL_STATE(665)] = 774, - [SMALL_STATE(666)] = 903, - [SMALL_STATE(667)] = 1032, - [SMALL_STATE(668)] = 1161, - [SMALL_STATE(669)] = 1290, - [SMALL_STATE(670)] = 1419, - [SMALL_STATE(671)] = 1548, - [SMALL_STATE(672)] = 1677, - [SMALL_STATE(673)] = 1806, - [SMALL_STATE(674)] = 1935, - [SMALL_STATE(675)] = 2064, - [SMALL_STATE(676)] = 2193, - [SMALL_STATE(677)] = 2322, - [SMALL_STATE(678)] = 2451, - [SMALL_STATE(679)] = 2580, - [SMALL_STATE(680)] = 2709, - [SMALL_STATE(681)] = 2838, - [SMALL_STATE(682)] = 2967, - [SMALL_STATE(683)] = 3096, - [SMALL_STATE(684)] = 3225, - [SMALL_STATE(685)] = 3354, - [SMALL_STATE(686)] = 3483, - [SMALL_STATE(687)] = 3612, - [SMALL_STATE(688)] = 3741, - [SMALL_STATE(689)] = 3870, - [SMALL_STATE(690)] = 3999, - [SMALL_STATE(691)] = 4128, - [SMALL_STATE(692)] = 4257, - [SMALL_STATE(693)] = 4386, - [SMALL_STATE(694)] = 4515, - [SMALL_STATE(695)] = 4644, - [SMALL_STATE(696)] = 4773, - [SMALL_STATE(697)] = 4902, - [SMALL_STATE(698)] = 5031, - [SMALL_STATE(699)] = 5160, - [SMALL_STATE(700)] = 5289, - [SMALL_STATE(701)] = 5418, - [SMALL_STATE(702)] = 5547, - [SMALL_STATE(703)] = 5676, - [SMALL_STATE(704)] = 5805, - [SMALL_STATE(705)] = 5934, - [SMALL_STATE(706)] = 6063, - [SMALL_STATE(707)] = 6192, - [SMALL_STATE(708)] = 6321, - [SMALL_STATE(709)] = 6450, - [SMALL_STATE(710)] = 6579, - [SMALL_STATE(711)] = 6708, - [SMALL_STATE(712)] = 6837, - [SMALL_STATE(713)] = 6966, - [SMALL_STATE(714)] = 7095, - [SMALL_STATE(715)] = 7224, - [SMALL_STATE(716)] = 7353, - [SMALL_STATE(717)] = 7482, - [SMALL_STATE(718)] = 7611, - [SMALL_STATE(719)] = 7740, - [SMALL_STATE(720)] = 7869, - [SMALL_STATE(721)] = 7998, - [SMALL_STATE(722)] = 8127, - [SMALL_STATE(723)] = 8256, - [SMALL_STATE(724)] = 8385, - [SMALL_STATE(725)] = 8514, - [SMALL_STATE(726)] = 8643, - [SMALL_STATE(727)] = 8772, - [SMALL_STATE(728)] = 8901, - [SMALL_STATE(729)] = 9030, - [SMALL_STATE(730)] = 9159, - [SMALL_STATE(731)] = 9288, - [SMALL_STATE(732)] = 9417, - [SMALL_STATE(733)] = 9546, - [SMALL_STATE(734)] = 9675, - [SMALL_STATE(735)] = 9804, - [SMALL_STATE(736)] = 9933, - [SMALL_STATE(737)] = 10062, - [SMALL_STATE(738)] = 10193, - [SMALL_STATE(739)] = 10264, - [SMALL_STATE(740)] = 10393, - [SMALL_STATE(741)] = 10522, - [SMALL_STATE(742)] = 10651, - [SMALL_STATE(743)] = 10780, - [SMALL_STATE(744)] = 10909, - [SMALL_STATE(745)] = 11038, - [SMALL_STATE(746)] = 11167, - [SMALL_STATE(747)] = 11296, - [SMALL_STATE(748)] = 11425, - [SMALL_STATE(749)] = 11554, - [SMALL_STATE(750)] = 11683, - [SMALL_STATE(751)] = 11812, - [SMALL_STATE(752)] = 11941, - [SMALL_STATE(753)] = 12070, - [SMALL_STATE(754)] = 12199, - [SMALL_STATE(755)] = 12328, - [SMALL_STATE(756)] = 12457, - [SMALL_STATE(757)] = 12586, - [SMALL_STATE(758)] = 12715, - [SMALL_STATE(759)] = 12844, - [SMALL_STATE(760)] = 12973, - [SMALL_STATE(761)] = 13102, - [SMALL_STATE(762)] = 13231, - [SMALL_STATE(763)] = 13360, - [SMALL_STATE(764)] = 13489, - [SMALL_STATE(765)] = 13618, - [SMALL_STATE(766)] = 13747, - [SMALL_STATE(767)] = 13876, - [SMALL_STATE(768)] = 14005, - [SMALL_STATE(769)] = 14134, - [SMALL_STATE(770)] = 14200, - [SMALL_STATE(771)] = 14266, - [SMALL_STATE(772)] = 14332, - [SMALL_STATE(773)] = 14398, - [SMALL_STATE(774)] = 14460, - [SMALL_STATE(775)] = 14530, - [SMALL_STATE(776)] = 14597, - [SMALL_STATE(777)] = 14664, - [SMALL_STATE(778)] = 14724, - [SMALL_STATE(779)] = 14784, - [SMALL_STATE(780)] = 14844, - [SMALL_STATE(781)] = 14908, - [SMALL_STATE(782)] = 14964, - [SMALL_STATE(783)] = 15020, - [SMALL_STATE(784)] = 15084, - [SMALL_STATE(785)] = 15148, - [SMALL_STATE(786)] = 15208, - [SMALL_STATE(787)] = 15264, - [SMALL_STATE(788)] = 15328, - [SMALL_STATE(789)] = 15384, - [SMALL_STATE(790)] = 15446, - [SMALL_STATE(791)] = 15502, - [SMALL_STATE(792)] = 15557, - [SMALL_STATE(793)] = 15614, - [SMALL_STATE(794)] = 15673, - [SMALL_STATE(795)] = 15732, - [SMALL_STATE(796)] = 15789, - [SMALL_STATE(797)] = 15848, - [SMALL_STATE(798)] = 15905, - [SMALL_STATE(799)] = 15962, - [SMALL_STATE(800)] = 16016, - [SMALL_STATE(801)] = 16070, - [SMALL_STATE(802)] = 16128, - [SMALL_STATE(803)] = 16184, - [SMALL_STATE(804)] = 16242, - [SMALL_STATE(805)] = 16296, - [SMALL_STATE(806)] = 16350, - [SMALL_STATE(807)] = 16404, - [SMALL_STATE(808)] = 16462, - [SMALL_STATE(809)] = 16516, - [SMALL_STATE(810)] = 16570, - [SMALL_STATE(811)] = 16624, - [SMALL_STATE(812)] = 16678, - [SMALL_STATE(813)] = 16732, - [SMALL_STATE(814)] = 16786, - [SMALL_STATE(815)] = 16840, - [SMALL_STATE(816)] = 16894, - [SMALL_STATE(817)] = 16948, - [SMALL_STATE(818)] = 17002, - [SMALL_STATE(819)] = 17056, - [SMALL_STATE(820)] = 17110, - [SMALL_STATE(821)] = 17164, - [SMALL_STATE(822)] = 17218, - [SMALL_STATE(823)] = 17272, - [SMALL_STATE(824)] = 17326, - [SMALL_STATE(825)] = 17380, - [SMALL_STATE(826)] = 17436, - [SMALL_STATE(827)] = 17490, - [SMALL_STATE(828)] = 17544, - [SMALL_STATE(829)] = 17598, - [SMALL_STATE(830)] = 17654, - [SMALL_STATE(831)] = 17708, - [SMALL_STATE(832)] = 17764, - [SMALL_STATE(833)] = 17818, - [SMALL_STATE(834)] = 17872, - [SMALL_STATE(835)] = 17926, - [SMALL_STATE(836)] = 17980, - [SMALL_STATE(837)] = 18034, - [SMALL_STATE(838)] = 18088, - [SMALL_STATE(839)] = 18142, - [SMALL_STATE(840)] = 18196, - [SMALL_STATE(841)] = 18250, - [SMALL_STATE(842)] = 18304, - [SMALL_STATE(843)] = 18358, - [SMALL_STATE(844)] = 18412, - [SMALL_STATE(845)] = 18466, - [SMALL_STATE(846)] = 18520, - [SMALL_STATE(847)] = 18574, - [SMALL_STATE(848)] = 18628, - [SMALL_STATE(849)] = 18682, - [SMALL_STATE(850)] = 18736, - [SMALL_STATE(851)] = 18790, - [SMALL_STATE(852)] = 18844, - [SMALL_STATE(853)] = 18898, - [SMALL_STATE(854)] = 18952, - [SMALL_STATE(855)] = 19006, - [SMALL_STATE(856)] = 19060, - [SMALL_STATE(857)] = 19114, - [SMALL_STATE(858)] = 19168, - [SMALL_STATE(859)] = 19222, - [SMALL_STATE(860)] = 19276, - [SMALL_STATE(861)] = 19330, - [SMALL_STATE(862)] = 19384, - [SMALL_STATE(863)] = 19438, - [SMALL_STATE(864)] = 19492, - [SMALL_STATE(865)] = 19546, - [SMALL_STATE(866)] = 19600, - [SMALL_STATE(867)] = 19654, - [SMALL_STATE(868)] = 19708, - [SMALL_STATE(869)] = 19762, - [SMALL_STATE(870)] = 19816, - [SMALL_STATE(871)] = 19870, - [SMALL_STATE(872)] = 19924, - [SMALL_STATE(873)] = 19978, - [SMALL_STATE(874)] = 20032, - [SMALL_STATE(875)] = 20086, - [SMALL_STATE(876)] = 20140, - [SMALL_STATE(877)] = 20194, - [SMALL_STATE(878)] = 20248, - [SMALL_STATE(879)] = 20302, - [SMALL_STATE(880)] = 20356, - [SMALL_STATE(881)] = 20410, - [SMALL_STATE(882)] = 20464, - [SMALL_STATE(883)] = 20518, - [SMALL_STATE(884)] = 20572, - [SMALL_STATE(885)] = 20626, - [SMALL_STATE(886)] = 20680, - [SMALL_STATE(887)] = 20734, - [SMALL_STATE(888)] = 20788, - [SMALL_STATE(889)] = 20842, - [SMALL_STATE(890)] = 20896, - [SMALL_STATE(891)] = 20950, - [SMALL_STATE(892)] = 21004, - [SMALL_STATE(893)] = 21058, - [SMALL_STATE(894)] = 21112, - [SMALL_STATE(895)] = 21166, - [SMALL_STATE(896)] = 21220, - [SMALL_STATE(897)] = 21274, - [SMALL_STATE(898)] = 21328, - [SMALL_STATE(899)] = 21382, - [SMALL_STATE(900)] = 21436, - [SMALL_STATE(901)] = 21490, - [SMALL_STATE(902)] = 21544, - [SMALL_STATE(903)] = 21598, - [SMALL_STATE(904)] = 21652, - [SMALL_STATE(905)] = 21706, - [SMALL_STATE(906)] = 21760, - [SMALL_STATE(907)] = 21814, - [SMALL_STATE(908)] = 21868, - [SMALL_STATE(909)] = 21922, - [SMALL_STATE(910)] = 21978, - [SMALL_STATE(911)] = 22032, - [SMALL_STATE(912)] = 22088, - [SMALL_STATE(913)] = 22142, - [SMALL_STATE(914)] = 22196, - [SMALL_STATE(915)] = 22250, - [SMALL_STATE(916)] = 22304, - [SMALL_STATE(917)] = 22358, - [SMALL_STATE(918)] = 22412, - [SMALL_STATE(919)] = 22466, - [SMALL_STATE(920)] = 22520, - [SMALL_STATE(921)] = 22576, - [SMALL_STATE(922)] = 22630, - [SMALL_STATE(923)] = 22684, - [SMALL_STATE(924)] = 22738, - [SMALL_STATE(925)] = 22792, - [SMALL_STATE(926)] = 22848, - [SMALL_STATE(927)] = 22902, - [SMALL_STATE(928)] = 22956, - [SMALL_STATE(929)] = 23010, - [SMALL_STATE(930)] = 23064, - [SMALL_STATE(931)] = 23118, - [SMALL_STATE(932)] = 23172, - [SMALL_STATE(933)] = 23226, - [SMALL_STATE(934)] = 23282, - [SMALL_STATE(935)] = 23336, - [SMALL_STATE(936)] = 23390, - [SMALL_STATE(937)] = 23444, - [SMALL_STATE(938)] = 23500, - [SMALL_STATE(939)] = 23554, - [SMALL_STATE(940)] = 23608, - [SMALL_STATE(941)] = 23662, - [SMALL_STATE(942)] = 23716, - [SMALL_STATE(943)] = 23770, - [SMALL_STATE(944)] = 23824, - [SMALL_STATE(945)] = 23878, - [SMALL_STATE(946)] = 23932, - [SMALL_STATE(947)] = 23986, - [SMALL_STATE(948)] = 24040, - [SMALL_STATE(949)] = 24094, - [SMALL_STATE(950)] = 24148, - [SMALL_STATE(951)] = 24202, - [SMALL_STATE(952)] = 24256, - [SMALL_STATE(953)] = 24310, - [SMALL_STATE(954)] = 24364, - [SMALL_STATE(955)] = 24418, - [SMALL_STATE(956)] = 24472, - [SMALL_STATE(957)] = 24526, - [SMALL_STATE(958)] = 24580, - [SMALL_STATE(959)] = 24634, - [SMALL_STATE(960)] = 24688, - [SMALL_STATE(961)] = 24742, - [SMALL_STATE(962)] = 24796, - [SMALL_STATE(963)] = 24850, - [SMALL_STATE(964)] = 24904, - [SMALL_STATE(965)] = 24958, - [SMALL_STATE(966)] = 25012, - [SMALL_STATE(967)] = 25066, - [SMALL_STATE(968)] = 25120, - [SMALL_STATE(969)] = 25174, - [SMALL_STATE(970)] = 25228, - [SMALL_STATE(971)] = 25282, - [SMALL_STATE(972)] = 25336, - [SMALL_STATE(973)] = 25390, - [SMALL_STATE(974)] = 25444, - [SMALL_STATE(975)] = 25498, - [SMALL_STATE(976)] = 25552, - [SMALL_STATE(977)] = 25606, - [SMALL_STATE(978)] = 25660, - [SMALL_STATE(979)] = 25714, - [SMALL_STATE(980)] = 25768, - [SMALL_STATE(981)] = 25822, - [SMALL_STATE(982)] = 25876, - [SMALL_STATE(983)] = 25930, - [SMALL_STATE(984)] = 25984, - [SMALL_STATE(985)] = 26038, - [SMALL_STATE(986)] = 26092, - [SMALL_STATE(987)] = 26146, - [SMALL_STATE(988)] = 26200, - [SMALL_STATE(989)] = 26254, - [SMALL_STATE(990)] = 26308, - [SMALL_STATE(991)] = 26362, - [SMALL_STATE(992)] = 26416, - [SMALL_STATE(993)] = 26470, - [SMALL_STATE(994)] = 26524, - [SMALL_STATE(995)] = 26578, - [SMALL_STATE(996)] = 26632, - [SMALL_STATE(997)] = 26686, - [SMALL_STATE(998)] = 26740, - [SMALL_STATE(999)] = 26794, - [SMALL_STATE(1000)] = 26848, - [SMALL_STATE(1001)] = 26902, - [SMALL_STATE(1002)] = 26956, - [SMALL_STATE(1003)] = 27010, - [SMALL_STATE(1004)] = 27064, - [SMALL_STATE(1005)] = 27118, - [SMALL_STATE(1006)] = 27172, - [SMALL_STATE(1007)] = 27226, - [SMALL_STATE(1008)] = 27280, - [SMALL_STATE(1009)] = 27334, - [SMALL_STATE(1010)] = 27388, - [SMALL_STATE(1011)] = 27442, - [SMALL_STATE(1012)] = 27496, - [SMALL_STATE(1013)] = 27550, - [SMALL_STATE(1014)] = 27604, - [SMALL_STATE(1015)] = 27658, - [SMALL_STATE(1016)] = 27712, - [SMALL_STATE(1017)] = 27766, - [SMALL_STATE(1018)] = 27820, - [SMALL_STATE(1019)] = 27874, - [SMALL_STATE(1020)] = 27928, - [SMALL_STATE(1021)] = 27982, - [SMALL_STATE(1022)] = 28036, - [SMALL_STATE(1023)] = 28090, - [SMALL_STATE(1024)] = 28144, - [SMALL_STATE(1025)] = 28198, - [SMALL_STATE(1026)] = 28252, - [SMALL_STATE(1027)] = 28306, - [SMALL_STATE(1028)] = 28360, - [SMALL_STATE(1029)] = 28416, - [SMALL_STATE(1030)] = 28470, - [SMALL_STATE(1031)] = 28524, - [SMALL_STATE(1032)] = 28578, - [SMALL_STATE(1033)] = 28632, - [SMALL_STATE(1034)] = 28686, - [SMALL_STATE(1035)] = 28740, - [SMALL_STATE(1036)] = 28796, - [SMALL_STATE(1037)] = 28850, - [SMALL_STATE(1038)] = 28904, - [SMALL_STATE(1039)] = 28958, - [SMALL_STATE(1040)] = 29012, - [SMALL_STATE(1041)] = 29066, - [SMALL_STATE(1042)] = 29120, - [SMALL_STATE(1043)] = 29174, - [SMALL_STATE(1044)] = 29230, - [SMALL_STATE(1045)] = 29284, - [SMALL_STATE(1046)] = 29338, - [SMALL_STATE(1047)] = 29392, - [SMALL_STATE(1048)] = 29446, - [SMALL_STATE(1049)] = 29502, - [SMALL_STATE(1050)] = 29556, - [SMALL_STATE(1051)] = 29612, - [SMALL_STATE(1052)] = 29666, - [SMALL_STATE(1053)] = 29720, - [SMALL_STATE(1054)] = 29774, - [SMALL_STATE(1055)] = 29828, - [SMALL_STATE(1056)] = 29882, - [SMALL_STATE(1057)] = 29936, - [SMALL_STATE(1058)] = 29989, - [SMALL_STATE(1059)] = 30042, - [SMALL_STATE(1060)] = 30095, - [SMALL_STATE(1061)] = 30150, - [SMALL_STATE(1062)] = 30203, - [SMALL_STATE(1063)] = 30256, - [SMALL_STATE(1064)] = 30309, - [SMALL_STATE(1065)] = 30362, - [SMALL_STATE(1066)] = 30415, - [SMALL_STATE(1067)] = 30468, - [SMALL_STATE(1068)] = 30521, - [SMALL_STATE(1069)] = 30574, - [SMALL_STATE(1070)] = 30627, - [SMALL_STATE(1071)] = 30682, - [SMALL_STATE(1072)] = 30735, - [SMALL_STATE(1073)] = 30788, - [SMALL_STATE(1074)] = 30841, - [SMALL_STATE(1075)] = 30894, - [SMALL_STATE(1076)] = 30947, - [SMALL_STATE(1077)] = 31000, - [SMALL_STATE(1078)] = 31053, - [SMALL_STATE(1079)] = 31106, - [SMALL_STATE(1080)] = 31159, - [SMALL_STATE(1081)] = 31212, - [SMALL_STATE(1082)] = 31265, - [SMALL_STATE(1083)] = 31318, - [SMALL_STATE(1084)] = 31371, - [SMALL_STATE(1085)] = 31424, - [SMALL_STATE(1086)] = 31477, - [SMALL_STATE(1087)] = 31530, - [SMALL_STATE(1088)] = 31585, - [SMALL_STATE(1089)] = 31638, - [SMALL_STATE(1090)] = 31691, - [SMALL_STATE(1091)] = 31744, - [SMALL_STATE(1092)] = 31797, - [SMALL_STATE(1093)] = 31852, - [SMALL_STATE(1094)] = 31905, - [SMALL_STATE(1095)] = 31958, - [SMALL_STATE(1096)] = 32011, - [SMALL_STATE(1097)] = 32064, - [SMALL_STATE(1098)] = 32153, - [SMALL_STATE(1099)] = 32210, - [SMALL_STATE(1100)] = 32263, - [SMALL_STATE(1101)] = 32316, - [SMALL_STATE(1102)] = 32369, - [SMALL_STATE(1103)] = 32422, - [SMALL_STATE(1104)] = 32475, - [SMALL_STATE(1105)] = 32528, - [SMALL_STATE(1106)] = 32581, - [SMALL_STATE(1107)] = 32634, - [SMALL_STATE(1108)] = 32687, - [SMALL_STATE(1109)] = 32740, - [SMALL_STATE(1110)] = 32793, - [SMALL_STATE(1111)] = 32846, - [SMALL_STATE(1112)] = 32899, - [SMALL_STATE(1113)] = 32952, - [SMALL_STATE(1114)] = 33005, - [SMALL_STATE(1115)] = 33058, - [SMALL_STATE(1116)] = 33111, - [SMALL_STATE(1117)] = 33164, - [SMALL_STATE(1118)] = 33217, - [SMALL_STATE(1119)] = 33270, - [SMALL_STATE(1120)] = 33323, - [SMALL_STATE(1121)] = 33376, - [SMALL_STATE(1122)] = 33429, - [SMALL_STATE(1123)] = 33482, - [SMALL_STATE(1124)] = 33535, - [SMALL_STATE(1125)] = 33588, - [SMALL_STATE(1126)] = 33641, - [SMALL_STATE(1127)] = 33694, - [SMALL_STATE(1128)] = 33747, - [SMALL_STATE(1129)] = 33800, - [SMALL_STATE(1130)] = 33853, - [SMALL_STATE(1131)] = 33906, - [SMALL_STATE(1132)] = 33959, - [SMALL_STATE(1133)] = 34012, - [SMALL_STATE(1134)] = 34065, - [SMALL_STATE(1135)] = 34118, - [SMALL_STATE(1136)] = 34171, - [SMALL_STATE(1137)] = 34224, - [SMALL_STATE(1138)] = 34277, - [SMALL_STATE(1139)] = 34330, - [SMALL_STATE(1140)] = 34383, - [SMALL_STATE(1141)] = 34436, - [SMALL_STATE(1142)] = 34489, - [SMALL_STATE(1143)] = 34542, - [SMALL_STATE(1144)] = 34595, - [SMALL_STATE(1145)] = 34648, - [SMALL_STATE(1146)] = 34701, - [SMALL_STATE(1147)] = 34754, - [SMALL_STATE(1148)] = 34843, - [SMALL_STATE(1149)] = 34896, - [SMALL_STATE(1150)] = 34949, - [SMALL_STATE(1151)] = 35002, - [SMALL_STATE(1152)] = 35055, - [SMALL_STATE(1153)] = 35108, - [SMALL_STATE(1154)] = 35161, - [SMALL_STATE(1155)] = 35214, - [SMALL_STATE(1156)] = 35267, - [SMALL_STATE(1157)] = 35320, - [SMALL_STATE(1158)] = 35406, - [SMALL_STATE(1159)] = 35466, - [SMALL_STATE(1160)] = 35526, - [SMALL_STATE(1161)] = 35586, - [SMALL_STATE(1162)] = 35638, - [SMALL_STATE(1163)] = 35718, - [SMALL_STATE(1164)] = 35804, - [SMALL_STATE(1165)] = 35866, - [SMALL_STATE(1166)] = 35926, - [SMALL_STATE(1167)] = 36006, - [SMALL_STATE(1168)] = 36066, - [SMALL_STATE(1169)] = 36138, - [SMALL_STATE(1170)] = 36218, - [SMALL_STATE(1171)] = 36270, - [SMALL_STATE(1172)] = 36336, - [SMALL_STATE(1173)] = 36416, - [SMALL_STATE(1174)] = 36492, - [SMALL_STATE(1175)] = 36570, - [SMALL_STATE(1176)] = 36640, - [SMALL_STATE(1177)] = 36708, - [SMALL_STATE(1178)] = 36772, - [SMALL_STATE(1179)] = 36852, - [SMALL_STATE(1180)] = 36932, - [SMALL_STATE(1181)] = 37011, - [SMALL_STATE(1182)] = 37098, - [SMALL_STATE(1183)] = 37185, - [SMALL_STATE(1184)] = 37272, - [SMALL_STATE(1185)] = 37357, - [SMALL_STATE(1186)] = 37408, - [SMALL_STATE(1187)] = 37465, - [SMALL_STATE(1188)] = 37516, - [SMALL_STATE(1189)] = 37601, - [SMALL_STATE(1190)] = 37688, - [SMALL_STATE(1191)] = 37742, - [SMALL_STATE(1192)] = 37818, - [SMALL_STATE(1193)] = 37894, - [SMALL_STATE(1194)] = 37970, - [SMALL_STATE(1195)] = 38046, - [SMALL_STATE(1196)] = 38102, - [SMALL_STATE(1197)] = 38155, - [SMALL_STATE(1198)] = 38204, - [SMALL_STATE(1199)] = 38253, - [SMALL_STATE(1200)] = 38302, - [SMALL_STATE(1201)] = 38353, - [SMALL_STATE(1202)] = 38404, - [SMALL_STATE(1203)] = 38453, - [SMALL_STATE(1204)] = 38526, - [SMALL_STATE(1205)] = 38615, - [SMALL_STATE(1206)] = 38664, - [SMALL_STATE(1207)] = 38753, - [SMALL_STATE(1208)] = 38802, - [SMALL_STATE(1209)] = 38851, - [SMALL_STATE(1210)] = 38904, - [SMALL_STATE(1211)] = 38953, - [SMALL_STATE(1212)] = 39002, - [SMALL_STATE(1213)] = 39088, - [SMALL_STATE(1214)] = 39138, - [SMALL_STATE(1215)] = 39216, - [SMALL_STATE(1216)] = 39294, - [SMALL_STATE(1217)] = 39344, - [SMALL_STATE(1218)] = 39430, - [SMALL_STATE(1219)] = 39480, - [SMALL_STATE(1220)] = 39530, - [SMALL_STATE(1221)] = 39613, - [SMALL_STATE(1222)] = 39696, - [SMALL_STATE(1223)] = 39759, - [SMALL_STATE(1224)] = 39842, - [SMALL_STATE(1225)] = 39907, - [SMALL_STATE(1226)] = 39990, - [SMALL_STATE(1227)] = 40063, - [SMALL_STATE(1228)] = 40134, - [SMALL_STATE(1229)] = 40195, - [SMALL_STATE(1230)] = 40278, - [SMALL_STATE(1231)] = 40333, - [SMALL_STATE(1232)] = 40408, - [SMALL_STATE(1233)] = 40463, - [SMALL_STATE(1234)] = 40544, - [SMALL_STATE(1235)] = 40627, - [SMALL_STATE(1236)] = 40702, - [SMALL_STATE(1237)] = 40785, - [SMALL_STATE(1238)] = 40840, - [SMALL_STATE(1239)] = 40915, - [SMALL_STATE(1240)] = 40998, - [SMALL_STATE(1241)] = 41079, - [SMALL_STATE(1242)] = 41134, - [SMALL_STATE(1243)] = 41217, - [SMALL_STATE(1244)] = 41298, - [SMALL_STATE(1245)] = 41381, - [SMALL_STATE(1246)] = 41464, - [SMALL_STATE(1247)] = 41547, - [SMALL_STATE(1248)] = 41630, - [SMALL_STATE(1249)] = 41711, - [SMALL_STATE(1250)] = 41794, - [SMALL_STATE(1251)] = 41875, - [SMALL_STATE(1252)] = 41958, - [SMALL_STATE(1253)] = 42041, - [SMALL_STATE(1254)] = 42124, - [SMALL_STATE(1255)] = 42207, - [SMALL_STATE(1256)] = 42288, - [SMALL_STATE(1257)] = 42371, - [SMALL_STATE(1258)] = 42452, - [SMALL_STATE(1259)] = 42535, - [SMALL_STATE(1260)] = 42594, - [SMALL_STATE(1261)] = 42677, - [SMALL_STATE(1262)] = 42760, - [SMALL_STATE(1263)] = 42843, - [SMALL_STATE(1264)] = 42926, - [SMALL_STATE(1265)] = 43007, - [SMALL_STATE(1266)] = 43078, - [SMALL_STATE(1267)] = 43161, - [SMALL_STATE(1268)] = 43244, - [SMALL_STATE(1269)] = 43325, - [SMALL_STATE(1270)] = 43408, - [SMALL_STATE(1271)] = 43483, - [SMALL_STATE(1272)] = 43564, - [SMALL_STATE(1273)] = 43647, - [SMALL_STATE(1274)] = 43730, - [SMALL_STATE(1275)] = 43813, - [SMALL_STATE(1276)] = 43896, - [SMALL_STATE(1277)] = 43979, - [SMALL_STATE(1278)] = 44054, - [SMALL_STATE(1279)] = 44121, - [SMALL_STATE(1280)] = 44204, - [SMALL_STATE(1281)] = 44261, - [SMALL_STATE(1282)] = 44344, - [SMALL_STATE(1283)] = 44427, - [SMALL_STATE(1284)] = 44510, - [SMALL_STATE(1285)] = 44591, - [SMALL_STATE(1286)] = 44674, - [SMALL_STATE(1287)] = 44757, - [SMALL_STATE(1288)] = 44840, - [SMALL_STATE(1289)] = 44923, - [SMALL_STATE(1290)] = 45006, - [SMALL_STATE(1291)] = 45087, - [SMALL_STATE(1292)] = 45170, - [SMALL_STATE(1293)] = 45253, - [SMALL_STATE(1294)] = 45336, - [SMALL_STATE(1295)] = 45417, - [SMALL_STATE(1296)] = 45500, - [SMALL_STATE(1297)] = 45575, - [SMALL_STATE(1298)] = 45656, - [SMALL_STATE(1299)] = 45736, - [SMALL_STATE(1300)] = 45816, - [SMALL_STATE(1301)] = 45896, - [SMALL_STATE(1302)] = 45964, - [SMALL_STATE(1303)] = 46044, - [SMALL_STATE(1304)] = 46124, - [SMALL_STATE(1305)] = 46204, - [SMALL_STATE(1306)] = 46284, - [SMALL_STATE(1307)] = 46364, - [SMALL_STATE(1308)] = 46444, - [SMALL_STATE(1309)] = 46524, - [SMALL_STATE(1310)] = 46604, - [SMALL_STATE(1311)] = 46684, - [SMALL_STATE(1312)] = 46764, - [SMALL_STATE(1313)] = 46844, - [SMALL_STATE(1314)] = 46924, - [SMALL_STATE(1315)] = 47004, - [SMALL_STATE(1316)] = 47084, - [SMALL_STATE(1317)] = 47164, - [SMALL_STATE(1318)] = 47244, - [SMALL_STATE(1319)] = 47324, - [SMALL_STATE(1320)] = 47392, - [SMALL_STATE(1321)] = 47472, - [SMALL_STATE(1322)] = 47552, - [SMALL_STATE(1323)] = 47632, - [SMALL_STATE(1324)] = 47712, - [SMALL_STATE(1325)] = 47792, - [SMALL_STATE(1326)] = 47872, - [SMALL_STATE(1327)] = 47952, - [SMALL_STATE(1328)] = 48032, - [SMALL_STATE(1329)] = 48112, - [SMALL_STATE(1330)] = 48192, - [SMALL_STATE(1331)] = 48272, - [SMALL_STATE(1332)] = 48352, - [SMALL_STATE(1333)] = 48432, - [SMALL_STATE(1334)] = 48512, - [SMALL_STATE(1335)] = 48577, - [SMALL_STATE(1336)] = 48642, - [SMALL_STATE(1337)] = 48707, - [SMALL_STATE(1338)] = 48772, - [SMALL_STATE(1339)] = 48837, - [SMALL_STATE(1340)] = 48877, - [SMALL_STATE(1341)] = 48917, - [SMALL_STATE(1342)] = 48957, - [SMALL_STATE(1343)] = 49009, - [SMALL_STATE(1344)] = 49061, - [SMALL_STATE(1345)] = 49091, - [SMALL_STATE(1346)] = 49121, - [SMALL_STATE(1347)] = 49166, - [SMALL_STATE(1348)] = 49206, - [SMALL_STATE(1349)] = 49235, - [SMALL_STATE(1350)] = 49264, - [SMALL_STATE(1351)] = 49293, - [SMALL_STATE(1352)] = 49330, - [SMALL_STATE(1353)] = 49359, - [SMALL_STATE(1354)] = 49388, - [SMALL_STATE(1355)] = 49425, - [SMALL_STATE(1356)] = 49454, - [SMALL_STATE(1357)] = 49483, - [SMALL_STATE(1358)] = 49512, - [SMALL_STATE(1359)] = 49538, - [SMALL_STATE(1360)] = 49564, - [SMALL_STATE(1361)] = 49596, - [SMALL_STATE(1362)] = 49650, - [SMALL_STATE(1363)] = 49682, - [SMALL_STATE(1364)] = 49708, - [SMALL_STATE(1365)] = 49740, - [SMALL_STATE(1366)] = 49794, - [SMALL_STATE(1367)] = 49819, - [SMALL_STATE(1368)] = 49852, - [SMALL_STATE(1369)] = 49875, - [SMALL_STATE(1370)] = 49900, - [SMALL_STATE(1371)] = 49925, - [SMALL_STATE(1372)] = 49950, - [SMALL_STATE(1373)] = 49975, - [SMALL_STATE(1374)] = 49997, - [SMALL_STATE(1375)] = 50019, - [SMALL_STATE(1376)] = 50043, - [SMALL_STATE(1377)] = 50067, - [SMALL_STATE(1378)] = 50089, - [SMALL_STATE(1379)] = 50113, - [SMALL_STATE(1380)] = 50137, - [SMALL_STATE(1381)] = 50181, - [SMALL_STATE(1382)] = 50225, - [SMALL_STATE(1383)] = 50249, - [SMALL_STATE(1384)] = 50273, - [SMALL_STATE(1385)] = 50319, - [SMALL_STATE(1386)] = 50341, - [SMALL_STATE(1387)] = 50365, - [SMALL_STATE(1388)] = 50390, - [SMALL_STATE(1389)] = 50411, - [SMALL_STATE(1390)] = 50456, - [SMALL_STATE(1391)] = 50479, - [SMALL_STATE(1392)] = 50502, - [SMALL_STATE(1393)] = 50529, - [SMALL_STATE(1394)] = 50550, - [SMALL_STATE(1395)] = 50575, - [SMALL_STATE(1396)] = 50600, - [SMALL_STATE(1397)] = 50625, - [SMALL_STATE(1398)] = 50650, - [SMALL_STATE(1399)] = 50673, - [SMALL_STATE(1400)] = 50696, - [SMALL_STATE(1401)] = 50719, - [SMALL_STATE(1402)] = 50742, - [SMALL_STATE(1403)] = 50767, - [SMALL_STATE(1404)] = 50790, - [SMALL_STATE(1405)] = 50811, - [SMALL_STATE(1406)] = 50834, - [SMALL_STATE(1407)] = 50855, - [SMALL_STATE(1408)] = 50876, - [SMALL_STATE(1409)] = 50896, - [SMALL_STATE(1410)] = 50916, - [SMALL_STATE(1411)] = 50936, - [SMALL_STATE(1412)] = 50956, - [SMALL_STATE(1413)] = 50976, - [SMALL_STATE(1414)] = 50996, - [SMALL_STATE(1415)] = 51016, - [SMALL_STATE(1416)] = 51036, - [SMALL_STATE(1417)] = 51058, - [SMALL_STATE(1418)] = 51078, - [SMALL_STATE(1419)] = 51100, - [SMALL_STATE(1420)] = 51124, - [SMALL_STATE(1421)] = 51144, - [SMALL_STATE(1422)] = 51164, - [SMALL_STATE(1423)] = 51184, - [SMALL_STATE(1424)] = 51204, - [SMALL_STATE(1425)] = 51224, - [SMALL_STATE(1426)] = 51244, - [SMALL_STATE(1427)] = 51264, - [SMALL_STATE(1428)] = 51284, - [SMALL_STATE(1429)] = 51304, - [SMALL_STATE(1430)] = 51324, - [SMALL_STATE(1431)] = 51344, - [SMALL_STATE(1432)] = 51366, - [SMALL_STATE(1433)] = 51386, - [SMALL_STATE(1434)] = 51406, - [SMALL_STATE(1435)] = 51426, - [SMALL_STATE(1436)] = 51447, - [SMALL_STATE(1437)] = 51472, - [SMALL_STATE(1438)] = 51497, - [SMALL_STATE(1439)] = 51518, - [SMALL_STATE(1440)] = 51541, - [SMALL_STATE(1441)] = 51566, - [SMALL_STATE(1442)] = 51589, - [SMALL_STATE(1443)] = 51614, - [SMALL_STATE(1444)] = 51637, - [SMALL_STATE(1445)] = 51660, - [SMALL_STATE(1446)] = 51683, - [SMALL_STATE(1447)] = 51706, - [SMALL_STATE(1448)] = 51729, - [SMALL_STATE(1449)] = 51752, - [SMALL_STATE(1450)] = 51777, - [SMALL_STATE(1451)] = 51802, - [SMALL_STATE(1452)] = 51823, - [SMALL_STATE(1453)] = 51846, - [SMALL_STATE(1454)] = 51871, - [SMALL_STATE(1455)] = 51894, - [SMALL_STATE(1456)] = 51917, - [SMALL_STATE(1457)] = 51940, - [SMALL_STATE(1458)] = 51965, - [SMALL_STATE(1459)] = 51985, - [SMALL_STATE(1460)] = 52009, - [SMALL_STATE(1461)] = 52029, - [SMALL_STATE(1462)] = 52061, - [SMALL_STATE(1463)] = 52093, - [SMALL_STATE(1464)] = 52113, - [SMALL_STATE(1465)] = 52133, - [SMALL_STATE(1466)] = 52153, - [SMALL_STATE(1467)] = 52173, - [SMALL_STATE(1468)] = 52193, - [SMALL_STATE(1469)] = 52213, - [SMALL_STATE(1470)] = 52239, - [SMALL_STATE(1471)] = 52259, - [SMALL_STATE(1472)] = 52291, - [SMALL_STATE(1473)] = 52311, - [SMALL_STATE(1474)] = 52331, - [SMALL_STATE(1475)] = 52363, - [SMALL_STATE(1476)] = 52387, - [SMALL_STATE(1477)] = 52419, - [SMALL_STATE(1478)] = 52439, - [SMALL_STATE(1479)] = 52471, - [SMALL_STATE(1480)] = 52497, - [SMALL_STATE(1481)] = 52517, - [SMALL_STATE(1482)] = 52537, - [SMALL_STATE(1483)] = 52557, - [SMALL_STATE(1484)] = 52577, - [SMALL_STATE(1485)] = 52609, - [SMALL_STATE(1486)] = 52629, - [SMALL_STATE(1487)] = 52649, - [SMALL_STATE(1488)] = 52673, - [SMALL_STATE(1489)] = 52693, - [SMALL_STATE(1490)] = 52713, - [SMALL_STATE(1491)] = 52737, - [SMALL_STATE(1492)] = 52757, - [SMALL_STATE(1493)] = 52777, - [SMALL_STATE(1494)] = 52797, - [SMALL_STATE(1495)] = 52817, - [SMALL_STATE(1496)] = 52837, - [SMALL_STATE(1497)] = 52857, - [SMALL_STATE(1498)] = 52877, - [SMALL_STATE(1499)] = 52909, - [SMALL_STATE(1500)] = 52929, - [SMALL_STATE(1501)] = 52949, - [SMALL_STATE(1502)] = 52969, - [SMALL_STATE(1503)] = 52989, - [SMALL_STATE(1504)] = 53022, - [SMALL_STATE(1505)] = 53051, - [SMALL_STATE(1506)] = 53078, - [SMALL_STATE(1507)] = 53101, - [SMALL_STATE(1508)] = 53134, - [SMALL_STATE(1509)] = 53159, - [SMALL_STATE(1510)] = 53190, - [SMALL_STATE(1511)] = 53223, - [SMALL_STATE(1512)] = 53256, - [SMALL_STATE(1513)] = 53279, - [SMALL_STATE(1514)] = 53302, - [SMALL_STATE(1515)] = 53324, - [SMALL_STATE(1516)] = 53350, - [SMALL_STATE(1517)] = 53376, - [SMALL_STATE(1518)] = 53402, - [SMALL_STATE(1519)] = 53424, - [SMALL_STATE(1520)] = 53454, - [SMALL_STATE(1521)] = 53484, - [SMALL_STATE(1522)] = 53514, - [SMALL_STATE(1523)] = 53540, - [SMALL_STATE(1524)] = 53572, - [SMALL_STATE(1525)] = 53594, - [SMALL_STATE(1526)] = 53624, - [SMALL_STATE(1527)] = 53654, - [SMALL_STATE(1528)] = 53676, - [SMALL_STATE(1529)] = 53706, - [SMALL_STATE(1530)] = 53736, - [SMALL_STATE(1531)] = 53758, - [SMALL_STATE(1532)] = 53784, - [SMALL_STATE(1533)] = 53814, - [SMALL_STATE(1534)] = 53844, - [SMALL_STATE(1535)] = 53874, - [SMALL_STATE(1536)] = 53900, - [SMALL_STATE(1537)] = 53930, - [SMALL_STATE(1538)] = 53962, - [SMALL_STATE(1539)] = 53992, - [SMALL_STATE(1540)] = 54018, - [SMALL_STATE(1541)] = 54048, - [SMALL_STATE(1542)] = 54078, - [SMALL_STATE(1543)] = 54110, - [SMALL_STATE(1544)] = 54140, - [SMALL_STATE(1545)] = 54170, - [SMALL_STATE(1546)] = 54196, - [SMALL_STATE(1547)] = 54226, - [SMALL_STATE(1548)] = 54248, - [SMALL_STATE(1549)] = 54274, - [SMALL_STATE(1550)] = 54300, - [SMALL_STATE(1551)] = 54330, - [SMALL_STATE(1552)] = 54356, - [SMALL_STATE(1553)] = 54386, - [SMALL_STATE(1554)] = 54416, - [SMALL_STATE(1555)] = 54446, - [SMALL_STATE(1556)] = 54478, - [SMALL_STATE(1557)] = 54505, - [SMALL_STATE(1558)] = 54532, - [SMALL_STATE(1559)] = 54559, - [SMALL_STATE(1560)] = 54574, - [SMALL_STATE(1561)] = 54597, - [SMALL_STATE(1562)] = 54626, - [SMALL_STATE(1563)] = 54649, - [SMALL_STATE(1564)] = 54678, - [SMALL_STATE(1565)] = 54699, - [SMALL_STATE(1566)] = 54726, - [SMALL_STATE(1567)] = 54745, - [SMALL_STATE(1568)] = 54764, - [SMALL_STATE(1569)] = 54791, - [SMALL_STATE(1570)] = 54818, - [SMALL_STATE(1571)] = 54845, - [SMALL_STATE(1572)] = 54864, - [SMALL_STATE(1573)] = 54885, - [SMALL_STATE(1574)] = 54914, - [SMALL_STATE(1575)] = 54933, - [SMALL_STATE(1576)] = 54960, - [SMALL_STATE(1577)] = 54989, - [SMALL_STATE(1578)] = 55016, - [SMALL_STATE(1579)] = 55043, - [SMALL_STATE(1580)] = 55070, - [SMALL_STATE(1581)] = 55089, - [SMALL_STATE(1582)] = 55116, - [SMALL_STATE(1583)] = 55135, - [SMALL_STATE(1584)] = 55164, - [SMALL_STATE(1585)] = 55191, - [SMALL_STATE(1586)] = 55214, - [SMALL_STATE(1587)] = 55241, - [SMALL_STATE(1588)] = 55260, - [SMALL_STATE(1589)] = 55287, - [SMALL_STATE(1590)] = 55306, - [SMALL_STATE(1591)] = 55325, - [SMALL_STATE(1592)] = 55350, - [SMALL_STATE(1593)] = 55369, - [SMALL_STATE(1594)] = 55388, - [SMALL_STATE(1595)] = 55411, - [SMALL_STATE(1596)] = 55440, - [SMALL_STATE(1597)] = 55466, - [SMALL_STATE(1598)] = 55492, - [SMALL_STATE(1599)] = 55516, - [SMALL_STATE(1600)] = 55530, - [SMALL_STATE(1601)] = 55552, - [SMALL_STATE(1602)] = 55578, - [SMALL_STATE(1603)] = 55592, - [SMALL_STATE(1604)] = 55618, - [SMALL_STATE(1605)] = 55644, - [SMALL_STATE(1606)] = 55658, - [SMALL_STATE(1607)] = 55684, - [SMALL_STATE(1608)] = 55700, - [SMALL_STATE(1609)] = 55726, - [SMALL_STATE(1610)] = 55752, - [SMALL_STATE(1611)] = 55768, - [SMALL_STATE(1612)] = 55794, - [SMALL_STATE(1613)] = 55808, - [SMALL_STATE(1614)] = 55834, - [SMALL_STATE(1615)] = 55848, - [SMALL_STATE(1616)] = 55864, - [SMALL_STATE(1617)] = 55888, - [SMALL_STATE(1618)] = 55914, - [SMALL_STATE(1619)] = 55940, - [SMALL_STATE(1620)] = 55966, - [SMALL_STATE(1621)] = 55982, - [SMALL_STATE(1622)] = 56008, - [SMALL_STATE(1623)] = 56034, - [SMALL_STATE(1624)] = 56060, - [SMALL_STATE(1625)] = 56086, - [SMALL_STATE(1626)] = 56112, - [SMALL_STATE(1627)] = 56138, - [SMALL_STATE(1628)] = 56154, - [SMALL_STATE(1629)] = 56178, - [SMALL_STATE(1630)] = 56192, - [SMALL_STATE(1631)] = 56208, - [SMALL_STATE(1632)] = 56234, - [SMALL_STATE(1633)] = 56258, - [SMALL_STATE(1634)] = 56280, - [SMALL_STATE(1635)] = 56304, - [SMALL_STATE(1636)] = 56318, - [SMALL_STATE(1637)] = 56334, - [SMALL_STATE(1638)] = 56360, - [SMALL_STATE(1639)] = 56376, - [SMALL_STATE(1640)] = 56402, - [SMALL_STATE(1641)] = 56428, - [SMALL_STATE(1642)] = 56454, - [SMALL_STATE(1643)] = 56477, - [SMALL_STATE(1644)] = 56500, - [SMALL_STATE(1645)] = 56523, - [SMALL_STATE(1646)] = 56546, - [SMALL_STATE(1647)] = 56569, - [SMALL_STATE(1648)] = 56592, - [SMALL_STATE(1649)] = 56609, - [SMALL_STATE(1650)] = 56626, - [SMALL_STATE(1651)] = 56643, - [SMALL_STATE(1652)] = 56666, - [SMALL_STATE(1653)] = 56689, - [SMALL_STATE(1654)] = 56708, - [SMALL_STATE(1655)] = 56723, - [SMALL_STATE(1656)] = 56746, - [SMALL_STATE(1657)] = 56769, - [SMALL_STATE(1658)] = 56792, - [SMALL_STATE(1659)] = 56815, - [SMALL_STATE(1660)] = 56838, - [SMALL_STATE(1661)] = 56861, - [SMALL_STATE(1662)] = 56876, - [SMALL_STATE(1663)] = 56899, - [SMALL_STATE(1664)] = 56922, - [SMALL_STATE(1665)] = 56945, - [SMALL_STATE(1666)] = 56964, - [SMALL_STATE(1667)] = 56987, - [SMALL_STATE(1668)] = 57010, - [SMALL_STATE(1669)] = 57027, - [SMALL_STATE(1670)] = 57050, - [SMALL_STATE(1671)] = 57073, - [SMALL_STATE(1672)] = 57094, - [SMALL_STATE(1673)] = 57117, - [SMALL_STATE(1674)] = 57140, - [SMALL_STATE(1675)] = 57157, - [SMALL_STATE(1676)] = 57180, - [SMALL_STATE(1677)] = 57197, - [SMALL_STATE(1678)] = 57220, - [SMALL_STATE(1679)] = 57237, - [SMALL_STATE(1680)] = 57254, - [SMALL_STATE(1681)] = 57273, - [SMALL_STATE(1682)] = 57296, - [SMALL_STATE(1683)] = 57319, - [SMALL_STATE(1684)] = 57342, - [SMALL_STATE(1685)] = 57365, - [SMALL_STATE(1686)] = 57388, - [SMALL_STATE(1687)] = 57411, - [SMALL_STATE(1688)] = 57432, - [SMALL_STATE(1689)] = 57455, - [SMALL_STATE(1690)] = 57478, - [SMALL_STATE(1691)] = 57501, - [SMALL_STATE(1692)] = 57524, - [SMALL_STATE(1693)] = 57547, - [SMALL_STATE(1694)] = 57570, - [SMALL_STATE(1695)] = 57593, - [SMALL_STATE(1696)] = 57616, - [SMALL_STATE(1697)] = 57639, - [SMALL_STATE(1698)] = 57662, - [SMALL_STATE(1699)] = 57679, - [SMALL_STATE(1700)] = 57702, - [SMALL_STATE(1701)] = 57725, - [SMALL_STATE(1702)] = 57748, - [SMALL_STATE(1703)] = 57771, - [SMALL_STATE(1704)] = 57792, - [SMALL_STATE(1705)] = 57809, - [SMALL_STATE(1706)] = 57830, - [SMALL_STATE(1707)] = 57853, - [SMALL_STATE(1708)] = 57876, - [SMALL_STATE(1709)] = 57897, - [SMALL_STATE(1710)] = 57920, - [SMALL_STATE(1711)] = 57937, - [SMALL_STATE(1712)] = 57960, - [SMALL_STATE(1713)] = 57983, - [SMALL_STATE(1714)] = 58006, - [SMALL_STATE(1715)] = 58029, - [SMALL_STATE(1716)] = 58052, - [SMALL_STATE(1717)] = 58073, - [SMALL_STATE(1718)] = 58096, - [SMALL_STATE(1719)] = 58119, - [SMALL_STATE(1720)] = 58142, - [SMALL_STATE(1721)] = 58165, - [SMALL_STATE(1722)] = 58188, - [SMALL_STATE(1723)] = 58205, - [SMALL_STATE(1724)] = 58228, - [SMALL_STATE(1725)] = 58251, - [SMALL_STATE(1726)] = 58274, - [SMALL_STATE(1727)] = 58297, - [SMALL_STATE(1728)] = 58320, - [SMALL_STATE(1729)] = 58337, - [SMALL_STATE(1730)] = 58360, - [SMALL_STATE(1731)] = 58383, - [SMALL_STATE(1732)] = 58406, - [SMALL_STATE(1733)] = 58423, - [SMALL_STATE(1734)] = 58440, - [SMALL_STATE(1735)] = 58463, - [SMALL_STATE(1736)] = 58486, - [SMALL_STATE(1737)] = 58509, - [SMALL_STATE(1738)] = 58532, - [SMALL_STATE(1739)] = 58544, - [SMALL_STATE(1740)] = 58556, - [SMALL_STATE(1741)] = 58574, - [SMALL_STATE(1742)] = 58590, - [SMALL_STATE(1743)] = 58606, - [SMALL_STATE(1744)] = 58618, - [SMALL_STATE(1745)] = 58634, - [SMALL_STATE(1746)] = 58646, - [SMALL_STATE(1747)] = 58658, - [SMALL_STATE(1748)] = 58670, - [SMALL_STATE(1749)] = 58688, - [SMALL_STATE(1750)] = 58706, - [SMALL_STATE(1751)] = 58722, - [SMALL_STATE(1752)] = 58740, - [SMALL_STATE(1753)] = 58752, - [SMALL_STATE(1754)] = 58768, - [SMALL_STATE(1755)] = 58780, - [SMALL_STATE(1756)] = 58800, - [SMALL_STATE(1757)] = 58812, - [SMALL_STATE(1758)] = 58830, - [SMALL_STATE(1759)] = 58846, - [SMALL_STATE(1760)] = 58858, - [SMALL_STATE(1761)] = 58870, - [SMALL_STATE(1762)] = 58890, - [SMALL_STATE(1763)] = 58906, - [SMALL_STATE(1764)] = 58926, - [SMALL_STATE(1765)] = 58938, - [SMALL_STATE(1766)] = 58954, - [SMALL_STATE(1767)] = 58966, - [SMALL_STATE(1768)] = 58980, - [SMALL_STATE(1769)] = 59000, - [SMALL_STATE(1770)] = 59016, - [SMALL_STATE(1771)] = 59028, - [SMALL_STATE(1772)] = 59048, - [SMALL_STATE(1773)] = 59064, - [SMALL_STATE(1774)] = 59082, - [SMALL_STATE(1775)] = 59100, - [SMALL_STATE(1776)] = 59114, - [SMALL_STATE(1777)] = 59126, - [SMALL_STATE(1778)] = 59138, - [SMALL_STATE(1779)] = 59150, - [SMALL_STATE(1780)] = 59164, - [SMALL_STATE(1781)] = 59176, - [SMALL_STATE(1782)] = 59188, - [SMALL_STATE(1783)] = 59206, - [SMALL_STATE(1784)] = 59222, - [SMALL_STATE(1785)] = 59240, - [SMALL_STATE(1786)] = 59260, - [SMALL_STATE(1787)] = 59272, - [SMALL_STATE(1788)] = 59288, - [SMALL_STATE(1789)] = 59304, - [SMALL_STATE(1790)] = 59320, - [SMALL_STATE(1791)] = 59336, - [SMALL_STATE(1792)] = 59348, - [SMALL_STATE(1793)] = 59366, - [SMALL_STATE(1794)] = 59383, - [SMALL_STATE(1795)] = 59400, - [SMALL_STATE(1796)] = 59415, - [SMALL_STATE(1797)] = 59432, - [SMALL_STATE(1798)] = 59449, - [SMALL_STATE(1799)] = 59464, - [SMALL_STATE(1800)] = 59481, - [SMALL_STATE(1801)] = 59494, - [SMALL_STATE(1802)] = 59507, - [SMALL_STATE(1803)] = 59524, - [SMALL_STATE(1804)] = 59541, - [SMALL_STATE(1805)] = 59554, - [SMALL_STATE(1806)] = 59571, - [SMALL_STATE(1807)] = 59588, - [SMALL_STATE(1808)] = 59601, - [SMALL_STATE(1809)] = 59618, - [SMALL_STATE(1810)] = 59635, - [SMALL_STATE(1811)] = 59650, - [SMALL_STATE(1812)] = 59667, - [SMALL_STATE(1813)] = 59684, - [SMALL_STATE(1814)] = 59699, - [SMALL_STATE(1815)] = 59716, - [SMALL_STATE(1816)] = 59733, - [SMALL_STATE(1817)] = 59750, - [SMALL_STATE(1818)] = 59767, - [SMALL_STATE(1819)] = 59784, - [SMALL_STATE(1820)] = 59801, - [SMALL_STATE(1821)] = 59818, - [SMALL_STATE(1822)] = 59833, - [SMALL_STATE(1823)] = 59848, - [SMALL_STATE(1824)] = 59865, - [SMALL_STATE(1825)] = 59882, - [SMALL_STATE(1826)] = 59899, - [SMALL_STATE(1827)] = 59914, - [SMALL_STATE(1828)] = 59931, - [SMALL_STATE(1829)] = 59948, - [SMALL_STATE(1830)] = 59963, - [SMALL_STATE(1831)] = 59980, - [SMALL_STATE(1832)] = 59997, - [SMALL_STATE(1833)] = 60014, - [SMALL_STATE(1834)] = 60031, - [SMALL_STATE(1835)] = 60048, - [SMALL_STATE(1836)] = 60065, - [SMALL_STATE(1837)] = 60082, - [SMALL_STATE(1838)] = 60099, - [SMALL_STATE(1839)] = 60116, - [SMALL_STATE(1840)] = 60133, - [SMALL_STATE(1841)] = 60148, - [SMALL_STATE(1842)] = 60163, - [SMALL_STATE(1843)] = 60180, - [SMALL_STATE(1844)] = 60195, - [SMALL_STATE(1845)] = 60212, - [SMALL_STATE(1846)] = 60229, - [SMALL_STATE(1847)] = 60246, - [SMALL_STATE(1848)] = 60261, - [SMALL_STATE(1849)] = 60278, - [SMALL_STATE(1850)] = 60295, - [SMALL_STATE(1851)] = 60310, - [SMALL_STATE(1852)] = 60325, - [SMALL_STATE(1853)] = 60340, - [SMALL_STATE(1854)] = 60353, - [SMALL_STATE(1855)] = 60368, - [SMALL_STATE(1856)] = 60385, - [SMALL_STATE(1857)] = 60402, - [SMALL_STATE(1858)] = 60419, - [SMALL_STATE(1859)] = 60436, - [SMALL_STATE(1860)] = 60453, - [SMALL_STATE(1861)] = 60468, - [SMALL_STATE(1862)] = 60481, - [SMALL_STATE(1863)] = 60496, - [SMALL_STATE(1864)] = 60513, - [SMALL_STATE(1865)] = 60528, - [SMALL_STATE(1866)] = 60545, - [SMALL_STATE(1867)] = 60562, - [SMALL_STATE(1868)] = 60579, - [SMALL_STATE(1869)] = 60596, - [SMALL_STATE(1870)] = 60613, - [SMALL_STATE(1871)] = 60630, - [SMALL_STATE(1872)] = 60647, - [SMALL_STATE(1873)] = 60662, - [SMALL_STATE(1874)] = 60679, - [SMALL_STATE(1875)] = 60696, - [SMALL_STATE(1876)] = 60713, - [SMALL_STATE(1877)] = 60730, - [SMALL_STATE(1878)] = 60745, - [SMALL_STATE(1879)] = 60760, - [SMALL_STATE(1880)] = 60775, - [SMALL_STATE(1881)] = 60788, - [SMALL_STATE(1882)] = 60803, - [SMALL_STATE(1883)] = 60816, - [SMALL_STATE(1884)] = 60831, - [SMALL_STATE(1885)] = 60848, - [SMALL_STATE(1886)] = 60865, - [SMALL_STATE(1887)] = 60882, - [SMALL_STATE(1888)] = 60897, - [SMALL_STATE(1889)] = 60914, - [SMALL_STATE(1890)] = 60931, - [SMALL_STATE(1891)] = 60944, - [SMALL_STATE(1892)] = 60961, - [SMALL_STATE(1893)] = 60974, - [SMALL_STATE(1894)] = 60991, - [SMALL_STATE(1895)] = 61008, - [SMALL_STATE(1896)] = 61022, - [SMALL_STATE(1897)] = 61036, - [SMALL_STATE(1898)] = 61048, - [SMALL_STATE(1899)] = 61062, - [SMALL_STATE(1900)] = 61076, - [SMALL_STATE(1901)] = 61090, - [SMALL_STATE(1902)] = 61104, - [SMALL_STATE(1903)] = 61116, - [SMALL_STATE(1904)] = 61128, - [SMALL_STATE(1905)] = 61142, - [SMALL_STATE(1906)] = 61156, - [SMALL_STATE(1907)] = 61170, - [SMALL_STATE(1908)] = 61184, - [SMALL_STATE(1909)] = 61198, - [SMALL_STATE(1910)] = 61212, - [SMALL_STATE(1911)] = 61226, - [SMALL_STATE(1912)] = 61240, - [SMALL_STATE(1913)] = 61254, - [SMALL_STATE(1914)] = 61268, - [SMALL_STATE(1915)] = 61282, - [SMALL_STATE(1916)] = 61296, - [SMALL_STATE(1917)] = 61310, - [SMALL_STATE(1918)] = 61322, - [SMALL_STATE(1919)] = 61334, - [SMALL_STATE(1920)] = 61348, - [SMALL_STATE(1921)] = 61360, - [SMALL_STATE(1922)] = 61374, - [SMALL_STATE(1923)] = 61388, - [SMALL_STATE(1924)] = 61402, - [SMALL_STATE(1925)] = 61416, - [SMALL_STATE(1926)] = 61428, - [SMALL_STATE(1927)] = 61442, - [SMALL_STATE(1928)] = 61452, - [SMALL_STATE(1929)] = 61466, - [SMALL_STATE(1930)] = 61478, - [SMALL_STATE(1931)] = 61490, - [SMALL_STATE(1932)] = 61504, - [SMALL_STATE(1933)] = 61518, - [SMALL_STATE(1934)] = 61530, - [SMALL_STATE(1935)] = 61544, - [SMALL_STATE(1936)] = 61554, - [SMALL_STATE(1937)] = 61566, - [SMALL_STATE(1938)] = 61580, - [SMALL_STATE(1939)] = 61590, - [SMALL_STATE(1940)] = 61604, - [SMALL_STATE(1941)] = 61618, - [SMALL_STATE(1942)] = 61632, - [SMALL_STATE(1943)] = 61646, - [SMALL_STATE(1944)] = 61660, - [SMALL_STATE(1945)] = 61674, - [SMALL_STATE(1946)] = 61684, - [SMALL_STATE(1947)] = 61698, - [SMALL_STATE(1948)] = 61712, - [SMALL_STATE(1949)] = 61726, - [SMALL_STATE(1950)] = 61740, - [SMALL_STATE(1951)] = 61750, - [SMALL_STATE(1952)] = 61764, - [SMALL_STATE(1953)] = 61778, - [SMALL_STATE(1954)] = 61792, - [SMALL_STATE(1955)] = 61806, - [SMALL_STATE(1956)] = 61818, - [SMALL_STATE(1957)] = 61828, - [SMALL_STATE(1958)] = 61842, - [SMALL_STATE(1959)] = 61854, - [SMALL_STATE(1960)] = 61864, - [SMALL_STATE(1961)] = 61878, - [SMALL_STATE(1962)] = 61888, - [SMALL_STATE(1963)] = 61902, - [SMALL_STATE(1964)] = 61916, - [SMALL_STATE(1965)] = 61930, - [SMALL_STATE(1966)] = 61944, - [SMALL_STATE(1967)] = 61958, - [SMALL_STATE(1968)] = 61972, - [SMALL_STATE(1969)] = 61986, - [SMALL_STATE(1970)] = 62000, - [SMALL_STATE(1971)] = 62014, - [SMALL_STATE(1972)] = 62028, - [SMALL_STATE(1973)] = 62042, - [SMALL_STATE(1974)] = 62056, - [SMALL_STATE(1975)] = 62070, - [SMALL_STATE(1976)] = 62084, - [SMALL_STATE(1977)] = 62098, - [SMALL_STATE(1978)] = 62112, - [SMALL_STATE(1979)] = 62122, - [SMALL_STATE(1980)] = 62134, - [SMALL_STATE(1981)] = 62148, - [SMALL_STATE(1982)] = 62158, - [SMALL_STATE(1983)] = 62172, - [SMALL_STATE(1984)] = 62186, - [SMALL_STATE(1985)] = 62200, - [SMALL_STATE(1986)] = 62214, - [SMALL_STATE(1987)] = 62228, - [SMALL_STATE(1988)] = 62242, - [SMALL_STATE(1989)] = 62256, - [SMALL_STATE(1990)] = 62270, - [SMALL_STATE(1991)] = 62284, - [SMALL_STATE(1992)] = 62296, - [SMALL_STATE(1993)] = 62310, - [SMALL_STATE(1994)] = 62324, - [SMALL_STATE(1995)] = 62338, - [SMALL_STATE(1996)] = 62352, - [SMALL_STATE(1997)] = 62366, - [SMALL_STATE(1998)] = 62376, - [SMALL_STATE(1999)] = 62390, - [SMALL_STATE(2000)] = 62404, - [SMALL_STATE(2001)] = 62418, - [SMALL_STATE(2002)] = 62432, - [SMALL_STATE(2003)] = 62446, - [SMALL_STATE(2004)] = 62460, - [SMALL_STATE(2005)] = 62474, - [SMALL_STATE(2006)] = 62488, - [SMALL_STATE(2007)] = 62502, - [SMALL_STATE(2008)] = 62516, - [SMALL_STATE(2009)] = 62530, - [SMALL_STATE(2010)] = 62540, - [SMALL_STATE(2011)] = 62554, - [SMALL_STATE(2012)] = 62568, - [SMALL_STATE(2013)] = 62582, - [SMALL_STATE(2014)] = 62596, - [SMALL_STATE(2015)] = 62610, - [SMALL_STATE(2016)] = 62620, - [SMALL_STATE(2017)] = 62630, - [SMALL_STATE(2018)] = 62644, - [SMALL_STATE(2019)] = 62658, - [SMALL_STATE(2020)] = 62668, - [SMALL_STATE(2021)] = 62678, - [SMALL_STATE(2022)] = 62692, - [SMALL_STATE(2023)] = 62706, - [SMALL_STATE(2024)] = 62720, - [SMALL_STATE(2025)] = 62734, - [SMALL_STATE(2026)] = 62746, - [SMALL_STATE(2027)] = 62758, - [SMALL_STATE(2028)] = 62772, - [SMALL_STATE(2029)] = 62786, - [SMALL_STATE(2030)] = 62800, - [SMALL_STATE(2031)] = 62814, - [SMALL_STATE(2032)] = 62828, - [SMALL_STATE(2033)] = 62840, - [SMALL_STATE(2034)] = 62854, - [SMALL_STATE(2035)] = 62868, - [SMALL_STATE(2036)] = 62878, - [SMALL_STATE(2037)] = 62892, - [SMALL_STATE(2038)] = 62906, - [SMALL_STATE(2039)] = 62920, - [SMALL_STATE(2040)] = 62934, - [SMALL_STATE(2041)] = 62948, - [SMALL_STATE(2042)] = 62962, - [SMALL_STATE(2043)] = 62976, - [SMALL_STATE(2044)] = 62990, - [SMALL_STATE(2045)] = 63004, - [SMALL_STATE(2046)] = 63016, - [SMALL_STATE(2047)] = 63030, - [SMALL_STATE(2048)] = 63044, - [SMALL_STATE(2049)] = 63058, - [SMALL_STATE(2050)] = 63072, - [SMALL_STATE(2051)] = 63086, - [SMALL_STATE(2052)] = 63100, - [SMALL_STATE(2053)] = 63114, - [SMALL_STATE(2054)] = 63128, - [SMALL_STATE(2055)] = 63142, - [SMALL_STATE(2056)] = 63156, - [SMALL_STATE(2057)] = 63170, - [SMALL_STATE(2058)] = 63182, - [SMALL_STATE(2059)] = 63196, - [SMALL_STATE(2060)] = 63206, - [SMALL_STATE(2061)] = 63220, - [SMALL_STATE(2062)] = 63232, - [SMALL_STATE(2063)] = 63246, - [SMALL_STATE(2064)] = 63260, - [SMALL_STATE(2065)] = 63270, - [SMALL_STATE(2066)] = 63284, - [SMALL_STATE(2067)] = 63294, - [SMALL_STATE(2068)] = 63304, - [SMALL_STATE(2069)] = 63318, - [SMALL_STATE(2070)] = 63328, - [SMALL_STATE(2071)] = 63342, - [SMALL_STATE(2072)] = 63352, - [SMALL_STATE(2073)] = 63362, - [SMALL_STATE(2074)] = 63372, - [SMALL_STATE(2075)] = 63386, - [SMALL_STATE(2076)] = 63400, - [SMALL_STATE(2077)] = 63410, - [SMALL_STATE(2078)] = 63422, - [SMALL_STATE(2079)] = 63434, - [SMALL_STATE(2080)] = 63448, - [SMALL_STATE(2081)] = 63462, - [SMALL_STATE(2082)] = 63476, - [SMALL_STATE(2083)] = 63490, - [SMALL_STATE(2084)] = 63504, - [SMALL_STATE(2085)] = 63518, - [SMALL_STATE(2086)] = 63532, - [SMALL_STATE(2087)] = 63544, - [SMALL_STATE(2088)] = 63558, - [SMALL_STATE(2089)] = 63572, - [SMALL_STATE(2090)] = 63586, - [SMALL_STATE(2091)] = 63600, - [SMALL_STATE(2092)] = 63612, - [SMALL_STATE(2093)] = 63626, - [SMALL_STATE(2094)] = 63640, - [SMALL_STATE(2095)] = 63654, - [SMALL_STATE(2096)] = 63666, - [SMALL_STATE(2097)] = 63680, - [SMALL_STATE(2098)] = 63694, - [SMALL_STATE(2099)] = 63708, - [SMALL_STATE(2100)] = 63722, - [SMALL_STATE(2101)] = 63736, - [SMALL_STATE(2102)] = 63750, - [SMALL_STATE(2103)] = 63762, - [SMALL_STATE(2104)] = 63774, - [SMALL_STATE(2105)] = 63788, - [SMALL_STATE(2106)] = 63802, - [SMALL_STATE(2107)] = 63814, - [SMALL_STATE(2108)] = 63828, - [SMALL_STATE(2109)] = 63842, - [SMALL_STATE(2110)] = 63856, - [SMALL_STATE(2111)] = 63870, - [SMALL_STATE(2112)] = 63884, - [SMALL_STATE(2113)] = 63898, - [SMALL_STATE(2114)] = 63912, - [SMALL_STATE(2115)] = 63926, - [SMALL_STATE(2116)] = 63938, - [SMALL_STATE(2117)] = 63952, - [SMALL_STATE(2118)] = 63966, - [SMALL_STATE(2119)] = 63980, - [SMALL_STATE(2120)] = 63994, - [SMALL_STATE(2121)] = 64008, - [SMALL_STATE(2122)] = 64022, - [SMALL_STATE(2123)] = 64036, - [SMALL_STATE(2124)] = 64050, - [SMALL_STATE(2125)] = 64064, - [SMALL_STATE(2126)] = 64078, - [SMALL_STATE(2127)] = 64092, - [SMALL_STATE(2128)] = 64106, - [SMALL_STATE(2129)] = 64118, - [SMALL_STATE(2130)] = 64132, - [SMALL_STATE(2131)] = 64146, - [SMALL_STATE(2132)] = 64160, - [SMALL_STATE(2133)] = 64172, - [SMALL_STATE(2134)] = 64184, - [SMALL_STATE(2135)] = 64198, - [SMALL_STATE(2136)] = 64212, - [SMALL_STATE(2137)] = 64222, - [SMALL_STATE(2138)] = 64236, - [SMALL_STATE(2139)] = 64246, - [SMALL_STATE(2140)] = 64260, - [SMALL_STATE(2141)] = 64274, - [SMALL_STATE(2142)] = 64288, - [SMALL_STATE(2143)] = 64300, - [SMALL_STATE(2144)] = 64314, - [SMALL_STATE(2145)] = 64328, - [SMALL_STATE(2146)] = 64342, - [SMALL_STATE(2147)] = 64356, - [SMALL_STATE(2148)] = 64370, - [SMALL_STATE(2149)] = 64384, - [SMALL_STATE(2150)] = 64398, - [SMALL_STATE(2151)] = 64412, - [SMALL_STATE(2152)] = 64426, - [SMALL_STATE(2153)] = 64440, - [SMALL_STATE(2154)] = 64452, - [SMALL_STATE(2155)] = 64462, - [SMALL_STATE(2156)] = 64476, - [SMALL_STATE(2157)] = 64490, - [SMALL_STATE(2158)] = 64504, - [SMALL_STATE(2159)] = 64515, - [SMALL_STATE(2160)] = 64526, - [SMALL_STATE(2161)] = 64537, - [SMALL_STATE(2162)] = 64548, - [SMALL_STATE(2163)] = 64557, - [SMALL_STATE(2164)] = 64568, - [SMALL_STATE(2165)] = 64579, - [SMALL_STATE(2166)] = 64590, - [SMALL_STATE(2167)] = 64599, - [SMALL_STATE(2168)] = 64610, - [SMALL_STATE(2169)] = 64621, - [SMALL_STATE(2170)] = 64632, - [SMALL_STATE(2171)] = 64643, - [SMALL_STATE(2172)] = 64654, - [SMALL_STATE(2173)] = 64665, - [SMALL_STATE(2174)] = 64676, - [SMALL_STATE(2175)] = 64687, - [SMALL_STATE(2176)] = 64698, - [SMALL_STATE(2177)] = 64707, - [SMALL_STATE(2178)] = 64718, - [SMALL_STATE(2179)] = 64729, - [SMALL_STATE(2180)] = 64740, - [SMALL_STATE(2181)] = 64751, - [SMALL_STATE(2182)] = 64762, - [SMALL_STATE(2183)] = 64773, - [SMALL_STATE(2184)] = 64784, - [SMALL_STATE(2185)] = 64793, - [SMALL_STATE(2186)] = 64804, - [SMALL_STATE(2187)] = 64815, - [SMALL_STATE(2188)] = 64826, - [SMALL_STATE(2189)] = 64837, - [SMALL_STATE(2190)] = 64848, - [SMALL_STATE(2191)] = 64859, - [SMALL_STATE(2192)] = 64870, - [SMALL_STATE(2193)] = 64881, - [SMALL_STATE(2194)] = 64892, - [SMALL_STATE(2195)] = 64903, - [SMALL_STATE(2196)] = 64914, - [SMALL_STATE(2197)] = 64925, - [SMALL_STATE(2198)] = 64936, - [SMALL_STATE(2199)] = 64947, - [SMALL_STATE(2200)] = 64958, - [SMALL_STATE(2201)] = 64969, - [SMALL_STATE(2202)] = 64980, - [SMALL_STATE(2203)] = 64991, - [SMALL_STATE(2204)] = 65002, - [SMALL_STATE(2205)] = 65013, - [SMALL_STATE(2206)] = 65024, - [SMALL_STATE(2207)] = 65035, - [SMALL_STATE(2208)] = 65046, - [SMALL_STATE(2209)] = 65057, - [SMALL_STATE(2210)] = 65066, - [SMALL_STATE(2211)] = 65077, - [SMALL_STATE(2212)] = 65088, - [SMALL_STATE(2213)] = 65099, - [SMALL_STATE(2214)] = 65108, - [SMALL_STATE(2215)] = 65119, - [SMALL_STATE(2216)] = 65128, - [SMALL_STATE(2217)] = 65139, - [SMALL_STATE(2218)] = 65150, - [SMALL_STATE(2219)] = 65159, - [SMALL_STATE(2220)] = 65170, - [SMALL_STATE(2221)] = 65181, - [SMALL_STATE(2222)] = 65192, - [SMALL_STATE(2223)] = 65203, - [SMALL_STATE(2224)] = 65212, - [SMALL_STATE(2225)] = 65223, - [SMALL_STATE(2226)] = 65232, - [SMALL_STATE(2227)] = 65241, - [SMALL_STATE(2228)] = 65250, - [SMALL_STATE(2229)] = 65259, - [SMALL_STATE(2230)] = 65270, - [SMALL_STATE(2231)] = 65281, - [SMALL_STATE(2232)] = 65292, - [SMALL_STATE(2233)] = 65301, - [SMALL_STATE(2234)] = 65312, - [SMALL_STATE(2235)] = 65321, - [SMALL_STATE(2236)] = 65332, - [SMALL_STATE(2237)] = 65343, - [SMALL_STATE(2238)] = 65354, - [SMALL_STATE(2239)] = 65365, - [SMALL_STATE(2240)] = 65374, - [SMALL_STATE(2241)] = 65385, - [SMALL_STATE(2242)] = 65396, - [SMALL_STATE(2243)] = 65407, - [SMALL_STATE(2244)] = 65418, - [SMALL_STATE(2245)] = 65429, - [SMALL_STATE(2246)] = 65440, - [SMALL_STATE(2247)] = 65451, - [SMALL_STATE(2248)] = 65462, - [SMALL_STATE(2249)] = 65473, - [SMALL_STATE(2250)] = 65484, - [SMALL_STATE(2251)] = 65495, - [SMALL_STATE(2252)] = 65506, - [SMALL_STATE(2253)] = 65517, - [SMALL_STATE(2254)] = 65526, - [SMALL_STATE(2255)] = 65535, - [SMALL_STATE(2256)] = 65546, - [SMALL_STATE(2257)] = 65557, - [SMALL_STATE(2258)] = 65568, - [SMALL_STATE(2259)] = 65579, - [SMALL_STATE(2260)] = 65590, - [SMALL_STATE(2261)] = 65601, - [SMALL_STATE(2262)] = 65612, - [SMALL_STATE(2263)] = 65623, - [SMALL_STATE(2264)] = 65634, - [SMALL_STATE(2265)] = 65645, - [SMALL_STATE(2266)] = 65656, - [SMALL_STATE(2267)] = 65665, - [SMALL_STATE(2268)] = 65676, - [SMALL_STATE(2269)] = 65687, - [SMALL_STATE(2270)] = 65698, - [SMALL_STATE(2271)] = 65709, - [SMALL_STATE(2272)] = 65720, - [SMALL_STATE(2273)] = 65731, - [SMALL_STATE(2274)] = 65742, - [SMALL_STATE(2275)] = 65753, - [SMALL_STATE(2276)] = 65764, - [SMALL_STATE(2277)] = 65775, - [SMALL_STATE(2278)] = 65786, - [SMALL_STATE(2279)] = 65797, - [SMALL_STATE(2280)] = 65808, - [SMALL_STATE(2281)] = 65819, - [SMALL_STATE(2282)] = 65830, - [SMALL_STATE(2283)] = 65839, - [SMALL_STATE(2284)] = 65848, - [SMALL_STATE(2285)] = 65859, - [SMALL_STATE(2286)] = 65870, - [SMALL_STATE(2287)] = 65881, - [SMALL_STATE(2288)] = 65890, - [SMALL_STATE(2289)] = 65901, - [SMALL_STATE(2290)] = 65912, - [SMALL_STATE(2291)] = 65921, - [SMALL_STATE(2292)] = 65932, - [SMALL_STATE(2293)] = 65943, - [SMALL_STATE(2294)] = 65954, - [SMALL_STATE(2295)] = 65965, - [SMALL_STATE(2296)] = 65976, - [SMALL_STATE(2297)] = 65987, - [SMALL_STATE(2298)] = 65998, - [SMALL_STATE(2299)] = 66009, - [SMALL_STATE(2300)] = 66020, - [SMALL_STATE(2301)] = 66029, - [SMALL_STATE(2302)] = 66040, - [SMALL_STATE(2303)] = 66051, - [SMALL_STATE(2304)] = 66062, - [SMALL_STATE(2305)] = 66071, - [SMALL_STATE(2306)] = 66082, - [SMALL_STATE(2307)] = 66093, - [SMALL_STATE(2308)] = 66104, - [SMALL_STATE(2309)] = 66115, - [SMALL_STATE(2310)] = 66126, - [SMALL_STATE(2311)] = 66137, - [SMALL_STATE(2312)] = 66148, - [SMALL_STATE(2313)] = 66159, - [SMALL_STATE(2314)] = 66170, - [SMALL_STATE(2315)] = 66181, - [SMALL_STATE(2316)] = 66190, - [SMALL_STATE(2317)] = 66201, - [SMALL_STATE(2318)] = 66212, - [SMALL_STATE(2319)] = 66221, - [SMALL_STATE(2320)] = 66232, - [SMALL_STATE(2321)] = 66243, - [SMALL_STATE(2322)] = 66254, - [SMALL_STATE(2323)] = 66265, - [SMALL_STATE(2324)] = 66276, - [SMALL_STATE(2325)] = 66287, - [SMALL_STATE(2326)] = 66298, - [SMALL_STATE(2327)] = 66309, - [SMALL_STATE(2328)] = 66320, - [SMALL_STATE(2329)] = 66331, - [SMALL_STATE(2330)] = 66342, - [SMALL_STATE(2331)] = 66353, - [SMALL_STATE(2332)] = 66364, - [SMALL_STATE(2333)] = 66373, - [SMALL_STATE(2334)] = 66384, - [SMALL_STATE(2335)] = 66393, - [SMALL_STATE(2336)] = 66404, - [SMALL_STATE(2337)] = 66415, - [SMALL_STATE(2338)] = 66426, - [SMALL_STATE(2339)] = 66437, - [SMALL_STATE(2340)] = 66448, - [SMALL_STATE(2341)] = 66457, - [SMALL_STATE(2342)] = 66468, - [SMALL_STATE(2343)] = 66479, - [SMALL_STATE(2344)] = 66490, - [SMALL_STATE(2345)] = 66501, - [SMALL_STATE(2346)] = 66512, - [SMALL_STATE(2347)] = 66520, - [SMALL_STATE(2348)] = 66528, - [SMALL_STATE(2349)] = 66536, - [SMALL_STATE(2350)] = 66544, - [SMALL_STATE(2351)] = 66552, - [SMALL_STATE(2352)] = 66560, - [SMALL_STATE(2353)] = 66568, - [SMALL_STATE(2354)] = 66576, - [SMALL_STATE(2355)] = 66584, - [SMALL_STATE(2356)] = 66592, - [SMALL_STATE(2357)] = 66600, - [SMALL_STATE(2358)] = 66608, - [SMALL_STATE(2359)] = 66616, - [SMALL_STATE(2360)] = 66624, - [SMALL_STATE(2361)] = 66632, - [SMALL_STATE(2362)] = 66640, - [SMALL_STATE(2363)] = 66648, - [SMALL_STATE(2364)] = 66656, - [SMALL_STATE(2365)] = 66664, - [SMALL_STATE(2366)] = 66672, - [SMALL_STATE(2367)] = 66680, - [SMALL_STATE(2368)] = 66688, - [SMALL_STATE(2369)] = 66696, - [SMALL_STATE(2370)] = 66704, - [SMALL_STATE(2371)] = 66712, - [SMALL_STATE(2372)] = 66720, - [SMALL_STATE(2373)] = 66728, - [SMALL_STATE(2374)] = 66736, - [SMALL_STATE(2375)] = 66744, - [SMALL_STATE(2376)] = 66752, - [SMALL_STATE(2377)] = 66760, - [SMALL_STATE(2378)] = 66768, - [SMALL_STATE(2379)] = 66776, - [SMALL_STATE(2380)] = 66784, - [SMALL_STATE(2381)] = 66792, - [SMALL_STATE(2382)] = 66800, - [SMALL_STATE(2383)] = 66808, - [SMALL_STATE(2384)] = 66816, - [SMALL_STATE(2385)] = 66824, - [SMALL_STATE(2386)] = 66832, - [SMALL_STATE(2387)] = 66840, - [SMALL_STATE(2388)] = 66848, - [SMALL_STATE(2389)] = 66856, - [SMALL_STATE(2390)] = 66864, - [SMALL_STATE(2391)] = 66872, - [SMALL_STATE(2392)] = 66880, - [SMALL_STATE(2393)] = 66888, - [SMALL_STATE(2394)] = 66896, - [SMALL_STATE(2395)] = 66904, - [SMALL_STATE(2396)] = 66912, - [SMALL_STATE(2397)] = 66920, - [SMALL_STATE(2398)] = 66928, - [SMALL_STATE(2399)] = 66936, - [SMALL_STATE(2400)] = 66944, - [SMALL_STATE(2401)] = 66952, - [SMALL_STATE(2402)] = 66960, - [SMALL_STATE(2403)] = 66968, - [SMALL_STATE(2404)] = 66976, - [SMALL_STATE(2405)] = 66984, - [SMALL_STATE(2406)] = 66992, - [SMALL_STATE(2407)] = 67000, - [SMALL_STATE(2408)] = 67008, - [SMALL_STATE(2409)] = 67016, - [SMALL_STATE(2410)] = 67024, - [SMALL_STATE(2411)] = 67032, - [SMALL_STATE(2412)] = 67040, - [SMALL_STATE(2413)] = 67048, - [SMALL_STATE(2414)] = 67056, - [SMALL_STATE(2415)] = 67064, - [SMALL_STATE(2416)] = 67072, - [SMALL_STATE(2417)] = 67080, - [SMALL_STATE(2418)] = 67088, - [SMALL_STATE(2419)] = 67096, - [SMALL_STATE(2420)] = 67104, - [SMALL_STATE(2421)] = 67112, - [SMALL_STATE(2422)] = 67120, - [SMALL_STATE(2423)] = 67128, - [SMALL_STATE(2424)] = 67136, - [SMALL_STATE(2425)] = 67144, - [SMALL_STATE(2426)] = 67152, - [SMALL_STATE(2427)] = 67160, - [SMALL_STATE(2428)] = 67168, - [SMALL_STATE(2429)] = 67176, - [SMALL_STATE(2430)] = 67184, - [SMALL_STATE(2431)] = 67192, - [SMALL_STATE(2432)] = 67200, - [SMALL_STATE(2433)] = 67208, - [SMALL_STATE(2434)] = 67216, - [SMALL_STATE(2435)] = 67224, - [SMALL_STATE(2436)] = 67232, - [SMALL_STATE(2437)] = 67240, - [SMALL_STATE(2438)] = 67248, - [SMALL_STATE(2439)] = 67256, - [SMALL_STATE(2440)] = 67264, - [SMALL_STATE(2441)] = 67272, - [SMALL_STATE(2442)] = 67280, - [SMALL_STATE(2443)] = 67288, - [SMALL_STATE(2444)] = 67296, - [SMALL_STATE(2445)] = 67304, - [SMALL_STATE(2446)] = 67312, - [SMALL_STATE(2447)] = 67320, - [SMALL_STATE(2448)] = 67328, - [SMALL_STATE(2449)] = 67336, - [SMALL_STATE(2450)] = 67344, - [SMALL_STATE(2451)] = 67352, - [SMALL_STATE(2452)] = 67360, - [SMALL_STATE(2453)] = 67368, - [SMALL_STATE(2454)] = 67376, - [SMALL_STATE(2455)] = 67384, - [SMALL_STATE(2456)] = 67392, - [SMALL_STATE(2457)] = 67400, - [SMALL_STATE(2458)] = 67408, - [SMALL_STATE(2459)] = 67416, - [SMALL_STATE(2460)] = 67424, - [SMALL_STATE(2461)] = 67432, - [SMALL_STATE(2462)] = 67440, - [SMALL_STATE(2463)] = 67448, - [SMALL_STATE(2464)] = 67456, - [SMALL_STATE(2465)] = 67464, - [SMALL_STATE(2466)] = 67472, - [SMALL_STATE(2467)] = 67480, - [SMALL_STATE(2468)] = 67488, - [SMALL_STATE(2469)] = 67496, - [SMALL_STATE(2470)] = 67504, - [SMALL_STATE(2471)] = 67512, - [SMALL_STATE(2472)] = 67520, - [SMALL_STATE(2473)] = 67528, - [SMALL_STATE(2474)] = 67536, - [SMALL_STATE(2475)] = 67544, - [SMALL_STATE(2476)] = 67552, - [SMALL_STATE(2477)] = 67560, - [SMALL_STATE(2478)] = 67568, - [SMALL_STATE(2479)] = 67576, - [SMALL_STATE(2480)] = 67584, - [SMALL_STATE(2481)] = 67592, - [SMALL_STATE(2482)] = 67600, - [SMALL_STATE(2483)] = 67608, - [SMALL_STATE(2484)] = 67616, - [SMALL_STATE(2485)] = 67624, - [SMALL_STATE(2486)] = 67632, - [SMALL_STATE(2487)] = 67640, - [SMALL_STATE(2488)] = 67648, - [SMALL_STATE(2489)] = 67656, - [SMALL_STATE(2490)] = 67664, - [SMALL_STATE(2491)] = 67672, - [SMALL_STATE(2492)] = 67680, - [SMALL_STATE(2493)] = 67688, - [SMALL_STATE(2494)] = 67696, - [SMALL_STATE(2495)] = 67704, - [SMALL_STATE(2496)] = 67712, - [SMALL_STATE(2497)] = 67720, - [SMALL_STATE(2498)] = 67728, - [SMALL_STATE(2499)] = 67736, - [SMALL_STATE(2500)] = 67744, - [SMALL_STATE(2501)] = 67752, - [SMALL_STATE(2502)] = 67760, - [SMALL_STATE(2503)] = 67768, - [SMALL_STATE(2504)] = 67776, - [SMALL_STATE(2505)] = 67784, - [SMALL_STATE(2506)] = 67792, - [SMALL_STATE(2507)] = 67800, - [SMALL_STATE(2508)] = 67808, - [SMALL_STATE(2509)] = 67816, - [SMALL_STATE(2510)] = 67824, - [SMALL_STATE(2511)] = 67832, - [SMALL_STATE(2512)] = 67840, - [SMALL_STATE(2513)] = 67848, - [SMALL_STATE(2514)] = 67856, - [SMALL_STATE(2515)] = 67864, - [SMALL_STATE(2516)] = 67872, - [SMALL_STATE(2517)] = 67880, - [SMALL_STATE(2518)] = 67888, - [SMALL_STATE(2519)] = 67896, - [SMALL_STATE(2520)] = 67904, - [SMALL_STATE(2521)] = 67912, - [SMALL_STATE(2522)] = 67920, - [SMALL_STATE(2523)] = 67928, - [SMALL_STATE(2524)] = 67936, - [SMALL_STATE(2525)] = 67944, - [SMALL_STATE(2526)] = 67952, - [SMALL_STATE(2527)] = 67960, - [SMALL_STATE(2528)] = 67968, - [SMALL_STATE(2529)] = 67976, - [SMALL_STATE(2530)] = 67984, - [SMALL_STATE(2531)] = 67992, - [SMALL_STATE(2532)] = 68000, - [SMALL_STATE(2533)] = 68008, - [SMALL_STATE(2534)] = 68016, - [SMALL_STATE(2535)] = 68024, - [SMALL_STATE(2536)] = 68032, - [SMALL_STATE(2537)] = 68040, - [SMALL_STATE(2538)] = 68048, - [SMALL_STATE(2539)] = 68056, - [SMALL_STATE(2540)] = 68064, - [SMALL_STATE(2541)] = 68072, - [SMALL_STATE(2542)] = 68080, - [SMALL_STATE(2543)] = 68088, - [SMALL_STATE(2544)] = 68096, - [SMALL_STATE(2545)] = 68104, - [SMALL_STATE(2546)] = 68112, - [SMALL_STATE(2547)] = 68120, - [SMALL_STATE(2548)] = 68128, - [SMALL_STATE(2549)] = 68136, - [SMALL_STATE(2550)] = 68144, - [SMALL_STATE(2551)] = 68152, - [SMALL_STATE(2552)] = 68160, - [SMALL_STATE(2553)] = 68168, - [SMALL_STATE(2554)] = 68176, - [SMALL_STATE(2555)] = 68184, - [SMALL_STATE(2556)] = 68192, - [SMALL_STATE(2557)] = 68200, - [SMALL_STATE(2558)] = 68208, - [SMALL_STATE(2559)] = 68216, - [SMALL_STATE(2560)] = 68224, - [SMALL_STATE(2561)] = 68232, - [SMALL_STATE(2562)] = 68240, - [SMALL_STATE(2563)] = 68248, - [SMALL_STATE(2564)] = 68256, - [SMALL_STATE(2565)] = 68264, - [SMALL_STATE(2566)] = 68272, - [SMALL_STATE(2567)] = 68280, - [SMALL_STATE(2568)] = 68288, - [SMALL_STATE(2569)] = 68296, - [SMALL_STATE(2570)] = 68304, - [SMALL_STATE(2571)] = 68312, - [SMALL_STATE(2572)] = 68320, - [SMALL_STATE(2573)] = 68328, - [SMALL_STATE(2574)] = 68336, - [SMALL_STATE(2575)] = 68344, - [SMALL_STATE(2576)] = 68352, - [SMALL_STATE(2577)] = 68360, - [SMALL_STATE(2578)] = 68368, - [SMALL_STATE(2579)] = 68376, - [SMALL_STATE(2580)] = 68384, - [SMALL_STATE(2581)] = 68392, + [SMALL_STATE(639)] = 0, + [SMALL_STATE(640)] = 129, + [SMALL_STATE(641)] = 258, + [SMALL_STATE(642)] = 387, + [SMALL_STATE(643)] = 516, + [SMALL_STATE(644)] = 645, + [SMALL_STATE(645)] = 774, + [SMALL_STATE(646)] = 903, + [SMALL_STATE(647)] = 1032, + [SMALL_STATE(648)] = 1161, + [SMALL_STATE(649)] = 1290, + [SMALL_STATE(650)] = 1419, + [SMALL_STATE(651)] = 1548, + [SMALL_STATE(652)] = 1677, + [SMALL_STATE(653)] = 1806, + [SMALL_STATE(654)] = 1935, + [SMALL_STATE(655)] = 2064, + [SMALL_STATE(656)] = 2193, + [SMALL_STATE(657)] = 2322, + [SMALL_STATE(658)] = 2453, + [SMALL_STATE(659)] = 2582, + [SMALL_STATE(660)] = 2711, + [SMALL_STATE(661)] = 2840, + [SMALL_STATE(662)] = 2969, + [SMALL_STATE(663)] = 3098, + [SMALL_STATE(664)] = 3227, + [SMALL_STATE(665)] = 3356, + [SMALL_STATE(666)] = 3485, + [SMALL_STATE(667)] = 3614, + [SMALL_STATE(668)] = 3743, + [SMALL_STATE(669)] = 3872, + [SMALL_STATE(670)] = 4001, + [SMALL_STATE(671)] = 4130, + [SMALL_STATE(672)] = 4259, + [SMALL_STATE(673)] = 4388, + [SMALL_STATE(674)] = 4517, + [SMALL_STATE(675)] = 4646, + [SMALL_STATE(676)] = 4775, + [SMALL_STATE(677)] = 4904, + [SMALL_STATE(678)] = 5033, + [SMALL_STATE(679)] = 5162, + [SMALL_STATE(680)] = 5291, + [SMALL_STATE(681)] = 5420, + [SMALL_STATE(682)] = 5549, + [SMALL_STATE(683)] = 5678, + [SMALL_STATE(684)] = 5807, + [SMALL_STATE(685)] = 5936, + [SMALL_STATE(686)] = 6065, + [SMALL_STATE(687)] = 6194, + [SMALL_STATE(688)] = 6323, + [SMALL_STATE(689)] = 6452, + [SMALL_STATE(690)] = 6581, + [SMALL_STATE(691)] = 6710, + [SMALL_STATE(692)] = 6839, + [SMALL_STATE(693)] = 6968, + [SMALL_STATE(694)] = 7097, + [SMALL_STATE(695)] = 7226, + [SMALL_STATE(696)] = 7355, + [SMALL_STATE(697)] = 7484, + [SMALL_STATE(698)] = 7613, + [SMALL_STATE(699)] = 7742, + [SMALL_STATE(700)] = 7871, + [SMALL_STATE(701)] = 8000, + [SMALL_STATE(702)] = 8129, + [SMALL_STATE(703)] = 8258, + [SMALL_STATE(704)] = 8387, + [SMALL_STATE(705)] = 8516, + [SMALL_STATE(706)] = 8645, + [SMALL_STATE(707)] = 8774, + [SMALL_STATE(708)] = 8903, + [SMALL_STATE(709)] = 9032, + [SMALL_STATE(710)] = 9161, + [SMALL_STATE(711)] = 9290, + [SMALL_STATE(712)] = 9419, + [SMALL_STATE(713)] = 9548, + [SMALL_STATE(714)] = 9677, + [SMALL_STATE(715)] = 9806, + [SMALL_STATE(716)] = 9935, + [SMALL_STATE(717)] = 10064, + [SMALL_STATE(718)] = 10193, + [SMALL_STATE(719)] = 10322, + [SMALL_STATE(720)] = 10451, + [SMALL_STATE(721)] = 10580, + [SMALL_STATE(722)] = 10709, + [SMALL_STATE(723)] = 10838, + [SMALL_STATE(724)] = 10967, + [SMALL_STATE(725)] = 11096, + [SMALL_STATE(726)] = 11225, + [SMALL_STATE(727)] = 11354, + [SMALL_STATE(728)] = 11483, + [SMALL_STATE(729)] = 11612, + [SMALL_STATE(730)] = 11683, + [SMALL_STATE(731)] = 11812, + [SMALL_STATE(732)] = 11941, + [SMALL_STATE(733)] = 12070, + [SMALL_STATE(734)] = 12199, + [SMALL_STATE(735)] = 12328, + [SMALL_STATE(736)] = 12457, + [SMALL_STATE(737)] = 12586, + [SMALL_STATE(738)] = 12715, + [SMALL_STATE(739)] = 12844, + [SMALL_STATE(740)] = 12973, + [SMALL_STATE(741)] = 13102, + [SMALL_STATE(742)] = 13231, + [SMALL_STATE(743)] = 13360, + [SMALL_STATE(744)] = 13489, + [SMALL_STATE(745)] = 13618, + [SMALL_STATE(746)] = 13747, + [SMALL_STATE(747)] = 13876, + [SMALL_STATE(748)] = 14005, + [SMALL_STATE(749)] = 14134, + [SMALL_STATE(750)] = 14200, + [SMALL_STATE(751)] = 14266, + [SMALL_STATE(752)] = 14332, + [SMALL_STATE(753)] = 14398, + [SMALL_STATE(754)] = 14460, + [SMALL_STATE(755)] = 14530, + [SMALL_STATE(756)] = 14597, + [SMALL_STATE(757)] = 14664, + [SMALL_STATE(758)] = 14720, + [SMALL_STATE(759)] = 14784, + [SMALL_STATE(760)] = 14848, + [SMALL_STATE(761)] = 14910, + [SMALL_STATE(762)] = 14966, + [SMALL_STATE(763)] = 15030, + [SMALL_STATE(764)] = 15090, + [SMALL_STATE(765)] = 15150, + [SMALL_STATE(766)] = 15210, + [SMALL_STATE(767)] = 15266, + [SMALL_STATE(768)] = 15326, + [SMALL_STATE(769)] = 15382, + [SMALL_STATE(770)] = 15446, + [SMALL_STATE(771)] = 15502, + [SMALL_STATE(772)] = 15559, + [SMALL_STATE(773)] = 15616, + [SMALL_STATE(774)] = 15673, + [SMALL_STATE(775)] = 15728, + [SMALL_STATE(776)] = 15785, + [SMALL_STATE(777)] = 15844, + [SMALL_STATE(778)] = 15903, + [SMALL_STATE(779)] = 15961, + [SMALL_STATE(780)] = 16015, + [SMALL_STATE(781)] = 16069, + [SMALL_STATE(782)] = 16123, + [SMALL_STATE(783)] = 16177, + [SMALL_STATE(784)] = 16231, + [SMALL_STATE(785)] = 16285, + [SMALL_STATE(786)] = 16339, + [SMALL_STATE(787)] = 16393, + [SMALL_STATE(788)] = 16447, + [SMALL_STATE(789)] = 16501, + [SMALL_STATE(790)] = 16555, + [SMALL_STATE(791)] = 16609, + [SMALL_STATE(792)] = 16663, + [SMALL_STATE(793)] = 16717, + [SMALL_STATE(794)] = 16771, + [SMALL_STATE(795)] = 16825, + [SMALL_STATE(796)] = 16879, + [SMALL_STATE(797)] = 16933, + [SMALL_STATE(798)] = 16987, + [SMALL_STATE(799)] = 17041, + [SMALL_STATE(800)] = 17095, + [SMALL_STATE(801)] = 17149, + [SMALL_STATE(802)] = 17203, + [SMALL_STATE(803)] = 17257, + [SMALL_STATE(804)] = 17311, + [SMALL_STATE(805)] = 17365, + [SMALL_STATE(806)] = 17419, + [SMALL_STATE(807)] = 17473, + [SMALL_STATE(808)] = 17527, + [SMALL_STATE(809)] = 17581, + [SMALL_STATE(810)] = 17635, + [SMALL_STATE(811)] = 17689, + [SMALL_STATE(812)] = 17745, + [SMALL_STATE(813)] = 17799, + [SMALL_STATE(814)] = 17853, + [SMALL_STATE(815)] = 17907, + [SMALL_STATE(816)] = 17961, + [SMALL_STATE(817)] = 18017, + [SMALL_STATE(818)] = 18071, + [SMALL_STATE(819)] = 18125, + [SMALL_STATE(820)] = 18179, + [SMALL_STATE(821)] = 18233, + [SMALL_STATE(822)] = 18287, + [SMALL_STATE(823)] = 18341, + [SMALL_STATE(824)] = 18395, + [SMALL_STATE(825)] = 18449, + [SMALL_STATE(826)] = 18503, + [SMALL_STATE(827)] = 18557, + [SMALL_STATE(828)] = 18611, + [SMALL_STATE(829)] = 18665, + [SMALL_STATE(830)] = 18719, + [SMALL_STATE(831)] = 18773, + [SMALL_STATE(832)] = 18827, + [SMALL_STATE(833)] = 18883, + [SMALL_STATE(834)] = 18937, + [SMALL_STATE(835)] = 18991, + [SMALL_STATE(836)] = 19045, + [SMALL_STATE(837)] = 19099, + [SMALL_STATE(838)] = 19155, + [SMALL_STATE(839)] = 19209, + [SMALL_STATE(840)] = 19263, + [SMALL_STATE(841)] = 19317, + [SMALL_STATE(842)] = 19371, + [SMALL_STATE(843)] = 19425, + [SMALL_STATE(844)] = 19479, + [SMALL_STATE(845)] = 19533, + [SMALL_STATE(846)] = 19587, + [SMALL_STATE(847)] = 19641, + [SMALL_STATE(848)] = 19695, + [SMALL_STATE(849)] = 19749, + [SMALL_STATE(850)] = 19803, + [SMALL_STATE(851)] = 19857, + [SMALL_STATE(852)] = 19911, + [SMALL_STATE(853)] = 19965, + [SMALL_STATE(854)] = 20019, + [SMALL_STATE(855)] = 20073, + [SMALL_STATE(856)] = 20127, + [SMALL_STATE(857)] = 20181, + [SMALL_STATE(858)] = 20235, + [SMALL_STATE(859)] = 20289, + [SMALL_STATE(860)] = 20343, + [SMALL_STATE(861)] = 20397, + [SMALL_STATE(862)] = 20451, + [SMALL_STATE(863)] = 20505, + [SMALL_STATE(864)] = 20559, + [SMALL_STATE(865)] = 20613, + [SMALL_STATE(866)] = 20667, + [SMALL_STATE(867)] = 20721, + [SMALL_STATE(868)] = 20775, + [SMALL_STATE(869)] = 20829, + [SMALL_STATE(870)] = 20885, + [SMALL_STATE(871)] = 20939, + [SMALL_STATE(872)] = 20993, + [SMALL_STATE(873)] = 21047, + [SMALL_STATE(874)] = 21101, + [SMALL_STATE(875)] = 21155, + [SMALL_STATE(876)] = 21209, + [SMALL_STATE(877)] = 21263, + [SMALL_STATE(878)] = 21319, + [SMALL_STATE(879)] = 21373, + [SMALL_STATE(880)] = 21427, + [SMALL_STATE(881)] = 21481, + [SMALL_STATE(882)] = 21535, + [SMALL_STATE(883)] = 21589, + [SMALL_STATE(884)] = 21643, + [SMALL_STATE(885)] = 21697, + [SMALL_STATE(886)] = 21751, + [SMALL_STATE(887)] = 21805, + [SMALL_STATE(888)] = 21859, + [SMALL_STATE(889)] = 21913, + [SMALL_STATE(890)] = 21967, + [SMALL_STATE(891)] = 22021, + [SMALL_STATE(892)] = 22075, + [SMALL_STATE(893)] = 22129, + [SMALL_STATE(894)] = 22183, + [SMALL_STATE(895)] = 22237, + [SMALL_STATE(896)] = 22291, + [SMALL_STATE(897)] = 22345, + [SMALL_STATE(898)] = 22399, + [SMALL_STATE(899)] = 22453, + [SMALL_STATE(900)] = 22507, + [SMALL_STATE(901)] = 22561, + [SMALL_STATE(902)] = 22615, + [SMALL_STATE(903)] = 22669, + [SMALL_STATE(904)] = 22723, + [SMALL_STATE(905)] = 22777, + [SMALL_STATE(906)] = 22831, + [SMALL_STATE(907)] = 22885, + [SMALL_STATE(908)] = 22939, + [SMALL_STATE(909)] = 22993, + [SMALL_STATE(910)] = 23047, + [SMALL_STATE(911)] = 23101, + [SMALL_STATE(912)] = 23155, + [SMALL_STATE(913)] = 23209, + [SMALL_STATE(914)] = 23263, + [SMALL_STATE(915)] = 23317, + [SMALL_STATE(916)] = 23375, + [SMALL_STATE(917)] = 23429, + [SMALL_STATE(918)] = 23483, + [SMALL_STATE(919)] = 23537, + [SMALL_STATE(920)] = 23591, + [SMALL_STATE(921)] = 23645, + [SMALL_STATE(922)] = 23699, + [SMALL_STATE(923)] = 23753, + [SMALL_STATE(924)] = 23807, + [SMALL_STATE(925)] = 23861, + [SMALL_STATE(926)] = 23915, + [SMALL_STATE(927)] = 23969, + [SMALL_STATE(928)] = 24023, + [SMALL_STATE(929)] = 24077, + [SMALL_STATE(930)] = 24131, + [SMALL_STATE(931)] = 24185, + [SMALL_STATE(932)] = 24239, + [SMALL_STATE(933)] = 24293, + [SMALL_STATE(934)] = 24347, + [SMALL_STATE(935)] = 24401, + [SMALL_STATE(936)] = 24455, + [SMALL_STATE(937)] = 24509, + [SMALL_STATE(938)] = 24563, + [SMALL_STATE(939)] = 24617, + [SMALL_STATE(940)] = 24671, + [SMALL_STATE(941)] = 24725, + [SMALL_STATE(942)] = 24779, + [SMALL_STATE(943)] = 24833, + [SMALL_STATE(944)] = 24887, + [SMALL_STATE(945)] = 24941, + [SMALL_STATE(946)] = 24995, + [SMALL_STATE(947)] = 25049, + [SMALL_STATE(948)] = 25103, + [SMALL_STATE(949)] = 25157, + [SMALL_STATE(950)] = 25211, + [SMALL_STATE(951)] = 25265, + [SMALL_STATE(952)] = 25319, + [SMALL_STATE(953)] = 25373, + [SMALL_STATE(954)] = 25427, + [SMALL_STATE(955)] = 25481, + [SMALL_STATE(956)] = 25535, + [SMALL_STATE(957)] = 25589, + [SMALL_STATE(958)] = 25643, + [SMALL_STATE(959)] = 25697, + [SMALL_STATE(960)] = 25751, + [SMALL_STATE(961)] = 25805, + [SMALL_STATE(962)] = 25859, + [SMALL_STATE(963)] = 25915, + [SMALL_STATE(964)] = 25969, + [SMALL_STATE(965)] = 26023, + [SMALL_STATE(966)] = 26077, + [SMALL_STATE(967)] = 26135, + [SMALL_STATE(968)] = 26189, + [SMALL_STATE(969)] = 26245, + [SMALL_STATE(970)] = 26299, + [SMALL_STATE(971)] = 26353, + [SMALL_STATE(972)] = 26407, + [SMALL_STATE(973)] = 26461, + [SMALL_STATE(974)] = 26515, + [SMALL_STATE(975)] = 26569, + [SMALL_STATE(976)] = 26623, + [SMALL_STATE(977)] = 26677, + [SMALL_STATE(978)] = 26731, + [SMALL_STATE(979)] = 26785, + [SMALL_STATE(980)] = 26839, + [SMALL_STATE(981)] = 26893, + [SMALL_STATE(982)] = 26947, + [SMALL_STATE(983)] = 27001, + [SMALL_STATE(984)] = 27055, + [SMALL_STATE(985)] = 27109, + [SMALL_STATE(986)] = 27163, + [SMALL_STATE(987)] = 27217, + [SMALL_STATE(988)] = 27273, + [SMALL_STATE(989)] = 27327, + [SMALL_STATE(990)] = 27381, + [SMALL_STATE(991)] = 27435, + [SMALL_STATE(992)] = 27489, + [SMALL_STATE(993)] = 27545, + [SMALL_STATE(994)] = 27601, + [SMALL_STATE(995)] = 27655, + [SMALL_STATE(996)] = 27709, + [SMALL_STATE(997)] = 27763, + [SMALL_STATE(998)] = 27817, + [SMALL_STATE(999)] = 27871, + [SMALL_STATE(1000)] = 27925, + [SMALL_STATE(1001)] = 27979, + [SMALL_STATE(1002)] = 28035, + [SMALL_STATE(1003)] = 28089, + [SMALL_STATE(1004)] = 28143, + [SMALL_STATE(1005)] = 28197, + [SMALL_STATE(1006)] = 28251, + [SMALL_STATE(1007)] = 28305, + [SMALL_STATE(1008)] = 28359, + [SMALL_STATE(1009)] = 28415, + [SMALL_STATE(1010)] = 28469, + [SMALL_STATE(1011)] = 28523, + [SMALL_STATE(1012)] = 28577, + [SMALL_STATE(1013)] = 28631, + [SMALL_STATE(1014)] = 28685, + [SMALL_STATE(1015)] = 28739, + [SMALL_STATE(1016)] = 28793, + [SMALL_STATE(1017)] = 28847, + [SMALL_STATE(1018)] = 28901, + [SMALL_STATE(1019)] = 28955, + [SMALL_STATE(1020)] = 29009, + [SMALL_STATE(1021)] = 29063, + [SMALL_STATE(1022)] = 29117, + [SMALL_STATE(1023)] = 29171, + [SMALL_STATE(1024)] = 29225, + [SMALL_STATE(1025)] = 29279, + [SMALL_STATE(1026)] = 29335, + [SMALL_STATE(1027)] = 29389, + [SMALL_STATE(1028)] = 29445, + [SMALL_STATE(1029)] = 29499, + [SMALL_STATE(1030)] = 29553, + [SMALL_STATE(1031)] = 29607, + [SMALL_STATE(1032)] = 29661, + [SMALL_STATE(1033)] = 29715, + [SMALL_STATE(1034)] = 29769, + [SMALL_STATE(1035)] = 29823, + [SMALL_STATE(1036)] = 29877, + [SMALL_STATE(1037)] = 29930, + [SMALL_STATE(1038)] = 29983, + [SMALL_STATE(1039)] = 30036, + [SMALL_STATE(1040)] = 30089, + [SMALL_STATE(1041)] = 30142, + [SMALL_STATE(1042)] = 30195, + [SMALL_STATE(1043)] = 30248, + [SMALL_STATE(1044)] = 30301, + [SMALL_STATE(1045)] = 30354, + [SMALL_STATE(1046)] = 30407, + [SMALL_STATE(1047)] = 30460, + [SMALL_STATE(1048)] = 30513, + [SMALL_STATE(1049)] = 30570, + [SMALL_STATE(1050)] = 30623, + [SMALL_STATE(1051)] = 30676, + [SMALL_STATE(1052)] = 30729, + [SMALL_STATE(1053)] = 30782, + [SMALL_STATE(1054)] = 30835, + [SMALL_STATE(1055)] = 30888, + [SMALL_STATE(1056)] = 30941, + [SMALL_STATE(1057)] = 30994, + [SMALL_STATE(1058)] = 31047, + [SMALL_STATE(1059)] = 31100, + [SMALL_STATE(1060)] = 31153, + [SMALL_STATE(1061)] = 31208, + [SMALL_STATE(1062)] = 31261, + [SMALL_STATE(1063)] = 31314, + [SMALL_STATE(1064)] = 31367, + [SMALL_STATE(1065)] = 31420, + [SMALL_STATE(1066)] = 31473, + [SMALL_STATE(1067)] = 31526, + [SMALL_STATE(1068)] = 31579, + [SMALL_STATE(1069)] = 31632, + [SMALL_STATE(1070)] = 31685, + [SMALL_STATE(1071)] = 31738, + [SMALL_STATE(1072)] = 31791, + [SMALL_STATE(1073)] = 31844, + [SMALL_STATE(1074)] = 31899, + [SMALL_STATE(1075)] = 31952, + [SMALL_STATE(1076)] = 32005, + [SMALL_STATE(1077)] = 32058, + [SMALL_STATE(1078)] = 32111, + [SMALL_STATE(1079)] = 32164, + [SMALL_STATE(1080)] = 32217, + [SMALL_STATE(1081)] = 32270, + [SMALL_STATE(1082)] = 32323, + [SMALL_STATE(1083)] = 32378, + [SMALL_STATE(1084)] = 32431, + [SMALL_STATE(1085)] = 32484, + [SMALL_STATE(1086)] = 32537, + [SMALL_STATE(1087)] = 32590, + [SMALL_STATE(1088)] = 32643, + [SMALL_STATE(1089)] = 32696, + [SMALL_STATE(1090)] = 32749, + [SMALL_STATE(1091)] = 32802, + [SMALL_STATE(1092)] = 32855, + [SMALL_STATE(1093)] = 32944, + [SMALL_STATE(1094)] = 32997, + [SMALL_STATE(1095)] = 33050, + [SMALL_STATE(1096)] = 33139, + [SMALL_STATE(1097)] = 33192, + [SMALL_STATE(1098)] = 33245, + [SMALL_STATE(1099)] = 33298, + [SMALL_STATE(1100)] = 33351, + [SMALL_STATE(1101)] = 33404, + [SMALL_STATE(1102)] = 33457, + [SMALL_STATE(1103)] = 33510, + [SMALL_STATE(1104)] = 33563, + [SMALL_STATE(1105)] = 33616, + [SMALL_STATE(1106)] = 33669, + [SMALL_STATE(1107)] = 33722, + [SMALL_STATE(1108)] = 33775, + [SMALL_STATE(1109)] = 33828, + [SMALL_STATE(1110)] = 33881, + [SMALL_STATE(1111)] = 33934, + [SMALL_STATE(1112)] = 33987, + [SMALL_STATE(1113)] = 34040, + [SMALL_STATE(1114)] = 34093, + [SMALL_STATE(1115)] = 34146, + [SMALL_STATE(1116)] = 34199, + [SMALL_STATE(1117)] = 34252, + [SMALL_STATE(1118)] = 34305, + [SMALL_STATE(1119)] = 34358, + [SMALL_STATE(1120)] = 34411, + [SMALL_STATE(1121)] = 34464, + [SMALL_STATE(1122)] = 34517, + [SMALL_STATE(1123)] = 34570, + [SMALL_STATE(1124)] = 34625, + [SMALL_STATE(1125)] = 34678, + [SMALL_STATE(1126)] = 34731, + [SMALL_STATE(1127)] = 34784, + [SMALL_STATE(1128)] = 34837, + [SMALL_STATE(1129)] = 34890, + [SMALL_STATE(1130)] = 34943, + [SMALL_STATE(1131)] = 34996, + [SMALL_STATE(1132)] = 35049, + [SMALL_STATE(1133)] = 35102, + [SMALL_STATE(1134)] = 35162, + [SMALL_STATE(1135)] = 35214, + [SMALL_STATE(1136)] = 35292, + [SMALL_STATE(1137)] = 35344, + [SMALL_STATE(1138)] = 35424, + [SMALL_STATE(1139)] = 35504, + [SMALL_STATE(1140)] = 35584, + [SMALL_STATE(1141)] = 35652, + [SMALL_STATE(1142)] = 35732, + [SMALL_STATE(1143)] = 35804, + [SMALL_STATE(1144)] = 35868, + [SMALL_STATE(1145)] = 35934, + [SMALL_STATE(1146)] = 36010, + [SMALL_STATE(1147)] = 36070, + [SMALL_STATE(1148)] = 36150, + [SMALL_STATE(1149)] = 36236, + [SMALL_STATE(1150)] = 36296, + [SMALL_STATE(1151)] = 36366, + [SMALL_STATE(1152)] = 36446, + [SMALL_STATE(1153)] = 36506, + [SMALL_STATE(1154)] = 36566, + [SMALL_STATE(1155)] = 36652, + [SMALL_STATE(1156)] = 36714, + [SMALL_STATE(1157)] = 36793, + [SMALL_STATE(1158)] = 36878, + [SMALL_STATE(1159)] = 36929, + [SMALL_STATE(1160)] = 37016, + [SMALL_STATE(1161)] = 37103, + [SMALL_STATE(1162)] = 37190, + [SMALL_STATE(1163)] = 37241, + [SMALL_STATE(1164)] = 37328, + [SMALL_STATE(1165)] = 37413, + [SMALL_STATE(1166)] = 37470, + [SMALL_STATE(1167)] = 37546, + [SMALL_STATE(1168)] = 37622, + [SMALL_STATE(1169)] = 37698, + [SMALL_STATE(1170)] = 37774, + [SMALL_STATE(1171)] = 37828, + [SMALL_STATE(1172)] = 37884, + [SMALL_STATE(1173)] = 37933, + [SMALL_STATE(1174)] = 37982, + [SMALL_STATE(1175)] = 38031, + [SMALL_STATE(1176)] = 38084, + [SMALL_STATE(1177)] = 38157, + [SMALL_STATE(1178)] = 38206, + [SMALL_STATE(1179)] = 38255, + [SMALL_STATE(1180)] = 38304, + [SMALL_STATE(1181)] = 38353, + [SMALL_STATE(1182)] = 38402, + [SMALL_STATE(1183)] = 38451, + [SMALL_STATE(1184)] = 38502, + [SMALL_STATE(1185)] = 38591, + [SMALL_STATE(1186)] = 38680, + [SMALL_STATE(1187)] = 38733, + [SMALL_STATE(1188)] = 38784, + [SMALL_STATE(1189)] = 38870, + [SMALL_STATE(1190)] = 38920, + [SMALL_STATE(1191)] = 38998, + [SMALL_STATE(1192)] = 39076, + [SMALL_STATE(1193)] = 39126, + [SMALL_STATE(1194)] = 39212, + [SMALL_STATE(1195)] = 39262, + [SMALL_STATE(1196)] = 39312, + [SMALL_STATE(1197)] = 39395, + [SMALL_STATE(1198)] = 39476, + [SMALL_STATE(1199)] = 39559, + [SMALL_STATE(1200)] = 39642, + [SMALL_STATE(1201)] = 39723, + [SMALL_STATE(1202)] = 39806, + [SMALL_STATE(1203)] = 39889, + [SMALL_STATE(1204)] = 39972, + [SMALL_STATE(1205)] = 40055, + [SMALL_STATE(1206)] = 40130, + [SMALL_STATE(1207)] = 40211, + [SMALL_STATE(1208)] = 40294, + [SMALL_STATE(1209)] = 40349, + [SMALL_STATE(1210)] = 40430, + [SMALL_STATE(1211)] = 40511, + [SMALL_STATE(1212)] = 40592, + [SMALL_STATE(1213)] = 40675, + [SMALL_STATE(1214)] = 40758, + [SMALL_STATE(1215)] = 40833, + [SMALL_STATE(1216)] = 40914, + [SMALL_STATE(1217)] = 40989, + [SMALL_STATE(1218)] = 41072, + [SMALL_STATE(1219)] = 41155, + [SMALL_STATE(1220)] = 41238, + [SMALL_STATE(1221)] = 41313, + [SMALL_STATE(1222)] = 41394, + [SMALL_STATE(1223)] = 41477, + [SMALL_STATE(1224)] = 41560, + [SMALL_STATE(1225)] = 41641, + [SMALL_STATE(1226)] = 41724, + [SMALL_STATE(1227)] = 41807, + [SMALL_STATE(1228)] = 41878, + [SMALL_STATE(1229)] = 41935, + [SMALL_STATE(1230)] = 42010, + [SMALL_STATE(1231)] = 42093, + [SMALL_STATE(1232)] = 42160, + [SMALL_STATE(1233)] = 42219, + [SMALL_STATE(1234)] = 42274, + [SMALL_STATE(1235)] = 42355, + [SMALL_STATE(1236)] = 42436, + [SMALL_STATE(1237)] = 42517, + [SMALL_STATE(1238)] = 42600, + [SMALL_STATE(1239)] = 42683, + [SMALL_STATE(1240)] = 42758, + [SMALL_STATE(1241)] = 42813, + [SMALL_STATE(1242)] = 42876, + [SMALL_STATE(1243)] = 42937, + [SMALL_STATE(1244)] = 43020, + [SMALL_STATE(1245)] = 43101, + [SMALL_STATE(1246)] = 43156, + [SMALL_STATE(1247)] = 43239, + [SMALL_STATE(1248)] = 43310, + [SMALL_STATE(1249)] = 43393, + [SMALL_STATE(1250)] = 43476, + [SMALL_STATE(1251)] = 43559, + [SMALL_STATE(1252)] = 43642, + [SMALL_STATE(1253)] = 43725, + [SMALL_STATE(1254)] = 43806, + [SMALL_STATE(1255)] = 43879, + [SMALL_STATE(1256)] = 43944, + [SMALL_STATE(1257)] = 44024, + [SMALL_STATE(1258)] = 44104, + [SMALL_STATE(1259)] = 44184, + [SMALL_STATE(1260)] = 44264, + [SMALL_STATE(1261)] = 44344, + [SMALL_STATE(1262)] = 44424, + [SMALL_STATE(1263)] = 44504, + [SMALL_STATE(1264)] = 44584, + [SMALL_STATE(1265)] = 44662, + [SMALL_STATE(1266)] = 44742, + [SMALL_STATE(1267)] = 44822, + [SMALL_STATE(1268)] = 44902, + [SMALL_STATE(1269)] = 44980, + [SMALL_STATE(1270)] = 45060, + [SMALL_STATE(1271)] = 45140, + [SMALL_STATE(1272)] = 45220, + [SMALL_STATE(1273)] = 45300, + [SMALL_STATE(1274)] = 45380, + [SMALL_STATE(1275)] = 45460, + [SMALL_STATE(1276)] = 45540, + [SMALL_STATE(1277)] = 45620, + [SMALL_STATE(1278)] = 45688, + [SMALL_STATE(1279)] = 45768, + [SMALL_STATE(1280)] = 45848, + [SMALL_STATE(1281)] = 45928, + [SMALL_STATE(1282)] = 46008, + [SMALL_STATE(1283)] = 46088, + [SMALL_STATE(1284)] = 46156, + [SMALL_STATE(1285)] = 46236, + [SMALL_STATE(1286)] = 46316, + [SMALL_STATE(1287)] = 46394, + [SMALL_STATE(1288)] = 46474, + [SMALL_STATE(1289)] = 46554, + [SMALL_STATE(1290)] = 46634, + [SMALL_STATE(1291)] = 46714, + [SMALL_STATE(1292)] = 46792, + [SMALL_STATE(1293)] = 46872, + [SMALL_STATE(1294)] = 46952, + [SMALL_STATE(1295)] = 47032, + [SMALL_STATE(1296)] = 47097, + [SMALL_STATE(1297)] = 47162, + [SMALL_STATE(1298)] = 47227, + [SMALL_STATE(1299)] = 47292, + [SMALL_STATE(1300)] = 47357, + [SMALL_STATE(1301)] = 47397, + [SMALL_STATE(1302)] = 47437, + [SMALL_STATE(1303)] = 47477, + [SMALL_STATE(1304)] = 47529, + [SMALL_STATE(1305)] = 47581, + [SMALL_STATE(1306)] = 47611, + [SMALL_STATE(1307)] = 47641, + [SMALL_STATE(1308)] = 47686, + [SMALL_STATE(1309)] = 47726, + [SMALL_STATE(1310)] = 47755, + [SMALL_STATE(1311)] = 47784, + [SMALL_STATE(1312)] = 47813, + [SMALL_STATE(1313)] = 47842, + [SMALL_STATE(1314)] = 47871, + [SMALL_STATE(1315)] = 47908, + [SMALL_STATE(1316)] = 47945, + [SMALL_STATE(1317)] = 47974, + [SMALL_STATE(1318)] = 48003, + [SMALL_STATE(1319)] = 48032, + [SMALL_STATE(1320)] = 48064, + [SMALL_STATE(1321)] = 48118, + [SMALL_STATE(1322)] = 48150, + [SMALL_STATE(1323)] = 48176, + [SMALL_STATE(1324)] = 48202, + [SMALL_STATE(1325)] = 48256, + [SMALL_STATE(1326)] = 48282, + [SMALL_STATE(1327)] = 48314, + [SMALL_STATE(1328)] = 48339, + [SMALL_STATE(1329)] = 48364, + [SMALL_STATE(1330)] = 48387, + [SMALL_STATE(1331)] = 48412, + [SMALL_STATE(1332)] = 48437, + [SMALL_STATE(1333)] = 48462, + [SMALL_STATE(1334)] = 48495, + [SMALL_STATE(1335)] = 48519, + [SMALL_STATE(1336)] = 48563, + [SMALL_STATE(1337)] = 48587, + [SMALL_STATE(1338)] = 48611, + [SMALL_STATE(1339)] = 48635, + [SMALL_STATE(1340)] = 48657, + [SMALL_STATE(1341)] = 48703, + [SMALL_STATE(1342)] = 48725, + [SMALL_STATE(1343)] = 48769, + [SMALL_STATE(1344)] = 48791, + [SMALL_STATE(1345)] = 48813, + [SMALL_STATE(1346)] = 48837, + [SMALL_STATE(1347)] = 48861, + [SMALL_STATE(1348)] = 48885, + [SMALL_STATE(1349)] = 48906, + [SMALL_STATE(1350)] = 48929, + [SMALL_STATE(1351)] = 48952, + [SMALL_STATE(1352)] = 48977, + [SMALL_STATE(1353)] = 49000, + [SMALL_STATE(1354)] = 49023, + [SMALL_STATE(1355)] = 49044, + [SMALL_STATE(1356)] = 49069, + [SMALL_STATE(1357)] = 49090, + [SMALL_STATE(1358)] = 49113, + [SMALL_STATE(1359)] = 49136, + [SMALL_STATE(1360)] = 49159, + [SMALL_STATE(1361)] = 49184, + [SMALL_STATE(1362)] = 49211, + [SMALL_STATE(1363)] = 49236, + [SMALL_STATE(1364)] = 49261, + [SMALL_STATE(1365)] = 49282, + [SMALL_STATE(1366)] = 49307, + [SMALL_STATE(1367)] = 49352, + [SMALL_STATE(1368)] = 49373, + [SMALL_STATE(1369)] = 49396, + [SMALL_STATE(1370)] = 49416, + [SMALL_STATE(1371)] = 49436, + [SMALL_STATE(1372)] = 49458, + [SMALL_STATE(1373)] = 49478, + [SMALL_STATE(1374)] = 49498, + [SMALL_STATE(1375)] = 49518, + [SMALL_STATE(1376)] = 49538, + [SMALL_STATE(1377)] = 49562, + [SMALL_STATE(1378)] = 49584, + [SMALL_STATE(1379)] = 49604, + [SMALL_STATE(1380)] = 49624, + [SMALL_STATE(1381)] = 49644, + [SMALL_STATE(1382)] = 49666, + [SMALL_STATE(1383)] = 49686, + [SMALL_STATE(1384)] = 49706, + [SMALL_STATE(1385)] = 49726, + [SMALL_STATE(1386)] = 49746, + [SMALL_STATE(1387)] = 49766, + [SMALL_STATE(1388)] = 49786, + [SMALL_STATE(1389)] = 49806, + [SMALL_STATE(1390)] = 49826, + [SMALL_STATE(1391)] = 49846, + [SMALL_STATE(1392)] = 49866, + [SMALL_STATE(1393)] = 49886, + [SMALL_STATE(1394)] = 49906, + [SMALL_STATE(1395)] = 49926, + [SMALL_STATE(1396)] = 49946, + [SMALL_STATE(1397)] = 49969, + [SMALL_STATE(1398)] = 49990, + [SMALL_STATE(1399)] = 50013, + [SMALL_STATE(1400)] = 50036, + [SMALL_STATE(1401)] = 50061, + [SMALL_STATE(1402)] = 50084, + [SMALL_STATE(1403)] = 50109, + [SMALL_STATE(1404)] = 50134, + [SMALL_STATE(1405)] = 50159, + [SMALL_STATE(1406)] = 50184, + [SMALL_STATE(1407)] = 50209, + [SMALL_STATE(1408)] = 50234, + [SMALL_STATE(1409)] = 50257, + [SMALL_STATE(1410)] = 50280, + [SMALL_STATE(1411)] = 50303, + [SMALL_STATE(1412)] = 50326, + [SMALL_STATE(1413)] = 50349, + [SMALL_STATE(1414)] = 50372, + [SMALL_STATE(1415)] = 50393, + [SMALL_STATE(1416)] = 50416, + [SMALL_STATE(1417)] = 50437, + [SMALL_STATE(1418)] = 50462, + [SMALL_STATE(1419)] = 50485, + [SMALL_STATE(1420)] = 50505, + [SMALL_STATE(1421)] = 50525, + [SMALL_STATE(1422)] = 50545, + [SMALL_STATE(1423)] = 50565, + [SMALL_STATE(1424)] = 50585, + [SMALL_STATE(1425)] = 50609, + [SMALL_STATE(1426)] = 50629, + [SMALL_STATE(1427)] = 50649, + [SMALL_STATE(1428)] = 50669, + [SMALL_STATE(1429)] = 50689, + [SMALL_STATE(1430)] = 50721, + [SMALL_STATE(1431)] = 50753, + [SMALL_STATE(1432)] = 50777, + [SMALL_STATE(1433)] = 50797, + [SMALL_STATE(1434)] = 50817, + [SMALL_STATE(1435)] = 50837, + [SMALL_STATE(1436)] = 50863, + [SMALL_STATE(1437)] = 50895, + [SMALL_STATE(1438)] = 50915, + [SMALL_STATE(1439)] = 50947, + [SMALL_STATE(1440)] = 50967, + [SMALL_STATE(1441)] = 50987, + [SMALL_STATE(1442)] = 51007, + [SMALL_STATE(1443)] = 51039, + [SMALL_STATE(1444)] = 51071, + [SMALL_STATE(1445)] = 51103, + [SMALL_STATE(1446)] = 51123, + [SMALL_STATE(1447)] = 51143, + [SMALL_STATE(1448)] = 51163, + [SMALL_STATE(1449)] = 51183, + [SMALL_STATE(1450)] = 51203, + [SMALL_STATE(1451)] = 51223, + [SMALL_STATE(1452)] = 51243, + [SMALL_STATE(1453)] = 51263, + [SMALL_STATE(1454)] = 51287, + [SMALL_STATE(1455)] = 51307, + [SMALL_STATE(1456)] = 51327, + [SMALL_STATE(1457)] = 51359, + [SMALL_STATE(1458)] = 51379, + [SMALL_STATE(1459)] = 51399, + [SMALL_STATE(1460)] = 51419, + [SMALL_STATE(1461)] = 51443, + [SMALL_STATE(1462)] = 51463, + [SMALL_STATE(1463)] = 51483, + [SMALL_STATE(1464)] = 51509, + [SMALL_STATE(1465)] = 51534, + [SMALL_STATE(1466)] = 51557, + [SMALL_STATE(1467)] = 51590, + [SMALL_STATE(1468)] = 51619, + [SMALL_STATE(1469)] = 51646, + [SMALL_STATE(1470)] = 51679, + [SMALL_STATE(1471)] = 51710, + [SMALL_STATE(1472)] = 51733, + [SMALL_STATE(1473)] = 51756, + [SMALL_STATE(1474)] = 51789, + [SMALL_STATE(1475)] = 51822, + [SMALL_STATE(1476)] = 51844, + [SMALL_STATE(1477)] = 51870, + [SMALL_STATE(1478)] = 51902, + [SMALL_STATE(1479)] = 51928, + [SMALL_STATE(1480)] = 51958, + [SMALL_STATE(1481)] = 51990, + [SMALL_STATE(1482)] = 52012, + [SMALL_STATE(1483)] = 52042, + [SMALL_STATE(1484)] = 52068, + [SMALL_STATE(1485)] = 52094, + [SMALL_STATE(1486)] = 52124, + [SMALL_STATE(1487)] = 52154, + [SMALL_STATE(1488)] = 52180, + [SMALL_STATE(1489)] = 52212, + [SMALL_STATE(1490)] = 52242, + [SMALL_STATE(1491)] = 52272, + [SMALL_STATE(1492)] = 52302, + [SMALL_STATE(1493)] = 52328, + [SMALL_STATE(1494)] = 52354, + [SMALL_STATE(1495)] = 52384, + [SMALL_STATE(1496)] = 52414, + [SMALL_STATE(1497)] = 52444, + [SMALL_STATE(1498)] = 52474, + [SMALL_STATE(1499)] = 52496, + [SMALL_STATE(1500)] = 52526, + [SMALL_STATE(1501)] = 52552, + [SMALL_STATE(1502)] = 52584, + [SMALL_STATE(1503)] = 52610, + [SMALL_STATE(1504)] = 52640, + [SMALL_STATE(1505)] = 52670, + [SMALL_STATE(1506)] = 52700, + [SMALL_STATE(1507)] = 52722, + [SMALL_STATE(1508)] = 52752, + [SMALL_STATE(1509)] = 52782, + [SMALL_STATE(1510)] = 52808, + [SMALL_STATE(1511)] = 52838, + [SMALL_STATE(1512)] = 52868, + [SMALL_STATE(1513)] = 52894, + [SMALL_STATE(1514)] = 52916, + [SMALL_STATE(1515)] = 52946, + [SMALL_STATE(1516)] = 52976, + [SMALL_STATE(1517)] = 52998, + [SMALL_STATE(1518)] = 53027, + [SMALL_STATE(1519)] = 53056, + [SMALL_STATE(1520)] = 53085, + [SMALL_STATE(1521)] = 53112, + [SMALL_STATE(1522)] = 53131, + [SMALL_STATE(1523)] = 53150, + [SMALL_STATE(1524)] = 53177, + [SMALL_STATE(1525)] = 53204, + [SMALL_STATE(1526)] = 53225, + [SMALL_STATE(1527)] = 53252, + [SMALL_STATE(1528)] = 53271, + [SMALL_STATE(1529)] = 53300, + [SMALL_STATE(1530)] = 53327, + [SMALL_STATE(1531)] = 53354, + [SMALL_STATE(1532)] = 53379, + [SMALL_STATE(1533)] = 53406, + [SMALL_STATE(1534)] = 53425, + [SMALL_STATE(1535)] = 53452, + [SMALL_STATE(1536)] = 53471, + [SMALL_STATE(1537)] = 53498, + [SMALL_STATE(1538)] = 53527, + [SMALL_STATE(1539)] = 53554, + [SMALL_STATE(1540)] = 53583, + [SMALL_STATE(1541)] = 53606, + [SMALL_STATE(1542)] = 53629, + [SMALL_STATE(1543)] = 53648, + [SMALL_STATE(1544)] = 53671, + [SMALL_STATE(1545)] = 53698, + [SMALL_STATE(1546)] = 53725, + [SMALL_STATE(1547)] = 53744, + [SMALL_STATE(1548)] = 53771, + [SMALL_STATE(1549)] = 53794, + [SMALL_STATE(1550)] = 53821, + [SMALL_STATE(1551)] = 53840, + [SMALL_STATE(1552)] = 53861, + [SMALL_STATE(1553)] = 53880, + [SMALL_STATE(1554)] = 53899, + [SMALL_STATE(1555)] = 53926, + [SMALL_STATE(1556)] = 53945, + [SMALL_STATE(1557)] = 53960, + [SMALL_STATE(1558)] = 53976, + [SMALL_STATE(1559)] = 54002, + [SMALL_STATE(1560)] = 54028, + [SMALL_STATE(1561)] = 54054, + [SMALL_STATE(1562)] = 54070, + [SMALL_STATE(1563)] = 54092, + [SMALL_STATE(1564)] = 54118, + [SMALL_STATE(1565)] = 54134, + [SMALL_STATE(1566)] = 54160, + [SMALL_STATE(1567)] = 54186, + [SMALL_STATE(1568)] = 54212, + [SMALL_STATE(1569)] = 54238, + [SMALL_STATE(1570)] = 54264, + [SMALL_STATE(1571)] = 54290, + [SMALL_STATE(1572)] = 54304, + [SMALL_STATE(1573)] = 54330, + [SMALL_STATE(1574)] = 54354, + [SMALL_STATE(1575)] = 54368, + [SMALL_STATE(1576)] = 54382, + [SMALL_STATE(1577)] = 54396, + [SMALL_STATE(1578)] = 54410, + [SMALL_STATE(1579)] = 54436, + [SMALL_STATE(1580)] = 54450, + [SMALL_STATE(1581)] = 54476, + [SMALL_STATE(1582)] = 54490, + [SMALL_STATE(1583)] = 54516, + [SMALL_STATE(1584)] = 54532, + [SMALL_STATE(1585)] = 54558, + [SMALL_STATE(1586)] = 54582, + [SMALL_STATE(1587)] = 54606, + [SMALL_STATE(1588)] = 54632, + [SMALL_STATE(1589)] = 54658, + [SMALL_STATE(1590)] = 54684, + [SMALL_STATE(1591)] = 54708, + [SMALL_STATE(1592)] = 54734, + [SMALL_STATE(1593)] = 54760, + [SMALL_STATE(1594)] = 54786, + [SMALL_STATE(1595)] = 54808, + [SMALL_STATE(1596)] = 54834, + [SMALL_STATE(1597)] = 54858, + [SMALL_STATE(1598)] = 54874, + [SMALL_STATE(1599)] = 54890, + [SMALL_STATE(1600)] = 54906, + [SMALL_STATE(1601)] = 54922, + [SMALL_STATE(1602)] = 54948, + [SMALL_STATE(1603)] = 54974, + [SMALL_STATE(1604)] = 54997, + [SMALL_STATE(1605)] = 55020, + [SMALL_STATE(1606)] = 55037, + [SMALL_STATE(1607)] = 55060, + [SMALL_STATE(1608)] = 55083, + [SMALL_STATE(1609)] = 55106, + [SMALL_STATE(1610)] = 55129, + [SMALL_STATE(1611)] = 55152, + [SMALL_STATE(1612)] = 55171, + [SMALL_STATE(1613)] = 55188, + [SMALL_STATE(1614)] = 55211, + [SMALL_STATE(1615)] = 55234, + [SMALL_STATE(1616)] = 55257, + [SMALL_STATE(1617)] = 55280, + [SMALL_STATE(1618)] = 55297, + [SMALL_STATE(1619)] = 55320, + [SMALL_STATE(1620)] = 55343, + [SMALL_STATE(1621)] = 55360, + [SMALL_STATE(1622)] = 55383, + [SMALL_STATE(1623)] = 55400, + [SMALL_STATE(1624)] = 55417, + [SMALL_STATE(1625)] = 55440, + [SMALL_STATE(1626)] = 55457, + [SMALL_STATE(1627)] = 55474, + [SMALL_STATE(1628)] = 55497, + [SMALL_STATE(1629)] = 55520, + [SMALL_STATE(1630)] = 55543, + [SMALL_STATE(1631)] = 55566, + [SMALL_STATE(1632)] = 55587, + [SMALL_STATE(1633)] = 55610, + [SMALL_STATE(1634)] = 55631, + [SMALL_STATE(1635)] = 55654, + [SMALL_STATE(1636)] = 55675, + [SMALL_STATE(1637)] = 55696, + [SMALL_STATE(1638)] = 55719, + [SMALL_STATE(1639)] = 55740, + [SMALL_STATE(1640)] = 55763, + [SMALL_STATE(1641)] = 55786, + [SMALL_STATE(1642)] = 55809, + [SMALL_STATE(1643)] = 55832, + [SMALL_STATE(1644)] = 55855, + [SMALL_STATE(1645)] = 55872, + [SMALL_STATE(1646)] = 55895, + [SMALL_STATE(1647)] = 55918, + [SMALL_STATE(1648)] = 55941, + [SMALL_STATE(1649)] = 55958, + [SMALL_STATE(1650)] = 55975, + [SMALL_STATE(1651)] = 55994, + [SMALL_STATE(1652)] = 56017, + [SMALL_STATE(1653)] = 56034, + [SMALL_STATE(1654)] = 56053, + [SMALL_STATE(1655)] = 56076, + [SMALL_STATE(1656)] = 56099, + [SMALL_STATE(1657)] = 56122, + [SMALL_STATE(1658)] = 56145, + [SMALL_STATE(1659)] = 56168, + [SMALL_STATE(1660)] = 56185, + [SMALL_STATE(1661)] = 56208, + [SMALL_STATE(1662)] = 56231, + [SMALL_STATE(1663)] = 56254, + [SMALL_STATE(1664)] = 56277, + [SMALL_STATE(1665)] = 56300, + [SMALL_STATE(1666)] = 56323, + [SMALL_STATE(1667)] = 56346, + [SMALL_STATE(1668)] = 56369, + [SMALL_STATE(1669)] = 56384, + [SMALL_STATE(1670)] = 56407, + [SMALL_STATE(1671)] = 56430, + [SMALL_STATE(1672)] = 56453, + [SMALL_STATE(1673)] = 56470, + [SMALL_STATE(1674)] = 56485, + [SMALL_STATE(1675)] = 56508, + [SMALL_STATE(1676)] = 56531, + [SMALL_STATE(1677)] = 56552, + [SMALL_STATE(1678)] = 56575, + [SMALL_STATE(1679)] = 56598, + [SMALL_STATE(1680)] = 56621, + [SMALL_STATE(1681)] = 56644, + [SMALL_STATE(1682)] = 56667, + [SMALL_STATE(1683)] = 56690, + [SMALL_STATE(1684)] = 56713, + [SMALL_STATE(1685)] = 56736, + [SMALL_STATE(1686)] = 56759, + [SMALL_STATE(1687)] = 56782, + [SMALL_STATE(1688)] = 56805, + [SMALL_STATE(1689)] = 56828, + [SMALL_STATE(1690)] = 56851, + [SMALL_STATE(1691)] = 56874, + [SMALL_STATE(1692)] = 56897, + [SMALL_STATE(1693)] = 56920, + [SMALL_STATE(1694)] = 56943, + [SMALL_STATE(1695)] = 56966, + [SMALL_STATE(1696)] = 56989, + [SMALL_STATE(1697)] = 57006, + [SMALL_STATE(1698)] = 57029, + [SMALL_STATE(1699)] = 57052, + [SMALL_STATE(1700)] = 57068, + [SMALL_STATE(1701)] = 57086, + [SMALL_STATE(1702)] = 57106, + [SMALL_STATE(1703)] = 57118, + [SMALL_STATE(1704)] = 57130, + [SMALL_STATE(1705)] = 57148, + [SMALL_STATE(1706)] = 57168, + [SMALL_STATE(1707)] = 57184, + [SMALL_STATE(1708)] = 57200, + [SMALL_STATE(1709)] = 57212, + [SMALL_STATE(1710)] = 57224, + [SMALL_STATE(1711)] = 57236, + [SMALL_STATE(1712)] = 57248, + [SMALL_STATE(1713)] = 57260, + [SMALL_STATE(1714)] = 57278, + [SMALL_STATE(1715)] = 57290, + [SMALL_STATE(1716)] = 57302, + [SMALL_STATE(1717)] = 57314, + [SMALL_STATE(1718)] = 57326, + [SMALL_STATE(1719)] = 57346, + [SMALL_STATE(1720)] = 57364, + [SMALL_STATE(1721)] = 57376, + [SMALL_STATE(1722)] = 57392, + [SMALL_STATE(1723)] = 57404, + [SMALL_STATE(1724)] = 57418, + [SMALL_STATE(1725)] = 57430, + [SMALL_STATE(1726)] = 57446, + [SMALL_STATE(1727)] = 57466, + [SMALL_STATE(1728)] = 57486, + [SMALL_STATE(1729)] = 57504, + [SMALL_STATE(1730)] = 57520, + [SMALL_STATE(1731)] = 57536, + [SMALL_STATE(1732)] = 57556, + [SMALL_STATE(1733)] = 57574, + [SMALL_STATE(1734)] = 57590, + [SMALL_STATE(1735)] = 57602, + [SMALL_STATE(1736)] = 57614, + [SMALL_STATE(1737)] = 57626, + [SMALL_STATE(1738)] = 57642, + [SMALL_STATE(1739)] = 57660, + [SMALL_STATE(1740)] = 57678, + [SMALL_STATE(1741)] = 57696, + [SMALL_STATE(1742)] = 57712, + [SMALL_STATE(1743)] = 57726, + [SMALL_STATE(1744)] = 57742, + [SMALL_STATE(1745)] = 57756, + [SMALL_STATE(1746)] = 57772, + [SMALL_STATE(1747)] = 57784, + [SMALL_STATE(1748)] = 57796, + [SMALL_STATE(1749)] = 57814, + [SMALL_STATE(1750)] = 57826, + [SMALL_STATE(1751)] = 57838, + [SMALL_STATE(1752)] = 57853, + [SMALL_STATE(1753)] = 57870, + [SMALL_STATE(1754)] = 57887, + [SMALL_STATE(1755)] = 57904, + [SMALL_STATE(1756)] = 57921, + [SMALL_STATE(1757)] = 57938, + [SMALL_STATE(1758)] = 57955, + [SMALL_STATE(1759)] = 57970, + [SMALL_STATE(1760)] = 57987, + [SMALL_STATE(1761)] = 58002, + [SMALL_STATE(1762)] = 58019, + [SMALL_STATE(1763)] = 58036, + [SMALL_STATE(1764)] = 58053, + [SMALL_STATE(1765)] = 58070, + [SMALL_STATE(1766)] = 58087, + [SMALL_STATE(1767)] = 58104, + [SMALL_STATE(1768)] = 58119, + [SMALL_STATE(1769)] = 58136, + [SMALL_STATE(1770)] = 58153, + [SMALL_STATE(1771)] = 58170, + [SMALL_STATE(1772)] = 58183, + [SMALL_STATE(1773)] = 58200, + [SMALL_STATE(1774)] = 58217, + [SMALL_STATE(1775)] = 58234, + [SMALL_STATE(1776)] = 58247, + [SMALL_STATE(1777)] = 58264, + [SMALL_STATE(1778)] = 58281, + [SMALL_STATE(1779)] = 58298, + [SMALL_STATE(1780)] = 58315, + [SMALL_STATE(1781)] = 58332, + [SMALL_STATE(1782)] = 58349, + [SMALL_STATE(1783)] = 58366, + [SMALL_STATE(1784)] = 58383, + [SMALL_STATE(1785)] = 58400, + [SMALL_STATE(1786)] = 58417, + [SMALL_STATE(1787)] = 58434, + [SMALL_STATE(1788)] = 58451, + [SMALL_STATE(1789)] = 58464, + [SMALL_STATE(1790)] = 58481, + [SMALL_STATE(1791)] = 58498, + [SMALL_STATE(1792)] = 58515, + [SMALL_STATE(1793)] = 58530, + [SMALL_STATE(1794)] = 58547, + [SMALL_STATE(1795)] = 58564, + [SMALL_STATE(1796)] = 58581, + [SMALL_STATE(1797)] = 58598, + [SMALL_STATE(1798)] = 58615, + [SMALL_STATE(1799)] = 58632, + [SMALL_STATE(1800)] = 58647, + [SMALL_STATE(1801)] = 58662, + [SMALL_STATE(1802)] = 58679, + [SMALL_STATE(1803)] = 58694, + [SMALL_STATE(1804)] = 58711, + [SMALL_STATE(1805)] = 58728, + [SMALL_STATE(1806)] = 58745, + [SMALL_STATE(1807)] = 58760, + [SMALL_STATE(1808)] = 58773, + [SMALL_STATE(1809)] = 58790, + [SMALL_STATE(1810)] = 58805, + [SMALL_STATE(1811)] = 58822, + [SMALL_STATE(1812)] = 58837, + [SMALL_STATE(1813)] = 58854, + [SMALL_STATE(1814)] = 58869, + [SMALL_STATE(1815)] = 58886, + [SMALL_STATE(1816)] = 58901, + [SMALL_STATE(1817)] = 58918, + [SMALL_STATE(1818)] = 58933, + [SMALL_STATE(1819)] = 58950, + [SMALL_STATE(1820)] = 58965, + [SMALL_STATE(1821)] = 58982, + [SMALL_STATE(1822)] = 58995, + [SMALL_STATE(1823)] = 59008, + [SMALL_STATE(1824)] = 59023, + [SMALL_STATE(1825)] = 59040, + [SMALL_STATE(1826)] = 59055, + [SMALL_STATE(1827)] = 59070, + [SMALL_STATE(1828)] = 59085, + [SMALL_STATE(1829)] = 59100, + [SMALL_STATE(1830)] = 59115, + [SMALL_STATE(1831)] = 59130, + [SMALL_STATE(1832)] = 59143, + [SMALL_STATE(1833)] = 59160, + [SMALL_STATE(1834)] = 59177, + [SMALL_STATE(1835)] = 59194, + [SMALL_STATE(1836)] = 59211, + [SMALL_STATE(1837)] = 59228, + [SMALL_STATE(1838)] = 59243, + [SMALL_STATE(1839)] = 59260, + [SMALL_STATE(1840)] = 59277, + [SMALL_STATE(1841)] = 59292, + [SMALL_STATE(1842)] = 59307, + [SMALL_STATE(1843)] = 59322, + [SMALL_STATE(1844)] = 59339, + [SMALL_STATE(1845)] = 59356, + [SMALL_STATE(1846)] = 59373, + [SMALL_STATE(1847)] = 59386, + [SMALL_STATE(1848)] = 59399, + [SMALL_STATE(1849)] = 59414, + [SMALL_STATE(1850)] = 59431, + [SMALL_STATE(1851)] = 59446, + [SMALL_STATE(1852)] = 59461, + [SMALL_STATE(1853)] = 59478, + [SMALL_STATE(1854)] = 59495, + [SMALL_STATE(1855)] = 59512, + [SMALL_STATE(1856)] = 59525, + [SMALL_STATE(1857)] = 59539, + [SMALL_STATE(1858)] = 59553, + [SMALL_STATE(1859)] = 59563, + [SMALL_STATE(1860)] = 59577, + [SMALL_STATE(1861)] = 59591, + [SMALL_STATE(1862)] = 59605, + [SMALL_STATE(1863)] = 59619, + [SMALL_STATE(1864)] = 59633, + [SMALL_STATE(1865)] = 59647, + [SMALL_STATE(1866)] = 59661, + [SMALL_STATE(1867)] = 59675, + [SMALL_STATE(1868)] = 59689, + [SMALL_STATE(1869)] = 59703, + [SMALL_STATE(1870)] = 59717, + [SMALL_STATE(1871)] = 59731, + [SMALL_STATE(1872)] = 59743, + [SMALL_STATE(1873)] = 59757, + [SMALL_STATE(1874)] = 59769, + [SMALL_STATE(1875)] = 59783, + [SMALL_STATE(1876)] = 59793, + [SMALL_STATE(1877)] = 59805, + [SMALL_STATE(1878)] = 59819, + [SMALL_STATE(1879)] = 59829, + [SMALL_STATE(1880)] = 59841, + [SMALL_STATE(1881)] = 59855, + [SMALL_STATE(1882)] = 59865, + [SMALL_STATE(1883)] = 59879, + [SMALL_STATE(1884)] = 59893, + [SMALL_STATE(1885)] = 59907, + [SMALL_STATE(1886)] = 59921, + [SMALL_STATE(1887)] = 59935, + [SMALL_STATE(1888)] = 59949, + [SMALL_STATE(1889)] = 59963, + [SMALL_STATE(1890)] = 59973, + [SMALL_STATE(1891)] = 59987, + [SMALL_STATE(1892)] = 59999, + [SMALL_STATE(1893)] = 60013, + [SMALL_STATE(1894)] = 60027, + [SMALL_STATE(1895)] = 60037, + [SMALL_STATE(1896)] = 60047, + [SMALL_STATE(1897)] = 60061, + [SMALL_STATE(1898)] = 60075, + [SMALL_STATE(1899)] = 60085, + [SMALL_STATE(1900)] = 60099, + [SMALL_STATE(1901)] = 60113, + [SMALL_STATE(1902)] = 60123, + [SMALL_STATE(1903)] = 60133, + [SMALL_STATE(1904)] = 60147, + [SMALL_STATE(1905)] = 60161, + [SMALL_STATE(1906)] = 60175, + [SMALL_STATE(1907)] = 60189, + [SMALL_STATE(1908)] = 60199, + [SMALL_STATE(1909)] = 60213, + [SMALL_STATE(1910)] = 60227, + [SMALL_STATE(1911)] = 60241, + [SMALL_STATE(1912)] = 60255, + [SMALL_STATE(1913)] = 60269, + [SMALL_STATE(1914)] = 60283, + [SMALL_STATE(1915)] = 60297, + [SMALL_STATE(1916)] = 60311, + [SMALL_STATE(1917)] = 60325, + [SMALL_STATE(1918)] = 60339, + [SMALL_STATE(1919)] = 60349, + [SMALL_STATE(1920)] = 60363, + [SMALL_STATE(1921)] = 60375, + [SMALL_STATE(1922)] = 60389, + [SMALL_STATE(1923)] = 60403, + [SMALL_STATE(1924)] = 60417, + [SMALL_STATE(1925)] = 60429, + [SMALL_STATE(1926)] = 60443, + [SMALL_STATE(1927)] = 60455, + [SMALL_STATE(1928)] = 60469, + [SMALL_STATE(1929)] = 60483, + [SMALL_STATE(1930)] = 60497, + [SMALL_STATE(1931)] = 60511, + [SMALL_STATE(1932)] = 60525, + [SMALL_STATE(1933)] = 60535, + [SMALL_STATE(1934)] = 60549, + [SMALL_STATE(1935)] = 60563, + [SMALL_STATE(1936)] = 60575, + [SMALL_STATE(1937)] = 60589, + [SMALL_STATE(1938)] = 60603, + [SMALL_STATE(1939)] = 60617, + [SMALL_STATE(1940)] = 60631, + [SMALL_STATE(1941)] = 60645, + [SMALL_STATE(1942)] = 60659, + [SMALL_STATE(1943)] = 60673, + [SMALL_STATE(1944)] = 60685, + [SMALL_STATE(1945)] = 60699, + [SMALL_STATE(1946)] = 60709, + [SMALL_STATE(1947)] = 60721, + [SMALL_STATE(1948)] = 60731, + [SMALL_STATE(1949)] = 60745, + [SMALL_STATE(1950)] = 60759, + [SMALL_STATE(1951)] = 60773, + [SMALL_STATE(1952)] = 60787, + [SMALL_STATE(1953)] = 60801, + [SMALL_STATE(1954)] = 60815, + [SMALL_STATE(1955)] = 60829, + [SMALL_STATE(1956)] = 60843, + [SMALL_STATE(1957)] = 60855, + [SMALL_STATE(1958)] = 60869, + [SMALL_STATE(1959)] = 60883, + [SMALL_STATE(1960)] = 60893, + [SMALL_STATE(1961)] = 60907, + [SMALL_STATE(1962)] = 60921, + [SMALL_STATE(1963)] = 60935, + [SMALL_STATE(1964)] = 60949, + [SMALL_STATE(1965)] = 60959, + [SMALL_STATE(1966)] = 60971, + [SMALL_STATE(1967)] = 60981, + [SMALL_STATE(1968)] = 60991, + [SMALL_STATE(1969)] = 61005, + [SMALL_STATE(1970)] = 61015, + [SMALL_STATE(1971)] = 61025, + [SMALL_STATE(1972)] = 61039, + [SMALL_STATE(1973)] = 61053, + [SMALL_STATE(1974)] = 61065, + [SMALL_STATE(1975)] = 61079, + [SMALL_STATE(1976)] = 61093, + [SMALL_STATE(1977)] = 61103, + [SMALL_STATE(1978)] = 61115, + [SMALL_STATE(1979)] = 61127, + [SMALL_STATE(1980)] = 61141, + [SMALL_STATE(1981)] = 61153, + [SMALL_STATE(1982)] = 61167, + [SMALL_STATE(1983)] = 61181, + [SMALL_STATE(1984)] = 61195, + [SMALL_STATE(1985)] = 61209, + [SMALL_STATE(1986)] = 61223, + [SMALL_STATE(1987)] = 61237, + [SMALL_STATE(1988)] = 61251, + [SMALL_STATE(1989)] = 61263, + [SMALL_STATE(1990)] = 61275, + [SMALL_STATE(1991)] = 61287, + [SMALL_STATE(1992)] = 61301, + [SMALL_STATE(1993)] = 61315, + [SMALL_STATE(1994)] = 61329, + [SMALL_STATE(1995)] = 61343, + [SMALL_STATE(1996)] = 61357, + [SMALL_STATE(1997)] = 61371, + [SMALL_STATE(1998)] = 61385, + [SMALL_STATE(1999)] = 61399, + [SMALL_STATE(2000)] = 61413, + [SMALL_STATE(2001)] = 61427, + [SMALL_STATE(2002)] = 61439, + [SMALL_STATE(2003)] = 61451, + [SMALL_STATE(2004)] = 61465, + [SMALL_STATE(2005)] = 61477, + [SMALL_STATE(2006)] = 61491, + [SMALL_STATE(2007)] = 61505, + [SMALL_STATE(2008)] = 61519, + [SMALL_STATE(2009)] = 61533, + [SMALL_STATE(2010)] = 61547, + [SMALL_STATE(2011)] = 61561, + [SMALL_STATE(2012)] = 61575, + [SMALL_STATE(2013)] = 61585, + [SMALL_STATE(2014)] = 61599, + [SMALL_STATE(2015)] = 61611, + [SMALL_STATE(2016)] = 61625, + [SMALL_STATE(2017)] = 61639, + [SMALL_STATE(2018)] = 61653, + [SMALL_STATE(2019)] = 61667, + [SMALL_STATE(2020)] = 61681, + [SMALL_STATE(2021)] = 61695, + [SMALL_STATE(2022)] = 61709, + [SMALL_STATE(2023)] = 61723, + [SMALL_STATE(2024)] = 61735, + [SMALL_STATE(2025)] = 61749, + [SMALL_STATE(2026)] = 61761, + [SMALL_STATE(2027)] = 61775, + [SMALL_STATE(2028)] = 61789, + [SMALL_STATE(2029)] = 61803, + [SMALL_STATE(2030)] = 61817, + [SMALL_STATE(2031)] = 61831, + [SMALL_STATE(2032)] = 61845, + [SMALL_STATE(2033)] = 61859, + [SMALL_STATE(2034)] = 61873, + [SMALL_STATE(2035)] = 61887, + [SMALL_STATE(2036)] = 61901, + [SMALL_STATE(2037)] = 61915, + [SMALL_STATE(2038)] = 61929, + [SMALL_STATE(2039)] = 61943, + [SMALL_STATE(2040)] = 61957, + [SMALL_STATE(2041)] = 61967, + [SMALL_STATE(2042)] = 61981, + [SMALL_STATE(2043)] = 61995, + [SMALL_STATE(2044)] = 62007, + [SMALL_STATE(2045)] = 62021, + [SMALL_STATE(2046)] = 62035, + [SMALL_STATE(2047)] = 62049, + [SMALL_STATE(2048)] = 62063, + [SMALL_STATE(2049)] = 62077, + [SMALL_STATE(2050)] = 62091, + [SMALL_STATE(2051)] = 62105, + [SMALL_STATE(2052)] = 62119, + [SMALL_STATE(2053)] = 62133, + [SMALL_STATE(2054)] = 62147, + [SMALL_STATE(2055)] = 62159, + [SMALL_STATE(2056)] = 62173, + [SMALL_STATE(2057)] = 62187, + [SMALL_STATE(2058)] = 62201, + [SMALL_STATE(2059)] = 62213, + [SMALL_STATE(2060)] = 62227, + [SMALL_STATE(2061)] = 62239, + [SMALL_STATE(2062)] = 62253, + [SMALL_STATE(2063)] = 62267, + [SMALL_STATE(2064)] = 62281, + [SMALL_STATE(2065)] = 62293, + [SMALL_STATE(2066)] = 62307, + [SMALL_STATE(2067)] = 62319, + [SMALL_STATE(2068)] = 62333, + [SMALL_STATE(2069)] = 62347, + [SMALL_STATE(2070)] = 62359, + [SMALL_STATE(2071)] = 62373, + [SMALL_STATE(2072)] = 62385, + [SMALL_STATE(2073)] = 62399, + [SMALL_STATE(2074)] = 62413, + [SMALL_STATE(2075)] = 62427, + [SMALL_STATE(2076)] = 62441, + [SMALL_STATE(2077)] = 62455, + [SMALL_STATE(2078)] = 62469, + [SMALL_STATE(2079)] = 62483, + [SMALL_STATE(2080)] = 62497, + [SMALL_STATE(2081)] = 62511, + [SMALL_STATE(2082)] = 62525, + [SMALL_STATE(2083)] = 62539, + [SMALL_STATE(2084)] = 62553, + [SMALL_STATE(2085)] = 62567, + [SMALL_STATE(2086)] = 62577, + [SMALL_STATE(2087)] = 62591, + [SMALL_STATE(2088)] = 62605, + [SMALL_STATE(2089)] = 62615, + [SMALL_STATE(2090)] = 62629, + [SMALL_STATE(2091)] = 62639, + [SMALL_STATE(2092)] = 62653, + [SMALL_STATE(2093)] = 62667, + [SMALL_STATE(2094)] = 62677, + [SMALL_STATE(2095)] = 62691, + [SMALL_STATE(2096)] = 62705, + [SMALL_STATE(2097)] = 62719, + [SMALL_STATE(2098)] = 62733, + [SMALL_STATE(2099)] = 62747, + [SMALL_STATE(2100)] = 62761, + [SMALL_STATE(2101)] = 62771, + [SMALL_STATE(2102)] = 62785, + [SMALL_STATE(2103)] = 62799, + [SMALL_STATE(2104)] = 62813, + [SMALL_STATE(2105)] = 62827, + [SMALL_STATE(2106)] = 62841, + [SMALL_STATE(2107)] = 62855, + [SMALL_STATE(2108)] = 62869, + [SMALL_STATE(2109)] = 62883, + [SMALL_STATE(2110)] = 62897, + [SMALL_STATE(2111)] = 62911, + [SMALL_STATE(2112)] = 62925, + [SMALL_STATE(2113)] = 62939, + [SMALL_STATE(2114)] = 62953, + [SMALL_STATE(2115)] = 62967, + [SMALL_STATE(2116)] = 62981, + [SMALL_STATE(2117)] = 62995, + [SMALL_STATE(2118)] = 63009, + [SMALL_STATE(2119)] = 63021, + [SMALL_STATE(2120)] = 63032, + [SMALL_STATE(2121)] = 63043, + [SMALL_STATE(2122)] = 63052, + [SMALL_STATE(2123)] = 63063, + [SMALL_STATE(2124)] = 63074, + [SMALL_STATE(2125)] = 63085, + [SMALL_STATE(2126)] = 63096, + [SMALL_STATE(2127)] = 63107, + [SMALL_STATE(2128)] = 63118, + [SMALL_STATE(2129)] = 63129, + [SMALL_STATE(2130)] = 63140, + [SMALL_STATE(2131)] = 63151, + [SMALL_STATE(2132)] = 63162, + [SMALL_STATE(2133)] = 63173, + [SMALL_STATE(2134)] = 63184, + [SMALL_STATE(2135)] = 63195, + [SMALL_STATE(2136)] = 63206, + [SMALL_STATE(2137)] = 63215, + [SMALL_STATE(2138)] = 63226, + [SMALL_STATE(2139)] = 63237, + [SMALL_STATE(2140)] = 63248, + [SMALL_STATE(2141)] = 63259, + [SMALL_STATE(2142)] = 63268, + [SMALL_STATE(2143)] = 63279, + [SMALL_STATE(2144)] = 63290, + [SMALL_STATE(2145)] = 63301, + [SMALL_STATE(2146)] = 63312, + [SMALL_STATE(2147)] = 63323, + [SMALL_STATE(2148)] = 63334, + [SMALL_STATE(2149)] = 63345, + [SMALL_STATE(2150)] = 63356, + [SMALL_STATE(2151)] = 63367, + [SMALL_STATE(2152)] = 63378, + [SMALL_STATE(2153)] = 63389, + [SMALL_STATE(2154)] = 63400, + [SMALL_STATE(2155)] = 63411, + [SMALL_STATE(2156)] = 63420, + [SMALL_STATE(2157)] = 63431, + [SMALL_STATE(2158)] = 63442, + [SMALL_STATE(2159)] = 63453, + [SMALL_STATE(2160)] = 63464, + [SMALL_STATE(2161)] = 63475, + [SMALL_STATE(2162)] = 63486, + [SMALL_STATE(2163)] = 63497, + [SMALL_STATE(2164)] = 63508, + [SMALL_STATE(2165)] = 63519, + [SMALL_STATE(2166)] = 63530, + [SMALL_STATE(2167)] = 63539, + [SMALL_STATE(2168)] = 63548, + [SMALL_STATE(2169)] = 63559, + [SMALL_STATE(2170)] = 63568, + [SMALL_STATE(2171)] = 63579, + [SMALL_STATE(2172)] = 63590, + [SMALL_STATE(2173)] = 63601, + [SMALL_STATE(2174)] = 63612, + [SMALL_STATE(2175)] = 63623, + [SMALL_STATE(2176)] = 63632, + [SMALL_STATE(2177)] = 63643, + [SMALL_STATE(2178)] = 63654, + [SMALL_STATE(2179)] = 63665, + [SMALL_STATE(2180)] = 63674, + [SMALL_STATE(2181)] = 63685, + [SMALL_STATE(2182)] = 63696, + [SMALL_STATE(2183)] = 63707, + [SMALL_STATE(2184)] = 63718, + [SMALL_STATE(2185)] = 63727, + [SMALL_STATE(2186)] = 63738, + [SMALL_STATE(2187)] = 63749, + [SMALL_STATE(2188)] = 63760, + [SMALL_STATE(2189)] = 63771, + [SMALL_STATE(2190)] = 63782, + [SMALL_STATE(2191)] = 63791, + [SMALL_STATE(2192)] = 63800, + [SMALL_STATE(2193)] = 63811, + [SMALL_STATE(2194)] = 63822, + [SMALL_STATE(2195)] = 63831, + [SMALL_STATE(2196)] = 63842, + [SMALL_STATE(2197)] = 63851, + [SMALL_STATE(2198)] = 63860, + [SMALL_STATE(2199)] = 63871, + [SMALL_STATE(2200)] = 63882, + [SMALL_STATE(2201)] = 63891, + [SMALL_STATE(2202)] = 63902, + [SMALL_STATE(2203)] = 63913, + [SMALL_STATE(2204)] = 63924, + [SMALL_STATE(2205)] = 63935, + [SMALL_STATE(2206)] = 63946, + [SMALL_STATE(2207)] = 63957, + [SMALL_STATE(2208)] = 63968, + [SMALL_STATE(2209)] = 63979, + [SMALL_STATE(2210)] = 63990, + [SMALL_STATE(2211)] = 64001, + [SMALL_STATE(2212)] = 64012, + [SMALL_STATE(2213)] = 64023, + [SMALL_STATE(2214)] = 64032, + [SMALL_STATE(2215)] = 64043, + [SMALL_STATE(2216)] = 64054, + [SMALL_STATE(2217)] = 64065, + [SMALL_STATE(2218)] = 64076, + [SMALL_STATE(2219)] = 64085, + [SMALL_STATE(2220)] = 64096, + [SMALL_STATE(2221)] = 64107, + [SMALL_STATE(2222)] = 64118, + [SMALL_STATE(2223)] = 64129, + [SMALL_STATE(2224)] = 64140, + [SMALL_STATE(2225)] = 64151, + [SMALL_STATE(2226)] = 64162, + [SMALL_STATE(2227)] = 64173, + [SMALL_STATE(2228)] = 64184, + [SMALL_STATE(2229)] = 64195, + [SMALL_STATE(2230)] = 64206, + [SMALL_STATE(2231)] = 64217, + [SMALL_STATE(2232)] = 64228, + [SMALL_STATE(2233)] = 64239, + [SMALL_STATE(2234)] = 64250, + [SMALL_STATE(2235)] = 64261, + [SMALL_STATE(2236)] = 64272, + [SMALL_STATE(2237)] = 64283, + [SMALL_STATE(2238)] = 64294, + [SMALL_STATE(2239)] = 64305, + [SMALL_STATE(2240)] = 64316, + [SMALL_STATE(2241)] = 64327, + [SMALL_STATE(2242)] = 64338, + [SMALL_STATE(2243)] = 64349, + [SMALL_STATE(2244)] = 64360, + [SMALL_STATE(2245)] = 64371, + [SMALL_STATE(2246)] = 64382, + [SMALL_STATE(2247)] = 64393, + [SMALL_STATE(2248)] = 64402, + [SMALL_STATE(2249)] = 64411, + [SMALL_STATE(2250)] = 64422, + [SMALL_STATE(2251)] = 64433, + [SMALL_STATE(2252)] = 64444, + [SMALL_STATE(2253)] = 64455, + [SMALL_STATE(2254)] = 64466, + [SMALL_STATE(2255)] = 64477, + [SMALL_STATE(2256)] = 64488, + [SMALL_STATE(2257)] = 64499, + [SMALL_STATE(2258)] = 64510, + [SMALL_STATE(2259)] = 64521, + [SMALL_STATE(2260)] = 64532, + [SMALL_STATE(2261)] = 64543, + [SMALL_STATE(2262)] = 64554, + [SMALL_STATE(2263)] = 64563, + [SMALL_STATE(2264)] = 64574, + [SMALL_STATE(2265)] = 64585, + [SMALL_STATE(2266)] = 64596, + [SMALL_STATE(2267)] = 64607, + [SMALL_STATE(2268)] = 64618, + [SMALL_STATE(2269)] = 64629, + [SMALL_STATE(2270)] = 64640, + [SMALL_STATE(2271)] = 64651, + [SMALL_STATE(2272)] = 64662, + [SMALL_STATE(2273)] = 64673, + [SMALL_STATE(2274)] = 64684, + [SMALL_STATE(2275)] = 64693, + [SMALL_STATE(2276)] = 64702, + [SMALL_STATE(2277)] = 64711, + [SMALL_STATE(2278)] = 64720, + [SMALL_STATE(2279)] = 64731, + [SMALL_STATE(2280)] = 64742, + [SMALL_STATE(2281)] = 64753, + [SMALL_STATE(2282)] = 64764, + [SMALL_STATE(2283)] = 64775, + [SMALL_STATE(2284)] = 64786, + [SMALL_STATE(2285)] = 64795, + [SMALL_STATE(2286)] = 64806, + [SMALL_STATE(2287)] = 64815, + [SMALL_STATE(2288)] = 64826, + [SMALL_STATE(2289)] = 64837, + [SMALL_STATE(2290)] = 64848, + [SMALL_STATE(2291)] = 64859, + [SMALL_STATE(2292)] = 64870, + [SMALL_STATE(2293)] = 64881, + [SMALL_STATE(2294)] = 64892, + [SMALL_STATE(2295)] = 64903, + [SMALL_STATE(2296)] = 64914, + [SMALL_STATE(2297)] = 64925, + [SMALL_STATE(2298)] = 64936, + [SMALL_STATE(2299)] = 64947, + [SMALL_STATE(2300)] = 64958, + [SMALL_STATE(2301)] = 64969, + [SMALL_STATE(2302)] = 64978, + [SMALL_STATE(2303)] = 64989, + [SMALL_STATE(2304)] = 65000, + [SMALL_STATE(2305)] = 65011, + [SMALL_STATE(2306)] = 65022, + [SMALL_STATE(2307)] = 65031, + [SMALL_STATE(2308)] = 65042, + [SMALL_STATE(2309)] = 65053, + [SMALL_STATE(2310)] = 65062, + [SMALL_STATE(2311)] = 65071, + [SMALL_STATE(2312)] = 65082, + [SMALL_STATE(2313)] = 65090, + [SMALL_STATE(2314)] = 65098, + [SMALL_STATE(2315)] = 65106, + [SMALL_STATE(2316)] = 65114, + [SMALL_STATE(2317)] = 65122, + [SMALL_STATE(2318)] = 65130, + [SMALL_STATE(2319)] = 65138, + [SMALL_STATE(2320)] = 65146, + [SMALL_STATE(2321)] = 65154, + [SMALL_STATE(2322)] = 65162, + [SMALL_STATE(2323)] = 65170, + [SMALL_STATE(2324)] = 65178, + [SMALL_STATE(2325)] = 65186, + [SMALL_STATE(2326)] = 65194, + [SMALL_STATE(2327)] = 65202, + [SMALL_STATE(2328)] = 65210, + [SMALL_STATE(2329)] = 65218, + [SMALL_STATE(2330)] = 65226, + [SMALL_STATE(2331)] = 65234, + [SMALL_STATE(2332)] = 65242, + [SMALL_STATE(2333)] = 65250, + [SMALL_STATE(2334)] = 65258, + [SMALL_STATE(2335)] = 65266, + [SMALL_STATE(2336)] = 65274, + [SMALL_STATE(2337)] = 65282, + [SMALL_STATE(2338)] = 65290, + [SMALL_STATE(2339)] = 65298, + [SMALL_STATE(2340)] = 65306, + [SMALL_STATE(2341)] = 65314, + [SMALL_STATE(2342)] = 65322, + [SMALL_STATE(2343)] = 65330, + [SMALL_STATE(2344)] = 65338, + [SMALL_STATE(2345)] = 65346, + [SMALL_STATE(2346)] = 65354, + [SMALL_STATE(2347)] = 65362, + [SMALL_STATE(2348)] = 65370, + [SMALL_STATE(2349)] = 65378, + [SMALL_STATE(2350)] = 65386, + [SMALL_STATE(2351)] = 65394, + [SMALL_STATE(2352)] = 65402, + [SMALL_STATE(2353)] = 65410, + [SMALL_STATE(2354)] = 65418, + [SMALL_STATE(2355)] = 65426, + [SMALL_STATE(2356)] = 65434, + [SMALL_STATE(2357)] = 65442, + [SMALL_STATE(2358)] = 65450, + [SMALL_STATE(2359)] = 65458, + [SMALL_STATE(2360)] = 65466, + [SMALL_STATE(2361)] = 65474, + [SMALL_STATE(2362)] = 65482, + [SMALL_STATE(2363)] = 65490, + [SMALL_STATE(2364)] = 65498, + [SMALL_STATE(2365)] = 65506, + [SMALL_STATE(2366)] = 65514, + [SMALL_STATE(2367)] = 65522, + [SMALL_STATE(2368)] = 65530, + [SMALL_STATE(2369)] = 65538, + [SMALL_STATE(2370)] = 65546, + [SMALL_STATE(2371)] = 65554, + [SMALL_STATE(2372)] = 65562, + [SMALL_STATE(2373)] = 65570, + [SMALL_STATE(2374)] = 65578, + [SMALL_STATE(2375)] = 65586, + [SMALL_STATE(2376)] = 65594, + [SMALL_STATE(2377)] = 65602, + [SMALL_STATE(2378)] = 65610, + [SMALL_STATE(2379)] = 65618, + [SMALL_STATE(2380)] = 65626, + [SMALL_STATE(2381)] = 65634, + [SMALL_STATE(2382)] = 65642, + [SMALL_STATE(2383)] = 65650, + [SMALL_STATE(2384)] = 65658, + [SMALL_STATE(2385)] = 65666, + [SMALL_STATE(2386)] = 65674, + [SMALL_STATE(2387)] = 65682, + [SMALL_STATE(2388)] = 65690, + [SMALL_STATE(2389)] = 65698, + [SMALL_STATE(2390)] = 65706, + [SMALL_STATE(2391)] = 65714, + [SMALL_STATE(2392)] = 65722, + [SMALL_STATE(2393)] = 65730, + [SMALL_STATE(2394)] = 65738, + [SMALL_STATE(2395)] = 65746, + [SMALL_STATE(2396)] = 65754, + [SMALL_STATE(2397)] = 65762, + [SMALL_STATE(2398)] = 65770, + [SMALL_STATE(2399)] = 65778, + [SMALL_STATE(2400)] = 65786, + [SMALL_STATE(2401)] = 65794, + [SMALL_STATE(2402)] = 65802, + [SMALL_STATE(2403)] = 65810, + [SMALL_STATE(2404)] = 65818, + [SMALL_STATE(2405)] = 65826, + [SMALL_STATE(2406)] = 65834, + [SMALL_STATE(2407)] = 65842, + [SMALL_STATE(2408)] = 65850, + [SMALL_STATE(2409)] = 65858, + [SMALL_STATE(2410)] = 65866, + [SMALL_STATE(2411)] = 65874, + [SMALL_STATE(2412)] = 65882, + [SMALL_STATE(2413)] = 65890, + [SMALL_STATE(2414)] = 65898, + [SMALL_STATE(2415)] = 65906, + [SMALL_STATE(2416)] = 65914, + [SMALL_STATE(2417)] = 65922, + [SMALL_STATE(2418)] = 65930, + [SMALL_STATE(2419)] = 65938, + [SMALL_STATE(2420)] = 65946, + [SMALL_STATE(2421)] = 65954, + [SMALL_STATE(2422)] = 65962, + [SMALL_STATE(2423)] = 65970, + [SMALL_STATE(2424)] = 65978, + [SMALL_STATE(2425)] = 65986, + [SMALL_STATE(2426)] = 65994, + [SMALL_STATE(2427)] = 66002, + [SMALL_STATE(2428)] = 66010, + [SMALL_STATE(2429)] = 66018, + [SMALL_STATE(2430)] = 66026, + [SMALL_STATE(2431)] = 66034, + [SMALL_STATE(2432)] = 66042, + [SMALL_STATE(2433)] = 66050, + [SMALL_STATE(2434)] = 66058, + [SMALL_STATE(2435)] = 66066, + [SMALL_STATE(2436)] = 66074, + [SMALL_STATE(2437)] = 66082, + [SMALL_STATE(2438)] = 66090, + [SMALL_STATE(2439)] = 66098, + [SMALL_STATE(2440)] = 66106, + [SMALL_STATE(2441)] = 66114, + [SMALL_STATE(2442)] = 66122, + [SMALL_STATE(2443)] = 66130, + [SMALL_STATE(2444)] = 66138, + [SMALL_STATE(2445)] = 66146, + [SMALL_STATE(2446)] = 66154, + [SMALL_STATE(2447)] = 66162, + [SMALL_STATE(2448)] = 66170, + [SMALL_STATE(2449)] = 66178, + [SMALL_STATE(2450)] = 66186, + [SMALL_STATE(2451)] = 66194, + [SMALL_STATE(2452)] = 66202, + [SMALL_STATE(2453)] = 66210, + [SMALL_STATE(2454)] = 66218, + [SMALL_STATE(2455)] = 66226, + [SMALL_STATE(2456)] = 66234, + [SMALL_STATE(2457)] = 66242, + [SMALL_STATE(2458)] = 66250, + [SMALL_STATE(2459)] = 66258, + [SMALL_STATE(2460)] = 66266, + [SMALL_STATE(2461)] = 66274, + [SMALL_STATE(2462)] = 66282, + [SMALL_STATE(2463)] = 66290, + [SMALL_STATE(2464)] = 66298, + [SMALL_STATE(2465)] = 66306, + [SMALL_STATE(2466)] = 66314, + [SMALL_STATE(2467)] = 66322, + [SMALL_STATE(2468)] = 66330, + [SMALL_STATE(2469)] = 66338, + [SMALL_STATE(2470)] = 66346, + [SMALL_STATE(2471)] = 66354, + [SMALL_STATE(2472)] = 66362, + [SMALL_STATE(2473)] = 66370, + [SMALL_STATE(2474)] = 66378, + [SMALL_STATE(2475)] = 66386, + [SMALL_STATE(2476)] = 66394, + [SMALL_STATE(2477)] = 66402, + [SMALL_STATE(2478)] = 66410, + [SMALL_STATE(2479)] = 66418, + [SMALL_STATE(2480)] = 66426, + [SMALL_STATE(2481)] = 66434, + [SMALL_STATE(2482)] = 66442, + [SMALL_STATE(2483)] = 66450, + [SMALL_STATE(2484)] = 66458, + [SMALL_STATE(2485)] = 66466, + [SMALL_STATE(2486)] = 66474, + [SMALL_STATE(2487)] = 66482, + [SMALL_STATE(2488)] = 66490, + [SMALL_STATE(2489)] = 66498, + [SMALL_STATE(2490)] = 66506, + [SMALL_STATE(2491)] = 66514, + [SMALL_STATE(2492)] = 66522, + [SMALL_STATE(2493)] = 66530, + [SMALL_STATE(2494)] = 66538, + [SMALL_STATE(2495)] = 66546, + [SMALL_STATE(2496)] = 66554, + [SMALL_STATE(2497)] = 66562, + [SMALL_STATE(2498)] = 66570, + [SMALL_STATE(2499)] = 66578, + [SMALL_STATE(2500)] = 66586, + [SMALL_STATE(2501)] = 66594, + [SMALL_STATE(2502)] = 66602, + [SMALL_STATE(2503)] = 66610, + [SMALL_STATE(2504)] = 66618, + [SMALL_STATE(2505)] = 66626, + [SMALL_STATE(2506)] = 66634, + [SMALL_STATE(2507)] = 66642, + [SMALL_STATE(2508)] = 66650, + [SMALL_STATE(2509)] = 66658, + [SMALL_STATE(2510)] = 66666, + [SMALL_STATE(2511)] = 66674, + [SMALL_STATE(2512)] = 66682, + [SMALL_STATE(2513)] = 66690, + [SMALL_STATE(2514)] = 66698, + [SMALL_STATE(2515)] = 66706, + [SMALL_STATE(2516)] = 66714, + [SMALL_STATE(2517)] = 66722, + [SMALL_STATE(2518)] = 66730, + [SMALL_STATE(2519)] = 66738, + [SMALL_STATE(2520)] = 66746, + [SMALL_STATE(2521)] = 66754, + [SMALL_STATE(2522)] = 66762, + [SMALL_STATE(2523)] = 66770, + [SMALL_STATE(2524)] = 66778, + [SMALL_STATE(2525)] = 66786, + [SMALL_STATE(2526)] = 66794, + [SMALL_STATE(2527)] = 66802, + [SMALL_STATE(2528)] = 66810, + [SMALL_STATE(2529)] = 66818, + [SMALL_STATE(2530)] = 66826, + [SMALL_STATE(2531)] = 66834, + [SMALL_STATE(2532)] = 66842, + [SMALL_STATE(2533)] = 66850, + [SMALL_STATE(2534)] = 66858, + [SMALL_STATE(2535)] = 66866, + [SMALL_STATE(2536)] = 66874, + [SMALL_STATE(2537)] = 66882, + [SMALL_STATE(2538)] = 66890, + [SMALL_STATE(2539)] = 66898, + [SMALL_STATE(2540)] = 66906, + [SMALL_STATE(2541)] = 66914, + [SMALL_STATE(2542)] = 66922, + [SMALL_STATE(2543)] = 66930, + [SMALL_STATE(2544)] = 66938, + [SMALL_STATE(2545)] = 66946, + [SMALL_STATE(2546)] = 66954, + [SMALL_STATE(2547)] = 66962, + [SMALL_STATE(2548)] = 66970, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -131178,2733 +127990,2717 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1160), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(327), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2102), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(36), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(7), - [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(34), - [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(182), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1060), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2581), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1530), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1524), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(793), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(789), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2578), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2166), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(616), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(53), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(648), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(627), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2168), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(160), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2574), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1370), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2063), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2561), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2515), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2512), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1186), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1508), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1334), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(55), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2240), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1490), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(646), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2502), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(69), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(574), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2242), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1085), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1821), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1065), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1070), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2498), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1376), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1070), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1153), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(439), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1873), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(37), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), + [124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(35), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(100), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1073), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2485), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1498), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1475), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(776), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(760), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2470), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2196), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(618), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(51), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(625), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(612), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2202), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(137), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2460), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1331), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1904), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2450), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2448), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2444), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1165), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1464), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1296), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(40), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2228), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1453), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(638), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2406), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(90), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), + [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(560), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2240), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1079), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1825), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1109), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1060), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2344), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1336), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1060), + [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), + [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), + [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(783), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(36), - [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(14), - [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(34), - [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(182), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1060), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2581), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1995), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2264), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(793), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(803), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(637), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(54), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2263), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(157), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(24), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2265), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(59), - [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(646), - [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2502), - [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(69), - [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), - [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(574), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2242), - [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1085), - [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1821), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1065), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1070), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2498), - [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1070), - [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), - [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 142), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 58), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 58), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 98), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 98), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 133), - [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 133), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), - [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 218), - [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 218), - [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), - [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 235), - [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), - [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 171), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 90), - [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 90), - [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), - [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 192), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), - [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), - [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 155), - [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 155), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 112), - [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 112), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2285), - [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(832), - [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1933), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2459), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1564), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1627), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1567), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2360), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2234), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(654), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(607), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2364), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1370), - [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2054), - [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2365), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2366), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2367), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1908), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1566), - [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1338), - [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2233), - [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1475), - [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(646), - [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2473), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2374), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1379), - [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2374), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(264), - [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(503), - [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(504), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(505), - [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2439), - [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(581), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1877), - [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(580), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(570), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 182), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 182), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 181), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 201), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 201), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 225), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 225), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 177), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 177), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 227), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 223), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 223), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 176), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 228), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 228), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 175), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 184), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 184), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 222), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 222), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 174), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 108), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 108), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 172), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 187), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 223), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 223), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 188), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 188), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 230), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 230), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 189), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 231), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 231), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 146), - [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 146), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 193), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 232), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 232), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 148), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 148), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 197), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 197), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 234), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 234), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 184), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 184), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 162), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 236), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 236), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 152), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 152), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 227), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 237), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 237), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 206), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 206), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 174), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 103), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 103), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 123), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 123), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 210), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 210), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 211), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 211), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 233), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 241), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 241), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 242), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 242), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 216), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 216), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 181), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 157), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 157), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), - [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(495), - [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(540), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), - [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(539), - [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(537), - [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(495), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(606), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1864), - [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(617), - [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(497), - [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(556), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(553), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(545), - [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2549), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(581), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1877), - [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(580), - [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(497), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1346), - [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(568), - [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(567), - [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1392), - [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2259), - [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1850), - [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2476), - [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(633), - [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(646), - [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2457), - [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1470), - [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(628), - [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(625), - [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1465), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2290), - [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1431), - [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1829), - [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1398), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2153), - [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2153), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 183), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2476), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), + [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), + [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), + [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), + [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), + [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), + [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), + [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 58), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 58), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 98), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 98), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 215), + [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 215), + [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 133), + [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 133), + [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(758), + [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(37), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(3), + [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(35), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(100), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1073), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2485), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1996), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2285), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(776), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(778), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(616), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(48), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2279), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(179), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2283), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(47), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(638), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2406), + [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(90), + [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(24), + [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(560), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2240), + [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1079), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1825), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1109), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1060), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2344), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1060), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), + [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 154), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 154), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 99), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 99), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2263), + [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(932), + [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1871), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2393), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1551), + [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1557), + [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1546), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2343), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2179), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(633), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(594), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2348), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1331), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1862), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2349), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2350), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2351), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1937), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1550), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1295), + [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2178), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1431), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(638), + [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2462), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2358), + [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1338), + [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2358), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(252), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(499), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), + [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(496), + [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(494), + [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2519), + [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(582), + [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1811), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(579), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(561), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 162), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 162), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 230), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 230), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 209), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 209), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 208), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 208), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 207), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 207), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 123), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 123), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 206), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 206), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 205), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 205), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 220), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 220), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 211), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 211), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 204), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 204), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 172), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 172), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 203), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 203), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 212), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 212), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 165), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 165), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 213), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 213), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 199), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 199), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 198), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 198), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 197), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 197), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 182), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 182), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 214), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 214), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 194), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 194), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 193), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 193), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 191), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 191), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 147), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 147), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 190), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 190), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 145), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 145), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 187), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 187), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 186), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 186), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 185), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 185), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 185), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 185), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 217), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 217), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 219), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 219), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 182), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 182), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 198), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 198), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 222), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 222), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 200), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 200), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 180), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 180), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 179), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 179), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 177), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 177), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 176), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 176), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 168), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 168), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 175), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 175), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 168), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 168), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 123), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 123), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 168), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 168), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 223), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 223), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 156), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 156), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 174), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 174), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 173), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 173), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 172), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 172), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 170), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 170), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 224), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 224), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 225), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 225), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 167), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 167), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 118), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 118), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 162), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 162), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 161), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 161), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 160), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 160), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 205), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 205), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 156), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 156), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 226), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 226), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 220), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 220), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 227), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 227), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 228), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 228), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 152), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 152), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 151), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 151), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 109), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 109), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 145), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 145), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 143), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 143), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 104), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 104), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 212), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 212), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 230), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 230), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 231), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 231), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 232), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 232), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 224), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 224), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 233), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 233), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 234), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 234), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 235), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 235), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 210), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 210), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 236), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 236), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 121), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 121), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 121), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 121), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 237), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 237), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 121), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 121), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 234), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 234), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 238), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 238), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 117), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 117), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 99), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 99), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 110), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 110), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 107), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 107), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 105), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 105), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(483), + [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(505), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), + [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(506), + [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(510), + [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(483), + [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(595), + [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1800), + [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(608), + [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(485), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(536), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(503), + [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(515), + [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2513), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(582), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1811), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(579), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(485), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1307), + [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(559), + [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(555), + [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1361), + [2099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2295), + [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1751), + [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2361), + [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(615), + [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(638), + [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2533), + [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1419), + [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(614), + [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(601), + [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1446), + [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2194), + [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1381), + [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1815), + [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1350), + [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2066), + [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2066), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 181), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 181), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2361), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 107), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 107), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 195), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 195), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), - [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 134), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 134), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 155), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 155), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 155), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 112), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 112), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 112), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [2900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2523), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 110), - [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 110), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 102), - [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 102), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 99), - [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 99), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 151), - [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 151), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 145), - [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 145), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 143), - [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 143), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), - [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), - [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 127), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 173), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 124), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 135), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 155), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 112), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 185), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 186), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 219), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 124), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 31), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 3, .production_id = 31), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 156), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [3906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(498), - [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(499), - [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(500), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1572), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1582), - [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(623), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1, .production_id = 1), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [4096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 102), - [4267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1), - [4270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [4277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1404), - [4280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(195), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 198), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 158), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 158), - [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 102), - [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 224), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 224), - [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 198), - [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), - [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 125), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 111), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(634), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1188), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 1), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1881), - [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [4563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(258), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 102), - [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2174), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [4595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1671), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), - [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(200), - [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), - [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), SHIFT_REPEAT(571), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__built_in_attr_path, 1, .production_id = 1), - [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 160), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1556), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1570), - [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(42), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(181), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [4798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1560), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [4837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1336), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), - [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 141), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(690), - [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 221), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), - [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 190), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [5003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(584), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [5012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1584), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 199), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 191), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), - [5129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1203), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), - [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 80), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [5406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 81), - [5408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 2, .production_id = 81), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [5512] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 108), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 108), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [2778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2502), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 149), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 149), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 144), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 144), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 142), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 142), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 154), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 154), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 154), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 111), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 111), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 106), + [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 106), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 103), + [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 103), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 100), + [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 100), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 99), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 99), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 99), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 192), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 192), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 127), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 184), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 183), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), + [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 124), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 154), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 216), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 171), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 99), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 135), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 99), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 124), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 31), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 3, .production_id = 31), + [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [3561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1525), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1533), + [3902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(498), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(481), + [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(488), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(592), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1, .production_id = 1), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [4143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [4154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 103), + [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 195), + [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1), + [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 195), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 103), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 157), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 221), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), + [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 157), + [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 221), + [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), + [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [4319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1364), + [4322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(188), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 1), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), + [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(613), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1157), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1827), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 125), + [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 112), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__built_in_attr_path, 1, .production_id = 1), + [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [4585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1541), + [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), + [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(55), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1299), + [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [4680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1529), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 103), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 218), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [4779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(191), + [4782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(101), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), + [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 102), + [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), + [4811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1532), + [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), + [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), + [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [4842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1676), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [4849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(641), + [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 141), + [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), + [4868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1176), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [4885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(585), + [4888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(244), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [4915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2210), + [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 196), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 189), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 188), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 158), + [5016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 158), SHIFT_REPEAT(557), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 159), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [5035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1545), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditions, 1), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditions, 3), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [5230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [5262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 81), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 80), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [5298] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [5454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 2, .production_id = 81), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 155), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), }; #ifdef __cplusplus From 6216546db4e45aba63d902a497fa61fb942d2ee3 Mon Sep 17 00:00:00 2001 From: Geoffry Song Date: Wed, 17 Aug 2022 22:04:47 +0000 Subject: [PATCH 2/5] Create a separate let_chain node for &&-chains involving let_conditions --- corpus/expressions.txt | 96 +- grammar.js | 21 +- src/grammar.json | 107 +- src/node-types.json | 44 +- src/parser.c | 97504 ++++++++++++++++++++------------------- 5 files changed, 49227 insertions(+), 48545 deletions(-) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 4dab03cc..4bde5951 100644 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -484,6 +484,10 @@ fn main() { let y = if x == 5 { 10 } else { 15 }; +if foo && bar {} + +if foo && bar || baz {} + -------------------------------------------------------------------------------- (source_file @@ -515,7 +519,21 @@ let y = if x == 5 { 10 } else { 15 }; (integer_literal)) alternative: (else_clause (block - (integer_literal)))))) + (integer_literal))))) + (expression_statement + (if_expression + condition: (binary_expression + left: (identifier) + right: (identifier)) + consequence: (block))) + (expression_statement + (if_expression + condition: (binary_expression + left: (binary_expression + left: (identifier) + right: (identifier)) + right: (identifier)) + consequence: (block)))) ================================================================================ If let expressions @@ -527,6 +545,10 @@ if let ("Bacon", b) = dish { if let Some("chained") = a && b && let (C, D) = e { } +if foo && let bar = || baz && quux {} + +if a && let b = || c || d && e {} + -------------------------------------------------------------------------------- (source_file @@ -540,17 +562,44 @@ if let Some("chained") = a && b && let (C, D) = e { consequence: (block))) (expression_statement (if_expression - condition: (let_condition - pattern: (tuple_struct_pattern - type: (identifier) - (string_literal)) - value: (identifier)) - condition: (identifier) - condition: (let_condition - pattern: (tuple_pattern - (identifier) - (identifier)) - value: (identifier)) + condition: (let_chain + condition: (let_condition + pattern: (tuple_struct_pattern + type: (identifier) + (string_literal)) + value: (identifier)) + condition: (identifier) + condition: (let_condition + pattern: (tuple_pattern + (identifier) + (identifier)) + value: (identifier))) + consequence: (block))) + (expression_statement + (if_expression + condition: (let_chain + condition: (identifier) + condition: (let_condition + pattern: (identifier) + value: (closure_expression + parameters: (closure_parameters) + body: (binary_expression + left: (identifier) + right: (identifier))))) + consequence: (block))) + (expression_statement + (if_expression + condition: (let_chain + condition: (identifier) + condition: (let_condition + pattern: (identifier) + value: (closure_expression + parameters: (closure_parameters) + body: (binary_expression + left: (identifier) + right: (binary_expression + left: (identifier) + right: (identifier)))))) consequence: (block)))) ================================================================================ @@ -675,17 +724,18 @@ let msg = match x { (match_arm pattern: (match_pattern (identifier) - condition: (let_condition - pattern: (tuple_struct_pattern - type: (identifier) - (identifier)) - value: (identifier)) - condition: (identifier) - condition: (let_condition - pattern: (tuple_struct_pattern - type: (identifier) - (identifier)) - value: (identifier))) + condition: (let_chain + condition: (let_condition + pattern: (tuple_struct_pattern + type: (identifier) + (identifier)) + value: (identifier)) + condition: (identifier) + condition: (let_condition + pattern: (tuple_struct_pattern + type: (identifier) + (identifier)) + value: (identifier)))) value: (string_literal)) (match_arm pattern: (match_pattern) diff --git a/grammar.js b/grammar.js index adbbec91..c8eeb76f 100644 --- a/grammar.js +++ b/grammar.js @@ -124,6 +124,8 @@ module.exports = grammar({ [$.parameters, $._pattern], [$.parameters, $.tuple_struct_pattern], [$.type_parameters, $.for_lifetimes], + [$._condition, $.let_chain], + [$.binary_expression, $.let_chain], ], word: $ => $.identifier, @@ -1178,19 +1180,20 @@ module.exports = grammar({ field('value', prec.left(PREC.and, $._expression)) ), - _condition: $ => choice( - prec.left(PREC.and, $._expression), + let_chain: $ => sepBy1('&&', field('condition', choice( $.let_condition, - ), + prec.left(PREC.and, $._expression) + ))), - _conditions: $ => choice( - $._condition, - seq($._condition, '&&', $._conditions) + _condition: $ => choice( + prec.dynamic(1, $._expression), + prec.dynamic(1, $.let_condition), + $.let_chain ), if_expression: $ => seq( 'if', - field('condition', $._conditions), + field('condition', $._condition), field('consequence', $.block), optional(field("alternative", $.else_clause)) ), @@ -1238,13 +1241,13 @@ module.exports = grammar({ match_pattern: $ => seq( $._pattern, - optional(seq('if', field('condition', $._conditions))) + optional(seq('if', field('condition', $._condition))) ), while_expression: $ => seq( optional(seq($.loop_label, ':')), 'while', - field('condition', $._conditions), + field('condition', $._condition), field('body', $.block) ), diff --git a/src/grammar.json b/src/grammar.json index fda55e14..6a3ad84d 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -6921,46 +6921,87 @@ } ] }, - "_condition": { - "type": "CHOICE", + "let_chain": { + "type": "SEQ", "members": [ { - "type": "PREC_LEFT", - "value": 3, + "type": "FIELD", + "name": "condition", "content": { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "let_condition" + }, + { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] } }, { - "type": "SYMBOL", - "name": "let_condition" + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "&&" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "let_condition" + }, + { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + } + ] + } } ] }, - "_conditions": { + "_condition": { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_condition" + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "_expression" + } }, { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_condition" - }, - { - "type": "STRING", - "value": "&&" - }, - { - "type": "SYMBOL", - "name": "_conditions" - } - ] + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "let_condition" + } + }, + { + "type": "SYMBOL", + "name": "let_chain" } ] }, @@ -6976,7 +7017,7 @@ "name": "condition", "content": { "type": "SYMBOL", - "name": "_conditions" + "name": "_condition" } }, { @@ -7218,7 +7259,7 @@ "name": "condition", "content": { "type": "SYMBOL", - "name": "_conditions" + "name": "_condition" } } ] @@ -7263,7 +7304,7 @@ "name": "condition", "content": { "type": "SYMBOL", - "name": "_conditions" + "name": "_condition" } }, { @@ -8985,6 +9026,14 @@ [ "type_parameters", "for_lifetimes" + ], + [ + "_condition", + "let_chain" + ], + [ + "binary_expression", + "let_chain" ] ], "precedences": [], diff --git a/src/node-types.json b/src/node-types.json index f430212d..c5a44586 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2269,15 +2269,15 @@ ] }, "condition": { - "multiple": true, + "multiple": false, "required": true, "types": [ { - "type": "&&", - "named": false + "type": "_expression", + "named": true }, { - "type": "_expression", + "type": "let_chain", "named": true }, { @@ -2396,6 +2396,26 @@ ] } }, + { + "type": "let_chain", + "named": true, + "fields": { + "condition": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "let_condition", + "named": true + } + ] + } + } + }, { "type": "let_condition", "named": true, @@ -2688,15 +2708,15 @@ "named": true, "fields": { "condition": { - "multiple": true, + "multiple": false, "required": false, "types": [ { - "type": "&&", - "named": false + "type": "_expression", + "named": true }, { - "type": "_expression", + "type": "let_chain", "named": true }, { @@ -4680,15 +4700,15 @@ ] }, "condition": { - "multiple": true, + "multiple": false, "required": true, "types": [ { - "type": "&&", - "named": false + "type": "_expression", + "named": true }, { - "type": "_expression", + "type": "let_chain", "named": true }, { diff --git a/src/parser.c b/src/parser.c index 87d00a84..a8e4a945 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2549 -#define LARGE_STATE_COUNT 639 -#define SYMBOL_COUNT 369 +#define STATE_COUNT 2561 +#define LARGE_STATE_COUNT 641 +#define SYMBOL_COUNT 370 #define ALIAS_COUNT 3 #define TOKEN_COUNT 183 #define EXTERNAL_TOKEN_COUNT 4 #define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 239 +#define PRODUCTION_ID_COUNT 243 enum { sym_identifier = 1, @@ -314,8 +314,8 @@ enum { sym_field_initializer = 295, sym_base_field_initializer = 296, sym_let_condition = 297, - sym__condition = 298, - sym__conditions = 299, + sym_let_chain = 298, + sym__condition = 299, sym_if_expression = 300, sym_else_clause = 301, sym_match_expression = 302, @@ -380,14 +380,15 @@ enum { aux_sym_array_expression_repeat1 = 361, aux_sym_tuple_expression_repeat1 = 362, aux_sym_field_initializer_list_repeat1 = 363, - aux_sym_match_block_repeat1 = 364, - aux_sym_closure_parameters_repeat1 = 365, - aux_sym_tuple_pattern_repeat1 = 366, - aux_sym_struct_pattern_repeat1 = 367, - aux_sym_string_literal_repeat1 = 368, - alias_sym_field_identifier = 369, - alias_sym_shorthand_field_identifier = 370, - alias_sym_type_identifier = 371, + aux_sym_let_chain_repeat1 = 364, + aux_sym_match_block_repeat1 = 365, + aux_sym_closure_parameters_repeat1 = 366, + aux_sym_tuple_pattern_repeat1 = 367, + aux_sym_struct_pattern_repeat1 = 368, + aux_sym_string_literal_repeat1 = 369, + alias_sym_field_identifier = 370, + alias_sym_shorthand_field_identifier = 371, + alias_sym_type_identifier = 372, }; static const char * const ts_symbol_names[] = { @@ -689,8 +690,8 @@ static const char * const ts_symbol_names[] = { [sym_field_initializer] = "field_initializer", [sym_base_field_initializer] = "base_field_initializer", [sym_let_condition] = "let_condition", + [sym_let_chain] = "let_chain", [sym__condition] = "_condition", - [sym__conditions] = "_conditions", [sym_if_expression] = "if_expression", [sym_else_clause] = "else_clause", [sym_match_expression] = "match_expression", @@ -755,6 +756,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_array_expression_repeat1] = "array_expression_repeat1", [aux_sym_tuple_expression_repeat1] = "tuple_expression_repeat1", [aux_sym_field_initializer_list_repeat1] = "field_initializer_list_repeat1", + [aux_sym_let_chain_repeat1] = "let_chain_repeat1", [aux_sym_match_block_repeat1] = "match_block_repeat1", [aux_sym_closure_parameters_repeat1] = "closure_parameters_repeat1", [aux_sym_tuple_pattern_repeat1] = "tuple_pattern_repeat1", @@ -1064,8 +1066,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_field_initializer] = sym_field_initializer, [sym_base_field_initializer] = sym_base_field_initializer, [sym_let_condition] = sym_let_condition, + [sym_let_chain] = sym_let_chain, [sym__condition] = sym__condition, - [sym__conditions] = sym__conditions, [sym_if_expression] = sym_if_expression, [sym_else_clause] = sym_else_clause, [sym_match_expression] = sym_match_expression, @@ -1130,6 +1132,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_array_expression_repeat1] = aux_sym_array_expression_repeat1, [aux_sym_tuple_expression_repeat1] = aux_sym_tuple_expression_repeat1, [aux_sym_field_initializer_list_repeat1] = aux_sym_field_initializer_list_repeat1, + [aux_sym_let_chain_repeat1] = aux_sym_let_chain_repeat1, [aux_sym_match_block_repeat1] = aux_sym_match_block_repeat1, [aux_sym_closure_parameters_repeat1] = aux_sym_closure_parameters_repeat1, [aux_sym_tuple_pattern_repeat1] = aux_sym_tuple_pattern_repeat1, @@ -2335,11 +2338,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__condition] = { - .visible = false, + [sym_let_chain] = { + .visible = true, .named = true, }, - [sym__conditions] = { + [sym__condition] = { .visible = false, .named = true, }, @@ -2602,6 +2605,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_let_chain_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_match_block_repeat1] = { .visible = false, .named = false, @@ -2701,872 +2708,886 @@ static const char * const ts_field_names[] = { static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [2] = {.index = 0, .length = 1}, - [4] = {.index = 1, .length = 1}, - [5] = {.index = 1, .length = 1}, + [3] = {.index = 1, .length = 1}, + [5] = {.index = 2, .length = 1}, [6] = {.index = 2, .length = 1}, - [7] = {.index = 3, .length = 2}, - [8] = {.index = 3, .length = 2}, - [9] = {.index = 5, .length = 2}, - [10] = {.index = 7, .length = 2}, - [11] = {.index = 9, .length = 2}, - [12] = {.index = 9, .length = 2}, - [13] = {.index = 11, .length = 1}, - [14] = {.index = 12, .length = 2}, - [15] = {.index = 14, .length = 2}, - [16] = {.index = 14, .length = 2}, - [17] = {.index = 16, .length = 2}, - [18] = {.index = 18, .length = 1}, - [19] = {.index = 19, .length = 1}, - [20] = {.index = 19, .length = 1}, - [21] = {.index = 20, .length = 1}, - [22] = {.index = 21, .length = 2}, - [23] = {.index = 23, .length = 2}, - [24] = {.index = 21, .length = 2}, - [25] = {.index = 25, .length = 1}, - [26] = {.index = 26, .length = 2}, - [27] = {.index = 12, .length = 2}, - [28] = {.index = 28, .length = 1}, - [29] = {.index = 29, .length = 1}, - [30] = {.index = 30, .length = 2}, + [7] = {.index = 3, .length = 1}, + [8] = {.index = 4, .length = 2}, + [9] = {.index = 4, .length = 2}, + [10] = {.index = 6, .length = 2}, + [11] = {.index = 8, .length = 2}, + [12] = {.index = 10, .length = 2}, + [13] = {.index = 10, .length = 2}, + [14] = {.index = 12, .length = 1}, + [15] = {.index = 13, .length = 2}, + [16] = {.index = 15, .length = 2}, + [17] = {.index = 15, .length = 2}, + [18] = {.index = 17, .length = 2}, + [19] = {.index = 19, .length = 2}, + [20] = {.index = 21, .length = 1}, + [21] = {.index = 22, .length = 1}, + [22] = {.index = 22, .length = 1}, + [23] = {.index = 23, .length = 1}, + [24] = {.index = 24, .length = 2}, + [25] = {.index = 26, .length = 2}, + [26] = {.index = 24, .length = 2}, + [27] = {.index = 28, .length = 1}, + [28] = {.index = 29, .length = 2}, + [29] = {.index = 13, .length = 2}, + [30] = {.index = 31, .length = 1}, [31] = {.index = 32, .length = 1}, [32] = {.index = 33, .length = 2}, - [33] = {.index = 11, .length = 1}, - [34] = {.index = 9, .length = 2}, - [35] = {.index = 9, .length = 2}, - [36] = {.index = 35, .length = 2}, - [37] = {.index = 37, .length = 2}, - [38] = {.index = 39, .length = 1}, - [39] = {.index = 9, .length = 2}, - [40] = {.index = 9, .length = 2}, - [41] = {.index = 40, .length = 3}, - [42] = {.index = 43, .length = 2}, - [43] = {.index = 45, .length = 2}, - [44] = {.index = 47, .length = 2}, - [45] = {.index = 47, .length = 2}, - [46] = {.index = 37, .length = 2}, - [47] = {.index = 1, .length = 1}, - [48] = {.index = 49, .length = 1}, - [49] = {.index = 50, .length = 2}, - [50] = {.index = 52, .length = 3}, - [51] = {.index = 55, .length = 2}, - [52] = {.index = 57, .length = 3}, - [54] = {.index = 60, .length = 1}, - [55] = {.index = 60, .length = 1}, - [56] = {.index = 49, .length = 1}, - [58] = {.index = 61, .length = 3}, - [59] = {.index = 64, .length = 1}, - [60] = {.index = 65, .length = 1}, - [62] = {.index = 66, .length = 2}, - [63] = {.index = 66, .length = 2}, - [64] = {.index = 68, .length = 1}, - [65] = {.index = 69, .length = 2}, - [66] = {.index = 71, .length = 3}, - [67] = {.index = 74, .length = 2}, - [68] = {.index = 76, .length = 2}, - [69] = {.index = 76, .length = 2}, - [70] = {.index = 78, .length = 1}, - [71] = {.index = 79, .length = 2}, - [72] = {.index = 81, .length = 3}, - [73] = {.index = 84, .length = 2}, - [74] = {.index = 86, .length = 2}, - [75] = {.index = 88, .length = 2}, - [76] = {.index = 90, .length = 2}, - [77] = {.index = 92, .length = 2}, - [78] = {.index = 90, .length = 2}, - [79] = {.index = 92, .length = 2}, - [80] = {.index = 94, .length = 1}, - [81] = {.index = 94, .length = 1}, - [82] = {.index = 95, .length = 1}, - [83] = {.index = 96, .length = 2}, - [84] = {.index = 98, .length = 2}, - [85] = {.index = 98, .length = 2}, - [86] = {.index = 88, .length = 2}, - [87] = {.index = 95, .length = 1}, - [88] = {.index = 100, .length = 1}, - [89] = {.index = 101, .length = 3}, - [90] = {.index = 104, .length = 1}, - [91] = {.index = 105, .length = 1}, - [92] = {.index = 106, .length = 2}, - [93] = {.index = 108, .length = 3}, - [94] = {.index = 111, .length = 3}, - [95] = {.index = 114, .length = 4}, - [96] = {.index = 118, .length = 3}, - [97] = {.index = 1, .length = 1}, - [98] = {.index = 121, .length = 3}, - [99] = {.index = 124, .length = 2}, - [100] = {.index = 126, .length = 2}, - [101] = {.index = 128, .length = 2}, - [102] = {.index = 128, .length = 2}, - [103] = {.index = 130, .length = 1}, - [104] = {.index = 131, .length = 2}, - [105] = {.index = 133, .length = 3}, - [106] = {.index = 136, .length = 3}, - [107] = {.index = 139, .length = 3}, - [108] = {.index = 142, .length = 1}, - [109] = {.index = 131, .length = 2}, - [110] = {.index = 133, .length = 3}, - [111] = {.index = 136, .length = 3}, - [112] = {.index = 143, .length = 2}, - [114] = {.index = 145, .length = 3}, - [115] = {.index = 148, .length = 4}, - [116] = {.index = 106, .length = 2}, - [117] = {.index = 152, .length = 3}, - [118] = {.index = 155, .length = 2}, - [119] = {.index = 157, .length = 3}, - [120] = {.index = 160, .length = 2}, - [121] = {.index = 162, .length = 2}, - [122] = {.index = 164, .length = 3}, - [123] = {.index = 167, .length = 3}, - [124] = {.index = 32, .length = 1}, - [125] = {.index = 143, .length = 2}, + [33] = {.index = 35, .length = 1}, + [34] = {.index = 36, .length = 2}, + [35] = {.index = 12, .length = 1}, + [36] = {.index = 10, .length = 2}, + [37] = {.index = 10, .length = 2}, + [38] = {.index = 38, .length = 2}, + [39] = {.index = 40, .length = 2}, + [40] = {.index = 42, .length = 1}, + [41] = {.index = 10, .length = 2}, + [42] = {.index = 10, .length = 2}, + [43] = {.index = 43, .length = 3}, + [44] = {.index = 46, .length = 2}, + [45] = {.index = 48, .length = 2}, + [46] = {.index = 50, .length = 2}, + [47] = {.index = 50, .length = 2}, + [48] = {.index = 40, .length = 2}, + [49] = {.index = 2, .length = 1}, + [50] = {.index = 52, .length = 1}, + [51] = {.index = 53, .length = 2}, + [52] = {.index = 55, .length = 3}, + [53] = {.index = 58, .length = 2}, + [54] = {.index = 60, .length = 3}, + [56] = {.index = 63, .length = 1}, + [57] = {.index = 63, .length = 1}, + [58] = {.index = 52, .length = 1}, + [60] = {.index = 64, .length = 1}, + [61] = {.index = 65, .length = 2}, + [62] = {.index = 67, .length = 3}, + [63] = {.index = 70, .length = 1}, + [64] = {.index = 71, .length = 1}, + [66] = {.index = 72, .length = 2}, + [67] = {.index = 72, .length = 2}, + [68] = {.index = 74, .length = 1}, + [69] = {.index = 75, .length = 2}, + [70] = {.index = 77, .length = 3}, + [71] = {.index = 80, .length = 2}, + [72] = {.index = 82, .length = 2}, + [73] = {.index = 82, .length = 2}, + [74] = {.index = 84, .length = 1}, + [75] = {.index = 85, .length = 2}, + [76] = {.index = 87, .length = 3}, + [77] = {.index = 90, .length = 2}, + [78] = {.index = 92, .length = 2}, + [79] = {.index = 94, .length = 2}, + [80] = {.index = 96, .length = 2}, + [81] = {.index = 98, .length = 2}, + [82] = {.index = 96, .length = 2}, + [83] = {.index = 98, .length = 2}, + [84] = {.index = 100, .length = 1}, + [85] = {.index = 100, .length = 1}, + [86] = {.index = 101, .length = 1}, + [87] = {.index = 102, .length = 2}, + [88] = {.index = 104, .length = 2}, + [89] = {.index = 104, .length = 2}, + [90] = {.index = 94, .length = 2}, + [91] = {.index = 101, .length = 1}, + [92] = {.index = 106, .length = 1}, + [93] = {.index = 107, .length = 3}, + [94] = {.index = 110, .length = 1}, + [95] = {.index = 111, .length = 1}, + [96] = {.index = 112, .length = 2}, + [97] = {.index = 114, .length = 3}, + [98] = {.index = 117, .length = 3}, + [99] = {.index = 120, .length = 4}, + [100] = {.index = 124, .length = 3}, + [101] = {.index = 2, .length = 1}, + [102] = {.index = 127, .length = 3}, + [103] = {.index = 130, .length = 2}, + [104] = {.index = 132, .length = 2}, + [105] = {.index = 134, .length = 2}, + [106] = {.index = 134, .length = 2}, + [107] = {.index = 136, .length = 1}, + [108] = {.index = 137, .length = 2}, + [109] = {.index = 139, .length = 3}, + [110] = {.index = 142, .length = 3}, + [111] = {.index = 145, .length = 3}, + [112] = {.index = 148, .length = 1}, + [113] = {.index = 137, .length = 2}, + [114] = {.index = 139, .length = 3}, + [115] = {.index = 142, .length = 3}, + [116] = {.index = 149, .length = 2}, + [118] = {.index = 151, .length = 3}, + [119] = {.index = 154, .length = 4}, + [120] = {.index = 112, .length = 2}, + [121] = {.index = 158, .length = 3}, + [122] = {.index = 161, .length = 2}, + [123] = {.index = 163, .length = 3}, + [124] = {.index = 166, .length = 2}, + [125] = {.index = 168, .length = 2}, [126] = {.index = 170, .length = 3}, - [127] = {.index = 173, .length = 2}, - [128] = {.index = 175, .length = 2}, - [129] = {.index = 177, .length = 3}, - [130] = {.index = 180, .length = 2}, - [131] = {.index = 182, .length = 2}, - [132] = {.index = 184, .length = 1}, - [133] = {.index = 185, .length = 2}, - [134] = {.index = 187, .length = 1}, - [135] = {.index = 173, .length = 2}, - [136] = {.index = 188, .length = 4}, - [137] = {.index = 192, .length = 3}, - [138] = {.index = 195, .length = 4}, - [139] = {.index = 95, .length = 1}, - [140] = {.index = 199, .length = 2}, - [141] = {.index = 201, .length = 2}, - [142] = {.index = 203, .length = 2}, - [143] = {.index = 205, .length = 3}, - [144] = {.index = 208, .length = 2}, - [145] = {.index = 210, .length = 3}, - [146] = {.index = 213, .length = 4}, - [147] = {.index = 210, .length = 3}, - [148] = {.index = 213, .length = 4}, - [149] = {.index = 217, .length = 3}, - [150] = {.index = 217, .length = 3}, - [151] = {.index = 205, .length = 3}, - [152] = {.index = 220, .length = 2}, - [153] = {.index = 222, .length = 2}, - [154] = {.index = 224, .length = 2}, - [155] = {.index = 226, .length = 1}, - [156] = {.index = 227, .length = 2}, - [157] = {.index = 229, .length = 2}, - [158] = {.index = 231, .length = 2}, - [159] = {.index = 201, .length = 2}, - [160] = {.index = 233, .length = 4}, - [161] = {.index = 237, .length = 3}, - [162] = {.index = 240, .length = 2}, - [163] = {.index = 242, .length = 3}, - [164] = {.index = 245, .length = 3}, - [165] = {.index = 240, .length = 2}, - [166] = {.index = 242, .length = 3}, + [127] = {.index = 173, .length = 3}, + [128] = {.index = 35, .length = 1}, + [129] = {.index = 149, .length = 2}, + [130] = {.index = 176, .length = 3}, + [131] = {.index = 179, .length = 2}, + [132] = {.index = 181, .length = 2}, + [133] = {.index = 183, .length = 3}, + [134] = {.index = 186, .length = 2}, + [135] = {.index = 188, .length = 2}, + [136] = {.index = 190, .length = 1}, + [137] = {.index = 191, .length = 2}, + [138] = {.index = 193, .length = 1}, + [139] = {.index = 179, .length = 2}, + [140] = {.index = 194, .length = 4}, + [141] = {.index = 198, .length = 3}, + [142] = {.index = 201, .length = 4}, + [143] = {.index = 101, .length = 1}, + [144] = {.index = 205, .length = 2}, + [145] = {.index = 207, .length = 2}, + [146] = {.index = 209, .length = 2}, + [147] = {.index = 211, .length = 3}, + [148] = {.index = 214, .length = 2}, + [149] = {.index = 216, .length = 3}, + [150] = {.index = 219, .length = 4}, + [151] = {.index = 216, .length = 3}, + [152] = {.index = 219, .length = 4}, + [153] = {.index = 223, .length = 3}, + [154] = {.index = 223, .length = 3}, + [155] = {.index = 211, .length = 3}, + [156] = {.index = 226, .length = 2}, + [157] = {.index = 228, .length = 2}, + [158] = {.index = 230, .length = 2}, + [159] = {.index = 232, .length = 1}, + [160] = {.index = 233, .length = 2}, + [161] = {.index = 235, .length = 2}, + [162] = {.index = 237, .length = 2}, + [163] = {.index = 207, .length = 2}, + [164] = {.index = 239, .length = 4}, + [165] = {.index = 243, .length = 3}, + [166] = {.index = 246, .length = 2}, [167] = {.index = 248, .length = 3}, [168] = {.index = 251, .length = 3}, - [169] = {.index = 254, .length = 4}, - [170] = {.index = 258, .length = 2}, - [171] = {.index = 260, .length = 2}, - [172] = {.index = 262, .length = 3}, - [173] = {.index = 265, .length = 4}, - [174] = {.index = 269, .length = 3}, - [175] = {.index = 227, .length = 2}, - [176] = {.index = 272, .length = 2}, - [177] = {.index = 274, .length = 3}, - [178] = {.index = 277, .length = 3}, - [179] = {.index = 280, .length = 2}, - [180] = {.index = 282, .length = 3}, - [181] = {.index = 201, .length = 2}, - [182] = {.index = 285, .length = 3}, - [183] = {.index = 288, .length = 3}, - [184] = {.index = 260, .length = 2}, - [185] = {.index = 291, .length = 4}, - [186] = {.index = 295, .length = 5}, - [187] = {.index = 300, .length = 4}, - [188] = {.index = 304, .length = 2}, - [189] = {.index = 306, .length = 3}, - [190] = {.index = 309, .length = 4}, - [191] = {.index = 309, .length = 4}, - [192] = {.index = 313, .length = 2}, - [193] = {.index = 315, .length = 3}, - [194] = {.index = 318, .length = 2}, - [195] = {.index = 320, .length = 2}, - [196] = {.index = 106, .length = 2}, - [197] = {.index = 322, .length = 3}, - [198] = {.index = 325, .length = 3}, - [199] = {.index = 328, .length = 4}, - [200] = {.index = 325, .length = 3}, - [201] = {.index = 328, .length = 4}, - [202] = {.index = 322, .length = 3}, - [203] = {.index = 332, .length = 4}, - [204] = {.index = 336, .length = 4}, - [205] = {.index = 340, .length = 3}, - [206] = {.index = 343, .length = 4}, - [207] = {.index = 347, .length = 3}, - [208] = {.index = 350, .length = 3}, - [209] = {.index = 353, .length = 3}, - [210] = {.index = 356, .length = 4}, - [211] = {.index = 360, .length = 2}, - [212] = {.index = 362, .length = 3}, - [213] = {.index = 365, .length = 4}, - [214] = {.index = 369, .length = 3}, - [215] = {.index = 372, .length = 3}, - [216] = {.index = 375, .length = 3}, - [217] = {.index = 378, .length = 5}, - [218] = {.index = 383, .length = 2}, - [219] = {.index = 385, .length = 3}, - [220] = {.index = 388, .length = 3}, - [221] = {.index = 391, .length = 2}, - [222] = {.index = 393, .length = 4}, - [223] = {.index = 393, .length = 4}, - [224] = {.index = 397, .length = 4}, - [225] = {.index = 401, .length = 5}, - [226] = {.index = 406, .length = 4}, - [227] = {.index = 410, .length = 2}, - [228] = {.index = 412, .length = 4}, - [229] = {.index = 416, .length = 4}, - [230] = {.index = 420, .length = 3}, - [231] = {.index = 423, .length = 4}, - [232] = {.index = 427, .length = 3}, - [233] = {.index = 430, .length = 5}, - [234] = {.index = 435, .length = 4}, - [235] = {.index = 439, .length = 5}, - [236] = {.index = 444, .length = 4}, - [237] = {.index = 448, .length = 3}, - [238] = {.index = 451, .length = 5}, + [169] = {.index = 246, .length = 2}, + [170] = {.index = 248, .length = 3}, + [171] = {.index = 254, .length = 3}, + [172] = {.index = 257, .length = 3}, + [173] = {.index = 260, .length = 4}, + [174] = {.index = 264, .length = 2}, + [175] = {.index = 266, .length = 2}, + [176] = {.index = 268, .length = 3}, + [177] = {.index = 271, .length = 4}, + [178] = {.index = 275, .length = 3}, + [179] = {.index = 233, .length = 2}, + [180] = {.index = 278, .length = 2}, + [181] = {.index = 280, .length = 3}, + [182] = {.index = 283, .length = 3}, + [183] = {.index = 286, .length = 2}, + [184] = {.index = 288, .length = 3}, + [185] = {.index = 207, .length = 2}, + [186] = {.index = 291, .length = 3}, + [187] = {.index = 294, .length = 3}, + [188] = {.index = 266, .length = 2}, + [189] = {.index = 297, .length = 4}, + [190] = {.index = 301, .length = 5}, + [191] = {.index = 306, .length = 4}, + [192] = {.index = 310, .length = 2}, + [193] = {.index = 312, .length = 3}, + [194] = {.index = 315, .length = 4}, + [195] = {.index = 315, .length = 4}, + [196] = {.index = 319, .length = 2}, + [197] = {.index = 321, .length = 3}, + [198] = {.index = 324, .length = 2}, + [199] = {.index = 326, .length = 2}, + [200] = {.index = 112, .length = 2}, + [201] = {.index = 328, .length = 3}, + [202] = {.index = 331, .length = 3}, + [203] = {.index = 334, .length = 4}, + [204] = {.index = 331, .length = 3}, + [205] = {.index = 334, .length = 4}, + [206] = {.index = 328, .length = 3}, + [207] = {.index = 338, .length = 4}, + [208] = {.index = 342, .length = 4}, + [209] = {.index = 346, .length = 3}, + [210] = {.index = 349, .length = 4}, + [211] = {.index = 353, .length = 3}, + [212] = {.index = 356, .length = 3}, + [213] = {.index = 359, .length = 3}, + [214] = {.index = 362, .length = 4}, + [215] = {.index = 366, .length = 2}, + [216] = {.index = 368, .length = 3}, + [217] = {.index = 371, .length = 4}, + [218] = {.index = 375, .length = 3}, + [219] = {.index = 378, .length = 3}, + [220] = {.index = 381, .length = 3}, + [221] = {.index = 384, .length = 5}, + [222] = {.index = 389, .length = 2}, + [223] = {.index = 391, .length = 3}, + [224] = {.index = 394, .length = 3}, + [225] = {.index = 397, .length = 2}, + [226] = {.index = 399, .length = 4}, + [227] = {.index = 399, .length = 4}, + [228] = {.index = 403, .length = 4}, + [229] = {.index = 407, .length = 5}, + [230] = {.index = 412, .length = 4}, + [231] = {.index = 416, .length = 2}, + [232] = {.index = 418, .length = 4}, + [233] = {.index = 422, .length = 4}, + [234] = {.index = 426, .length = 3}, + [235] = {.index = 429, .length = 4}, + [236] = {.index = 433, .length = 3}, + [237] = {.index = 436, .length = 5}, + [238] = {.index = 441, .length = 4}, + [239] = {.index = 445, .length = 5}, + [240] = {.index = 450, .length = 4}, + [241] = {.index = 454, .length = 3}, + [242] = {.index = 457, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { [0] = {field_body, 1}, [1] = - {field_name, 1}, + {field_condition, 0}, [2] = - {field_value, 1}, + {field_name, 1}, [3] = + {field_value, 1}, + [4] = {field_body, 1}, {field_name, 0}, - [5] = + [6] = {field_arguments, 1}, {field_function, 0}, - [7] = + [8] = {field_body, 1}, {field_parameters, 0}, - [9] = + [10] = {field_name, 2}, {field_path, 0}, - [11] = - {field_macro, 0}, [12] = + {field_macro, 0}, + [13] = {field_body, 2}, {field_name, 1}, - [14] = + [15] = {field_type, 0}, {field_type_arguments, 1}, - [16] = + [17] = + {field_condition, 0}, + {field_condition, 1, .inherited = true}, + [19] = {field_condition, 1}, {field_consequence, 2}, - [18] = + [21] = {field_parameters, 1}, - [19] = + [22] = {field_trait, 1}, - [20] = + [23] = {field_type, 1}, - [21] = + [24] = {field_parameters, 1}, {field_trait, 0}, - [23] = + [26] = {field_body, 2}, {field_type, 1}, - [25] = + [28] = {field_pattern, 1}, - [26] = + [29] = {field_body, 2}, {field_value, 1}, - [28] = + [31] = {field_list, 1}, - [29] = + [32] = {field_argument, 1}, - [30] = + [33] = {field_body, 2}, {field_condition, 1}, - [32] = + [35] = {field_value, 2}, - [33] = + [36] = {field_body, 2}, {field_parameters, 1}, - [35] = + [38] = {field_function, 0}, {field_type_arguments, 2}, - [37] = + [40] = {field_type, 0}, {field_type_arguments, 2}, - [39] = + [42] = {field_body, 2}, - [40] = + [43] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [43] = + [46] = {field_type, 2}, {field_value, 0}, - [45] = + [48] = {field_left, 0}, {field_right, 2}, - [47] = + [50] = {field_field, 2}, {field_value, 0}, - [49] = + [52] = {field_name, 0}, - [50] = + [53] = {field_body, 3}, {field_name, 1}, - [52] = + [55] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [55] = + [58] = {field_name, 1}, {field_parameters, 2}, - [57] = + [60] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, - [60] = + [63] = {field_type, 0}, - [61] = + [64] = + {field_condition, 1}, + [65] = + {field_condition, 0, .inherited = true}, + {field_condition, 1, .inherited = true}, + [67] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [64] = + [70] = {field_element, 1}, - [65] = + [71] = {field_type, 2}, - [66] = + [72] = {field_bounds, 1}, {field_left, 0}, - [68] = + [74] = {field_parameters, 2}, - [69] = + [75] = {field_type, 2}, {field_type_parameters, 1}, - [71] = + [77] = {field_body, 3}, {field_type, 2}, {field_type_parameters, 1}, - [74] = + [80] = {field_body, 3}, {field_type, 1}, - [76] = + [82] = {field_parameters, 2}, {field_trait, 1}, - [78] = + [84] = {field_pattern, 2}, - [79] = + [85] = {field_name, 1}, {field_type_parameters, 2}, - [81] = + [87] = {field_body, 3}, {field_bounds, 2}, {field_name, 1}, - [84] = + [90] = {field_bounds, 2}, {field_name, 1}, - [86] = + [92] = {field_body, 3}, {field_type, 2}, - [88] = + [94] = {field_body, 3}, {field_name, 2}, - [90] = + [96] = {field_alias, 2}, {field_path, 0}, - [92] = + [98] = {field_list, 2}, {field_path, 0}, - [94] = + [100] = {field_arguments, 1}, - [95] = + [101] = {field_name, 2}, - [96] = + [102] = {field_alias, 2}, {field_type, 0}, - [98] = + [104] = {field_pattern, 0}, {field_type, 2}, - [100] = + [106] = {field_argument, 2}, - [101] = + [107] = {field_body, 3}, {field_parameters, 0}, {field_return_type, 2}, - [104] = + [110] = {field_body, 3}, - [105] = + [111] = {field_length, 3}, - [106] = + [112] = {field_name, 1}, {field_type, 3}, - [108] = + [114] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [111] = + [117] = {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [114] = + [120] = {field_body, 4}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [118] = + [124] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, - [121] = + [127] = {field_body, 4}, {field_pattern, 1}, {field_value, 3}, - [124] = + [130] = {field_pattern, 1}, {field_value, 3}, - [126] = + [132] = {field_parameters, 1}, {field_return_type, 3}, - [128] = + [134] = {field_default_type, 2}, {field_name, 0}, - [130] = + [136] = {field_type, 3}, - [131] = + [137] = {field_trait, 1}, {field_type, 3}, - [133] = + [139] = {field_body, 4}, {field_trait, 1}, {field_type, 3}, - [136] = + [142] = {field_parameters, 1}, {field_return_type, 3}, {field_trait, 0}, - [139] = + [145] = {field_body, 4}, {field_type, 2}, {field_type_parameters, 1}, - [142] = + [148] = {field_parameters, 3}, - [143] = + [149] = {field_pattern, 1}, {field_type, 3}, - [145] = + [151] = {field_body, 4}, {field_bounds, 2}, {field_name, 1}, - [148] = + [154] = {field_body, 4}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [152] = + [158] = {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [155] = + [161] = {field_type, 3}, {field_type_parameters, 2}, - [157] = + [163] = {field_body, 4}, {field_type, 3}, {field_type_parameters, 2}, - [160] = + [166] = {field_body, 4}, {field_type, 2}, - [162] = + [168] = {field_body, 4}, {field_name, 2}, - [164] = + [170] = {field_body, 4}, {field_bounds, 3}, {field_name, 2}, - [167] = + [173] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [170] = + [176] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3}, - [173] = + [179] = {field_name, 0}, {field_value, 2}, - [175] = + [181] = {field_name, 2}, {field_parameters, 3}, - [177] = + [183] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [180] = + [186] = {field_name, 2}, {field_type_parameters, 3}, - [182] = + [188] = {field_body, 4}, {field_name, 3}, - [184] = + [190] = {field_name, 3}, - [185] = + [191] = {field_body, 4}, {field_condition, 3}, - [187] = + [193] = {field_length, 4}, - [188] = + [194] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [192] = + [198] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [195] = + [201] = {field_body, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [199] = + [205] = {field_name, 0}, {field_pattern, 2}, - [201] = + [207] = {field_name, 0}, {field_type, 2}, - [203] = + [209] = {field_element, 1}, {field_length, 3}, - [205] = + [211] = {field_body, 5}, {field_trait, 1}, {field_type, 3}, - [208] = + [214] = {field_parameters, 2}, {field_return_type, 4}, - [210] = + [216] = {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [213] = + [219] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [217] = + [223] = {field_parameters, 2}, {field_return_type, 4}, {field_trait, 1}, - [220] = + [226] = {field_pattern, 2}, {field_type, 4}, - [222] = + [228] = {field_pattern, 2}, {field_value, 4}, - [224] = + [230] = {field_pattern, 0}, {field_value, 2}, - [226] = + [232] = {field_condition, 2}, - [227] = + [233] = {field_name, 2}, {field_type, 4}, - [229] = + [235] = {field_type, 1}, {field_type, 2, .inherited = true}, - [231] = + [237] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [233] = + [239] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [237] = + [243] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [240] = + [246] = {field_trait, 2}, {field_type, 4}, - [242] = + [248] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [245] = + [251] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [248] = + [254] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [251] = + [257] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [254] = + [260] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [258] = + [264] = {field_alias, 4}, {field_name, 2}, - [260] = + [266] = {field_name, 1}, {field_value, 3}, - [262] = + [268] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [265] = + [271] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [269] = + [275] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [272] = + [278] = {field_body, 5}, {field_name, 3}, - [274] = + [280] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [277] = + [283] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [280] = + [286] = {field_name, 3}, {field_parameters, 4}, - [282] = + [288] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [285] = + [291] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [288] = + [294] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [291] = + [297] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [295] = + [301] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [300] = + [306] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [304] = + [310] = {field_name, 1}, {field_pattern, 3}, - [306] = + [312] = {field_name, 0}, {field_type, 3}, {field_type_arguments, 1}, - [309] = + [315] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [313] = + [319] = {field_parameters, 3}, {field_return_type, 5}, - [315] = + [321] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [318] = + [324] = {field_name, 3}, {field_type, 5}, - [320] = + [326] = {field_type, 2}, {field_type, 3, .inherited = true}, - [322] = + [328] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [325] = + [331] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [328] = + [334] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [332] = + [338] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [336] = + [342] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [340] = + [346] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [343] = + [349] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [347] = + [353] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [350] = + [356] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [353] = + [359] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [356] = + [362] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [360] = + [366] = {field_alias, 5}, {field_name, 3}, - [362] = + [368] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [365] = + [371] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [369] = + [375] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [372] = + [378] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [375] = + [381] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [378] = + [384] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [383] = + [389] = {field_name, 2}, {field_pattern, 4}, - [385] = + [391] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [388] = + [394] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [391] = + [397] = {field_type, 3}, {field_type, 4, .inherited = true}, - [393] = + [399] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [397] = + [403] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [401] = + [407] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [406] = + [412] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [410] = + [416] = {field_name, 4}, {field_type, 6}, - [412] = + [418] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [416] = + [422] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [420] = + [426] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [423] = + [429] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [427] = + [433] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [430] = + [436] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [435] = + [441] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [439] = + [445] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [444] = + [450] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [448] = + [454] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [451] = + [457] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, @@ -3579,271 +3600,271 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = { [0] = sym_identifier, }, - [3] = { + [4] = { [0] = alias_sym_type_identifier, }, - [5] = { + [6] = { [1] = alias_sym_type_identifier, }, - [7] = { + [8] = { [0] = alias_sym_type_identifier, }, - [11] = { - [0] = sym_identifier, - }, [12] = { [0] = sym_identifier, - [2] = alias_sym_type_identifier, }, [13] = { [0] = sym_identifier, + [2] = alias_sym_type_identifier, }, [14] = { - [1] = alias_sym_type_identifier, + [0] = sym_identifier, }, [15] = { + [1] = alias_sym_type_identifier, + }, + [16] = { [0] = alias_sym_type_identifier, }, - [19] = { + [21] = { [1] = alias_sym_type_identifier, }, - [22] = { + [24] = { [0] = alias_sym_type_identifier, }, - [35] = { + [37] = { [2] = alias_sym_type_identifier, }, - [37] = { + [39] = { [0] = alias_sym_type_identifier, }, - [39] = { + [41] = { [0] = sym_generic_type, }, - [40] = { + [42] = { [0] = sym_generic_type, [2] = alias_sym_type_identifier, }, - [45] = { + [47] = { [2] = alias_sym_field_identifier, }, - [47] = { + [49] = { [1] = sym_identifier, }, - [49] = { + [51] = { [1] = alias_sym_type_identifier, }, - [50] = { + [52] = { [1] = alias_sym_type_identifier, }, - [53] = { + [55] = { [0] = sym_identifier, [2] = sym_identifier, }, - [55] = { + [57] = { [0] = alias_sym_type_identifier, }, - [56] = { + [58] = { [0] = alias_sym_shorthand_field_identifier, }, - [57] = { + [59] = { [2] = sym_identifier, }, - [61] = { + [65] = { [1] = alias_sym_type_identifier, }, - [62] = { + [66] = { [0] = alias_sym_type_identifier, }, - [68] = { + [72] = { [1] = alias_sym_type_identifier, }, - [71] = { + [75] = { [1] = alias_sym_type_identifier, }, - [72] = { + [76] = { [1] = alias_sym_type_identifier, }, - [73] = { + [77] = { [1] = alias_sym_type_identifier, }, - [75] = { + [79] = { [2] = alias_sym_type_identifier, }, - [76] = { + [80] = { [0] = sym_identifier, }, - [77] = { + [81] = { [0] = sym_identifier, }, - [80] = { + [84] = { [0] = sym_identifier, }, - [84] = { + [88] = { [0] = sym_identifier, }, - [87] = { + [91] = { [2] = alias_sym_type_identifier, }, - [93] = { + [97] = { [1] = alias_sym_type_identifier, }, - [97] = { + [101] = { [1] = alias_sym_shorthand_field_identifier, }, - [101] = { + [105] = { [0] = alias_sym_type_identifier, }, - [104] = { + [108] = { [1] = alias_sym_type_identifier, }, - [105] = { + [109] = { [1] = alias_sym_type_identifier, }, - [106] = { + [110] = { [0] = alias_sym_type_identifier, }, - [113] = { + [117] = { [3] = sym_identifier, }, - [114] = { + [118] = { [1] = alias_sym_type_identifier, }, - [115] = { + [119] = { [1] = alias_sym_type_identifier, }, - [116] = { + [120] = { [1] = alias_sym_type_identifier, }, - [117] = { + [121] = { [1] = alias_sym_type_identifier, }, - [121] = { + [125] = { [2] = alias_sym_type_identifier, }, - [122] = { + [126] = { [2] = alias_sym_type_identifier, }, - [123] = { + [127] = { [2] = alias_sym_type_identifier, }, - [124] = { + [128] = { [0] = sym_identifier, }, - [125] = { + [129] = { [1] = sym_identifier, }, - [127] = { + [131] = { [0] = alias_sym_field_identifier, }, - [130] = { + [134] = { [2] = alias_sym_type_identifier, }, - [131] = { + [135] = { [3] = alias_sym_type_identifier, }, - [139] = { + [143] = { [2] = alias_sym_shorthand_field_identifier, }, - [140] = { + [144] = { [0] = alias_sym_field_identifier, }, - [141] = { + [145] = { [0] = alias_sym_type_identifier, }, - [143] = { + [147] = { [1] = alias_sym_type_identifier, }, - [145] = { + [149] = { [2] = alias_sym_type_identifier, }, - [146] = { + [150] = { [2] = alias_sym_type_identifier, }, - [149] = { + [153] = { [1] = alias_sym_type_identifier, }, - [159] = { + [163] = { [0] = alias_sym_field_identifier, }, - [160] = { + [164] = { [1] = alias_sym_type_identifier, }, - [161] = { + [165] = { [1] = alias_sym_type_identifier, }, - [162] = { + [166] = { [2] = alias_sym_type_identifier, }, - [163] = { + [167] = { [2] = alias_sym_type_identifier, }, - [167] = { + [171] = { [2] = alias_sym_type_identifier, }, - [168] = { + [172] = { [2] = alias_sym_type_identifier, }, - [169] = { + [173] = { [2] = alias_sym_type_identifier, }, - [171] = { + [175] = { [1] = alias_sym_field_identifier, }, - [175] = { + [179] = { [2] = alias_sym_type_identifier, }, - [176] = { + [180] = { [3] = alias_sym_type_identifier, }, - [177] = { + [181] = { [3] = alias_sym_type_identifier, }, - [178] = { + [182] = { [3] = alias_sym_type_identifier, }, - [188] = { + [192] = { [1] = alias_sym_field_identifier, }, - [189] = { + [193] = { [0] = alias_sym_type_identifier, }, - [190] = { + [194] = { [2] = alias_sym_type_identifier, }, - [196] = { + [200] = { [1] = alias_sym_field_identifier, }, - [197] = { + [201] = { [2] = alias_sym_type_identifier, }, - [198] = { + [202] = { [3] = alias_sym_type_identifier, }, - [199] = { + [203] = { [3] = alias_sym_type_identifier, }, - [203] = { + [207] = { [2] = alias_sym_type_identifier, }, - [207] = { + [211] = { [2] = alias_sym_type_identifier, }, - [208] = { + [212] = { [3] = alias_sym_type_identifier, }, - [209] = { + [213] = { [3] = alias_sym_type_identifier, }, - [210] = { + [214] = { [3] = alias_sym_type_identifier, }, - [218] = { + [222] = { [2] = alias_sym_field_identifier, }, - [222] = { + [226] = { [3] = alias_sym_type_identifier, }, - [228] = { + [232] = { [3] = alias_sym_type_identifier, }, }; @@ -13382,59 +13403,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [40] = {.lex_state = 5, .external_lex_state = 2}, [41] = {.lex_state = 5, .external_lex_state = 2}, [42] = {.lex_state = 5, .external_lex_state = 2}, - [43] = {.lex_state = 57, .external_lex_state = 2}, + [43] = {.lex_state = 5, .external_lex_state = 2}, [44] = {.lex_state = 5, .external_lex_state = 2}, [45] = {.lex_state = 5, .external_lex_state = 2}, [46] = {.lex_state = 5, .external_lex_state = 2}, [47] = {.lex_state = 5, .external_lex_state = 2}, - [48] = {.lex_state = 5, .external_lex_state = 2}, + [48] = {.lex_state = 57, .external_lex_state = 2}, [49] = {.lex_state = 5, .external_lex_state = 2}, [50] = {.lex_state = 5, .external_lex_state = 2}, - [51] = {.lex_state = 5, .external_lex_state = 2}, + [51] = {.lex_state = 57, .external_lex_state = 2}, [52] = {.lex_state = 5, .external_lex_state = 2}, [53] = {.lex_state = 5, .external_lex_state = 2}, - [54] = {.lex_state = 57, .external_lex_state = 2}, - [55] = {.lex_state = 5, .external_lex_state = 2}, + [54] = {.lex_state = 5, .external_lex_state = 2}, + [55] = {.lex_state = 57, .external_lex_state = 2}, [56] = {.lex_state = 57, .external_lex_state = 2}, [57] = {.lex_state = 5, .external_lex_state = 2}, - [58] = {.lex_state = 57, .external_lex_state = 2}, - [59] = {.lex_state = 5, .external_lex_state = 2}, + [58] = {.lex_state = 5, .external_lex_state = 2}, + [59] = {.lex_state = 57, .external_lex_state = 2}, [60] = {.lex_state = 57, .external_lex_state = 2}, - [61] = {.lex_state = 5, .external_lex_state = 2}, + [61] = {.lex_state = 57, .external_lex_state = 2}, [62] = {.lex_state = 57, .external_lex_state = 2}, [63] = {.lex_state = 57, .external_lex_state = 2}, - [64] = {.lex_state = 5, .external_lex_state = 2}, - [65] = {.lex_state = 5, .external_lex_state = 2}, + [64] = {.lex_state = 57, .external_lex_state = 2}, + [65] = {.lex_state = 57, .external_lex_state = 2}, [66] = {.lex_state = 57, .external_lex_state = 2}, [67] = {.lex_state = 57, .external_lex_state = 2}, - [68] = {.lex_state = 57, .external_lex_state = 2}, + [68] = {.lex_state = 5, .external_lex_state = 2}, [69] = {.lex_state = 57, .external_lex_state = 2}, [70] = {.lex_state = 57, .external_lex_state = 2}, - [71] = {.lex_state = 57, .external_lex_state = 2}, - [72] = {.lex_state = 57, .external_lex_state = 2}, + [71] = {.lex_state = 5, .external_lex_state = 2}, + [72] = {.lex_state = 5, .external_lex_state = 2}, [73] = {.lex_state = 57, .external_lex_state = 2}, [74] = {.lex_state = 57, .external_lex_state = 2}, [75] = {.lex_state = 57, .external_lex_state = 2}, [76] = {.lex_state = 57, .external_lex_state = 2}, - [77] = {.lex_state = 57, .external_lex_state = 2}, - [78] = {.lex_state = 57, .external_lex_state = 2}, - [79] = {.lex_state = 5, .external_lex_state = 2}, + [77] = {.lex_state = 5, .external_lex_state = 2}, + [78] = {.lex_state = 5, .external_lex_state = 2}, + [79] = {.lex_state = 57, .external_lex_state = 2}, [80] = {.lex_state = 57, .external_lex_state = 2}, - [81] = {.lex_state = 57, .external_lex_state = 2}, + [81] = {.lex_state = 5, .external_lex_state = 2}, [82] = {.lex_state = 57, .external_lex_state = 2}, - [83] = {.lex_state = 57, .external_lex_state = 2}, - [84] = {.lex_state = 57, .external_lex_state = 2}, + [83] = {.lex_state = 5, .external_lex_state = 2}, + [84] = {.lex_state = 5, .external_lex_state = 2}, [85] = {.lex_state = 57, .external_lex_state = 2}, - [86] = {.lex_state = 5, .external_lex_state = 2}, - [87] = {.lex_state = 5, .external_lex_state = 2}, - [88] = {.lex_state = 5, .external_lex_state = 2}, + [86] = {.lex_state = 57, .external_lex_state = 2}, + [87] = {.lex_state = 57, .external_lex_state = 2}, + [88] = {.lex_state = 57, .external_lex_state = 2}, [89] = {.lex_state = 5, .external_lex_state = 2}, [90] = {.lex_state = 5, .external_lex_state = 2}, - [91] = {.lex_state = 57, .external_lex_state = 2}, + [91] = {.lex_state = 5, .external_lex_state = 2}, [92] = {.lex_state = 5, .external_lex_state = 2}, [93] = {.lex_state = 5, .external_lex_state = 2}, [94] = {.lex_state = 5, .external_lex_state = 2}, - [95] = {.lex_state = 5, .external_lex_state = 2}, + [95] = {.lex_state = 57, .external_lex_state = 2}, [96] = {.lex_state = 5, .external_lex_state = 2}, [97] = {.lex_state = 5, .external_lex_state = 2}, [98] = {.lex_state = 5, .external_lex_state = 2}, @@ -13519,8 +13540,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [177] = {.lex_state = 5, .external_lex_state = 2}, [178] = {.lex_state = 5, .external_lex_state = 2}, [179] = {.lex_state = 5, .external_lex_state = 2}, - [180] = {.lex_state = 6, .external_lex_state = 2}, - [181] = {.lex_state = 6, .external_lex_state = 2}, + [180] = {.lex_state = 5, .external_lex_state = 2}, + [181] = {.lex_state = 5, .external_lex_state = 2}, [182] = {.lex_state = 6, .external_lex_state = 2}, [183] = {.lex_state = 6, .external_lex_state = 2}, [184] = {.lex_state = 6, .external_lex_state = 2}, @@ -13534,13 +13555,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [192] = {.lex_state = 6, .external_lex_state = 2}, [193] = {.lex_state = 6, .external_lex_state = 2}, [194] = {.lex_state = 6, .external_lex_state = 2}, - [195] = {.lex_state = 5, .external_lex_state = 2}, - [196] = {.lex_state = 5, .external_lex_state = 2}, + [195] = {.lex_state = 6, .external_lex_state = 2}, + [196] = {.lex_state = 6, .external_lex_state = 2}, [197] = {.lex_state = 5, .external_lex_state = 2}, [198] = {.lex_state = 5, .external_lex_state = 2}, - [199] = {.lex_state = 1, .external_lex_state = 2}, + [199] = {.lex_state = 5, .external_lex_state = 2}, [200] = {.lex_state = 5, .external_lex_state = 2}, - [201] = {.lex_state = 5, .external_lex_state = 2}, + [201] = {.lex_state = 1, .external_lex_state = 2}, [202] = {.lex_state = 5, .external_lex_state = 2}, [203] = {.lex_state = 5, .external_lex_state = 2}, [204] = {.lex_state = 5, .external_lex_state = 2}, @@ -13550,16 +13571,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [208] = {.lex_state = 5, .external_lex_state = 2}, [209] = {.lex_state = 5, .external_lex_state = 2}, [210] = {.lex_state = 5, .external_lex_state = 2}, - [211] = {.lex_state = 4, .external_lex_state = 3}, - [212] = {.lex_state = 4, .external_lex_state = 3}, - [213] = {.lex_state = 1, .external_lex_state = 2}, + [211] = {.lex_state = 5, .external_lex_state = 2}, + [212] = {.lex_state = 5, .external_lex_state = 2}, + [213] = {.lex_state = 4, .external_lex_state = 3}, [214] = {.lex_state = 4, .external_lex_state = 3}, [215] = {.lex_state = 4, .external_lex_state = 3}, [216] = {.lex_state = 4, .external_lex_state = 3}, [217] = {.lex_state = 4, .external_lex_state = 3}, [218] = {.lex_state = 4, .external_lex_state = 3}, [219] = {.lex_state = 1, .external_lex_state = 2}, - [220] = {.lex_state = 1, .external_lex_state = 2}, + [220] = {.lex_state = 4, .external_lex_state = 3}, [221] = {.lex_state = 1, .external_lex_state = 2}, [222] = {.lex_state = 1, .external_lex_state = 2}, [223] = {.lex_state = 1, .external_lex_state = 2}, @@ -13567,33 +13588,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [225] = {.lex_state = 1, .external_lex_state = 2}, [226] = {.lex_state = 1, .external_lex_state = 2}, [227] = {.lex_state = 1, .external_lex_state = 2}, - [228] = {.lex_state = 5, .external_lex_state = 2}, - [229] = {.lex_state = 1, .external_lex_state = 2}, + [228] = {.lex_state = 1, .external_lex_state = 2}, + [229] = {.lex_state = 5, .external_lex_state = 2}, [230] = {.lex_state = 1, .external_lex_state = 2}, [231] = {.lex_state = 1, .external_lex_state = 2}, - [232] = {.lex_state = 5, .external_lex_state = 2}, - [233] = {.lex_state = 1, .external_lex_state = 2}, - [234] = {.lex_state = 5, .external_lex_state = 2}, + [232] = {.lex_state = 1, .external_lex_state = 2}, + [233] = {.lex_state = 5, .external_lex_state = 2}, + [234] = {.lex_state = 1, .external_lex_state = 2}, [235] = {.lex_state = 1, .external_lex_state = 2}, [236] = {.lex_state = 1, .external_lex_state = 2}, [237] = {.lex_state = 1, .external_lex_state = 2}, - [238] = {.lex_state = 1, .external_lex_state = 2}, + [238] = {.lex_state = 5, .external_lex_state = 2}, [239] = {.lex_state = 1, .external_lex_state = 2}, [240] = {.lex_state = 1, .external_lex_state = 2}, - [241] = {.lex_state = 1, .external_lex_state = 2}, + [241] = {.lex_state = 5, .external_lex_state = 2}, [242] = {.lex_state = 1, .external_lex_state = 2}, - [243] = {.lex_state = 5, .external_lex_state = 2}, - [244] = {.lex_state = 5, .external_lex_state = 2}, - [245] = {.lex_state = 5, .external_lex_state = 2}, + [243] = {.lex_state = 1, .external_lex_state = 2}, + [244] = {.lex_state = 1, .external_lex_state = 2}, + [245] = {.lex_state = 1, .external_lex_state = 2}, [246] = {.lex_state = 5, .external_lex_state = 2}, - [247] = {.lex_state = 14, .external_lex_state = 3}, - [248] = {.lex_state = 14, .external_lex_state = 3}, + [247] = {.lex_state = 5, .external_lex_state = 2}, + [248] = {.lex_state = 5, .external_lex_state = 2}, [249] = {.lex_state = 14, .external_lex_state = 3}, [250] = {.lex_state = 14, .external_lex_state = 3}, [251] = {.lex_state = 14, .external_lex_state = 3}, - [252] = {.lex_state = 11, .external_lex_state = 2}, - [253] = {.lex_state = 58, .external_lex_state = 2}, - [254] = {.lex_state = 58, .external_lex_state = 2}, + [252] = {.lex_state = 14, .external_lex_state = 3}, + [253] = {.lex_state = 11, .external_lex_state = 2}, + [254] = {.lex_state = 14, .external_lex_state = 3}, [255] = {.lex_state = 58, .external_lex_state = 2}, [256] = {.lex_state = 58, .external_lex_state = 2}, [257] = {.lex_state = 58, .external_lex_state = 2}, @@ -13702,10 +13723,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [360] = {.lex_state = 58, .external_lex_state = 2}, [361] = {.lex_state = 58, .external_lex_state = 2}, [362] = {.lex_state = 58, .external_lex_state = 2}, - [363] = {.lex_state = 5, .external_lex_state = 2}, + [363] = {.lex_state = 58, .external_lex_state = 2}, [364] = {.lex_state = 58, .external_lex_state = 2}, [365] = {.lex_state = 58, .external_lex_state = 2}, - [366] = {.lex_state = 58, .external_lex_state = 2}, + [366] = {.lex_state = 5, .external_lex_state = 2}, [367] = {.lex_state = 58, .external_lex_state = 2}, [368] = {.lex_state = 58, .external_lex_state = 2}, [369] = {.lex_state = 58, .external_lex_state = 2}, @@ -13790,12 +13811,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [448] = {.lex_state = 58, .external_lex_state = 2}, [449] = {.lex_state = 58, .external_lex_state = 2}, [450] = {.lex_state = 58, .external_lex_state = 2}, - [451] = {.lex_state = 5, .external_lex_state = 2}, + [451] = {.lex_state = 58, .external_lex_state = 2}, [452] = {.lex_state = 58, .external_lex_state = 2}, [453] = {.lex_state = 58, .external_lex_state = 2}, [454] = {.lex_state = 5, .external_lex_state = 2}, [455] = {.lex_state = 58, .external_lex_state = 2}, - [456] = {.lex_state = 58, .external_lex_state = 2}, + [456] = {.lex_state = 5, .external_lex_state = 2}, [457] = {.lex_state = 58, .external_lex_state = 2}, [458] = {.lex_state = 58, .external_lex_state = 2}, [459] = {.lex_state = 58, .external_lex_state = 2}, @@ -13820,14 +13841,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [478] = {.lex_state = 58, .external_lex_state = 2}, [479] = {.lex_state = 58, .external_lex_state = 2}, [480] = {.lex_state = 58, .external_lex_state = 2}, - [481] = {.lex_state = 11, .external_lex_state = 2}, - [482] = {.lex_state = 5, .external_lex_state = 2}, - [483] = {.lex_state = 12, .external_lex_state = 2}, + [481] = {.lex_state = 58, .external_lex_state = 2}, + [482] = {.lex_state = 58, .external_lex_state = 2}, + [483] = {.lex_state = 11, .external_lex_state = 2}, [484] = {.lex_state = 5, .external_lex_state = 2}, - [485] = {.lex_state = 11, .external_lex_state = 2}, + [485] = {.lex_state = 12, .external_lex_state = 2}, [486] = {.lex_state = 5, .external_lex_state = 2}, [487] = {.lex_state = 11, .external_lex_state = 2}, - [488] = {.lex_state = 11, .external_lex_state = 2}, + [488] = {.lex_state = 5, .external_lex_state = 2}, [489] = {.lex_state = 11, .external_lex_state = 2}, [490] = {.lex_state = 11, .external_lex_state = 2}, [491] = {.lex_state = 11, .external_lex_state = 2}, @@ -13839,13 +13860,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [497] = {.lex_state = 11, .external_lex_state = 2}, [498] = {.lex_state = 11, .external_lex_state = 2}, [499] = {.lex_state = 11, .external_lex_state = 2}, - [500] = {.lex_state = 5, .external_lex_state = 2}, + [500] = {.lex_state = 11, .external_lex_state = 2}, [501] = {.lex_state = 11, .external_lex_state = 2}, - [502] = {.lex_state = 11, .external_lex_state = 2}, - [503] = {.lex_state = 11, .external_lex_state = 2}, - [504] = {.lex_state = 11, .external_lex_state = 2}, - [505] = {.lex_state = 12, .external_lex_state = 2}, - [506] = {.lex_state = 12, .external_lex_state = 2}, + [502] = {.lex_state = 5, .external_lex_state = 2}, + [503] = {.lex_state = 12, .external_lex_state = 2}, + [504] = {.lex_state = 12, .external_lex_state = 2}, + [505] = {.lex_state = 11, .external_lex_state = 2}, + [506] = {.lex_state = 11, .external_lex_state = 2}, [507] = {.lex_state = 12, .external_lex_state = 2}, [508] = {.lex_state = 12, .external_lex_state = 2}, [509] = {.lex_state = 12, .external_lex_state = 2}, @@ -13854,103 +13875,103 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [512] = {.lex_state = 12, .external_lex_state = 2}, [513] = {.lex_state = 12, .external_lex_state = 2}, [514] = {.lex_state = 12, .external_lex_state = 2}, - [515] = {.lex_state = 11, .external_lex_state = 2}, + [515] = {.lex_state = 12, .external_lex_state = 2}, [516] = {.lex_state = 12, .external_lex_state = 2}, [517] = {.lex_state = 12, .external_lex_state = 2}, [518] = {.lex_state = 12, .external_lex_state = 2}, [519] = {.lex_state = 12, .external_lex_state = 2}, [520] = {.lex_state = 12, .external_lex_state = 2}, [521] = {.lex_state = 12, .external_lex_state = 2}, - [522] = {.lex_state = 11, .external_lex_state = 2}, - [523] = {.lex_state = 12, .external_lex_state = 2}, + [522] = {.lex_state = 12, .external_lex_state = 2}, + [523] = {.lex_state = 11, .external_lex_state = 2}, [524] = {.lex_state = 11, .external_lex_state = 2}, - [525] = {.lex_state = 12, .external_lex_state = 2}, - [526] = {.lex_state = 11, .external_lex_state = 2}, - [527] = {.lex_state = 12, .external_lex_state = 2}, + [525] = {.lex_state = 11, .external_lex_state = 2}, + [526] = {.lex_state = 12, .external_lex_state = 2}, + [527] = {.lex_state = 11, .external_lex_state = 2}, [528] = {.lex_state = 12, .external_lex_state = 2}, - [529] = {.lex_state = 12, .external_lex_state = 2}, + [529] = {.lex_state = 11, .external_lex_state = 2}, [530] = {.lex_state = 12, .external_lex_state = 2}, [531] = {.lex_state = 12, .external_lex_state = 2}, [532] = {.lex_state = 12, .external_lex_state = 2}, [533] = {.lex_state = 12, .external_lex_state = 2}, [534] = {.lex_state = 12, .external_lex_state = 2}, [535] = {.lex_state = 12, .external_lex_state = 2}, - [536] = {.lex_state = 11, .external_lex_state = 2}, + [536] = {.lex_state = 12, .external_lex_state = 2}, [537] = {.lex_state = 12, .external_lex_state = 2}, [538] = {.lex_state = 11, .external_lex_state = 2}, [539] = {.lex_state = 11, .external_lex_state = 2}, [540] = {.lex_state = 11, .external_lex_state = 2}, [541] = {.lex_state = 11, .external_lex_state = 2}, - [542] = {.lex_state = 12, .external_lex_state = 2}, + [542] = {.lex_state = 11, .external_lex_state = 2}, [543] = {.lex_state = 11, .external_lex_state = 2}, [544] = {.lex_state = 12, .external_lex_state = 2}, - [545] = {.lex_state = 5, .external_lex_state = 2}, - [546] = {.lex_state = 5, .external_lex_state = 2}, - [547] = {.lex_state = 4, .external_lex_state = 3}, - [548] = {.lex_state = 4, .external_lex_state = 3}, + [545] = {.lex_state = 11, .external_lex_state = 2}, + [546] = {.lex_state = 12, .external_lex_state = 2}, + [547] = {.lex_state = 5, .external_lex_state = 2}, + [548] = {.lex_state = 5, .external_lex_state = 2}, [549] = {.lex_state = 4, .external_lex_state = 3}, [550] = {.lex_state = 4, .external_lex_state = 3}, [551] = {.lex_state = 4, .external_lex_state = 3}, [552] = {.lex_state = 4, .external_lex_state = 3}, [553] = {.lex_state = 4, .external_lex_state = 3}, [554] = {.lex_state = 4, .external_lex_state = 3}, - [555] = {.lex_state = 5, .external_lex_state = 2}, - [556] = {.lex_state = 5, .external_lex_state = 2}, - [557] = {.lex_state = 4, .external_lex_state = 3}, + [555] = {.lex_state = 4, .external_lex_state = 3}, + [556] = {.lex_state = 4, .external_lex_state = 3}, + [557] = {.lex_state = 5, .external_lex_state = 2}, [558] = {.lex_state = 4, .external_lex_state = 3}, - [559] = {.lex_state = 5, .external_lex_state = 2}, + [559] = {.lex_state = 4, .external_lex_state = 3}, [560] = {.lex_state = 5, .external_lex_state = 2}, - [561] = {.lex_state = 10, .external_lex_state = 2}, - [562] = {.lex_state = 11, .external_lex_state = 2}, + [561] = {.lex_state = 5, .external_lex_state = 2}, + [562] = {.lex_state = 10, .external_lex_state = 2}, [563] = {.lex_state = 5, .external_lex_state = 2}, [564] = {.lex_state = 11, .external_lex_state = 2}, - [565] = {.lex_state = 5, .external_lex_state = 2}, - [566] = {.lex_state = 11, .external_lex_state = 2}, + [565] = {.lex_state = 11, .external_lex_state = 2}, + [566] = {.lex_state = 5, .external_lex_state = 2}, [567] = {.lex_state = 11, .external_lex_state = 2}, [568] = {.lex_state = 11, .external_lex_state = 2}, [569] = {.lex_state = 11, .external_lex_state = 2}, [570] = {.lex_state = 11, .external_lex_state = 2}, [571] = {.lex_state = 11, .external_lex_state = 2}, [572] = {.lex_state = 11, .external_lex_state = 2}, - [573] = {.lex_state = 5, .external_lex_state = 2}, + [573] = {.lex_state = 11, .external_lex_state = 2}, [574] = {.lex_state = 11, .external_lex_state = 2}, [575] = {.lex_state = 5, .external_lex_state = 2}, [576] = {.lex_state = 5, .external_lex_state = 2}, - [577] = {.lex_state = 11, .external_lex_state = 2}, + [577] = {.lex_state = 5, .external_lex_state = 2}, [578] = {.lex_state = 11, .external_lex_state = 2}, [579] = {.lex_state = 11, .external_lex_state = 2}, - [580] = {.lex_state = 11, .external_lex_state = 2}, + [580] = {.lex_state = 5, .external_lex_state = 2}, [581] = {.lex_state = 11, .external_lex_state = 2}, [582] = {.lex_state = 11, .external_lex_state = 2}, - [583] = {.lex_state = 5, .external_lex_state = 2}, - [584] = {.lex_state = 4, .external_lex_state = 3}, - [585] = {.lex_state = 5, .external_lex_state = 2}, + [583] = {.lex_state = 11, .external_lex_state = 2}, + [584] = {.lex_state = 5, .external_lex_state = 2}, + [585] = {.lex_state = 4, .external_lex_state = 3}, [586] = {.lex_state = 5, .external_lex_state = 2}, - [587] = {.lex_state = 5, .external_lex_state = 2}, - [588] = {.lex_state = 12, .external_lex_state = 2}, + [587] = {.lex_state = 11, .external_lex_state = 2}, + [588] = {.lex_state = 4, .external_lex_state = 3}, [589] = {.lex_state = 5, .external_lex_state = 2}, - [590] = {.lex_state = 4, .external_lex_state = 3}, - [591] = {.lex_state = 4, .external_lex_state = 3}, - [592] = {.lex_state = 4, .external_lex_state = 3}, - [593] = {.lex_state = 5, .external_lex_state = 2}, + [590] = {.lex_state = 5, .external_lex_state = 2}, + [591] = {.lex_state = 5, .external_lex_state = 2}, + [592] = {.lex_state = 5, .external_lex_state = 2}, + [593] = {.lex_state = 12, .external_lex_state = 2}, [594] = {.lex_state = 5, .external_lex_state = 2}, - [595] = {.lex_state = 12, .external_lex_state = 2}, + [595] = {.lex_state = 5, .external_lex_state = 2}, [596] = {.lex_state = 5, .external_lex_state = 2}, [597] = {.lex_state = 5, .external_lex_state = 2}, - [598] = {.lex_state = 12, .external_lex_state = 2}, - [599] = {.lex_state = 5, .external_lex_state = 2}, - [600] = {.lex_state = 5, .external_lex_state = 2}, - [601] = {.lex_state = 5, .external_lex_state = 2}, + [598] = {.lex_state = 5, .external_lex_state = 2}, + [599] = {.lex_state = 12, .external_lex_state = 2}, + [600] = {.lex_state = 12, .external_lex_state = 2}, + [601] = {.lex_state = 12, .external_lex_state = 2}, [602] = {.lex_state = 5, .external_lex_state = 2}, - [603] = {.lex_state = 5, .external_lex_state = 2}, - [604] = {.lex_state = 5, .external_lex_state = 2}, + [603] = {.lex_state = 12, .external_lex_state = 2}, + [604] = {.lex_state = 12, .external_lex_state = 2}, [605] = {.lex_state = 5, .external_lex_state = 2}, [606] = {.lex_state = 5, .external_lex_state = 2}, - [607] = {.lex_state = 12, .external_lex_state = 2}, - [608] = {.lex_state = 12, .external_lex_state = 2}, - [609] = {.lex_state = 5, .external_lex_state = 2}, - [610] = {.lex_state = 12, .external_lex_state = 2}, - [611] = {.lex_state = 5, .external_lex_state = 2}, + [607] = {.lex_state = 5, .external_lex_state = 2}, + [608] = {.lex_state = 5, .external_lex_state = 2}, + [609] = {.lex_state = 4, .external_lex_state = 3}, + [610] = {.lex_state = 5, .external_lex_state = 2}, + [611] = {.lex_state = 4, .external_lex_state = 3}, [612] = {.lex_state = 5, .external_lex_state = 2}, [613] = {.lex_state = 5, .external_lex_state = 2}, [614] = {.lex_state = 5, .external_lex_state = 2}, @@ -13959,13 +13980,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [617] = {.lex_state = 4, .external_lex_state = 3}, [618] = {.lex_state = 5, .external_lex_state = 2}, [619] = {.lex_state = 5, .external_lex_state = 2}, - [620] = {.lex_state = 4, .external_lex_state = 3}, + [620] = {.lex_state = 5, .external_lex_state = 2}, [621] = {.lex_state = 5, .external_lex_state = 2}, [622] = {.lex_state = 4, .external_lex_state = 3}, [623] = {.lex_state = 4, .external_lex_state = 3}, [624] = {.lex_state = 4, .external_lex_state = 3}, [625] = {.lex_state = 4, .external_lex_state = 3}, - [626] = {.lex_state = 4, .external_lex_state = 3}, + [626] = {.lex_state = 5, .external_lex_state = 2}, [627] = {.lex_state = 4, .external_lex_state = 3}, [628] = {.lex_state = 4, .external_lex_state = 3}, [629] = {.lex_state = 4, .external_lex_state = 3}, @@ -13981,7 +14002,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [639] = {.lex_state = 4, .external_lex_state = 3}, [640] = {.lex_state = 4, .external_lex_state = 3}, [641] = {.lex_state = 4, .external_lex_state = 3}, - [642] = {.lex_state = 4, .external_lex_state = 3}, + [642] = {.lex_state = 5, .external_lex_state = 2}, [643] = {.lex_state = 4, .external_lex_state = 3}, [644] = {.lex_state = 4, .external_lex_state = 3}, [645] = {.lex_state = 4, .external_lex_state = 3}, @@ -14068,7 +14089,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [726] = {.lex_state = 4, .external_lex_state = 3}, [727] = {.lex_state = 4, .external_lex_state = 3}, [728] = {.lex_state = 4, .external_lex_state = 3}, - [729] = {.lex_state = 5, .external_lex_state = 2}, + [729] = {.lex_state = 4, .external_lex_state = 3}, [730] = {.lex_state = 4, .external_lex_state = 3}, [731] = {.lex_state = 4, .external_lex_state = 3}, [732] = {.lex_state = 4, .external_lex_state = 3}, @@ -14088,50 +14109,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [746] = {.lex_state = 4, .external_lex_state = 3}, [747] = {.lex_state = 4, .external_lex_state = 3}, [748] = {.lex_state = 4, .external_lex_state = 3}, - [749] = {.lex_state = 5, .external_lex_state = 2}, - [750] = {.lex_state = 5, .external_lex_state = 2}, + [749] = {.lex_state = 4, .external_lex_state = 3}, + [750] = {.lex_state = 4, .external_lex_state = 3}, [751] = {.lex_state = 5, .external_lex_state = 2}, [752] = {.lex_state = 5, .external_lex_state = 2}, - [753] = {.lex_state = 6, .external_lex_state = 2}, - [754] = {.lex_state = 3, .external_lex_state = 3}, - [755] = {.lex_state = 3, .external_lex_state = 3}, + [753] = {.lex_state = 5, .external_lex_state = 2}, + [754] = {.lex_state = 5, .external_lex_state = 2}, + [755] = {.lex_state = 6, .external_lex_state = 2}, [756] = {.lex_state = 3, .external_lex_state = 3}, - [757] = {.lex_state = 14, .external_lex_state = 3}, - [758] = {.lex_state = 2, .external_lex_state = 3}, + [757] = {.lex_state = 3, .external_lex_state = 3}, + [758] = {.lex_state = 3, .external_lex_state = 3}, [759] = {.lex_state = 3, .external_lex_state = 3}, - [760] = {.lex_state = 2, .external_lex_state = 3}, - [761] = {.lex_state = 14, .external_lex_state = 3}, + [760] = {.lex_state = 3, .external_lex_state = 3}, + [761] = {.lex_state = 3, .external_lex_state = 3}, [762] = {.lex_state = 3, .external_lex_state = 3}, - [763] = {.lex_state = 3, .external_lex_state = 3}, - [764] = {.lex_state = 3, .external_lex_state = 3}, - [765] = {.lex_state = 3, .external_lex_state = 3}, - [766] = {.lex_state = 14, .external_lex_state = 3}, - [767] = {.lex_state = 3, .external_lex_state = 3}, + [763] = {.lex_state = 2, .external_lex_state = 3}, + [764] = {.lex_state = 14, .external_lex_state = 3}, + [765] = {.lex_state = 2, .external_lex_state = 3}, + [766] = {.lex_state = 3, .external_lex_state = 3}, + [767] = {.lex_state = 14, .external_lex_state = 3}, [768] = {.lex_state = 14, .external_lex_state = 3}, [769] = {.lex_state = 3, .external_lex_state = 3}, [770] = {.lex_state = 14, .external_lex_state = 3}, - [771] = {.lex_state = 2, .external_lex_state = 3}, - [772] = {.lex_state = 2, .external_lex_state = 3}, + [771] = {.lex_state = 14, .external_lex_state = 3}, + [772] = {.lex_state = 3, .external_lex_state = 3}, [773] = {.lex_state = 2, .external_lex_state = 3}, [774] = {.lex_state = 2, .external_lex_state = 3}, [775] = {.lex_state = 2, .external_lex_state = 3}, [776] = {.lex_state = 2, .external_lex_state = 3}, [777] = {.lex_state = 2, .external_lex_state = 3}, [778] = {.lex_state = 2, .external_lex_state = 3}, - [779] = {.lex_state = 14, .external_lex_state = 3}, + [779] = {.lex_state = 2, .external_lex_state = 3}, [780] = {.lex_state = 14, .external_lex_state = 3}, [781] = {.lex_state = 14, .external_lex_state = 3}, [782] = {.lex_state = 14, .external_lex_state = 3}, [783] = {.lex_state = 14, .external_lex_state = 3}, [784] = {.lex_state = 14, .external_lex_state = 3}, [785] = {.lex_state = 2, .external_lex_state = 3}, - [786] = {.lex_state = 9, .external_lex_state = 3}, + [786] = {.lex_state = 14, .external_lex_state = 3}, [787] = {.lex_state = 14, .external_lex_state = 3}, [788] = {.lex_state = 14, .external_lex_state = 3}, [789] = {.lex_state = 14, .external_lex_state = 3}, - [790] = {.lex_state = 2, .external_lex_state = 3}, + [790] = {.lex_state = 14, .external_lex_state = 3}, [791] = {.lex_state = 14, .external_lex_state = 3}, - [792] = {.lex_state = 2, .external_lex_state = 3}, + [792] = {.lex_state = 14, .external_lex_state = 3}, [793] = {.lex_state = 14, .external_lex_state = 3}, [794] = {.lex_state = 14, .external_lex_state = 3}, [795] = {.lex_state = 14, .external_lex_state = 3}, @@ -14141,7 +14162,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [799] = {.lex_state = 14, .external_lex_state = 3}, [800] = {.lex_state = 14, .external_lex_state = 3}, [801] = {.lex_state = 14, .external_lex_state = 3}, - [802] = {.lex_state = 2, .external_lex_state = 3}, + [802] = {.lex_state = 9, .external_lex_state = 3}, [803] = {.lex_state = 14, .external_lex_state = 3}, [804] = {.lex_state = 14, .external_lex_state = 3}, [805] = {.lex_state = 14, .external_lex_state = 3}, @@ -14150,24 +14171,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [808] = {.lex_state = 14, .external_lex_state = 3}, [809] = {.lex_state = 14, .external_lex_state = 3}, [810] = {.lex_state = 14, .external_lex_state = 3}, - [811] = {.lex_state = 2, .external_lex_state = 3}, - [812] = {.lex_state = 2, .external_lex_state = 3}, - [813] = {.lex_state = 2, .external_lex_state = 3}, + [811] = {.lex_state = 14, .external_lex_state = 3}, + [812] = {.lex_state = 14, .external_lex_state = 3}, + [813] = {.lex_state = 14, .external_lex_state = 3}, [814] = {.lex_state = 14, .external_lex_state = 3}, [815] = {.lex_state = 14, .external_lex_state = 3}, - [816] = {.lex_state = 2, .external_lex_state = 3}, + [816] = {.lex_state = 14, .external_lex_state = 3}, [817] = {.lex_state = 14, .external_lex_state = 3}, [818] = {.lex_state = 14, .external_lex_state = 3}, - [819] = {.lex_state = 14, .external_lex_state = 3}, - [820] = {.lex_state = 14, .external_lex_state = 3}, - [821] = {.lex_state = 14, .external_lex_state = 3}, - [822] = {.lex_state = 14, .external_lex_state = 3}, + [819] = {.lex_state = 2, .external_lex_state = 3}, + [820] = {.lex_state = 2, .external_lex_state = 3}, + [821] = {.lex_state = 2, .external_lex_state = 3}, + [822] = {.lex_state = 2, .external_lex_state = 3}, [823] = {.lex_state = 14, .external_lex_state = 3}, - [824] = {.lex_state = 2, .external_lex_state = 3}, + [824] = {.lex_state = 14, .external_lex_state = 3}, [825] = {.lex_state = 14, .external_lex_state = 3}, [826] = {.lex_state = 14, .external_lex_state = 3}, [827] = {.lex_state = 14, .external_lex_state = 3}, - [828] = {.lex_state = 14, .external_lex_state = 3}, + [828] = {.lex_state = 2, .external_lex_state = 3}, [829] = {.lex_state = 14, .external_lex_state = 3}, [830] = {.lex_state = 14, .external_lex_state = 3}, [831] = {.lex_state = 14, .external_lex_state = 3}, @@ -14186,8 +14207,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [844] = {.lex_state = 14, .external_lex_state = 3}, [845] = {.lex_state = 14, .external_lex_state = 3}, [846] = {.lex_state = 14, .external_lex_state = 3}, - [847] = {.lex_state = 14, .external_lex_state = 3}, - [848] = {.lex_state = 14, .external_lex_state = 3}, + [847] = {.lex_state = 2, .external_lex_state = 3}, + [848] = {.lex_state = 2, .external_lex_state = 3}, [849] = {.lex_state = 14, .external_lex_state = 3}, [850] = {.lex_state = 14, .external_lex_state = 3}, [851] = {.lex_state = 14, .external_lex_state = 3}, @@ -14202,27 +14223,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [860] = {.lex_state = 14, .external_lex_state = 3}, [861] = {.lex_state = 14, .external_lex_state = 3}, [862] = {.lex_state = 14, .external_lex_state = 3}, - [863] = {.lex_state = 14, .external_lex_state = 3}, + [863] = {.lex_state = 2, .external_lex_state = 3}, [864] = {.lex_state = 14, .external_lex_state = 3}, [865] = {.lex_state = 14, .external_lex_state = 3}, [866] = {.lex_state = 14, .external_lex_state = 3}, [867] = {.lex_state = 14, .external_lex_state = 3}, - [868] = {.lex_state = 2, .external_lex_state = 3}, - [869] = {.lex_state = 2, .external_lex_state = 3}, + [868] = {.lex_state = 14, .external_lex_state = 3}, + [869] = {.lex_state = 14, .external_lex_state = 3}, [870] = {.lex_state = 14, .external_lex_state = 3}, [871] = {.lex_state = 14, .external_lex_state = 3}, [872] = {.lex_state = 14, .external_lex_state = 3}, [873] = {.lex_state = 14, .external_lex_state = 3}, [874] = {.lex_state = 14, .external_lex_state = 3}, - [875] = {.lex_state = 2, .external_lex_state = 3}, + [875] = {.lex_state = 14, .external_lex_state = 3}, [876] = {.lex_state = 14, .external_lex_state = 3}, - [877] = {.lex_state = 2, .external_lex_state = 3}, + [877] = {.lex_state = 14, .external_lex_state = 3}, [878] = {.lex_state = 14, .external_lex_state = 3}, [879] = {.lex_state = 14, .external_lex_state = 3}, [880] = {.lex_state = 14, .external_lex_state = 3}, [881] = {.lex_state = 14, .external_lex_state = 3}, [882] = {.lex_state = 14, .external_lex_state = 3}, - [883] = {.lex_state = 14, .external_lex_state = 3}, + [883] = {.lex_state = 2, .external_lex_state = 3}, [884] = {.lex_state = 14, .external_lex_state = 3}, [885] = {.lex_state = 14, .external_lex_state = 3}, [886] = {.lex_state = 14, .external_lex_state = 3}, @@ -14247,14 +14268,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [905] = {.lex_state = 14, .external_lex_state = 3}, [906] = {.lex_state = 14, .external_lex_state = 3}, [907] = {.lex_state = 14, .external_lex_state = 3}, - [908] = {.lex_state = 14, .external_lex_state = 3}, + [908] = {.lex_state = 2, .external_lex_state = 3}, [909] = {.lex_state = 14, .external_lex_state = 3}, [910] = {.lex_state = 14, .external_lex_state = 3}, [911] = {.lex_state = 14, .external_lex_state = 3}, - [912] = {.lex_state = 2, .external_lex_state = 3}, - [913] = {.lex_state = 14, .external_lex_state = 3}, + [912] = {.lex_state = 14, .external_lex_state = 3}, + [913] = {.lex_state = 3, .external_lex_state = 3}, [914] = {.lex_state = 14, .external_lex_state = 3}, - [915] = {.lex_state = 2, .external_lex_state = 3}, + [915] = {.lex_state = 14, .external_lex_state = 3}, [916] = {.lex_state = 14, .external_lex_state = 3}, [917] = {.lex_state = 14, .external_lex_state = 3}, [918] = {.lex_state = 2, .external_lex_state = 3}, @@ -14265,14 +14286,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [923] = {.lex_state = 14, .external_lex_state = 3}, [924] = {.lex_state = 14, .external_lex_state = 3}, [925] = {.lex_state = 14, .external_lex_state = 3}, - [926] = {.lex_state = 2, .external_lex_state = 3}, + [926] = {.lex_state = 14, .external_lex_state = 3}, [927] = {.lex_state = 14, .external_lex_state = 3}, [928] = {.lex_state = 14, .external_lex_state = 3}, - [929] = {.lex_state = 14, .external_lex_state = 3}, - [930] = {.lex_state = 14, .external_lex_state = 3}, + [929] = {.lex_state = 2, .external_lex_state = 3}, + [930] = {.lex_state = 2, .external_lex_state = 3}, [931] = {.lex_state = 14, .external_lex_state = 3}, - [932] = {.lex_state = 14, .external_lex_state = 3}, - [933] = {.lex_state = 14, .external_lex_state = 3}, + [932] = {.lex_state = 2, .external_lex_state = 3}, + [933] = {.lex_state = 2, .external_lex_state = 3}, [934] = {.lex_state = 14, .external_lex_state = 3}, [935] = {.lex_state = 14, .external_lex_state = 3}, [936] = {.lex_state = 14, .external_lex_state = 3}, @@ -14288,10 +14309,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [946] = {.lex_state = 14, .external_lex_state = 3}, [947] = {.lex_state = 14, .external_lex_state = 3}, [948] = {.lex_state = 14, .external_lex_state = 3}, - [949] = {.lex_state = 14, .external_lex_state = 3}, + [949] = {.lex_state = 2, .external_lex_state = 3}, [950] = {.lex_state = 14, .external_lex_state = 3}, [951] = {.lex_state = 14, .external_lex_state = 3}, - [952] = {.lex_state = 14, .external_lex_state = 3}, + [952] = {.lex_state = 2, .external_lex_state = 3}, [953] = {.lex_state = 14, .external_lex_state = 3}, [954] = {.lex_state = 14, .external_lex_state = 3}, [955] = {.lex_state = 14, .external_lex_state = 3}, @@ -14299,55 +14320,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [957] = {.lex_state = 14, .external_lex_state = 3}, [958] = {.lex_state = 14, .external_lex_state = 3}, [959] = {.lex_state = 14, .external_lex_state = 3}, - [960] = {.lex_state = 2, .external_lex_state = 3}, + [960] = {.lex_state = 14, .external_lex_state = 3}, [961] = {.lex_state = 14, .external_lex_state = 3}, - [962] = {.lex_state = 2, .external_lex_state = 3}, + [962] = {.lex_state = 14, .external_lex_state = 3}, [963] = {.lex_state = 14, .external_lex_state = 3}, [964] = {.lex_state = 14, .external_lex_state = 3}, - [965] = {.lex_state = 14, .external_lex_state = 3}, - [966] = {.lex_state = 2, .external_lex_state = 3}, + [965] = {.lex_state = 2, .external_lex_state = 3}, + [966] = {.lex_state = 14, .external_lex_state = 3}, [967] = {.lex_state = 14, .external_lex_state = 3}, - [968] = {.lex_state = 2, .external_lex_state = 3}, - [969] = {.lex_state = 14, .external_lex_state = 3}, + [968] = {.lex_state = 14, .external_lex_state = 3}, + [969] = {.lex_state = 2, .external_lex_state = 3}, [970] = {.lex_state = 14, .external_lex_state = 3}, [971] = {.lex_state = 14, .external_lex_state = 3}, [972] = {.lex_state = 14, .external_lex_state = 3}, [973] = {.lex_state = 14, .external_lex_state = 3}, [974] = {.lex_state = 14, .external_lex_state = 3}, [975] = {.lex_state = 14, .external_lex_state = 3}, - [976] = {.lex_state = 14, .external_lex_state = 3}, + [976] = {.lex_state = 2, .external_lex_state = 3}, [977] = {.lex_state = 14, .external_lex_state = 3}, - [978] = {.lex_state = 14, .external_lex_state = 3}, + [978] = {.lex_state = 2, .external_lex_state = 3}, [979] = {.lex_state = 14, .external_lex_state = 3}, - [980] = {.lex_state = 14, .external_lex_state = 3}, - [981] = {.lex_state = 14, .external_lex_state = 3}, - [982] = {.lex_state = 14, .external_lex_state = 3}, + [980] = {.lex_state = 2, .external_lex_state = 3}, + [981] = {.lex_state = 2, .external_lex_state = 3}, + [982] = {.lex_state = 2, .external_lex_state = 3}, [983] = {.lex_state = 2, .external_lex_state = 3}, [984] = {.lex_state = 14, .external_lex_state = 3}, [985] = {.lex_state = 14, .external_lex_state = 3}, - [986] = {.lex_state = 14, .external_lex_state = 3}, - [987] = {.lex_state = 2, .external_lex_state = 3}, + [986] = {.lex_state = 2, .external_lex_state = 3}, + [987] = {.lex_state = 14, .external_lex_state = 3}, [988] = {.lex_state = 14, .external_lex_state = 3}, - [989] = {.lex_state = 14, .external_lex_state = 3}, + [989] = {.lex_state = 2, .external_lex_state = 3}, [990] = {.lex_state = 14, .external_lex_state = 3}, [991] = {.lex_state = 14, .external_lex_state = 3}, - [992] = {.lex_state = 2, .external_lex_state = 3}, + [992] = {.lex_state = 14, .external_lex_state = 3}, [993] = {.lex_state = 2, .external_lex_state = 3}, [994] = {.lex_state = 14, .external_lex_state = 3}, [995] = {.lex_state = 14, .external_lex_state = 3}, [996] = {.lex_state = 14, .external_lex_state = 3}, - [997] = {.lex_state = 2, .external_lex_state = 3}, + [997] = {.lex_state = 14, .external_lex_state = 3}, [998] = {.lex_state = 14, .external_lex_state = 3}, [999] = {.lex_state = 14, .external_lex_state = 3}, [1000] = {.lex_state = 14, .external_lex_state = 3}, - [1001] = {.lex_state = 2, .external_lex_state = 3}, + [1001] = {.lex_state = 14, .external_lex_state = 3}, [1002] = {.lex_state = 14, .external_lex_state = 3}, [1003] = {.lex_state = 14, .external_lex_state = 3}, [1004] = {.lex_state = 14, .external_lex_state = 3}, [1005] = {.lex_state = 14, .external_lex_state = 3}, [1006] = {.lex_state = 14, .external_lex_state = 3}, [1007] = {.lex_state = 14, .external_lex_state = 3}, - [1008] = {.lex_state = 2, .external_lex_state = 3}, + [1008] = {.lex_state = 14, .external_lex_state = 3}, [1009] = {.lex_state = 14, .external_lex_state = 3}, [1010] = {.lex_state = 14, .external_lex_state = 3}, [1011] = {.lex_state = 14, .external_lex_state = 3}, @@ -14360,23 +14381,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1018] = {.lex_state = 14, .external_lex_state = 3}, [1019] = {.lex_state = 14, .external_lex_state = 3}, [1020] = {.lex_state = 14, .external_lex_state = 3}, - [1021] = {.lex_state = 14, .external_lex_state = 3}, + [1021] = {.lex_state = 2, .external_lex_state = 3}, [1022] = {.lex_state = 14, .external_lex_state = 3}, [1023] = {.lex_state = 14, .external_lex_state = 3}, [1024] = {.lex_state = 14, .external_lex_state = 3}, - [1025] = {.lex_state = 2, .external_lex_state = 3}, + [1025] = {.lex_state = 14, .external_lex_state = 3}, [1026] = {.lex_state = 14, .external_lex_state = 3}, - [1027] = {.lex_state = 2, .external_lex_state = 3}, + [1027] = {.lex_state = 14, .external_lex_state = 3}, [1028] = {.lex_state = 14, .external_lex_state = 3}, [1029] = {.lex_state = 14, .external_lex_state = 3}, [1030] = {.lex_state = 14, .external_lex_state = 3}, - [1031] = {.lex_state = 3, .external_lex_state = 3}, + [1031] = {.lex_state = 14, .external_lex_state = 3}, [1032] = {.lex_state = 14, .external_lex_state = 3}, [1033] = {.lex_state = 14, .external_lex_state = 3}, - [1034] = {.lex_state = 14, .external_lex_state = 3}, + [1034] = {.lex_state = 2, .external_lex_state = 3}, [1035] = {.lex_state = 14, .external_lex_state = 3}, - [1036] = {.lex_state = 2, .external_lex_state = 3}, - [1037] = {.lex_state = 2, .external_lex_state = 3}, + [1036] = {.lex_state = 14, .external_lex_state = 3}, + [1037] = {.lex_state = 14, .external_lex_state = 3}, [1038] = {.lex_state = 2, .external_lex_state = 3}, [1039] = {.lex_state = 2, .external_lex_state = 3}, [1040] = {.lex_state = 2, .external_lex_state = 3}, @@ -14387,9 +14408,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1045] = {.lex_state = 2, .external_lex_state = 3}, [1046] = {.lex_state = 2, .external_lex_state = 3}, [1047] = {.lex_state = 2, .external_lex_state = 3}, - [1048] = {.lex_state = 4, .external_lex_state = 3}, - [1049] = {.lex_state = 4, .external_lex_state = 3}, - [1050] = {.lex_state = 2, .external_lex_state = 3}, + [1048] = {.lex_state = 2, .external_lex_state = 3}, + [1049] = {.lex_state = 2, .external_lex_state = 3}, + [1050] = {.lex_state = 5, .external_lex_state = 2}, [1051] = {.lex_state = 2, .external_lex_state = 3}, [1052] = {.lex_state = 2, .external_lex_state = 3}, [1053] = {.lex_state = 2, .external_lex_state = 3}, @@ -14397,50 +14418,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1055] = {.lex_state = 2, .external_lex_state = 3}, [1056] = {.lex_state = 2, .external_lex_state = 3}, [1057] = {.lex_state = 2, .external_lex_state = 3}, - [1058] = {.lex_state = 4, .external_lex_state = 3}, + [1058] = {.lex_state = 2, .external_lex_state = 3}, [1059] = {.lex_state = 2, .external_lex_state = 3}, [1060] = {.lex_state = 2, .external_lex_state = 3}, [1061] = {.lex_state = 2, .external_lex_state = 3}, [1062] = {.lex_state = 2, .external_lex_state = 3}, - [1063] = {.lex_state = 2, .external_lex_state = 3}, + [1063] = {.lex_state = 4, .external_lex_state = 3}, [1064] = {.lex_state = 2, .external_lex_state = 3}, [1065] = {.lex_state = 2, .external_lex_state = 3}, - [1066] = {.lex_state = 2, .external_lex_state = 3}, + [1066] = {.lex_state = 5, .external_lex_state = 2}, [1067] = {.lex_state = 2, .external_lex_state = 3}, [1068] = {.lex_state = 2, .external_lex_state = 3}, - [1069] = {.lex_state = 4, .external_lex_state = 3}, + [1069] = {.lex_state = 2, .external_lex_state = 3}, [1070] = {.lex_state = 2, .external_lex_state = 3}, [1071] = {.lex_state = 2, .external_lex_state = 3}, - [1072] = {.lex_state = 4, .external_lex_state = 3}, + [1072] = {.lex_state = 2, .external_lex_state = 3}, [1073] = {.lex_state = 2, .external_lex_state = 3}, [1074] = {.lex_state = 2, .external_lex_state = 3}, [1075] = {.lex_state = 2, .external_lex_state = 3}, - [1076] = {.lex_state = 2, .external_lex_state = 3}, + [1076] = {.lex_state = 4, .external_lex_state = 3}, [1077] = {.lex_state = 2, .external_lex_state = 3}, - [1078] = {.lex_state = 2, .external_lex_state = 3}, + [1078] = {.lex_state = 4, .external_lex_state = 3}, [1079] = {.lex_state = 2, .external_lex_state = 3}, [1080] = {.lex_state = 2, .external_lex_state = 3}, [1081] = {.lex_state = 2, .external_lex_state = 3}, - [1082] = {.lex_state = 5, .external_lex_state = 2}, + [1082] = {.lex_state = 2, .external_lex_state = 3}, [1083] = {.lex_state = 2, .external_lex_state = 3}, [1084] = {.lex_state = 2, .external_lex_state = 3}, [1085] = {.lex_state = 2, .external_lex_state = 3}, - [1086] = {.lex_state = 4, .external_lex_state = 3}, - [1087] = {.lex_state = 4, .external_lex_state = 3}, + [1086] = {.lex_state = 2, .external_lex_state = 3}, + [1087] = {.lex_state = 2, .external_lex_state = 3}, [1088] = {.lex_state = 2, .external_lex_state = 3}, [1089] = {.lex_state = 2, .external_lex_state = 3}, [1090] = {.lex_state = 2, .external_lex_state = 3}, [1091] = {.lex_state = 2, .external_lex_state = 3}, - [1092] = {.lex_state = 4, .external_lex_state = 3}, + [1092] = {.lex_state = 2, .external_lex_state = 3}, [1093] = {.lex_state = 2, .external_lex_state = 3}, [1094] = {.lex_state = 2, .external_lex_state = 3}, - [1095] = {.lex_state = 4, .external_lex_state = 3}, + [1095] = {.lex_state = 2, .external_lex_state = 3}, [1096] = {.lex_state = 2, .external_lex_state = 3}, [1097] = {.lex_state = 2, .external_lex_state = 3}, [1098] = {.lex_state = 2, .external_lex_state = 3}, [1099] = {.lex_state = 2, .external_lex_state = 3}, [1100] = {.lex_state = 2, .external_lex_state = 3}, - [1101] = {.lex_state = 2, .external_lex_state = 3}, + [1101] = {.lex_state = 4, .external_lex_state = 3}, [1102] = {.lex_state = 2, .external_lex_state = 3}, [1103] = {.lex_state = 2, .external_lex_state = 3}, [1104] = {.lex_state = 2, .external_lex_state = 3}, @@ -14450,7 +14471,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1108] = {.lex_state = 2, .external_lex_state = 3}, [1109] = {.lex_state = 2, .external_lex_state = 3}, [1110] = {.lex_state = 2, .external_lex_state = 3}, - [1111] = {.lex_state = 2, .external_lex_state = 3}, + [1111] = {.lex_state = 4, .external_lex_state = 3}, [1112] = {.lex_state = 2, .external_lex_state = 3}, [1113] = {.lex_state = 2, .external_lex_state = 3}, [1114] = {.lex_state = 2, .external_lex_state = 3}, @@ -14460,22 +14481,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1118] = {.lex_state = 2, .external_lex_state = 3}, [1119] = {.lex_state = 2, .external_lex_state = 3}, [1120] = {.lex_state = 2, .external_lex_state = 3}, - [1121] = {.lex_state = 2, .external_lex_state = 3}, + [1121] = {.lex_state = 4, .external_lex_state = 3}, [1122] = {.lex_state = 2, .external_lex_state = 3}, - [1123] = {.lex_state = 5, .external_lex_state = 2}, + [1123] = {.lex_state = 2, .external_lex_state = 3}, [1124] = {.lex_state = 2, .external_lex_state = 3}, [1125] = {.lex_state = 2, .external_lex_state = 3}, [1126] = {.lex_state = 2, .external_lex_state = 3}, - [1127] = {.lex_state = 2, .external_lex_state = 3}, - [1128] = {.lex_state = 2, .external_lex_state = 3}, + [1127] = {.lex_state = 4, .external_lex_state = 3}, + [1128] = {.lex_state = 4, .external_lex_state = 3}, [1129] = {.lex_state = 2, .external_lex_state = 3}, [1130] = {.lex_state = 2, .external_lex_state = 3}, [1131] = {.lex_state = 2, .external_lex_state = 3}, - [1132] = {.lex_state = 2, .external_lex_state = 3}, + [1132] = {.lex_state = 4, .external_lex_state = 3}, [1133] = {.lex_state = 2, .external_lex_state = 3}, - [1134] = {.lex_state = 5, .external_lex_state = 2}, + [1134] = {.lex_state = 2, .external_lex_state = 3}, [1135] = {.lex_state = 2, .external_lex_state = 3}, - [1136] = {.lex_state = 5, .external_lex_state = 2}, + [1136] = {.lex_state = 2, .external_lex_state = 3}, [1137] = {.lex_state = 2, .external_lex_state = 3}, [1138] = {.lex_state = 2, .external_lex_state = 3}, [1139] = {.lex_state = 2, .external_lex_state = 3}, @@ -14487,53 +14508,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1145] = {.lex_state = 2, .external_lex_state = 3}, [1146] = {.lex_state = 2, .external_lex_state = 3}, [1147] = {.lex_state = 2, .external_lex_state = 3}, - [1148] = {.lex_state = 2, .external_lex_state = 3}, + [1148] = {.lex_state = 5, .external_lex_state = 2}, [1149] = {.lex_state = 2, .external_lex_state = 3}, [1150] = {.lex_state = 2, .external_lex_state = 3}, - [1151] = {.lex_state = 2, .external_lex_state = 3}, + [1151] = {.lex_state = 5, .external_lex_state = 2}, [1152] = {.lex_state = 2, .external_lex_state = 3}, [1153] = {.lex_state = 2, .external_lex_state = 3}, [1154] = {.lex_state = 2, .external_lex_state = 3}, [1155] = {.lex_state = 2, .external_lex_state = 3}, - [1156] = {.lex_state = 5, .external_lex_state = 2}, - [1157] = {.lex_state = 4, .external_lex_state = 3}, + [1156] = {.lex_state = 2, .external_lex_state = 3}, + [1157] = {.lex_state = 2, .external_lex_state = 3}, [1158] = {.lex_state = 4, .external_lex_state = 3}, - [1159] = {.lex_state = 4, .external_lex_state = 3}, + [1159] = {.lex_state = 5, .external_lex_state = 2}, [1160] = {.lex_state = 4, .external_lex_state = 3}, [1161] = {.lex_state = 4, .external_lex_state = 3}, - [1162] = {.lex_state = 4, .external_lex_state = 3}, + [1162] = {.lex_state = 2, .external_lex_state = 3}, [1163] = {.lex_state = 4, .external_lex_state = 3}, [1164] = {.lex_state = 4, .external_lex_state = 3}, - [1165] = {.lex_state = 2, .external_lex_state = 3}, - [1166] = {.lex_state = 5, .external_lex_state = 2}, - [1167] = {.lex_state = 5, .external_lex_state = 2}, + [1165] = {.lex_state = 4, .external_lex_state = 3}, + [1166] = {.lex_state = 4, .external_lex_state = 3}, + [1167] = {.lex_state = 4, .external_lex_state = 3}, [1168] = {.lex_state = 5, .external_lex_state = 2}, [1169] = {.lex_state = 5, .external_lex_state = 2}, - [1170] = {.lex_state = 2, .external_lex_state = 3}, - [1171] = {.lex_state = 2, .external_lex_state = 3}, - [1172] = {.lex_state = 4, .external_lex_state = 3}, - [1173] = {.lex_state = 4, .external_lex_state = 3}, - [1174] = {.lex_state = 2, .external_lex_state = 3}, - [1175] = {.lex_state = 2, .external_lex_state = 3}, - [1176] = {.lex_state = 5, .external_lex_state = 2}, - [1177] = {.lex_state = 2, .external_lex_state = 3}, + [1170] = {.lex_state = 5, .external_lex_state = 2}, + [1171] = {.lex_state = 5, .external_lex_state = 2}, + [1172] = {.lex_state = 2, .external_lex_state = 3}, + [1173] = {.lex_state = 2, .external_lex_state = 3}, + [1174] = {.lex_state = 4, .external_lex_state = 3}, + [1175] = {.lex_state = 4, .external_lex_state = 3}, + [1176] = {.lex_state = 2, .external_lex_state = 3}, + [1177] = {.lex_state = 4, .external_lex_state = 3}, [1178] = {.lex_state = 4, .external_lex_state = 3}, [1179] = {.lex_state = 2, .external_lex_state = 3}, [1180] = {.lex_state = 4, .external_lex_state = 3}, - [1181] = {.lex_state = 4, .external_lex_state = 3}, + [1181] = {.lex_state = 5, .external_lex_state = 2}, [1182] = {.lex_state = 2, .external_lex_state = 3}, - [1183] = {.lex_state = 4, .external_lex_state = 3}, - [1184] = {.lex_state = 2, .external_lex_state = 3}, - [1185] = {.lex_state = 2, .external_lex_state = 3}, + [1183] = {.lex_state = 2, .external_lex_state = 3}, + [1184] = {.lex_state = 4, .external_lex_state = 3}, + [1185] = {.lex_state = 4, .external_lex_state = 3}, [1186] = {.lex_state = 2, .external_lex_state = 3}, - [1187] = {.lex_state = 4, .external_lex_state = 3}, + [1187] = {.lex_state = 2, .external_lex_state = 3}, [1188] = {.lex_state = 2, .external_lex_state = 3}, [1189] = {.lex_state = 2, .external_lex_state = 3}, - [1190] = {.lex_state = 4, .external_lex_state = 3}, + [1190] = {.lex_state = 2, .external_lex_state = 3}, [1191] = {.lex_state = 4, .external_lex_state = 3}, [1192] = {.lex_state = 2, .external_lex_state = 3}, [1193] = {.lex_state = 2, .external_lex_state = 3}, - [1194] = {.lex_state = 2, .external_lex_state = 3}, + [1194] = {.lex_state = 4, .external_lex_state = 3}, [1195] = {.lex_state = 2, .external_lex_state = 3}, [1196] = {.lex_state = 2, .external_lex_state = 3}, [1197] = {.lex_state = 2, .external_lex_state = 3}, @@ -14566,7 +14587,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1224] = {.lex_state = 2, .external_lex_state = 3}, [1225] = {.lex_state = 2, .external_lex_state = 3}, [1226] = {.lex_state = 2, .external_lex_state = 3}, - [1227] = {.lex_state = 4, .external_lex_state = 3}, + [1227] = {.lex_state = 2, .external_lex_state = 3}, [1228] = {.lex_state = 2, .external_lex_state = 3}, [1229] = {.lex_state = 2, .external_lex_state = 3}, [1230] = {.lex_state = 2, .external_lex_state = 3}, @@ -14594,7 +14615,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1252] = {.lex_state = 2, .external_lex_state = 3}, [1253] = {.lex_state = 2, .external_lex_state = 3}, [1254] = {.lex_state = 2, .external_lex_state = 3}, - [1255] = {.lex_state = 2, .external_lex_state = 3}, + [1255] = {.lex_state = 4, .external_lex_state = 3}, [1256] = {.lex_state = 2, .external_lex_state = 3}, [1257] = {.lex_state = 2, .external_lex_state = 3}, [1258] = {.lex_state = 2, .external_lex_state = 3}, @@ -14603,7 +14624,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1261] = {.lex_state = 2, .external_lex_state = 3}, [1262] = {.lex_state = 2, .external_lex_state = 3}, [1263] = {.lex_state = 2, .external_lex_state = 3}, - [1264] = {.lex_state = 2, .external_lex_state = 3}, + [1264] = {.lex_state = 4, .external_lex_state = 3}, [1265] = {.lex_state = 2, .external_lex_state = 3}, [1266] = {.lex_state = 2, .external_lex_state = 3}, [1267] = {.lex_state = 2, .external_lex_state = 3}, @@ -14616,15 +14637,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1274] = {.lex_state = 2, .external_lex_state = 3}, [1275] = {.lex_state = 2, .external_lex_state = 3}, [1276] = {.lex_state = 2, .external_lex_state = 3}, - [1277] = {.lex_state = 4, .external_lex_state = 3}, + [1277] = {.lex_state = 2, .external_lex_state = 3}, [1278] = {.lex_state = 2, .external_lex_state = 3}, [1279] = {.lex_state = 2, .external_lex_state = 3}, [1280] = {.lex_state = 2, .external_lex_state = 3}, [1281] = {.lex_state = 2, .external_lex_state = 3}, [1282] = {.lex_state = 2, .external_lex_state = 3}, - [1283] = {.lex_state = 4, .external_lex_state = 3}, + [1283] = {.lex_state = 2, .external_lex_state = 3}, [1284] = {.lex_state = 2, .external_lex_state = 3}, - [1285] = {.lex_state = 2, .external_lex_state = 3}, + [1285] = {.lex_state = 4, .external_lex_state = 3}, [1286] = {.lex_state = 2, .external_lex_state = 3}, [1287] = {.lex_state = 2, .external_lex_state = 3}, [1288] = {.lex_state = 2, .external_lex_state = 3}, @@ -14634,93 +14655,93 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1292] = {.lex_state = 2, .external_lex_state = 3}, [1293] = {.lex_state = 2, .external_lex_state = 3}, [1294] = {.lex_state = 2, .external_lex_state = 3}, - [1295] = {.lex_state = 4, .external_lex_state = 3}, - [1296] = {.lex_state = 4, .external_lex_state = 3}, - [1297] = {.lex_state = 4, .external_lex_state = 3}, - [1298] = {.lex_state = 4, .external_lex_state = 3}, - [1299] = {.lex_state = 4, .external_lex_state = 3}, - [1300] = {.lex_state = 4, .external_lex_state = 3}, + [1295] = {.lex_state = 2, .external_lex_state = 3}, + [1296] = {.lex_state = 2, .external_lex_state = 3}, + [1297] = {.lex_state = 2, .external_lex_state = 3}, + [1298] = {.lex_state = 2, .external_lex_state = 3}, + [1299] = {.lex_state = 2, .external_lex_state = 3}, + [1300] = {.lex_state = 2, .external_lex_state = 3}, [1301] = {.lex_state = 4, .external_lex_state = 3}, [1302] = {.lex_state = 4, .external_lex_state = 3}, [1303] = {.lex_state = 4, .external_lex_state = 3}, [1304] = {.lex_state = 4, .external_lex_state = 3}, - [1305] = {.lex_state = 18, .external_lex_state = 3}, - [1306] = {.lex_state = 18, .external_lex_state = 3}, - [1307] = {.lex_state = 8, .external_lex_state = 3}, - [1308] = {.lex_state = 8, .external_lex_state = 3}, - [1309] = {.lex_state = 8, .external_lex_state = 3}, - [1310] = {.lex_state = 8, .external_lex_state = 3}, - [1311] = {.lex_state = 8, .external_lex_state = 3}, - [1312] = {.lex_state = 8, .external_lex_state = 3}, + [1305] = {.lex_state = 4, .external_lex_state = 3}, + [1306] = {.lex_state = 4, .external_lex_state = 3}, + [1307] = {.lex_state = 4, .external_lex_state = 3}, + [1308] = {.lex_state = 4, .external_lex_state = 3}, + [1309] = {.lex_state = 4, .external_lex_state = 3}, + [1310] = {.lex_state = 4, .external_lex_state = 3}, + [1311] = {.lex_state = 18, .external_lex_state = 3}, + [1312] = {.lex_state = 18, .external_lex_state = 3}, [1313] = {.lex_state = 8, .external_lex_state = 3}, [1314] = {.lex_state = 8, .external_lex_state = 3}, [1315] = {.lex_state = 8, .external_lex_state = 3}, [1316] = {.lex_state = 8, .external_lex_state = 3}, [1317] = {.lex_state = 8, .external_lex_state = 3}, [1318] = {.lex_state = 8, .external_lex_state = 3}, - [1319] = {.lex_state = 18, .external_lex_state = 3}, - [1320] = {.lex_state = 4, .external_lex_state = 3}, - [1321] = {.lex_state = 18, .external_lex_state = 3}, - [1322] = {.lex_state = 4, .external_lex_state = 3}, - [1323] = {.lex_state = 4, .external_lex_state = 3}, - [1324] = {.lex_state = 4, .external_lex_state = 3}, + [1319] = {.lex_state = 8, .external_lex_state = 3}, + [1320] = {.lex_state = 8, .external_lex_state = 3}, + [1321] = {.lex_state = 8, .external_lex_state = 3}, + [1322] = {.lex_state = 8, .external_lex_state = 3}, + [1323] = {.lex_state = 8, .external_lex_state = 3}, + [1324] = {.lex_state = 8, .external_lex_state = 3}, [1325] = {.lex_state = 4, .external_lex_state = 3}, [1326] = {.lex_state = 18, .external_lex_state = 3}, - [1327] = {.lex_state = 18, .external_lex_state = 3}, + [1327] = {.lex_state = 4, .external_lex_state = 3}, [1328] = {.lex_state = 18, .external_lex_state = 3}, - [1329] = {.lex_state = 18, .external_lex_state = 3}, + [1329] = {.lex_state = 4, .external_lex_state = 3}, [1330] = {.lex_state = 18, .external_lex_state = 3}, [1331] = {.lex_state = 4, .external_lex_state = 3}, - [1332] = {.lex_state = 18, .external_lex_state = 3}, - [1333] = {.lex_state = 4, .external_lex_state = 3}, + [1332] = {.lex_state = 4, .external_lex_state = 3}, + [1333] = {.lex_state = 18, .external_lex_state = 3}, [1334] = {.lex_state = 4, .external_lex_state = 3}, - [1335] = {.lex_state = 8, .external_lex_state = 3}, - [1336] = {.lex_state = 4, .external_lex_state = 3}, - [1337] = {.lex_state = 4, .external_lex_state = 3}, - [1338] = {.lex_state = 4, .external_lex_state = 3}, - [1339] = {.lex_state = 4, .external_lex_state = 3}, - [1340] = {.lex_state = 8, .external_lex_state = 3}, + [1335] = {.lex_state = 4, .external_lex_state = 3}, + [1336] = {.lex_state = 18, .external_lex_state = 3}, + [1337] = {.lex_state = 18, .external_lex_state = 3}, + [1338] = {.lex_state = 18, .external_lex_state = 3}, + [1339] = {.lex_state = 18, .external_lex_state = 3}, + [1340] = {.lex_state = 4, .external_lex_state = 3}, [1341] = {.lex_state = 4, .external_lex_state = 3}, - [1342] = {.lex_state = 8, .external_lex_state = 3}, + [1342] = {.lex_state = 4, .external_lex_state = 3}, [1343] = {.lex_state = 4, .external_lex_state = 3}, - [1344] = {.lex_state = 18, .external_lex_state = 3}, + [1344] = {.lex_state = 4, .external_lex_state = 3}, [1345] = {.lex_state = 4, .external_lex_state = 3}, - [1346] = {.lex_state = 4, .external_lex_state = 3}, + [1346] = {.lex_state = 18, .external_lex_state = 3}, [1347] = {.lex_state = 4, .external_lex_state = 3}, - [1348] = {.lex_state = 18, .external_lex_state = 3}, - [1349] = {.lex_state = 18, .external_lex_state = 3}, - [1350] = {.lex_state = 18, .external_lex_state = 3}, - [1351] = {.lex_state = 4, .external_lex_state = 3}, - [1352] = {.lex_state = 18, .external_lex_state = 3}, - [1353] = {.lex_state = 18, .external_lex_state = 3}, + [1348] = {.lex_state = 4, .external_lex_state = 3}, + [1349] = {.lex_state = 4, .external_lex_state = 3}, + [1350] = {.lex_state = 8, .external_lex_state = 3}, + [1351] = {.lex_state = 8, .external_lex_state = 3}, + [1352] = {.lex_state = 4, .external_lex_state = 3}, + [1353] = {.lex_state = 8, .external_lex_state = 3}, [1354] = {.lex_state = 18, .external_lex_state = 3}, [1355] = {.lex_state = 4, .external_lex_state = 3}, [1356] = {.lex_state = 18, .external_lex_state = 3}, - [1357] = {.lex_state = 18, .external_lex_state = 3}, - [1358] = {.lex_state = 18, .external_lex_state = 3}, + [1357] = {.lex_state = 4, .external_lex_state = 3}, + [1358] = {.lex_state = 4, .external_lex_state = 3}, [1359] = {.lex_state = 18, .external_lex_state = 3}, - [1360] = {.lex_state = 4, .external_lex_state = 3}, + [1360] = {.lex_state = 18, .external_lex_state = 3}, [1361] = {.lex_state = 4, .external_lex_state = 3}, - [1362] = {.lex_state = 4, .external_lex_state = 3}, + [1362] = {.lex_state = 18, .external_lex_state = 3}, [1363] = {.lex_state = 4, .external_lex_state = 3}, [1364] = {.lex_state = 18, .external_lex_state = 3}, - [1365] = {.lex_state = 4, .external_lex_state = 3}, - [1366] = {.lex_state = 8, .external_lex_state = 3}, - [1367] = {.lex_state = 18, .external_lex_state = 3}, + [1365] = {.lex_state = 18, .external_lex_state = 3}, + [1366] = {.lex_state = 18, .external_lex_state = 3}, + [1367] = {.lex_state = 8, .external_lex_state = 3}, [1368] = {.lex_state = 18, .external_lex_state = 3}, [1369] = {.lex_state = 18, .external_lex_state = 3}, - [1370] = {.lex_state = 18, .external_lex_state = 3}, - [1371] = {.lex_state = 18, .external_lex_state = 3}, + [1370] = {.lex_state = 4, .external_lex_state = 3}, + [1371] = {.lex_state = 4, .external_lex_state = 3}, [1372] = {.lex_state = 18, .external_lex_state = 3}, [1373] = {.lex_state = 18, .external_lex_state = 3}, [1374] = {.lex_state = 18, .external_lex_state = 3}, [1375] = {.lex_state = 18, .external_lex_state = 3}, [1376] = {.lex_state = 18, .external_lex_state = 3}, - [1377] = {.lex_state = 4, .external_lex_state = 3}, + [1377] = {.lex_state = 18, .external_lex_state = 3}, [1378] = {.lex_state = 18, .external_lex_state = 3}, [1379] = {.lex_state = 18, .external_lex_state = 3}, [1380] = {.lex_state = 18, .external_lex_state = 3}, - [1381] = {.lex_state = 18, .external_lex_state = 3}, + [1381] = {.lex_state = 4, .external_lex_state = 3}, [1382] = {.lex_state = 18, .external_lex_state = 3}, [1383] = {.lex_state = 18, .external_lex_state = 3}, [1384] = {.lex_state = 18, .external_lex_state = 3}, @@ -14735,111 +14756,111 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1393] = {.lex_state = 18, .external_lex_state = 3}, [1394] = {.lex_state = 18, .external_lex_state = 3}, [1395] = {.lex_state = 18, .external_lex_state = 3}, - [1396] = {.lex_state = 8, .external_lex_state = 3}, + [1396] = {.lex_state = 18, .external_lex_state = 3}, [1397] = {.lex_state = 18, .external_lex_state = 3}, - [1398] = {.lex_state = 8, .external_lex_state = 3}, - [1399] = {.lex_state = 8, .external_lex_state = 3}, - [1400] = {.lex_state = 8, .external_lex_state = 3}, - [1401] = {.lex_state = 8, .external_lex_state = 3}, + [1398] = {.lex_state = 18, .external_lex_state = 3}, + [1399] = {.lex_state = 18, .external_lex_state = 3}, + [1400] = {.lex_state = 18, .external_lex_state = 3}, + [1401] = {.lex_state = 18, .external_lex_state = 3}, [1402] = {.lex_state = 8, .external_lex_state = 3}, [1403] = {.lex_state = 8, .external_lex_state = 3}, - [1404] = {.lex_state = 8, .external_lex_state = 3}, - [1405] = {.lex_state = 8, .external_lex_state = 3}, + [1404] = {.lex_state = 18, .external_lex_state = 3}, + [1405] = {.lex_state = 4, .external_lex_state = 3}, [1406] = {.lex_state = 8, .external_lex_state = 3}, - [1407] = {.lex_state = 8, .external_lex_state = 3}, - [1408] = {.lex_state = 4, .external_lex_state = 3}, + [1407] = {.lex_state = 4, .external_lex_state = 3}, + [1408] = {.lex_state = 8, .external_lex_state = 3}, [1409] = {.lex_state = 4, .external_lex_state = 3}, [1410] = {.lex_state = 4, .external_lex_state = 3}, - [1411] = {.lex_state = 4, .external_lex_state = 3}, - [1412] = {.lex_state = 4, .external_lex_state = 3}, + [1411] = {.lex_state = 8, .external_lex_state = 3}, + [1412] = {.lex_state = 8, .external_lex_state = 3}, [1413] = {.lex_state = 4, .external_lex_state = 3}, - [1414] = {.lex_state = 18, .external_lex_state = 3}, + [1414] = {.lex_state = 8, .external_lex_state = 3}, [1415] = {.lex_state = 4, .external_lex_state = 3}, - [1416] = {.lex_state = 18, .external_lex_state = 3}, - [1417] = {.lex_state = 8, .external_lex_state = 3}, - [1418] = {.lex_state = 4, .external_lex_state = 3}, - [1419] = {.lex_state = 18, .external_lex_state = 3}, - [1420] = {.lex_state = 18, .external_lex_state = 3}, - [1421] = {.lex_state = 18, .external_lex_state = 3}, + [1416] = {.lex_state = 4, .external_lex_state = 3}, + [1417] = {.lex_state = 18, .external_lex_state = 3}, + [1418] = {.lex_state = 8, .external_lex_state = 3}, + [1419] = {.lex_state = 4, .external_lex_state = 3}, + [1420] = {.lex_state = 8, .external_lex_state = 3}, + [1421] = {.lex_state = 8, .external_lex_state = 3}, [1422] = {.lex_state = 18, .external_lex_state = 3}, - [1423] = {.lex_state = 18, .external_lex_state = 3}, - [1424] = {.lex_state = 13, .external_lex_state = 3}, - [1425] = {.lex_state = 18, .external_lex_state = 3}, + [1423] = {.lex_state = 8, .external_lex_state = 3}, + [1424] = {.lex_state = 8, .external_lex_state = 3}, + [1425] = {.lex_state = 8, .external_lex_state = 3}, [1426] = {.lex_state = 18, .external_lex_state = 3}, [1427] = {.lex_state = 18, .external_lex_state = 3}, - [1428] = {.lex_state = 18, .external_lex_state = 3}, + [1428] = {.lex_state = 13, .external_lex_state = 3}, [1429] = {.lex_state = 8, .external_lex_state = 3}, - [1430] = {.lex_state = 8, .external_lex_state = 3}, - [1431] = {.lex_state = 13, .external_lex_state = 3}, - [1432] = {.lex_state = 18, .external_lex_state = 3}, + [1430] = {.lex_state = 18, .external_lex_state = 3}, + [1431] = {.lex_state = 18, .external_lex_state = 3}, + [1432] = {.lex_state = 8, .external_lex_state = 3}, [1433] = {.lex_state = 18, .external_lex_state = 3}, - [1434] = {.lex_state = 18, .external_lex_state = 3}, - [1435] = {.lex_state = 4, .external_lex_state = 3}, - [1436] = {.lex_state = 8, .external_lex_state = 3}, + [1434] = {.lex_state = 8, .external_lex_state = 3}, + [1435] = {.lex_state = 18, .external_lex_state = 3}, + [1436] = {.lex_state = 18, .external_lex_state = 3}, [1437] = {.lex_state = 18, .external_lex_state = 3}, - [1438] = {.lex_state = 8, .external_lex_state = 3}, + [1438] = {.lex_state = 18, .external_lex_state = 3}, [1439] = {.lex_state = 18, .external_lex_state = 3}, - [1440] = {.lex_state = 18, .external_lex_state = 3}, + [1440] = {.lex_state = 4, .external_lex_state = 3}, [1441] = {.lex_state = 18, .external_lex_state = 3}, - [1442] = {.lex_state = 8, .external_lex_state = 3}, - [1443] = {.lex_state = 8, .external_lex_state = 3}, - [1444] = {.lex_state = 8, .external_lex_state = 3}, + [1442] = {.lex_state = 18, .external_lex_state = 3}, + [1443] = {.lex_state = 18, .external_lex_state = 3}, + [1444] = {.lex_state = 18, .external_lex_state = 3}, [1445] = {.lex_state = 18, .external_lex_state = 3}, [1446] = {.lex_state = 18, .external_lex_state = 3}, - [1447] = {.lex_state = 18, .external_lex_state = 3}, + [1447] = {.lex_state = 13, .external_lex_state = 3}, [1448] = {.lex_state = 18, .external_lex_state = 3}, [1449] = {.lex_state = 18, .external_lex_state = 3}, [1450] = {.lex_state = 18, .external_lex_state = 3}, - [1451] = {.lex_state = 18, .external_lex_state = 3}, + [1451] = {.lex_state = 8, .external_lex_state = 3}, [1452] = {.lex_state = 18, .external_lex_state = 3}, - [1453] = {.lex_state = 13, .external_lex_state = 3}, + [1453] = {.lex_state = 18, .external_lex_state = 3}, [1454] = {.lex_state = 18, .external_lex_state = 3}, [1455] = {.lex_state = 18, .external_lex_state = 3}, - [1456] = {.lex_state = 8, .external_lex_state = 3}, + [1456] = {.lex_state = 18, .external_lex_state = 3}, [1457] = {.lex_state = 18, .external_lex_state = 3}, [1458] = {.lex_state = 18, .external_lex_state = 3}, [1459] = {.lex_state = 18, .external_lex_state = 3}, - [1460] = {.lex_state = 13, .external_lex_state = 3}, - [1461] = {.lex_state = 18, .external_lex_state = 3}, + [1460] = {.lex_state = 18, .external_lex_state = 3}, + [1461] = {.lex_state = 13, .external_lex_state = 3}, [1462] = {.lex_state = 18, .external_lex_state = 3}, - [1463] = {.lex_state = 4, .external_lex_state = 3}, - [1464] = {.lex_state = 4, .external_lex_state = 3}, - [1465] = {.lex_state = 4, .external_lex_state = 3}, - [1466] = {.lex_state = 4, .external_lex_state = 3}, - [1467] = {.lex_state = 15, .external_lex_state = 3}, - [1468] = {.lex_state = 18, .external_lex_state = 3}, + [1463] = {.lex_state = 13, .external_lex_state = 3}, + [1464] = {.lex_state = 18, .external_lex_state = 3}, + [1465] = {.lex_state = 8, .external_lex_state = 3}, + [1466] = {.lex_state = 8, .external_lex_state = 3}, + [1467] = {.lex_state = 18, .external_lex_state = 3}, + [1468] = {.lex_state = 8, .external_lex_state = 3}, [1469] = {.lex_state = 4, .external_lex_state = 3}, - [1470] = {.lex_state = 8, .external_lex_state = 3}, + [1470] = {.lex_state = 4, .external_lex_state = 3}, [1471] = {.lex_state = 4, .external_lex_state = 3}, - [1472] = {.lex_state = 4, .external_lex_state = 3}, + [1472] = {.lex_state = 18, .external_lex_state = 3}, [1473] = {.lex_state = 4, .external_lex_state = 3}, [1474] = {.lex_state = 4, .external_lex_state = 3}, - [1475] = {.lex_state = 4, .external_lex_state = 3}, - [1476] = {.lex_state = 18, .external_lex_state = 3}, + [1475] = {.lex_state = 15, .external_lex_state = 3}, + [1476] = {.lex_state = 4, .external_lex_state = 3}, [1477] = {.lex_state = 4, .external_lex_state = 3}, - [1478] = {.lex_state = 18, .external_lex_state = 3}, - [1479] = {.lex_state = 4, .external_lex_state = 3}, + [1478] = {.lex_state = 4, .external_lex_state = 3}, + [1479] = {.lex_state = 8, .external_lex_state = 3}, [1480] = {.lex_state = 4, .external_lex_state = 3}, [1481] = {.lex_state = 4, .external_lex_state = 3}, [1482] = {.lex_state = 4, .external_lex_state = 3}, - [1483] = {.lex_state = 18, .external_lex_state = 3}, - [1484] = {.lex_state = 18, .external_lex_state = 3}, + [1483] = {.lex_state = 15, .external_lex_state = 3}, + [1484] = {.lex_state = 4, .external_lex_state = 3}, [1485] = {.lex_state = 4, .external_lex_state = 3}, [1486] = {.lex_state = 4, .external_lex_state = 3}, [1487] = {.lex_state = 18, .external_lex_state = 3}, - [1488] = {.lex_state = 4, .external_lex_state = 3}, + [1488] = {.lex_state = 15, .external_lex_state = 3}, [1489] = {.lex_state = 4, .external_lex_state = 3}, [1490] = {.lex_state = 4, .external_lex_state = 3}, [1491] = {.lex_state = 4, .external_lex_state = 3}, - [1492] = {.lex_state = 18, .external_lex_state = 3}, - [1493] = {.lex_state = 15, .external_lex_state = 3}, - [1494] = {.lex_state = 4, .external_lex_state = 3}, + [1492] = {.lex_state = 4, .external_lex_state = 3}, + [1493] = {.lex_state = 18, .external_lex_state = 3}, + [1494] = {.lex_state = 18, .external_lex_state = 3}, [1495] = {.lex_state = 4, .external_lex_state = 3}, - [1496] = {.lex_state = 4, .external_lex_state = 3}, + [1496] = {.lex_state = 18, .external_lex_state = 3}, [1497] = {.lex_state = 4, .external_lex_state = 3}, [1498] = {.lex_state = 4, .external_lex_state = 3}, [1499] = {.lex_state = 4, .external_lex_state = 3}, - [1500] = {.lex_state = 15, .external_lex_state = 3}, + [1500] = {.lex_state = 18, .external_lex_state = 3}, [1501] = {.lex_state = 4, .external_lex_state = 3}, [1502] = {.lex_state = 4, .external_lex_state = 3}, [1503] = {.lex_state = 4, .external_lex_state = 3}, @@ -14848,117 +14869,117 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1506] = {.lex_state = 4, .external_lex_state = 3}, [1507] = {.lex_state = 4, .external_lex_state = 3}, [1508] = {.lex_state = 4, .external_lex_state = 3}, - [1509] = {.lex_state = 18, .external_lex_state = 3}, - [1510] = {.lex_state = 4, .external_lex_state = 3}, + [1509] = {.lex_state = 4, .external_lex_state = 3}, + [1510] = {.lex_state = 18, .external_lex_state = 3}, [1511] = {.lex_state = 4, .external_lex_state = 3}, - [1512] = {.lex_state = 18, .external_lex_state = 3}, + [1512] = {.lex_state = 4, .external_lex_state = 3}, [1513] = {.lex_state = 4, .external_lex_state = 3}, [1514] = {.lex_state = 4, .external_lex_state = 3}, [1515] = {.lex_state = 4, .external_lex_state = 3}, [1516] = {.lex_state = 4, .external_lex_state = 3}, - [1517] = {.lex_state = 15, .external_lex_state = 3}, - [1518] = {.lex_state = 15, .external_lex_state = 3}, - [1519] = {.lex_state = 15, .external_lex_state = 3}, + [1517] = {.lex_state = 4, .external_lex_state = 3}, + [1518] = {.lex_state = 4, .external_lex_state = 3}, + [1519] = {.lex_state = 18, .external_lex_state = 3}, [1520] = {.lex_state = 4, .external_lex_state = 3}, [1521] = {.lex_state = 4, .external_lex_state = 3}, - [1522] = {.lex_state = 4, .external_lex_state = 3}, + [1522] = {.lex_state = 18, .external_lex_state = 3}, [1523] = {.lex_state = 4, .external_lex_state = 3}, - [1524] = {.lex_state = 15, .external_lex_state = 3}, + [1524] = {.lex_state = 4, .external_lex_state = 3}, [1525] = {.lex_state = 4, .external_lex_state = 3}, - [1526] = {.lex_state = 0, .external_lex_state = 3}, + [1526] = {.lex_state = 15, .external_lex_state = 3}, [1527] = {.lex_state = 4, .external_lex_state = 3}, - [1528] = {.lex_state = 15, .external_lex_state = 3}, - [1529] = {.lex_state = 4, .external_lex_state = 3}, - [1530] = {.lex_state = 15, .external_lex_state = 3}, + [1528] = {.lex_state = 4, .external_lex_state = 3}, + [1529] = {.lex_state = 15, .external_lex_state = 3}, + [1530] = {.lex_state = 4, .external_lex_state = 3}, [1531] = {.lex_state = 4, .external_lex_state = 3}, - [1532] = {.lex_state = 4, .external_lex_state = 3}, - [1533] = {.lex_state = 13, .external_lex_state = 3}, + [1532] = {.lex_state = 15, .external_lex_state = 3}, + [1533] = {.lex_state = 4, .external_lex_state = 3}, [1534] = {.lex_state = 4, .external_lex_state = 3}, [1535] = {.lex_state = 4, .external_lex_state = 3}, [1536] = {.lex_state = 4, .external_lex_state = 3}, [1537] = {.lex_state = 15, .external_lex_state = 3}, [1538] = {.lex_state = 4, .external_lex_state = 3}, - [1539] = {.lex_state = 15, .external_lex_state = 3}, + [1539] = {.lex_state = 4, .external_lex_state = 3}, [1540] = {.lex_state = 4, .external_lex_state = 3}, - [1541] = {.lex_state = 15, .external_lex_state = 3}, + [1541] = {.lex_state = 4, .external_lex_state = 3}, [1542] = {.lex_state = 4, .external_lex_state = 3}, [1543] = {.lex_state = 4, .external_lex_state = 3}, - [1544] = {.lex_state = 4, .external_lex_state = 3}, + [1544] = {.lex_state = 15, .external_lex_state = 3}, [1545] = {.lex_state = 4, .external_lex_state = 3}, [1546] = {.lex_state = 4, .external_lex_state = 3}, - [1547] = {.lex_state = 4, .external_lex_state = 3}, + [1547] = {.lex_state = 13, .external_lex_state = 3}, [1548] = {.lex_state = 4, .external_lex_state = 3}, - [1549] = {.lex_state = 4, .external_lex_state = 3}, + [1549] = {.lex_state = 15, .external_lex_state = 3}, [1550] = {.lex_state = 4, .external_lex_state = 3}, [1551] = {.lex_state = 4, .external_lex_state = 3}, [1552] = {.lex_state = 4, .external_lex_state = 3}, - [1553] = {.lex_state = 4, .external_lex_state = 3}, + [1553] = {.lex_state = 15, .external_lex_state = 3}, [1554] = {.lex_state = 4, .external_lex_state = 3}, [1555] = {.lex_state = 4, .external_lex_state = 3}, - [1556] = {.lex_state = 4, .external_lex_state = 3}, + [1556] = {.lex_state = 15, .external_lex_state = 3}, [1557] = {.lex_state = 4, .external_lex_state = 3}, - [1558] = {.lex_state = 0, .external_lex_state = 3}, - [1559] = {.lex_state = 0, .external_lex_state = 3}, - [1560] = {.lex_state = 0, .external_lex_state = 3}, - [1561] = {.lex_state = 4, .external_lex_state = 3}, - [1562] = {.lex_state = 0, .external_lex_state = 3}, - [1563] = {.lex_state = 0, .external_lex_state = 3}, - [1564] = {.lex_state = 4, .external_lex_state = 3}, + [1558] = {.lex_state = 15, .external_lex_state = 3}, + [1559] = {.lex_state = 4, .external_lex_state = 3}, + [1560] = {.lex_state = 4, .external_lex_state = 3}, + [1561] = {.lex_state = 0, .external_lex_state = 3}, + [1562] = {.lex_state = 4, .external_lex_state = 3}, + [1563] = {.lex_state = 4, .external_lex_state = 3}, + [1564] = {.lex_state = 0, .external_lex_state = 3}, [1565] = {.lex_state = 0, .external_lex_state = 3}, [1566] = {.lex_state = 0, .external_lex_state = 3}, [1567] = {.lex_state = 0, .external_lex_state = 3}, - [1568] = {.lex_state = 0, .external_lex_state = 3}, + [1568] = {.lex_state = 4, .external_lex_state = 3}, [1569] = {.lex_state = 4, .external_lex_state = 3}, - [1570] = {.lex_state = 0, .external_lex_state = 3}, + [1570] = {.lex_state = 4, .external_lex_state = 3}, [1571] = {.lex_state = 4, .external_lex_state = 3}, - [1572] = {.lex_state = 4, .external_lex_state = 3}, - [1573] = {.lex_state = 15, .external_lex_state = 3}, - [1574] = {.lex_state = 4, .external_lex_state = 3}, - [1575] = {.lex_state = 4, .external_lex_state = 3}, + [1572] = {.lex_state = 0, .external_lex_state = 3}, + [1573] = {.lex_state = 0, .external_lex_state = 3}, + [1574] = {.lex_state = 15, .external_lex_state = 3}, + [1575] = {.lex_state = 0, .external_lex_state = 3}, [1576] = {.lex_state = 4, .external_lex_state = 3}, - [1577] = {.lex_state = 4, .external_lex_state = 3}, + [1577] = {.lex_state = 0, .external_lex_state = 3}, [1578] = {.lex_state = 4, .external_lex_state = 3}, - [1579] = {.lex_state = 4, .external_lex_state = 3}, + [1579] = {.lex_state = 15, .external_lex_state = 3}, [1580] = {.lex_state = 0, .external_lex_state = 3}, - [1581] = {.lex_state = 4, .external_lex_state = 3}, + [1581] = {.lex_state = 0, .external_lex_state = 3}, [1582] = {.lex_state = 0, .external_lex_state = 3}, - [1583] = {.lex_state = 4, .external_lex_state = 3}, - [1584] = {.lex_state = 0, .external_lex_state = 3}, - [1585] = {.lex_state = 15, .external_lex_state = 3}, - [1586] = {.lex_state = 15, .external_lex_state = 3}, - [1587] = {.lex_state = 0, .external_lex_state = 3}, + [1583] = {.lex_state = 0, .external_lex_state = 3}, + [1584] = {.lex_state = 4, .external_lex_state = 3}, + [1585] = {.lex_state = 4, .external_lex_state = 3}, + [1586] = {.lex_state = 0, .external_lex_state = 3}, + [1587] = {.lex_state = 15, .external_lex_state = 3}, [1588] = {.lex_state = 0, .external_lex_state = 3}, [1589] = {.lex_state = 0, .external_lex_state = 3}, - [1590] = {.lex_state = 15, .external_lex_state = 3}, - [1591] = {.lex_state = 0, .external_lex_state = 3}, - [1592] = {.lex_state = 0, .external_lex_state = 3}, - [1593] = {.lex_state = 0, .external_lex_state = 3}, - [1594] = {.lex_state = 0, .external_lex_state = 3}, - [1595] = {.lex_state = 0, .external_lex_state = 3}, - [1596] = {.lex_state = 4, .external_lex_state = 3}, - [1597] = {.lex_state = 4, .external_lex_state = 3}, - [1598] = {.lex_state = 4, .external_lex_state = 3}, + [1590] = {.lex_state = 4, .external_lex_state = 3}, + [1591] = {.lex_state = 15, .external_lex_state = 3}, + [1592] = {.lex_state = 4, .external_lex_state = 3}, + [1593] = {.lex_state = 4, .external_lex_state = 3}, + [1594] = {.lex_state = 4, .external_lex_state = 3}, + [1595] = {.lex_state = 4, .external_lex_state = 3}, + [1596] = {.lex_state = 0, .external_lex_state = 3}, + [1597] = {.lex_state = 0, .external_lex_state = 3}, + [1598] = {.lex_state = 0, .external_lex_state = 3}, [1599] = {.lex_state = 4, .external_lex_state = 3}, [1600] = {.lex_state = 4, .external_lex_state = 3}, [1601] = {.lex_state = 0, .external_lex_state = 3}, - [1602] = {.lex_state = 4, .external_lex_state = 3}, + [1602] = {.lex_state = 0, .external_lex_state = 3}, [1603] = {.lex_state = 4, .external_lex_state = 3}, [1604] = {.lex_state = 4, .external_lex_state = 3}, [1605] = {.lex_state = 4, .external_lex_state = 3}, - [1606] = {.lex_state = 4, .external_lex_state = 3}, + [1606] = {.lex_state = 0, .external_lex_state = 3}, [1607] = {.lex_state = 4, .external_lex_state = 3}, - [1608] = {.lex_state = 4, .external_lex_state = 3}, - [1609] = {.lex_state = 13, .external_lex_state = 3}, + [1608] = {.lex_state = 0, .external_lex_state = 3}, + [1609] = {.lex_state = 4, .external_lex_state = 3}, [1610] = {.lex_state = 4, .external_lex_state = 3}, - [1611] = {.lex_state = 0, .external_lex_state = 3}, + [1611] = {.lex_state = 13, .external_lex_state = 3}, [1612] = {.lex_state = 4, .external_lex_state = 3}, [1613] = {.lex_state = 4, .external_lex_state = 3}, - [1614] = {.lex_state = 9, .external_lex_state = 3}, - [1615] = {.lex_state = 4, .external_lex_state = 3}, - [1616] = {.lex_state = 4, .external_lex_state = 3}, + [1614] = {.lex_state = 4, .external_lex_state = 3}, + [1615] = {.lex_state = 18, .external_lex_state = 3}, + [1616] = {.lex_state = 0, .external_lex_state = 3}, [1617] = {.lex_state = 4, .external_lex_state = 3}, [1618] = {.lex_state = 4, .external_lex_state = 3}, - [1619] = {.lex_state = 4, .external_lex_state = 3}, + [1619] = {.lex_state = 9, .external_lex_state = 3}, [1620] = {.lex_state = 4, .external_lex_state = 3}, [1621] = {.lex_state = 4, .external_lex_state = 3}, [1622] = {.lex_state = 4, .external_lex_state = 3}, @@ -14966,71 +14987,71 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1624] = {.lex_state = 4, .external_lex_state = 3}, [1625] = {.lex_state = 4, .external_lex_state = 3}, [1626] = {.lex_state = 4, .external_lex_state = 3}, - [1627] = {.lex_state = 18, .external_lex_state = 3}, + [1627] = {.lex_state = 4, .external_lex_state = 3}, [1628] = {.lex_state = 4, .external_lex_state = 3}, - [1629] = {.lex_state = 18, .external_lex_state = 3}, - [1630] = {.lex_state = 4, .external_lex_state = 3}, + [1629] = {.lex_state = 4, .external_lex_state = 3}, + [1630] = {.lex_state = 18, .external_lex_state = 3}, [1631] = {.lex_state = 4, .external_lex_state = 3}, - [1632] = {.lex_state = 18, .external_lex_state = 3}, - [1633] = {.lex_state = 0, .external_lex_state = 3}, - [1634] = {.lex_state = 9, .external_lex_state = 3}, - [1635] = {.lex_state = 0, .external_lex_state = 3}, - [1636] = {.lex_state = 0, .external_lex_state = 3}, + [1632] = {.lex_state = 9, .external_lex_state = 3}, + [1633] = {.lex_state = 4, .external_lex_state = 3}, + [1634] = {.lex_state = 4, .external_lex_state = 3}, + [1635] = {.lex_state = 4, .external_lex_state = 3}, + [1636] = {.lex_state = 18, .external_lex_state = 3}, [1637] = {.lex_state = 4, .external_lex_state = 3}, [1638] = {.lex_state = 0, .external_lex_state = 3}, [1639] = {.lex_state = 4, .external_lex_state = 3}, - [1640] = {.lex_state = 18, .external_lex_state = 3}, + [1640] = {.lex_state = 0, .external_lex_state = 3}, [1641] = {.lex_state = 4, .external_lex_state = 3}, - [1642] = {.lex_state = 4, .external_lex_state = 3}, - [1643] = {.lex_state = 18, .external_lex_state = 3}, + [1642] = {.lex_state = 18, .external_lex_state = 3}, + [1643] = {.lex_state = 0, .external_lex_state = 3}, [1644] = {.lex_state = 18, .external_lex_state = 3}, - [1645] = {.lex_state = 4, .external_lex_state = 3}, - [1646] = {.lex_state = 4, .external_lex_state = 3}, - [1647] = {.lex_state = 18, .external_lex_state = 3}, - [1648] = {.lex_state = 58, .external_lex_state = 3}, + [1645] = {.lex_state = 0, .external_lex_state = 3}, + [1646] = {.lex_state = 0, .external_lex_state = 3}, + [1647] = {.lex_state = 4, .external_lex_state = 3}, + [1648] = {.lex_state = 4, .external_lex_state = 3}, [1649] = {.lex_state = 4, .external_lex_state = 3}, - [1650] = {.lex_state = 0, .external_lex_state = 3}, + [1650] = {.lex_state = 4, .external_lex_state = 3}, [1651] = {.lex_state = 4, .external_lex_state = 3}, - [1652] = {.lex_state = 58, .external_lex_state = 3}, - [1653] = {.lex_state = 0, .external_lex_state = 3}, + [1652] = {.lex_state = 4, .external_lex_state = 3}, + [1653] = {.lex_state = 18, .external_lex_state = 3}, [1654] = {.lex_state = 4, .external_lex_state = 3}, [1655] = {.lex_state = 4, .external_lex_state = 3}, - [1656] = {.lex_state = 4, .external_lex_state = 3}, + [1656] = {.lex_state = 58, .external_lex_state = 3}, [1657] = {.lex_state = 4, .external_lex_state = 3}, - [1658] = {.lex_state = 4, .external_lex_state = 3}, + [1658] = {.lex_state = 0, .external_lex_state = 3}, [1659] = {.lex_state = 4, .external_lex_state = 3}, [1660] = {.lex_state = 4, .external_lex_state = 3}, - [1661] = {.lex_state = 4, .external_lex_state = 3}, + [1661] = {.lex_state = 58, .external_lex_state = 3}, [1662] = {.lex_state = 4, .external_lex_state = 3}, - [1663] = {.lex_state = 9, .external_lex_state = 3}, + [1663] = {.lex_state = 4, .external_lex_state = 3}, [1664] = {.lex_state = 4, .external_lex_state = 3}, [1665] = {.lex_state = 4, .external_lex_state = 3}, - [1666] = {.lex_state = 4, .external_lex_state = 3}, + [1666] = {.lex_state = 9, .external_lex_state = 3}, [1667] = {.lex_state = 4, .external_lex_state = 3}, [1668] = {.lex_state = 18, .external_lex_state = 3}, [1669] = {.lex_state = 4, .external_lex_state = 3}, - [1670] = {.lex_state = 4, .external_lex_state = 3}, - [1671] = {.lex_state = 4, .external_lex_state = 3}, - [1672] = {.lex_state = 4, .external_lex_state = 3}, + [1670] = {.lex_state = 9, .external_lex_state = 3}, + [1671] = {.lex_state = 18, .external_lex_state = 3}, + [1672] = {.lex_state = 9, .external_lex_state = 3}, [1673] = {.lex_state = 18, .external_lex_state = 3}, [1674] = {.lex_state = 4, .external_lex_state = 3}, - [1675] = {.lex_state = 9, .external_lex_state = 3}, + [1675] = {.lex_state = 4, .external_lex_state = 3}, [1676] = {.lex_state = 15, .external_lex_state = 3}, - [1677] = {.lex_state = 9, .external_lex_state = 3}, - [1678] = {.lex_state = 4, .external_lex_state = 3}, + [1677] = {.lex_state = 4, .external_lex_state = 3}, + [1678] = {.lex_state = 9, .external_lex_state = 3}, [1679] = {.lex_state = 4, .external_lex_state = 3}, [1680] = {.lex_state = 4, .external_lex_state = 3}, [1681] = {.lex_state = 4, .external_lex_state = 3}, [1682] = {.lex_state = 4, .external_lex_state = 3}, [1683] = {.lex_state = 4, .external_lex_state = 3}, - [1684] = {.lex_state = 13, .external_lex_state = 3}, + [1684] = {.lex_state = 4, .external_lex_state = 3}, [1685] = {.lex_state = 4, .external_lex_state = 3}, [1686] = {.lex_state = 4, .external_lex_state = 3}, [1687] = {.lex_state = 4, .external_lex_state = 3}, [1688] = {.lex_state = 4, .external_lex_state = 3}, [1689] = {.lex_state = 4, .external_lex_state = 3}, - [1690] = {.lex_state = 4, .external_lex_state = 3}, - [1691] = {.lex_state = 9, .external_lex_state = 3}, + [1690] = {.lex_state = 13, .external_lex_state = 3}, + [1691] = {.lex_state = 4, .external_lex_state = 3}, [1692] = {.lex_state = 4, .external_lex_state = 3}, [1693] = {.lex_state = 4, .external_lex_state = 3}, [1694] = {.lex_state = 4, .external_lex_state = 3}, @@ -15038,362 +15059,362 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1696] = {.lex_state = 18, .external_lex_state = 3}, [1697] = {.lex_state = 4, .external_lex_state = 3}, [1698] = {.lex_state = 4, .external_lex_state = 3}, - [1699] = {.lex_state = 0, .external_lex_state = 3}, - [1700] = {.lex_state = 18, .external_lex_state = 3}, - [1701] = {.lex_state = 0, .external_lex_state = 3}, + [1699] = {.lex_state = 4, .external_lex_state = 3}, + [1700] = {.lex_state = 4, .external_lex_state = 3}, + [1701] = {.lex_state = 4, .external_lex_state = 3}, [1702] = {.lex_state = 4, .external_lex_state = 3}, [1703] = {.lex_state = 4, .external_lex_state = 3}, - [1704] = {.lex_state = 18, .external_lex_state = 3}, - [1705] = {.lex_state = 18, .external_lex_state = 3}, + [1704] = {.lex_state = 4, .external_lex_state = 3}, + [1705] = {.lex_state = 0, .external_lex_state = 3}, [1706] = {.lex_state = 18, .external_lex_state = 3}, [1707] = {.lex_state = 0, .external_lex_state = 3}, - [1708] = {.lex_state = 9, .external_lex_state = 3}, - [1709] = {.lex_state = 4, .external_lex_state = 3}, - [1710] = {.lex_state = 9, .external_lex_state = 3}, - [1711] = {.lex_state = 4, .external_lex_state = 3}, - [1712] = {.lex_state = 4, .external_lex_state = 3}, - [1713] = {.lex_state = 4, .external_lex_state = 3}, + [1708] = {.lex_state = 4, .external_lex_state = 3}, + [1709] = {.lex_state = 18, .external_lex_state = 3}, + [1710] = {.lex_state = 58, .external_lex_state = 3}, + [1711] = {.lex_state = 18, .external_lex_state = 3}, + [1712] = {.lex_state = 9, .external_lex_state = 3}, + [1713] = {.lex_state = 9, .external_lex_state = 3}, [1714] = {.lex_state = 4, .external_lex_state = 3}, [1715] = {.lex_state = 4, .external_lex_state = 3}, - [1716] = {.lex_state = 4, .external_lex_state = 3}, + [1716] = {.lex_state = 18, .external_lex_state = 3}, [1717] = {.lex_state = 4, .external_lex_state = 3}, - [1718] = {.lex_state = 0, .external_lex_state = 3}, - [1719] = {.lex_state = 18, .external_lex_state = 3}, + [1718] = {.lex_state = 4, .external_lex_state = 3}, + [1719] = {.lex_state = 0, .external_lex_state = 3}, [1720] = {.lex_state = 4, .external_lex_state = 3}, - [1721] = {.lex_state = 18, .external_lex_state = 3}, - [1722] = {.lex_state = 0, .external_lex_state = 3}, - [1723] = {.lex_state = 58, .external_lex_state = 3}, - [1724] = {.lex_state = 4, .external_lex_state = 3}, + [1721] = {.lex_state = 4, .external_lex_state = 3}, + [1722] = {.lex_state = 4, .external_lex_state = 3}, + [1723] = {.lex_state = 18, .external_lex_state = 3}, + [1724] = {.lex_state = 0, .external_lex_state = 3}, [1725] = {.lex_state = 4, .external_lex_state = 3}, [1726] = {.lex_state = 0, .external_lex_state = 3}, - [1727] = {.lex_state = 18, .external_lex_state = 3}, - [1728] = {.lex_state = 18, .external_lex_state = 3}, - [1729] = {.lex_state = 58, .external_lex_state = 3}, - [1730] = {.lex_state = 0, .external_lex_state = 3}, + [1727] = {.lex_state = 4, .external_lex_state = 3}, + [1728] = {.lex_state = 4, .external_lex_state = 3}, + [1729] = {.lex_state = 4, .external_lex_state = 3}, + [1730] = {.lex_state = 4, .external_lex_state = 3}, [1731] = {.lex_state = 18, .external_lex_state = 3}, [1732] = {.lex_state = 18, .external_lex_state = 3}, - [1733] = {.lex_state = 0, .external_lex_state = 3}, - [1734] = {.lex_state = 9, .external_lex_state = 3}, - [1735] = {.lex_state = 9, .external_lex_state = 3}, - [1736] = {.lex_state = 4, .external_lex_state = 3}, - [1737] = {.lex_state = 58, .external_lex_state = 3}, + [1733] = {.lex_state = 18, .external_lex_state = 3}, + [1734] = {.lex_state = 0, .external_lex_state = 3}, + [1735] = {.lex_state = 58, .external_lex_state = 3}, + [1736] = {.lex_state = 58, .external_lex_state = 3}, + [1737] = {.lex_state = 0, .external_lex_state = 3}, [1738] = {.lex_state = 4, .external_lex_state = 3}, - [1739] = {.lex_state = 4, .external_lex_state = 3}, + [1739] = {.lex_state = 18, .external_lex_state = 3}, [1740] = {.lex_state = 4, .external_lex_state = 3}, [1741] = {.lex_state = 4, .external_lex_state = 3}, - [1742] = {.lex_state = 18, .external_lex_state = 3}, - [1743] = {.lex_state = 4, .external_lex_state = 3}, - [1744] = {.lex_state = 18, .external_lex_state = 3}, + [1742] = {.lex_state = 4, .external_lex_state = 3}, + [1743] = {.lex_state = 9, .external_lex_state = 3}, + [1744] = {.lex_state = 9, .external_lex_state = 3}, [1745] = {.lex_state = 4, .external_lex_state = 3}, [1746] = {.lex_state = 4, .external_lex_state = 3}, [1747] = {.lex_state = 4, .external_lex_state = 3}, [1748] = {.lex_state = 18, .external_lex_state = 3}, - [1749] = {.lex_state = 9, .external_lex_state = 3}, - [1750] = {.lex_state = 9, .external_lex_state = 3}, - [1751] = {.lex_state = 4, .external_lex_state = 3}, - [1752] = {.lex_state = 58, .external_lex_state = 3}, - [1753] = {.lex_state = 58, .external_lex_state = 3}, - [1754] = {.lex_state = 4, .external_lex_state = 3}, - [1755] = {.lex_state = 4, .external_lex_state = 3}, - [1756] = {.lex_state = 4, .external_lex_state = 3}, - [1757] = {.lex_state = 58, .external_lex_state = 3}, + [1749] = {.lex_state = 4, .external_lex_state = 3}, + [1750] = {.lex_state = 18, .external_lex_state = 3}, + [1751] = {.lex_state = 18, .external_lex_state = 3}, + [1752] = {.lex_state = 4, .external_lex_state = 3}, + [1753] = {.lex_state = 0, .external_lex_state = 3}, + [1754] = {.lex_state = 9, .external_lex_state = 3}, + [1755] = {.lex_state = 18, .external_lex_state = 3}, + [1756] = {.lex_state = 9, .external_lex_state = 3}, + [1757] = {.lex_state = 4, .external_lex_state = 3}, [1758] = {.lex_state = 0, .external_lex_state = 3}, [1759] = {.lex_state = 58, .external_lex_state = 3}, - [1760] = {.lex_state = 4, .external_lex_state = 3}, + [1760] = {.lex_state = 58, .external_lex_state = 3}, [1761] = {.lex_state = 4, .external_lex_state = 3}, [1762] = {.lex_state = 58, .external_lex_state = 3}, - [1763] = {.lex_state = 58, .external_lex_state = 3}, + [1763] = {.lex_state = 4, .external_lex_state = 3}, [1764] = {.lex_state = 4, .external_lex_state = 3}, - [1765] = {.lex_state = 0, .external_lex_state = 3}, - [1766] = {.lex_state = 0, .external_lex_state = 3}, - [1767] = {.lex_state = 19, .external_lex_state = 3}, - [1768] = {.lex_state = 58, .external_lex_state = 3}, + [1765] = {.lex_state = 58, .external_lex_state = 3}, + [1766] = {.lex_state = 4, .external_lex_state = 3}, + [1767] = {.lex_state = 4, .external_lex_state = 3}, + [1768] = {.lex_state = 4, .external_lex_state = 3}, [1769] = {.lex_state = 58, .external_lex_state = 3}, - [1770] = {.lex_state = 58, .external_lex_state = 3}, - [1771] = {.lex_state = 58, .external_lex_state = 3}, - [1772] = {.lex_state = 0, .external_lex_state = 3}, - [1773] = {.lex_state = 58, .external_lex_state = 3}, - [1774] = {.lex_state = 4, .external_lex_state = 3}, - [1775] = {.lex_state = 18, .external_lex_state = 3}, - [1776] = {.lex_state = 4, .external_lex_state = 3}, - [1777] = {.lex_state = 18, .external_lex_state = 3}, - [1778] = {.lex_state = 58, .external_lex_state = 3}, - [1779] = {.lex_state = 4, .external_lex_state = 3}, - [1780] = {.lex_state = 9, .external_lex_state = 3}, - [1781] = {.lex_state = 58, .external_lex_state = 3}, + [1770] = {.lex_state = 4, .external_lex_state = 3}, + [1771] = {.lex_state = 0, .external_lex_state = 3}, + [1772] = {.lex_state = 4, .external_lex_state = 3}, + [1773] = {.lex_state = 19, .external_lex_state = 3}, + [1774] = {.lex_state = 58, .external_lex_state = 3}, + [1775] = {.lex_state = 58, .external_lex_state = 3}, + [1776] = {.lex_state = 58, .external_lex_state = 3}, + [1777] = {.lex_state = 58, .external_lex_state = 3}, + [1778] = {.lex_state = 4, .external_lex_state = 3}, + [1779] = {.lex_state = 18, .external_lex_state = 3}, + [1780] = {.lex_state = 4, .external_lex_state = 3}, + [1781] = {.lex_state = 9, .external_lex_state = 3}, [1782] = {.lex_state = 4, .external_lex_state = 3}, - [1783] = {.lex_state = 0, .external_lex_state = 3}, - [1784] = {.lex_state = 18, .external_lex_state = 3}, + [1783] = {.lex_state = 58, .external_lex_state = 3}, + [1784] = {.lex_state = 4, .external_lex_state = 3}, [1785] = {.lex_state = 0, .external_lex_state = 3}, - [1786] = {.lex_state = 4, .external_lex_state = 3}, - [1787] = {.lex_state = 58, .external_lex_state = 3}, - [1788] = {.lex_state = 58, .external_lex_state = 3}, - [1789] = {.lex_state = 58, .external_lex_state = 3}, - [1790] = {.lex_state = 4, .external_lex_state = 3}, + [1786] = {.lex_state = 58, .external_lex_state = 3}, + [1787] = {.lex_state = 0, .external_lex_state = 3}, + [1788] = {.lex_state = 18, .external_lex_state = 3}, + [1789] = {.lex_state = 18, .external_lex_state = 3}, + [1790] = {.lex_state = 0, .external_lex_state = 3}, [1791] = {.lex_state = 4, .external_lex_state = 3}, - [1792] = {.lex_state = 0, .external_lex_state = 3}, + [1792] = {.lex_state = 58, .external_lex_state = 3}, [1793] = {.lex_state = 58, .external_lex_state = 3}, [1794] = {.lex_state = 58, .external_lex_state = 3}, - [1795] = {.lex_state = 4, .external_lex_state = 3}, + [1795] = {.lex_state = 58, .external_lex_state = 3}, [1796] = {.lex_state = 4, .external_lex_state = 3}, [1797] = {.lex_state = 4, .external_lex_state = 3}, [1798] = {.lex_state = 0, .external_lex_state = 3}, - [1799] = {.lex_state = 4, .external_lex_state = 4}, - [1800] = {.lex_state = 4, .external_lex_state = 4}, - [1801] = {.lex_state = 0, .external_lex_state = 3}, - [1802] = {.lex_state = 4, .external_lex_state = 4}, - [1803] = {.lex_state = 18, .external_lex_state = 3}, - [1804] = {.lex_state = 0, .external_lex_state = 3}, - [1805] = {.lex_state = 9, .external_lex_state = 3}, - [1806] = {.lex_state = 18, .external_lex_state = 3}, - [1807] = {.lex_state = 58, .external_lex_state = 3}, - [1808] = {.lex_state = 4, .external_lex_state = 3}, - [1809] = {.lex_state = 4, .external_lex_state = 3}, - [1810] = {.lex_state = 0, .external_lex_state = 3}, - [1811] = {.lex_state = 4, .external_lex_state = 4}, + [1799] = {.lex_state = 4, .external_lex_state = 3}, + [1800] = {.lex_state = 4, .external_lex_state = 3}, + [1801] = {.lex_state = 4, .external_lex_state = 3}, + [1802] = {.lex_state = 0, .external_lex_state = 3}, + [1803] = {.lex_state = 4, .external_lex_state = 4}, + [1804] = {.lex_state = 4, .external_lex_state = 4}, + [1805] = {.lex_state = 0, .external_lex_state = 3}, + [1806] = {.lex_state = 4, .external_lex_state = 4}, + [1807] = {.lex_state = 18, .external_lex_state = 3}, + [1808] = {.lex_state = 0, .external_lex_state = 3}, + [1809] = {.lex_state = 58, .external_lex_state = 3}, + [1810] = {.lex_state = 18, .external_lex_state = 3}, + [1811] = {.lex_state = 58, .external_lex_state = 3}, [1812] = {.lex_state = 0, .external_lex_state = 3}, - [1813] = {.lex_state = 4, .external_lex_state = 4}, - [1814] = {.lex_state = 0, .external_lex_state = 3}, + [1813] = {.lex_state = 4, .external_lex_state = 3}, + [1814] = {.lex_state = 4, .external_lex_state = 4}, [1815] = {.lex_state = 4, .external_lex_state = 4}, - [1816] = {.lex_state = 4, .external_lex_state = 3}, - [1817] = {.lex_state = 19, .external_lex_state = 3}, - [1818] = {.lex_state = 58, .external_lex_state = 3}, - [1819] = {.lex_state = 4, .external_lex_state = 3}, - [1820] = {.lex_state = 4, .external_lex_state = 3}, - [1821] = {.lex_state = 18, .external_lex_state = 3}, - [1822] = {.lex_state = 4, .external_lex_state = 3}, - [1823] = {.lex_state = 0, .external_lex_state = 3}, - [1824] = {.lex_state = 58, .external_lex_state = 3}, - [1825] = {.lex_state = 4, .external_lex_state = 4}, + [1816] = {.lex_state = 9, .external_lex_state = 3}, + [1817] = {.lex_state = 0, .external_lex_state = 3}, + [1818] = {.lex_state = 4, .external_lex_state = 3}, + [1819] = {.lex_state = 4, .external_lex_state = 4}, + [1820] = {.lex_state = 58, .external_lex_state = 3}, + [1821] = {.lex_state = 0, .external_lex_state = 3}, + [1822] = {.lex_state = 19, .external_lex_state = 3}, + [1823] = {.lex_state = 58, .external_lex_state = 3}, + [1824] = {.lex_state = 4, .external_lex_state = 3}, + [1825] = {.lex_state = 58, .external_lex_state = 3}, [1826] = {.lex_state = 4, .external_lex_state = 3}, - [1827] = {.lex_state = 4, .external_lex_state = 4}, - [1828] = {.lex_state = 0, .external_lex_state = 3}, - [1829] = {.lex_state = 18, .external_lex_state = 3}, - [1830] = {.lex_state = 0, .external_lex_state = 3}, - [1831] = {.lex_state = 18, .external_lex_state = 3}, - [1832] = {.lex_state = 58, .external_lex_state = 3}, - [1833] = {.lex_state = 58, .external_lex_state = 3}, - [1834] = {.lex_state = 4, .external_lex_state = 3}, + [1827] = {.lex_state = 4, .external_lex_state = 3}, + [1828] = {.lex_state = 4, .external_lex_state = 4}, + [1829] = {.lex_state = 4, .external_lex_state = 3}, + [1830] = {.lex_state = 18, .external_lex_state = 3}, + [1831] = {.lex_state = 58, .external_lex_state = 3}, + [1832] = {.lex_state = 0, .external_lex_state = 3}, + [1833] = {.lex_state = 4, .external_lex_state = 4}, + [1834] = {.lex_state = 18, .external_lex_state = 3}, [1835] = {.lex_state = 18, .external_lex_state = 3}, - [1836] = {.lex_state = 58, .external_lex_state = 3}, - [1837] = {.lex_state = 19, .external_lex_state = 3}, - [1838] = {.lex_state = 0, .external_lex_state = 3}, - [1839] = {.lex_state = 4, .external_lex_state = 3}, - [1840] = {.lex_state = 4, .external_lex_state = 3}, - [1841] = {.lex_state = 4, .external_lex_state = 4}, + [1836] = {.lex_state = 0, .external_lex_state = 3}, + [1837] = {.lex_state = 58, .external_lex_state = 3}, + [1838] = {.lex_state = 58, .external_lex_state = 3}, + [1839] = {.lex_state = 0, .external_lex_state = 3}, + [1840] = {.lex_state = 18, .external_lex_state = 3}, + [1841] = {.lex_state = 58, .external_lex_state = 3}, [1842] = {.lex_state = 4, .external_lex_state = 3}, - [1843] = {.lex_state = 58, .external_lex_state = 3}, + [1843] = {.lex_state = 4, .external_lex_state = 3}, [1844] = {.lex_state = 4, .external_lex_state = 3}, - [1845] = {.lex_state = 18, .external_lex_state = 3}, + [1845] = {.lex_state = 19, .external_lex_state = 3}, [1846] = {.lex_state = 58, .external_lex_state = 3}, - [1847] = {.lex_state = 58, .external_lex_state = 3}, - [1848] = {.lex_state = 0, .external_lex_state = 3}, - [1849] = {.lex_state = 58, .external_lex_state = 3}, - [1850] = {.lex_state = 19, .external_lex_state = 3}, - [1851] = {.lex_state = 4, .external_lex_state = 3}, - [1852] = {.lex_state = 18, .external_lex_state = 3}, + [1847] = {.lex_state = 0, .external_lex_state = 3}, + [1848] = {.lex_state = 4, .external_lex_state = 3}, + [1849] = {.lex_state = 4, .external_lex_state = 4}, + [1850] = {.lex_state = 18, .external_lex_state = 3}, + [1851] = {.lex_state = 58, .external_lex_state = 3}, + [1852] = {.lex_state = 58, .external_lex_state = 3}, [1853] = {.lex_state = 58, .external_lex_state = 3}, - [1854] = {.lex_state = 4, .external_lex_state = 3}, + [1854] = {.lex_state = 19, .external_lex_state = 3}, [1855] = {.lex_state = 4, .external_lex_state = 3}, - [1856] = {.lex_state = 0, .external_lex_state = 3}, + [1856] = {.lex_state = 18, .external_lex_state = 3}, [1857] = {.lex_state = 0, .external_lex_state = 3}, - [1858] = {.lex_state = 0, .external_lex_state = 3}, - [1859] = {.lex_state = 4, .external_lex_state = 3}, + [1858] = {.lex_state = 4, .external_lex_state = 3}, + [1859] = {.lex_state = 0, .external_lex_state = 3}, [1860] = {.lex_state = 4, .external_lex_state = 3}, - [1861] = {.lex_state = 4, .external_lex_state = 3}, - [1862] = {.lex_state = 4, .external_lex_state = 3}, - [1863] = {.lex_state = 0, .external_lex_state = 3}, - [1864] = {.lex_state = 4, .external_lex_state = 3}, + [1861] = {.lex_state = 58, .external_lex_state = 3}, + [1862] = {.lex_state = 0, .external_lex_state = 3}, + [1863] = {.lex_state = 58, .external_lex_state = 3}, + [1864] = {.lex_state = 0, .external_lex_state = 3}, [1865] = {.lex_state = 58, .external_lex_state = 3}, - [1866] = {.lex_state = 4, .external_lex_state = 3}, - [1867] = {.lex_state = 0, .external_lex_state = 3}, - [1868] = {.lex_state = 0, .external_lex_state = 3}, - [1869] = {.lex_state = 0, .external_lex_state = 3}, + [1866] = {.lex_state = 0, .external_lex_state = 3}, + [1867] = {.lex_state = 4, .external_lex_state = 3}, + [1868] = {.lex_state = 4, .external_lex_state = 3}, + [1869] = {.lex_state = 4, .external_lex_state = 3}, [1870] = {.lex_state = 0, .external_lex_state = 3}, - [1871] = {.lex_state = 4, .external_lex_state = 3}, - [1872] = {.lex_state = 58, .external_lex_state = 3}, + [1871] = {.lex_state = 0, .external_lex_state = 3}, + [1872] = {.lex_state = 4, .external_lex_state = 3}, [1873] = {.lex_state = 4, .external_lex_state = 3}, [1874] = {.lex_state = 0, .external_lex_state = 3}, - [1875] = {.lex_state = 0, .external_lex_state = 3}, + [1875] = {.lex_state = 58, .external_lex_state = 3}, [1876] = {.lex_state = 0, .external_lex_state = 3}, [1877] = {.lex_state = 0, .external_lex_state = 3}, [1878] = {.lex_state = 0, .external_lex_state = 3}, - [1879] = {.lex_state = 9, .external_lex_state = 3}, - [1880] = {.lex_state = 0, .external_lex_state = 3}, - [1881] = {.lex_state = 58, .external_lex_state = 3}, - [1882] = {.lex_state = 58, .external_lex_state = 3}, + [1879] = {.lex_state = 0, .external_lex_state = 3}, + [1880] = {.lex_state = 58, .external_lex_state = 3}, + [1881] = {.lex_state = 0, .external_lex_state = 3}, + [1882] = {.lex_state = 4, .external_lex_state = 3}, [1883] = {.lex_state = 4, .external_lex_state = 3}, - [1884] = {.lex_state = 0, .external_lex_state = 3}, + [1884] = {.lex_state = 4, .external_lex_state = 3}, [1885] = {.lex_state = 0, .external_lex_state = 3}, [1886] = {.lex_state = 0, .external_lex_state = 3}, [1887] = {.lex_state = 0, .external_lex_state = 3}, - [1888] = {.lex_state = 3, .external_lex_state = 3}, - [1889] = {.lex_state = 0, .external_lex_state = 3}, - [1890] = {.lex_state = 58, .external_lex_state = 3}, + [1888] = {.lex_state = 0, .external_lex_state = 3}, + [1889] = {.lex_state = 58, .external_lex_state = 3}, + [1890] = {.lex_state = 9, .external_lex_state = 3}, [1891] = {.lex_state = 0, .external_lex_state = 3}, - [1892] = {.lex_state = 3, .external_lex_state = 3}, + [1892] = {.lex_state = 58, .external_lex_state = 3}, [1893] = {.lex_state = 0, .external_lex_state = 3}, - [1894] = {.lex_state = 58, .external_lex_state = 3}, + [1894] = {.lex_state = 0, .external_lex_state = 3}, [1895] = {.lex_state = 0, .external_lex_state = 3}, - [1896] = {.lex_state = 0, .external_lex_state = 3}, - [1897] = {.lex_state = 0, .external_lex_state = 3}, - [1898] = {.lex_state = 0, .external_lex_state = 3}, + [1896] = {.lex_state = 4, .external_lex_state = 3}, + [1897] = {.lex_state = 3, .external_lex_state = 3}, + [1898] = {.lex_state = 3, .external_lex_state = 3}, [1899] = {.lex_state = 0, .external_lex_state = 3}, - [1900] = {.lex_state = 58, .external_lex_state = 3}, - [1901] = {.lex_state = 58, .external_lex_state = 3}, - [1902] = {.lex_state = 0, .external_lex_state = 3}, - [1903] = {.lex_state = 3, .external_lex_state = 3}, - [1904] = {.lex_state = 4, .external_lex_state = 3}, - [1905] = {.lex_state = 58, .external_lex_state = 3}, - [1906] = {.lex_state = 58, .external_lex_state = 3}, - [1907] = {.lex_state = 58, .external_lex_state = 3}, + [1900] = {.lex_state = 0, .external_lex_state = 3}, + [1901] = {.lex_state = 0, .external_lex_state = 3}, + [1902] = {.lex_state = 58, .external_lex_state = 3}, + [1903] = {.lex_state = 0, .external_lex_state = 3}, + [1904] = {.lex_state = 58, .external_lex_state = 3}, + [1905] = {.lex_state = 0, .external_lex_state = 3}, + [1906] = {.lex_state = 0, .external_lex_state = 3}, + [1907] = {.lex_state = 0, .external_lex_state = 3}, [1908] = {.lex_state = 0, .external_lex_state = 3}, - [1909] = {.lex_state = 58, .external_lex_state = 3}, - [1910] = {.lex_state = 0, .external_lex_state = 3}, + [1909] = {.lex_state = 3, .external_lex_state = 3}, + [1910] = {.lex_state = 58, .external_lex_state = 3}, [1911] = {.lex_state = 0, .external_lex_state = 3}, [1912] = {.lex_state = 58, .external_lex_state = 3}, - [1913] = {.lex_state = 0, .external_lex_state = 3}, - [1914] = {.lex_state = 4, .external_lex_state = 3}, + [1913] = {.lex_state = 4, .external_lex_state = 3}, + [1914] = {.lex_state = 58, .external_lex_state = 3}, [1915] = {.lex_state = 58, .external_lex_state = 3}, - [1916] = {.lex_state = 4, .external_lex_state = 3}, + [1916] = {.lex_state = 0, .external_lex_state = 3}, [1917] = {.lex_state = 0, .external_lex_state = 3}, - [1918] = {.lex_state = 58, .external_lex_state = 3}, + [1918] = {.lex_state = 0, .external_lex_state = 3}, [1919] = {.lex_state = 58, .external_lex_state = 3}, - [1920] = {.lex_state = 9, .external_lex_state = 3}, - [1921] = {.lex_state = 0, .external_lex_state = 3}, - [1922] = {.lex_state = 0, .external_lex_state = 3}, + [1920] = {.lex_state = 0, .external_lex_state = 3}, + [1921] = {.lex_state = 58, .external_lex_state = 3}, + [1922] = {.lex_state = 58, .external_lex_state = 3}, [1923] = {.lex_state = 0, .external_lex_state = 3}, [1924] = {.lex_state = 0, .external_lex_state = 3}, - [1925] = {.lex_state = 0, .external_lex_state = 3}, + [1925] = {.lex_state = 4, .external_lex_state = 3}, [1926] = {.lex_state = 58, .external_lex_state = 3}, [1927] = {.lex_state = 0, .external_lex_state = 3}, - [1928] = {.lex_state = 0, .external_lex_state = 3}, - [1929] = {.lex_state = 0, .external_lex_state = 3}, + [1928] = {.lex_state = 4, .external_lex_state = 3}, + [1929] = {.lex_state = 9, .external_lex_state = 3}, [1930] = {.lex_state = 0, .external_lex_state = 3}, - [1931] = {.lex_state = 4, .external_lex_state = 3}, + [1931] = {.lex_state = 0, .external_lex_state = 3}, [1932] = {.lex_state = 0, .external_lex_state = 3}, - [1933] = {.lex_state = 4, .external_lex_state = 3}, + [1933] = {.lex_state = 58, .external_lex_state = 3}, [1934] = {.lex_state = 0, .external_lex_state = 3}, [1935] = {.lex_state = 58, .external_lex_state = 3}, [1936] = {.lex_state = 0, .external_lex_state = 3}, - [1937] = {.lex_state = 4, .external_lex_state = 3}, - [1938] = {.lex_state = 4, .external_lex_state = 3}, - [1939] = {.lex_state = 3, .external_lex_state = 3}, - [1940] = {.lex_state = 58, .external_lex_state = 3}, - [1941] = {.lex_state = 58, .external_lex_state = 3}, + [1937] = {.lex_state = 0, .external_lex_state = 3}, + [1938] = {.lex_state = 0, .external_lex_state = 3}, + [1939] = {.lex_state = 0, .external_lex_state = 3}, + [1940] = {.lex_state = 0, .external_lex_state = 3}, + [1941] = {.lex_state = 4, .external_lex_state = 3}, [1942] = {.lex_state = 0, .external_lex_state = 3}, - [1943] = {.lex_state = 0, .external_lex_state = 3}, - [1944] = {.lex_state = 0, .external_lex_state = 3}, - [1945] = {.lex_state = 0, .external_lex_state = 3}, - [1946] = {.lex_state = 58, .external_lex_state = 3}, - [1947] = {.lex_state = 58, .external_lex_state = 3}, - [1948] = {.lex_state = 0, .external_lex_state = 3}, - [1949] = {.lex_state = 0, .external_lex_state = 3}, - [1950] = {.lex_state = 4, .external_lex_state = 3}, + [1943] = {.lex_state = 4, .external_lex_state = 3}, + [1944] = {.lex_state = 58, .external_lex_state = 3}, + [1945] = {.lex_state = 58, .external_lex_state = 3}, + [1946] = {.lex_state = 0, .external_lex_state = 3}, + [1947] = {.lex_state = 4, .external_lex_state = 3}, + [1948] = {.lex_state = 4, .external_lex_state = 3}, + [1949] = {.lex_state = 58, .external_lex_state = 3}, + [1950] = {.lex_state = 58, .external_lex_state = 3}, [1951] = {.lex_state = 0, .external_lex_state = 3}, - [1952] = {.lex_state = 0, .external_lex_state = 3}, - [1953] = {.lex_state = 4, .external_lex_state = 3}, - [1954] = {.lex_state = 0, .external_lex_state = 3}, + [1952] = {.lex_state = 58, .external_lex_state = 3}, + [1953] = {.lex_state = 0, .external_lex_state = 3}, + [1954] = {.lex_state = 3, .external_lex_state = 3}, [1955] = {.lex_state = 0, .external_lex_state = 3}, - [1956] = {.lex_state = 0, .external_lex_state = 3}, + [1956] = {.lex_state = 4, .external_lex_state = 3}, [1957] = {.lex_state = 0, .external_lex_state = 3}, - [1958] = {.lex_state = 58, .external_lex_state = 3}, + [1958] = {.lex_state = 0, .external_lex_state = 3}, [1959] = {.lex_state = 0, .external_lex_state = 3}, [1960] = {.lex_state = 0, .external_lex_state = 3}, - [1961] = {.lex_state = 3, .external_lex_state = 3}, + [1961] = {.lex_state = 0, .external_lex_state = 3}, [1962] = {.lex_state = 0, .external_lex_state = 3}, - [1963] = {.lex_state = 3, .external_lex_state = 3}, - [1964] = {.lex_state = 0, .external_lex_state = 3}, - [1965] = {.lex_state = 58, .external_lex_state = 3}, + [1963] = {.lex_state = 58, .external_lex_state = 3}, + [1964] = {.lex_state = 4, .external_lex_state = 3}, + [1965] = {.lex_state = 0, .external_lex_state = 3}, [1966] = {.lex_state = 0, .external_lex_state = 3}, [1967] = {.lex_state = 0, .external_lex_state = 3}, [1968] = {.lex_state = 58, .external_lex_state = 3}, - [1969] = {.lex_state = 0, .external_lex_state = 3}, - [1970] = {.lex_state = 0, .external_lex_state = 3}, + [1969] = {.lex_state = 58, .external_lex_state = 3}, + [1970] = {.lex_state = 3, .external_lex_state = 3}, [1971] = {.lex_state = 3, .external_lex_state = 3}, - [1972] = {.lex_state = 3, .external_lex_state = 3}, - [1973] = {.lex_state = 58, .external_lex_state = 3}, - [1974] = {.lex_state = 0, .external_lex_state = 3}, + [1972] = {.lex_state = 58, .external_lex_state = 3}, + [1973] = {.lex_state = 9, .external_lex_state = 3}, + [1974] = {.lex_state = 58, .external_lex_state = 3}, [1975] = {.lex_state = 0, .external_lex_state = 3}, [1976] = {.lex_state = 0, .external_lex_state = 3}, - [1977] = {.lex_state = 9, .external_lex_state = 3}, - [1978] = {.lex_state = 58, .external_lex_state = 3}, - [1979] = {.lex_state = 0, .external_lex_state = 3}, - [1980] = {.lex_state = 58, .external_lex_state = 3}, - [1981] = {.lex_state = 58, .external_lex_state = 3}, - [1982] = {.lex_state = 4, .external_lex_state = 3}, + [1977] = {.lex_state = 0, .external_lex_state = 3}, + [1978] = {.lex_state = 0, .external_lex_state = 3}, + [1979] = {.lex_state = 58, .external_lex_state = 3}, + [1980] = {.lex_state = 0, .external_lex_state = 3}, + [1981] = {.lex_state = 0, .external_lex_state = 3}, + [1982] = {.lex_state = 3, .external_lex_state = 3}, [1983] = {.lex_state = 3, .external_lex_state = 3}, [1984] = {.lex_state = 0, .external_lex_state = 3}, - [1985] = {.lex_state = 3, .external_lex_state = 3}, - [1986] = {.lex_state = 3, .external_lex_state = 3}, + [1985] = {.lex_state = 58, .external_lex_state = 3}, + [1986] = {.lex_state = 58, .external_lex_state = 3}, [1987] = {.lex_state = 0, .external_lex_state = 3}, [1988] = {.lex_state = 58, .external_lex_state = 3}, [1989] = {.lex_state = 58, .external_lex_state = 3}, - [1990] = {.lex_state = 58, .external_lex_state = 3}, - [1991] = {.lex_state = 3, .external_lex_state = 3}, - [1992] = {.lex_state = 3, .external_lex_state = 3}, + [1990] = {.lex_state = 0, .external_lex_state = 3}, + [1991] = {.lex_state = 4, .external_lex_state = 3}, + [1992] = {.lex_state = 0, .external_lex_state = 3}, [1993] = {.lex_state = 58, .external_lex_state = 3}, - [1994] = {.lex_state = 0, .external_lex_state = 3}, + [1994] = {.lex_state = 58, .external_lex_state = 3}, [1995] = {.lex_state = 0, .external_lex_state = 3}, - [1996] = {.lex_state = 4, .external_lex_state = 3}, + [1996] = {.lex_state = 0, .external_lex_state = 3}, [1997] = {.lex_state = 3, .external_lex_state = 3}, - [1998] = {.lex_state = 0, .external_lex_state = 3}, - [1999] = {.lex_state = 0, .external_lex_state = 3}, - [2000] = {.lex_state = 58, .external_lex_state = 3}, - [2001] = {.lex_state = 18, .external_lex_state = 3}, - [2002] = {.lex_state = 58, .external_lex_state = 3}, - [2003] = {.lex_state = 0, .external_lex_state = 3}, - [2004] = {.lex_state = 9, .external_lex_state = 3}, - [2005] = {.lex_state = 3, .external_lex_state = 3}, - [2006] = {.lex_state = 3, .external_lex_state = 3}, - [2007] = {.lex_state = 58, .external_lex_state = 3}, - [2008] = {.lex_state = 58, .external_lex_state = 3}, - [2009] = {.lex_state = 58, .external_lex_state = 3}, + [1998] = {.lex_state = 58, .external_lex_state = 3}, + [1999] = {.lex_state = 3, .external_lex_state = 3}, + [2000] = {.lex_state = 3, .external_lex_state = 3}, + [2001] = {.lex_state = 4, .external_lex_state = 3}, + [2002] = {.lex_state = 3, .external_lex_state = 3}, + [2003] = {.lex_state = 3, .external_lex_state = 3}, + [2004] = {.lex_state = 0, .external_lex_state = 3}, + [2005] = {.lex_state = 58, .external_lex_state = 3}, + [2006] = {.lex_state = 0, .external_lex_state = 3}, + [2007] = {.lex_state = 0, .external_lex_state = 3}, + [2008] = {.lex_state = 3, .external_lex_state = 3}, + [2009] = {.lex_state = 0, .external_lex_state = 3}, [2010] = {.lex_state = 0, .external_lex_state = 3}, - [2011] = {.lex_state = 3, .external_lex_state = 3}, + [2011] = {.lex_state = 58, .external_lex_state = 3}, [2012] = {.lex_state = 0, .external_lex_state = 3}, - [2013] = {.lex_state = 0, .external_lex_state = 3}, - [2014] = {.lex_state = 9, .external_lex_state = 3}, - [2015] = {.lex_state = 3, .external_lex_state = 3}, - [2016] = {.lex_state = 0, .external_lex_state = 3}, + [2013] = {.lex_state = 9, .external_lex_state = 3}, + [2014] = {.lex_state = 4, .external_lex_state = 3}, + [2015] = {.lex_state = 0, .external_lex_state = 3}, + [2016] = {.lex_state = 58, .external_lex_state = 3}, [2017] = {.lex_state = 0, .external_lex_state = 3}, - [2018] = {.lex_state = 58, .external_lex_state = 3}, - [2019] = {.lex_state = 0, .external_lex_state = 3}, - [2020] = {.lex_state = 58, .external_lex_state = 3}, - [2021] = {.lex_state = 4, .external_lex_state = 3}, - [2022] = {.lex_state = 58, .external_lex_state = 3}, - [2023] = {.lex_state = 58, .external_lex_state = 3}, - [2024] = {.lex_state = 0, .external_lex_state = 3}, + [2018] = {.lex_state = 0, .external_lex_state = 3}, + [2019] = {.lex_state = 3, .external_lex_state = 3}, + [2020] = {.lex_state = 0, .external_lex_state = 3}, + [2021] = {.lex_state = 3, .external_lex_state = 3}, + [2022] = {.lex_state = 3, .external_lex_state = 3}, + [2023] = {.lex_state = 18, .external_lex_state = 3}, + [2024] = {.lex_state = 58, .external_lex_state = 3}, [2025] = {.lex_state = 58, .external_lex_state = 3}, - [2026] = {.lex_state = 0, .external_lex_state = 3}, + [2026] = {.lex_state = 3, .external_lex_state = 3}, [2027] = {.lex_state = 0, .external_lex_state = 3}, [2028] = {.lex_state = 0, .external_lex_state = 3}, [2029] = {.lex_state = 0, .external_lex_state = 3}, - [2030] = {.lex_state = 0, .external_lex_state = 3}, + [2030] = {.lex_state = 58, .external_lex_state = 3}, [2031] = {.lex_state = 0, .external_lex_state = 3}, [2032] = {.lex_state = 58, .external_lex_state = 3}, [2033] = {.lex_state = 4, .external_lex_state = 3}, [2034] = {.lex_state = 0, .external_lex_state = 3}, - [2035] = {.lex_state = 4, .external_lex_state = 3}, + [2035] = {.lex_state = 9, .external_lex_state = 3}, [2036] = {.lex_state = 0, .external_lex_state = 3}, [2037] = {.lex_state = 0, .external_lex_state = 3}, [2038] = {.lex_state = 0, .external_lex_state = 3}, [2039] = {.lex_state = 0, .external_lex_state = 3}, [2040] = {.lex_state = 0, .external_lex_state = 3}, - [2041] = {.lex_state = 4, .external_lex_state = 3}, + [2041] = {.lex_state = 0, .external_lex_state = 3}, [2042] = {.lex_state = 0, .external_lex_state = 3}, [2043] = {.lex_state = 58, .external_lex_state = 3}, [2044] = {.lex_state = 0, .external_lex_state = 3}, - [2045] = {.lex_state = 0, .external_lex_state = 3}, - [2046] = {.lex_state = 0, .external_lex_state = 3}, + [2045] = {.lex_state = 4, .external_lex_state = 3}, + [2046] = {.lex_state = 58, .external_lex_state = 3}, [2047] = {.lex_state = 0, .external_lex_state = 3}, [2048] = {.lex_state = 0, .external_lex_state = 3}, - [2049] = {.lex_state = 58, .external_lex_state = 3}, + [2049] = {.lex_state = 0, .external_lex_state = 3}, [2050] = {.lex_state = 0, .external_lex_state = 3}, [2051] = {.lex_state = 0, .external_lex_state = 3}, - [2052] = {.lex_state = 0, .external_lex_state = 3}, - [2053] = {.lex_state = 58, .external_lex_state = 3}, - [2054] = {.lex_state = 58, .external_lex_state = 3}, + [2052] = {.lex_state = 58, .external_lex_state = 3}, + [2053] = {.lex_state = 0, .external_lex_state = 3}, + [2054] = {.lex_state = 4, .external_lex_state = 3}, [2055] = {.lex_state = 0, .external_lex_state = 3}, [2056] = {.lex_state = 0, .external_lex_state = 3}, [2057] = {.lex_state = 0, .external_lex_state = 3}, @@ -15401,241 +15422,241 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2059] = {.lex_state = 0, .external_lex_state = 3}, [2060] = {.lex_state = 58, .external_lex_state = 3}, [2061] = {.lex_state = 0, .external_lex_state = 3}, - [2062] = {.lex_state = 3, .external_lex_state = 3}, + [2062] = {.lex_state = 0, .external_lex_state = 3}, [2063] = {.lex_state = 0, .external_lex_state = 3}, [2064] = {.lex_state = 0, .external_lex_state = 3}, - [2065] = {.lex_state = 58, .external_lex_state = 3}, + [2065] = {.lex_state = 0, .external_lex_state = 3}, [2066] = {.lex_state = 0, .external_lex_state = 3}, [2067] = {.lex_state = 0, .external_lex_state = 3}, - [2068] = {.lex_state = 0, .external_lex_state = 3}, - [2069] = {.lex_state = 58, .external_lex_state = 3}, + [2068] = {.lex_state = 58, .external_lex_state = 3}, + [2069] = {.lex_state = 0, .external_lex_state = 3}, [2070] = {.lex_state = 0, .external_lex_state = 3}, - [2071] = {.lex_state = 58, .external_lex_state = 3}, - [2072] = {.lex_state = 4, .external_lex_state = 3}, - [2073] = {.lex_state = 58, .external_lex_state = 3}, - [2074] = {.lex_state = 0, .external_lex_state = 3}, - [2075] = {.lex_state = 0, .external_lex_state = 3}, + [2071] = {.lex_state = 0, .external_lex_state = 3}, + [2072] = {.lex_state = 0, .external_lex_state = 3}, + [2073] = {.lex_state = 0, .external_lex_state = 3}, + [2074] = {.lex_state = 3, .external_lex_state = 3}, + [2075] = {.lex_state = 58, .external_lex_state = 3}, [2076] = {.lex_state = 0, .external_lex_state = 3}, - [2077] = {.lex_state = 0, .external_lex_state = 3}, + [2077] = {.lex_state = 58, .external_lex_state = 3}, [2078] = {.lex_state = 0, .external_lex_state = 3}, [2079] = {.lex_state = 0, .external_lex_state = 3}, - [2080] = {.lex_state = 0, .external_lex_state = 3}, - [2081] = {.lex_state = 3, .external_lex_state = 3}, + [2080] = {.lex_state = 58, .external_lex_state = 3}, + [2081] = {.lex_state = 0, .external_lex_state = 3}, [2082] = {.lex_state = 0, .external_lex_state = 3}, - [2083] = {.lex_state = 58, .external_lex_state = 3}, + [2083] = {.lex_state = 0, .external_lex_state = 3}, [2084] = {.lex_state = 0, .external_lex_state = 3}, - [2085] = {.lex_state = 0, .external_lex_state = 3}, - [2086] = {.lex_state = 0, .external_lex_state = 3}, + [2085] = {.lex_state = 4, .external_lex_state = 3}, + [2086] = {.lex_state = 58, .external_lex_state = 3}, [2087] = {.lex_state = 0, .external_lex_state = 3}, [2088] = {.lex_state = 0, .external_lex_state = 3}, - [2089] = {.lex_state = 58, .external_lex_state = 3}, - [2090] = {.lex_state = 0, .external_lex_state = 3}, - [2091] = {.lex_state = 58, .external_lex_state = 3}, + [2089] = {.lex_state = 0, .external_lex_state = 3}, + [2090] = {.lex_state = 58, .external_lex_state = 3}, + [2091] = {.lex_state = 0, .external_lex_state = 3}, [2092] = {.lex_state = 0, .external_lex_state = 3}, - [2093] = {.lex_state = 0, .external_lex_state = 3}, + [2093] = {.lex_state = 3, .external_lex_state = 3}, [2094] = {.lex_state = 0, .external_lex_state = 3}, [2095] = {.lex_state = 58, .external_lex_state = 3}, - [2096] = {.lex_state = 58, .external_lex_state = 3}, - [2097] = {.lex_state = 58, .external_lex_state = 3}, + [2096] = {.lex_state = 0, .external_lex_state = 3}, + [2097] = {.lex_state = 0, .external_lex_state = 3}, [2098] = {.lex_state = 0, .external_lex_state = 3}, [2099] = {.lex_state = 0, .external_lex_state = 3}, [2100] = {.lex_state = 0, .external_lex_state = 3}, - [2101] = {.lex_state = 0, .external_lex_state = 3}, - [2102] = {.lex_state = 58, .external_lex_state = 3}, + [2101] = {.lex_state = 58, .external_lex_state = 3}, + [2102] = {.lex_state = 0, .external_lex_state = 3}, [2103] = {.lex_state = 58, .external_lex_state = 3}, - [2104] = {.lex_state = 58, .external_lex_state = 3}, - [2105] = {.lex_state = 58, .external_lex_state = 3}, + [2104] = {.lex_state = 0, .external_lex_state = 3}, + [2105] = {.lex_state = 0, .external_lex_state = 3}, [2106] = {.lex_state = 0, .external_lex_state = 3}, - [2107] = {.lex_state = 0, .external_lex_state = 3}, - [2108] = {.lex_state = 4, .external_lex_state = 3}, - [2109] = {.lex_state = 0, .external_lex_state = 3}, + [2107] = {.lex_state = 58, .external_lex_state = 3}, + [2108] = {.lex_state = 58, .external_lex_state = 3}, + [2109] = {.lex_state = 58, .external_lex_state = 3}, [2110] = {.lex_state = 0, .external_lex_state = 3}, [2111] = {.lex_state = 0, .external_lex_state = 3}, [2112] = {.lex_state = 0, .external_lex_state = 3}, - [2113] = {.lex_state = 0, .external_lex_state = 3}, - [2114] = {.lex_state = 0, .external_lex_state = 3}, + [2113] = {.lex_state = 58, .external_lex_state = 3}, + [2114] = {.lex_state = 58, .external_lex_state = 3}, [2115] = {.lex_state = 0, .external_lex_state = 3}, [2116] = {.lex_state = 58, .external_lex_state = 3}, - [2117] = {.lex_state = 4, .external_lex_state = 3}, + [2117] = {.lex_state = 0, .external_lex_state = 3}, [2118] = {.lex_state = 0, .external_lex_state = 3}, - [2119] = {.lex_state = 4, .external_lex_state = 3}, - [2120] = {.lex_state = 0, .external_lex_state = 3}, + [2119] = {.lex_state = 0, .external_lex_state = 3}, + [2120] = {.lex_state = 4, .external_lex_state = 3}, [2121] = {.lex_state = 0, .external_lex_state = 3}, - [2122] = {.lex_state = 0, .external_lex_state = 3}, + [2122] = {.lex_state = 4, .external_lex_state = 3}, [2123] = {.lex_state = 0, .external_lex_state = 3}, - [2124] = {.lex_state = 58, .external_lex_state = 3}, + [2124] = {.lex_state = 0, .external_lex_state = 3}, [2125] = {.lex_state = 0, .external_lex_state = 3}, [2126] = {.lex_state = 0, .external_lex_state = 3}, [2127] = {.lex_state = 0, .external_lex_state = 3}, - [2128] = {.lex_state = 0, .external_lex_state = 3}, - [2129] = {.lex_state = 58, .external_lex_state = 3}, - [2130] = {.lex_state = 4, .external_lex_state = 3}, - [2131] = {.lex_state = 4, .external_lex_state = 3}, + [2128] = {.lex_state = 58, .external_lex_state = 3}, + [2129] = {.lex_state = 0, .external_lex_state = 3}, + [2130] = {.lex_state = 0, .external_lex_state = 3}, + [2131] = {.lex_state = 0, .external_lex_state = 3}, [2132] = {.lex_state = 0, .external_lex_state = 3}, - [2133] = {.lex_state = 0, .external_lex_state = 3}, - [2134] = {.lex_state = 0, .external_lex_state = 3}, - [2135] = {.lex_state = 4, .external_lex_state = 3}, - [2136] = {.lex_state = 58, .external_lex_state = 3}, + [2133] = {.lex_state = 58, .external_lex_state = 3}, + [2134] = {.lex_state = 4, .external_lex_state = 3}, + [2135] = {.lex_state = 0, .external_lex_state = 3}, + [2136] = {.lex_state = 4, .external_lex_state = 3}, [2137] = {.lex_state = 0, .external_lex_state = 3}, - [2138] = {.lex_state = 4, .external_lex_state = 3}, + [2138] = {.lex_state = 0, .external_lex_state = 3}, [2139] = {.lex_state = 0, .external_lex_state = 3}, [2140] = {.lex_state = 0, .external_lex_state = 3}, [2141] = {.lex_state = 0, .external_lex_state = 3}, [2142] = {.lex_state = 0, .external_lex_state = 3}, - [2143] = {.lex_state = 0, .external_lex_state = 3}, - [2144] = {.lex_state = 4, .external_lex_state = 3}, + [2143] = {.lex_state = 4, .external_lex_state = 3}, + [2144] = {.lex_state = 0, .external_lex_state = 3}, [2145] = {.lex_state = 0, .external_lex_state = 3}, [2146] = {.lex_state = 58, .external_lex_state = 3}, - [2147] = {.lex_state = 4, .external_lex_state = 3}, + [2147] = {.lex_state = 0, .external_lex_state = 3}, [2148] = {.lex_state = 4, .external_lex_state = 3}, [2149] = {.lex_state = 0, .external_lex_state = 3}, [2150] = {.lex_state = 0, .external_lex_state = 3}, [2151] = {.lex_state = 0, .external_lex_state = 3}, - [2152] = {.lex_state = 4, .external_lex_state = 3}, + [2152] = {.lex_state = 0, .external_lex_state = 3}, [2153] = {.lex_state = 4, .external_lex_state = 3}, - [2154] = {.lex_state = 0, .external_lex_state = 3}, + [2154] = {.lex_state = 58, .external_lex_state = 3}, [2155] = {.lex_state = 4, .external_lex_state = 3}, - [2156] = {.lex_state = 0, .external_lex_state = 3}, - [2157] = {.lex_state = 0, .external_lex_state = 3}, - [2158] = {.lex_state = 18, .external_lex_state = 3}, - [2159] = {.lex_state = 0, .external_lex_state = 3}, - [2160] = {.lex_state = 0, .external_lex_state = 3}, + [2156] = {.lex_state = 4, .external_lex_state = 3}, + [2157] = {.lex_state = 4, .external_lex_state = 3}, + [2158] = {.lex_state = 0, .external_lex_state = 3}, + [2159] = {.lex_state = 58, .external_lex_state = 3}, + [2160] = {.lex_state = 4, .external_lex_state = 3}, [2161] = {.lex_state = 0, .external_lex_state = 3}, [2162] = {.lex_state = 0, .external_lex_state = 3}, - [2163] = {.lex_state = 0, .external_lex_state = 3}, + [2163] = {.lex_state = 58, .external_lex_state = 3}, [2164] = {.lex_state = 0, .external_lex_state = 3}, - [2165] = {.lex_state = 4, .external_lex_state = 3}, + [2165] = {.lex_state = 18, .external_lex_state = 3}, [2166] = {.lex_state = 0, .external_lex_state = 3}, [2167] = {.lex_state = 4, .external_lex_state = 3}, [2168] = {.lex_state = 0, .external_lex_state = 3}, [2169] = {.lex_state = 0, .external_lex_state = 3}, - [2170] = {.lex_state = 4, .external_lex_state = 3}, + [2170] = {.lex_state = 0, .external_lex_state = 3}, [2171] = {.lex_state = 0, .external_lex_state = 3}, - [2172] = {.lex_state = 58, .external_lex_state = 3}, - [2173] = {.lex_state = 0, .external_lex_state = 3}, - [2174] = {.lex_state = 0, .external_lex_state = 3}, + [2172] = {.lex_state = 4, .external_lex_state = 3}, + [2173] = {.lex_state = 58, .external_lex_state = 3}, + [2174] = {.lex_state = 4, .external_lex_state = 3}, [2175] = {.lex_state = 0, .external_lex_state = 3}, - [2176] = {.lex_state = 0, .external_lex_state = 3}, - [2177] = {.lex_state = 0, .external_lex_state = 3}, - [2178] = {.lex_state = 58, .external_lex_state = 3}, - [2179] = {.lex_state = 4, .external_lex_state = 3}, - [2180] = {.lex_state = 58, .external_lex_state = 3}, - [2181] = {.lex_state = 4, .external_lex_state = 3}, - [2182] = {.lex_state = 18, .external_lex_state = 3}, + [2176] = {.lex_state = 4, .external_lex_state = 3}, + [2177] = {.lex_state = 58, .external_lex_state = 3}, + [2178] = {.lex_state = 4, .external_lex_state = 3}, + [2179] = {.lex_state = 58, .external_lex_state = 3}, + [2180] = {.lex_state = 0, .external_lex_state = 3}, + [2181] = {.lex_state = 0, .external_lex_state = 3}, + [2182] = {.lex_state = 0, .external_lex_state = 3}, [2183] = {.lex_state = 0, .external_lex_state = 3}, - [2184] = {.lex_state = 0, .external_lex_state = 3}, - [2185] = {.lex_state = 0, .external_lex_state = 3}, + [2184] = {.lex_state = 58, .external_lex_state = 3}, + [2185] = {.lex_state = 4, .external_lex_state = 3}, [2186] = {.lex_state = 0, .external_lex_state = 3}, - [2187] = {.lex_state = 58, .external_lex_state = 3}, + [2187] = {.lex_state = 0, .external_lex_state = 3}, [2188] = {.lex_state = 0, .external_lex_state = 3}, [2189] = {.lex_state = 0, .external_lex_state = 3}, [2190] = {.lex_state = 0, .external_lex_state = 3}, - [2191] = {.lex_state = 0, .external_lex_state = 3}, + [2191] = {.lex_state = 18, .external_lex_state = 3}, [2192] = {.lex_state = 0, .external_lex_state = 3}, - [2193] = {.lex_state = 18, .external_lex_state = 3}, - [2194] = {.lex_state = 0, .external_lex_state = 5}, - [2195] = {.lex_state = 18, .external_lex_state = 3}, - [2196] = {.lex_state = 4, .external_lex_state = 3}, + [2193] = {.lex_state = 0, .external_lex_state = 3}, + [2194] = {.lex_state = 58, .external_lex_state = 3}, + [2195] = {.lex_state = 0, .external_lex_state = 3}, + [2196] = {.lex_state = 0, .external_lex_state = 3}, [2197] = {.lex_state = 0, .external_lex_state = 3}, [2198] = {.lex_state = 0, .external_lex_state = 3}, - [2199] = {.lex_state = 0, .external_lex_state = 3}, + [2199] = {.lex_state = 58, .external_lex_state = 3}, [2200] = {.lex_state = 0, .external_lex_state = 3}, - [2201] = {.lex_state = 18, .external_lex_state = 3}, - [2202] = {.lex_state = 0, .external_lex_state = 3}, + [2201] = {.lex_state = 0, .external_lex_state = 3}, + [2202] = {.lex_state = 18, .external_lex_state = 3}, [2203] = {.lex_state = 0, .external_lex_state = 3}, - [2204] = {.lex_state = 0, .external_lex_state = 3}, - [2205] = {.lex_state = 0, .external_lex_state = 3}, + [2204] = {.lex_state = 18, .external_lex_state = 3}, + [2205] = {.lex_state = 4, .external_lex_state = 3}, [2206] = {.lex_state = 0, .external_lex_state = 3}, - [2207] = {.lex_state = 58, .external_lex_state = 3}, + [2207] = {.lex_state = 18, .external_lex_state = 3}, [2208] = {.lex_state = 0, .external_lex_state = 3}, [2209] = {.lex_state = 0, .external_lex_state = 3}, - [2210] = {.lex_state = 4, .external_lex_state = 3}, + [2210] = {.lex_state = 0, .external_lex_state = 3}, [2211] = {.lex_state = 0, .external_lex_state = 3}, - [2212] = {.lex_state = 0, .external_lex_state = 3}, - [2213] = {.lex_state = 4, .external_lex_state = 3}, + [2212] = {.lex_state = 0, .external_lex_state = 5}, + [2213] = {.lex_state = 0, .external_lex_state = 3}, [2214] = {.lex_state = 0, .external_lex_state = 3}, [2215] = {.lex_state = 0, .external_lex_state = 3}, - [2216] = {.lex_state = 58, .external_lex_state = 3}, - [2217] = {.lex_state = 0, .external_lex_state = 3}, + [2216] = {.lex_state = 18, .external_lex_state = 3}, + [2217] = {.lex_state = 4, .external_lex_state = 3}, [2218] = {.lex_state = 0, .external_lex_state = 3}, - [2219] = {.lex_state = 0, .external_lex_state = 3}, - [2220] = {.lex_state = 4, .external_lex_state = 3}, + [2219] = {.lex_state = 58, .external_lex_state = 3}, + [2220] = {.lex_state = 0, .external_lex_state = 3}, [2221] = {.lex_state = 0, .external_lex_state = 3}, - [2222] = {.lex_state = 9, .external_lex_state = 3}, - [2223] = {.lex_state = 58, .external_lex_state = 3}, - [2224] = {.lex_state = 0, .external_lex_state = 3}, + [2222] = {.lex_state = 0, .external_lex_state = 3}, + [2223] = {.lex_state = 4, .external_lex_state = 3}, + [2224] = {.lex_state = 58, .external_lex_state = 3}, [2225] = {.lex_state = 0, .external_lex_state = 3}, [2226] = {.lex_state = 0, .external_lex_state = 3}, [2227] = {.lex_state = 0, .external_lex_state = 3}, - [2228] = {.lex_state = 58, .external_lex_state = 3}, - [2229] = {.lex_state = 58, .external_lex_state = 3}, + [2228] = {.lex_state = 0, .external_lex_state = 3}, + [2229] = {.lex_state = 0, .external_lex_state = 3}, [2230] = {.lex_state = 0, .external_lex_state = 3}, [2231] = {.lex_state = 0, .external_lex_state = 3}, [2232] = {.lex_state = 0, .external_lex_state = 3}, [2233] = {.lex_state = 0, .external_lex_state = 3}, [2234] = {.lex_state = 0, .external_lex_state = 3}, - [2235] = {.lex_state = 0, .external_lex_state = 3}, + [2235] = {.lex_state = 58, .external_lex_state = 3}, [2236] = {.lex_state = 0, .external_lex_state = 3}, [2237] = {.lex_state = 0, .external_lex_state = 3}, - [2238] = {.lex_state = 0, .external_lex_state = 3}, + [2238] = {.lex_state = 9, .external_lex_state = 3}, [2239] = {.lex_state = 0, .external_lex_state = 3}, - [2240] = {.lex_state = 58, .external_lex_state = 3}, - [2241] = {.lex_state = 0, .external_lex_state = 3}, - [2242] = {.lex_state = 18, .external_lex_state = 3}, + [2240] = {.lex_state = 4, .external_lex_state = 3}, + [2241] = {.lex_state = 58, .external_lex_state = 3}, + [2242] = {.lex_state = 0, .external_lex_state = 3}, [2243] = {.lex_state = 0, .external_lex_state = 3}, [2244] = {.lex_state = 0, .external_lex_state = 3}, [2245] = {.lex_state = 0, .external_lex_state = 3}, [2246] = {.lex_state = 0, .external_lex_state = 3}, - [2247] = {.lex_state = 4, .external_lex_state = 3}, + [2247] = {.lex_state = 0, .external_lex_state = 3}, [2248] = {.lex_state = 0, .external_lex_state = 3}, [2249] = {.lex_state = 0, .external_lex_state = 3}, [2250] = {.lex_state = 0, .external_lex_state = 3}, [2251] = {.lex_state = 0, .external_lex_state = 3}, [2252] = {.lex_state = 0, .external_lex_state = 3}, - [2253] = {.lex_state = 58, .external_lex_state = 3}, - [2254] = {.lex_state = 0, .external_lex_state = 3}, + [2253] = {.lex_state = 0, .external_lex_state = 3}, + [2254] = {.lex_state = 4, .external_lex_state = 3}, [2255] = {.lex_state = 0, .external_lex_state = 3}, [2256] = {.lex_state = 0, .external_lex_state = 3}, [2257] = {.lex_state = 0, .external_lex_state = 3}, [2258] = {.lex_state = 0, .external_lex_state = 3}, [2259] = {.lex_state = 0, .external_lex_state = 3}, - [2260] = {.lex_state = 0, .external_lex_state = 3}, + [2260] = {.lex_state = 58, .external_lex_state = 3}, [2261] = {.lex_state = 0, .external_lex_state = 3}, [2262] = {.lex_state = 58, .external_lex_state = 3}, - [2263] = {.lex_state = 58, .external_lex_state = 3}, + [2263] = {.lex_state = 0, .external_lex_state = 3}, [2264] = {.lex_state = 0, .external_lex_state = 3}, [2265] = {.lex_state = 0, .external_lex_state = 3}, - [2266] = {.lex_state = 58, .external_lex_state = 3}, + [2266] = {.lex_state = 0, .external_lex_state = 3}, [2267] = {.lex_state = 0, .external_lex_state = 3}, - [2268] = {.lex_state = 58, .external_lex_state = 3}, - [2269] = {.lex_state = 58, .external_lex_state = 3}, + [2268] = {.lex_state = 0, .external_lex_state = 3}, + [2269] = {.lex_state = 0, .external_lex_state = 3}, [2270] = {.lex_state = 0, .external_lex_state = 3}, - [2271] = {.lex_state = 58, .external_lex_state = 3}, - [2272] = {.lex_state = 58, .external_lex_state = 3}, - [2273] = {.lex_state = 4, .external_lex_state = 3}, - [2274] = {.lex_state = 4, .external_lex_state = 3}, + [2271] = {.lex_state = 0, .external_lex_state = 3}, + [2272] = {.lex_state = 4, .external_lex_state = 3}, + [2273] = {.lex_state = 0, .external_lex_state = 3}, + [2274] = {.lex_state = 58, .external_lex_state = 3}, [2275] = {.lex_state = 58, .external_lex_state = 3}, [2276] = {.lex_state = 0, .external_lex_state = 3}, - [2277] = {.lex_state = 4, .external_lex_state = 3}, + [2277] = {.lex_state = 58, .external_lex_state = 3}, [2278] = {.lex_state = 0, .external_lex_state = 3}, [2279] = {.lex_state = 0, .external_lex_state = 3}, [2280] = {.lex_state = 0, .external_lex_state = 3}, [2281] = {.lex_state = 0, .external_lex_state = 3}, - [2282] = {.lex_state = 0, .external_lex_state = 3}, - [2283] = {.lex_state = 0, .external_lex_state = 3}, - [2284] = {.lex_state = 58, .external_lex_state = 3}, + [2282] = {.lex_state = 58, .external_lex_state = 3}, + [2283] = {.lex_state = 58, .external_lex_state = 3}, + [2284] = {.lex_state = 0, .external_lex_state = 3}, [2285] = {.lex_state = 0, .external_lex_state = 3}, - [2286] = {.lex_state = 0, .external_lex_state = 3}, - [2287] = {.lex_state = 0, .external_lex_state = 3}, + [2286] = {.lex_state = 58, .external_lex_state = 3}, + [2287] = {.lex_state = 4, .external_lex_state = 3}, [2288] = {.lex_state = 58, .external_lex_state = 3}, [2289] = {.lex_state = 0, .external_lex_state = 3}, [2290] = {.lex_state = 0, .external_lex_state = 3}, - [2291] = {.lex_state = 4, .external_lex_state = 3}, - [2292] = {.lex_state = 0, .external_lex_state = 3}, - [2293] = {.lex_state = 58, .external_lex_state = 3}, - [2294] = {.lex_state = 58, .external_lex_state = 3}, + [2291] = {.lex_state = 58, .external_lex_state = 3}, + [2292] = {.lex_state = 4, .external_lex_state = 3}, + [2293] = {.lex_state = 0, .external_lex_state = 3}, + [2294] = {.lex_state = 4, .external_lex_state = 3}, [2295] = {.lex_state = 0, .external_lex_state = 3}, - [2296] = {.lex_state = 0, .external_lex_state = 3}, + [2296] = {.lex_state = 4, .external_lex_state = 3}, [2297] = {.lex_state = 0, .external_lex_state = 3}, [2298] = {.lex_state = 0, .external_lex_state = 3}, [2299] = {.lex_state = 0, .external_lex_state = 3}, @@ -15644,11 +15665,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2302] = {.lex_state = 0, .external_lex_state = 3}, [2303] = {.lex_state = 0, .external_lex_state = 3}, [2304] = {.lex_state = 0, .external_lex_state = 3}, - [2305] = {.lex_state = 0, .external_lex_state = 3}, - [2306] = {.lex_state = 4, .external_lex_state = 3}, + [2305] = {.lex_state = 58, .external_lex_state = 3}, + [2306] = {.lex_state = 58, .external_lex_state = 3}, [2307] = {.lex_state = 0, .external_lex_state = 3}, [2308] = {.lex_state = 0, .external_lex_state = 3}, - [2309] = {.lex_state = 58, .external_lex_state = 3}, + [2309] = {.lex_state = 0, .external_lex_state = 3}, [2310] = {.lex_state = 0, .external_lex_state = 3}, [2311] = {.lex_state = 0, .external_lex_state = 3}, [2312] = {.lex_state = 0, .external_lex_state = 3}, @@ -15658,53 +15679,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2316] = {.lex_state = 0, .external_lex_state = 3}, [2317] = {.lex_state = 0, .external_lex_state = 3}, [2318] = {.lex_state = 4, .external_lex_state = 3}, - [2319] = {.lex_state = 4, .external_lex_state = 3}, - [2320] = {.lex_state = 0, .external_lex_state = 3}, - [2321] = {.lex_state = 58, .external_lex_state = 3}, - [2322] = {.lex_state = 0, .external_lex_state = 3}, - [2323] = {.lex_state = 4, .external_lex_state = 3}, - [2324] = {.lex_state = 4, .external_lex_state = 3}, + [2319] = {.lex_state = 0, .external_lex_state = 3}, + [2320] = {.lex_state = 58, .external_lex_state = 3}, + [2321] = {.lex_state = 0, .external_lex_state = 3}, + [2322] = {.lex_state = 58, .external_lex_state = 3}, + [2323] = {.lex_state = 0, .external_lex_state = 3}, + [2324] = {.lex_state = 0, .external_lex_state = 3}, [2325] = {.lex_state = 4, .external_lex_state = 3}, - [2326] = {.lex_state = 4, .external_lex_state = 3}, + [2326] = {.lex_state = 0, .external_lex_state = 3}, [2327] = {.lex_state = 4, .external_lex_state = 3}, [2328] = {.lex_state = 0, .external_lex_state = 3}, [2329] = {.lex_state = 4, .external_lex_state = 3}, [2330] = {.lex_state = 4, .external_lex_state = 3}, [2331] = {.lex_state = 4, .external_lex_state = 3}, [2332] = {.lex_state = 0, .external_lex_state = 3}, - [2333] = {.lex_state = 4, .external_lex_state = 3}, - [2334] = {.lex_state = 4, .external_lex_state = 3}, + [2333] = {.lex_state = 9, .external_lex_state = 3}, + [2334] = {.lex_state = 0, .external_lex_state = 3}, [2335] = {.lex_state = 4, .external_lex_state = 3}, - [2336] = {.lex_state = 0, .external_lex_state = 3}, + [2336] = {.lex_state = 58, .external_lex_state = 3}, [2337] = {.lex_state = 4, .external_lex_state = 3}, [2338] = {.lex_state = 4, .external_lex_state = 3}, [2339] = {.lex_state = 4, .external_lex_state = 3}, - [2340] = {.lex_state = 4, .external_lex_state = 3}, - [2341] = {.lex_state = 0, .external_lex_state = 3}, - [2342] = {.lex_state = 0, .external_lex_state = 3}, + [2340] = {.lex_state = 0, .external_lex_state = 3}, + [2341] = {.lex_state = 4, .external_lex_state = 3}, + [2342] = {.lex_state = 4, .external_lex_state = 3}, [2343] = {.lex_state = 4, .external_lex_state = 3}, [2344] = {.lex_state = 0, .external_lex_state = 3}, [2345] = {.lex_state = 4, .external_lex_state = 3}, - [2346] = {.lex_state = 4, .external_lex_state = 3}, + [2346] = {.lex_state = 0, .external_lex_state = 3}, [2347] = {.lex_state = 4, .external_lex_state = 3}, [2348] = {.lex_state = 4, .external_lex_state = 3}, [2349] = {.lex_state = 4, .external_lex_state = 3}, [2350] = {.lex_state = 4, .external_lex_state = 3}, [2351] = {.lex_state = 4, .external_lex_state = 3}, [2352] = {.lex_state = 4, .external_lex_state = 3}, - [2353] = {.lex_state = 4, .external_lex_state = 3}, + [2353] = {.lex_state = 58, .external_lex_state = 3}, [2354] = {.lex_state = 4, .external_lex_state = 3}, - [2355] = {.lex_state = 0, .external_lex_state = 3}, + [2355] = {.lex_state = 4, .external_lex_state = 3}, [2356] = {.lex_state = 0, .external_lex_state = 3}, - [2357] = {.lex_state = 0, .external_lex_state = 3}, - [2358] = {.lex_state = 0, .external_lex_state = 3}, + [2357] = {.lex_state = 4, .external_lex_state = 3}, + [2358] = {.lex_state = 4, .external_lex_state = 3}, [2359] = {.lex_state = 0, .external_lex_state = 3}, [2360] = {.lex_state = 4, .external_lex_state = 3}, - [2361] = {.lex_state = 0, .external_lex_state = 3}, - [2362] = {.lex_state = 0, .external_lex_state = 3}, + [2361] = {.lex_state = 4, .external_lex_state = 3}, + [2362] = {.lex_state = 4, .external_lex_state = 3}, [2363] = {.lex_state = 4, .external_lex_state = 3}, - [2364] = {.lex_state = 4, .external_lex_state = 3}, - [2365] = {.lex_state = 4, .external_lex_state = 3}, + [2364] = {.lex_state = 0, .external_lex_state = 3}, + [2365] = {.lex_state = 0, .external_lex_state = 3}, [2366] = {.lex_state = 4, .external_lex_state = 3}, [2367] = {.lex_state = 0, .external_lex_state = 3}, [2368] = {.lex_state = 0, .external_lex_state = 3}, @@ -15712,182 +15733,194 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2370] = {.lex_state = 0, .external_lex_state = 3}, [2371] = {.lex_state = 0, .external_lex_state = 3}, [2372] = {.lex_state = 4, .external_lex_state = 3}, - [2373] = {.lex_state = 4, .external_lex_state = 3}, + [2373] = {.lex_state = 0, .external_lex_state = 3}, [2374] = {.lex_state = 0, .external_lex_state = 3}, - [2375] = {.lex_state = 4, .external_lex_state = 3}, - [2376] = {.lex_state = 9, .external_lex_state = 3}, - [2377] = {.lex_state = 4, .external_lex_state = 3}, + [2375] = {.lex_state = 0, .external_lex_state = 3}, + [2376] = {.lex_state = 0, .external_lex_state = 3}, + [2377] = {.lex_state = 0, .external_lex_state = 3}, [2378] = {.lex_state = 4, .external_lex_state = 3}, - [2379] = {.lex_state = 4, .external_lex_state = 3}, - [2380] = {.lex_state = 4, .external_lex_state = 3}, + [2379] = {.lex_state = 0, .external_lex_state = 3}, + [2380] = {.lex_state = 0, .external_lex_state = 3}, [2381] = {.lex_state = 4, .external_lex_state = 3}, - [2382] = {.lex_state = 4, .external_lex_state = 3}, + [2382] = {.lex_state = 0, .external_lex_state = 3}, [2383] = {.lex_state = 4, .external_lex_state = 3}, [2384] = {.lex_state = 4, .external_lex_state = 3}, - [2385] = {.lex_state = 0, .external_lex_state = 3}, + [2385] = {.lex_state = 9, .external_lex_state = 3}, [2386] = {.lex_state = 4, .external_lex_state = 3}, [2387] = {.lex_state = 4, .external_lex_state = 3}, [2388] = {.lex_state = 4, .external_lex_state = 3}, [2389] = {.lex_state = 4, .external_lex_state = 3}, [2390] = {.lex_state = 0, .external_lex_state = 3}, - [2391] = {.lex_state = 0, .external_lex_state = 3}, - [2392] = {.lex_state = 0, .external_lex_state = 3}, - [2393] = {.lex_state = 0, .external_lex_state = 3}, - [2394] = {.lex_state = 0, .external_lex_state = 3}, - [2395] = {.lex_state = 0, .external_lex_state = 3}, + [2391] = {.lex_state = 4, .external_lex_state = 3}, + [2392] = {.lex_state = 4, .external_lex_state = 3}, + [2393] = {.lex_state = 4, .external_lex_state = 3}, + [2394] = {.lex_state = 4, .external_lex_state = 3}, + [2395] = {.lex_state = 4, .external_lex_state = 3}, [2396] = {.lex_state = 4, .external_lex_state = 3}, [2397] = {.lex_state = 4, .external_lex_state = 3}, - [2398] = {.lex_state = 0, .external_lex_state = 3}, - [2399] = {.lex_state = 0, .external_lex_state = 3}, + [2398] = {.lex_state = 4, .external_lex_state = 3}, + [2399] = {.lex_state = 4, .external_lex_state = 3}, [2400] = {.lex_state = 4, .external_lex_state = 3}, - [2401] = {.lex_state = 0, .external_lex_state = 3}, - [2402] = {.lex_state = 4, .external_lex_state = 3}, - [2403] = {.lex_state = 4, .external_lex_state = 3}, - [2404] = {.lex_state = 9, .external_lex_state = 3}, - [2405] = {.lex_state = 9, .external_lex_state = 3}, - [2406] = {.lex_state = 4, .external_lex_state = 3}, + [2401] = {.lex_state = 4, .external_lex_state = 3}, + [2402] = {.lex_state = 0, .external_lex_state = 3}, + [2403] = {.lex_state = 0, .external_lex_state = 3}, + [2404] = {.lex_state = 0, .external_lex_state = 3}, + [2405] = {.lex_state = 4, .external_lex_state = 3}, + [2406] = {.lex_state = 0, .external_lex_state = 3}, [2407] = {.lex_state = 0, .external_lex_state = 3}, - [2408] = {.lex_state = 4, .external_lex_state = 3}, - [2409] = {.lex_state = 4, .external_lex_state = 3}, - [2410] = {.lex_state = 4, .external_lex_state = 3}, + [2408] = {.lex_state = 0, .external_lex_state = 3}, + [2409] = {.lex_state = 9, .external_lex_state = 3}, + [2410] = {.lex_state = 0, .external_lex_state = 3}, [2411] = {.lex_state = 0, .external_lex_state = 3}, [2412] = {.lex_state = 4, .external_lex_state = 3}, - [2413] = {.lex_state = 4, .external_lex_state = 3}, - [2414] = {.lex_state = 4, .external_lex_state = 3}, - [2415] = {.lex_state = 0, .external_lex_state = 3}, - [2416] = {.lex_state = 0, .external_lex_state = 3}, - [2417] = {.lex_state = 4, .external_lex_state = 3}, - [2418] = {.lex_state = 0, .external_lex_state = 3}, - [2419] = {.lex_state = 9, .external_lex_state = 3}, + [2413] = {.lex_state = 0, .external_lex_state = 3}, + [2414] = {.lex_state = 0, .external_lex_state = 3}, + [2415] = {.lex_state = 4, .external_lex_state = 3}, + [2416] = {.lex_state = 9, .external_lex_state = 3}, + [2417] = {.lex_state = 0, .external_lex_state = 3}, + [2418] = {.lex_state = 4, .external_lex_state = 3}, + [2419] = {.lex_state = 0, .external_lex_state = 3}, [2420] = {.lex_state = 0, .external_lex_state = 3}, - [2421] = {.lex_state = 0, .external_lex_state = 3}, + [2421] = {.lex_state = 4, .external_lex_state = 3}, [2422] = {.lex_state = 0, .external_lex_state = 3}, [2423] = {.lex_state = 4, .external_lex_state = 3}, - [2424] = {.lex_state = 0, .external_lex_state = 3}, - [2425] = {.lex_state = 0, .external_lex_state = 3}, - [2426] = {.lex_state = 0, .external_lex_state = 3}, - [2427] = {.lex_state = 0, .external_lex_state = 3}, + [2424] = {.lex_state = 4, .external_lex_state = 3}, + [2425] = {.lex_state = 4, .external_lex_state = 3}, + [2426] = {.lex_state = 4, .external_lex_state = 3}, + [2427] = {.lex_state = 4, .external_lex_state = 3}, [2428] = {.lex_state = 0, .external_lex_state = 3}, - [2429] = {.lex_state = 0, .external_lex_state = 3}, + [2429] = {.lex_state = 9, .external_lex_state = 3}, [2430] = {.lex_state = 0, .external_lex_state = 3}, - [2431] = {.lex_state = 0, .external_lex_state = 3}, + [2431] = {.lex_state = 4, .external_lex_state = 3}, [2432] = {.lex_state = 4, .external_lex_state = 3}, [2433] = {.lex_state = 0, .external_lex_state = 3}, [2434] = {.lex_state = 4, .external_lex_state = 3}, - [2435] = {.lex_state = 4, .external_lex_state = 3}, - [2436] = {.lex_state = 4, .external_lex_state = 3}, - [2437] = {.lex_state = 4, .external_lex_state = 3}, + [2435] = {.lex_state = 0, .external_lex_state = 3}, + [2436] = {.lex_state = 0, .external_lex_state = 3}, + [2437] = {.lex_state = 0, .external_lex_state = 3}, [2438] = {.lex_state = 4, .external_lex_state = 3}, - [2439] = {.lex_state = 9, .external_lex_state = 3}, - [2440] = {.lex_state = 4, .external_lex_state = 3}, + [2439] = {.lex_state = 4, .external_lex_state = 3}, + [2440] = {.lex_state = 0, .external_lex_state = 3}, [2441] = {.lex_state = 0, .external_lex_state = 3}, - [2442] = {.lex_state = 0, .external_lex_state = 3}, + [2442] = {.lex_state = 4, .external_lex_state = 3}, [2443] = {.lex_state = 0, .external_lex_state = 3}, - [2444] = {.lex_state = 4, .external_lex_state = 3}, - [2445] = {.lex_state = 0, .external_lex_state = 3}, + [2444] = {.lex_state = 0, .external_lex_state = 3}, + [2445] = {.lex_state = 4, .external_lex_state = 3}, [2446] = {.lex_state = 4, .external_lex_state = 3}, - [2447] = {.lex_state = 9, .external_lex_state = 3}, - [2448] = {.lex_state = 4, .external_lex_state = 3}, + [2447] = {.lex_state = 4, .external_lex_state = 3}, + [2448] = {.lex_state = 0, .external_lex_state = 3}, [2449] = {.lex_state = 4, .external_lex_state = 3}, - [2450] = {.lex_state = 4, .external_lex_state = 3}, + [2450] = {.lex_state = 0, .external_lex_state = 3}, [2451] = {.lex_state = 9, .external_lex_state = 3}, - [2452] = {.lex_state = 0, .external_lex_state = 3}, - [2453] = {.lex_state = 0, .external_lex_state = 3}, + [2452] = {.lex_state = 4, .external_lex_state = 3}, + [2453] = {.lex_state = 4, .external_lex_state = 3}, [2454] = {.lex_state = 0, .external_lex_state = 3}, - [2455] = {.lex_state = 4, .external_lex_state = 3}, - [2456] = {.lex_state = 0, .external_lex_state = 3}, + [2455] = {.lex_state = 0, .external_lex_state = 3}, + [2456] = {.lex_state = 4, .external_lex_state = 3}, [2457] = {.lex_state = 0, .external_lex_state = 3}, [2458] = {.lex_state = 0, .external_lex_state = 3}, [2459] = {.lex_state = 0, .external_lex_state = 3}, [2460] = {.lex_state = 4, .external_lex_state = 3}, - [2461] = {.lex_state = 9, .external_lex_state = 3}, + [2461] = {.lex_state = 0, .external_lex_state = 3}, [2462] = {.lex_state = 4, .external_lex_state = 3}, - [2463] = {.lex_state = 0, .external_lex_state = 3}, - [2464] = {.lex_state = 4, .external_lex_state = 3}, + [2463] = {.lex_state = 9, .external_lex_state = 3}, + [2464] = {.lex_state = 0, .external_lex_state = 3}, [2465] = {.lex_state = 0, .external_lex_state = 3}, [2466] = {.lex_state = 0, .external_lex_state = 3}, - [2467] = {.lex_state = 58, .external_lex_state = 3}, + [2467] = {.lex_state = 4, .external_lex_state = 3}, [2468] = {.lex_state = 0, .external_lex_state = 3}, [2469] = {.lex_state = 0, .external_lex_state = 3}, - [2470] = {.lex_state = 4, .external_lex_state = 3}, - [2471] = {.lex_state = 0, .external_lex_state = 3}, + [2470] = {.lex_state = 0, .external_lex_state = 3}, + [2471] = {.lex_state = 9, .external_lex_state = 3}, [2472] = {.lex_state = 4, .external_lex_state = 3}, - [2473] = {.lex_state = 0, .external_lex_state = 3}, + [2473] = {.lex_state = 4, .external_lex_state = 3}, [2474] = {.lex_state = 0, .external_lex_state = 3}, [2475] = {.lex_state = 0, .external_lex_state = 3}, - [2476] = {.lex_state = 4, .external_lex_state = 3}, + [2476] = {.lex_state = 0, .external_lex_state = 3}, [2477] = {.lex_state = 0, .external_lex_state = 3}, - [2478] = {.lex_state = 0, .external_lex_state = 3}, - [2479] = {.lex_state = 4, .external_lex_state = 3}, + [2478] = {.lex_state = 9, .external_lex_state = 3}, + [2479] = {.lex_state = 58, .external_lex_state = 3}, [2480] = {.lex_state = 0, .external_lex_state = 3}, - [2481] = {.lex_state = 0, .external_lex_state = 3}, + [2481] = {.lex_state = 4, .external_lex_state = 3}, [2482] = {.lex_state = 4, .external_lex_state = 3}, - [2483] = {.lex_state = 4, .external_lex_state = 3}, + [2483] = {.lex_state = 0, .external_lex_state = 3}, [2484] = {.lex_state = 0, .external_lex_state = 3}, [2485] = {.lex_state = 4, .external_lex_state = 3}, - [2486] = {.lex_state = 4, .external_lex_state = 3}, + [2486] = {.lex_state = 0, .external_lex_state = 3}, [2487] = {.lex_state = 0, .external_lex_state = 3}, - [2488] = {.lex_state = 0, .external_lex_state = 3}, + [2488] = {.lex_state = 4, .external_lex_state = 3}, [2489] = {.lex_state = 0, .external_lex_state = 3}, - [2490] = {.lex_state = 4, .external_lex_state = 3}, + [2490] = {.lex_state = 0, .external_lex_state = 3}, [2491] = {.lex_state = 0, .external_lex_state = 3}, - [2492] = {.lex_state = 0, .external_lex_state = 3}, + [2492] = {.lex_state = 4, .external_lex_state = 3}, [2493] = {.lex_state = 0, .external_lex_state = 3}, - [2494] = {.lex_state = 4, .external_lex_state = 3}, + [2494] = {.lex_state = 0, .external_lex_state = 3}, [2495] = {.lex_state = 0, .external_lex_state = 3}, - [2496] = {.lex_state = 0, .external_lex_state = 3}, - [2497] = {.lex_state = 0, .external_lex_state = 3}, + [2496] = {.lex_state = 4, .external_lex_state = 3}, + [2497] = {.lex_state = 4, .external_lex_state = 3}, [2498] = {.lex_state = 0, .external_lex_state = 3}, - [2499] = {.lex_state = 4, .external_lex_state = 3}, + [2499] = {.lex_state = 0, .external_lex_state = 3}, [2500] = {.lex_state = 0, .external_lex_state = 3}, - [2501] = {.lex_state = 9, .external_lex_state = 3}, - [2502] = {.lex_state = 0, .external_lex_state = 3}, - [2503] = {.lex_state = 9, .external_lex_state = 3}, + [2501] = {.lex_state = 0, .external_lex_state = 3}, + [2502] = {.lex_state = 4, .external_lex_state = 3}, + [2503] = {.lex_state = 0, .external_lex_state = 3}, [2504] = {.lex_state = 0, .external_lex_state = 3}, - [2505] = {.lex_state = 9, .external_lex_state = 3}, - [2506] = {.lex_state = 58, .external_lex_state = 3}, + [2505] = {.lex_state = 0, .external_lex_state = 3}, + [2506] = {.lex_state = 0, .external_lex_state = 3}, [2507] = {.lex_state = 0, .external_lex_state = 3}, - [2508] = {.lex_state = 9, .external_lex_state = 3}, - [2509] = {.lex_state = 0, .external_lex_state = 3}, - [2510] = {.lex_state = 0, .external_lex_state = 3}, + [2508] = {.lex_state = 0, .external_lex_state = 3}, + [2509] = {.lex_state = 4, .external_lex_state = 3}, + [2510] = {.lex_state = 4, .external_lex_state = 3}, [2511] = {.lex_state = 0, .external_lex_state = 3}, [2512] = {.lex_state = 0, .external_lex_state = 3}, - [2513] = {.lex_state = 0, .external_lex_state = 3}, - [2514] = {.lex_state = 9, .external_lex_state = 3}, - [2515] = {.lex_state = 4, .external_lex_state = 3}, - [2516] = {.lex_state = 9, .external_lex_state = 3}, + [2513] = {.lex_state = 9, .external_lex_state = 3}, + [2514] = {.lex_state = 0, .external_lex_state = 3}, + [2515] = {.lex_state = 9, .external_lex_state = 3}, + [2516] = {.lex_state = 0, .external_lex_state = 3}, [2517] = {.lex_state = 0, .external_lex_state = 3}, - [2518] = {.lex_state = 0, .external_lex_state = 3}, + [2518] = {.lex_state = 4, .external_lex_state = 3}, [2519] = {.lex_state = 0, .external_lex_state = 3}, [2520] = {.lex_state = 9, .external_lex_state = 3}, [2521] = {.lex_state = 0, .external_lex_state = 3}, [2522] = {.lex_state = 0, .external_lex_state = 3}, - [2523] = {.lex_state = 9, .external_lex_state = 3}, - [2524] = {.lex_state = 0, .external_lex_state = 3}, + [2523] = {.lex_state = 0, .external_lex_state = 3}, + [2524] = {.lex_state = 4, .external_lex_state = 3}, [2525] = {.lex_state = 0, .external_lex_state = 3}, [2526] = {.lex_state = 0, .external_lex_state = 3}, [2527] = {.lex_state = 0, .external_lex_state = 3}, - [2528] = {.lex_state = 0, .external_lex_state = 3}, - [2529] = {.lex_state = 9, .external_lex_state = 3}, - [2530] = {.lex_state = 9, .external_lex_state = 3}, + [2528] = {.lex_state = 9, .external_lex_state = 3}, + [2529] = {.lex_state = 0, .external_lex_state = 3}, + [2530] = {.lex_state = 0, .external_lex_state = 3}, [2531] = {.lex_state = 0, .external_lex_state = 3}, - [2532] = {.lex_state = 0, .external_lex_state = 3}, - [2533] = {.lex_state = 4, .external_lex_state = 3}, - [2534] = {.lex_state = 0, .external_lex_state = 3}, - [2535] = {.lex_state = 0, .external_lex_state = 3}, - [2536] = {.lex_state = 4, .external_lex_state = 3}, - [2537] = {.lex_state = 0, .external_lex_state = 3}, - [2538] = {.lex_state = 4, .external_lex_state = 3}, - [2539] = {.lex_state = 58, .external_lex_state = 3}, + [2532] = {.lex_state = 9, .external_lex_state = 3}, + [2533] = {.lex_state = 0, .external_lex_state = 3}, + [2534] = {.lex_state = 4, .external_lex_state = 3}, + [2535] = {.lex_state = 9, .external_lex_state = 3}, + [2536] = {.lex_state = 9, .external_lex_state = 3}, + [2537] = {.lex_state = 58, .external_lex_state = 3}, + [2538] = {.lex_state = 0, .external_lex_state = 3}, + [2539] = {.lex_state = 0, .external_lex_state = 3}, [2540] = {.lex_state = 0, .external_lex_state = 3}, - [2541] = {.lex_state = 4, .external_lex_state = 3}, - [2542] = {.lex_state = 4, .external_lex_state = 3}, - [2543] = {.lex_state = 4, .external_lex_state = 3}, - [2544] = {.lex_state = 0, .external_lex_state = 3}, + [2541] = {.lex_state = 9, .external_lex_state = 3}, + [2542] = {.lex_state = 9, .external_lex_state = 3}, + [2543] = {.lex_state = 0, .external_lex_state = 3}, + [2544] = {.lex_state = 4, .external_lex_state = 3}, [2545] = {.lex_state = 0, .external_lex_state = 3}, - [2546] = {.lex_state = 4, .external_lex_state = 3}, + [2546] = {.lex_state = 0, .external_lex_state = 3}, [2547] = {.lex_state = 0, .external_lex_state = 3}, [2548] = {.lex_state = 4, .external_lex_state = 3}, + [2549] = {.lex_state = 0, .external_lex_state = 3}, + [2550] = {.lex_state = 4, .external_lex_state = 3}, + [2551] = {.lex_state = 4, .external_lex_state = 3}, + [2552] = {.lex_state = 0, .external_lex_state = 3}, + [2553] = {.lex_state = 4, .external_lex_state = 3}, + [2554] = {.lex_state = 4, .external_lex_state = 3}, + [2555] = {.lex_state = 4, .external_lex_state = 3}, + [2556] = {.lex_state = 0, .external_lex_state = 3}, + [2557] = {.lex_state = 0, .external_lex_state = 3}, + [2558] = {.lex_state = 4, .external_lex_state = 3}, + [2559] = {.lex_state = 0, .external_lex_state = 3}, + [2560] = {.lex_state = 4, .external_lex_state = 3}, }; enum { @@ -16114,78 +16147,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(2332), - [sym__statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_macro_definition] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_foreign_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_union_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_extern_crate_declaration] = STATE(14), - [sym_const_item] = STATE(14), - [sym_static_item] = STATE(14), - [sym_type_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2331), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_extern_modifier] = STATE(1516), - [sym_visibility_modifier] = STATE(1320), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1293), - [sym_macro_invocation] = STATE(66), - [sym_scoped_identifier] = STATE(1170), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2439), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_source_file] = STATE(2344), + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2343), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1514), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(76), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2451), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -16262,77 +16295,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2331), - [sym_impl_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_associated_type] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_extern_modifier] = STATE(1516), - [sym_visibility_modifier] = STATE(1320), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1204), - [sym_macro_invocation] = STATE(66), - [sym_scoped_identifier] = STATE(1170), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2439), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym__statement] = STATE(11), + [sym_empty_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_macro_definition] = STATE(11), + [sym_attribute_item] = STATE(11), + [sym_inner_attribute_item] = STATE(11), + [sym_mod_item] = STATE(11), + [sym_foreign_mod_item] = STATE(11), + [sym_struct_item] = STATE(11), + [sym_union_item] = STATE(11), + [sym_enum_item] = STATE(11), + [sym_extern_crate_declaration] = STATE(11), + [sym_const_item] = STATE(11), + [sym_static_item] = STATE(11), + [sym_type_item] = STATE(11), + [sym_function_item] = STATE(11), + [sym_function_signature_item] = STATE(11), + [sym_function_modifiers] = STATE(2343), + [sym_impl_item] = STATE(11), + [sym_trait_item] = STATE(11), + [sym_associated_type] = STATE(11), + [sym_let_declaration] = STATE(11), + [sym_use_declaration] = STATE(11), + [sym_extern_modifier] = STATE(1514), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1210), + [sym_macro_invocation] = STATE(76), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2451), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16409,77 +16442,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [3] = { - [sym__statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_macro_definition] = STATE(10), - [sym_attribute_item] = STATE(10), - [sym_inner_attribute_item] = STATE(10), - [sym_mod_item] = STATE(10), - [sym_foreign_mod_item] = STATE(10), - [sym_struct_item] = STATE(10), - [sym_union_item] = STATE(10), - [sym_enum_item] = STATE(10), - [sym_extern_crate_declaration] = STATE(10), - [sym_const_item] = STATE(10), - [sym_static_item] = STATE(10), - [sym_type_item] = STATE(10), - [sym_function_item] = STATE(10), - [sym_function_signature_item] = STATE(10), - [sym_function_modifiers] = STATE(2331), - [sym_impl_item] = STATE(10), - [sym_trait_item] = STATE(10), - [sym_associated_type] = STATE(10), - [sym_let_declaration] = STATE(10), - [sym_use_declaration] = STATE(10), - [sym_extern_modifier] = STATE(1516), - [sym_visibility_modifier] = STATE(1320), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1225), - [sym_macro_invocation] = STATE(66), - [sym_scoped_identifier] = STATE(1170), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2439), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym__statement] = STATE(2), + [sym_empty_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym_macro_definition] = STATE(2), + [sym_attribute_item] = STATE(2), + [sym_inner_attribute_item] = STATE(2), + [sym_mod_item] = STATE(2), + [sym_foreign_mod_item] = STATE(2), + [sym_struct_item] = STATE(2), + [sym_union_item] = STATE(2), + [sym_enum_item] = STATE(2), + [sym_extern_crate_declaration] = STATE(2), + [sym_const_item] = STATE(2), + [sym_static_item] = STATE(2), + [sym_type_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_function_modifiers] = STATE(2343), + [sym_impl_item] = STATE(2), + [sym_trait_item] = STATE(2), + [sym_associated_type] = STATE(2), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_extern_modifier] = STATE(1514), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1251), + [sym_macro_invocation] = STATE(76), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2451), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16556,230 +16589,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [4] = { - [sym__statement] = STATE(4), - [sym_empty_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_macro_definition] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_foreign_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_union_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_extern_crate_declaration] = STATE(4), - [sym_const_item] = STATE(4), - [sym_static_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function_modifiers] = STATE(2331), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_extern_modifier] = STATE(1516), - [sym_visibility_modifier] = STATE(1320), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1293), - [sym_macro_invocation] = STATE(91), - [sym_scoped_identifier] = STATE(1170), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2439), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(109), - [anon_sym_SEMI] = ACTIONS(112), - [anon_sym_macro_rules_BANG] = ACTIONS(115), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(126), - [anon_sym_STAR] = ACTIONS(129), - [anon_sym_u8] = ACTIONS(132), - [anon_sym_i8] = ACTIONS(132), - [anon_sym_u16] = ACTIONS(132), - [anon_sym_i16] = ACTIONS(132), - [anon_sym_u32] = ACTIONS(132), - [anon_sym_i32] = ACTIONS(132), - [anon_sym_u64] = ACTIONS(132), - [anon_sym_i64] = ACTIONS(132), - [anon_sym_u128] = ACTIONS(132), - [anon_sym_i128] = ACTIONS(132), - [anon_sym_isize] = ACTIONS(132), - [anon_sym_usize] = ACTIONS(132), - [anon_sym_f32] = ACTIONS(132), - [anon_sym_f64] = ACTIONS(132), - [anon_sym_bool] = ACTIONS(132), - [anon_sym_str] = ACTIONS(132), - [anon_sym_char] = ACTIONS(132), - [anon_sym_SQUOTE] = ACTIONS(135), - [anon_sym_async] = ACTIONS(138), - [anon_sym_break] = ACTIONS(141), - [anon_sym_const] = ACTIONS(144), - [anon_sym_continue] = ACTIONS(147), - [anon_sym_default] = ACTIONS(150), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_fn] = ACTIONS(156), - [anon_sym_for] = ACTIONS(159), - [anon_sym_if] = ACTIONS(162), - [anon_sym_impl] = ACTIONS(165), - [anon_sym_let] = ACTIONS(168), - [anon_sym_loop] = ACTIONS(171), - [anon_sym_match] = ACTIONS(174), - [anon_sym_mod] = ACTIONS(177), - [anon_sym_pub] = ACTIONS(180), - [anon_sym_return] = ACTIONS(183), - [anon_sym_static] = ACTIONS(186), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_trait] = ACTIONS(192), - [anon_sym_type] = ACTIONS(195), - [anon_sym_union] = ACTIONS(198), - [anon_sym_unsafe] = ACTIONS(201), - [anon_sym_use] = ACTIONS(204), - [anon_sym_while] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(210), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(216), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym_AMP] = ACTIONS(222), - [anon_sym_DOT_DOT] = ACTIONS(225), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_yield] = ACTIONS(231), - [anon_sym_move] = ACTIONS(234), - [sym_integer_literal] = ACTIONS(237), - [aux_sym_string_literal_token1] = ACTIONS(240), - [sym_char_literal] = ACTIONS(237), - [anon_sym_true] = ACTIONS(243), - [anon_sym_false] = ACTIONS(243), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(246), - [sym_super] = ACTIONS(249), - [sym_crate] = ACTIONS(252), - [sym_metavariable] = ACTIONS(255), - [sym_raw_string_literal] = ACTIONS(237), - [sym_float_literal] = ACTIONS(237), - [sym_block_comment] = ACTIONS(3), - }, - [5] = { - [sym__statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_macro_definition] = STATE(7), - [sym_attribute_item] = STATE(7), - [sym_inner_attribute_item] = STATE(7), - [sym_mod_item] = STATE(7), - [sym_foreign_mod_item] = STATE(7), - [sym_struct_item] = STATE(7), - [sym_union_item] = STATE(7), - [sym_enum_item] = STATE(7), - [sym_extern_crate_declaration] = STATE(7), - [sym_const_item] = STATE(7), - [sym_static_item] = STATE(7), - [sym_type_item] = STATE(7), - [sym_function_item] = STATE(7), - [sym_function_signature_item] = STATE(7), - [sym_function_modifiers] = STATE(2331), - [sym_impl_item] = STATE(7), - [sym_trait_item] = STATE(7), - [sym_associated_type] = STATE(7), - [sym_let_declaration] = STATE(7), - [sym_use_declaration] = STATE(7), - [sym_extern_modifier] = STATE(1516), - [sym_visibility_modifier] = STATE(1320), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1226), - [sym_macro_invocation] = STATE(66), - [sym_scoped_identifier] = STATE(1170), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2439), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym__statement] = STATE(5), + [sym_empty_statement] = STATE(5), + [sym_expression_statement] = STATE(5), + [sym_macro_definition] = STATE(5), + [sym_attribute_item] = STATE(5), + [sym_inner_attribute_item] = STATE(5), + [sym_mod_item] = STATE(5), + [sym_foreign_mod_item] = STATE(5), + [sym_struct_item] = STATE(5), + [sym_union_item] = STATE(5), + [sym_enum_item] = STATE(5), + [sym_extern_crate_declaration] = STATE(5), + [sym_const_item] = STATE(5), + [sym_static_item] = STATE(5), + [sym_type_item] = STATE(5), + [sym_function_item] = STATE(5), + [sym_function_signature_item] = STATE(5), + [sym_function_modifiers] = STATE(2343), + [sym_impl_item] = STATE(5), + [sym_trait_item] = STATE(5), + [sym_associated_type] = STATE(5), + [sym_let_declaration] = STATE(5), + [sym_use_declaration] = STATE(5), + [sym_extern_modifier] = STATE(1514), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1260), + [sym_macro_invocation] = STATE(76), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2451), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(258), + [anon_sym_RBRACE] = ACTIONS(109), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16849,84 +16735,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [6] = { - [sym__statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_macro_definition] = STATE(9), - [sym_attribute_item] = STATE(9), - [sym_inner_attribute_item] = STATE(9), - [sym_mod_item] = STATE(9), - [sym_foreign_mod_item] = STATE(9), - [sym_struct_item] = STATE(9), - [sym_union_item] = STATE(9), - [sym_enum_item] = STATE(9), - [sym_extern_crate_declaration] = STATE(9), - [sym_const_item] = STATE(9), - [sym_static_item] = STATE(9), - [sym_type_item] = STATE(9), - [sym_function_item] = STATE(9), - [sym_function_signature_item] = STATE(9), - [sym_function_modifiers] = STATE(2331), - [sym_impl_item] = STATE(9), - [sym_trait_item] = STATE(9), - [sym_associated_type] = STATE(9), - [sym_let_declaration] = STATE(9), - [sym_use_declaration] = STATE(9), - [sym_extern_modifier] = STATE(1516), - [sym_visibility_modifier] = STATE(1320), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1238), - [sym_macro_invocation] = STATE(66), - [sym_scoped_identifier] = STATE(1170), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2439), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [5] = { + [sym__statement] = STATE(11), + [sym_empty_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_macro_definition] = STATE(11), + [sym_attribute_item] = STATE(11), + [sym_inner_attribute_item] = STATE(11), + [sym_mod_item] = STATE(11), + [sym_foreign_mod_item] = STATE(11), + [sym_struct_item] = STATE(11), + [sym_union_item] = STATE(11), + [sym_enum_item] = STATE(11), + [sym_extern_crate_declaration] = STATE(11), + [sym_const_item] = STATE(11), + [sym_static_item] = STATE(11), + [sym_type_item] = STATE(11), + [sym_function_item] = STATE(11), + [sym_function_signature_item] = STATE(11), + [sym_function_modifiers] = STATE(2343), + [sym_impl_item] = STATE(11), + [sym_trait_item] = STATE(11), + [sym_associated_type] = STATE(11), + [sym_let_declaration] = STATE(11), + [sym_use_declaration] = STATE(11), + [sym_extern_modifier] = STATE(1514), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1241), + [sym_macro_invocation] = STATE(76), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2451), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(260), + [anon_sym_RBRACE] = ACTIONS(111), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16996,84 +16882,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [7] = { - [sym__statement] = STATE(4), - [sym_empty_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_macro_definition] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_foreign_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_union_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_extern_crate_declaration] = STATE(4), - [sym_const_item] = STATE(4), - [sym_static_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function_modifiers] = STATE(2331), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_extern_modifier] = STATE(1516), - [sym_visibility_modifier] = STATE(1320), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1237), - [sym_macro_invocation] = STATE(66), - [sym_scoped_identifier] = STATE(1170), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2439), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [6] = { + [sym__statement] = STATE(11), + [sym_empty_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_macro_definition] = STATE(11), + [sym_attribute_item] = STATE(11), + [sym_inner_attribute_item] = STATE(11), + [sym_mod_item] = STATE(11), + [sym_foreign_mod_item] = STATE(11), + [sym_struct_item] = STATE(11), + [sym_union_item] = STATE(11), + [sym_enum_item] = STATE(11), + [sym_extern_crate_declaration] = STATE(11), + [sym_const_item] = STATE(11), + [sym_static_item] = STATE(11), + [sym_type_item] = STATE(11), + [sym_function_item] = STATE(11), + [sym_function_signature_item] = STATE(11), + [sym_function_modifiers] = STATE(2343), + [sym_impl_item] = STATE(11), + [sym_trait_item] = STATE(11), + [sym_associated_type] = STATE(11), + [sym_let_declaration] = STATE(11), + [sym_use_declaration] = STATE(11), + [sym_extern_modifier] = STATE(1514), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1229), + [sym_macro_invocation] = STATE(76), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2451), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -17143,225 +17029,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [8] = { - [sym__statement] = STATE(8), - [sym_empty_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_macro_definition] = STATE(8), - [sym_attribute_item] = STATE(8), - [sym_inner_attribute_item] = STATE(8), - [sym_mod_item] = STATE(8), - [sym_foreign_mod_item] = STATE(8), - [sym_struct_item] = STATE(8), - [sym_union_item] = STATE(8), - [sym_enum_item] = STATE(8), - [sym_extern_crate_declaration] = STATE(8), - [sym_const_item] = STATE(8), - [sym_static_item] = STATE(8), - [sym_type_item] = STATE(8), - [sym_function_item] = STATE(8), - [sym_function_signature_item] = STATE(8), - [sym_function_modifiers] = STATE(2331), - [sym_impl_item] = STATE(8), - [sym_trait_item] = STATE(8), - [sym_associated_type] = STATE(8), - [sym_let_declaration] = STATE(8), - [sym_use_declaration] = STATE(8), - [sym_extern_modifier] = STATE(1516), - [sym_visibility_modifier] = STATE(1320), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1293), - [sym_macro_invocation] = STATE(66), - [sym_scoped_identifier] = STATE(1170), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2439), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [ts_builtin_sym_end] = ACTIONS(124), - [sym_identifier] = ACTIONS(109), - [anon_sym_SEMI] = ACTIONS(112), - [anon_sym_macro_rules_BANG] = ACTIONS(115), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(126), - [anon_sym_STAR] = ACTIONS(129), - [anon_sym_u8] = ACTIONS(132), - [anon_sym_i8] = ACTIONS(132), - [anon_sym_u16] = ACTIONS(132), - [anon_sym_i16] = ACTIONS(132), - [anon_sym_u32] = ACTIONS(132), - [anon_sym_i32] = ACTIONS(132), - [anon_sym_u64] = ACTIONS(132), - [anon_sym_i64] = ACTIONS(132), - [anon_sym_u128] = ACTIONS(132), - [anon_sym_i128] = ACTIONS(132), - [anon_sym_isize] = ACTIONS(132), - [anon_sym_usize] = ACTIONS(132), - [anon_sym_f32] = ACTIONS(132), - [anon_sym_f64] = ACTIONS(132), - [anon_sym_bool] = ACTIONS(132), - [anon_sym_str] = ACTIONS(132), - [anon_sym_char] = ACTIONS(132), - [anon_sym_SQUOTE] = ACTIONS(135), - [anon_sym_async] = ACTIONS(138), - [anon_sym_break] = ACTIONS(141), - [anon_sym_const] = ACTIONS(144), - [anon_sym_continue] = ACTIONS(147), - [anon_sym_default] = ACTIONS(150), - [anon_sym_enum] = ACTIONS(153), - [anon_sym_fn] = ACTIONS(156), - [anon_sym_for] = ACTIONS(159), - [anon_sym_if] = ACTIONS(162), - [anon_sym_impl] = ACTIONS(165), - [anon_sym_let] = ACTIONS(168), - [anon_sym_loop] = ACTIONS(171), - [anon_sym_match] = ACTIONS(174), - [anon_sym_mod] = ACTIONS(177), - [anon_sym_pub] = ACTIONS(180), - [anon_sym_return] = ACTIONS(183), - [anon_sym_static] = ACTIONS(186), - [anon_sym_struct] = ACTIONS(189), - [anon_sym_trait] = ACTIONS(192), - [anon_sym_type] = ACTIONS(195), - [anon_sym_union] = ACTIONS(198), - [anon_sym_unsafe] = ACTIONS(201), - [anon_sym_use] = ACTIONS(204), - [anon_sym_while] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(210), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_extern] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(216), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym_AMP] = ACTIONS(222), - [anon_sym_DOT_DOT] = ACTIONS(225), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PIPE] = ACTIONS(228), - [anon_sym_yield] = ACTIONS(231), - [anon_sym_move] = ACTIONS(234), - [sym_integer_literal] = ACTIONS(237), - [aux_sym_string_literal_token1] = ACTIONS(240), - [sym_char_literal] = ACTIONS(237), - [anon_sym_true] = ACTIONS(243), - [anon_sym_false] = ACTIONS(243), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(246), - [sym_super] = ACTIONS(249), - [sym_crate] = ACTIONS(252), - [sym_metavariable] = ACTIONS(255), - [sym_raw_string_literal] = ACTIONS(237), - [sym_float_literal] = ACTIONS(237), + [7] = { + [sym__statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_macro_definition] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_foreign_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_union_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_extern_crate_declaration] = STATE(7), + [sym_const_item] = STATE(7), + [sym_static_item] = STATE(7), + [sym_type_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function_modifiers] = STATE(2343), + [sym_impl_item] = STATE(7), + [sym_trait_item] = STATE(7), + [sym_associated_type] = STATE(7), + [sym_let_declaration] = STATE(7), + [sym_use_declaration] = STATE(7), + [sym_extern_modifier] = STATE(1514), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(76), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2451), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [ts_builtin_sym_end] = ACTIONS(115), + [sym_identifier] = ACTIONS(117), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_macro_rules_BANG] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(132), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_u8] = ACTIONS(138), + [anon_sym_i8] = ACTIONS(138), + [anon_sym_u16] = ACTIONS(138), + [anon_sym_i16] = ACTIONS(138), + [anon_sym_u32] = ACTIONS(138), + [anon_sym_i32] = ACTIONS(138), + [anon_sym_u64] = ACTIONS(138), + [anon_sym_i64] = ACTIONS(138), + [anon_sym_u128] = ACTIONS(138), + [anon_sym_i128] = ACTIONS(138), + [anon_sym_isize] = ACTIONS(138), + [anon_sym_usize] = ACTIONS(138), + [anon_sym_f32] = ACTIONS(138), + [anon_sym_f64] = ACTIONS(138), + [anon_sym_bool] = ACTIONS(138), + [anon_sym_str] = ACTIONS(138), + [anon_sym_char] = ACTIONS(138), + [anon_sym_SQUOTE] = ACTIONS(141), + [anon_sym_async] = ACTIONS(144), + [anon_sym_break] = ACTIONS(147), + [anon_sym_const] = ACTIONS(150), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_default] = ACTIONS(156), + [anon_sym_enum] = ACTIONS(159), + [anon_sym_fn] = ACTIONS(162), + [anon_sym_for] = ACTIONS(165), + [anon_sym_if] = ACTIONS(168), + [anon_sym_impl] = ACTIONS(171), + [anon_sym_let] = ACTIONS(174), + [anon_sym_loop] = ACTIONS(177), + [anon_sym_match] = ACTIONS(180), + [anon_sym_mod] = ACTIONS(183), + [anon_sym_pub] = ACTIONS(186), + [anon_sym_return] = ACTIONS(189), + [anon_sym_static] = ACTIONS(192), + [anon_sym_struct] = ACTIONS(195), + [anon_sym_trait] = ACTIONS(198), + [anon_sym_type] = ACTIONS(201), + [anon_sym_union] = ACTIONS(204), + [anon_sym_unsafe] = ACTIONS(207), + [anon_sym_use] = ACTIONS(210), + [anon_sym_while] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(216), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(222), + [anon_sym_COLON_COLON] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(228), + [anon_sym_DOT_DOT] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(234), + [anon_sym_yield] = ACTIONS(237), + [anon_sym_move] = ACTIONS(240), + [sym_integer_literal] = ACTIONS(243), + [aux_sym_string_literal_token1] = ACTIONS(246), + [sym_char_literal] = ACTIONS(243), + [anon_sym_true] = ACTIONS(249), + [anon_sym_false] = ACTIONS(249), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(252), + [sym_super] = ACTIONS(255), + [sym_crate] = ACTIONS(258), + [sym_metavariable] = ACTIONS(261), + [sym_raw_string_literal] = ACTIONS(243), + [sym_float_literal] = ACTIONS(243), [sym_block_comment] = ACTIONS(3), }, - [9] = { - [sym__statement] = STATE(4), - [sym_empty_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_macro_definition] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_foreign_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_union_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_extern_crate_declaration] = STATE(4), - [sym_const_item] = STATE(4), - [sym_static_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function_modifiers] = STATE(2331), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_extern_modifier] = STATE(1516), - [sym_visibility_modifier] = STATE(1320), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1223), - [sym_macro_invocation] = STATE(66), - [sym_scoped_identifier] = STATE(1170), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2439), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [8] = { + [sym__statement] = STATE(6), + [sym_empty_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_macro_definition] = STATE(6), + [sym_attribute_item] = STATE(6), + [sym_inner_attribute_item] = STATE(6), + [sym_mod_item] = STATE(6), + [sym_foreign_mod_item] = STATE(6), + [sym_struct_item] = STATE(6), + [sym_union_item] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_extern_crate_declaration] = STATE(6), + [sym_const_item] = STATE(6), + [sym_static_item] = STATE(6), + [sym_type_item] = STATE(6), + [sym_function_item] = STATE(6), + [sym_function_signature_item] = STATE(6), + [sym_function_modifiers] = STATE(2343), + [sym_impl_item] = STATE(6), + [sym_trait_item] = STATE(6), + [sym_associated_type] = STATE(6), + [sym_let_declaration] = STATE(6), + [sym_use_declaration] = STATE(6), + [sym_extern_modifier] = STATE(1514), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1249), + [sym_macro_invocation] = STATE(76), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2451), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17437,78 +17323,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [10] = { - [sym__statement] = STATE(4), - [sym_empty_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_macro_definition] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_foreign_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_union_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_extern_crate_declaration] = STATE(4), - [sym_const_item] = STATE(4), - [sym_static_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function_modifiers] = STATE(2331), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_extern_modifier] = STATE(1516), - [sym_visibility_modifier] = STATE(1320), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1201), - [sym_macro_invocation] = STATE(66), - [sym_scoped_identifier] = STATE(1170), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2439), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [9] = { + [sym__statement] = STATE(10), + [sym_empty_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_macro_definition] = STATE(10), + [sym_attribute_item] = STATE(10), + [sym_inner_attribute_item] = STATE(10), + [sym_mod_item] = STATE(10), + [sym_foreign_mod_item] = STATE(10), + [sym_struct_item] = STATE(10), + [sym_union_item] = STATE(10), + [sym_enum_item] = STATE(10), + [sym_extern_crate_declaration] = STATE(10), + [sym_const_item] = STATE(10), + [sym_static_item] = STATE(10), + [sym_type_item] = STATE(10), + [sym_function_item] = STATE(10), + [sym_function_signature_item] = STATE(10), + [sym_function_modifiers] = STATE(2343), + [sym_impl_item] = STATE(10), + [sym_trait_item] = STATE(10), + [sym_associated_type] = STATE(10), + [sym_let_declaration] = STATE(10), + [sym_use_declaration] = STATE(10), + [sym_extern_modifier] = STATE(1514), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1220), + [sym_macro_invocation] = STATE(76), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2451), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17584,78 +17470,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [11] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2331), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1516), - [sym_visibility_modifier] = STATE(1320), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(66), - [sym_scoped_identifier] = STATE(1170), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2439), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [10] = { + [sym__statement] = STATE(11), + [sym_empty_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_macro_definition] = STATE(11), + [sym_attribute_item] = STATE(11), + [sym_inner_attribute_item] = STATE(11), + [sym_mod_item] = STATE(11), + [sym_foreign_mod_item] = STATE(11), + [sym_struct_item] = STATE(11), + [sym_union_item] = STATE(11), + [sym_enum_item] = STATE(11), + [sym_extern_crate_declaration] = STATE(11), + [sym_const_item] = STATE(11), + [sym_static_item] = STATE(11), + [sym_type_item] = STATE(11), + [sym_function_item] = STATE(11), + [sym_function_signature_item] = STATE(11), + [sym_function_modifiers] = STATE(2343), + [sym_impl_item] = STATE(11), + [sym_trait_item] = STATE(11), + [sym_associated_type] = STATE(11), + [sym_let_declaration] = STATE(11), + [sym_use_declaration] = STATE(11), + [sym_extern_modifier] = STATE(1514), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1213), + [sym_macro_invocation] = STATE(76), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2451), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17731,78 +17617,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [11] = { + [sym__statement] = STATE(11), + [sym_empty_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_macro_definition] = STATE(11), + [sym_attribute_item] = STATE(11), + [sym_inner_attribute_item] = STATE(11), + [sym_mod_item] = STATE(11), + [sym_foreign_mod_item] = STATE(11), + [sym_struct_item] = STATE(11), + [sym_union_item] = STATE(11), + [sym_enum_item] = STATE(11), + [sym_extern_crate_declaration] = STATE(11), + [sym_const_item] = STATE(11), + [sym_static_item] = STATE(11), + [sym_type_item] = STATE(11), + [sym_function_item] = STATE(11), + [sym_function_signature_item] = STATE(11), + [sym_function_modifiers] = STATE(2343), + [sym_impl_item] = STATE(11), + [sym_trait_item] = STATE(11), + [sym_associated_type] = STATE(11), + [sym_let_declaration] = STATE(11), + [sym_use_declaration] = STATE(11), + [sym_extern_modifier] = STATE(1514), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(95), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2451), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(117), + [anon_sym_SEMI] = ACTIONS(120), + [anon_sym_macro_rules_BANG] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(132), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_u8] = ACTIONS(138), + [anon_sym_i8] = ACTIONS(138), + [anon_sym_u16] = ACTIONS(138), + [anon_sym_i16] = ACTIONS(138), + [anon_sym_u32] = ACTIONS(138), + [anon_sym_i32] = ACTIONS(138), + [anon_sym_u64] = ACTIONS(138), + [anon_sym_i64] = ACTIONS(138), + [anon_sym_u128] = ACTIONS(138), + [anon_sym_i128] = ACTIONS(138), + [anon_sym_isize] = ACTIONS(138), + [anon_sym_usize] = ACTIONS(138), + [anon_sym_f32] = ACTIONS(138), + [anon_sym_f64] = ACTIONS(138), + [anon_sym_bool] = ACTIONS(138), + [anon_sym_str] = ACTIONS(138), + [anon_sym_char] = ACTIONS(138), + [anon_sym_SQUOTE] = ACTIONS(141), + [anon_sym_async] = ACTIONS(144), + [anon_sym_break] = ACTIONS(147), + [anon_sym_const] = ACTIONS(150), + [anon_sym_continue] = ACTIONS(153), + [anon_sym_default] = ACTIONS(156), + [anon_sym_enum] = ACTIONS(159), + [anon_sym_fn] = ACTIONS(162), + [anon_sym_for] = ACTIONS(165), + [anon_sym_if] = ACTIONS(168), + [anon_sym_impl] = ACTIONS(171), + [anon_sym_let] = ACTIONS(174), + [anon_sym_loop] = ACTIONS(177), + [anon_sym_match] = ACTIONS(180), + [anon_sym_mod] = ACTIONS(183), + [anon_sym_pub] = ACTIONS(186), + [anon_sym_return] = ACTIONS(189), + [anon_sym_static] = ACTIONS(192), + [anon_sym_struct] = ACTIONS(195), + [anon_sym_trait] = ACTIONS(198), + [anon_sym_type] = ACTIONS(201), + [anon_sym_union] = ACTIONS(204), + [anon_sym_unsafe] = ACTIONS(207), + [anon_sym_use] = ACTIONS(210), + [anon_sym_while] = ACTIONS(213), + [anon_sym_POUND] = ACTIONS(216), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_LT] = ACTIONS(222), + [anon_sym_COLON_COLON] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(228), + [anon_sym_DOT_DOT] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(234), + [anon_sym_yield] = ACTIONS(237), + [anon_sym_move] = ACTIONS(240), + [sym_integer_literal] = ACTIONS(243), + [aux_sym_string_literal_token1] = ACTIONS(246), + [sym_char_literal] = ACTIONS(243), + [anon_sym_true] = ACTIONS(249), + [anon_sym_false] = ACTIONS(249), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(252), + [sym_super] = ACTIONS(255), + [sym_crate] = ACTIONS(258), + [sym_metavariable] = ACTIONS(261), + [sym_raw_string_literal] = ACTIONS(243), + [sym_float_literal] = ACTIONS(243), + [sym_block_comment] = ACTIONS(3), + }, [12] = { - [sym__statement] = STATE(4), - [sym_empty_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_macro_definition] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_foreign_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_union_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_extern_crate_declaration] = STATE(4), - [sym_const_item] = STATE(4), - [sym_static_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function_modifiers] = STATE(2331), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_extern_modifier] = STATE(1516), - [sym_visibility_modifier] = STATE(1320), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1213), - [sym_macro_invocation] = STATE(66), - [sym_scoped_identifier] = STATE(1170), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2439), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_function_modifiers] = STATE(2343), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1514), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1227), + [sym_macro_invocation] = STATE(76), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2451), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17879,77 +17912,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [13] = { - [sym__statement] = STATE(4), - [sym_empty_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_macro_definition] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_foreign_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_union_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_extern_crate_declaration] = STATE(4), - [sym_const_item] = STATE(4), - [sym_static_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function_modifiers] = STATE(2331), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_extern_modifier] = STATE(1516), - [sym_visibility_modifier] = STATE(1320), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1252), - [sym_macro_invocation] = STATE(66), - [sym_scoped_identifier] = STATE(1170), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2439), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym__statement] = STATE(11), + [sym_empty_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_macro_definition] = STATE(11), + [sym_attribute_item] = STATE(11), + [sym_inner_attribute_item] = STATE(11), + [sym_mod_item] = STATE(11), + [sym_foreign_mod_item] = STATE(11), + [sym_struct_item] = STATE(11), + [sym_union_item] = STATE(11), + [sym_enum_item] = STATE(11), + [sym_extern_crate_declaration] = STATE(11), + [sym_const_item] = STATE(11), + [sym_static_item] = STATE(11), + [sym_type_item] = STATE(11), + [sym_function_item] = STATE(11), + [sym_function_signature_item] = STATE(11), + [sym_function_modifiers] = STATE(2343), + [sym_impl_item] = STATE(11), + [sym_trait_item] = STATE(11), + [sym_associated_type] = STATE(11), + [sym_let_declaration] = STATE(11), + [sym_use_declaration] = STATE(11), + [sym_extern_modifier] = STATE(1514), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1257), + [sym_macro_invocation] = STATE(76), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2451), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -18026,83 +18059,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [14] = { - [sym__statement] = STATE(8), - [sym_empty_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_macro_definition] = STATE(8), - [sym_attribute_item] = STATE(8), - [sym_inner_attribute_item] = STATE(8), - [sym_mod_item] = STATE(8), - [sym_foreign_mod_item] = STATE(8), - [sym_struct_item] = STATE(8), - [sym_union_item] = STATE(8), - [sym_enum_item] = STATE(8), - [sym_extern_crate_declaration] = STATE(8), - [sym_const_item] = STATE(8), - [sym_static_item] = STATE(8), - [sym_type_item] = STATE(8), - [sym_function_item] = STATE(8), - [sym_function_signature_item] = STATE(8), - [sym_function_modifiers] = STATE(2331), - [sym_impl_item] = STATE(8), - [sym_trait_item] = STATE(8), - [sym_associated_type] = STATE(8), - [sym_let_declaration] = STATE(8), - [sym_use_declaration] = STATE(8), - [sym_extern_modifier] = STATE(1516), - [sym_visibility_modifier] = STATE(1320), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1293), - [sym_macro_invocation] = STATE(66), - [sym_scoped_identifier] = STATE(1170), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2439), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [ts_builtin_sym_end] = ACTIONS(274), + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(2343), + [sym_impl_item] = STATE(16), + [sym_trait_item] = STATE(16), + [sym_associated_type] = STATE(16), + [sym_let_declaration] = STATE(16), + [sym_use_declaration] = STATE(16), + [sym_extern_modifier] = STATE(1514), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1203), + [sym_macro_invocation] = STATE(76), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2451), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(274), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -18173,83 +18206,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [15] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(2331), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(1516), - [sym_visibility_modifier] = STATE(1320), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1198), - [sym_macro_invocation] = STATE(66), - [sym_scoped_identifier] = STATE(1170), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2439), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym__statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_macro_definition] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_foreign_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_union_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_extern_crate_declaration] = STATE(7), + [sym_const_item] = STATE(7), + [sym_static_item] = STATE(7), + [sym_type_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function_modifiers] = STATE(2343), + [sym_impl_item] = STATE(7), + [sym_trait_item] = STATE(7), + [sym_associated_type] = STATE(7), + [sym_let_declaration] = STATE(7), + [sym_use_declaration] = STATE(7), + [sym_extern_modifier] = STATE(1514), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(76), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2451), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [ts_builtin_sym_end] = ACTIONS(276), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -18320,77 +18353,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [16] = { - [sym__statement] = STATE(4), - [sym_empty_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_macro_definition] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_foreign_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_union_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_extern_crate_declaration] = STATE(4), - [sym_const_item] = STATE(4), - [sym_static_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function_modifiers] = STATE(2331), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_extern_modifier] = STATE(1516), - [sym_visibility_modifier] = STATE(1320), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1202), - [sym_macro_invocation] = STATE(66), - [sym_scoped_identifier] = STATE(1170), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2439), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym__statement] = STATE(11), + [sym_empty_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_macro_definition] = STATE(11), + [sym_attribute_item] = STATE(11), + [sym_inner_attribute_item] = STATE(11), + [sym_mod_item] = STATE(11), + [sym_foreign_mod_item] = STATE(11), + [sym_struct_item] = STATE(11), + [sym_union_item] = STATE(11), + [sym_enum_item] = STATE(11), + [sym_extern_crate_declaration] = STATE(11), + [sym_const_item] = STATE(11), + [sym_static_item] = STATE(11), + [sym_type_item] = STATE(11), + [sym_function_item] = STATE(11), + [sym_function_signature_item] = STATE(11), + [sym_function_modifiers] = STATE(2343), + [sym_impl_item] = STATE(11), + [sym_trait_item] = STATE(11), + [sym_associated_type] = STATE(11), + [sym_let_declaration] = STATE(11), + [sym_use_declaration] = STATE(11), + [sym_extern_modifier] = STATE(1514), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1201), + [sym_macro_invocation] = STATE(76), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2451), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -18467,50 +18500,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1137), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1156), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(282), [anon_sym_LPAREN] = ACTIONS(282), @@ -18607,50 +18640,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1141), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1142), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), [sym_loop_label] = STATE(17), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(310), [anon_sym_LPAREN] = ACTIONS(310), @@ -18746,61 +18779,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1097), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1135), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(316), - [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(316), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_RBRACE] = ACTIONS(316), [anon_sym_EQ_GT] = ACTIONS(316), - [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(316), [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_STAR] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(308), [anon_sym_QMARK] = ACTIONS(316), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -18837,17 +18870,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(308), [anon_sym_EQ] = ACTIONS(318), [anon_sym_COMMA] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(320), [anon_sym_GT] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(322), [anon_sym_DOT_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT] = ACTIONS(324), [anon_sym_DOT_DOT_EQ] = ACTIONS(316), - [anon_sym_DASH] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(308), [anon_sym_AMP_AMP] = ACTIONS(316), [anon_sym_PIPE_PIPE] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(326), [anon_sym_CARET] = ACTIONS(318), [anon_sym_EQ_EQ] = ACTIONS(316), [anon_sym_BANG_EQ] = ACTIONS(316), @@ -18885,62 +18918,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1139), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1075), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(328), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(320), + [anon_sym_RPAREN] = ACTIONS(328), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(320), - [anon_sym_EQ_GT] = ACTIONS(320), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(320), - [anon_sym_PLUS] = ACTIONS(322), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(320), + [anon_sym_RBRACE] = ACTIONS(328), + [anon_sym_EQ_GT] = ACTIONS(328), + [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_RBRACK] = ACTIONS(328), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_STAR] = ACTIONS(330), + [anon_sym_QMARK] = ACTIONS(328), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -18959,7 +18992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(322), + [anon_sym_as] = ACTIONS(330), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -18974,41 +19007,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_COMMA] = ACTIONS(320), - [anon_sym_LT] = ACTIONS(324), - [anon_sym_GT] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(330), + [anon_sym_COMMA] = ACTIONS(328), + [anon_sym_LT] = ACTIONS(330), + [anon_sym_GT] = ACTIONS(330), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(326), - [anon_sym_DOT_DOT_DOT] = ACTIONS(320), - [anon_sym_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT_EQ] = ACTIONS(320), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(320), - [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_AMP] = ACTIONS(330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(328), + [anon_sym_DOT_DOT] = ACTIONS(330), + [anon_sym_DOT_DOT_EQ] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_AMP_AMP] = ACTIONS(328), + [anon_sym_PIPE_PIPE] = ACTIONS(328), [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(322), - [anon_sym_EQ_EQ] = ACTIONS(320), - [anon_sym_BANG_EQ] = ACTIONS(320), - [anon_sym_LT_EQ] = ACTIONS(320), - [anon_sym_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT] = ACTIONS(322), - [anon_sym_GT_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_CARET] = ACTIONS(330), + [anon_sym_EQ_EQ] = ACTIONS(328), + [anon_sym_BANG_EQ] = ACTIONS(328), + [anon_sym_LT_EQ] = ACTIONS(328), + [anon_sym_GT_EQ] = ACTIONS(328), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_GT_GT] = ACTIONS(330), + [anon_sym_SLASH] = ACTIONS(330), + [anon_sym_PERCENT] = ACTIONS(330), + [anon_sym_PLUS_EQ] = ACTIONS(328), + [anon_sym_DASH_EQ] = ACTIONS(328), + [anon_sym_STAR_EQ] = ACTIONS(328), + [anon_sym_SLASH_EQ] = ACTIONS(328), + [anon_sym_PERCENT_EQ] = ACTIONS(328), + [anon_sym_AMP_EQ] = ACTIONS(328), + [anon_sym_PIPE_EQ] = ACTIONS(328), + [anon_sym_CARET_EQ] = ACTIONS(328), + [anon_sym_LT_LT_EQ] = ACTIONS(328), + [anon_sym_GT_GT_EQ] = ACTIONS(328), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DOT] = ACTIONS(330), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19024,62 +19057,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1064), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1075), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(332), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_RPAREN] = ACTIONS(332), + [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_LPAREN] = ACTIONS(328), + [anon_sym_RPAREN] = ACTIONS(328), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(332), - [anon_sym_EQ_GT] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(332), - [anon_sym_RBRACK] = ACTIONS(332), - [anon_sym_PLUS] = ACTIONS(334), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_QMARK] = ACTIONS(332), + [anon_sym_RBRACE] = ACTIONS(328), + [anon_sym_EQ_GT] = ACTIONS(328), + [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_RBRACK] = ACTIONS(328), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_STAR] = ACTIONS(330), + [anon_sym_QMARK] = ACTIONS(328), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -19098,7 +19131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(334), + [anon_sym_as] = ACTIONS(330), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -19113,41 +19146,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(334), - [anon_sym_COMMA] = ACTIONS(332), - [anon_sym_LT] = ACTIONS(334), - [anon_sym_GT] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(330), + [anon_sym_COMMA] = ACTIONS(328), + [anon_sym_LT] = ACTIONS(330), + [anon_sym_GT] = ACTIONS(330), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_DOT_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_DOT_DOT_EQ] = ACTIONS(332), - [anon_sym_DASH] = ACTIONS(334), - [anon_sym_AMP_AMP] = ACTIONS(332), - [anon_sym_PIPE_PIPE] = ACTIONS(332), - [anon_sym_PIPE] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(332), - [anon_sym_BANG_EQ] = ACTIONS(332), - [anon_sym_LT_EQ] = ACTIONS(332), - [anon_sym_GT_EQ] = ACTIONS(332), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(334), - [anon_sym_SLASH] = ACTIONS(334), - [anon_sym_PERCENT] = ACTIONS(334), - [anon_sym_PLUS_EQ] = ACTIONS(332), - [anon_sym_DASH_EQ] = ACTIONS(332), - [anon_sym_STAR_EQ] = ACTIONS(332), - [anon_sym_SLASH_EQ] = ACTIONS(332), - [anon_sym_PERCENT_EQ] = ACTIONS(332), - [anon_sym_AMP_EQ] = ACTIONS(332), - [anon_sym_PIPE_EQ] = ACTIONS(332), - [anon_sym_CARET_EQ] = ACTIONS(332), - [anon_sym_LT_LT_EQ] = ACTIONS(332), - [anon_sym_GT_GT_EQ] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(328), + [anon_sym_DOT_DOT] = ACTIONS(330), + [anon_sym_DOT_DOT_EQ] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_AMP_AMP] = ACTIONS(328), + [anon_sym_PIPE_PIPE] = ACTIONS(328), + [anon_sym_PIPE] = ACTIONS(330), + [anon_sym_CARET] = ACTIONS(330), + [anon_sym_EQ_EQ] = ACTIONS(328), + [anon_sym_BANG_EQ] = ACTIONS(328), + [anon_sym_LT_EQ] = ACTIONS(328), + [anon_sym_GT_EQ] = ACTIONS(328), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_GT_GT] = ACTIONS(330), + [anon_sym_SLASH] = ACTIONS(330), + [anon_sym_PERCENT] = ACTIONS(330), + [anon_sym_PLUS_EQ] = ACTIONS(328), + [anon_sym_DASH_EQ] = ACTIONS(328), + [anon_sym_STAR_EQ] = ACTIONS(328), + [anon_sym_SLASH_EQ] = ACTIONS(328), + [anon_sym_PERCENT_EQ] = ACTIONS(328), + [anon_sym_AMP_EQ] = ACTIONS(328), + [anon_sym_PIPE_EQ] = ACTIONS(328), + [anon_sym_CARET_EQ] = ACTIONS(328), + [anon_sym_LT_LT_EQ] = ACTIONS(328), + [anon_sym_GT_GT_EQ] = ACTIONS(328), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(334), + [anon_sym_DOT] = ACTIONS(330), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19163,62 +19196,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1151), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1080), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(332), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(336), + [anon_sym_RPAREN] = ACTIONS(332), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(336), - [anon_sym_EQ_GT] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(336), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_RBRACE] = ACTIONS(332), + [anon_sym_EQ_GT] = ACTIONS(332), + [anon_sym_LBRACK] = ACTIONS(332), + [anon_sym_RBRACK] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_STAR] = ACTIONS(334), + [anon_sym_QMARK] = ACTIONS(332), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -19237,7 +19270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(338), + [anon_sym_as] = ACTIONS(334), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -19252,41 +19285,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_COMMA] = ACTIONS(336), - [anon_sym_LT] = ACTIONS(324), - [anon_sym_GT] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(334), + [anon_sym_COMMA] = ACTIONS(332), + [anon_sym_LT] = ACTIONS(334), + [anon_sym_GT] = ACTIONS(334), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(326), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_PERCENT] = ACTIONS(338), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT] = ACTIONS(334), + [anon_sym_DOT_DOT_EQ] = ACTIONS(332), + [anon_sym_DASH] = ACTIONS(334), + [anon_sym_AMP_AMP] = ACTIONS(332), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_CARET] = ACTIONS(334), + [anon_sym_EQ_EQ] = ACTIONS(332), + [anon_sym_BANG_EQ] = ACTIONS(332), + [anon_sym_LT_EQ] = ACTIONS(332), + [anon_sym_GT_EQ] = ACTIONS(332), + [anon_sym_LT_LT] = ACTIONS(334), + [anon_sym_GT_GT] = ACTIONS(334), + [anon_sym_SLASH] = ACTIONS(334), + [anon_sym_PERCENT] = ACTIONS(334), + [anon_sym_PLUS_EQ] = ACTIONS(332), + [anon_sym_DASH_EQ] = ACTIONS(332), + [anon_sym_STAR_EQ] = ACTIONS(332), + [anon_sym_SLASH_EQ] = ACTIONS(332), + [anon_sym_PERCENT_EQ] = ACTIONS(332), + [anon_sym_AMP_EQ] = ACTIONS(332), + [anon_sym_PIPE_EQ] = ACTIONS(332), + [anon_sym_CARET_EQ] = ACTIONS(332), + [anon_sym_LT_LT_EQ] = ACTIONS(332), + [anon_sym_GT_GT_EQ] = ACTIONS(332), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(334), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19302,62 +19335,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1097), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1080), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(316), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(316), + [anon_sym_SEMI] = ACTIONS(332), + [anon_sym_LPAREN] = ACTIONS(332), + [anon_sym_RPAREN] = ACTIONS(332), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(316), - [anon_sym_EQ_GT] = ACTIONS(316), - [anon_sym_LBRACK] = ACTIONS(316), - [anon_sym_RBRACK] = ACTIONS(316), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_QMARK] = ACTIONS(316), + [anon_sym_RBRACE] = ACTIONS(332), + [anon_sym_EQ_GT] = ACTIONS(332), + [anon_sym_LBRACK] = ACTIONS(332), + [anon_sym_RBRACK] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_STAR] = ACTIONS(334), + [anon_sym_QMARK] = ACTIONS(332), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -19376,7 +19409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(318), + [anon_sym_as] = ACTIONS(334), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -19391,41 +19424,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(318), - [anon_sym_COMMA] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(334), + [anon_sym_COMMA] = ACTIONS(332), + [anon_sym_LT] = ACTIONS(334), + [anon_sym_GT] = ACTIONS(334), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_DOT_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_DOT_DOT_EQ] = ACTIONS(316), - [anon_sym_DASH] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(316), - [anon_sym_PIPE_PIPE] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(316), - [anon_sym_BANG_EQ] = ACTIONS(316), - [anon_sym_LT_EQ] = ACTIONS(316), - [anon_sym_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT] = ACTIONS(318), - [anon_sym_GT_GT] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_AMP] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT] = ACTIONS(334), + [anon_sym_DOT_DOT_EQ] = ACTIONS(332), + [anon_sym_DASH] = ACTIONS(334), + [anon_sym_AMP_AMP] = ACTIONS(332), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_CARET] = ACTIONS(334), + [anon_sym_EQ_EQ] = ACTIONS(332), + [anon_sym_BANG_EQ] = ACTIONS(332), + [anon_sym_LT_EQ] = ACTIONS(332), + [anon_sym_GT_EQ] = ACTIONS(332), + [anon_sym_LT_LT] = ACTIONS(334), + [anon_sym_GT_GT] = ACTIONS(334), + [anon_sym_SLASH] = ACTIONS(334), + [anon_sym_PERCENT] = ACTIONS(334), + [anon_sym_PLUS_EQ] = ACTIONS(332), + [anon_sym_DASH_EQ] = ACTIONS(332), + [anon_sym_STAR_EQ] = ACTIONS(332), + [anon_sym_SLASH_EQ] = ACTIONS(332), + [anon_sym_PERCENT_EQ] = ACTIONS(332), + [anon_sym_AMP_EQ] = ACTIONS(332), + [anon_sym_PIPE_EQ] = ACTIONS(332), + [anon_sym_CARET_EQ] = ACTIONS(332), + [anon_sym_LT_LT_EQ] = ACTIONS(332), + [anon_sym_GT_GT_EQ] = ACTIONS(332), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(334), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19441,62 +19474,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [24] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1064), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1143), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(332), + [anon_sym_SEMI] = ACTIONS(336), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(332), + [anon_sym_RPAREN] = ACTIONS(336), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(332), - [anon_sym_EQ_GT] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(332), - [anon_sym_RBRACK] = ACTIONS(332), - [anon_sym_PLUS] = ACTIONS(334), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_QMARK] = ACTIONS(332), + [anon_sym_RBRACE] = ACTIONS(336), + [anon_sym_EQ_GT] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(308), + [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -19515,7 +19548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(334), + [anon_sym_as] = ACTIONS(338), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -19530,41 +19563,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(334), - [anon_sym_COMMA] = ACTIONS(332), - [anon_sym_LT] = ACTIONS(334), - [anon_sym_GT] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_COMMA] = ACTIONS(336), + [anon_sym_LT] = ACTIONS(320), + [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_DOT_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_DOT_DOT_EQ] = ACTIONS(332), - [anon_sym_DASH] = ACTIONS(334), - [anon_sym_AMP_AMP] = ACTIONS(332), - [anon_sym_PIPE_PIPE] = ACTIONS(332), - [anon_sym_PIPE] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(332), - [anon_sym_BANG_EQ] = ACTIONS(332), - [anon_sym_LT_EQ] = ACTIONS(332), - [anon_sym_GT_EQ] = ACTIONS(332), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(334), - [anon_sym_SLASH] = ACTIONS(334), - [anon_sym_PERCENT] = ACTIONS(334), - [anon_sym_PLUS_EQ] = ACTIONS(332), - [anon_sym_DASH_EQ] = ACTIONS(332), - [anon_sym_STAR_EQ] = ACTIONS(332), - [anon_sym_SLASH_EQ] = ACTIONS(332), - [anon_sym_PERCENT_EQ] = ACTIONS(332), - [anon_sym_AMP_EQ] = ACTIONS(332), - [anon_sym_PIPE_EQ] = ACTIONS(332), - [anon_sym_CARET_EQ] = ACTIONS(332), - [anon_sym_LT_LT_EQ] = ACTIONS(332), - [anon_sym_GT_GT_EQ] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT] = ACTIONS(324), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(326), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(334), + [anon_sym_DOT] = ACTIONS(338), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19580,50 +19613,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [25] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1216), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1261), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(282), [anon_sym_LBRACE] = ACTIONS(282), @@ -19714,57 +19747,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1097), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1080), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(316), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_LBRACK] = ACTIONS(316), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_QMARK] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(332), + [anon_sym_LBRACK] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_STAR] = ACTIONS(334), + [anon_sym_QMARK] = ACTIONS(332), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -19783,7 +19816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(318), + [anon_sym_as] = ACTIONS(334), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -19798,40 +19831,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(318), - [anon_sym_LT] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(334), + [anon_sym_LT] = ACTIONS(334), + [anon_sym_GT] = ACTIONS(334), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_DOT_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_DOT_DOT_EQ] = ACTIONS(316), - [anon_sym_DASH] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(316), - [anon_sym_PIPE_PIPE] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(316), - [anon_sym_BANG_EQ] = ACTIONS(316), - [anon_sym_LT_EQ] = ACTIONS(316), - [anon_sym_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT] = ACTIONS(318), - [anon_sym_GT_GT] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_AMP] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT] = ACTIONS(334), + [anon_sym_DOT_DOT_EQ] = ACTIONS(332), + [anon_sym_DASH] = ACTIONS(334), + [anon_sym_AMP_AMP] = ACTIONS(332), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_CARET] = ACTIONS(334), + [anon_sym_EQ_EQ] = ACTIONS(332), + [anon_sym_BANG_EQ] = ACTIONS(332), + [anon_sym_LT_EQ] = ACTIONS(332), + [anon_sym_GT_EQ] = ACTIONS(332), + [anon_sym_LT_LT] = ACTIONS(334), + [anon_sym_GT_GT] = ACTIONS(334), + [anon_sym_SLASH] = ACTIONS(334), + [anon_sym_PERCENT] = ACTIONS(334), + [anon_sym_PLUS_EQ] = ACTIONS(332), + [anon_sym_DASH_EQ] = ACTIONS(332), + [anon_sym_STAR_EQ] = ACTIONS(332), + [anon_sym_SLASH_EQ] = ACTIONS(332), + [anon_sym_PERCENT_EQ] = ACTIONS(332), + [anon_sym_AMP_EQ] = ACTIONS(332), + [anon_sym_PIPE_EQ] = ACTIONS(332), + [anon_sym_CARET_EQ] = ACTIONS(332), + [anon_sym_LT_LT_EQ] = ACTIONS(332), + [anon_sym_GT_GT_EQ] = ACTIONS(332), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(334), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19847,57 +19880,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1205), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1075), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_LPAREN] = ACTIONS(328), + [anon_sym_LBRACE] = ACTIONS(328), + [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_STAR] = ACTIONS(330), + [anon_sym_QMARK] = ACTIONS(328), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -19916,7 +19949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(338), + [anon_sym_as] = ACTIONS(330), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -19931,40 +19964,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_LT] = ACTIONS(324), - [anon_sym_GT] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(330), + [anon_sym_LT] = ACTIONS(330), + [anon_sym_GT] = ACTIONS(330), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(328), + [anon_sym_DOT_DOT] = ACTIONS(330), + [anon_sym_DOT_DOT_EQ] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_AMP_AMP] = ACTIONS(328), + [anon_sym_PIPE_PIPE] = ACTIONS(328), [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_PERCENT] = ACTIONS(338), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_CARET] = ACTIONS(330), + [anon_sym_EQ_EQ] = ACTIONS(328), + [anon_sym_BANG_EQ] = ACTIONS(328), + [anon_sym_LT_EQ] = ACTIONS(328), + [anon_sym_GT_EQ] = ACTIONS(328), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_GT_GT] = ACTIONS(330), + [anon_sym_SLASH] = ACTIONS(330), + [anon_sym_PERCENT] = ACTIONS(330), + [anon_sym_PLUS_EQ] = ACTIONS(328), + [anon_sym_DASH_EQ] = ACTIONS(328), + [anon_sym_STAR_EQ] = ACTIONS(328), + [anon_sym_SLASH_EQ] = ACTIONS(328), + [anon_sym_PERCENT_EQ] = ACTIONS(328), + [anon_sym_AMP_EQ] = ACTIONS(328), + [anon_sym_PIPE_EQ] = ACTIONS(328), + [anon_sym_CARET_EQ] = ACTIONS(328), + [anon_sym_LT_LT_EQ] = ACTIONS(328), + [anon_sym_GT_GT_EQ] = ACTIONS(328), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(330), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19980,52 +20013,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [28] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1064), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1080), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(332), [anon_sym_LBRACE] = ACTIONS(332), [anon_sym_LBRACK] = ACTIONS(332), [anon_sym_PLUS] = ACTIONS(334), @@ -20113,57 +20146,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [29] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1097), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1245), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(25), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(316), - [anon_sym_LBRACK] = ACTIONS(316), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_STAR] = ACTIONS(318), - [anon_sym_QMARK] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_STAR] = ACTIONS(312), + [anon_sym_QMARK] = ACTIONS(310), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20181,8 +20214,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(342), [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(318), + [anon_sym_SQUOTE] = ACTIONS(314), + [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20197,40 +20230,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(318), - [anon_sym_LT] = ACTIONS(318), - [anon_sym_GT] = ACTIONS(318), + [anon_sym_EQ] = ACTIONS(312), + [anon_sym_LT] = ACTIONS(312), + [anon_sym_GT] = ACTIONS(312), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(318), - [anon_sym_DOT_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_DOT_DOT_EQ] = ACTIONS(316), - [anon_sym_DASH] = ACTIONS(318), - [anon_sym_AMP_AMP] = ACTIONS(316), - [anon_sym_PIPE_PIPE] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(318), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(316), - [anon_sym_BANG_EQ] = ACTIONS(316), - [anon_sym_LT_EQ] = ACTIONS(316), - [anon_sym_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT] = ACTIONS(318), - [anon_sym_GT_GT] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_DOT_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(310), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(310), + [anon_sym_PIPE] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_EQ_EQ] = ACTIONS(310), + [anon_sym_BANG_EQ] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(312), + [anon_sym_SLASH] = ACTIONS(312), + [anon_sym_PERCENT] = ACTIONS(312), + [anon_sym_PLUS_EQ] = ACTIONS(310), + [anon_sym_DASH_EQ] = ACTIONS(310), + [anon_sym_STAR_EQ] = ACTIONS(310), + [anon_sym_SLASH_EQ] = ACTIONS(310), + [anon_sym_PERCENT_EQ] = ACTIONS(310), + [anon_sym_AMP_EQ] = ACTIONS(310), + [anon_sym_PIPE_EQ] = ACTIONS(310), + [anon_sym_CARET_EQ] = ACTIONS(310), + [anon_sym_LT_LT_EQ] = ACTIONS(310), + [anon_sym_GT_GT_EQ] = ACTIONS(310), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(312), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20246,57 +20279,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [30] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1064), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1224), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(332), - [anon_sym_PLUS] = ACTIONS(334), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_QMARK] = ACTIONS(332), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(350), + [anon_sym_QMARK] = ACTIONS(316), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20315,7 +20348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(334), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20330,40 +20363,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(334), - [anon_sym_GT] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(320), + [anon_sym_GT] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_DOT_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_DOT_DOT_EQ] = ACTIONS(332), - [anon_sym_DASH] = ACTIONS(334), - [anon_sym_AMP_AMP] = ACTIONS(332), - [anon_sym_PIPE_PIPE] = ACTIONS(332), - [anon_sym_PIPE] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(332), - [anon_sym_BANG_EQ] = ACTIONS(332), - [anon_sym_LT_EQ] = ACTIONS(332), - [anon_sym_GT_EQ] = ACTIONS(332), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(334), - [anon_sym_SLASH] = ACTIONS(334), - [anon_sym_PERCENT] = ACTIONS(334), - [anon_sym_PLUS_EQ] = ACTIONS(332), - [anon_sym_DASH_EQ] = ACTIONS(332), - [anon_sym_STAR_EQ] = ACTIONS(332), - [anon_sym_SLASH_EQ] = ACTIONS(332), - [anon_sym_PERCENT_EQ] = ACTIONS(332), - [anon_sym_AMP_EQ] = ACTIONS(332), - [anon_sym_PIPE_EQ] = ACTIONS(332), - [anon_sym_CARET_EQ] = ACTIONS(332), - [anon_sym_LT_LT_EQ] = ACTIONS(332), - [anon_sym_GT_GT_EQ] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(326), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(334), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20379,57 +20412,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [31] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1239), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1075), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(25), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(310), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(328), + [anon_sym_LBRACK] = ACTIONS(328), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_STAR] = ACTIONS(330), + [anon_sym_QMARK] = ACTIONS(328), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20447,8 +20480,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(342), [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(314), - [anon_sym_as] = ACTIONS(312), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(330), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20463,40 +20496,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(312), - [anon_sym_LT] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(312), + [anon_sym_EQ] = ACTIONS(330), + [anon_sym_LT] = ACTIONS(330), + [anon_sym_GT] = ACTIONS(330), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(312), - [anon_sym_DOT_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_AMP_AMP] = ACTIONS(310), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_EQ_EQ] = ACTIONS(310), - [anon_sym_BANG_EQ] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(312), - [anon_sym_GT_GT] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(312), - [anon_sym_PERCENT] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(310), - [anon_sym_DASH_EQ] = ACTIONS(310), - [anon_sym_STAR_EQ] = ACTIONS(310), - [anon_sym_SLASH_EQ] = ACTIONS(310), - [anon_sym_PERCENT_EQ] = ACTIONS(310), - [anon_sym_AMP_EQ] = ACTIONS(310), - [anon_sym_PIPE_EQ] = ACTIONS(310), - [anon_sym_CARET_EQ] = ACTIONS(310), - [anon_sym_LT_LT_EQ] = ACTIONS(310), - [anon_sym_GT_GT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(328), + [anon_sym_DOT_DOT] = ACTIONS(330), + [anon_sym_DOT_DOT_EQ] = ACTIONS(328), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_AMP_AMP] = ACTIONS(328), + [anon_sym_PIPE_PIPE] = ACTIONS(328), + [anon_sym_PIPE] = ACTIONS(330), + [anon_sym_CARET] = ACTIONS(330), + [anon_sym_EQ_EQ] = ACTIONS(328), + [anon_sym_BANG_EQ] = ACTIONS(328), + [anon_sym_LT_EQ] = ACTIONS(328), + [anon_sym_GT_EQ] = ACTIONS(328), + [anon_sym_LT_LT] = ACTIONS(330), + [anon_sym_GT_GT] = ACTIONS(330), + [anon_sym_SLASH] = ACTIONS(330), + [anon_sym_PERCENT] = ACTIONS(330), + [anon_sym_PLUS_EQ] = ACTIONS(328), + [anon_sym_DASH_EQ] = ACTIONS(328), + [anon_sym_STAR_EQ] = ACTIONS(328), + [anon_sym_SLASH_EQ] = ACTIONS(328), + [anon_sym_PERCENT_EQ] = ACTIONS(328), + [anon_sym_AMP_EQ] = ACTIONS(328), + [anon_sym_PIPE_EQ] = ACTIONS(328), + [anon_sym_CARET_EQ] = ACTIONS(328), + [anon_sym_LT_LT_EQ] = ACTIONS(328), + [anon_sym_GT_GT_EQ] = ACTIONS(328), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(330), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20512,57 +20545,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1214), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1236), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_PLUS] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(320), + [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -20581,7 +20614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(322), + [anon_sym_as] = ACTIONS(338), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -20596,40 +20629,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(322), - [anon_sym_LT] = ACTIONS(324), - [anon_sym_GT] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(320), + [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(320), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(322), - [anon_sym_EQ_EQ] = ACTIONS(320), - [anon_sym_BANG_EQ] = ACTIONS(320), - [anon_sym_LT_EQ] = ACTIONS(320), - [anon_sym_GT_EQ] = ACTIONS(320), - [anon_sym_LT_LT] = ACTIONS(322), - [anon_sym_GT_GT] = ACTIONS(322), - [anon_sym_SLASH] = ACTIONS(322), - [anon_sym_PERCENT] = ACTIONS(322), - [anon_sym_PLUS_EQ] = ACTIONS(320), - [anon_sym_DASH_EQ] = ACTIONS(320), - [anon_sym_STAR_EQ] = ACTIONS(320), - [anon_sym_SLASH_EQ] = ACTIONS(320), - [anon_sym_PERCENT_EQ] = ACTIONS(320), - [anon_sym_AMP_EQ] = ACTIONS(320), - [anon_sym_PIPE_EQ] = ACTIONS(320), - [anon_sym_CARET_EQ] = ACTIONS(320), - [anon_sym_LT_LT_EQ] = ACTIONS(320), - [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(326), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(322), + [anon_sym_DOT] = ACTIONS(338), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20645,57 +20678,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym_attribute_item] = STATE(59), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1188), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_enum_variant_list_repeat1] = STATE(59), + [sym_attribute_item] = STATE(35), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1183), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_enum_variant_list_repeat1] = STATE(35), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(368), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(368), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -20754,57 +20787,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym_attribute_item] = STATE(621), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1184), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_enum_variant_list_repeat1] = STATE(621), + [sym_attribute_item] = STATE(54), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1192), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_enum_variant_list_repeat1] = STATE(54), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(374), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(374), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -20863,52 +20896,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym_attribute_item] = STATE(34), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1185), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_enum_variant_list_repeat1] = STATE(34), + [sym_attribute_item] = STATE(626), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1176), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_enum_variant_list_repeat1] = STATE(626), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20972,53 +21005,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_let_condition] = STATE(2162), - [sym__condition] = STATE(2162), - [sym__conditions] = STATE(2164), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_let_condition] = STATE(2009), + [sym_let_chain] = STATE(2166), + [sym__condition] = STATE(2166), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21080,271 +21113,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [37] = { - [sym_attribute_item] = STATE(57), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1243), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_enum_variant_list_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_let_condition] = STATE(2009), + [sym_let_chain] = STATE(2316), + [sym__condition] = STATE(2316), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(390), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [38] = { - [sym_attribute_item] = STATE(53), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1235), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_enum_variant_list_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_let_condition] = STATE(2009), + [sym_let_chain] = STATE(2144), + [sym__condition] = STATE(2144), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(392), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [39] = { - [sym_attribute_item] = STATE(53), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1235), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_enum_variant_list_repeat1] = STATE(53), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1243), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_let_condition] = STATE(1977), + [sym_let_chain] = STATE(2408), + [sym__condition] = STATE(2408), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(394), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -21373,13 +21406,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(390), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_POUND] = ACTIONS(370), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -21404,53 +21437,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [40] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_let_condition] = STATE(2162), - [sym__condition] = STATE(2162), - [sym__conditions] = STATE(2157), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_let_condition] = STATE(2009), + [sym_let_chain] = STATE(2234), + [sym__condition] = STATE(2234), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21512,53 +21545,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [41] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_let_condition] = STATE(2162), - [sym__condition] = STATE(2162), - [sym__conditions] = STATE(2132), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [sym_attribute_item] = STATE(57), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_enum_variant_list_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [42] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_let_condition] = STATE(2009), + [sym_let_chain] = STATE(2276), + [sym__condition] = STATE(2276), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21619,54 +21760,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [42] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_let_condition] = STATE(2162), - [sym__condition] = STATE(2162), - [sym__conditions] = STATE(2264), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [43] = { + [sym_attribute_item] = STATE(53), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1207), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_enum_variant_list_repeat1] = STATE(53), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(394), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [44] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_let_condition] = STATE(2009), + [sym_let_chain] = STATE(2279), + [sym__condition] = STATE(2279), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21727,162 +21976,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [43] = { - [sym_else_clause] = STATE(76), - [ts_builtin_sym_end] = ACTIONS(396), - [sym_identifier] = ACTIONS(398), - [anon_sym_SEMI] = ACTIONS(396), - [anon_sym_macro_rules_BANG] = ACTIONS(396), - [anon_sym_LPAREN] = ACTIONS(396), - [anon_sym_LBRACE] = ACTIONS(396), - [anon_sym_RBRACE] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(396), - [anon_sym_PLUS] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_QMARK] = ACTIONS(396), - [anon_sym_u8] = ACTIONS(398), - [anon_sym_i8] = ACTIONS(398), - [anon_sym_u16] = ACTIONS(398), - [anon_sym_i16] = ACTIONS(398), - [anon_sym_u32] = ACTIONS(398), - [anon_sym_i32] = ACTIONS(398), - [anon_sym_u64] = ACTIONS(398), - [anon_sym_i64] = ACTIONS(398), - [anon_sym_u128] = ACTIONS(398), - [anon_sym_i128] = ACTIONS(398), - [anon_sym_isize] = ACTIONS(398), - [anon_sym_usize] = ACTIONS(398), - [anon_sym_f32] = ACTIONS(398), - [anon_sym_f64] = ACTIONS(398), - [anon_sym_bool] = ACTIONS(398), - [anon_sym_str] = ACTIONS(398), - [anon_sym_char] = ACTIONS(398), - [anon_sym_SQUOTE] = ACTIONS(398), - [anon_sym_as] = ACTIONS(398), - [anon_sym_async] = ACTIONS(398), - [anon_sym_break] = ACTIONS(398), - [anon_sym_const] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(398), - [anon_sym_default] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(398), - [anon_sym_fn] = ACTIONS(398), - [anon_sym_for] = ACTIONS(398), - [anon_sym_if] = ACTIONS(398), - [anon_sym_impl] = ACTIONS(398), - [anon_sym_let] = ACTIONS(398), - [anon_sym_loop] = ACTIONS(398), - [anon_sym_match] = ACTIONS(398), - [anon_sym_mod] = ACTIONS(398), - [anon_sym_pub] = ACTIONS(398), - [anon_sym_return] = ACTIONS(398), - [anon_sym_static] = ACTIONS(398), - [anon_sym_struct] = ACTIONS(398), - [anon_sym_trait] = ACTIONS(398), - [anon_sym_type] = ACTIONS(398), - [anon_sym_union] = ACTIONS(398), - [anon_sym_unsafe] = ACTIONS(398), - [anon_sym_use] = ACTIONS(398), - [anon_sym_while] = ACTIONS(398), - [anon_sym_POUND] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_EQ] = ACTIONS(398), - [anon_sym_extern] = ACTIONS(398), - [anon_sym_LT] = ACTIONS(398), - [anon_sym_GT] = ACTIONS(398), - [anon_sym_COLON_COLON] = ACTIONS(396), - [anon_sym_AMP] = ACTIONS(398), - [anon_sym_DOT_DOT_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(398), - [anon_sym_DOT_DOT_EQ] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_AMP_AMP] = ACTIONS(396), - [anon_sym_PIPE_PIPE] = ACTIONS(396), - [anon_sym_PIPE] = ACTIONS(398), - [anon_sym_CARET] = ACTIONS(398), - [anon_sym_EQ_EQ] = ACTIONS(396), - [anon_sym_BANG_EQ] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(398), - [anon_sym_GT_GT] = ACTIONS(398), - [anon_sym_SLASH] = ACTIONS(398), - [anon_sym_PERCENT] = ACTIONS(398), - [anon_sym_PLUS_EQ] = ACTIONS(396), - [anon_sym_DASH_EQ] = ACTIONS(396), - [anon_sym_STAR_EQ] = ACTIONS(396), - [anon_sym_SLASH_EQ] = ACTIONS(396), - [anon_sym_PERCENT_EQ] = ACTIONS(396), - [anon_sym_AMP_EQ] = ACTIONS(396), - [anon_sym_PIPE_EQ] = ACTIONS(396), - [anon_sym_CARET_EQ] = ACTIONS(396), - [anon_sym_LT_LT_EQ] = ACTIONS(396), - [anon_sym_GT_GT_EQ] = ACTIONS(396), - [anon_sym_yield] = ACTIONS(398), - [anon_sym_else] = ACTIONS(400), - [anon_sym_move] = ACTIONS(398), - [anon_sym_DOT] = ACTIONS(398), - [sym_integer_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(396), - [sym_char_literal] = ACTIONS(396), - [anon_sym_true] = ACTIONS(398), - [anon_sym_false] = ACTIONS(398), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(398), - [sym_super] = ACTIONS(398), - [sym_crate] = ACTIONS(398), - [sym_metavariable] = ACTIONS(396), - [sym_raw_string_literal] = ACTIONS(396), - [sym_float_literal] = ACTIONS(396), - [sym_block_comment] = ACTIONS(3), - }, - [44] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_let_condition] = STATE(2162), - [sym__condition] = STATE(2162), - [sym__conditions] = STATE(2289), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [45] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_let_condition] = STATE(2009), + [sym_let_chain] = STATE(2321), + [sym__condition] = STATE(2321), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21943,56 +22084,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [45] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1268), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_let_condition] = STATE(2304), - [sym__condition] = STATE(2304), - [sym__conditions] = STATE(2491), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [46] = { + [sym_attribute_item] = STATE(57), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_enum_variant_list_repeat1] = STATE(57), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(396), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -22021,13 +22162,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(402), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), + [anon_sym_POUND] = ACTIONS(370), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -22051,162 +22192,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [46] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_let_condition] = STATE(2162), - [sym__condition] = STATE(2162), - [sym__conditions] = STATE(2197), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [47] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_let_condition] = STATE(2009), + [sym_let_chain] = STATE(2169), + [sym__condition] = STATE(2169), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(384), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [47] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_let_condition] = STATE(2162), - [sym__condition] = STATE(2162), - [sym__conditions] = STATE(2290), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22268,161 +22301,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [48] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_let_condition] = STATE(2162), - [sym__condition] = STATE(2162), - [sym__conditions] = STATE(2305), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(384), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_else_clause] = STATE(82), + [ts_builtin_sym_end] = ACTIONS(398), + [sym_identifier] = ACTIONS(400), + [anon_sym_SEMI] = ACTIONS(398), + [anon_sym_macro_rules_BANG] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_LBRACE] = ACTIONS(398), + [anon_sym_RBRACE] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(398), + [anon_sym_PLUS] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(398), + [anon_sym_u8] = ACTIONS(400), + [anon_sym_i8] = ACTIONS(400), + [anon_sym_u16] = ACTIONS(400), + [anon_sym_i16] = ACTIONS(400), + [anon_sym_u32] = ACTIONS(400), + [anon_sym_i32] = ACTIONS(400), + [anon_sym_u64] = ACTIONS(400), + [anon_sym_i64] = ACTIONS(400), + [anon_sym_u128] = ACTIONS(400), + [anon_sym_i128] = ACTIONS(400), + [anon_sym_isize] = ACTIONS(400), + [anon_sym_usize] = ACTIONS(400), + [anon_sym_f32] = ACTIONS(400), + [anon_sym_f64] = ACTIONS(400), + [anon_sym_bool] = ACTIONS(400), + [anon_sym_str] = ACTIONS(400), + [anon_sym_char] = ACTIONS(400), + [anon_sym_SQUOTE] = ACTIONS(400), + [anon_sym_as] = ACTIONS(400), + [anon_sym_async] = ACTIONS(400), + [anon_sym_break] = ACTIONS(400), + [anon_sym_const] = ACTIONS(400), + [anon_sym_continue] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_enum] = ACTIONS(400), + [anon_sym_fn] = ACTIONS(400), + [anon_sym_for] = ACTIONS(400), + [anon_sym_if] = ACTIONS(400), + [anon_sym_impl] = ACTIONS(400), + [anon_sym_let] = ACTIONS(400), + [anon_sym_loop] = ACTIONS(400), + [anon_sym_match] = ACTIONS(400), + [anon_sym_mod] = ACTIONS(400), + [anon_sym_pub] = ACTIONS(400), + [anon_sym_return] = ACTIONS(400), + [anon_sym_static] = ACTIONS(400), + [anon_sym_struct] = ACTIONS(400), + [anon_sym_trait] = ACTIONS(400), + [anon_sym_type] = ACTIONS(400), + [anon_sym_union] = ACTIONS(400), + [anon_sym_unsafe] = ACTIONS(400), + [anon_sym_use] = ACTIONS(400), + [anon_sym_while] = ACTIONS(400), + [anon_sym_POUND] = ACTIONS(398), + [anon_sym_BANG] = ACTIONS(400), + [anon_sym_EQ] = ACTIONS(400), + [anon_sym_extern] = ACTIONS(400), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_COLON_COLON] = ACTIONS(398), + [anon_sym_AMP] = ACTIONS(400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(398), + [anon_sym_DOT_DOT] = ACTIONS(400), + [anon_sym_DOT_DOT_EQ] = ACTIONS(398), + [anon_sym_DASH] = ACTIONS(400), + [anon_sym_AMP_AMP] = ACTIONS(398), + [anon_sym_PIPE_PIPE] = ACTIONS(398), + [anon_sym_PIPE] = ACTIONS(400), + [anon_sym_CARET] = ACTIONS(400), + [anon_sym_EQ_EQ] = ACTIONS(398), + [anon_sym_BANG_EQ] = ACTIONS(398), + [anon_sym_LT_EQ] = ACTIONS(398), + [anon_sym_GT_EQ] = ACTIONS(398), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(400), + [anon_sym_SLASH] = ACTIONS(400), + [anon_sym_PERCENT] = ACTIONS(400), + [anon_sym_PLUS_EQ] = ACTIONS(398), + [anon_sym_DASH_EQ] = ACTIONS(398), + [anon_sym_STAR_EQ] = ACTIONS(398), + [anon_sym_SLASH_EQ] = ACTIONS(398), + [anon_sym_PERCENT_EQ] = ACTIONS(398), + [anon_sym_AMP_EQ] = ACTIONS(398), + [anon_sym_PIPE_EQ] = ACTIONS(398), + [anon_sym_CARET_EQ] = ACTIONS(398), + [anon_sym_LT_LT_EQ] = ACTIONS(398), + [anon_sym_GT_GT_EQ] = ACTIONS(398), + [anon_sym_yield] = ACTIONS(400), + [anon_sym_else] = ACTIONS(402), + [anon_sym_move] = ACTIONS(400), + [anon_sym_DOT] = ACTIONS(400), + [sym_integer_literal] = ACTIONS(398), + [aux_sym_string_literal_token1] = ACTIONS(398), + [sym_char_literal] = ACTIONS(398), + [anon_sym_true] = ACTIONS(400), + [anon_sym_false] = ACTIONS(400), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(400), + [sym_super] = ACTIONS(400), + [sym_crate] = ACTIONS(400), + [sym_metavariable] = ACTIONS(398), + [sym_raw_string_literal] = ACTIONS(398), + [sym_float_literal] = ACTIONS(398), [sym_block_comment] = ACTIONS(3), }, [49] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_let_condition] = STATE(2162), - [sym__condition] = STATE(2162), - [sym__conditions] = STATE(2267), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_let_condition] = STATE(2009), + [sym_let_chain] = STATE(2301), + [sym__condition] = STATE(2301), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22484,52 +22517,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [50] = { - [sym_attribute_item] = STATE(53), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1235), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_enum_variant_list_repeat1] = STATE(53), + [sym_attribute_item] = STATE(57), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_enum_variant_list_repeat1] = STATE(57), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(404), @@ -22592,161 +22625,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [51] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_let_condition] = STATE(2162), - [sym__condition] = STATE(2162), - [sym__conditions] = STATE(2217), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(384), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [anon_sym_SEMI] = ACTIONS(406), + [anon_sym_macro_rules_BANG] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_LBRACK] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_u8] = ACTIONS(408), + [anon_sym_i8] = ACTIONS(408), + [anon_sym_u16] = ACTIONS(408), + [anon_sym_i16] = ACTIONS(408), + [anon_sym_u32] = ACTIONS(408), + [anon_sym_i32] = ACTIONS(408), + [anon_sym_u64] = ACTIONS(408), + [anon_sym_i64] = ACTIONS(408), + [anon_sym_u128] = ACTIONS(408), + [anon_sym_i128] = ACTIONS(408), + [anon_sym_isize] = ACTIONS(408), + [anon_sym_usize] = ACTIONS(408), + [anon_sym_f32] = ACTIONS(408), + [anon_sym_f64] = ACTIONS(408), + [anon_sym_bool] = ACTIONS(408), + [anon_sym_str] = ACTIONS(408), + [anon_sym_char] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(408), + [anon_sym_as] = ACTIONS(408), + [anon_sym_async] = ACTIONS(408), + [anon_sym_break] = ACTIONS(408), + [anon_sym_const] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(408), + [anon_sym_default] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(408), + [anon_sym_fn] = ACTIONS(408), + [anon_sym_for] = ACTIONS(408), + [anon_sym_if] = ACTIONS(408), + [anon_sym_impl] = ACTIONS(408), + [anon_sym_let] = ACTIONS(408), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(408), + [anon_sym_mod] = ACTIONS(408), + [anon_sym_pub] = ACTIONS(408), + [anon_sym_return] = ACTIONS(408), + [anon_sym_static] = ACTIONS(408), + [anon_sym_struct] = ACTIONS(408), + [anon_sym_trait] = ACTIONS(408), + [anon_sym_type] = ACTIONS(408), + [anon_sym_union] = ACTIONS(408), + [anon_sym_unsafe] = ACTIONS(408), + [anon_sym_use] = ACTIONS(408), + [anon_sym_while] = ACTIONS(408), + [anon_sym_POUND] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [anon_sym_extern] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(408), + [anon_sym_GT] = ACTIONS(408), + [anon_sym_COLON_COLON] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(408), + [anon_sym_DOT_DOT_DOT] = ACTIONS(406), + [anon_sym_DOT_DOT] = ACTIONS(408), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(408), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(408), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(408), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_SLASH] = ACTIONS(408), + [anon_sym_PERCENT] = ACTIONS(408), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_PERCENT_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_CARET_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_yield] = ACTIONS(408), + [anon_sym_else] = ACTIONS(408), + [anon_sym_move] = ACTIONS(408), + [anon_sym_DOT] = ACTIONS(408), + [sym_integer_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(406), + [sym_char_literal] = ACTIONS(406), + [anon_sym_true] = ACTIONS(408), + [anon_sym_false] = ACTIONS(408), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_self] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_crate] = ACTIONS(408), + [sym_metavariable] = ACTIONS(406), + [sym_raw_string_literal] = ACTIONS(406), + [sym_float_literal] = ACTIONS(406), [sym_block_comment] = ACTIONS(3), }, [52] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1268), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_let_condition] = STATE(2304), - [sym__condition] = STATE(2304), - [sym__conditions] = STATE(2197), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_attribute_item] = STATE(57), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_enum_variant_list_repeat1] = STATE(57), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22777,13 +22808,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(402), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), + [anon_sym_POUND] = ACTIONS(370), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -22808,52 +22839,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [53] = { - [sym_attribute_item] = STATE(621), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1197), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_enum_variant_list_repeat1] = STATE(621), + [sym_attribute_item] = STATE(626), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1267), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_enum_variant_list_repeat1] = STATE(626), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22915,159 +22946,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [54] = { - [ts_builtin_sym_end] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [anon_sym_SEMI] = ACTIONS(406), - [anon_sym_macro_rules_BANG] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_RBRACE] = ACTIONS(406), - [anon_sym_LBRACK] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_QMARK] = ACTIONS(406), - [anon_sym_u8] = ACTIONS(408), - [anon_sym_i8] = ACTIONS(408), - [anon_sym_u16] = ACTIONS(408), - [anon_sym_i16] = ACTIONS(408), - [anon_sym_u32] = ACTIONS(408), - [anon_sym_i32] = ACTIONS(408), - [anon_sym_u64] = ACTIONS(408), - [anon_sym_i64] = ACTIONS(408), - [anon_sym_u128] = ACTIONS(408), - [anon_sym_i128] = ACTIONS(408), - [anon_sym_isize] = ACTIONS(408), - [anon_sym_usize] = ACTIONS(408), - [anon_sym_f32] = ACTIONS(408), - [anon_sym_f64] = ACTIONS(408), - [anon_sym_bool] = ACTIONS(408), - [anon_sym_str] = ACTIONS(408), - [anon_sym_char] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(408), - [anon_sym_as] = ACTIONS(408), - [anon_sym_async] = ACTIONS(408), - [anon_sym_break] = ACTIONS(408), - [anon_sym_const] = ACTIONS(408), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_default] = ACTIONS(408), - [anon_sym_enum] = ACTIONS(408), - [anon_sym_fn] = ACTIONS(408), - [anon_sym_for] = ACTIONS(408), - [anon_sym_if] = ACTIONS(408), - [anon_sym_impl] = ACTIONS(408), - [anon_sym_let] = ACTIONS(408), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(408), - [anon_sym_mod] = ACTIONS(408), - [anon_sym_pub] = ACTIONS(408), - [anon_sym_return] = ACTIONS(408), - [anon_sym_static] = ACTIONS(408), - [anon_sym_struct] = ACTIONS(408), - [anon_sym_trait] = ACTIONS(408), - [anon_sym_type] = ACTIONS(408), - [anon_sym_union] = ACTIONS(408), - [anon_sym_unsafe] = ACTIONS(408), - [anon_sym_use] = ACTIONS(408), - [anon_sym_while] = ACTIONS(408), - [anon_sym_POUND] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(408), - [anon_sym_EQ] = ACTIONS(408), - [anon_sym_extern] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(408), - [anon_sym_GT] = ACTIONS(408), - [anon_sym_COLON_COLON] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(406), - [anon_sym_DOT_DOT] = ACTIONS(408), - [anon_sym_DOT_DOT_EQ] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(408), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(408), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(406), - [anon_sym_GT_EQ] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(408), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(408), - [anon_sym_PERCENT] = ACTIONS(408), - [anon_sym_PLUS_EQ] = ACTIONS(406), - [anon_sym_DASH_EQ] = ACTIONS(406), - [anon_sym_STAR_EQ] = ACTIONS(406), - [anon_sym_SLASH_EQ] = ACTIONS(406), - [anon_sym_PERCENT_EQ] = ACTIONS(406), - [anon_sym_AMP_EQ] = ACTIONS(406), - [anon_sym_PIPE_EQ] = ACTIONS(406), - [anon_sym_CARET_EQ] = ACTIONS(406), - [anon_sym_LT_LT_EQ] = ACTIONS(406), - [anon_sym_GT_GT_EQ] = ACTIONS(406), - [anon_sym_yield] = ACTIONS(408), - [anon_sym_else] = ACTIONS(408), - [anon_sym_move] = ACTIONS(408), - [anon_sym_DOT] = ACTIONS(408), - [sym_integer_literal] = ACTIONS(406), - [aux_sym_string_literal_token1] = ACTIONS(406), - [sym_char_literal] = ACTIONS(406), - [anon_sym_true] = ACTIONS(408), - [anon_sym_false] = ACTIONS(408), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_crate] = ACTIONS(408), - [sym_metavariable] = ACTIONS(406), - [sym_raw_string_literal] = ACTIONS(406), - [sym_float_literal] = ACTIONS(406), - [sym_block_comment] = ACTIONS(3), - }, - [55] = { - [sym_attribute_item] = STATE(53), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1235), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_enum_variant_list_repeat1] = STATE(53), + [sym_attribute_item] = STATE(626), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1197), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_enum_variant_list_repeat1] = STATE(626), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23128,7 +23052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [56] = { + [55] = { [ts_builtin_sym_end] = ACTIONS(410), [sym_identifier] = ACTIONS(412), [anon_sym_SEMI] = ACTIONS(410), @@ -23235,114 +23159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(410), [sym_block_comment] = ACTIONS(3), }, - [57] = { - [sym_attribute_item] = STATE(621), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1289), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_enum_variant_list_repeat1] = STATE(621), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [58] = { + [56] = { [ts_builtin_sym_end] = ACTIONS(414), [sym_identifier] = ACTIONS(416), [anon_sym_SEMI] = ACTIONS(414), @@ -23449,53 +23266,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(414), [sym_block_comment] = ACTIONS(3), }, - [59] = { - [sym_attribute_item] = STATE(621), - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1193), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_enum_variant_list_repeat1] = STATE(621), + [57] = { + [sym_attribute_item] = STATE(626), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1258), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_enum_variant_list_repeat1] = STATE(626), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23556,161 +23373,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [60] = { - [ts_builtin_sym_end] = ACTIONS(418), - [sym_identifier] = ACTIONS(420), - [anon_sym_SEMI] = ACTIONS(418), - [anon_sym_macro_rules_BANG] = ACTIONS(418), - [anon_sym_LPAREN] = ACTIONS(418), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_RBRACE] = ACTIONS(418), - [anon_sym_LBRACK] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(422), - [anon_sym_STAR] = ACTIONS(420), - [anon_sym_QMARK] = ACTIONS(424), - [anon_sym_u8] = ACTIONS(420), - [anon_sym_i8] = ACTIONS(420), - [anon_sym_u16] = ACTIONS(420), - [anon_sym_i16] = ACTIONS(420), - [anon_sym_u32] = ACTIONS(420), - [anon_sym_i32] = ACTIONS(420), - [anon_sym_u64] = ACTIONS(420), - [anon_sym_i64] = ACTIONS(420), - [anon_sym_u128] = ACTIONS(420), - [anon_sym_i128] = ACTIONS(420), - [anon_sym_isize] = ACTIONS(420), - [anon_sym_usize] = ACTIONS(420), - [anon_sym_f32] = ACTIONS(420), - [anon_sym_f64] = ACTIONS(420), - [anon_sym_bool] = ACTIONS(420), - [anon_sym_str] = ACTIONS(420), - [anon_sym_char] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(420), - [anon_sym_as] = ACTIONS(422), - [anon_sym_async] = ACTIONS(420), - [anon_sym_break] = ACTIONS(420), - [anon_sym_const] = ACTIONS(420), - [anon_sym_continue] = ACTIONS(420), - [anon_sym_default] = ACTIONS(420), - [anon_sym_enum] = ACTIONS(420), - [anon_sym_fn] = ACTIONS(420), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(420), - [anon_sym_impl] = ACTIONS(420), - [anon_sym_let] = ACTIONS(420), - [anon_sym_loop] = ACTIONS(420), - [anon_sym_match] = ACTIONS(420), - [anon_sym_mod] = ACTIONS(420), - [anon_sym_pub] = ACTIONS(420), - [anon_sym_return] = ACTIONS(420), - [anon_sym_static] = ACTIONS(420), - [anon_sym_struct] = ACTIONS(420), - [anon_sym_trait] = ACTIONS(420), - [anon_sym_type] = ACTIONS(420), - [anon_sym_union] = ACTIONS(420), - [anon_sym_unsafe] = ACTIONS(420), - [anon_sym_use] = ACTIONS(420), - [anon_sym_while] = ACTIONS(420), - [anon_sym_POUND] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(422), - [anon_sym_extern] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(422), - [anon_sym_COLON_COLON] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(420), - [anon_sym_DOT_DOT_DOT] = ACTIONS(424), - [anon_sym_DOT_DOT] = ACTIONS(420), - [anon_sym_DOT_DOT_EQ] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_AMP_AMP] = ACTIONS(424), - [anon_sym_PIPE_PIPE] = ACTIONS(424), - [anon_sym_PIPE] = ACTIONS(420), - [anon_sym_CARET] = ACTIONS(422), - [anon_sym_EQ_EQ] = ACTIONS(424), - [anon_sym_BANG_EQ] = ACTIONS(424), - [anon_sym_LT_EQ] = ACTIONS(424), - [anon_sym_GT_EQ] = ACTIONS(424), - [anon_sym_LT_LT] = ACTIONS(422), - [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_SLASH] = ACTIONS(422), - [anon_sym_PERCENT] = ACTIONS(422), - [anon_sym_PLUS_EQ] = ACTIONS(424), - [anon_sym_DASH_EQ] = ACTIONS(424), - [anon_sym_STAR_EQ] = ACTIONS(424), - [anon_sym_SLASH_EQ] = ACTIONS(424), - [anon_sym_PERCENT_EQ] = ACTIONS(424), - [anon_sym_AMP_EQ] = ACTIONS(424), - [anon_sym_PIPE_EQ] = ACTIONS(424), - [anon_sym_CARET_EQ] = ACTIONS(424), - [anon_sym_LT_LT_EQ] = ACTIONS(424), - [anon_sym_GT_GT_EQ] = ACTIONS(424), - [anon_sym_yield] = ACTIONS(420), - [anon_sym_move] = ACTIONS(420), - [anon_sym_DOT] = ACTIONS(422), - [sym_integer_literal] = ACTIONS(418), - [aux_sym_string_literal_token1] = ACTIONS(418), - [sym_char_literal] = ACTIONS(418), - [anon_sym_true] = ACTIONS(420), - [anon_sym_false] = ACTIONS(420), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(420), - [sym_super] = ACTIONS(420), - [sym_crate] = ACTIONS(420), - [sym_metavariable] = ACTIONS(418), - [sym_raw_string_literal] = ACTIONS(418), - [sym_float_literal] = ACTIONS(418), - [sym_block_comment] = ACTIONS(3), - }, - [61] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1218), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_tuple_expression_repeat1] = STATE(65), + [58] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1253), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_tuple_expression_repeat1] = STATE(77), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(426), + [anon_sym_RPAREN] = ACTIONS(418), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -23768,7 +23479,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [62] = { + [59] = { + [ts_builtin_sym_end] = ACTIONS(420), + [sym_identifier] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(420), + [anon_sym_macro_rules_BANG] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(420), + [anon_sym_LBRACE] = ACTIONS(420), + [anon_sym_RBRACE] = ACTIONS(420), + [anon_sym_LBRACK] = ACTIONS(420), + [anon_sym_PLUS] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(422), + [anon_sym_QMARK] = ACTIONS(420), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_isize] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_f32] = ACTIONS(422), + [anon_sym_f64] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_str] = ACTIONS(422), + [anon_sym_char] = ACTIONS(422), + [anon_sym_SQUOTE] = ACTIONS(422), + [anon_sym_as] = ACTIONS(422), + [anon_sym_async] = ACTIONS(422), + [anon_sym_break] = ACTIONS(422), + [anon_sym_const] = ACTIONS(422), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_default] = ACTIONS(422), + [anon_sym_enum] = ACTIONS(422), + [anon_sym_fn] = ACTIONS(422), + [anon_sym_for] = ACTIONS(422), + [anon_sym_if] = ACTIONS(422), + [anon_sym_impl] = ACTIONS(422), + [anon_sym_let] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(422), + [anon_sym_match] = ACTIONS(422), + [anon_sym_mod] = ACTIONS(422), + [anon_sym_pub] = ACTIONS(422), + [anon_sym_return] = ACTIONS(422), + [anon_sym_static] = ACTIONS(422), + [anon_sym_struct] = ACTIONS(422), + [anon_sym_trait] = ACTIONS(422), + [anon_sym_type] = ACTIONS(422), + [anon_sym_union] = ACTIONS(422), + [anon_sym_unsafe] = ACTIONS(422), + [anon_sym_use] = ACTIONS(422), + [anon_sym_while] = ACTIONS(422), + [anon_sym_POUND] = ACTIONS(420), + [anon_sym_BANG] = ACTIONS(422), + [anon_sym_EQ] = ACTIONS(422), + [anon_sym_extern] = ACTIONS(422), + [anon_sym_LT] = ACTIONS(422), + [anon_sym_GT] = ACTIONS(422), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_AMP] = ACTIONS(422), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(422), + [anon_sym_DOT_DOT_EQ] = ACTIONS(420), + [anon_sym_DASH] = ACTIONS(422), + [anon_sym_AMP_AMP] = ACTIONS(420), + [anon_sym_PIPE_PIPE] = ACTIONS(420), + [anon_sym_PIPE] = ACTIONS(422), + [anon_sym_CARET] = ACTIONS(422), + [anon_sym_EQ_EQ] = ACTIONS(420), + [anon_sym_BANG_EQ] = ACTIONS(420), + [anon_sym_LT_EQ] = ACTIONS(420), + [anon_sym_GT_EQ] = ACTIONS(420), + [anon_sym_LT_LT] = ACTIONS(422), + [anon_sym_GT_GT] = ACTIONS(422), + [anon_sym_SLASH] = ACTIONS(422), + [anon_sym_PERCENT] = ACTIONS(422), + [anon_sym_PLUS_EQ] = ACTIONS(420), + [anon_sym_DASH_EQ] = ACTIONS(420), + [anon_sym_STAR_EQ] = ACTIONS(420), + [anon_sym_SLASH_EQ] = ACTIONS(420), + [anon_sym_PERCENT_EQ] = ACTIONS(420), + [anon_sym_AMP_EQ] = ACTIONS(420), + [anon_sym_PIPE_EQ] = ACTIONS(420), + [anon_sym_CARET_EQ] = ACTIONS(420), + [anon_sym_LT_LT_EQ] = ACTIONS(420), + [anon_sym_GT_GT_EQ] = ACTIONS(420), + [anon_sym_yield] = ACTIONS(422), + [anon_sym_move] = ACTIONS(422), + [anon_sym_DOT] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(420), + [aux_sym_string_literal_token1] = ACTIONS(420), + [sym_char_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(422), + [sym_super] = ACTIONS(422), + [sym_crate] = ACTIONS(422), + [sym_metavariable] = ACTIONS(420), + [sym_raw_string_literal] = ACTIONS(420), + [sym_float_literal] = ACTIONS(420), + [sym_block_comment] = ACTIONS(3), + }, + [60] = { + [ts_builtin_sym_end] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_macro_rules_BANG] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_RBRACE] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_STAR] = ACTIONS(426), + [anon_sym_QMARK] = ACTIONS(424), + [anon_sym_u8] = ACTIONS(426), + [anon_sym_i8] = ACTIONS(426), + [anon_sym_u16] = ACTIONS(426), + [anon_sym_i16] = ACTIONS(426), + [anon_sym_u32] = ACTIONS(426), + [anon_sym_i32] = ACTIONS(426), + [anon_sym_u64] = ACTIONS(426), + [anon_sym_i64] = ACTIONS(426), + [anon_sym_u128] = ACTIONS(426), + [anon_sym_i128] = ACTIONS(426), + [anon_sym_isize] = ACTIONS(426), + [anon_sym_usize] = ACTIONS(426), + [anon_sym_f32] = ACTIONS(426), + [anon_sym_f64] = ACTIONS(426), + [anon_sym_bool] = ACTIONS(426), + [anon_sym_str] = ACTIONS(426), + [anon_sym_char] = ACTIONS(426), + [anon_sym_SQUOTE] = ACTIONS(426), + [anon_sym_as] = ACTIONS(426), + [anon_sym_async] = ACTIONS(426), + [anon_sym_break] = ACTIONS(426), + [anon_sym_const] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(426), + [anon_sym_default] = ACTIONS(426), + [anon_sym_enum] = ACTIONS(426), + [anon_sym_fn] = ACTIONS(426), + [anon_sym_for] = ACTIONS(426), + [anon_sym_if] = ACTIONS(426), + [anon_sym_impl] = ACTIONS(426), + [anon_sym_let] = ACTIONS(426), + [anon_sym_loop] = ACTIONS(426), + [anon_sym_match] = ACTIONS(426), + [anon_sym_mod] = ACTIONS(426), + [anon_sym_pub] = ACTIONS(426), + [anon_sym_return] = ACTIONS(426), + [anon_sym_static] = ACTIONS(426), + [anon_sym_struct] = ACTIONS(426), + [anon_sym_trait] = ACTIONS(426), + [anon_sym_type] = ACTIONS(426), + [anon_sym_union] = ACTIONS(426), + [anon_sym_unsafe] = ACTIONS(426), + [anon_sym_use] = ACTIONS(426), + [anon_sym_while] = ACTIONS(426), + [anon_sym_POUND] = ACTIONS(424), + [anon_sym_BANG] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(426), + [anon_sym_extern] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(426), + [anon_sym_GT] = ACTIONS(426), + [anon_sym_COLON_COLON] = ACTIONS(424), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_DOT_DOT_DOT] = ACTIONS(424), + [anon_sym_DOT_DOT] = ACTIONS(426), + [anon_sym_DOT_DOT_EQ] = ACTIONS(424), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_AMP_AMP] = ACTIONS(424), + [anon_sym_PIPE_PIPE] = ACTIONS(424), + [anon_sym_PIPE] = ACTIONS(426), + [anon_sym_CARET] = ACTIONS(426), + [anon_sym_EQ_EQ] = ACTIONS(424), + [anon_sym_BANG_EQ] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(424), + [anon_sym_GT_EQ] = ACTIONS(424), + [anon_sym_LT_LT] = ACTIONS(426), + [anon_sym_GT_GT] = ACTIONS(426), + [anon_sym_SLASH] = ACTIONS(426), + [anon_sym_PERCENT] = ACTIONS(426), + [anon_sym_PLUS_EQ] = ACTIONS(424), + [anon_sym_DASH_EQ] = ACTIONS(424), + [anon_sym_STAR_EQ] = ACTIONS(424), + [anon_sym_SLASH_EQ] = ACTIONS(424), + [anon_sym_PERCENT_EQ] = ACTIONS(424), + [anon_sym_AMP_EQ] = ACTIONS(424), + [anon_sym_PIPE_EQ] = ACTIONS(424), + [anon_sym_CARET_EQ] = ACTIONS(424), + [anon_sym_LT_LT_EQ] = ACTIONS(424), + [anon_sym_GT_GT_EQ] = ACTIONS(424), + [anon_sym_yield] = ACTIONS(426), + [anon_sym_move] = ACTIONS(426), + [anon_sym_DOT] = ACTIONS(426), + [sym_integer_literal] = ACTIONS(424), + [aux_sym_string_literal_token1] = ACTIONS(424), + [sym_char_literal] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(424), + [sym_raw_string_literal] = ACTIONS(424), + [sym_float_literal] = ACTIONS(424), + [sym_block_comment] = ACTIONS(3), + }, + [61] = { [ts_builtin_sym_end] = ACTIONS(428), [sym_identifier] = ACTIONS(430), [anon_sym_SEMI] = ACTIONS(428), @@ -23874,7 +23797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(428), [sym_block_comment] = ACTIONS(3), }, - [63] = { + [62] = { [ts_builtin_sym_end] = ACTIONS(432), [sym_identifier] = ACTIONS(434), [anon_sym_SEMI] = ACTIONS(432), @@ -23980,161 +23903,585 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(432), [sym_block_comment] = ACTIONS(3), }, + [63] = { + [ts_builtin_sym_end] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), + [anon_sym_SEMI] = ACTIONS(436), + [anon_sym_macro_rules_BANG] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(436), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_RBRACE] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(436), + [anon_sym_PLUS] = ACTIONS(438), + [anon_sym_STAR] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(436), + [anon_sym_u8] = ACTIONS(438), + [anon_sym_i8] = ACTIONS(438), + [anon_sym_u16] = ACTIONS(438), + [anon_sym_i16] = ACTIONS(438), + [anon_sym_u32] = ACTIONS(438), + [anon_sym_i32] = ACTIONS(438), + [anon_sym_u64] = ACTIONS(438), + [anon_sym_i64] = ACTIONS(438), + [anon_sym_u128] = ACTIONS(438), + [anon_sym_i128] = ACTIONS(438), + [anon_sym_isize] = ACTIONS(438), + [anon_sym_usize] = ACTIONS(438), + [anon_sym_f32] = ACTIONS(438), + [anon_sym_f64] = ACTIONS(438), + [anon_sym_bool] = ACTIONS(438), + [anon_sym_str] = ACTIONS(438), + [anon_sym_char] = ACTIONS(438), + [anon_sym_SQUOTE] = ACTIONS(438), + [anon_sym_as] = ACTIONS(438), + [anon_sym_async] = ACTIONS(438), + [anon_sym_break] = ACTIONS(438), + [anon_sym_const] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_default] = ACTIONS(438), + [anon_sym_enum] = ACTIONS(438), + [anon_sym_fn] = ACTIONS(438), + [anon_sym_for] = ACTIONS(438), + [anon_sym_if] = ACTIONS(438), + [anon_sym_impl] = ACTIONS(438), + [anon_sym_let] = ACTIONS(438), + [anon_sym_loop] = ACTIONS(438), + [anon_sym_match] = ACTIONS(438), + [anon_sym_mod] = ACTIONS(438), + [anon_sym_pub] = ACTIONS(438), + [anon_sym_return] = ACTIONS(438), + [anon_sym_static] = ACTIONS(438), + [anon_sym_struct] = ACTIONS(438), + [anon_sym_trait] = ACTIONS(438), + [anon_sym_type] = ACTIONS(438), + [anon_sym_union] = ACTIONS(438), + [anon_sym_unsafe] = ACTIONS(438), + [anon_sym_use] = ACTIONS(438), + [anon_sym_while] = ACTIONS(438), + [anon_sym_POUND] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_EQ] = ACTIONS(438), + [anon_sym_extern] = ACTIONS(438), + [anon_sym_LT] = ACTIONS(438), + [anon_sym_GT] = ACTIONS(438), + [anon_sym_COLON_COLON] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(438), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [anon_sym_DOT_DOT] = ACTIONS(438), + [anon_sym_DOT_DOT_EQ] = ACTIONS(436), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_AMP_AMP] = ACTIONS(436), + [anon_sym_PIPE_PIPE] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(438), + [anon_sym_CARET] = ACTIONS(438), + [anon_sym_EQ_EQ] = ACTIONS(436), + [anon_sym_BANG_EQ] = ACTIONS(436), + [anon_sym_LT_EQ] = ACTIONS(436), + [anon_sym_GT_EQ] = ACTIONS(436), + [anon_sym_LT_LT] = ACTIONS(438), + [anon_sym_GT_GT] = ACTIONS(438), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PERCENT] = ACTIONS(438), + [anon_sym_PLUS_EQ] = ACTIONS(436), + [anon_sym_DASH_EQ] = ACTIONS(436), + [anon_sym_STAR_EQ] = ACTIONS(436), + [anon_sym_SLASH_EQ] = ACTIONS(436), + [anon_sym_PERCENT_EQ] = ACTIONS(436), + [anon_sym_AMP_EQ] = ACTIONS(436), + [anon_sym_PIPE_EQ] = ACTIONS(436), + [anon_sym_CARET_EQ] = ACTIONS(436), + [anon_sym_LT_LT_EQ] = ACTIONS(436), + [anon_sym_GT_GT_EQ] = ACTIONS(436), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_move] = ACTIONS(438), + [anon_sym_DOT] = ACTIONS(438), + [sym_integer_literal] = ACTIONS(436), + [aux_sym_string_literal_token1] = ACTIONS(436), + [sym_char_literal] = ACTIONS(436), + [anon_sym_true] = ACTIONS(438), + [anon_sym_false] = ACTIONS(438), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(438), + [sym_super] = ACTIONS(438), + [sym_crate] = ACTIONS(438), + [sym_metavariable] = ACTIONS(436), + [sym_raw_string_literal] = ACTIONS(436), + [sym_float_literal] = ACTIONS(436), + [sym_block_comment] = ACTIONS(3), + }, [64] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1199), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_tuple_expression_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [ts_builtin_sym_end] = ACTIONS(440), + [sym_identifier] = ACTIONS(442), + [anon_sym_SEMI] = ACTIONS(440), + [anon_sym_macro_rules_BANG] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_u8] = ACTIONS(442), + [anon_sym_i8] = ACTIONS(442), + [anon_sym_u16] = ACTIONS(442), + [anon_sym_i16] = ACTIONS(442), + [anon_sym_u32] = ACTIONS(442), + [anon_sym_i32] = ACTIONS(442), + [anon_sym_u64] = ACTIONS(442), + [anon_sym_i64] = ACTIONS(442), + [anon_sym_u128] = ACTIONS(442), + [anon_sym_i128] = ACTIONS(442), + [anon_sym_isize] = ACTIONS(442), + [anon_sym_usize] = ACTIONS(442), + [anon_sym_f32] = ACTIONS(442), + [anon_sym_f64] = ACTIONS(442), + [anon_sym_bool] = ACTIONS(442), + [anon_sym_str] = ACTIONS(442), + [anon_sym_char] = ACTIONS(442), + [anon_sym_SQUOTE] = ACTIONS(442), + [anon_sym_as] = ACTIONS(442), + [anon_sym_async] = ACTIONS(442), + [anon_sym_break] = ACTIONS(442), + [anon_sym_const] = ACTIONS(442), + [anon_sym_continue] = ACTIONS(442), + [anon_sym_default] = ACTIONS(442), + [anon_sym_enum] = ACTIONS(442), + [anon_sym_fn] = ACTIONS(442), + [anon_sym_for] = ACTIONS(442), + [anon_sym_if] = ACTIONS(442), + [anon_sym_impl] = ACTIONS(442), + [anon_sym_let] = ACTIONS(442), + [anon_sym_loop] = ACTIONS(442), + [anon_sym_match] = ACTIONS(442), + [anon_sym_mod] = ACTIONS(442), + [anon_sym_pub] = ACTIONS(442), + [anon_sym_return] = ACTIONS(442), + [anon_sym_static] = ACTIONS(442), + [anon_sym_struct] = ACTIONS(442), + [anon_sym_trait] = ACTIONS(442), + [anon_sym_type] = ACTIONS(442), + [anon_sym_union] = ACTIONS(442), + [anon_sym_unsafe] = ACTIONS(442), + [anon_sym_use] = ACTIONS(442), + [anon_sym_while] = ACTIONS(442), + [anon_sym_POUND] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_extern] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_COLON_COLON] = ACTIONS(440), + [anon_sym_AMP] = ACTIONS(442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_DOT_DOT] = ACTIONS(442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_AMP_AMP] = ACTIONS(440), + [anon_sym_PIPE_PIPE] = ACTIONS(440), + [anon_sym_PIPE] = ACTIONS(442), + [anon_sym_CARET] = ACTIONS(442), + [anon_sym_EQ_EQ] = ACTIONS(440), + [anon_sym_BANG_EQ] = ACTIONS(440), + [anon_sym_LT_EQ] = ACTIONS(440), + [anon_sym_GT_EQ] = ACTIONS(440), + [anon_sym_LT_LT] = ACTIONS(442), + [anon_sym_GT_GT] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(442), + [anon_sym_PERCENT] = ACTIONS(442), + [anon_sym_PLUS_EQ] = ACTIONS(440), + [anon_sym_DASH_EQ] = ACTIONS(440), + [anon_sym_STAR_EQ] = ACTIONS(440), + [anon_sym_SLASH_EQ] = ACTIONS(440), + [anon_sym_PERCENT_EQ] = ACTIONS(440), + [anon_sym_AMP_EQ] = ACTIONS(440), + [anon_sym_PIPE_EQ] = ACTIONS(440), + [anon_sym_CARET_EQ] = ACTIONS(440), + [anon_sym_LT_LT_EQ] = ACTIONS(440), + [anon_sym_GT_GT_EQ] = ACTIONS(440), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_move] = ACTIONS(442), + [anon_sym_DOT] = ACTIONS(442), + [sym_integer_literal] = ACTIONS(440), + [aux_sym_string_literal_token1] = ACTIONS(440), + [sym_char_literal] = ACTIONS(440), + [anon_sym_true] = ACTIONS(442), + [anon_sym_false] = ACTIONS(442), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(442), + [sym_super] = ACTIONS(442), + [sym_crate] = ACTIONS(442), + [sym_metavariable] = ACTIONS(440), + [sym_raw_string_literal] = ACTIONS(440), + [sym_float_literal] = ACTIONS(440), [sym_block_comment] = ACTIONS(3), }, [65] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1199), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_tuple_expression_repeat1] = STATE(86), + [ts_builtin_sym_end] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [anon_sym_SEMI] = ACTIONS(444), + [anon_sym_macro_rules_BANG] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_RBRACE] = ACTIONS(444), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_PLUS] = ACTIONS(446), + [anon_sym_STAR] = ACTIONS(446), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_u8] = ACTIONS(446), + [anon_sym_i8] = ACTIONS(446), + [anon_sym_u16] = ACTIONS(446), + [anon_sym_i16] = ACTIONS(446), + [anon_sym_u32] = ACTIONS(446), + [anon_sym_i32] = ACTIONS(446), + [anon_sym_u64] = ACTIONS(446), + [anon_sym_i64] = ACTIONS(446), + [anon_sym_u128] = ACTIONS(446), + [anon_sym_i128] = ACTIONS(446), + [anon_sym_isize] = ACTIONS(446), + [anon_sym_usize] = ACTIONS(446), + [anon_sym_f32] = ACTIONS(446), + [anon_sym_f64] = ACTIONS(446), + [anon_sym_bool] = ACTIONS(446), + [anon_sym_str] = ACTIONS(446), + [anon_sym_char] = ACTIONS(446), + [anon_sym_SQUOTE] = ACTIONS(446), + [anon_sym_as] = ACTIONS(446), + [anon_sym_async] = ACTIONS(446), + [anon_sym_break] = ACTIONS(446), + [anon_sym_const] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(446), + [anon_sym_default] = ACTIONS(446), + [anon_sym_enum] = ACTIONS(446), + [anon_sym_fn] = ACTIONS(446), + [anon_sym_for] = ACTIONS(446), + [anon_sym_if] = ACTIONS(446), + [anon_sym_impl] = ACTIONS(446), + [anon_sym_let] = ACTIONS(446), + [anon_sym_loop] = ACTIONS(446), + [anon_sym_match] = ACTIONS(446), + [anon_sym_mod] = ACTIONS(446), + [anon_sym_pub] = ACTIONS(446), + [anon_sym_return] = ACTIONS(446), + [anon_sym_static] = ACTIONS(446), + [anon_sym_struct] = ACTIONS(446), + [anon_sym_trait] = ACTIONS(446), + [anon_sym_type] = ACTIONS(446), + [anon_sym_union] = ACTIONS(446), + [anon_sym_unsafe] = ACTIONS(446), + [anon_sym_use] = ACTIONS(446), + [anon_sym_while] = ACTIONS(446), + [anon_sym_POUND] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_EQ] = ACTIONS(446), + [anon_sym_extern] = ACTIONS(446), + [anon_sym_LT] = ACTIONS(446), + [anon_sym_GT] = ACTIONS(446), + [anon_sym_COLON_COLON] = ACTIONS(444), + [anon_sym_AMP] = ACTIONS(446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_DOT_DOT] = ACTIONS(446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(446), + [anon_sym_AMP_AMP] = ACTIONS(444), + [anon_sym_PIPE_PIPE] = ACTIONS(444), + [anon_sym_PIPE] = ACTIONS(446), + [anon_sym_CARET] = ACTIONS(446), + [anon_sym_EQ_EQ] = ACTIONS(444), + [anon_sym_BANG_EQ] = ACTIONS(444), + [anon_sym_LT_EQ] = ACTIONS(444), + [anon_sym_GT_EQ] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_GT_GT] = ACTIONS(446), + [anon_sym_SLASH] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(444), + [anon_sym_DASH_EQ] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(444), + [anon_sym_SLASH_EQ] = ACTIONS(444), + [anon_sym_PERCENT_EQ] = ACTIONS(444), + [anon_sym_AMP_EQ] = ACTIONS(444), + [anon_sym_PIPE_EQ] = ACTIONS(444), + [anon_sym_CARET_EQ] = ACTIONS(444), + [anon_sym_LT_LT_EQ] = ACTIONS(444), + [anon_sym_GT_GT_EQ] = ACTIONS(444), + [anon_sym_yield] = ACTIONS(446), + [anon_sym_move] = ACTIONS(446), + [anon_sym_DOT] = ACTIONS(446), + [sym_integer_literal] = ACTIONS(444), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(444), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(446), + [sym_super] = ACTIONS(446), + [sym_crate] = ACTIONS(446), + [sym_metavariable] = ACTIONS(444), + [sym_raw_string_literal] = ACTIONS(444), + [sym_float_literal] = ACTIONS(444), + [sym_block_comment] = ACTIONS(3), + }, + [66] = { + [ts_builtin_sym_end] = ACTIONS(448), + [sym_identifier] = ACTIONS(450), + [anon_sym_SEMI] = ACTIONS(448), + [anon_sym_macro_rules_BANG] = ACTIONS(448), + [anon_sym_LPAREN] = ACTIONS(448), + [anon_sym_LBRACE] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_STAR] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(448), + [anon_sym_u8] = ACTIONS(450), + [anon_sym_i8] = ACTIONS(450), + [anon_sym_u16] = ACTIONS(450), + [anon_sym_i16] = ACTIONS(450), + [anon_sym_u32] = ACTIONS(450), + [anon_sym_i32] = ACTIONS(450), + [anon_sym_u64] = ACTIONS(450), + [anon_sym_i64] = ACTIONS(450), + [anon_sym_u128] = ACTIONS(450), + [anon_sym_i128] = ACTIONS(450), + [anon_sym_isize] = ACTIONS(450), + [anon_sym_usize] = ACTIONS(450), + [anon_sym_f32] = ACTIONS(450), + [anon_sym_f64] = ACTIONS(450), + [anon_sym_bool] = ACTIONS(450), + [anon_sym_str] = ACTIONS(450), + [anon_sym_char] = ACTIONS(450), + [anon_sym_SQUOTE] = ACTIONS(450), + [anon_sym_as] = ACTIONS(450), + [anon_sym_async] = ACTIONS(450), + [anon_sym_break] = ACTIONS(450), + [anon_sym_const] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_default] = ACTIONS(450), + [anon_sym_enum] = ACTIONS(450), + [anon_sym_fn] = ACTIONS(450), + [anon_sym_for] = ACTIONS(450), + [anon_sym_if] = ACTIONS(450), + [anon_sym_impl] = ACTIONS(450), + [anon_sym_let] = ACTIONS(450), + [anon_sym_loop] = ACTIONS(450), + [anon_sym_match] = ACTIONS(450), + [anon_sym_mod] = ACTIONS(450), + [anon_sym_pub] = ACTIONS(450), + [anon_sym_return] = ACTIONS(450), + [anon_sym_static] = ACTIONS(450), + [anon_sym_struct] = ACTIONS(450), + [anon_sym_trait] = ACTIONS(450), + [anon_sym_type] = ACTIONS(450), + [anon_sym_union] = ACTIONS(450), + [anon_sym_unsafe] = ACTIONS(450), + [anon_sym_use] = ACTIONS(450), + [anon_sym_while] = ACTIONS(450), + [anon_sym_POUND] = ACTIONS(448), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_EQ] = ACTIONS(450), + [anon_sym_extern] = ACTIONS(450), + [anon_sym_LT] = ACTIONS(450), + [anon_sym_GT] = ACTIONS(450), + [anon_sym_COLON_COLON] = ACTIONS(448), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(450), + [anon_sym_DOT_DOT_EQ] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(448), + [anon_sym_PIPE] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_EQ_EQ] = ACTIONS(448), + [anon_sym_BANG_EQ] = ACTIONS(448), + [anon_sym_LT_EQ] = ACTIONS(448), + [anon_sym_GT_EQ] = ACTIONS(448), + [anon_sym_LT_LT] = ACTIONS(450), + [anon_sym_GT_GT] = ACTIONS(450), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_PERCENT] = ACTIONS(450), + [anon_sym_PLUS_EQ] = ACTIONS(448), + [anon_sym_DASH_EQ] = ACTIONS(448), + [anon_sym_STAR_EQ] = ACTIONS(448), + [anon_sym_SLASH_EQ] = ACTIONS(448), + [anon_sym_PERCENT_EQ] = ACTIONS(448), + [anon_sym_AMP_EQ] = ACTIONS(448), + [anon_sym_PIPE_EQ] = ACTIONS(448), + [anon_sym_CARET_EQ] = ACTIONS(448), + [anon_sym_LT_LT_EQ] = ACTIONS(448), + [anon_sym_GT_GT_EQ] = ACTIONS(448), + [anon_sym_yield] = ACTIONS(450), + [anon_sym_move] = ACTIONS(450), + [anon_sym_DOT] = ACTIONS(450), + [sym_integer_literal] = ACTIONS(448), + [aux_sym_string_literal_token1] = ACTIONS(448), + [sym_char_literal] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(450), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(450), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(448), + [sym_raw_string_literal] = ACTIONS(448), + [sym_float_literal] = ACTIONS(448), + [sym_block_comment] = ACTIONS(3), + }, + [67] = { + [ts_builtin_sym_end] = ACTIONS(452), + [sym_identifier] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_macro_rules_BANG] = ACTIONS(452), + [anon_sym_LPAREN] = ACTIONS(452), + [anon_sym_LBRACE] = ACTIONS(452), + [anon_sym_RBRACE] = ACTIONS(452), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_PLUS] = ACTIONS(454), + [anon_sym_STAR] = ACTIONS(454), + [anon_sym_QMARK] = ACTIONS(452), + [anon_sym_u8] = ACTIONS(454), + [anon_sym_i8] = ACTIONS(454), + [anon_sym_u16] = ACTIONS(454), + [anon_sym_i16] = ACTIONS(454), + [anon_sym_u32] = ACTIONS(454), + [anon_sym_i32] = ACTIONS(454), + [anon_sym_u64] = ACTIONS(454), + [anon_sym_i64] = ACTIONS(454), + [anon_sym_u128] = ACTIONS(454), + [anon_sym_i128] = ACTIONS(454), + [anon_sym_isize] = ACTIONS(454), + [anon_sym_usize] = ACTIONS(454), + [anon_sym_f32] = ACTIONS(454), + [anon_sym_f64] = ACTIONS(454), + [anon_sym_bool] = ACTIONS(454), + [anon_sym_str] = ACTIONS(454), + [anon_sym_char] = ACTIONS(454), + [anon_sym_SQUOTE] = ACTIONS(454), + [anon_sym_as] = ACTIONS(454), + [anon_sym_async] = ACTIONS(454), + [anon_sym_break] = ACTIONS(454), + [anon_sym_const] = ACTIONS(454), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_default] = ACTIONS(454), + [anon_sym_enum] = ACTIONS(454), + [anon_sym_fn] = ACTIONS(454), + [anon_sym_for] = ACTIONS(454), + [anon_sym_if] = ACTIONS(454), + [anon_sym_impl] = ACTIONS(454), + [anon_sym_let] = ACTIONS(454), + [anon_sym_loop] = ACTIONS(454), + [anon_sym_match] = ACTIONS(454), + [anon_sym_mod] = ACTIONS(454), + [anon_sym_pub] = ACTIONS(454), + [anon_sym_return] = ACTIONS(454), + [anon_sym_static] = ACTIONS(454), + [anon_sym_struct] = ACTIONS(454), + [anon_sym_trait] = ACTIONS(454), + [anon_sym_type] = ACTIONS(454), + [anon_sym_union] = ACTIONS(454), + [anon_sym_unsafe] = ACTIONS(454), + [anon_sym_use] = ACTIONS(454), + [anon_sym_while] = ACTIONS(454), + [anon_sym_POUND] = ACTIONS(452), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_EQ] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(454), + [anon_sym_LT] = ACTIONS(454), + [anon_sym_GT] = ACTIONS(454), + [anon_sym_COLON_COLON] = ACTIONS(452), + [anon_sym_AMP] = ACTIONS(454), + [anon_sym_DOT_DOT_DOT] = ACTIONS(452), + [anon_sym_DOT_DOT] = ACTIONS(454), + [anon_sym_DOT_DOT_EQ] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(454), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE_PIPE] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(454), + [anon_sym_EQ_EQ] = ACTIONS(452), + [anon_sym_BANG_EQ] = ACTIONS(452), + [anon_sym_LT_EQ] = ACTIONS(452), + [anon_sym_GT_EQ] = ACTIONS(452), + [anon_sym_LT_LT] = ACTIONS(454), + [anon_sym_GT_GT] = ACTIONS(454), + [anon_sym_SLASH] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(454), + [anon_sym_PLUS_EQ] = ACTIONS(452), + [anon_sym_DASH_EQ] = ACTIONS(452), + [anon_sym_STAR_EQ] = ACTIONS(452), + [anon_sym_SLASH_EQ] = ACTIONS(452), + [anon_sym_PERCENT_EQ] = ACTIONS(452), + [anon_sym_AMP_EQ] = ACTIONS(452), + [anon_sym_PIPE_EQ] = ACTIONS(452), + [anon_sym_CARET_EQ] = ACTIONS(452), + [anon_sym_LT_LT_EQ] = ACTIONS(452), + [anon_sym_GT_GT_EQ] = ACTIONS(452), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_move] = ACTIONS(454), + [anon_sym_DOT] = ACTIONS(454), + [sym_integer_literal] = ACTIONS(452), + [aux_sym_string_literal_token1] = ACTIONS(452), + [sym_char_literal] = ACTIONS(452), + [anon_sym_true] = ACTIONS(454), + [anon_sym_false] = ACTIONS(454), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(454), + [sym_super] = ACTIONS(454), + [sym_crate] = ACTIONS(454), + [sym_metavariable] = ACTIONS(452), + [sym_raw_string_literal] = ACTIONS(452), + [sym_float_literal] = ACTIONS(452), + [sym_block_comment] = ACTIONS(3), + }, + [68] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1239), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_tuple_expression_repeat1] = STATE(77), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(436), + [anon_sym_RPAREN] = ACTIONS(456), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -24192,537 +24539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [66] = { - [ts_builtin_sym_end] = ACTIONS(438), - [sym_identifier] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_macro_rules_BANG] = ACTIONS(438), - [anon_sym_LPAREN] = ACTIONS(424), - [anon_sym_LBRACE] = ACTIONS(438), - [anon_sym_RBRACE] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(422), - [anon_sym_STAR] = ACTIONS(422), - [anon_sym_QMARK] = ACTIONS(424), - [anon_sym_u8] = ACTIONS(440), - [anon_sym_i8] = ACTIONS(440), - [anon_sym_u16] = ACTIONS(440), - [anon_sym_i16] = ACTIONS(440), - [anon_sym_u32] = ACTIONS(440), - [anon_sym_i32] = ACTIONS(440), - [anon_sym_u64] = ACTIONS(440), - [anon_sym_i64] = ACTIONS(440), - [anon_sym_u128] = ACTIONS(440), - [anon_sym_i128] = ACTIONS(440), - [anon_sym_isize] = ACTIONS(440), - [anon_sym_usize] = ACTIONS(440), - [anon_sym_f32] = ACTIONS(440), - [anon_sym_f64] = ACTIONS(440), - [anon_sym_bool] = ACTIONS(440), - [anon_sym_str] = ACTIONS(440), - [anon_sym_char] = ACTIONS(440), - [anon_sym_SQUOTE] = ACTIONS(440), - [anon_sym_as] = ACTIONS(422), - [anon_sym_async] = ACTIONS(440), - [anon_sym_break] = ACTIONS(440), - [anon_sym_const] = ACTIONS(440), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_default] = ACTIONS(440), - [anon_sym_enum] = ACTIONS(440), - [anon_sym_fn] = ACTIONS(440), - [anon_sym_for] = ACTIONS(440), - [anon_sym_if] = ACTIONS(440), - [anon_sym_impl] = ACTIONS(440), - [anon_sym_let] = ACTIONS(440), - [anon_sym_loop] = ACTIONS(440), - [anon_sym_match] = ACTIONS(440), - [anon_sym_mod] = ACTIONS(440), - [anon_sym_pub] = ACTIONS(440), - [anon_sym_return] = ACTIONS(440), - [anon_sym_static] = ACTIONS(440), - [anon_sym_struct] = ACTIONS(440), - [anon_sym_trait] = ACTIONS(440), - [anon_sym_type] = ACTIONS(440), - [anon_sym_union] = ACTIONS(440), - [anon_sym_unsafe] = ACTIONS(440), - [anon_sym_use] = ACTIONS(440), - [anon_sym_while] = ACTIONS(440), - [anon_sym_POUND] = ACTIONS(438), - [anon_sym_BANG] = ACTIONS(440), - [anon_sym_EQ] = ACTIONS(422), - [anon_sym_extern] = ACTIONS(440), - [anon_sym_LT] = ACTIONS(422), - [anon_sym_GT] = ACTIONS(422), - [anon_sym_COLON_COLON] = ACTIONS(438), - [anon_sym_AMP] = ACTIONS(422), - [anon_sym_DOT_DOT_DOT] = ACTIONS(424), - [anon_sym_DOT_DOT] = ACTIONS(422), - [anon_sym_DOT_DOT_EQ] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(424), - [anon_sym_PIPE_PIPE] = ACTIONS(424), - [anon_sym_PIPE] = ACTIONS(422), - [anon_sym_CARET] = ACTIONS(422), - [anon_sym_EQ_EQ] = ACTIONS(424), - [anon_sym_BANG_EQ] = ACTIONS(424), - [anon_sym_LT_EQ] = ACTIONS(424), - [anon_sym_GT_EQ] = ACTIONS(424), - [anon_sym_LT_LT] = ACTIONS(422), - [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_SLASH] = ACTIONS(422), - [anon_sym_PERCENT] = ACTIONS(422), - [anon_sym_PLUS_EQ] = ACTIONS(424), - [anon_sym_DASH_EQ] = ACTIONS(424), - [anon_sym_STAR_EQ] = ACTIONS(424), - [anon_sym_SLASH_EQ] = ACTIONS(424), - [anon_sym_PERCENT_EQ] = ACTIONS(424), - [anon_sym_AMP_EQ] = ACTIONS(424), - [anon_sym_PIPE_EQ] = ACTIONS(424), - [anon_sym_CARET_EQ] = ACTIONS(424), - [anon_sym_LT_LT_EQ] = ACTIONS(424), - [anon_sym_GT_GT_EQ] = ACTIONS(424), - [anon_sym_yield] = ACTIONS(440), - [anon_sym_move] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(422), - [sym_integer_literal] = ACTIONS(438), - [aux_sym_string_literal_token1] = ACTIONS(438), - [sym_char_literal] = ACTIONS(438), - [anon_sym_true] = ACTIONS(440), - [anon_sym_false] = ACTIONS(440), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(440), - [sym_super] = ACTIONS(440), - [sym_crate] = ACTIONS(440), - [sym_metavariable] = ACTIONS(438), - [sym_raw_string_literal] = ACTIONS(438), - [sym_float_literal] = ACTIONS(438), - [sym_block_comment] = ACTIONS(3), - }, - [67] = { - [ts_builtin_sym_end] = ACTIONS(442), - [sym_identifier] = ACTIONS(444), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_macro_rules_BANG] = ACTIONS(442), - [anon_sym_LPAREN] = ACTIONS(442), - [anon_sym_LBRACE] = ACTIONS(442), - [anon_sym_RBRACE] = ACTIONS(442), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_STAR] = ACTIONS(444), - [anon_sym_QMARK] = ACTIONS(442), - [anon_sym_u8] = ACTIONS(444), - [anon_sym_i8] = ACTIONS(444), - [anon_sym_u16] = ACTIONS(444), - [anon_sym_i16] = ACTIONS(444), - [anon_sym_u32] = ACTIONS(444), - [anon_sym_i32] = ACTIONS(444), - [anon_sym_u64] = ACTIONS(444), - [anon_sym_i64] = ACTIONS(444), - [anon_sym_u128] = ACTIONS(444), - [anon_sym_i128] = ACTIONS(444), - [anon_sym_isize] = ACTIONS(444), - [anon_sym_usize] = ACTIONS(444), - [anon_sym_f32] = ACTIONS(444), - [anon_sym_f64] = ACTIONS(444), - [anon_sym_bool] = ACTIONS(444), - [anon_sym_str] = ACTIONS(444), - [anon_sym_char] = ACTIONS(444), - [anon_sym_SQUOTE] = ACTIONS(444), - [anon_sym_as] = ACTIONS(444), - [anon_sym_async] = ACTIONS(444), - [anon_sym_break] = ACTIONS(444), - [anon_sym_const] = ACTIONS(444), - [anon_sym_continue] = ACTIONS(444), - [anon_sym_default] = ACTIONS(444), - [anon_sym_enum] = ACTIONS(444), - [anon_sym_fn] = ACTIONS(444), - [anon_sym_for] = ACTIONS(444), - [anon_sym_if] = ACTIONS(444), - [anon_sym_impl] = ACTIONS(444), - [anon_sym_let] = ACTIONS(444), - [anon_sym_loop] = ACTIONS(444), - [anon_sym_match] = ACTIONS(444), - [anon_sym_mod] = ACTIONS(444), - [anon_sym_pub] = ACTIONS(444), - [anon_sym_return] = ACTIONS(444), - [anon_sym_static] = ACTIONS(444), - [anon_sym_struct] = ACTIONS(444), - [anon_sym_trait] = ACTIONS(444), - [anon_sym_type] = ACTIONS(444), - [anon_sym_union] = ACTIONS(444), - [anon_sym_unsafe] = ACTIONS(444), - [anon_sym_use] = ACTIONS(444), - [anon_sym_while] = ACTIONS(444), - [anon_sym_POUND] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_EQ] = ACTIONS(444), - [anon_sym_extern] = ACTIONS(444), - [anon_sym_LT] = ACTIONS(444), - [anon_sym_GT] = ACTIONS(444), - [anon_sym_COLON_COLON] = ACTIONS(442), - [anon_sym_AMP] = ACTIONS(444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(442), - [anon_sym_DOT_DOT] = ACTIONS(444), - [anon_sym_DOT_DOT_EQ] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_AMP_AMP] = ACTIONS(442), - [anon_sym_PIPE_PIPE] = ACTIONS(442), - [anon_sym_PIPE] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_EQ_EQ] = ACTIONS(442), - [anon_sym_BANG_EQ] = ACTIONS(442), - [anon_sym_LT_EQ] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(442), - [anon_sym_LT_LT] = ACTIONS(444), - [anon_sym_GT_GT] = ACTIONS(444), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_PERCENT] = ACTIONS(444), - [anon_sym_PLUS_EQ] = ACTIONS(442), - [anon_sym_DASH_EQ] = ACTIONS(442), - [anon_sym_STAR_EQ] = ACTIONS(442), - [anon_sym_SLASH_EQ] = ACTIONS(442), - [anon_sym_PERCENT_EQ] = ACTIONS(442), - [anon_sym_AMP_EQ] = ACTIONS(442), - [anon_sym_PIPE_EQ] = ACTIONS(442), - [anon_sym_CARET_EQ] = ACTIONS(442), - [anon_sym_LT_LT_EQ] = ACTIONS(442), - [anon_sym_GT_GT_EQ] = ACTIONS(442), - [anon_sym_yield] = ACTIONS(444), - [anon_sym_move] = ACTIONS(444), - [anon_sym_DOT] = ACTIONS(444), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(442), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(444), - [anon_sym_false] = ACTIONS(444), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(444), - [sym_super] = ACTIONS(444), - [sym_crate] = ACTIONS(444), - [sym_metavariable] = ACTIONS(442), - [sym_raw_string_literal] = ACTIONS(442), - [sym_float_literal] = ACTIONS(442), - [sym_block_comment] = ACTIONS(3), - }, - [68] = { - [ts_builtin_sym_end] = ACTIONS(446), - [sym_identifier] = ACTIONS(448), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym_macro_rules_BANG] = ACTIONS(446), - [anon_sym_LPAREN] = ACTIONS(446), - [anon_sym_LBRACE] = ACTIONS(446), - [anon_sym_RBRACE] = ACTIONS(446), - [anon_sym_LBRACK] = ACTIONS(446), - [anon_sym_PLUS] = ACTIONS(448), - [anon_sym_STAR] = ACTIONS(448), - [anon_sym_QMARK] = ACTIONS(446), - [anon_sym_u8] = ACTIONS(448), - [anon_sym_i8] = ACTIONS(448), - [anon_sym_u16] = ACTIONS(448), - [anon_sym_i16] = ACTIONS(448), - [anon_sym_u32] = ACTIONS(448), - [anon_sym_i32] = ACTIONS(448), - [anon_sym_u64] = ACTIONS(448), - [anon_sym_i64] = ACTIONS(448), - [anon_sym_u128] = ACTIONS(448), - [anon_sym_i128] = ACTIONS(448), - [anon_sym_isize] = ACTIONS(448), - [anon_sym_usize] = ACTIONS(448), - [anon_sym_f32] = ACTIONS(448), - [anon_sym_f64] = ACTIONS(448), - [anon_sym_bool] = ACTIONS(448), - [anon_sym_str] = ACTIONS(448), - [anon_sym_char] = ACTIONS(448), - [anon_sym_SQUOTE] = ACTIONS(448), - [anon_sym_as] = ACTIONS(448), - [anon_sym_async] = ACTIONS(448), - [anon_sym_break] = ACTIONS(448), - [anon_sym_const] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(448), - [anon_sym_default] = ACTIONS(448), - [anon_sym_enum] = ACTIONS(448), - [anon_sym_fn] = ACTIONS(448), - [anon_sym_for] = ACTIONS(448), - [anon_sym_if] = ACTIONS(448), - [anon_sym_impl] = ACTIONS(448), - [anon_sym_let] = ACTIONS(448), - [anon_sym_loop] = ACTIONS(448), - [anon_sym_match] = ACTIONS(448), - [anon_sym_mod] = ACTIONS(448), - [anon_sym_pub] = ACTIONS(448), - [anon_sym_return] = ACTIONS(448), - [anon_sym_static] = ACTIONS(448), - [anon_sym_struct] = ACTIONS(448), - [anon_sym_trait] = ACTIONS(448), - [anon_sym_type] = ACTIONS(448), - [anon_sym_union] = ACTIONS(448), - [anon_sym_unsafe] = ACTIONS(448), - [anon_sym_use] = ACTIONS(448), - [anon_sym_while] = ACTIONS(448), - [anon_sym_POUND] = ACTIONS(446), - [anon_sym_BANG] = ACTIONS(448), - [anon_sym_EQ] = ACTIONS(448), - [anon_sym_extern] = ACTIONS(448), - [anon_sym_LT] = ACTIONS(448), - [anon_sym_GT] = ACTIONS(448), - [anon_sym_COLON_COLON] = ACTIONS(446), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(446), - [anon_sym_DOT_DOT] = ACTIONS(448), - [anon_sym_DOT_DOT_EQ] = ACTIONS(446), - [anon_sym_DASH] = ACTIONS(448), - [anon_sym_AMP_AMP] = ACTIONS(446), - [anon_sym_PIPE_PIPE] = ACTIONS(446), - [anon_sym_PIPE] = ACTIONS(448), - [anon_sym_CARET] = ACTIONS(448), - [anon_sym_EQ_EQ] = ACTIONS(446), - [anon_sym_BANG_EQ] = ACTIONS(446), - [anon_sym_LT_EQ] = ACTIONS(446), - [anon_sym_GT_EQ] = ACTIONS(446), - [anon_sym_LT_LT] = ACTIONS(448), - [anon_sym_GT_GT] = ACTIONS(448), - [anon_sym_SLASH] = ACTIONS(448), - [anon_sym_PERCENT] = ACTIONS(448), - [anon_sym_PLUS_EQ] = ACTIONS(446), - [anon_sym_DASH_EQ] = ACTIONS(446), - [anon_sym_STAR_EQ] = ACTIONS(446), - [anon_sym_SLASH_EQ] = ACTIONS(446), - [anon_sym_PERCENT_EQ] = ACTIONS(446), - [anon_sym_AMP_EQ] = ACTIONS(446), - [anon_sym_PIPE_EQ] = ACTIONS(446), - [anon_sym_CARET_EQ] = ACTIONS(446), - [anon_sym_LT_LT_EQ] = ACTIONS(446), - [anon_sym_GT_GT_EQ] = ACTIONS(446), - [anon_sym_yield] = ACTIONS(448), - [anon_sym_move] = ACTIONS(448), - [anon_sym_DOT] = ACTIONS(448), - [sym_integer_literal] = ACTIONS(446), - [aux_sym_string_literal_token1] = ACTIONS(446), - [sym_char_literal] = ACTIONS(446), - [anon_sym_true] = ACTIONS(448), - [anon_sym_false] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(448), - [sym_crate] = ACTIONS(448), - [sym_metavariable] = ACTIONS(446), - [sym_raw_string_literal] = ACTIONS(446), - [sym_float_literal] = ACTIONS(446), - [sym_block_comment] = ACTIONS(3), - }, [69] = { - [ts_builtin_sym_end] = ACTIONS(450), - [sym_identifier] = ACTIONS(452), - [anon_sym_SEMI] = ACTIONS(450), - [anon_sym_macro_rules_BANG] = ACTIONS(450), - [anon_sym_LPAREN] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(450), - [anon_sym_RBRACE] = ACTIONS(450), - [anon_sym_LBRACK] = ACTIONS(450), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_STAR] = ACTIONS(452), - [anon_sym_QMARK] = ACTIONS(450), - [anon_sym_u8] = ACTIONS(452), - [anon_sym_i8] = ACTIONS(452), - [anon_sym_u16] = ACTIONS(452), - [anon_sym_i16] = ACTIONS(452), - [anon_sym_u32] = ACTIONS(452), - [anon_sym_i32] = ACTIONS(452), - [anon_sym_u64] = ACTIONS(452), - [anon_sym_i64] = ACTIONS(452), - [anon_sym_u128] = ACTIONS(452), - [anon_sym_i128] = ACTIONS(452), - [anon_sym_isize] = ACTIONS(452), - [anon_sym_usize] = ACTIONS(452), - [anon_sym_f32] = ACTIONS(452), - [anon_sym_f64] = ACTIONS(452), - [anon_sym_bool] = ACTIONS(452), - [anon_sym_str] = ACTIONS(452), - [anon_sym_char] = ACTIONS(452), - [anon_sym_SQUOTE] = ACTIONS(452), - [anon_sym_as] = ACTIONS(452), - [anon_sym_async] = ACTIONS(452), - [anon_sym_break] = ACTIONS(452), - [anon_sym_const] = ACTIONS(452), - [anon_sym_continue] = ACTIONS(452), - [anon_sym_default] = ACTIONS(452), - [anon_sym_enum] = ACTIONS(452), - [anon_sym_fn] = ACTIONS(452), - [anon_sym_for] = ACTIONS(452), - [anon_sym_if] = ACTIONS(452), - [anon_sym_impl] = ACTIONS(452), - [anon_sym_let] = ACTIONS(452), - [anon_sym_loop] = ACTIONS(452), - [anon_sym_match] = ACTIONS(452), - [anon_sym_mod] = ACTIONS(452), - [anon_sym_pub] = ACTIONS(452), - [anon_sym_return] = ACTIONS(452), - [anon_sym_static] = ACTIONS(452), - [anon_sym_struct] = ACTIONS(452), - [anon_sym_trait] = ACTIONS(452), - [anon_sym_type] = ACTIONS(452), - [anon_sym_union] = ACTIONS(452), - [anon_sym_unsafe] = ACTIONS(452), - [anon_sym_use] = ACTIONS(452), - [anon_sym_while] = ACTIONS(452), - [anon_sym_POUND] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(452), - [anon_sym_EQ] = ACTIONS(452), - [anon_sym_extern] = ACTIONS(452), - [anon_sym_LT] = ACTIONS(452), - [anon_sym_GT] = ACTIONS(452), - [anon_sym_COLON_COLON] = ACTIONS(450), - [anon_sym_AMP] = ACTIONS(452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [anon_sym_DOT_DOT] = ACTIONS(452), - [anon_sym_DOT_DOT_EQ] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_AMP_AMP] = ACTIONS(450), - [anon_sym_PIPE_PIPE] = ACTIONS(450), - [anon_sym_PIPE] = ACTIONS(452), - [anon_sym_CARET] = ACTIONS(452), - [anon_sym_EQ_EQ] = ACTIONS(450), - [anon_sym_BANG_EQ] = ACTIONS(450), - [anon_sym_LT_EQ] = ACTIONS(450), - [anon_sym_GT_EQ] = ACTIONS(450), - [anon_sym_LT_LT] = ACTIONS(452), - [anon_sym_GT_GT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(452), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_PLUS_EQ] = ACTIONS(450), - [anon_sym_DASH_EQ] = ACTIONS(450), - [anon_sym_STAR_EQ] = ACTIONS(450), - [anon_sym_SLASH_EQ] = ACTIONS(450), - [anon_sym_PERCENT_EQ] = ACTIONS(450), - [anon_sym_AMP_EQ] = ACTIONS(450), - [anon_sym_PIPE_EQ] = ACTIONS(450), - [anon_sym_CARET_EQ] = ACTIONS(450), - [anon_sym_LT_LT_EQ] = ACTIONS(450), - [anon_sym_GT_GT_EQ] = ACTIONS(450), - [anon_sym_yield] = ACTIONS(452), - [anon_sym_move] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(452), - [sym_integer_literal] = ACTIONS(450), - [aux_sym_string_literal_token1] = ACTIONS(450), - [sym_char_literal] = ACTIONS(450), - [anon_sym_true] = ACTIONS(452), - [anon_sym_false] = ACTIONS(452), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(452), - [sym_super] = ACTIONS(452), - [sym_crate] = ACTIONS(452), - [sym_metavariable] = ACTIONS(450), - [sym_raw_string_literal] = ACTIONS(450), - [sym_float_literal] = ACTIONS(450), - [sym_block_comment] = ACTIONS(3), - }, - [70] = { - [ts_builtin_sym_end] = ACTIONS(454), - [sym_identifier] = ACTIONS(456), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_macro_rules_BANG] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_RBRACE] = ACTIONS(454), - [anon_sym_LBRACK] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_STAR] = ACTIONS(456), - [anon_sym_QMARK] = ACTIONS(454), - [anon_sym_u8] = ACTIONS(456), - [anon_sym_i8] = ACTIONS(456), - [anon_sym_u16] = ACTIONS(456), - [anon_sym_i16] = ACTIONS(456), - [anon_sym_u32] = ACTIONS(456), - [anon_sym_i32] = ACTIONS(456), - [anon_sym_u64] = ACTIONS(456), - [anon_sym_i64] = ACTIONS(456), - [anon_sym_u128] = ACTIONS(456), - [anon_sym_i128] = ACTIONS(456), - [anon_sym_isize] = ACTIONS(456), - [anon_sym_usize] = ACTIONS(456), - [anon_sym_f32] = ACTIONS(456), - [anon_sym_f64] = ACTIONS(456), - [anon_sym_bool] = ACTIONS(456), - [anon_sym_str] = ACTIONS(456), - [anon_sym_char] = ACTIONS(456), - [anon_sym_SQUOTE] = ACTIONS(456), - [anon_sym_as] = ACTIONS(456), - [anon_sym_async] = ACTIONS(456), - [anon_sym_break] = ACTIONS(456), - [anon_sym_const] = ACTIONS(456), - [anon_sym_continue] = ACTIONS(456), - [anon_sym_default] = ACTIONS(456), - [anon_sym_enum] = ACTIONS(456), - [anon_sym_fn] = ACTIONS(456), - [anon_sym_for] = ACTIONS(456), - [anon_sym_if] = ACTIONS(456), - [anon_sym_impl] = ACTIONS(456), - [anon_sym_let] = ACTIONS(456), - [anon_sym_loop] = ACTIONS(456), - [anon_sym_match] = ACTIONS(456), - [anon_sym_mod] = ACTIONS(456), - [anon_sym_pub] = ACTIONS(456), - [anon_sym_return] = ACTIONS(456), - [anon_sym_static] = ACTIONS(456), - [anon_sym_struct] = ACTIONS(456), - [anon_sym_trait] = ACTIONS(456), - [anon_sym_type] = ACTIONS(456), - [anon_sym_union] = ACTIONS(456), - [anon_sym_unsafe] = ACTIONS(456), - [anon_sym_use] = ACTIONS(456), - [anon_sym_while] = ACTIONS(456), - [anon_sym_POUND] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_EQ] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(456), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_GT] = ACTIONS(456), - [anon_sym_COLON_COLON] = ACTIONS(454), - [anon_sym_AMP] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(454), - [anon_sym_DOT_DOT] = ACTIONS(456), - [anon_sym_DOT_DOT_EQ] = ACTIONS(454), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_AMP_AMP] = ACTIONS(454), - [anon_sym_PIPE_PIPE] = ACTIONS(454), - [anon_sym_PIPE] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_EQ_EQ] = ACTIONS(454), - [anon_sym_BANG_EQ] = ACTIONS(454), - [anon_sym_LT_EQ] = ACTIONS(454), - [anon_sym_GT_EQ] = ACTIONS(454), - [anon_sym_LT_LT] = ACTIONS(456), - [anon_sym_GT_GT] = ACTIONS(456), - [anon_sym_SLASH] = ACTIONS(456), - [anon_sym_PERCENT] = ACTIONS(456), - [anon_sym_PLUS_EQ] = ACTIONS(454), - [anon_sym_DASH_EQ] = ACTIONS(454), - [anon_sym_STAR_EQ] = ACTIONS(454), - [anon_sym_SLASH_EQ] = ACTIONS(454), - [anon_sym_PERCENT_EQ] = ACTIONS(454), - [anon_sym_AMP_EQ] = ACTIONS(454), - [anon_sym_PIPE_EQ] = ACTIONS(454), - [anon_sym_CARET_EQ] = ACTIONS(454), - [anon_sym_LT_LT_EQ] = ACTIONS(454), - [anon_sym_GT_GT_EQ] = ACTIONS(454), - [anon_sym_yield] = ACTIONS(456), - [anon_sym_move] = ACTIONS(456), - [anon_sym_DOT] = ACTIONS(456), - [sym_integer_literal] = ACTIONS(454), - [aux_sym_string_literal_token1] = ACTIONS(454), - [sym_char_literal] = ACTIONS(454), - [anon_sym_true] = ACTIONS(456), - [anon_sym_false] = ACTIONS(456), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(456), - [sym_super] = ACTIONS(456), - [sym_crate] = ACTIONS(456), - [sym_metavariable] = ACTIONS(454), - [sym_raw_string_literal] = ACTIONS(454), - [sym_float_literal] = ACTIONS(454), - [sym_block_comment] = ACTIONS(3), - }, - [71] = { [ts_builtin_sym_end] = ACTIONS(458), [sym_identifier] = ACTIONS(460), [anon_sym_SEMI] = ACTIONS(458), @@ -24828,7 +24645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(458), [sym_block_comment] = ACTIONS(3), }, - [72] = { + [70] = { [ts_builtin_sym_end] = ACTIONS(462), [sym_identifier] = ACTIONS(464), [anon_sym_SEMI] = ACTIONS(462), @@ -24934,691 +24751,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(462), [sym_block_comment] = ACTIONS(3), }, - [73] = { - [ts_builtin_sym_end] = ACTIONS(466), - [sym_identifier] = ACTIONS(468), - [anon_sym_SEMI] = ACTIONS(466), - [anon_sym_macro_rules_BANG] = ACTIONS(466), - [anon_sym_LPAREN] = ACTIONS(466), - [anon_sym_LBRACE] = ACTIONS(466), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_PLUS] = ACTIONS(468), - [anon_sym_STAR] = ACTIONS(468), - [anon_sym_QMARK] = ACTIONS(466), - [anon_sym_u8] = ACTIONS(468), - [anon_sym_i8] = ACTIONS(468), - [anon_sym_u16] = ACTIONS(468), - [anon_sym_i16] = ACTIONS(468), - [anon_sym_u32] = ACTIONS(468), - [anon_sym_i32] = ACTIONS(468), - [anon_sym_u64] = ACTIONS(468), - [anon_sym_i64] = ACTIONS(468), - [anon_sym_u128] = ACTIONS(468), - [anon_sym_i128] = ACTIONS(468), - [anon_sym_isize] = ACTIONS(468), - [anon_sym_usize] = ACTIONS(468), - [anon_sym_f32] = ACTIONS(468), - [anon_sym_f64] = ACTIONS(468), - [anon_sym_bool] = ACTIONS(468), - [anon_sym_str] = ACTIONS(468), - [anon_sym_char] = ACTIONS(468), - [anon_sym_SQUOTE] = ACTIONS(468), - [anon_sym_as] = ACTIONS(468), - [anon_sym_async] = ACTIONS(468), - [anon_sym_break] = ACTIONS(468), - [anon_sym_const] = ACTIONS(468), - [anon_sym_continue] = ACTIONS(468), - [anon_sym_default] = ACTIONS(468), - [anon_sym_enum] = ACTIONS(468), - [anon_sym_fn] = ACTIONS(468), - [anon_sym_for] = ACTIONS(468), - [anon_sym_if] = ACTIONS(468), - [anon_sym_impl] = ACTIONS(468), - [anon_sym_let] = ACTIONS(468), - [anon_sym_loop] = ACTIONS(468), - [anon_sym_match] = ACTIONS(468), - [anon_sym_mod] = ACTIONS(468), - [anon_sym_pub] = ACTIONS(468), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(468), - [anon_sym_struct] = ACTIONS(468), - [anon_sym_trait] = ACTIONS(468), - [anon_sym_type] = ACTIONS(468), - [anon_sym_union] = ACTIONS(468), - [anon_sym_unsafe] = ACTIONS(468), - [anon_sym_use] = ACTIONS(468), - [anon_sym_while] = ACTIONS(468), - [anon_sym_POUND] = ACTIONS(466), - [anon_sym_BANG] = ACTIONS(468), - [anon_sym_EQ] = ACTIONS(468), - [anon_sym_extern] = ACTIONS(468), - [anon_sym_LT] = ACTIONS(468), - [anon_sym_GT] = ACTIONS(468), - [anon_sym_COLON_COLON] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(468), - [anon_sym_DOT_DOT_DOT] = ACTIONS(466), - [anon_sym_DOT_DOT] = ACTIONS(468), - [anon_sym_DOT_DOT_EQ] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(468), - [anon_sym_AMP_AMP] = ACTIONS(466), - [anon_sym_PIPE_PIPE] = ACTIONS(466), - [anon_sym_PIPE] = ACTIONS(468), - [anon_sym_CARET] = ACTIONS(468), - [anon_sym_EQ_EQ] = ACTIONS(466), - [anon_sym_BANG_EQ] = ACTIONS(466), - [anon_sym_LT_EQ] = ACTIONS(466), - [anon_sym_GT_EQ] = ACTIONS(466), - [anon_sym_LT_LT] = ACTIONS(468), - [anon_sym_GT_GT] = ACTIONS(468), - [anon_sym_SLASH] = ACTIONS(468), - [anon_sym_PERCENT] = ACTIONS(468), - [anon_sym_PLUS_EQ] = ACTIONS(466), - [anon_sym_DASH_EQ] = ACTIONS(466), - [anon_sym_STAR_EQ] = ACTIONS(466), - [anon_sym_SLASH_EQ] = ACTIONS(466), - [anon_sym_PERCENT_EQ] = ACTIONS(466), - [anon_sym_AMP_EQ] = ACTIONS(466), - [anon_sym_PIPE_EQ] = ACTIONS(466), - [anon_sym_CARET_EQ] = ACTIONS(466), - [anon_sym_LT_LT_EQ] = ACTIONS(466), - [anon_sym_GT_GT_EQ] = ACTIONS(466), - [anon_sym_yield] = ACTIONS(468), - [anon_sym_move] = ACTIONS(468), - [anon_sym_DOT] = ACTIONS(468), - [sym_integer_literal] = ACTIONS(466), - [aux_sym_string_literal_token1] = ACTIONS(466), - [sym_char_literal] = ACTIONS(466), - [anon_sym_true] = ACTIONS(468), - [anon_sym_false] = ACTIONS(468), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(468), - [sym_super] = ACTIONS(468), - [sym_crate] = ACTIONS(468), - [sym_metavariable] = ACTIONS(466), - [sym_raw_string_literal] = ACTIONS(466), - [sym_float_literal] = ACTIONS(466), - [sym_block_comment] = ACTIONS(3), - }, - [74] = { - [ts_builtin_sym_end] = ACTIONS(470), - [sym_identifier] = ACTIONS(472), - [anon_sym_SEMI] = ACTIONS(470), - [anon_sym_macro_rules_BANG] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(470), - [anon_sym_LBRACE] = ACTIONS(470), - [anon_sym_RBRACE] = ACTIONS(470), - [anon_sym_LBRACK] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_STAR] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_SQUOTE] = ACTIONS(472), - [anon_sym_as] = ACTIONS(472), - [anon_sym_async] = ACTIONS(472), - [anon_sym_break] = ACTIONS(472), - [anon_sym_const] = ACTIONS(472), - [anon_sym_continue] = ACTIONS(472), - [anon_sym_default] = ACTIONS(472), - [anon_sym_enum] = ACTIONS(472), - [anon_sym_fn] = ACTIONS(472), - [anon_sym_for] = ACTIONS(472), - [anon_sym_if] = ACTIONS(472), - [anon_sym_impl] = ACTIONS(472), - [anon_sym_let] = ACTIONS(472), - [anon_sym_loop] = ACTIONS(472), - [anon_sym_match] = ACTIONS(472), - [anon_sym_mod] = ACTIONS(472), - [anon_sym_pub] = ACTIONS(472), - [anon_sym_return] = ACTIONS(472), - [anon_sym_static] = ACTIONS(472), - [anon_sym_struct] = ACTIONS(472), - [anon_sym_trait] = ACTIONS(472), - [anon_sym_type] = ACTIONS(472), - [anon_sym_union] = ACTIONS(472), - [anon_sym_unsafe] = ACTIONS(472), - [anon_sym_use] = ACTIONS(472), - [anon_sym_while] = ACTIONS(472), - [anon_sym_POUND] = ACTIONS(470), - [anon_sym_BANG] = ACTIONS(472), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_extern] = ACTIONS(472), - [anon_sym_LT] = ACTIONS(472), - [anon_sym_GT] = ACTIONS(472), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(472), - [anon_sym_DOT_DOT_DOT] = ACTIONS(470), - [anon_sym_DOT_DOT] = ACTIONS(472), - [anon_sym_DOT_DOT_EQ] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(470), - [anon_sym_BANG_EQ] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(470), - [anon_sym_LT_LT] = ACTIONS(472), - [anon_sym_GT_GT] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_PERCENT] = ACTIONS(472), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_yield] = ACTIONS(472), - [anon_sym_move] = ACTIONS(472), - [anon_sym_DOT] = ACTIONS(472), - [sym_integer_literal] = ACTIONS(470), - [aux_sym_string_literal_token1] = ACTIONS(470), - [sym_char_literal] = ACTIONS(470), - [anon_sym_true] = ACTIONS(472), - [anon_sym_false] = ACTIONS(472), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(472), - [sym_super] = ACTIONS(472), - [sym_crate] = ACTIONS(472), - [sym_metavariable] = ACTIONS(470), - [sym_raw_string_literal] = ACTIONS(470), - [sym_float_literal] = ACTIONS(470), - [sym_block_comment] = ACTIONS(3), - }, - [75] = { - [ts_builtin_sym_end] = ACTIONS(474), - [sym_identifier] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(474), - [anon_sym_macro_rules_BANG] = ACTIONS(474), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(474), - [anon_sym_RBRACE] = ACTIONS(474), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_STAR] = ACTIONS(476), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_u8] = ACTIONS(476), - [anon_sym_i8] = ACTIONS(476), - [anon_sym_u16] = ACTIONS(476), - [anon_sym_i16] = ACTIONS(476), - [anon_sym_u32] = ACTIONS(476), - [anon_sym_i32] = ACTIONS(476), - [anon_sym_u64] = ACTIONS(476), - [anon_sym_i64] = ACTIONS(476), - [anon_sym_u128] = ACTIONS(476), - [anon_sym_i128] = ACTIONS(476), - [anon_sym_isize] = ACTIONS(476), - [anon_sym_usize] = ACTIONS(476), - [anon_sym_f32] = ACTIONS(476), - [anon_sym_f64] = ACTIONS(476), - [anon_sym_bool] = ACTIONS(476), - [anon_sym_str] = ACTIONS(476), - [anon_sym_char] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(476), - [anon_sym_as] = ACTIONS(476), - [anon_sym_async] = ACTIONS(476), - [anon_sym_break] = ACTIONS(476), - [anon_sym_const] = ACTIONS(476), - [anon_sym_continue] = ACTIONS(476), - [anon_sym_default] = ACTIONS(476), - [anon_sym_enum] = ACTIONS(476), - [anon_sym_fn] = ACTIONS(476), - [anon_sym_for] = ACTIONS(476), - [anon_sym_if] = ACTIONS(476), - [anon_sym_impl] = ACTIONS(476), - [anon_sym_let] = ACTIONS(476), - [anon_sym_loop] = ACTIONS(476), - [anon_sym_match] = ACTIONS(476), - [anon_sym_mod] = ACTIONS(476), - [anon_sym_pub] = ACTIONS(476), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(476), - [anon_sym_struct] = ACTIONS(476), - [anon_sym_trait] = ACTIONS(476), - [anon_sym_type] = ACTIONS(476), - [anon_sym_union] = ACTIONS(476), - [anon_sym_unsafe] = ACTIONS(476), - [anon_sym_use] = ACTIONS(476), - [anon_sym_while] = ACTIONS(476), - [anon_sym_POUND] = ACTIONS(474), - [anon_sym_BANG] = ACTIONS(476), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_extern] = ACTIONS(476), - [anon_sym_LT] = ACTIONS(476), - [anon_sym_GT] = ACTIONS(476), - [anon_sym_COLON_COLON] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(476), - [anon_sym_DOT_DOT_DOT] = ACTIONS(474), - [anon_sym_DOT_DOT] = ACTIONS(476), - [anon_sym_DOT_DOT_EQ] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(476), - [anon_sym_CARET] = ACTIONS(476), - [anon_sym_EQ_EQ] = ACTIONS(474), - [anon_sym_BANG_EQ] = ACTIONS(474), - [anon_sym_LT_EQ] = ACTIONS(474), - [anon_sym_GT_EQ] = ACTIONS(474), - [anon_sym_LT_LT] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(476), - [anon_sym_SLASH] = ACTIONS(476), - [anon_sym_PERCENT] = ACTIONS(476), - [anon_sym_PLUS_EQ] = ACTIONS(474), - [anon_sym_DASH_EQ] = ACTIONS(474), - [anon_sym_STAR_EQ] = ACTIONS(474), - [anon_sym_SLASH_EQ] = ACTIONS(474), - [anon_sym_PERCENT_EQ] = ACTIONS(474), - [anon_sym_AMP_EQ] = ACTIONS(474), - [anon_sym_PIPE_EQ] = ACTIONS(474), - [anon_sym_CARET_EQ] = ACTIONS(474), - [anon_sym_LT_LT_EQ] = ACTIONS(474), - [anon_sym_GT_GT_EQ] = ACTIONS(474), - [anon_sym_yield] = ACTIONS(476), - [anon_sym_move] = ACTIONS(476), - [anon_sym_DOT] = ACTIONS(476), - [sym_integer_literal] = ACTIONS(474), - [aux_sym_string_literal_token1] = ACTIONS(474), - [sym_char_literal] = ACTIONS(474), - [anon_sym_true] = ACTIONS(476), - [anon_sym_false] = ACTIONS(476), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(476), - [sym_crate] = ACTIONS(476), - [sym_metavariable] = ACTIONS(474), - [sym_raw_string_literal] = ACTIONS(474), - [sym_float_literal] = ACTIONS(474), - [sym_block_comment] = ACTIONS(3), - }, - [76] = { - [ts_builtin_sym_end] = ACTIONS(478), - [sym_identifier] = ACTIONS(480), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_macro_rules_BANG] = ACTIONS(478), - [anon_sym_LPAREN] = ACTIONS(478), - [anon_sym_LBRACE] = ACTIONS(478), - [anon_sym_RBRACE] = ACTIONS(478), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_STAR] = ACTIONS(480), - [anon_sym_QMARK] = ACTIONS(478), - [anon_sym_u8] = ACTIONS(480), - [anon_sym_i8] = ACTIONS(480), - [anon_sym_u16] = ACTIONS(480), - [anon_sym_i16] = ACTIONS(480), - [anon_sym_u32] = ACTIONS(480), - [anon_sym_i32] = ACTIONS(480), - [anon_sym_u64] = ACTIONS(480), - [anon_sym_i64] = ACTIONS(480), - [anon_sym_u128] = ACTIONS(480), - [anon_sym_i128] = ACTIONS(480), - [anon_sym_isize] = ACTIONS(480), - [anon_sym_usize] = ACTIONS(480), - [anon_sym_f32] = ACTIONS(480), - [anon_sym_f64] = ACTIONS(480), - [anon_sym_bool] = ACTIONS(480), - [anon_sym_str] = ACTIONS(480), - [anon_sym_char] = ACTIONS(480), - [anon_sym_SQUOTE] = ACTIONS(480), - [anon_sym_as] = ACTIONS(480), - [anon_sym_async] = ACTIONS(480), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_default] = ACTIONS(480), - [anon_sym_enum] = ACTIONS(480), - [anon_sym_fn] = ACTIONS(480), - [anon_sym_for] = ACTIONS(480), - [anon_sym_if] = ACTIONS(480), - [anon_sym_impl] = ACTIONS(480), - [anon_sym_let] = ACTIONS(480), - [anon_sym_loop] = ACTIONS(480), - [anon_sym_match] = ACTIONS(480), - [anon_sym_mod] = ACTIONS(480), - [anon_sym_pub] = ACTIONS(480), - [anon_sym_return] = ACTIONS(480), - [anon_sym_static] = ACTIONS(480), - [anon_sym_struct] = ACTIONS(480), - [anon_sym_trait] = ACTIONS(480), - [anon_sym_type] = ACTIONS(480), - [anon_sym_union] = ACTIONS(480), - [anon_sym_unsafe] = ACTIONS(480), - [anon_sym_use] = ACTIONS(480), - [anon_sym_while] = ACTIONS(480), - [anon_sym_POUND] = ACTIONS(478), - [anon_sym_BANG] = ACTIONS(480), - [anon_sym_EQ] = ACTIONS(480), - [anon_sym_extern] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(480), - [anon_sym_GT] = ACTIONS(480), - [anon_sym_COLON_COLON] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(480), - [anon_sym_DOT_DOT_DOT] = ACTIONS(478), - [anon_sym_DOT_DOT] = ACTIONS(480), - [anon_sym_DOT_DOT_EQ] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_AMP_AMP] = ACTIONS(478), - [anon_sym_PIPE_PIPE] = ACTIONS(478), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_CARET] = ACTIONS(480), - [anon_sym_EQ_EQ] = ACTIONS(478), - [anon_sym_BANG_EQ] = ACTIONS(478), - [anon_sym_LT_EQ] = ACTIONS(478), - [anon_sym_GT_EQ] = ACTIONS(478), - [anon_sym_LT_LT] = ACTIONS(480), - [anon_sym_GT_GT] = ACTIONS(480), - [anon_sym_SLASH] = ACTIONS(480), - [anon_sym_PERCENT] = ACTIONS(480), - [anon_sym_PLUS_EQ] = ACTIONS(478), - [anon_sym_DASH_EQ] = ACTIONS(478), - [anon_sym_STAR_EQ] = ACTIONS(478), - [anon_sym_SLASH_EQ] = ACTIONS(478), - [anon_sym_PERCENT_EQ] = ACTIONS(478), - [anon_sym_AMP_EQ] = ACTIONS(478), - [anon_sym_PIPE_EQ] = ACTIONS(478), - [anon_sym_CARET_EQ] = ACTIONS(478), - [anon_sym_LT_LT_EQ] = ACTIONS(478), - [anon_sym_GT_GT_EQ] = ACTIONS(478), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(480), - [sym_integer_literal] = ACTIONS(478), - [aux_sym_string_literal_token1] = ACTIONS(478), - [sym_char_literal] = ACTIONS(478), - [anon_sym_true] = ACTIONS(480), - [anon_sym_false] = ACTIONS(480), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(480), - [sym_super] = ACTIONS(480), - [sym_crate] = ACTIONS(480), - [sym_metavariable] = ACTIONS(478), - [sym_raw_string_literal] = ACTIONS(478), - [sym_float_literal] = ACTIONS(478), - [sym_block_comment] = ACTIONS(3), - }, - [77] = { - [ts_builtin_sym_end] = ACTIONS(482), - [sym_identifier] = ACTIONS(484), - [anon_sym_SEMI] = ACTIONS(482), - [anon_sym_macro_rules_BANG] = ACTIONS(482), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(482), - [anon_sym_RBRACE] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(482), - [anon_sym_PLUS] = ACTIONS(484), - [anon_sym_STAR] = ACTIONS(484), - [anon_sym_QMARK] = ACTIONS(482), - [anon_sym_u8] = ACTIONS(484), - [anon_sym_i8] = ACTIONS(484), - [anon_sym_u16] = ACTIONS(484), - [anon_sym_i16] = ACTIONS(484), - [anon_sym_u32] = ACTIONS(484), - [anon_sym_i32] = ACTIONS(484), - [anon_sym_u64] = ACTIONS(484), - [anon_sym_i64] = ACTIONS(484), - [anon_sym_u128] = ACTIONS(484), - [anon_sym_i128] = ACTIONS(484), - [anon_sym_isize] = ACTIONS(484), - [anon_sym_usize] = ACTIONS(484), - [anon_sym_f32] = ACTIONS(484), - [anon_sym_f64] = ACTIONS(484), - [anon_sym_bool] = ACTIONS(484), - [anon_sym_str] = ACTIONS(484), - [anon_sym_char] = ACTIONS(484), - [anon_sym_SQUOTE] = ACTIONS(484), - [anon_sym_as] = ACTIONS(484), - [anon_sym_async] = ACTIONS(484), - [anon_sym_break] = ACTIONS(484), - [anon_sym_const] = ACTIONS(484), - [anon_sym_continue] = ACTIONS(484), - [anon_sym_default] = ACTIONS(484), - [anon_sym_enum] = ACTIONS(484), - [anon_sym_fn] = ACTIONS(484), - [anon_sym_for] = ACTIONS(484), - [anon_sym_if] = ACTIONS(484), - [anon_sym_impl] = ACTIONS(484), - [anon_sym_let] = ACTIONS(484), - [anon_sym_loop] = ACTIONS(484), - [anon_sym_match] = ACTIONS(484), - [anon_sym_mod] = ACTIONS(484), - [anon_sym_pub] = ACTIONS(484), - [anon_sym_return] = ACTIONS(484), - [anon_sym_static] = ACTIONS(484), - [anon_sym_struct] = ACTIONS(484), - [anon_sym_trait] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_union] = ACTIONS(484), - [anon_sym_unsafe] = ACTIONS(484), - [anon_sym_use] = ACTIONS(484), - [anon_sym_while] = ACTIONS(484), - [anon_sym_POUND] = ACTIONS(482), - [anon_sym_BANG] = ACTIONS(484), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_extern] = ACTIONS(484), - [anon_sym_LT] = ACTIONS(484), - [anon_sym_GT] = ACTIONS(484), - [anon_sym_COLON_COLON] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(484), - [anon_sym_DOT_DOT_DOT] = ACTIONS(482), - [anon_sym_DOT_DOT] = ACTIONS(484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(482), - [anon_sym_DASH] = ACTIONS(484), - [anon_sym_AMP_AMP] = ACTIONS(482), - [anon_sym_PIPE_PIPE] = ACTIONS(482), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_CARET] = ACTIONS(484), - [anon_sym_EQ_EQ] = ACTIONS(482), - [anon_sym_BANG_EQ] = ACTIONS(482), - [anon_sym_LT_EQ] = ACTIONS(482), - [anon_sym_GT_EQ] = ACTIONS(482), - [anon_sym_LT_LT] = ACTIONS(484), - [anon_sym_GT_GT] = ACTIONS(484), - [anon_sym_SLASH] = ACTIONS(484), - [anon_sym_PERCENT] = ACTIONS(484), - [anon_sym_PLUS_EQ] = ACTIONS(482), - [anon_sym_DASH_EQ] = ACTIONS(482), - [anon_sym_STAR_EQ] = ACTIONS(482), - [anon_sym_SLASH_EQ] = ACTIONS(482), - [anon_sym_PERCENT_EQ] = ACTIONS(482), - [anon_sym_AMP_EQ] = ACTIONS(482), - [anon_sym_PIPE_EQ] = ACTIONS(482), - [anon_sym_CARET_EQ] = ACTIONS(482), - [anon_sym_LT_LT_EQ] = ACTIONS(482), - [anon_sym_GT_GT_EQ] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_DOT] = ACTIONS(484), - [sym_integer_literal] = ACTIONS(482), - [aux_sym_string_literal_token1] = ACTIONS(482), - [sym_char_literal] = ACTIONS(482), - [anon_sym_true] = ACTIONS(484), - [anon_sym_false] = ACTIONS(484), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(484), - [sym_super] = ACTIONS(484), - [sym_crate] = ACTIONS(484), - [sym_metavariable] = ACTIONS(482), - [sym_raw_string_literal] = ACTIONS(482), - [sym_float_literal] = ACTIONS(482), - [sym_block_comment] = ACTIONS(3), - }, - [78] = { - [ts_builtin_sym_end] = ACTIONS(486), - [sym_identifier] = ACTIONS(488), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_macro_rules_BANG] = ACTIONS(486), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACE] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(486), - [anon_sym_PLUS] = ACTIONS(488), - [anon_sym_STAR] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(486), - [anon_sym_u8] = ACTIONS(488), - [anon_sym_i8] = ACTIONS(488), - [anon_sym_u16] = ACTIONS(488), - [anon_sym_i16] = ACTIONS(488), - [anon_sym_u32] = ACTIONS(488), - [anon_sym_i32] = ACTIONS(488), - [anon_sym_u64] = ACTIONS(488), - [anon_sym_i64] = ACTIONS(488), - [anon_sym_u128] = ACTIONS(488), - [anon_sym_i128] = ACTIONS(488), - [anon_sym_isize] = ACTIONS(488), - [anon_sym_usize] = ACTIONS(488), - [anon_sym_f32] = ACTIONS(488), - [anon_sym_f64] = ACTIONS(488), - [anon_sym_bool] = ACTIONS(488), - [anon_sym_str] = ACTIONS(488), - [anon_sym_char] = ACTIONS(488), - [anon_sym_SQUOTE] = ACTIONS(488), - [anon_sym_as] = ACTIONS(488), - [anon_sym_async] = ACTIONS(488), - [anon_sym_break] = ACTIONS(488), - [anon_sym_const] = ACTIONS(488), - [anon_sym_continue] = ACTIONS(488), - [anon_sym_default] = ACTIONS(488), - [anon_sym_enum] = ACTIONS(488), - [anon_sym_fn] = ACTIONS(488), - [anon_sym_for] = ACTIONS(488), - [anon_sym_if] = ACTIONS(488), - [anon_sym_impl] = ACTIONS(488), - [anon_sym_let] = ACTIONS(488), - [anon_sym_loop] = ACTIONS(488), - [anon_sym_match] = ACTIONS(488), - [anon_sym_mod] = ACTIONS(488), - [anon_sym_pub] = ACTIONS(488), - [anon_sym_return] = ACTIONS(488), - [anon_sym_static] = ACTIONS(488), - [anon_sym_struct] = ACTIONS(488), - [anon_sym_trait] = ACTIONS(488), - [anon_sym_type] = ACTIONS(488), - [anon_sym_union] = ACTIONS(488), - [anon_sym_unsafe] = ACTIONS(488), - [anon_sym_use] = ACTIONS(488), - [anon_sym_while] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(486), - [anon_sym_BANG] = ACTIONS(488), - [anon_sym_EQ] = ACTIONS(488), - [anon_sym_extern] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_COLON_COLON] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(486), - [anon_sym_DOT_DOT] = ACTIONS(488), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(488), - [anon_sym_CARET] = ACTIONS(488), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT] = ACTIONS(488), - [anon_sym_GT_GT] = ACTIONS(488), - [anon_sym_SLASH] = ACTIONS(488), - [anon_sym_PERCENT] = ACTIONS(488), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_PERCENT_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_CARET_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_yield] = ACTIONS(488), - [anon_sym_move] = ACTIONS(488), - [anon_sym_DOT] = ACTIONS(488), - [sym_integer_literal] = ACTIONS(486), - [aux_sym_string_literal_token1] = ACTIONS(486), - [sym_char_literal] = ACTIONS(486), - [anon_sym_true] = ACTIONS(488), - [anon_sym_false] = ACTIONS(488), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(488), - [sym_super] = ACTIONS(488), - [sym_crate] = ACTIONS(488), - [sym_metavariable] = ACTIONS(486), - [sym_raw_string_literal] = ACTIONS(486), - [sym_float_literal] = ACTIONS(486), + [71] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1230), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_let_condition] = STATE(1907), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(390), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [79] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1248), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_tuple_expression_repeat1] = STATE(86), + [72] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1278), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_let_condition] = STATE(1907), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(490), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -25647,6 +24933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(390), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), @@ -25676,798 +24963,587 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [80] = { - [ts_builtin_sym_end] = ACTIONS(492), - [sym_identifier] = ACTIONS(494), - [anon_sym_SEMI] = ACTIONS(492), - [anon_sym_macro_rules_BANG] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(492), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_LBRACK] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(494), - [anon_sym_QMARK] = ACTIONS(492), - [anon_sym_u8] = ACTIONS(494), - [anon_sym_i8] = ACTIONS(494), - [anon_sym_u16] = ACTIONS(494), - [anon_sym_i16] = ACTIONS(494), - [anon_sym_u32] = ACTIONS(494), - [anon_sym_i32] = ACTIONS(494), - [anon_sym_u64] = ACTIONS(494), - [anon_sym_i64] = ACTIONS(494), - [anon_sym_u128] = ACTIONS(494), - [anon_sym_i128] = ACTIONS(494), - [anon_sym_isize] = ACTIONS(494), - [anon_sym_usize] = ACTIONS(494), - [anon_sym_f32] = ACTIONS(494), - [anon_sym_f64] = ACTIONS(494), - [anon_sym_bool] = ACTIONS(494), - [anon_sym_str] = ACTIONS(494), - [anon_sym_char] = ACTIONS(494), - [anon_sym_SQUOTE] = ACTIONS(494), - [anon_sym_as] = ACTIONS(494), - [anon_sym_async] = ACTIONS(494), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(494), - [anon_sym_continue] = ACTIONS(494), - [anon_sym_default] = ACTIONS(494), - [anon_sym_enum] = ACTIONS(494), - [anon_sym_fn] = ACTIONS(494), - [anon_sym_for] = ACTIONS(494), - [anon_sym_if] = ACTIONS(494), - [anon_sym_impl] = ACTIONS(494), - [anon_sym_let] = ACTIONS(494), - [anon_sym_loop] = ACTIONS(494), - [anon_sym_match] = ACTIONS(494), - [anon_sym_mod] = ACTIONS(494), - [anon_sym_pub] = ACTIONS(494), - [anon_sym_return] = ACTIONS(494), - [anon_sym_static] = ACTIONS(494), - [anon_sym_struct] = ACTIONS(494), - [anon_sym_trait] = ACTIONS(494), - [anon_sym_type] = ACTIONS(494), - [anon_sym_union] = ACTIONS(494), - [anon_sym_unsafe] = ACTIONS(494), - [anon_sym_use] = ACTIONS(494), - [anon_sym_while] = ACTIONS(494), - [anon_sym_POUND] = ACTIONS(492), - [anon_sym_BANG] = ACTIONS(494), - [anon_sym_EQ] = ACTIONS(494), - [anon_sym_extern] = ACTIONS(494), - [anon_sym_LT] = ACTIONS(494), - [anon_sym_GT] = ACTIONS(494), - [anon_sym_COLON_COLON] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(492), - [anon_sym_DOT_DOT] = ACTIONS(494), - [anon_sym_DOT_DOT_EQ] = ACTIONS(492), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(492), - [anon_sym_PIPE] = ACTIONS(494), - [anon_sym_CARET] = ACTIONS(494), - [anon_sym_EQ_EQ] = ACTIONS(492), - [anon_sym_BANG_EQ] = ACTIONS(492), - [anon_sym_LT_EQ] = ACTIONS(492), - [anon_sym_GT_EQ] = ACTIONS(492), - [anon_sym_LT_LT] = ACTIONS(494), - [anon_sym_GT_GT] = ACTIONS(494), - [anon_sym_SLASH] = ACTIONS(494), - [anon_sym_PERCENT] = ACTIONS(494), - [anon_sym_PLUS_EQ] = ACTIONS(492), - [anon_sym_DASH_EQ] = ACTIONS(492), - [anon_sym_STAR_EQ] = ACTIONS(492), - [anon_sym_SLASH_EQ] = ACTIONS(492), - [anon_sym_PERCENT_EQ] = ACTIONS(492), - [anon_sym_AMP_EQ] = ACTIONS(492), - [anon_sym_PIPE_EQ] = ACTIONS(492), - [anon_sym_CARET_EQ] = ACTIONS(492), - [anon_sym_LT_LT_EQ] = ACTIONS(492), - [anon_sym_GT_GT_EQ] = ACTIONS(492), - [anon_sym_yield] = ACTIONS(494), - [anon_sym_move] = ACTIONS(494), - [anon_sym_DOT] = ACTIONS(494), - [sym_integer_literal] = ACTIONS(492), - [aux_sym_string_literal_token1] = ACTIONS(492), - [sym_char_literal] = ACTIONS(492), - [anon_sym_true] = ACTIONS(494), - [anon_sym_false] = ACTIONS(494), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(494), - [sym_crate] = ACTIONS(494), - [sym_metavariable] = ACTIONS(492), - [sym_raw_string_literal] = ACTIONS(492), - [sym_float_literal] = ACTIONS(492), - [sym_block_comment] = ACTIONS(3), - }, - [81] = { - [ts_builtin_sym_end] = ACTIONS(496), - [sym_identifier] = ACTIONS(498), - [anon_sym_SEMI] = ACTIONS(496), - [anon_sym_macro_rules_BANG] = ACTIONS(496), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_LBRACE] = ACTIONS(496), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_LBRACK] = ACTIONS(496), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(498), - [anon_sym_QMARK] = ACTIONS(496), - [anon_sym_u8] = ACTIONS(498), - [anon_sym_i8] = ACTIONS(498), - [anon_sym_u16] = ACTIONS(498), - [anon_sym_i16] = ACTIONS(498), - [anon_sym_u32] = ACTIONS(498), - [anon_sym_i32] = ACTIONS(498), - [anon_sym_u64] = ACTIONS(498), - [anon_sym_i64] = ACTIONS(498), - [anon_sym_u128] = ACTIONS(498), - [anon_sym_i128] = ACTIONS(498), - [anon_sym_isize] = ACTIONS(498), - [anon_sym_usize] = ACTIONS(498), - [anon_sym_f32] = ACTIONS(498), - [anon_sym_f64] = ACTIONS(498), - [anon_sym_bool] = ACTIONS(498), - [anon_sym_str] = ACTIONS(498), - [anon_sym_char] = ACTIONS(498), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_as] = ACTIONS(498), - [anon_sym_async] = ACTIONS(498), - [anon_sym_break] = ACTIONS(498), - [anon_sym_const] = ACTIONS(498), - [anon_sym_continue] = ACTIONS(498), - [anon_sym_default] = ACTIONS(498), - [anon_sym_enum] = ACTIONS(498), - [anon_sym_fn] = ACTIONS(498), - [anon_sym_for] = ACTIONS(498), - [anon_sym_if] = ACTIONS(498), - [anon_sym_impl] = ACTIONS(498), - [anon_sym_let] = ACTIONS(498), - [anon_sym_loop] = ACTIONS(498), - [anon_sym_match] = ACTIONS(498), - [anon_sym_mod] = ACTIONS(498), - [anon_sym_pub] = ACTIONS(498), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(498), - [anon_sym_struct] = ACTIONS(498), - [anon_sym_trait] = ACTIONS(498), - [anon_sym_type] = ACTIONS(498), - [anon_sym_union] = ACTIONS(498), - [anon_sym_unsafe] = ACTIONS(498), - [anon_sym_use] = ACTIONS(498), - [anon_sym_while] = ACTIONS(498), - [anon_sym_POUND] = ACTIONS(496), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_EQ] = ACTIONS(498), - [anon_sym_extern] = ACTIONS(498), - [anon_sym_LT] = ACTIONS(498), - [anon_sym_GT] = ACTIONS(498), - [anon_sym_COLON_COLON] = ACTIONS(496), - [anon_sym_AMP] = ACTIONS(498), - [anon_sym_DOT_DOT_DOT] = ACTIONS(496), - [anon_sym_DOT_DOT] = ACTIONS(498), - [anon_sym_DOT_DOT_EQ] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE_PIPE] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(498), - [anon_sym_EQ_EQ] = ACTIONS(496), - [anon_sym_BANG_EQ] = ACTIONS(496), - [anon_sym_LT_EQ] = ACTIONS(496), - [anon_sym_GT_EQ] = ACTIONS(496), - [anon_sym_LT_LT] = ACTIONS(498), - [anon_sym_GT_GT] = ACTIONS(498), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_PERCENT] = ACTIONS(498), - [anon_sym_PLUS_EQ] = ACTIONS(496), - [anon_sym_DASH_EQ] = ACTIONS(496), - [anon_sym_STAR_EQ] = ACTIONS(496), - [anon_sym_SLASH_EQ] = ACTIONS(496), - [anon_sym_PERCENT_EQ] = ACTIONS(496), - [anon_sym_AMP_EQ] = ACTIONS(496), - [anon_sym_PIPE_EQ] = ACTIONS(496), - [anon_sym_CARET_EQ] = ACTIONS(496), - [anon_sym_LT_LT_EQ] = ACTIONS(496), - [anon_sym_GT_GT_EQ] = ACTIONS(496), - [anon_sym_yield] = ACTIONS(498), - [anon_sym_move] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(498), - [sym_integer_literal] = ACTIONS(496), - [aux_sym_string_literal_token1] = ACTIONS(496), - [sym_char_literal] = ACTIONS(496), - [anon_sym_true] = ACTIONS(498), - [anon_sym_false] = ACTIONS(498), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(498), - [sym_super] = ACTIONS(498), - [sym_crate] = ACTIONS(498), - [sym_metavariable] = ACTIONS(496), - [sym_raw_string_literal] = ACTIONS(496), - [sym_float_literal] = ACTIONS(496), + [73] = { + [ts_builtin_sym_end] = ACTIONS(468), + [sym_identifier] = ACTIONS(470), + [anon_sym_SEMI] = ACTIONS(468), + [anon_sym_macro_rules_BANG] = ACTIONS(468), + [anon_sym_LPAREN] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_STAR] = ACTIONS(470), + [anon_sym_QMARK] = ACTIONS(468), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u128] = ACTIONS(470), + [anon_sym_i128] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_str] = ACTIONS(470), + [anon_sym_char] = ACTIONS(470), + [anon_sym_SQUOTE] = ACTIONS(470), + [anon_sym_as] = ACTIONS(470), + [anon_sym_async] = ACTIONS(470), + [anon_sym_break] = ACTIONS(470), + [anon_sym_const] = ACTIONS(470), + [anon_sym_continue] = ACTIONS(470), + [anon_sym_default] = ACTIONS(470), + [anon_sym_enum] = ACTIONS(470), + [anon_sym_fn] = ACTIONS(470), + [anon_sym_for] = ACTIONS(470), + [anon_sym_if] = ACTIONS(470), + [anon_sym_impl] = ACTIONS(470), + [anon_sym_let] = ACTIONS(470), + [anon_sym_loop] = ACTIONS(470), + [anon_sym_match] = ACTIONS(470), + [anon_sym_mod] = ACTIONS(470), + [anon_sym_pub] = ACTIONS(470), + [anon_sym_return] = ACTIONS(470), + [anon_sym_static] = ACTIONS(470), + [anon_sym_struct] = ACTIONS(470), + [anon_sym_trait] = ACTIONS(470), + [anon_sym_type] = ACTIONS(470), + [anon_sym_union] = ACTIONS(470), + [anon_sym_unsafe] = ACTIONS(470), + [anon_sym_use] = ACTIONS(470), + [anon_sym_while] = ACTIONS(470), + [anon_sym_POUND] = ACTIONS(468), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(470), + [anon_sym_extern] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_COLON_COLON] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(468), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_AMP_AMP] = ACTIONS(468), + [anon_sym_PIPE_PIPE] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(470), + [anon_sym_CARET] = ACTIONS(470), + [anon_sym_EQ_EQ] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_LT_LT] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(470), + [anon_sym_PERCENT] = ACTIONS(470), + [anon_sym_PLUS_EQ] = ACTIONS(468), + [anon_sym_DASH_EQ] = ACTIONS(468), + [anon_sym_STAR_EQ] = ACTIONS(468), + [anon_sym_SLASH_EQ] = ACTIONS(468), + [anon_sym_PERCENT_EQ] = ACTIONS(468), + [anon_sym_AMP_EQ] = ACTIONS(468), + [anon_sym_PIPE_EQ] = ACTIONS(468), + [anon_sym_CARET_EQ] = ACTIONS(468), + [anon_sym_LT_LT_EQ] = ACTIONS(468), + [anon_sym_GT_GT_EQ] = ACTIONS(468), + [anon_sym_yield] = ACTIONS(470), + [anon_sym_move] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(470), + [sym_integer_literal] = ACTIONS(468), + [aux_sym_string_literal_token1] = ACTIONS(468), + [sym_char_literal] = ACTIONS(468), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(470), + [sym_super] = ACTIONS(470), + [sym_crate] = ACTIONS(470), + [sym_metavariable] = ACTIONS(468), + [sym_raw_string_literal] = ACTIONS(468), + [sym_float_literal] = ACTIONS(468), [sym_block_comment] = ACTIONS(3), }, - [82] = { - [ts_builtin_sym_end] = ACTIONS(500), - [sym_identifier] = ACTIONS(502), - [anon_sym_SEMI] = ACTIONS(500), - [anon_sym_macro_rules_BANG] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACE] = ACTIONS(500), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(500), - [anon_sym_PLUS] = ACTIONS(502), - [anon_sym_STAR] = ACTIONS(502), - [anon_sym_QMARK] = ACTIONS(500), - [anon_sym_u8] = ACTIONS(502), - [anon_sym_i8] = ACTIONS(502), - [anon_sym_u16] = ACTIONS(502), - [anon_sym_i16] = ACTIONS(502), - [anon_sym_u32] = ACTIONS(502), - [anon_sym_i32] = ACTIONS(502), - [anon_sym_u64] = ACTIONS(502), - [anon_sym_i64] = ACTIONS(502), - [anon_sym_u128] = ACTIONS(502), - [anon_sym_i128] = ACTIONS(502), - [anon_sym_isize] = ACTIONS(502), - [anon_sym_usize] = ACTIONS(502), - [anon_sym_f32] = ACTIONS(502), - [anon_sym_f64] = ACTIONS(502), - [anon_sym_bool] = ACTIONS(502), - [anon_sym_str] = ACTIONS(502), - [anon_sym_char] = ACTIONS(502), - [anon_sym_SQUOTE] = ACTIONS(502), - [anon_sym_as] = ACTIONS(502), - [anon_sym_async] = ACTIONS(502), - [anon_sym_break] = ACTIONS(502), - [anon_sym_const] = ACTIONS(502), - [anon_sym_continue] = ACTIONS(502), - [anon_sym_default] = ACTIONS(502), - [anon_sym_enum] = ACTIONS(502), - [anon_sym_fn] = ACTIONS(502), - [anon_sym_for] = ACTIONS(502), - [anon_sym_if] = ACTIONS(502), - [anon_sym_impl] = ACTIONS(502), - [anon_sym_let] = ACTIONS(502), - [anon_sym_loop] = ACTIONS(502), - [anon_sym_match] = ACTIONS(502), - [anon_sym_mod] = ACTIONS(502), - [anon_sym_pub] = ACTIONS(502), - [anon_sym_return] = ACTIONS(502), - [anon_sym_static] = ACTIONS(502), - [anon_sym_struct] = ACTIONS(502), - [anon_sym_trait] = ACTIONS(502), - [anon_sym_type] = ACTIONS(502), - [anon_sym_union] = ACTIONS(502), - [anon_sym_unsafe] = ACTIONS(502), - [anon_sym_use] = ACTIONS(502), - [anon_sym_while] = ACTIONS(502), - [anon_sym_POUND] = ACTIONS(500), - [anon_sym_BANG] = ACTIONS(502), - [anon_sym_EQ] = ACTIONS(502), - [anon_sym_extern] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(502), - [anon_sym_GT] = ACTIONS(502), - [anon_sym_COLON_COLON] = ACTIONS(500), - [anon_sym_AMP] = ACTIONS(502), - [anon_sym_DOT_DOT_DOT] = ACTIONS(500), - [anon_sym_DOT_DOT] = ACTIONS(502), - [anon_sym_DOT_DOT_EQ] = ACTIONS(500), - [anon_sym_DASH] = ACTIONS(502), - [anon_sym_AMP_AMP] = ACTIONS(500), - [anon_sym_PIPE_PIPE] = ACTIONS(500), - [anon_sym_PIPE] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_EQ_EQ] = ACTIONS(500), - [anon_sym_BANG_EQ] = ACTIONS(500), - [anon_sym_LT_EQ] = ACTIONS(500), - [anon_sym_GT_EQ] = ACTIONS(500), - [anon_sym_LT_LT] = ACTIONS(502), - [anon_sym_GT_GT] = ACTIONS(502), - [anon_sym_SLASH] = ACTIONS(502), - [anon_sym_PERCENT] = ACTIONS(502), - [anon_sym_PLUS_EQ] = ACTIONS(500), - [anon_sym_DASH_EQ] = ACTIONS(500), - [anon_sym_STAR_EQ] = ACTIONS(500), - [anon_sym_SLASH_EQ] = ACTIONS(500), - [anon_sym_PERCENT_EQ] = ACTIONS(500), - [anon_sym_AMP_EQ] = ACTIONS(500), - [anon_sym_PIPE_EQ] = ACTIONS(500), - [anon_sym_CARET_EQ] = ACTIONS(500), - [anon_sym_LT_LT_EQ] = ACTIONS(500), - [anon_sym_GT_GT_EQ] = ACTIONS(500), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(502), - [anon_sym_DOT] = ACTIONS(502), - [sym_integer_literal] = ACTIONS(500), - [aux_sym_string_literal_token1] = ACTIONS(500), - [sym_char_literal] = ACTIONS(500), - [anon_sym_true] = ACTIONS(502), - [anon_sym_false] = ACTIONS(502), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(502), - [sym_super] = ACTIONS(502), - [sym_crate] = ACTIONS(502), - [sym_metavariable] = ACTIONS(500), - [sym_raw_string_literal] = ACTIONS(500), - [sym_float_literal] = ACTIONS(500), + [74] = { + [ts_builtin_sym_end] = ACTIONS(472), + [sym_identifier] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_macro_rules_BANG] = ACTIONS(472), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(472), + [anon_sym_RBRACE] = ACTIONS(472), + [anon_sym_LBRACK] = ACTIONS(472), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_STAR] = ACTIONS(474), + [anon_sym_QMARK] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(474), + [anon_sym_i8] = ACTIONS(474), + [anon_sym_u16] = ACTIONS(474), + [anon_sym_i16] = ACTIONS(474), + [anon_sym_u32] = ACTIONS(474), + [anon_sym_i32] = ACTIONS(474), + [anon_sym_u64] = ACTIONS(474), + [anon_sym_i64] = ACTIONS(474), + [anon_sym_u128] = ACTIONS(474), + [anon_sym_i128] = ACTIONS(474), + [anon_sym_isize] = ACTIONS(474), + [anon_sym_usize] = ACTIONS(474), + [anon_sym_f32] = ACTIONS(474), + [anon_sym_f64] = ACTIONS(474), + [anon_sym_bool] = ACTIONS(474), + [anon_sym_str] = ACTIONS(474), + [anon_sym_char] = ACTIONS(474), + [anon_sym_SQUOTE] = ACTIONS(474), + [anon_sym_as] = ACTIONS(474), + [anon_sym_async] = ACTIONS(474), + [anon_sym_break] = ACTIONS(474), + [anon_sym_const] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(474), + [anon_sym_default] = ACTIONS(474), + [anon_sym_enum] = ACTIONS(474), + [anon_sym_fn] = ACTIONS(474), + [anon_sym_for] = ACTIONS(474), + [anon_sym_if] = ACTIONS(474), + [anon_sym_impl] = ACTIONS(474), + [anon_sym_let] = ACTIONS(474), + [anon_sym_loop] = ACTIONS(474), + [anon_sym_match] = ACTIONS(474), + [anon_sym_mod] = ACTIONS(474), + [anon_sym_pub] = ACTIONS(474), + [anon_sym_return] = ACTIONS(474), + [anon_sym_static] = ACTIONS(474), + [anon_sym_struct] = ACTIONS(474), + [anon_sym_trait] = ACTIONS(474), + [anon_sym_type] = ACTIONS(474), + [anon_sym_union] = ACTIONS(474), + [anon_sym_unsafe] = ACTIONS(474), + [anon_sym_use] = ACTIONS(474), + [anon_sym_while] = ACTIONS(474), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(474), + [anon_sym_extern] = ACTIONS(474), + [anon_sym_LT] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(474), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(474), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [anon_sym_DOT_DOT] = ACTIONS(474), + [anon_sym_DOT_DOT_EQ] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_AMP_AMP] = ACTIONS(472), + [anon_sym_PIPE_PIPE] = ACTIONS(472), + [anon_sym_PIPE] = ACTIONS(474), + [anon_sym_CARET] = ACTIONS(474), + [anon_sym_EQ_EQ] = ACTIONS(472), + [anon_sym_BANG_EQ] = ACTIONS(472), + [anon_sym_LT_EQ] = ACTIONS(472), + [anon_sym_GT_EQ] = ACTIONS(472), + [anon_sym_LT_LT] = ACTIONS(474), + [anon_sym_GT_GT] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(474), + [anon_sym_PERCENT] = ACTIONS(474), + [anon_sym_PLUS_EQ] = ACTIONS(472), + [anon_sym_DASH_EQ] = ACTIONS(472), + [anon_sym_STAR_EQ] = ACTIONS(472), + [anon_sym_SLASH_EQ] = ACTIONS(472), + [anon_sym_PERCENT_EQ] = ACTIONS(472), + [anon_sym_AMP_EQ] = ACTIONS(472), + [anon_sym_PIPE_EQ] = ACTIONS(472), + [anon_sym_CARET_EQ] = ACTIONS(472), + [anon_sym_LT_LT_EQ] = ACTIONS(472), + [anon_sym_GT_GT_EQ] = ACTIONS(472), + [anon_sym_yield] = ACTIONS(474), + [anon_sym_move] = ACTIONS(474), + [anon_sym_DOT] = ACTIONS(474), + [sym_integer_literal] = ACTIONS(472), + [aux_sym_string_literal_token1] = ACTIONS(472), + [sym_char_literal] = ACTIONS(472), + [anon_sym_true] = ACTIONS(474), + [anon_sym_false] = ACTIONS(474), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(474), + [sym_super] = ACTIONS(474), + [sym_crate] = ACTIONS(474), + [sym_metavariable] = ACTIONS(472), + [sym_raw_string_literal] = ACTIONS(472), + [sym_float_literal] = ACTIONS(472), [sym_block_comment] = ACTIONS(3), }, - [83] = { - [ts_builtin_sym_end] = ACTIONS(504), - [sym_identifier] = ACTIONS(506), - [anon_sym_SEMI] = ACTIONS(504), - [anon_sym_macro_rules_BANG] = ACTIONS(504), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(504), - [anon_sym_PLUS] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(506), - [anon_sym_QMARK] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(506), - [anon_sym_i8] = ACTIONS(506), - [anon_sym_u16] = ACTIONS(506), - [anon_sym_i16] = ACTIONS(506), - [anon_sym_u32] = ACTIONS(506), - [anon_sym_i32] = ACTIONS(506), - [anon_sym_u64] = ACTIONS(506), - [anon_sym_i64] = ACTIONS(506), - [anon_sym_u128] = ACTIONS(506), - [anon_sym_i128] = ACTIONS(506), - [anon_sym_isize] = ACTIONS(506), - [anon_sym_usize] = ACTIONS(506), - [anon_sym_f32] = ACTIONS(506), - [anon_sym_f64] = ACTIONS(506), - [anon_sym_bool] = ACTIONS(506), - [anon_sym_str] = ACTIONS(506), - [anon_sym_char] = ACTIONS(506), - [anon_sym_SQUOTE] = ACTIONS(506), - [anon_sym_as] = ACTIONS(506), - [anon_sym_async] = ACTIONS(506), - [anon_sym_break] = ACTIONS(506), - [anon_sym_const] = ACTIONS(506), - [anon_sym_continue] = ACTIONS(506), - [anon_sym_default] = ACTIONS(506), - [anon_sym_enum] = ACTIONS(506), - [anon_sym_fn] = ACTIONS(506), - [anon_sym_for] = ACTIONS(506), - [anon_sym_if] = ACTIONS(506), - [anon_sym_impl] = ACTIONS(506), - [anon_sym_let] = ACTIONS(506), - [anon_sym_loop] = ACTIONS(506), - [anon_sym_match] = ACTIONS(506), - [anon_sym_mod] = ACTIONS(506), - [anon_sym_pub] = ACTIONS(506), - [anon_sym_return] = ACTIONS(506), - [anon_sym_static] = ACTIONS(506), - [anon_sym_struct] = ACTIONS(506), - [anon_sym_trait] = ACTIONS(506), - [anon_sym_type] = ACTIONS(506), - [anon_sym_union] = ACTIONS(506), - [anon_sym_unsafe] = ACTIONS(506), - [anon_sym_use] = ACTIONS(506), - [anon_sym_while] = ACTIONS(506), - [anon_sym_POUND] = ACTIONS(504), - [anon_sym_BANG] = ACTIONS(506), - [anon_sym_EQ] = ACTIONS(506), - [anon_sym_extern] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(506), - [anon_sym_GT] = ACTIONS(506), - [anon_sym_COLON_COLON] = ACTIONS(504), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT_DOT] = ACTIONS(504), - [anon_sym_DOT_DOT] = ACTIONS(506), - [anon_sym_DOT_DOT_EQ] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(504), - [anon_sym_PIPE_PIPE] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_CARET] = ACTIONS(506), - [anon_sym_EQ_EQ] = ACTIONS(504), - [anon_sym_BANG_EQ] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(504), - [anon_sym_GT_EQ] = ACTIONS(504), - [anon_sym_LT_LT] = ACTIONS(506), - [anon_sym_GT_GT] = ACTIONS(506), - [anon_sym_SLASH] = ACTIONS(506), - [anon_sym_PERCENT] = ACTIONS(506), - [anon_sym_PLUS_EQ] = ACTIONS(504), - [anon_sym_DASH_EQ] = ACTIONS(504), - [anon_sym_STAR_EQ] = ACTIONS(504), - [anon_sym_SLASH_EQ] = ACTIONS(504), - [anon_sym_PERCENT_EQ] = ACTIONS(504), - [anon_sym_AMP_EQ] = ACTIONS(504), - [anon_sym_PIPE_EQ] = ACTIONS(504), - [anon_sym_CARET_EQ] = ACTIONS(504), - [anon_sym_LT_LT_EQ] = ACTIONS(504), - [anon_sym_GT_GT_EQ] = ACTIONS(504), - [anon_sym_yield] = ACTIONS(506), - [anon_sym_move] = ACTIONS(506), - [anon_sym_DOT] = ACTIONS(506), - [sym_integer_literal] = ACTIONS(504), - [aux_sym_string_literal_token1] = ACTIONS(504), - [sym_char_literal] = ACTIONS(504), - [anon_sym_true] = ACTIONS(506), - [anon_sym_false] = ACTIONS(506), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(506), - [sym_super] = ACTIONS(506), - [sym_crate] = ACTIONS(506), - [sym_metavariable] = ACTIONS(504), - [sym_raw_string_literal] = ACTIONS(504), - [sym_float_literal] = ACTIONS(504), + [75] = { + [ts_builtin_sym_end] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [anon_sym_SEMI] = ACTIONS(476), + [anon_sym_macro_rules_BANG] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(476), + [anon_sym_LBRACE] = ACTIONS(476), + [anon_sym_RBRACE] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(478), + [anon_sym_QMARK] = ACTIONS(476), + [anon_sym_u8] = ACTIONS(478), + [anon_sym_i8] = ACTIONS(478), + [anon_sym_u16] = ACTIONS(478), + [anon_sym_i16] = ACTIONS(478), + [anon_sym_u32] = ACTIONS(478), + [anon_sym_i32] = ACTIONS(478), + [anon_sym_u64] = ACTIONS(478), + [anon_sym_i64] = ACTIONS(478), + [anon_sym_u128] = ACTIONS(478), + [anon_sym_i128] = ACTIONS(478), + [anon_sym_isize] = ACTIONS(478), + [anon_sym_usize] = ACTIONS(478), + [anon_sym_f32] = ACTIONS(478), + [anon_sym_f64] = ACTIONS(478), + [anon_sym_bool] = ACTIONS(478), + [anon_sym_str] = ACTIONS(478), + [anon_sym_char] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(478), + [anon_sym_as] = ACTIONS(478), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(478), + [anon_sym_default] = ACTIONS(478), + [anon_sym_enum] = ACTIONS(478), + [anon_sym_fn] = ACTIONS(478), + [anon_sym_for] = ACTIONS(478), + [anon_sym_if] = ACTIONS(478), + [anon_sym_impl] = ACTIONS(478), + [anon_sym_let] = ACTIONS(478), + [anon_sym_loop] = ACTIONS(478), + [anon_sym_match] = ACTIONS(478), + [anon_sym_mod] = ACTIONS(478), + [anon_sym_pub] = ACTIONS(478), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(478), + [anon_sym_struct] = ACTIONS(478), + [anon_sym_trait] = ACTIONS(478), + [anon_sym_type] = ACTIONS(478), + [anon_sym_union] = ACTIONS(478), + [anon_sym_unsafe] = ACTIONS(478), + [anon_sym_use] = ACTIONS(478), + [anon_sym_while] = ACTIONS(478), + [anon_sym_POUND] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(478), + [anon_sym_extern] = ACTIONS(478), + [anon_sym_LT] = ACTIONS(478), + [anon_sym_GT] = ACTIONS(478), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_AMP] = ACTIONS(478), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(478), + [anon_sym_DOT_DOT_EQ] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(478), + [anon_sym_AMP_AMP] = ACTIONS(476), + [anon_sym_PIPE_PIPE] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(478), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_EQ_EQ] = ACTIONS(476), + [anon_sym_BANG_EQ] = ACTIONS(476), + [anon_sym_LT_EQ] = ACTIONS(476), + [anon_sym_GT_EQ] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(478), + [anon_sym_SLASH] = ACTIONS(478), + [anon_sym_PERCENT] = ACTIONS(478), + [anon_sym_PLUS_EQ] = ACTIONS(476), + [anon_sym_DASH_EQ] = ACTIONS(476), + [anon_sym_STAR_EQ] = ACTIONS(476), + [anon_sym_SLASH_EQ] = ACTIONS(476), + [anon_sym_PERCENT_EQ] = ACTIONS(476), + [anon_sym_AMP_EQ] = ACTIONS(476), + [anon_sym_PIPE_EQ] = ACTIONS(476), + [anon_sym_CARET_EQ] = ACTIONS(476), + [anon_sym_LT_LT_EQ] = ACTIONS(476), + [anon_sym_GT_GT_EQ] = ACTIONS(476), + [anon_sym_yield] = ACTIONS(478), + [anon_sym_move] = ACTIONS(478), + [anon_sym_DOT] = ACTIONS(478), + [sym_integer_literal] = ACTIONS(476), + [aux_sym_string_literal_token1] = ACTIONS(476), + [sym_char_literal] = ACTIONS(476), + [anon_sym_true] = ACTIONS(478), + [anon_sym_false] = ACTIONS(478), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(478), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(476), + [sym_raw_string_literal] = ACTIONS(476), + [sym_float_literal] = ACTIONS(476), [sym_block_comment] = ACTIONS(3), }, - [84] = { - [ts_builtin_sym_end] = ACTIONS(508), - [sym_identifier] = ACTIONS(510), - [anon_sym_SEMI] = ACTIONS(508), - [anon_sym_macro_rules_BANG] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(508), - [anon_sym_LBRACE] = ACTIONS(508), - [anon_sym_RBRACE] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_STAR] = ACTIONS(510), - [anon_sym_QMARK] = ACTIONS(508), - [anon_sym_u8] = ACTIONS(510), - [anon_sym_i8] = ACTIONS(510), - [anon_sym_u16] = ACTIONS(510), - [anon_sym_i16] = ACTIONS(510), - [anon_sym_u32] = ACTIONS(510), - [anon_sym_i32] = ACTIONS(510), - [anon_sym_u64] = ACTIONS(510), - [anon_sym_i64] = ACTIONS(510), - [anon_sym_u128] = ACTIONS(510), - [anon_sym_i128] = ACTIONS(510), - [anon_sym_isize] = ACTIONS(510), - [anon_sym_usize] = ACTIONS(510), - [anon_sym_f32] = ACTIONS(510), - [anon_sym_f64] = ACTIONS(510), - [anon_sym_bool] = ACTIONS(510), - [anon_sym_str] = ACTIONS(510), - [anon_sym_char] = ACTIONS(510), - [anon_sym_SQUOTE] = ACTIONS(510), - [anon_sym_as] = ACTIONS(510), - [anon_sym_async] = ACTIONS(510), - [anon_sym_break] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_continue] = ACTIONS(510), - [anon_sym_default] = ACTIONS(510), - [anon_sym_enum] = ACTIONS(510), - [anon_sym_fn] = ACTIONS(510), - [anon_sym_for] = ACTIONS(510), - [anon_sym_if] = ACTIONS(510), - [anon_sym_impl] = ACTIONS(510), - [anon_sym_let] = ACTIONS(510), - [anon_sym_loop] = ACTIONS(510), - [anon_sym_match] = ACTIONS(510), - [anon_sym_mod] = ACTIONS(510), - [anon_sym_pub] = ACTIONS(510), - [anon_sym_return] = ACTIONS(510), - [anon_sym_static] = ACTIONS(510), - [anon_sym_struct] = ACTIONS(510), - [anon_sym_trait] = ACTIONS(510), - [anon_sym_type] = ACTIONS(510), - [anon_sym_union] = ACTIONS(510), - [anon_sym_unsafe] = ACTIONS(510), - [anon_sym_use] = ACTIONS(510), - [anon_sym_while] = ACTIONS(510), - [anon_sym_POUND] = ACTIONS(508), - [anon_sym_BANG] = ACTIONS(510), - [anon_sym_EQ] = ACTIONS(510), - [anon_sym_extern] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(510), - [anon_sym_GT] = ACTIONS(510), - [anon_sym_COLON_COLON] = ACTIONS(508), - [anon_sym_AMP] = ACTIONS(510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DOT_DOT_EQ] = ACTIONS(508), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(508), - [anon_sym_PIPE] = ACTIONS(510), - [anon_sym_CARET] = ACTIONS(510), - [anon_sym_EQ_EQ] = ACTIONS(508), - [anon_sym_BANG_EQ] = ACTIONS(508), - [anon_sym_LT_EQ] = ACTIONS(508), - [anon_sym_GT_EQ] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(510), - [anon_sym_GT_GT] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(510), - [anon_sym_PERCENT] = ACTIONS(510), - [anon_sym_PLUS_EQ] = ACTIONS(508), - [anon_sym_DASH_EQ] = ACTIONS(508), - [anon_sym_STAR_EQ] = ACTIONS(508), - [anon_sym_SLASH_EQ] = ACTIONS(508), - [anon_sym_PERCENT_EQ] = ACTIONS(508), - [anon_sym_AMP_EQ] = ACTIONS(508), - [anon_sym_PIPE_EQ] = ACTIONS(508), - [anon_sym_CARET_EQ] = ACTIONS(508), - [anon_sym_LT_LT_EQ] = ACTIONS(508), - [anon_sym_GT_GT_EQ] = ACTIONS(508), - [anon_sym_yield] = ACTIONS(510), - [anon_sym_move] = ACTIONS(510), - [anon_sym_DOT] = ACTIONS(510), - [sym_integer_literal] = ACTIONS(508), - [aux_sym_string_literal_token1] = ACTIONS(508), - [sym_char_literal] = ACTIONS(508), - [anon_sym_true] = ACTIONS(510), - [anon_sym_false] = ACTIONS(510), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(510), - [sym_super] = ACTIONS(510), - [sym_crate] = ACTIONS(510), - [sym_metavariable] = ACTIONS(508), - [sym_raw_string_literal] = ACTIONS(508), - [sym_float_literal] = ACTIONS(508), + [76] = { + [ts_builtin_sym_end] = ACTIONS(480), + [sym_identifier] = ACTIONS(482), + [anon_sym_SEMI] = ACTIONS(484), + [anon_sym_macro_rules_BANG] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_PLUS] = ACTIONS(486), + [anon_sym_STAR] = ACTIONS(486), + [anon_sym_QMARK] = ACTIONS(484), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_as] = ACTIONS(486), + [anon_sym_async] = ACTIONS(482), + [anon_sym_break] = ACTIONS(482), + [anon_sym_const] = ACTIONS(482), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_default] = ACTIONS(482), + [anon_sym_enum] = ACTIONS(482), + [anon_sym_fn] = ACTIONS(482), + [anon_sym_for] = ACTIONS(482), + [anon_sym_if] = ACTIONS(482), + [anon_sym_impl] = ACTIONS(482), + [anon_sym_let] = ACTIONS(482), + [anon_sym_loop] = ACTIONS(482), + [anon_sym_match] = ACTIONS(482), + [anon_sym_mod] = ACTIONS(482), + [anon_sym_pub] = ACTIONS(482), + [anon_sym_return] = ACTIONS(482), + [anon_sym_static] = ACTIONS(482), + [anon_sym_struct] = ACTIONS(482), + [anon_sym_trait] = ACTIONS(482), + [anon_sym_type] = ACTIONS(482), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(482), + [anon_sym_use] = ACTIONS(482), + [anon_sym_while] = ACTIONS(482), + [anon_sym_POUND] = ACTIONS(480), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(486), + [anon_sym_extern] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(486), + [anon_sym_GT] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(480), + [anon_sym_AMP] = ACTIONS(486), + [anon_sym_DOT_DOT_DOT] = ACTIONS(484), + [anon_sym_DOT_DOT] = ACTIONS(486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(486), + [anon_sym_AMP_AMP] = ACTIONS(484), + [anon_sym_PIPE_PIPE] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_CARET] = ACTIONS(486), + [anon_sym_EQ_EQ] = ACTIONS(484), + [anon_sym_BANG_EQ] = ACTIONS(484), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_LT_LT] = ACTIONS(486), + [anon_sym_GT_GT] = ACTIONS(486), + [anon_sym_SLASH] = ACTIONS(486), + [anon_sym_PERCENT] = ACTIONS(486), + [anon_sym_PLUS_EQ] = ACTIONS(484), + [anon_sym_DASH_EQ] = ACTIONS(484), + [anon_sym_STAR_EQ] = ACTIONS(484), + [anon_sym_SLASH_EQ] = ACTIONS(484), + [anon_sym_PERCENT_EQ] = ACTIONS(484), + [anon_sym_AMP_EQ] = ACTIONS(484), + [anon_sym_PIPE_EQ] = ACTIONS(484), + [anon_sym_CARET_EQ] = ACTIONS(484), + [anon_sym_LT_LT_EQ] = ACTIONS(484), + [anon_sym_GT_GT_EQ] = ACTIONS(484), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(482), + [anon_sym_DOT] = ACTIONS(486), + [sym_integer_literal] = ACTIONS(480), + [aux_sym_string_literal_token1] = ACTIONS(480), + [sym_char_literal] = ACTIONS(480), + [anon_sym_true] = ACTIONS(482), + [anon_sym_false] = ACTIONS(482), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(482), + [sym_super] = ACTIONS(482), + [sym_crate] = ACTIONS(482), + [sym_metavariable] = ACTIONS(480), + [sym_raw_string_literal] = ACTIONS(480), + [sym_float_literal] = ACTIONS(480), [sym_block_comment] = ACTIONS(3), }, - [85] = { - [ts_builtin_sym_end] = ACTIONS(512), - [sym_identifier] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_macro_rules_BANG] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(514), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_u8] = ACTIONS(514), - [anon_sym_i8] = ACTIONS(514), - [anon_sym_u16] = ACTIONS(514), - [anon_sym_i16] = ACTIONS(514), - [anon_sym_u32] = ACTIONS(514), - [anon_sym_i32] = ACTIONS(514), - [anon_sym_u64] = ACTIONS(514), - [anon_sym_i64] = ACTIONS(514), - [anon_sym_u128] = ACTIONS(514), - [anon_sym_i128] = ACTIONS(514), - [anon_sym_isize] = ACTIONS(514), - [anon_sym_usize] = ACTIONS(514), - [anon_sym_f32] = ACTIONS(514), - [anon_sym_f64] = ACTIONS(514), - [anon_sym_bool] = ACTIONS(514), - [anon_sym_str] = ACTIONS(514), - [anon_sym_char] = ACTIONS(514), - [anon_sym_SQUOTE] = ACTIONS(514), - [anon_sym_as] = ACTIONS(514), - [anon_sym_async] = ACTIONS(514), + [77] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_tuple_expression_repeat1] = STATE(77), + [sym_identifier] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(491), + [anon_sym_RPAREN] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(496), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(502), + [anon_sym_u8] = ACTIONS(505), + [anon_sym_i8] = ACTIONS(505), + [anon_sym_u16] = ACTIONS(505), + [anon_sym_i16] = ACTIONS(505), + [anon_sym_u32] = ACTIONS(505), + [anon_sym_i32] = ACTIONS(505), + [anon_sym_u64] = ACTIONS(505), + [anon_sym_i64] = ACTIONS(505), + [anon_sym_u128] = ACTIONS(505), + [anon_sym_i128] = ACTIONS(505), + [anon_sym_isize] = ACTIONS(505), + [anon_sym_usize] = ACTIONS(505), + [anon_sym_f32] = ACTIONS(505), + [anon_sym_f64] = ACTIONS(505), + [anon_sym_bool] = ACTIONS(505), + [anon_sym_str] = ACTIONS(505), + [anon_sym_char] = ACTIONS(505), + [anon_sym_SQUOTE] = ACTIONS(508), + [anon_sym_async] = ACTIONS(511), [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(514), - [anon_sym_continue] = ACTIONS(514), - [anon_sym_default] = ACTIONS(514), - [anon_sym_enum] = ACTIONS(514), - [anon_sym_fn] = ACTIONS(514), - [anon_sym_for] = ACTIONS(514), - [anon_sym_if] = ACTIONS(514), - [anon_sym_impl] = ACTIONS(514), - [anon_sym_let] = ACTIONS(514), - [anon_sym_loop] = ACTIONS(514), - [anon_sym_match] = ACTIONS(514), - [anon_sym_mod] = ACTIONS(514), - [anon_sym_pub] = ACTIONS(514), - [anon_sym_return] = ACTIONS(514), - [anon_sym_static] = ACTIONS(514), - [anon_sym_struct] = ACTIONS(514), - [anon_sym_trait] = ACTIONS(514), - [anon_sym_type] = ACTIONS(514), - [anon_sym_union] = ACTIONS(514), - [anon_sym_unsafe] = ACTIONS(514), - [anon_sym_use] = ACTIONS(514), - [anon_sym_while] = ACTIONS(514), - [anon_sym_POUND] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(514), - [anon_sym_extern] = ACTIONS(514), - [anon_sym_LT] = ACTIONS(514), - [anon_sym_GT] = ACTIONS(514), - [anon_sym_COLON_COLON] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(514), - [anon_sym_DOT_DOT_DOT] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DOT_DOT_EQ] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(514), - [anon_sym_AMP_AMP] = ACTIONS(512), - [anon_sym_PIPE_PIPE] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(514), - [anon_sym_CARET] = ACTIONS(514), - [anon_sym_EQ_EQ] = ACTIONS(512), - [anon_sym_BANG_EQ] = ACTIONS(512), - [anon_sym_LT_EQ] = ACTIONS(512), - [anon_sym_GT_EQ] = ACTIONS(512), - [anon_sym_LT_LT] = ACTIONS(514), - [anon_sym_GT_GT] = ACTIONS(514), - [anon_sym_SLASH] = ACTIONS(514), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_PLUS_EQ] = ACTIONS(512), - [anon_sym_DASH_EQ] = ACTIONS(512), - [anon_sym_STAR_EQ] = ACTIONS(512), - [anon_sym_SLASH_EQ] = ACTIONS(512), - [anon_sym_PERCENT_EQ] = ACTIONS(512), - [anon_sym_AMP_EQ] = ACTIONS(512), - [anon_sym_PIPE_EQ] = ACTIONS(512), - [anon_sym_CARET_EQ] = ACTIONS(512), - [anon_sym_LT_LT_EQ] = ACTIONS(512), - [anon_sym_GT_GT_EQ] = ACTIONS(512), - [anon_sym_yield] = ACTIONS(514), - [anon_sym_move] = ACTIONS(514), - [anon_sym_DOT] = ACTIONS(514), - [sym_integer_literal] = ACTIONS(512), - [aux_sym_string_literal_token1] = ACTIONS(512), - [sym_char_literal] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(514), - [sym_super] = ACTIONS(514), - [sym_crate] = ACTIONS(514), - [sym_metavariable] = ACTIONS(512), - [sym_raw_string_literal] = ACTIONS(512), - [sym_float_literal] = ACTIONS(512), - [sym_block_comment] = ACTIONS(3), - }, - [86] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [aux_sym_tuple_expression_repeat1] = STATE(86), - [sym_identifier] = ACTIONS(516), - [anon_sym_LPAREN] = ACTIONS(519), - [anon_sym_RPAREN] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_u8] = ACTIONS(533), - [anon_sym_i8] = ACTIONS(533), - [anon_sym_u16] = ACTIONS(533), - [anon_sym_i16] = ACTIONS(533), - [anon_sym_u32] = ACTIONS(533), - [anon_sym_i32] = ACTIONS(533), - [anon_sym_u64] = ACTIONS(533), - [anon_sym_i64] = ACTIONS(533), - [anon_sym_u128] = ACTIONS(533), - [anon_sym_i128] = ACTIONS(533), - [anon_sym_isize] = ACTIONS(533), - [anon_sym_usize] = ACTIONS(533), - [anon_sym_f32] = ACTIONS(533), - [anon_sym_f64] = ACTIONS(533), - [anon_sym_bool] = ACTIONS(533), - [anon_sym_str] = ACTIONS(533), - [anon_sym_char] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(536), - [anon_sym_async] = ACTIONS(539), - [anon_sym_break] = ACTIONS(542), - [anon_sym_const] = ACTIONS(545), - [anon_sym_continue] = ACTIONS(548), - [anon_sym_default] = ACTIONS(551), - [anon_sym_for] = ACTIONS(554), - [anon_sym_if] = ACTIONS(557), - [anon_sym_loop] = ACTIONS(560), - [anon_sym_match] = ACTIONS(563), - [anon_sym_return] = ACTIONS(566), - [anon_sym_union] = ACTIONS(551), - [anon_sym_unsafe] = ACTIONS(569), - [anon_sym_while] = ACTIONS(572), - [anon_sym_BANG] = ACTIONS(530), - [anon_sym_LT] = ACTIONS(575), - [anon_sym_COLON_COLON] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(581), - [anon_sym_DOT_DOT] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_PIPE] = ACTIONS(587), - [anon_sym_yield] = ACTIONS(590), - [anon_sym_move] = ACTIONS(593), - [sym_integer_literal] = ACTIONS(596), - [aux_sym_string_literal_token1] = ACTIONS(599), - [sym_char_literal] = ACTIONS(596), - [anon_sym_true] = ACTIONS(602), - [anon_sym_false] = ACTIONS(602), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(605), - [sym_super] = ACTIONS(608), - [sym_crate] = ACTIONS(608), - [sym_metavariable] = ACTIONS(611), - [sym_raw_string_literal] = ACTIONS(596), - [sym_float_literal] = ACTIONS(596), + [anon_sym_const] = ACTIONS(517), + [anon_sym_continue] = ACTIONS(520), + [anon_sym_default] = ACTIONS(523), + [anon_sym_for] = ACTIONS(526), + [anon_sym_if] = ACTIONS(529), + [anon_sym_loop] = ACTIONS(532), + [anon_sym_match] = ACTIONS(535), + [anon_sym_return] = ACTIONS(538), + [anon_sym_union] = ACTIONS(523), + [anon_sym_unsafe] = ACTIONS(541), + [anon_sym_while] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(547), + [anon_sym_COLON_COLON] = ACTIONS(550), + [anon_sym_AMP] = ACTIONS(553), + [anon_sym_DOT_DOT] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_PIPE] = ACTIONS(559), + [anon_sym_yield] = ACTIONS(562), + [anon_sym_move] = ACTIONS(565), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(571), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(574), + [anon_sym_false] = ACTIONS(574), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(577), + [sym_super] = ACTIONS(580), + [sym_crate] = ACTIONS(580), + [sym_metavariable] = ACTIONS(583), + [sym_raw_string_literal] = ACTIONS(568), + [sym_float_literal] = ACTIONS(568), [sym_block_comment] = ACTIONS(3), }, - [87] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1244), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [78] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1253), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_tuple_expression_repeat1] = STATE(68), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(418), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(614), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -26523,53 +25599,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [88] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1148), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [79] = { + [ts_builtin_sym_end] = ACTIONS(586), + [sym_identifier] = ACTIONS(588), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_macro_rules_BANG] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(486), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_QMARK] = ACTIONS(484), + [anon_sym_u8] = ACTIONS(588), + [anon_sym_i8] = ACTIONS(588), + [anon_sym_u16] = ACTIONS(588), + [anon_sym_i16] = ACTIONS(588), + [anon_sym_u32] = ACTIONS(588), + [anon_sym_i32] = ACTIONS(588), + [anon_sym_u64] = ACTIONS(588), + [anon_sym_i64] = ACTIONS(588), + [anon_sym_u128] = ACTIONS(588), + [anon_sym_i128] = ACTIONS(588), + [anon_sym_isize] = ACTIONS(588), + [anon_sym_usize] = ACTIONS(588), + [anon_sym_f32] = ACTIONS(588), + [anon_sym_f64] = ACTIONS(588), + [anon_sym_bool] = ACTIONS(588), + [anon_sym_str] = ACTIONS(588), + [anon_sym_char] = ACTIONS(588), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_as] = ACTIONS(486), + [anon_sym_async] = ACTIONS(588), + [anon_sym_break] = ACTIONS(588), + [anon_sym_const] = ACTIONS(588), + [anon_sym_continue] = ACTIONS(588), + [anon_sym_default] = ACTIONS(588), + [anon_sym_enum] = ACTIONS(588), + [anon_sym_fn] = ACTIONS(588), + [anon_sym_for] = ACTIONS(588), + [anon_sym_if] = ACTIONS(588), + [anon_sym_impl] = ACTIONS(588), + [anon_sym_let] = ACTIONS(588), + [anon_sym_loop] = ACTIONS(588), + [anon_sym_match] = ACTIONS(588), + [anon_sym_mod] = ACTIONS(588), + [anon_sym_pub] = ACTIONS(588), + [anon_sym_return] = ACTIONS(588), + [anon_sym_static] = ACTIONS(588), + [anon_sym_struct] = ACTIONS(588), + [anon_sym_trait] = ACTIONS(588), + [anon_sym_type] = ACTIONS(588), + [anon_sym_union] = ACTIONS(588), + [anon_sym_unsafe] = ACTIONS(588), + [anon_sym_use] = ACTIONS(588), + [anon_sym_while] = ACTIONS(588), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(486), + [anon_sym_extern] = ACTIONS(588), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_GT] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_DOT_DOT_DOT] = ACTIONS(484), + [anon_sym_DOT_DOT] = ACTIONS(588), + [anon_sym_DOT_DOT_EQ] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_AMP_AMP] = ACTIONS(484), + [anon_sym_PIPE_PIPE] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(486), + [anon_sym_EQ_EQ] = ACTIONS(484), + [anon_sym_BANG_EQ] = ACTIONS(484), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_LT_LT] = ACTIONS(486), + [anon_sym_GT_GT] = ACTIONS(486), + [anon_sym_SLASH] = ACTIONS(486), + [anon_sym_PERCENT] = ACTIONS(486), + [anon_sym_PLUS_EQ] = ACTIONS(484), + [anon_sym_DASH_EQ] = ACTIONS(484), + [anon_sym_STAR_EQ] = ACTIONS(484), + [anon_sym_SLASH_EQ] = ACTIONS(484), + [anon_sym_PERCENT_EQ] = ACTIONS(484), + [anon_sym_AMP_EQ] = ACTIONS(484), + [anon_sym_PIPE_EQ] = ACTIONS(484), + [anon_sym_CARET_EQ] = ACTIONS(484), + [anon_sym_LT_LT_EQ] = ACTIONS(484), + [anon_sym_GT_GT_EQ] = ACTIONS(484), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_move] = ACTIONS(588), + [anon_sym_DOT] = ACTIONS(486), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(586), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(588), + [anon_sym_false] = ACTIONS(588), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(588), + [sym_super] = ACTIONS(588), + [sym_crate] = ACTIONS(588), + [sym_metavariable] = ACTIONS(586), + [sym_raw_string_literal] = ACTIONS(586), + [sym_float_literal] = ACTIONS(586), + [sym_block_comment] = ACTIONS(3), + }, + [80] = { + [ts_builtin_sym_end] = ACTIONS(590), + [sym_identifier] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(590), + [anon_sym_macro_rules_BANG] = ACTIONS(590), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_QMARK] = ACTIONS(590), + [anon_sym_u8] = ACTIONS(592), + [anon_sym_i8] = ACTIONS(592), + [anon_sym_u16] = ACTIONS(592), + [anon_sym_i16] = ACTIONS(592), + [anon_sym_u32] = ACTIONS(592), + [anon_sym_i32] = ACTIONS(592), + [anon_sym_u64] = ACTIONS(592), + [anon_sym_i64] = ACTIONS(592), + [anon_sym_u128] = ACTIONS(592), + [anon_sym_i128] = ACTIONS(592), + [anon_sym_isize] = ACTIONS(592), + [anon_sym_usize] = ACTIONS(592), + [anon_sym_f32] = ACTIONS(592), + [anon_sym_f64] = ACTIONS(592), + [anon_sym_bool] = ACTIONS(592), + [anon_sym_str] = ACTIONS(592), + [anon_sym_char] = ACTIONS(592), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_as] = ACTIONS(592), + [anon_sym_async] = ACTIONS(592), + [anon_sym_break] = ACTIONS(592), + [anon_sym_const] = ACTIONS(592), + [anon_sym_continue] = ACTIONS(592), + [anon_sym_default] = ACTIONS(592), + [anon_sym_enum] = ACTIONS(592), + [anon_sym_fn] = ACTIONS(592), + [anon_sym_for] = ACTIONS(592), + [anon_sym_if] = ACTIONS(592), + [anon_sym_impl] = ACTIONS(592), + [anon_sym_let] = ACTIONS(592), + [anon_sym_loop] = ACTIONS(592), + [anon_sym_match] = ACTIONS(592), + [anon_sym_mod] = ACTIONS(592), + [anon_sym_pub] = ACTIONS(592), + [anon_sym_return] = ACTIONS(592), + [anon_sym_static] = ACTIONS(592), + [anon_sym_struct] = ACTIONS(592), + [anon_sym_trait] = ACTIONS(592), + [anon_sym_type] = ACTIONS(592), + [anon_sym_union] = ACTIONS(592), + [anon_sym_unsafe] = ACTIONS(592), + [anon_sym_use] = ACTIONS(592), + [anon_sym_while] = ACTIONS(592), + [anon_sym_POUND] = ACTIONS(590), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_EQ] = ACTIONS(592), + [anon_sym_extern] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(592), + [anon_sym_GT] = ACTIONS(592), + [anon_sym_COLON_COLON] = ACTIONS(590), + [anon_sym_AMP] = ACTIONS(592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(590), + [anon_sym_DOT_DOT] = ACTIONS(592), + [anon_sym_DOT_DOT_EQ] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_AMP_AMP] = ACTIONS(590), + [anon_sym_PIPE_PIPE] = ACTIONS(590), + [anon_sym_PIPE] = ACTIONS(592), + [anon_sym_CARET] = ACTIONS(592), + [anon_sym_EQ_EQ] = ACTIONS(590), + [anon_sym_BANG_EQ] = ACTIONS(590), + [anon_sym_LT_EQ] = ACTIONS(590), + [anon_sym_GT_EQ] = ACTIONS(590), + [anon_sym_LT_LT] = ACTIONS(592), + [anon_sym_GT_GT] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(592), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_PLUS_EQ] = ACTIONS(590), + [anon_sym_DASH_EQ] = ACTIONS(590), + [anon_sym_STAR_EQ] = ACTIONS(590), + [anon_sym_SLASH_EQ] = ACTIONS(590), + [anon_sym_PERCENT_EQ] = ACTIONS(590), + [anon_sym_AMP_EQ] = ACTIONS(590), + [anon_sym_PIPE_EQ] = ACTIONS(590), + [anon_sym_CARET_EQ] = ACTIONS(590), + [anon_sym_LT_LT_EQ] = ACTIONS(590), + [anon_sym_GT_GT_EQ] = ACTIONS(590), + [anon_sym_yield] = ACTIONS(592), + [anon_sym_move] = ACTIONS(592), + [anon_sym_DOT] = ACTIONS(592), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(590), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(592), + [anon_sym_false] = ACTIONS(592), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(592), + [sym_super] = ACTIONS(592), + [sym_crate] = ACTIONS(592), + [sym_metavariable] = ACTIONS(590), + [sym_raw_string_literal] = ACTIONS(590), + [sym_float_literal] = ACTIONS(590), + [sym_block_comment] = ACTIONS(3), + }, + [81] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1225), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [aux_sym_tuple_expression_repeat1] = STATE(58), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(594), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -26605,12 +25895,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(616), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(308), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -26628,51 +25917,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [89] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1208), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [82] = { + [ts_builtin_sym_end] = ACTIONS(596), + [sym_identifier] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_macro_rules_BANG] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(596), + [anon_sym_LBRACE] = ACTIONS(596), + [anon_sym_RBRACE] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(596), + [anon_sym_PLUS] = ACTIONS(598), + [anon_sym_STAR] = ACTIONS(598), + [anon_sym_QMARK] = ACTIONS(596), + [anon_sym_u8] = ACTIONS(598), + [anon_sym_i8] = ACTIONS(598), + [anon_sym_u16] = ACTIONS(598), + [anon_sym_i16] = ACTIONS(598), + [anon_sym_u32] = ACTIONS(598), + [anon_sym_i32] = ACTIONS(598), + [anon_sym_u64] = ACTIONS(598), + [anon_sym_i64] = ACTIONS(598), + [anon_sym_u128] = ACTIONS(598), + [anon_sym_i128] = ACTIONS(598), + [anon_sym_isize] = ACTIONS(598), + [anon_sym_usize] = ACTIONS(598), + [anon_sym_f32] = ACTIONS(598), + [anon_sym_f64] = ACTIONS(598), + [anon_sym_bool] = ACTIONS(598), + [anon_sym_str] = ACTIONS(598), + [anon_sym_char] = ACTIONS(598), + [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_as] = ACTIONS(598), + [anon_sym_async] = ACTIONS(598), + [anon_sym_break] = ACTIONS(598), + [anon_sym_const] = ACTIONS(598), + [anon_sym_continue] = ACTIONS(598), + [anon_sym_default] = ACTIONS(598), + [anon_sym_enum] = ACTIONS(598), + [anon_sym_fn] = ACTIONS(598), + [anon_sym_for] = ACTIONS(598), + [anon_sym_if] = ACTIONS(598), + [anon_sym_impl] = ACTIONS(598), + [anon_sym_let] = ACTIONS(598), + [anon_sym_loop] = ACTIONS(598), + [anon_sym_match] = ACTIONS(598), + [anon_sym_mod] = ACTIONS(598), + [anon_sym_pub] = ACTIONS(598), + [anon_sym_return] = ACTIONS(598), + [anon_sym_static] = ACTIONS(598), + [anon_sym_struct] = ACTIONS(598), + [anon_sym_trait] = ACTIONS(598), + [anon_sym_type] = ACTIONS(598), + [anon_sym_union] = ACTIONS(598), + [anon_sym_unsafe] = ACTIONS(598), + [anon_sym_use] = ACTIONS(598), + [anon_sym_while] = ACTIONS(598), + [anon_sym_POUND] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(598), + [anon_sym_extern] = ACTIONS(598), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_GT] = ACTIONS(598), + [anon_sym_COLON_COLON] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(596), + [anon_sym_DASH] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_CARET] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(596), + [anon_sym_BANG_EQ] = ACTIONS(596), + [anon_sym_LT_EQ] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(596), + [anon_sym_LT_LT] = ACTIONS(598), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_SLASH] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_PLUS_EQ] = ACTIONS(596), + [anon_sym_DASH_EQ] = ACTIONS(596), + [anon_sym_STAR_EQ] = ACTIONS(596), + [anon_sym_SLASH_EQ] = ACTIONS(596), + [anon_sym_PERCENT_EQ] = ACTIONS(596), + [anon_sym_AMP_EQ] = ACTIONS(596), + [anon_sym_PIPE_EQ] = ACTIONS(596), + [anon_sym_CARET_EQ] = ACTIONS(596), + [anon_sym_LT_LT_EQ] = ACTIONS(596), + [anon_sym_GT_GT_EQ] = ACTIONS(596), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_move] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(598), + [sym_integer_literal] = ACTIONS(596), + [aux_sym_string_literal_token1] = ACTIONS(596), + [sym_char_literal] = ACTIONS(596), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(598), + [sym_super] = ACTIONS(598), + [sym_crate] = ACTIONS(598), + [sym_metavariable] = ACTIONS(596), + [sym_raw_string_literal] = ACTIONS(596), + [sym_float_literal] = ACTIONS(596), + [sym_block_comment] = ACTIONS(3), + }, + [83] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_let_condition] = STATE(1907), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26703,6 +26099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), @@ -26713,8 +26110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(386), - [sym_mutable_specifier] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT] = ACTIONS(388), [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -26733,51 +26129,581 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [90] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), + [84] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1252), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_let_condition] = STATE(1907), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(384), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [85] = { + [ts_builtin_sym_end] = ACTIONS(602), + [sym_identifier] = ACTIONS(604), + [anon_sym_SEMI] = ACTIONS(602), + [anon_sym_macro_rules_BANG] = ACTIONS(602), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_RBRACE] = ACTIONS(602), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(604), + [anon_sym_i8] = ACTIONS(604), + [anon_sym_u16] = ACTIONS(604), + [anon_sym_i16] = ACTIONS(604), + [anon_sym_u32] = ACTIONS(604), + [anon_sym_i32] = ACTIONS(604), + [anon_sym_u64] = ACTIONS(604), + [anon_sym_i64] = ACTIONS(604), + [anon_sym_u128] = ACTIONS(604), + [anon_sym_i128] = ACTIONS(604), + [anon_sym_isize] = ACTIONS(604), + [anon_sym_usize] = ACTIONS(604), + [anon_sym_f32] = ACTIONS(604), + [anon_sym_f64] = ACTIONS(604), + [anon_sym_bool] = ACTIONS(604), + [anon_sym_str] = ACTIONS(604), + [anon_sym_char] = ACTIONS(604), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_as] = ACTIONS(604), + [anon_sym_async] = ACTIONS(604), + [anon_sym_break] = ACTIONS(604), + [anon_sym_const] = ACTIONS(604), + [anon_sym_continue] = ACTIONS(604), + [anon_sym_default] = ACTIONS(604), + [anon_sym_enum] = ACTIONS(604), + [anon_sym_fn] = ACTIONS(604), + [anon_sym_for] = ACTIONS(604), + [anon_sym_if] = ACTIONS(604), + [anon_sym_impl] = ACTIONS(604), + [anon_sym_let] = ACTIONS(604), + [anon_sym_loop] = ACTIONS(604), + [anon_sym_match] = ACTIONS(604), + [anon_sym_mod] = ACTIONS(604), + [anon_sym_pub] = ACTIONS(604), + [anon_sym_return] = ACTIONS(604), + [anon_sym_static] = ACTIONS(604), + [anon_sym_struct] = ACTIONS(604), + [anon_sym_trait] = ACTIONS(604), + [anon_sym_type] = ACTIONS(604), + [anon_sym_union] = ACTIONS(604), + [anon_sym_unsafe] = ACTIONS(604), + [anon_sym_use] = ACTIONS(604), + [anon_sym_while] = ACTIONS(604), + [anon_sym_POUND] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_EQ] = ACTIONS(604), + [anon_sym_extern] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(604), + [anon_sym_GT] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT_DOT] = ACTIONS(602), + [anon_sym_DOT_DOT] = ACTIONS(604), + [anon_sym_DOT_DOT_EQ] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(602), + [anon_sym_PIPE_PIPE] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(604), + [anon_sym_CARET] = ACTIONS(604), + [anon_sym_EQ_EQ] = ACTIONS(602), + [anon_sym_BANG_EQ] = ACTIONS(602), + [anon_sym_LT_EQ] = ACTIONS(602), + [anon_sym_GT_EQ] = ACTIONS(602), + [anon_sym_LT_LT] = ACTIONS(604), + [anon_sym_GT_GT] = ACTIONS(604), + [anon_sym_SLASH] = ACTIONS(604), + [anon_sym_PERCENT] = ACTIONS(604), + [anon_sym_PLUS_EQ] = ACTIONS(602), + [anon_sym_DASH_EQ] = ACTIONS(602), + [anon_sym_STAR_EQ] = ACTIONS(602), + [anon_sym_SLASH_EQ] = ACTIONS(602), + [anon_sym_PERCENT_EQ] = ACTIONS(602), + [anon_sym_AMP_EQ] = ACTIONS(602), + [anon_sym_PIPE_EQ] = ACTIONS(602), + [anon_sym_CARET_EQ] = ACTIONS(602), + [anon_sym_LT_LT_EQ] = ACTIONS(602), + [anon_sym_GT_GT_EQ] = ACTIONS(602), + [anon_sym_yield] = ACTIONS(604), + [anon_sym_move] = ACTIONS(604), + [anon_sym_DOT] = ACTIONS(604), + [sym_integer_literal] = ACTIONS(602), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(602), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(604), + [sym_super] = ACTIONS(604), + [sym_crate] = ACTIONS(604), + [sym_metavariable] = ACTIONS(602), + [sym_raw_string_literal] = ACTIONS(602), + [sym_float_literal] = ACTIONS(602), + [sym_block_comment] = ACTIONS(3), + }, + [86] = { + [ts_builtin_sym_end] = ACTIONS(606), + [sym_identifier] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(606), + [anon_sym_macro_rules_BANG] = ACTIONS(606), + [anon_sym_LPAREN] = ACTIONS(606), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_RBRACE] = ACTIONS(606), + [anon_sym_LBRACK] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(608), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_QMARK] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(608), + [anon_sym_i8] = ACTIONS(608), + [anon_sym_u16] = ACTIONS(608), + [anon_sym_i16] = ACTIONS(608), + [anon_sym_u32] = ACTIONS(608), + [anon_sym_i32] = ACTIONS(608), + [anon_sym_u64] = ACTIONS(608), + [anon_sym_i64] = ACTIONS(608), + [anon_sym_u128] = ACTIONS(608), + [anon_sym_i128] = ACTIONS(608), + [anon_sym_isize] = ACTIONS(608), + [anon_sym_usize] = ACTIONS(608), + [anon_sym_f32] = ACTIONS(608), + [anon_sym_f64] = ACTIONS(608), + [anon_sym_bool] = ACTIONS(608), + [anon_sym_str] = ACTIONS(608), + [anon_sym_char] = ACTIONS(608), + [anon_sym_SQUOTE] = ACTIONS(608), + [anon_sym_as] = ACTIONS(608), + [anon_sym_async] = ACTIONS(608), + [anon_sym_break] = ACTIONS(608), + [anon_sym_const] = ACTIONS(608), + [anon_sym_continue] = ACTIONS(608), + [anon_sym_default] = ACTIONS(608), + [anon_sym_enum] = ACTIONS(608), + [anon_sym_fn] = ACTIONS(608), + [anon_sym_for] = ACTIONS(608), + [anon_sym_if] = ACTIONS(608), + [anon_sym_impl] = ACTIONS(608), + [anon_sym_let] = ACTIONS(608), + [anon_sym_loop] = ACTIONS(608), + [anon_sym_match] = ACTIONS(608), + [anon_sym_mod] = ACTIONS(608), + [anon_sym_pub] = ACTIONS(608), + [anon_sym_return] = ACTIONS(608), + [anon_sym_static] = ACTIONS(608), + [anon_sym_struct] = ACTIONS(608), + [anon_sym_trait] = ACTIONS(608), + [anon_sym_type] = ACTIONS(608), + [anon_sym_union] = ACTIONS(608), + [anon_sym_unsafe] = ACTIONS(608), + [anon_sym_use] = ACTIONS(608), + [anon_sym_while] = ACTIONS(608), + [anon_sym_POUND] = ACTIONS(606), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_EQ] = ACTIONS(608), + [anon_sym_extern] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(608), + [anon_sym_GT] = ACTIONS(608), + [anon_sym_COLON_COLON] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DOT_DOT_EQ] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(608), + [anon_sym_AMP_AMP] = ACTIONS(606), + [anon_sym_PIPE_PIPE] = ACTIONS(606), + [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_CARET] = ACTIONS(608), + [anon_sym_EQ_EQ] = ACTIONS(606), + [anon_sym_BANG_EQ] = ACTIONS(606), + [anon_sym_LT_EQ] = ACTIONS(606), + [anon_sym_GT_EQ] = ACTIONS(606), + [anon_sym_LT_LT] = ACTIONS(608), + [anon_sym_GT_GT] = ACTIONS(608), + [anon_sym_SLASH] = ACTIONS(608), + [anon_sym_PERCENT] = ACTIONS(608), + [anon_sym_PLUS_EQ] = ACTIONS(606), + [anon_sym_DASH_EQ] = ACTIONS(606), + [anon_sym_STAR_EQ] = ACTIONS(606), + [anon_sym_SLASH_EQ] = ACTIONS(606), + [anon_sym_PERCENT_EQ] = ACTIONS(606), + [anon_sym_AMP_EQ] = ACTIONS(606), + [anon_sym_PIPE_EQ] = ACTIONS(606), + [anon_sym_CARET_EQ] = ACTIONS(606), + [anon_sym_LT_LT_EQ] = ACTIONS(606), + [anon_sym_GT_GT_EQ] = ACTIONS(606), + [anon_sym_yield] = ACTIONS(608), + [anon_sym_move] = ACTIONS(608), + [anon_sym_DOT] = ACTIONS(608), + [sym_integer_literal] = ACTIONS(606), + [aux_sym_string_literal_token1] = ACTIONS(606), + [sym_char_literal] = ACTIONS(606), + [anon_sym_true] = ACTIONS(608), + [anon_sym_false] = ACTIONS(608), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(608), + [sym_super] = ACTIONS(608), + [sym_crate] = ACTIONS(608), + [sym_metavariable] = ACTIONS(606), + [sym_raw_string_literal] = ACTIONS(606), + [sym_float_literal] = ACTIONS(606), + [sym_block_comment] = ACTIONS(3), + }, + [87] = { + [ts_builtin_sym_end] = ACTIONS(610), + [sym_identifier] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_macro_rules_BANG] = ACTIONS(610), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(612), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(610), + [anon_sym_u8] = ACTIONS(612), + [anon_sym_i8] = ACTIONS(612), + [anon_sym_u16] = ACTIONS(612), + [anon_sym_i16] = ACTIONS(612), + [anon_sym_u32] = ACTIONS(612), + [anon_sym_i32] = ACTIONS(612), + [anon_sym_u64] = ACTIONS(612), + [anon_sym_i64] = ACTIONS(612), + [anon_sym_u128] = ACTIONS(612), + [anon_sym_i128] = ACTIONS(612), + [anon_sym_isize] = ACTIONS(612), + [anon_sym_usize] = ACTIONS(612), + [anon_sym_f32] = ACTIONS(612), + [anon_sym_f64] = ACTIONS(612), + [anon_sym_bool] = ACTIONS(612), + [anon_sym_str] = ACTIONS(612), + [anon_sym_char] = ACTIONS(612), + [anon_sym_SQUOTE] = ACTIONS(612), + [anon_sym_as] = ACTIONS(612), + [anon_sym_async] = ACTIONS(612), + [anon_sym_break] = ACTIONS(612), + [anon_sym_const] = ACTIONS(612), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_default] = ACTIONS(612), + [anon_sym_enum] = ACTIONS(612), + [anon_sym_fn] = ACTIONS(612), + [anon_sym_for] = ACTIONS(612), + [anon_sym_if] = ACTIONS(612), + [anon_sym_impl] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_loop] = ACTIONS(612), + [anon_sym_match] = ACTIONS(612), + [anon_sym_mod] = ACTIONS(612), + [anon_sym_pub] = ACTIONS(612), + [anon_sym_return] = ACTIONS(612), + [anon_sym_static] = ACTIONS(612), + [anon_sym_struct] = ACTIONS(612), + [anon_sym_trait] = ACTIONS(612), + [anon_sym_type] = ACTIONS(612), + [anon_sym_union] = ACTIONS(612), + [anon_sym_unsafe] = ACTIONS(612), + [anon_sym_use] = ACTIONS(612), + [anon_sym_while] = ACTIONS(612), + [anon_sym_POUND] = ACTIONS(610), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_extern] = ACTIONS(612), + [anon_sym_LT] = ACTIONS(612), + [anon_sym_GT] = ACTIONS(612), + [anon_sym_COLON_COLON] = ACTIONS(610), + [anon_sym_AMP] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DOT_DOT_EQ] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(612), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_PIPE_PIPE] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_CARET] = ACTIONS(612), + [anon_sym_EQ_EQ] = ACTIONS(610), + [anon_sym_BANG_EQ] = ACTIONS(610), + [anon_sym_LT_EQ] = ACTIONS(610), + [anon_sym_GT_EQ] = ACTIONS(610), + [anon_sym_LT_LT] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(612), + [anon_sym_SLASH] = ACTIONS(612), + [anon_sym_PERCENT] = ACTIONS(612), + [anon_sym_PLUS_EQ] = ACTIONS(610), + [anon_sym_DASH_EQ] = ACTIONS(610), + [anon_sym_STAR_EQ] = ACTIONS(610), + [anon_sym_SLASH_EQ] = ACTIONS(610), + [anon_sym_PERCENT_EQ] = ACTIONS(610), + [anon_sym_AMP_EQ] = ACTIONS(610), + [anon_sym_PIPE_EQ] = ACTIONS(610), + [anon_sym_CARET_EQ] = ACTIONS(610), + [anon_sym_LT_LT_EQ] = ACTIONS(610), + [anon_sym_GT_GT_EQ] = ACTIONS(610), + [anon_sym_yield] = ACTIONS(612), + [anon_sym_move] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [sym_integer_literal] = ACTIONS(610), + [aux_sym_string_literal_token1] = ACTIONS(610), + [sym_char_literal] = ACTIONS(610), + [anon_sym_true] = ACTIONS(612), + [anon_sym_false] = ACTIONS(612), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(612), + [sym_super] = ACTIONS(612), + [sym_crate] = ACTIONS(612), + [sym_metavariable] = ACTIONS(610), + [sym_raw_string_literal] = ACTIONS(610), + [sym_float_literal] = ACTIONS(610), + [sym_block_comment] = ACTIONS(3), + }, + [88] = { + [ts_builtin_sym_end] = ACTIONS(614), + [sym_identifier] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(614), + [anon_sym_macro_rules_BANG] = ACTIONS(614), + [anon_sym_LPAREN] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_RBRACE] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_STAR] = ACTIONS(616), + [anon_sym_QMARK] = ACTIONS(614), + [anon_sym_u8] = ACTIONS(616), + [anon_sym_i8] = ACTIONS(616), + [anon_sym_u16] = ACTIONS(616), + [anon_sym_i16] = ACTIONS(616), + [anon_sym_u32] = ACTIONS(616), + [anon_sym_i32] = ACTIONS(616), + [anon_sym_u64] = ACTIONS(616), + [anon_sym_i64] = ACTIONS(616), + [anon_sym_u128] = ACTIONS(616), + [anon_sym_i128] = ACTIONS(616), + [anon_sym_isize] = ACTIONS(616), + [anon_sym_usize] = ACTIONS(616), + [anon_sym_f32] = ACTIONS(616), + [anon_sym_f64] = ACTIONS(616), + [anon_sym_bool] = ACTIONS(616), + [anon_sym_str] = ACTIONS(616), + [anon_sym_char] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(616), + [anon_sym_as] = ACTIONS(616), + [anon_sym_async] = ACTIONS(616), + [anon_sym_break] = ACTIONS(616), + [anon_sym_const] = ACTIONS(616), + [anon_sym_continue] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_enum] = ACTIONS(616), + [anon_sym_fn] = ACTIONS(616), + [anon_sym_for] = ACTIONS(616), + [anon_sym_if] = ACTIONS(616), + [anon_sym_impl] = ACTIONS(616), + [anon_sym_let] = ACTIONS(616), + [anon_sym_loop] = ACTIONS(616), + [anon_sym_match] = ACTIONS(616), + [anon_sym_mod] = ACTIONS(616), + [anon_sym_pub] = ACTIONS(616), + [anon_sym_return] = ACTIONS(616), + [anon_sym_static] = ACTIONS(616), + [anon_sym_struct] = ACTIONS(616), + [anon_sym_trait] = ACTIONS(616), + [anon_sym_type] = ACTIONS(616), + [anon_sym_union] = ACTIONS(616), + [anon_sym_unsafe] = ACTIONS(616), + [anon_sym_use] = ACTIONS(616), + [anon_sym_while] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(614), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(616), + [anon_sym_extern] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(614), + [anon_sym_AMP] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(614), + [anon_sym_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_AMP_AMP] = ACTIONS(614), + [anon_sym_PIPE_PIPE] = ACTIONS(614), + [anon_sym_PIPE] = ACTIONS(616), + [anon_sym_CARET] = ACTIONS(616), + [anon_sym_EQ_EQ] = ACTIONS(614), + [anon_sym_BANG_EQ] = ACTIONS(614), + [anon_sym_LT_EQ] = ACTIONS(614), + [anon_sym_GT_EQ] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(616), + [anon_sym_GT_GT] = ACTIONS(616), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PERCENT] = ACTIONS(616), + [anon_sym_PLUS_EQ] = ACTIONS(614), + [anon_sym_DASH_EQ] = ACTIONS(614), + [anon_sym_STAR_EQ] = ACTIONS(614), + [anon_sym_SLASH_EQ] = ACTIONS(614), + [anon_sym_PERCENT_EQ] = ACTIONS(614), + [anon_sym_AMP_EQ] = ACTIONS(614), + [anon_sym_PIPE_EQ] = ACTIONS(614), + [anon_sym_CARET_EQ] = ACTIONS(614), + [anon_sym_LT_LT_EQ] = ACTIONS(614), + [anon_sym_GT_GT_EQ] = ACTIONS(614), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_move] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(616), + [sym_integer_literal] = ACTIONS(614), + [aux_sym_string_literal_token1] = ACTIONS(614), + [sym_char_literal] = ACTIONS(614), + [anon_sym_true] = ACTIONS(616), + [anon_sym_false] = ACTIONS(616), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(616), + [sym_super] = ACTIONS(616), + [sym_crate] = ACTIONS(616), + [sym_metavariable] = ACTIONS(614), + [sym_raw_string_literal] = ACTIONS(614), + [sym_float_literal] = ACTIONS(614), + [sym_block_comment] = ACTIONS(3), + }, + [89] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), [sym__expression] = STATE(1146), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26815,12 +26741,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(618), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [sym_mutable_specifier] = ACTIONS(624), - [anon_sym_DOT_DOT] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(308), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -26838,156 +26764,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [91] = { - [sym_identifier] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_macro_rules_BANG] = ACTIONS(438), - [anon_sym_LPAREN] = ACTIONS(424), - [anon_sym_LBRACE] = ACTIONS(438), - [anon_sym_RBRACE] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(422), - [anon_sym_STAR] = ACTIONS(422), - [anon_sym_QMARK] = ACTIONS(424), - [anon_sym_u8] = ACTIONS(440), - [anon_sym_i8] = ACTIONS(440), - [anon_sym_u16] = ACTIONS(440), - [anon_sym_i16] = ACTIONS(440), - [anon_sym_u32] = ACTIONS(440), - [anon_sym_i32] = ACTIONS(440), - [anon_sym_u64] = ACTIONS(440), - [anon_sym_i64] = ACTIONS(440), - [anon_sym_u128] = ACTIONS(440), - [anon_sym_i128] = ACTIONS(440), - [anon_sym_isize] = ACTIONS(440), - [anon_sym_usize] = ACTIONS(440), - [anon_sym_f32] = ACTIONS(440), - [anon_sym_f64] = ACTIONS(440), - [anon_sym_bool] = ACTIONS(440), - [anon_sym_str] = ACTIONS(440), - [anon_sym_char] = ACTIONS(440), - [anon_sym_SQUOTE] = ACTIONS(440), - [anon_sym_as] = ACTIONS(422), - [anon_sym_async] = ACTIONS(440), - [anon_sym_break] = ACTIONS(440), - [anon_sym_const] = ACTIONS(440), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_default] = ACTIONS(440), - [anon_sym_enum] = ACTIONS(440), - [anon_sym_fn] = ACTIONS(440), - [anon_sym_for] = ACTIONS(440), - [anon_sym_if] = ACTIONS(440), - [anon_sym_impl] = ACTIONS(440), - [anon_sym_let] = ACTIONS(440), - [anon_sym_loop] = ACTIONS(440), - [anon_sym_match] = ACTIONS(440), - [anon_sym_mod] = ACTIONS(440), - [anon_sym_pub] = ACTIONS(440), - [anon_sym_return] = ACTIONS(440), - [anon_sym_static] = ACTIONS(440), - [anon_sym_struct] = ACTIONS(440), - [anon_sym_trait] = ACTIONS(440), - [anon_sym_type] = ACTIONS(440), - [anon_sym_union] = ACTIONS(440), - [anon_sym_unsafe] = ACTIONS(440), - [anon_sym_use] = ACTIONS(440), - [anon_sym_while] = ACTIONS(440), - [anon_sym_POUND] = ACTIONS(438), - [anon_sym_BANG] = ACTIONS(440), - [anon_sym_EQ] = ACTIONS(422), - [anon_sym_extern] = ACTIONS(440), - [anon_sym_LT] = ACTIONS(422), - [anon_sym_GT] = ACTIONS(422), - [anon_sym_COLON_COLON] = ACTIONS(438), - [anon_sym_AMP] = ACTIONS(422), - [anon_sym_DOT_DOT_DOT] = ACTIONS(424), - [anon_sym_DOT_DOT] = ACTIONS(422), - [anon_sym_DOT_DOT_EQ] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(424), - [anon_sym_PIPE_PIPE] = ACTIONS(424), - [anon_sym_PIPE] = ACTIONS(422), - [anon_sym_CARET] = ACTIONS(422), - [anon_sym_EQ_EQ] = ACTIONS(424), - [anon_sym_BANG_EQ] = ACTIONS(424), - [anon_sym_LT_EQ] = ACTIONS(424), - [anon_sym_GT_EQ] = ACTIONS(424), - [anon_sym_LT_LT] = ACTIONS(422), - [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_SLASH] = ACTIONS(422), - [anon_sym_PERCENT] = ACTIONS(422), - [anon_sym_PLUS_EQ] = ACTIONS(424), - [anon_sym_DASH_EQ] = ACTIONS(424), - [anon_sym_STAR_EQ] = ACTIONS(424), - [anon_sym_SLASH_EQ] = ACTIONS(424), - [anon_sym_PERCENT_EQ] = ACTIONS(424), - [anon_sym_AMP_EQ] = ACTIONS(424), - [anon_sym_PIPE_EQ] = ACTIONS(424), - [anon_sym_CARET_EQ] = ACTIONS(424), - [anon_sym_LT_LT_EQ] = ACTIONS(424), - [anon_sym_GT_GT_EQ] = ACTIONS(424), - [anon_sym_yield] = ACTIONS(440), - [anon_sym_move] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(422), - [sym_integer_literal] = ACTIONS(438), - [aux_sym_string_literal_token1] = ACTIONS(438), - [sym_char_literal] = ACTIONS(438), - [anon_sym_true] = ACTIONS(440), - [anon_sym_false] = ACTIONS(440), + [90] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1209), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(620), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(440), - [sym_super] = ACTIONS(440), - [sym_crate] = ACTIONS(440), - [sym_metavariable] = ACTIONS(438), - [sym_raw_string_literal] = ACTIONS(438), - [sym_float_literal] = ACTIONS(438), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [92] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1224), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [91] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1254), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27025,11 +26951,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(626), + [anon_sym_DASH_GT] = ACTIONS(622), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT] = ACTIONS(600), [anon_sym_DASH] = ACTIONS(350), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -27048,51 +26974,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [93] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1215), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [92] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1256), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27130,11 +27056,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(618), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT] = ACTIONS(600), [anon_sym_DASH] = ACTIONS(350), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -27153,55 +27079,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [94] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1154), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [93] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1209), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(624), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -27235,12 +27162,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(626), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(308), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -27258,56 +27184,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [95] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1244), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [94] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1209), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(628), + [anon_sym_RBRACK] = ACTIONS(626), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -27363,56 +27289,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [95] = { + [sym_identifier] = ACTIONS(482), + [anon_sym_SEMI] = ACTIONS(484), + [anon_sym_macro_rules_BANG] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_PLUS] = ACTIONS(486), + [anon_sym_STAR] = ACTIONS(486), + [anon_sym_QMARK] = ACTIONS(484), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_as] = ACTIONS(486), + [anon_sym_async] = ACTIONS(482), + [anon_sym_break] = ACTIONS(482), + [anon_sym_const] = ACTIONS(482), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_default] = ACTIONS(482), + [anon_sym_enum] = ACTIONS(482), + [anon_sym_fn] = ACTIONS(482), + [anon_sym_for] = ACTIONS(482), + [anon_sym_if] = ACTIONS(482), + [anon_sym_impl] = ACTIONS(482), + [anon_sym_let] = ACTIONS(482), + [anon_sym_loop] = ACTIONS(482), + [anon_sym_match] = ACTIONS(482), + [anon_sym_mod] = ACTIONS(482), + [anon_sym_pub] = ACTIONS(482), + [anon_sym_return] = ACTIONS(482), + [anon_sym_static] = ACTIONS(482), + [anon_sym_struct] = ACTIONS(482), + [anon_sym_trait] = ACTIONS(482), + [anon_sym_type] = ACTIONS(482), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(482), + [anon_sym_use] = ACTIONS(482), + [anon_sym_while] = ACTIONS(482), + [anon_sym_POUND] = ACTIONS(480), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(486), + [anon_sym_extern] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(486), + [anon_sym_GT] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(480), + [anon_sym_AMP] = ACTIONS(486), + [anon_sym_DOT_DOT_DOT] = ACTIONS(484), + [anon_sym_DOT_DOT] = ACTIONS(486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(486), + [anon_sym_AMP_AMP] = ACTIONS(484), + [anon_sym_PIPE_PIPE] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_CARET] = ACTIONS(486), + [anon_sym_EQ_EQ] = ACTIONS(484), + [anon_sym_BANG_EQ] = ACTIONS(484), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_LT_LT] = ACTIONS(486), + [anon_sym_GT_GT] = ACTIONS(486), + [anon_sym_SLASH] = ACTIONS(486), + [anon_sym_PERCENT] = ACTIONS(486), + [anon_sym_PLUS_EQ] = ACTIONS(484), + [anon_sym_DASH_EQ] = ACTIONS(484), + [anon_sym_STAR_EQ] = ACTIONS(484), + [anon_sym_SLASH_EQ] = ACTIONS(484), + [anon_sym_PERCENT_EQ] = ACTIONS(484), + [anon_sym_AMP_EQ] = ACTIONS(484), + [anon_sym_PIPE_EQ] = ACTIONS(484), + [anon_sym_CARET_EQ] = ACTIONS(484), + [anon_sym_LT_LT_EQ] = ACTIONS(484), + [anon_sym_GT_GT_EQ] = ACTIONS(484), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(482), + [anon_sym_DOT] = ACTIONS(486), + [sym_integer_literal] = ACTIONS(480), + [aux_sym_string_literal_token1] = ACTIONS(480), + [sym_char_literal] = ACTIONS(480), + [anon_sym_true] = ACTIONS(482), + [anon_sym_false] = ACTIONS(482), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(482), + [sym_super] = ACTIONS(482), + [sym_crate] = ACTIONS(482), + [sym_metavariable] = ACTIONS(480), + [sym_raw_string_literal] = ACTIONS(480), + [sym_float_literal] = ACTIONS(480), + [sym_block_comment] = ACTIONS(3), + }, [96] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1244), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1152), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(630), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -27449,7 +27479,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [sym_mutable_specifier] = ACTIONS(628), + [anon_sym_DOT_DOT] = ACTIONS(466), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27469,154 +27500,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [97] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1236), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1204), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [sym_mutable_specifier] = ACTIONS(630), + [anon_sym_DOT_DOT] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [98] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1211), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1138), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27654,11 +27686,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(622), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_DOT_DOT] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(308), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -27677,50 +27710,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [99] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1292), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1153), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27761,7 +27794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(466), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27781,154 +27814,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [100] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1133), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1080), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [101] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1244), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1211), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27989,258 +28022,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [102] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1250), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [103] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1246), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [104] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1271), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1296), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28300,51 +28125,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [105] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1260), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [103] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1209), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28404,51 +28229,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [106] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1261), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(226), - [sym_match_expression] = STATE(226), - [sym_while_expression] = STATE(226), - [sym_loop_expression] = STATE(226), - [sym_for_expression] = STATE(226), - [sym_const_block] = STATE(226), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2530), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(226), - [sym_async_block] = STATE(226), - [sym_block] = STATE(226), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [104] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1237), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(243), + [sym_match_expression] = STATE(243), + [sym_while_expression] = STATE(243), + [sym_loop_expression] = STATE(243), + [sym_for_expression] = STATE(243), + [sym_const_block] = STATE(243), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2542), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(243), + [sym_async_block] = STATE(243), + [sym_block] = STATE(243), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(632), @@ -28508,51 +28333,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [107] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1253), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [105] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1262), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28612,155 +28437,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [108] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1147), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [109] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1143), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [106] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1283), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28801,7 +28522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28820,51 +28541,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [110] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1140), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [107] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1244), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28905,7 +28626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28924,51 +28645,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [111] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1150), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [108] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1282), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29009,7 +28730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29028,51 +28749,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [112] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1135), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [109] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1281), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29113,7 +28834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29132,51 +28853,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [113] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1145), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [110] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1231), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29217,7 +28938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29236,54 +28957,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [114] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1097), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [111] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1286), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(230), + [sym_match_expression] = STATE(230), + [sym_while_expression] = STATE(230), + [sym_loop_expression] = STATE(230), + [sym_for_expression] = STATE(230), + [sym_const_block] = STATE(230), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2542), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(230), + [sym_async_block] = STATE(230), + [sym_block] = STATE(230), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(632), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -29304,19 +29025,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(634), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(636), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(638), + [anon_sym_if] = ACTIONS(640), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(644), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -29340,51 +29061,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [115] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1144), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [112] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1233), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29425,7 +29146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29444,51 +29165,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [116] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1142), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [113] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1147), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29529,7 +29250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT] = ACTIONS(466), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29548,155 +29269,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [117] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1138), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(280), + [114] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [118] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1274), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [115] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29756,51 +29477,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [119] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1149), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [116] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1136), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29841,7 +29562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT] = ACTIONS(466), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29860,51 +29581,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [120] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1155), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [117] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1139), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29945,7 +29666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT] = ACTIONS(466), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29964,155 +29685,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [121] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1219), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(226), - [sym_match_expression] = STATE(226), - [sym_while_expression] = STATE(226), - [sym_loop_expression] = STATE(226), - [sym_for_expression] = STATE(226), - [sym_const_block] = STATE(226), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2530), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(226), - [sym_async_block] = STATE(226), - [sym_block] = STATE(226), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(634), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(636), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(638), - [anon_sym_if] = ACTIONS(640), - [anon_sym_loop] = ACTIONS(642), - [anon_sym_match] = ACTIONS(644), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(646), - [anon_sym_while] = ACTIONS(648), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [122] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1262), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [118] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1290), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30172,51 +29789,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [123] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1270), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [119] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1144), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30257,7 +29874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(466), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30276,155 +29893,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [124] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1245), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(340), + [120] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1214), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(230), + [sym_match_expression] = STATE(230), + [sym_while_expression] = STATE(230), + [sym_loop_expression] = STATE(230), + [sym_for_expression] = STATE(230), + [sym_const_block] = STATE(230), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2542), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(230), + [sym_async_block] = STATE(230), + [sym_block] = STATE(230), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(632), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), + [anon_sym_async] = ACTIONS(634), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(636), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(638), + [anon_sym_if] = ACTIONS(640), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(644), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(622), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [125] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1230), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [121] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1250), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30484,54 +30101,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [126] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1259), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(242), - [sym_match_expression] = STATE(242), - [sym_while_expression] = STATE(242), - [sym_loop_expression] = STATE(242), - [sym_for_expression] = STATE(242), - [sym_const_block] = STATE(242), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2530), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(242), - [sym_async_block] = STATE(242), - [sym_block] = STATE(242), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [122] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1275), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -30552,19 +30169,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(634), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(636), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(638), - [anon_sym_if] = ACTIONS(640), - [anon_sym_loop] = ACTIONS(642), - [anon_sym_match] = ACTIONS(644), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(646), - [anon_sym_while] = ACTIONS(648), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -30588,51 +30205,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [127] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1221), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [123] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1137), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30673,7 +30290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(466), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30692,51 +30309,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [128] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1207), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [124] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1246), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30777,7 +30394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(600), [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -30796,51 +30413,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [129] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1234), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [125] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1140), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30881,7 +30498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(466), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30900,51 +30517,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [130] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1294), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [126] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1080), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31004,155 +30621,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [131] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1097), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(340), + [127] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1154), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(622), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [132] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1273), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [128] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1206), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [129] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31212,155 +30933,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [133] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1265), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [134] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1285), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [130] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1145), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31401,7 +31018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(466), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31420,155 +31037,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [135] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1280), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(280), + [131] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1080), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [136] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1290), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [132] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1157), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31609,7 +31226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(466), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31628,155 +31245,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [137] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1196), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [138] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1282), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [133] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1242), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31836,51 +31349,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [139] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1210), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [134] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1289), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31940,51 +31453,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [140] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [135] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1299), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32044,54 +31557,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [141] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1266), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [136] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1268), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(243), + [sym_match_expression] = STATE(243), + [sym_while_expression] = STATE(243), + [sym_loop_expression] = STATE(243), + [sym_for_expression] = STATE(243), + [sym_const_block] = STATE(243), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2542), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(243), + [sym_async_block] = STATE(243), + [sym_block] = STATE(243), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(632), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -32112,19 +31625,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(634), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(636), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(638), + [anon_sym_if] = ACTIONS(640), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(644), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -32148,51 +31661,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [142] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1288), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [137] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1141), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32233,7 +31746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(466), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -32252,51 +31765,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [143] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1279), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [138] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1149), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32337,7 +31850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(466), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -32356,51 +31869,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [144] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1258), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [139] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1295), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32460,51 +31973,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [145] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1203), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [140] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1202), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32564,54 +32077,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [146] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1249), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(242), - [sym_match_expression] = STATE(242), - [sym_while_expression] = STATE(242), - [sym_loop_expression] = STATE(242), - [sym_for_expression] = STATE(242), - [sym_const_block] = STATE(242), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2530), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(242), - [sym_async_block] = STATE(242), - [sym_block] = STATE(242), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [141] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1265), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -32632,19 +32145,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(634), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(636), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(638), - [anon_sym_if] = ACTIONS(640), - [anon_sym_loop] = ACTIONS(642), - [anon_sym_match] = ACTIONS(644), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(646), - [anon_sym_while] = ACTIONS(648), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -32668,155 +32181,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [147] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1257), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(280), + [142] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1218), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [148] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1206), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [143] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1223), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32876,51 +32389,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [149] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1097), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [144] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1228), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32980,51 +32493,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [150] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1209), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [145] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33084,51 +32597,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [151] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1276), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [146] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1271), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33188,51 +32701,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [152] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [147] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1276), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33292,51 +32805,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [153] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1222), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [148] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33396,51 +32909,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [154] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1284), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [149] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1298), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33500,51 +33013,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [155] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1263), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [150] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1292), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33604,51 +33117,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [156] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1278), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [151] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1270), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33708,51 +33221,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [157] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1267), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [152] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1280), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33812,51 +33325,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [158] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1264), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [153] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1198), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33916,51 +33429,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [159] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1275), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [154] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1199), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34020,51 +33533,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [160] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1287), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [155] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1293), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34124,467 +33637,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [161] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1220), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(622), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [162] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1232), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(622), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [163] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1241), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(622), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [164] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1255), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(622), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [165] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1256), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [156] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1266), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34644,259 +33741,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [166] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1254), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(340), + [157] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1263), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(622), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [167] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1247), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(340), + [158] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1297), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(622), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [168] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1152), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [159] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1284), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34937,7 +34034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -34956,51 +34053,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [169] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1097), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [160] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1274), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35041,7 +34138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(618), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -35060,51 +34157,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [170] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1242), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [161] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1217), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35145,7 +34242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT] = ACTIONS(600), [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -35164,51 +34261,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [171] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1231), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [162] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1219), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35249,7 +34346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT] = ACTIONS(600), [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -35268,51 +34365,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [172] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1229), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [163] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1294), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35353,7 +34450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT] = ACTIONS(388), [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -35372,51 +34469,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [173] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1233), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [164] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1221), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35457,7 +34554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT] = ACTIONS(600), [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -35476,51 +34573,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [174] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1228), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [165] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1222), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35561,7 +34658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT] = ACTIONS(600), [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -35580,155 +34677,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [175] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1974), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1281), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(966), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [176] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [166] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1232), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35769,7 +34762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(600), [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -35788,51 +34781,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [177] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1240), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [167] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1234), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35873,7 +34866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_DOT_DOT] = ACTIONS(600), [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -35892,51 +34885,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [178] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1286), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [168] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1215), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35996,51 +34989,1091 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [179] = { - [sym_bracketed_type] = STATE(2322), - [sym_generic_function] = STATE(915), - [sym_generic_type_with_turbofish] = STATE(1949), - [sym__expression_except_range] = STATE(915), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(915), - [sym_scoped_identifier] = STATE(1186), - [sym_scoped_type_identifier_in_expression_position] = STATE(2311), - [sym_range_expression] = STATE(1078), - [sym_unary_expression] = STATE(915), - [sym_try_expression] = STATE(915), - [sym_reference_expression] = STATE(915), - [sym_binary_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_compound_assignment_expr] = STATE(915), - [sym_type_cast_expression] = STATE(915), - [sym_return_expression] = STATE(915), - [sym_yield_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_array_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_tuple_expression] = STATE(915), - [sym_unit_expression] = STATE(915), - [sym_struct_expression] = STATE(915), - [sym_if_expression] = STATE(915), - [sym_match_expression] = STATE(915), - [sym_while_expression] = STATE(915), - [sym_loop_expression] = STATE(915), - [sym_for_expression] = STATE(915), - [sym_const_block] = STATE(915), - [sym_closure_expression] = STATE(915), + [169] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1080), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [170] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2501), - [sym_break_expression] = STATE(915), - [sym_continue_expression] = STATE(915), - [sym_index_expression] = STATE(915), - [sym_await_expression] = STATE(915), - [sym_field_expression] = STATE(869), - [sym_unsafe_block] = STATE(915), - [sym_async_block] = STATE(915), - [sym_block] = STATE(915), - [sym__literal] = STATE(915), - [sym_string_literal] = STATE(1079), - [sym_boolean_literal] = STATE(1079), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [171] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1240), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [172] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1247), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [173] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1208), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [174] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1248), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [175] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1155), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [176] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1205), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [177] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1287), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [178] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1300), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [179] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1238), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -36101,49 +36134,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [180] = { - [sym_attribute_item] = STATE(193), - [sym_function_modifiers] = STATE(2432), - [sym_self_parameter] = STATE(1863), - [sym_variadic_parameter] = STATE(1863), - [sym_parameter] = STATE(1863), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1762), - [sym_bracketed_type] = STATE(2488), - [sym_lifetime] = STATE(1864), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2489), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1742), - [sym_scoped_identifier] = STATE(1596), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2158), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1987), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(883), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [181] = { + [sym_bracketed_type] = STATE(2334), + [sym_generic_function] = STATE(847), + [sym_generic_type_with_turbofish] = STATE(1958), + [sym__expression_except_range] = STATE(847), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(847), + [sym_scoped_identifier] = STATE(1188), + [sym_scoped_type_identifier_in_expression_position] = STATE(2323), + [sym_range_expression] = STATE(1085), + [sym_unary_expression] = STATE(847), + [sym_try_expression] = STATE(847), + [sym_reference_expression] = STATE(847), + [sym_binary_expression] = STATE(847), + [sym_assignment_expression] = STATE(847), + [sym_compound_assignment_expr] = STATE(847), + [sym_type_cast_expression] = STATE(847), + [sym_return_expression] = STATE(847), + [sym_yield_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_array_expression] = STATE(847), + [sym_parenthesized_expression] = STATE(847), + [sym_tuple_expression] = STATE(847), + [sym_unit_expression] = STATE(847), + [sym_struct_expression] = STATE(847), + [sym_if_expression] = STATE(847), + [sym_match_expression] = STATE(847), + [sym_while_expression] = STATE(847), + [sym_loop_expression] = STATE(847), + [sym_for_expression] = STATE(847), + [sym_const_block] = STATE(847), + [sym_closure_expression] = STATE(847), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2513), + [sym_break_expression] = STATE(847), + [sym_continue_expression] = STATE(847), + [sym_index_expression] = STATE(847), + [sym_await_expression] = STATE(847), + [sym_field_expression] = STATE(837), + [sym_unsafe_block] = STATE(847), + [sym_async_block] = STATE(847), + [sym_block] = STATE(847), + [sym__literal] = STATE(847), + [sym_string_literal] = STATE(1053), + [sym_boolean_literal] = STATE(1053), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [182] = { + [sym_attribute_item] = STATE(194), + [sym_function_modifiers] = STATE(2473), + [sym_self_parameter] = STATE(1870), + [sym_variadic_parameter] = STATE(1870), + [sym_parameter] = STATE(1870), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1769), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(1873), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1739), + [sym_scoped_identifier] = STATE(1521), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_RPAREN] = ACTIONS(654), @@ -36203,50 +36444,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [181] = { - [sym_attribute_item] = STATE(193), - [sym_function_modifiers] = STATE(2432), - [sym_self_parameter] = STATE(1863), - [sym_variadic_parameter] = STATE(1863), - [sym_parameter] = STATE(1863), - [sym_extern_modifier] = STATE(1551), + [183] = { + [sym_attribute_item] = STATE(196), + [sym_function_modifiers] = STATE(2473), + [sym_self_parameter] = STATE(2089), + [sym_variadic_parameter] = STATE(2089), + [sym_parameter] = STATE(2089), + [sym_extern_modifier] = STATE(1548), [sym__type] = STATE(1762), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(1864), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1706), - [sym_scoped_identifier] = STATE(1502), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1705), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_bracketed_type] = STATE(2500), + [sym_lifetime] = STATE(1873), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2501), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1748), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2165), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(716), [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_RPAREN] = ACTIONS(720), @@ -36306,80 +36547,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [182] = { - [sym_attribute_item] = STATE(193), - [sym_function_modifiers] = STATE(2432), - [sym_self_parameter] = STATE(1863), - [sym_variadic_parameter] = STATE(1863), - [sym_parameter] = STATE(1863), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1762), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(1864), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1706), - [sym_scoped_identifier] = STATE(1502), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1705), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(716), - [anon_sym_LPAREN] = ACTIONS(718), + [184] = { + [sym_attribute_item] = STATE(194), + [sym_function_modifiers] = STATE(2473), + [sym_self_parameter] = STATE(1870), + [sym_variadic_parameter] = STATE(1870), + [sym_parameter] = STATE(1870), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1769), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(1873), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1739), + [sym_scoped_identifier] = STATE(1521), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_RPAREN] = ACTIONS(742), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(722), - [anon_sym_i8] = ACTIONS(722), - [anon_sym_u16] = ACTIONS(722), - [anon_sym_i16] = ACTIONS(722), - [anon_sym_u32] = ACTIONS(722), - [anon_sym_i32] = ACTIONS(722), - [anon_sym_u64] = ACTIONS(722), - [anon_sym_i64] = ACTIONS(722), - [anon_sym_u128] = ACTIONS(722), - [anon_sym_i128] = ACTIONS(722), - [anon_sym_isize] = ACTIONS(722), - [anon_sym_usize] = ACTIONS(722), - [anon_sym_f32] = ACTIONS(722), - [anon_sym_f64] = ACTIONS(722), - [anon_sym_bool] = ACTIONS(722), - [anon_sym_str] = ACTIONS(722), - [anon_sym_char] = ACTIONS(722), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(724), + [anon_sym_default] = ACTIONS(668), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(726), + [anon_sym_union] = ACTIONS(676), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), @@ -36387,9 +36628,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(730), - [anon_sym__] = ACTIONS(732), - [anon_sym_AMP] = ACTIONS(734), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(692), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -36401,58 +36642,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(736), - [sym_super] = ACTIONS(738), - [sym_crate] = ACTIONS(738), - [sym_metavariable] = ACTIONS(740), + [sym_self] = ACTIONS(710), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [183] = { + [185] = { [sym_attribute_item] = STATE(194), - [sym_function_modifiers] = STATE(2432), - [sym_self_parameter] = STATE(1856), - [sym_variadic_parameter] = STATE(1856), - [sym_parameter] = STATE(1856), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1759), - [sym_bracketed_type] = STATE(2488), - [sym_lifetime] = STATE(1864), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2489), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1742), - [sym_scoped_identifier] = STATE(1596), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2158), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_function_modifiers] = STATE(2473), + [sym_self_parameter] = STATE(1870), + [sym_variadic_parameter] = STATE(1870), + [sym_parameter] = STATE(1870), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1769), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(1873), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1739), + [sym_scoped_identifier] = STATE(1521), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1716), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_RPAREN] = ACTIONS(746), @@ -36491,7 +36732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(750), + [anon_sym__] = ACTIONS(690), [anon_sym_AMP] = ACTIONS(692), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), @@ -36512,53 +36753,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [184] = { - [sym_attribute_item] = STATE(193), - [sym_function_modifiers] = STATE(2432), - [sym_self_parameter] = STATE(1863), - [sym_variadic_parameter] = STATE(1863), - [sym_parameter] = STATE(1863), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1762), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(1864), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1706), - [sym_scoped_identifier] = STATE(1502), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1705), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [186] = { + [sym_attribute_item] = STATE(194), + [sym_function_modifiers] = STATE(2473), + [sym_self_parameter] = STATE(1870), + [sym_variadic_parameter] = STATE(1870), + [sym_parameter] = STATE(1870), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1769), + [sym_bracketed_type] = STATE(2500), + [sym_lifetime] = STATE(1873), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2501), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1748), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2165), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(716), [anon_sym_LPAREN] = ACTIONS(718), - [anon_sym_RPAREN] = ACTIONS(752), + [anon_sym_RPAREN] = ACTIONS(750), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), [anon_sym_u8] = ACTIONS(722), @@ -36589,12 +36830,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(754), + [anon_sym_COMMA] = ACTIONS(752), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(730), - [anon_sym__] = ACTIONS(732), + [anon_sym__] = ACTIONS(754), [anon_sym_AMP] = ACTIONS(734), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), @@ -36615,89 +36856,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [185] = { - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2432), - [sym_self_parameter] = STATE(2276), - [sym_variadic_parameter] = STATE(2276), - [sym_parameter] = STATE(2276), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1946), - [sym_bracketed_type] = STATE(2488), - [sym_lifetime] = STATE(1864), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2489), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1742), - [sym_scoped_identifier] = STATE(1596), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2158), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [187] = { + [sym_attribute_item] = STATE(195), + [sym_function_modifiers] = STATE(2473), + [sym_self_parameter] = STATE(2229), + [sym_variadic_parameter] = STATE(2229), + [sym_parameter] = STATE(2229), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1933), + [sym_bracketed_type] = STATE(2500), + [sym_lifetime] = STATE(1873), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2501), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1748), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2165), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_RPAREN] = ACTIONS(756), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(724), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(726), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(730), [anon_sym__] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -36709,97 +36950,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(736), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [186] = { - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2432), - [sym_self_parameter] = STATE(2276), - [sym_variadic_parameter] = STATE(2276), - [sym_parameter] = STATE(2276), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1946), - [sym_bracketed_type] = STATE(2488), - [sym_lifetime] = STATE(1864), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2489), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1742), - [sym_scoped_identifier] = STATE(1596), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2158), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [188] = { + [sym_attribute_item] = STATE(195), + [sym_function_modifiers] = STATE(2473), + [sym_self_parameter] = STATE(2229), + [sym_variadic_parameter] = STATE(2229), + [sym_parameter] = STATE(2229), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1933), + [sym_bracketed_type] = STATE(2500), + [sym_lifetime] = STATE(1873), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2501), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1748), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2165), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_RPAREN] = ACTIONS(760), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(724), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(726), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(730), [anon_sym__] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -36811,97 +37052,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(736), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [187] = { - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2432), - [sym_self_parameter] = STATE(2276), - [sym_variadic_parameter] = STATE(2276), - [sym_parameter] = STATE(2276), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1946), - [sym_bracketed_type] = STATE(2488), - [sym_lifetime] = STATE(1864), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2489), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1742), - [sym_scoped_identifier] = STATE(1596), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2158), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [189] = { + [sym_attribute_item] = STATE(195), + [sym_function_modifiers] = STATE(2473), + [sym_self_parameter] = STATE(2229), + [sym_variadic_parameter] = STATE(2229), + [sym_parameter] = STATE(2229), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1933), + [sym_bracketed_type] = STATE(2500), + [sym_lifetime] = STATE(1873), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2501), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1748), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2165), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_RPAREN] = ACTIONS(762), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(724), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(726), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(730), [anon_sym__] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -36913,97 +37154,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(736), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [188] = { - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2432), - [sym_self_parameter] = STATE(2276), - [sym_variadic_parameter] = STATE(2276), - [sym_parameter] = STATE(2276), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1946), - [sym_bracketed_type] = STATE(2488), - [sym_lifetime] = STATE(1864), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2489), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1742), - [sym_scoped_identifier] = STATE(1596), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2158), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [190] = { + [sym_attribute_item] = STATE(195), + [sym_function_modifiers] = STATE(2473), + [sym_self_parameter] = STATE(2229), + [sym_variadic_parameter] = STATE(2229), + [sym_parameter] = STATE(2229), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1933), + [sym_bracketed_type] = STATE(2500), + [sym_lifetime] = STATE(1873), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2501), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1748), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2165), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_RPAREN] = ACTIONS(764), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(724), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(726), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(730), [anon_sym__] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -37015,97 +37256,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(736), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [189] = { - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2432), - [sym_self_parameter] = STATE(2276), - [sym_variadic_parameter] = STATE(2276), - [sym_parameter] = STATE(2276), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1946), - [sym_bracketed_type] = STATE(2488), - [sym_lifetime] = STATE(1864), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2489), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1742), - [sym_scoped_identifier] = STATE(1596), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2158), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [191] = { + [sym_attribute_item] = STATE(195), + [sym_function_modifiers] = STATE(2473), + [sym_self_parameter] = STATE(2229), + [sym_variadic_parameter] = STATE(2229), + [sym_parameter] = STATE(2229), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1933), + [sym_bracketed_type] = STATE(2500), + [sym_lifetime] = STATE(1873), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2501), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1748), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2165), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_RPAREN] = ACTIONS(766), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(724), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(726), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(730), [anon_sym__] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -37117,97 +37358,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(736), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [190] = { - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2432), - [sym_self_parameter] = STATE(2276), - [sym_variadic_parameter] = STATE(2276), - [sym_parameter] = STATE(2276), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1946), - [sym_bracketed_type] = STATE(2488), - [sym_lifetime] = STATE(1864), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2489), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1742), - [sym_scoped_identifier] = STATE(1596), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2158), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [192] = { + [sym_attribute_item] = STATE(195), + [sym_function_modifiers] = STATE(2473), + [sym_self_parameter] = STATE(2229), + [sym_variadic_parameter] = STATE(2229), + [sym_parameter] = STATE(2229), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1933), + [sym_bracketed_type] = STATE(2500), + [sym_lifetime] = STATE(1873), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2501), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1748), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2165), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_RPAREN] = ACTIONS(768), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(724), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(726), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(730), [anon_sym__] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -37219,96 +37460,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(736), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [191] = { - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2432), - [sym_self_parameter] = STATE(2276), - [sym_variadic_parameter] = STATE(2276), - [sym_parameter] = STATE(2276), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1946), - [sym_bracketed_type] = STATE(2488), - [sym_lifetime] = STATE(1864), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2489), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1742), - [sym_scoped_identifier] = STATE(1596), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2158), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [193] = { + [sym_attribute_item] = STATE(195), + [sym_function_modifiers] = STATE(2473), + [sym_self_parameter] = STATE(2229), + [sym_variadic_parameter] = STATE(2229), + [sym_parameter] = STATE(2229), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1933), + [sym_bracketed_type] = STATE(2500), + [sym_lifetime] = STATE(1873), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2501), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1748), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2165), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(724), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(726), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(730), [anon_sym__] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -37320,94 +37561,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(736), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [192] = { - [sym_function_modifiers] = STATE(2432), - [sym_self_parameter] = STATE(2190), - [sym_variadic_parameter] = STATE(2190), - [sym_parameter] = STATE(2190), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(2069), - [sym_bracketed_type] = STATE(2488), - [sym_lifetime] = STATE(1864), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2489), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1742), - [sym_scoped_identifier] = STATE(1596), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2158), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [194] = { + [sym_function_modifiers] = STATE(2473), + [sym_self_parameter] = STATE(2061), + [sym_variadic_parameter] = STATE(2061), + [sym_parameter] = STATE(2061), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1775), + [sym_bracketed_type] = STATE(2500), + [sym_lifetime] = STATE(1873), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2501), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1748), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2165), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(724), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(726), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(730), [anon_sym__] = ACTIONS(770), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -37419,94 +37660,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [193] = { - [sym_function_modifiers] = STATE(2432), - [sym_self_parameter] = STATE(2052), - [sym_variadic_parameter] = STATE(2052), - [sym_parameter] = STATE(2052), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1773), - [sym_bracketed_type] = STATE(2488), - [sym_lifetime] = STATE(1864), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2489), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1742), - [sym_scoped_identifier] = STATE(1596), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2158), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [sym_self] = ACTIONS(736), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [195] = { + [sym_function_modifiers] = STATE(2473), + [sym_self_parameter] = STATE(2190), + [sym_variadic_parameter] = STATE(2190), + [sym_parameter] = STATE(2190), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(2090), + [sym_bracketed_type] = STATE(2500), + [sym_lifetime] = STATE(1873), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2501), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1748), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2165), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(724), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(726), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(730), [anon_sym__] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -37518,94 +37759,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(736), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [194] = { - [sym_function_modifiers] = STATE(2432), - [sym_self_parameter] = STATE(2110), - [sym_variadic_parameter] = STATE(2110), - [sym_parameter] = STATE(2110), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1769), - [sym_bracketed_type] = STATE(2488), - [sym_lifetime] = STATE(1864), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2489), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1742), - [sym_scoped_identifier] = STATE(1596), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2158), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [196] = { + [sym_function_modifiers] = STATE(2473), + [sym_self_parameter] = STATE(2129), + [sym_variadic_parameter] = STATE(2129), + [sym_parameter] = STATE(2129), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1776), + [sym_bracketed_type] = STATE(2500), + [sym_lifetime] = STATE(1873), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2501), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1748), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2165), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(724), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(726), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(730), [anon_sym__] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(734), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -37617,54 +37858,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(736), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [195] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(2103), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1737), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1787), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [197] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(2128), + [sym_bracketed_type] = STATE(2507), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2508), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1736), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1831), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(776), [anon_sym_LPAREN] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(656), @@ -37722,68 +37963,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [196] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1770), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1706), - [sym_scoped_identifier] = STATE(1502), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1789), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(716), - [anon_sym_LPAREN] = ACTIONS(718), + [198] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1774), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1739), + [sym_scoped_identifier] = STATE(1521), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1792), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_RPAREN] = ACTIONS(804), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(722), - [anon_sym_i8] = ACTIONS(722), - [anon_sym_u16] = ACTIONS(722), - [anon_sym_i16] = ACTIONS(722), - [anon_sym_u32] = ACTIONS(722), - [anon_sym_i32] = ACTIONS(722), - [anon_sym_u64] = ACTIONS(722), - [anon_sym_i64] = ACTIONS(722), - [anon_sym_u128] = ACTIONS(722), - [anon_sym_i128] = ACTIONS(722), - [anon_sym_isize] = ACTIONS(722), - [anon_sym_usize] = ACTIONS(722), - [anon_sym_f32] = ACTIONS(722), - [anon_sym_f64] = ACTIONS(722), - [anon_sym_bool] = ACTIONS(722), - [anon_sym_str] = ACTIONS(722), - [anon_sym_char] = ACTIONS(722), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), @@ -37798,7 +38039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym__] = ACTIONS(792), [anon_sym_AMP] = ACTIONS(812), [anon_sym_dyn] = ACTIONS(696), @@ -37811,76 +38052,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(738), - [sym_super] = ACTIONS(738), - [sym_crate] = ACTIONS(738), - [sym_metavariable] = ACTIONS(740), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [197] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1770), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1706), - [sym_scoped_identifier] = STATE(1502), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1789), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(716), - [anon_sym_LPAREN] = ACTIONS(718), + [199] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1774), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1739), + [sym_scoped_identifier] = STATE(1521), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1792), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_RPAREN] = ACTIONS(814), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(722), - [anon_sym_i8] = ACTIONS(722), - [anon_sym_u16] = ACTIONS(722), - [anon_sym_i16] = ACTIONS(722), - [anon_sym_u32] = ACTIONS(722), - [anon_sym_i32] = ACTIONS(722), - [anon_sym_u64] = ACTIONS(722), - [anon_sym_i64] = ACTIONS(722), - [anon_sym_u128] = ACTIONS(722), - [anon_sym_i128] = ACTIONS(722), - [anon_sym_isize] = ACTIONS(722), - [anon_sym_usize] = ACTIONS(722), - [anon_sym_f32] = ACTIONS(722), - [anon_sym_f64] = ACTIONS(722), - [anon_sym_bool] = ACTIONS(722), - [anon_sym_str] = ACTIONS(722), - [anon_sym_char] = ACTIONS(722), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), @@ -37895,7 +38136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym__] = ACTIONS(792), [anon_sym_AMP] = ACTIONS(812), [anon_sym_dyn] = ACTIONS(696), @@ -37908,76 +38149,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(738), - [sym_super] = ACTIONS(738), - [sym_crate] = ACTIONS(738), - [sym_metavariable] = ACTIONS(740), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [198] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1770), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1706), - [sym_scoped_identifier] = STATE(1502), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1789), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(716), - [anon_sym_LPAREN] = ACTIONS(718), + [200] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1774), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1739), + [sym_scoped_identifier] = STATE(1521), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1792), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_RPAREN] = ACTIONS(816), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(722), - [anon_sym_i8] = ACTIONS(722), - [anon_sym_u16] = ACTIONS(722), - [anon_sym_i16] = ACTIONS(722), - [anon_sym_u32] = ACTIONS(722), - [anon_sym_i32] = ACTIONS(722), - [anon_sym_u64] = ACTIONS(722), - [anon_sym_i64] = ACTIONS(722), - [anon_sym_u128] = ACTIONS(722), - [anon_sym_i128] = ACTIONS(722), - [anon_sym_isize] = ACTIONS(722), - [anon_sym_usize] = ACTIONS(722), - [anon_sym_f32] = ACTIONS(722), - [anon_sym_f64] = ACTIONS(722), - [anon_sym_bool] = ACTIONS(722), - [anon_sym_str] = ACTIONS(722), - [anon_sym_char] = ACTIONS(722), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), @@ -37992,7 +38233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym__] = ACTIONS(792), [anon_sym_AMP] = ACTIONS(812), [anon_sym_dyn] = ACTIONS(696), @@ -38005,15 +38246,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(738), - [sym_super] = ACTIONS(738), - [sym_crate] = ACTIONS(738), - [sym_metavariable] = ACTIONS(740), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [199] = { + [201] = { [sym_identifier] = ACTIONS(818), [anon_sym_SEMI] = ACTIONS(820), [anon_sym_LPAREN] = ACTIONS(820), @@ -38109,46 +38350,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(820), [sym_block_comment] = ACTIONS(3), }, - [200] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1382), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1706), - [sym_scoped_identifier] = STATE(1502), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1426), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [202] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1377), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1739), + [sym_scoped_identifier] = STATE(1521), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1454), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(806), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(808), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(812), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(822), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [203] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1377), + [sym_bracketed_type] = STATE(2500), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2501), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1748), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1454), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(716), [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_LBRACK] = ACTIONS(656), @@ -38173,11 +38509,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(806), + [anon_sym_default] = ACTIONS(824), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(808), + [anon_sym_union] = ACTIONS(826), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), @@ -38185,7 +38521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(730), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(812), + [anon_sym_AMP] = ACTIONS(828), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), @@ -38196,7 +38532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(738), + [sym_self] = ACTIONS(830), [sym_super] = ACTIONS(738), [sym_crate] = ACTIONS(738), [sym_metavariable] = ACTIONS(740), @@ -38204,46 +38540,331 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [201] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1382), - [sym_bracketed_type] = STATE(2488), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2489), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1742), - [sym_scoped_identifier] = STATE(1596), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1426), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [204] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1400), + [sym_bracketed_type] = STATE(2507), + [sym_lifetime] = STATE(625), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2508), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1736), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1436), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(782), + [anon_sym_i8] = ACTIONS(782), + [anon_sym_u16] = ACTIONS(782), + [anon_sym_i16] = ACTIONS(782), + [anon_sym_u32] = ACTIONS(782), + [anon_sym_i32] = ACTIONS(782), + [anon_sym_u64] = ACTIONS(782), + [anon_sym_i64] = ACTIONS(782), + [anon_sym_u128] = ACTIONS(782), + [anon_sym_i128] = ACTIONS(782), + [anon_sym_isize] = ACTIONS(782), + [anon_sym_usize] = ACTIONS(782), + [anon_sym_f32] = ACTIONS(782), + [anon_sym_f64] = ACTIONS(782), + [anon_sym_bool] = ACTIONS(782), + [anon_sym_str] = ACTIONS(782), + [anon_sym_char] = ACTIONS(782), + [anon_sym_SQUOTE] = ACTIONS(832), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(784), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(786), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(790), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(834), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(800), + [sym_super] = ACTIONS(800), + [sym_crate] = ACTIONS(800), + [sym_metavariable] = ACTIONS(802), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [205] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1377), + [sym_bracketed_type] = STATE(2507), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2508), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1736), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1454), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(782), + [anon_sym_i8] = ACTIONS(782), + [anon_sym_u16] = ACTIONS(782), + [anon_sym_i16] = ACTIONS(782), + [anon_sym_u32] = ACTIONS(782), + [anon_sym_i32] = ACTIONS(782), + [anon_sym_u64] = ACTIONS(782), + [anon_sym_i64] = ACTIONS(782), + [anon_sym_u128] = ACTIONS(782), + [anon_sym_i128] = ACTIONS(782), + [anon_sym_isize] = ACTIONS(782), + [anon_sym_usize] = ACTIONS(782), + [anon_sym_f32] = ACTIONS(782), + [anon_sym_f64] = ACTIONS(782), + [anon_sym_bool] = ACTIONS(782), + [anon_sym_str] = ACTIONS(782), + [anon_sym_char] = ACTIONS(782), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(784), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(786), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(790), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(800), + [sym_super] = ACTIONS(800), + [sym_crate] = ACTIONS(800), + [sym_metavariable] = ACTIONS(802), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [206] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1400), + [sym_bracketed_type] = STATE(2500), + [sym_lifetime] = STATE(624), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2501), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1748), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1436), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), + [anon_sym_SQUOTE] = ACTIONS(832), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(824), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(826), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(730), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(828), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(836), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(838), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [207] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1400), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(624), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1739), + [sym_scoped_identifier] = STATE(1521), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1436), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_LBRACK] = ACTIONS(656), @@ -38265,14 +38886,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(660), [anon_sym_str] = ACTIONS(660), [anon_sym_char] = ACTIONS(660), - [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_SQUOTE] = ACTIONS(832), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(822), + [anon_sym_default] = ACTIONS(806), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(824), + [anon_sym_union] = ACTIONS(808), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), @@ -38280,9 +38901,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(812), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(796), + [sym_mutable_specifier] = ACTIONS(840), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -38291,7 +38912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(712), + [sym_self] = ACTIONS(842), [sym_super] = ACTIONS(712), [sym_crate] = ACTIONS(712), [sym_metavariable] = ACTIONS(714), @@ -38299,46 +38920,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [202] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1393), - [sym_bracketed_type] = STATE(2488), - [sym_lifetime] = STATE(622), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2489), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1742), - [sym_scoped_identifier] = STATE(1596), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1448), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [208] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1400), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(625), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1739), + [sym_scoped_identifier] = STATE(1521), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1436), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_LBRACK] = ACTIONS(656), @@ -38360,14 +38981,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(660), [anon_sym_str] = ACTIONS(660), [anon_sym_char] = ACTIONS(660), - [anon_sym_SQUOTE] = ACTIONS(828), + [anon_sym_SQUOTE] = ACTIONS(832), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(822), + [anon_sym_default] = ACTIONS(806), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(824), + [anon_sym_union] = ACTIONS(808), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), @@ -38375,9 +38996,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(812), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(830), + [sym_mutable_specifier] = ACTIONS(844), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -38386,7 +39007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(832), + [sym_self] = ACTIONS(712), [sym_super] = ACTIONS(712), [sym_crate] = ACTIONS(712), [sym_metavariable] = ACTIONS(714), @@ -38394,46 +39015,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [203] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1382), - [sym_bracketed_type] = STATE(2488), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2489), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1742), - [sym_scoped_identifier] = STATE(1596), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1426), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [209] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1377), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1739), + [sym_scoped_identifier] = STATE(1521), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1454), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_LBRACK] = ACTIONS(656), @@ -38458,101 +39079,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(822), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(824), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(826), - [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(834), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [204] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1382), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1706), - [sym_scoped_identifier] = STATE(1502), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1426), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(716), - [anon_sym_LPAREN] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(722), - [anon_sym_i8] = ACTIONS(722), - [anon_sym_u16] = ACTIONS(722), - [anon_sym_i16] = ACTIONS(722), - [anon_sym_u32] = ACTIONS(722), - [anon_sym_i32] = ACTIONS(722), - [anon_sym_u64] = ACTIONS(722), - [anon_sym_i64] = ACTIONS(722), - [anon_sym_u128] = ACTIONS(722), - [anon_sym_i128] = ACTIONS(722), - [anon_sym_isize] = ACTIONS(722), - [anon_sym_usize] = ACTIONS(722), - [anon_sym_f32] = ACTIONS(722), - [anon_sym_f64] = ACTIONS(722), - [anon_sym_bool] = ACTIONS(722), - [anon_sym_str] = ACTIONS(722), - [anon_sym_char] = ACTIONS(722), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(666), [anon_sym_default] = ACTIONS(806), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), @@ -38563,7 +39089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym__] = ACTIONS(792), [anon_sym_AMP] = ACTIONS(812), [anon_sym_dyn] = ACTIONS(696), @@ -38576,196 +39102,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(836), - [sym_super] = ACTIONS(738), - [sym_crate] = ACTIONS(738), - [sym_metavariable] = ACTIONS(740), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [205] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1393), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(624), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1737), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1448), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(778), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(782), - [anon_sym_i8] = ACTIONS(782), - [anon_sym_u16] = ACTIONS(782), - [anon_sym_i16] = ACTIONS(782), - [anon_sym_u32] = ACTIONS(782), - [anon_sym_i32] = ACTIONS(782), - [anon_sym_u64] = ACTIONS(782), - [anon_sym_i64] = ACTIONS(782), - [anon_sym_u128] = ACTIONS(782), - [anon_sym_i128] = ACTIONS(782), - [anon_sym_isize] = ACTIONS(782), - [anon_sym_usize] = ACTIONS(782), - [anon_sym_f32] = ACTIONS(782), - [anon_sym_f64] = ACTIONS(782), - [anon_sym_bool] = ACTIONS(782), - [anon_sym_str] = ACTIONS(782), - [anon_sym_char] = ACTIONS(782), - [anon_sym_SQUOTE] = ACTIONS(828), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(784), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(786), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(790), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(794), - [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(838), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(800), - [sym_super] = ACTIONS(800), - [sym_crate] = ACTIONS(800), - [sym_metavariable] = ACTIONS(802), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [206] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1393), - [sym_bracketed_type] = STATE(2488), - [sym_lifetime] = STATE(624), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2489), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1742), - [sym_scoped_identifier] = STATE(1596), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1448), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), - [anon_sym_SQUOTE] = ACTIONS(828), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(822), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(824), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(826), - [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(840), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(712), [sym_super] = ACTIONS(712), [sym_crate] = ACTIONS(712), @@ -38774,46 +39110,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [207] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1393), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(622), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1706), - [sym_scoped_identifier] = STATE(1502), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1448), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [210] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1400), + [sym_bracketed_type] = STATE(2500), + [sym_lifetime] = STATE(625), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2501), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1748), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1436), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(716), [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_LBRACK] = ACTIONS(656), @@ -38835,14 +39171,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(722), [anon_sym_str] = ACTIONS(722), [anon_sym_char] = ACTIONS(722), - [anon_sym_SQUOTE] = ACTIONS(828), + [anon_sym_SQUOTE] = ACTIONS(832), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(806), + [anon_sym_default] = ACTIONS(824), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(808), + [anon_sym_union] = ACTIONS(826), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), @@ -38850,9 +39186,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(730), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(812), + [anon_sym_AMP] = ACTIONS(828), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(842), + [sym_mutable_specifier] = ACTIONS(846), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -38861,7 +39197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(844), + [sym_self] = ACTIONS(738), [sym_super] = ACTIONS(738), [sym_crate] = ACTIONS(738), [sym_metavariable] = ACTIONS(740), @@ -38869,141 +39205,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [208] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1382), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1737), - [sym_scoped_identifier] = STATE(1548), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1426), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(778), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(782), - [anon_sym_i8] = ACTIONS(782), - [anon_sym_u16] = ACTIONS(782), - [anon_sym_i16] = ACTIONS(782), - [anon_sym_u32] = ACTIONS(782), - [anon_sym_i32] = ACTIONS(782), - [anon_sym_u64] = ACTIONS(782), - [anon_sym_i64] = ACTIONS(782), - [anon_sym_u128] = ACTIONS(782), - [anon_sym_i128] = ACTIONS(782), - [anon_sym_isize] = ACTIONS(782), - [anon_sym_usize] = ACTIONS(782), - [anon_sym_f32] = ACTIONS(782), - [anon_sym_f64] = ACTIONS(782), - [anon_sym_bool] = ACTIONS(782), - [anon_sym_str] = ACTIONS(782), - [anon_sym_char] = ACTIONS(782), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(784), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(786), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(790), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(794), - [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(800), - [sym_super] = ACTIONS(800), - [sym_crate] = ACTIONS(800), - [sym_metavariable] = ACTIONS(802), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [209] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1393), - [sym_bracketed_type] = STATE(2492), - [sym_lifetime] = STATE(624), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2493), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1706), - [sym_scoped_identifier] = STATE(1502), - [sym_scoped_type_identifier] = STATE(1468), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1448), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [211] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1377), + [sym_bracketed_type] = STATE(2500), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2501), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1748), + [sym_scoped_identifier] = STATE(1605), + [sym_scoped_type_identifier] = STATE(1472), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1454), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(716), [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_LBRACK] = ACTIONS(656), @@ -39025,14 +39266,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(722), [anon_sym_str] = ACTIONS(722), [anon_sym_char] = ACTIONS(722), - [anon_sym_SQUOTE] = ACTIONS(828), + [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(806), + [anon_sym_default] = ACTIONS(824), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(808), + [anon_sym_union] = ACTIONS(826), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), @@ -39040,9 +39281,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(730), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(812), + [anon_sym_AMP] = ACTIONS(828), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(846), + [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -39059,30 +39300,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [210] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1450), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), + [212] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1441), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), [sym_identifier] = ACTIONS(848), [anon_sym_LPAREN] = ACTIONS(850), [anon_sym_LBRACE] = ACTIONS(850), @@ -39146,14 +39387,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(850), [sym_block_comment] = ACTIONS(3), }, - [211] = { - [sym__attr] = STATE(2336), - [sym_custom_attr] = STATE(2336), - [sym_built_in_attr] = STATE(2336), - [sym__built_in_attr_path] = STATE(1766), - [sym_bracketed_type] = STATE(2322), - [sym_generic_type_with_turbofish] = STATE(2525), - [sym_scoped_identifier] = STATE(1563), + [213] = { + [sym__attr] = STATE(2527), + [sym_custom_attr] = STATE(2527), + [sym_built_in_attr] = STATE(2527), + [sym__built_in_attr_path] = STATE(1859), + [sym_bracketed_type] = STATE(2334), + [sym_generic_type_with_turbofish] = STATE(2530), + [sym_scoped_identifier] = STATE(1598), [sym_identifier] = ACTIONS(852), [anon_sym_path] = ACTIONS(854), [anon_sym_u8] = ACTIONS(856), @@ -39228,14 +39469,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(862), [sym_block_comment] = ACTIONS(3), }, - [212] = { + [214] = { [sym__attr] = STATE(2547), [sym_custom_attr] = STATE(2547), [sym_built_in_attr] = STATE(2547), - [sym__built_in_attr_path] = STATE(1766), - [sym_bracketed_type] = STATE(2322), - [sym_generic_type_with_turbofish] = STATE(2525), - [sym_scoped_identifier] = STATE(1563), + [sym__built_in_attr_path] = STATE(1859), + [sym_bracketed_type] = STATE(2334), + [sym_generic_type_with_turbofish] = STATE(2530), + [sym_scoped_identifier] = STATE(1598), [sym_identifier] = ACTIONS(852), [anon_sym_path] = ACTIONS(854), [anon_sym_u8] = ACTIONS(856), @@ -39310,96 +39551,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(862), [sym_block_comment] = ACTIONS(3), }, - [213] = { - [sym_else_clause] = STATE(223), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(396), - [anon_sym_RBRACE] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(396), - [anon_sym_PLUS] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_QMARK] = ACTIONS(396), - [anon_sym_u8] = ACTIONS(398), - [anon_sym_i8] = ACTIONS(398), - [anon_sym_u16] = ACTIONS(398), - [anon_sym_i16] = ACTIONS(398), - [anon_sym_u32] = ACTIONS(398), - [anon_sym_i32] = ACTIONS(398), - [anon_sym_u64] = ACTIONS(398), - [anon_sym_i64] = ACTIONS(398), - [anon_sym_u128] = ACTIONS(398), - [anon_sym_i128] = ACTIONS(398), - [anon_sym_isize] = ACTIONS(398), - [anon_sym_usize] = ACTIONS(398), - [anon_sym_f32] = ACTIONS(398), - [anon_sym_f64] = ACTIONS(398), - [anon_sym_bool] = ACTIONS(398), - [anon_sym_str] = ACTIONS(398), - [anon_sym_char] = ACTIONS(398), - [anon_sym_as] = ACTIONS(398), - [anon_sym_const] = ACTIONS(398), - [anon_sym_default] = ACTIONS(398), - [anon_sym_union] = ACTIONS(398), - [anon_sym_POUND] = ACTIONS(396), - [anon_sym_EQ] = ACTIONS(398), - [anon_sym_COMMA] = ACTIONS(396), - [anon_sym_ref] = ACTIONS(398), - [anon_sym_LT] = ACTIONS(398), - [anon_sym_GT] = ACTIONS(398), - [anon_sym_COLON_COLON] = ACTIONS(396), - [anon_sym__] = ACTIONS(398), - [anon_sym_AMP] = ACTIONS(398), - [anon_sym_DOT_DOT_DOT] = ACTIONS(396), - [sym_mutable_specifier] = ACTIONS(398), - [anon_sym_DOT_DOT] = ACTIONS(398), - [anon_sym_DOT_DOT_EQ] = ACTIONS(396), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_AMP_AMP] = ACTIONS(396), - [anon_sym_PIPE_PIPE] = ACTIONS(396), - [anon_sym_PIPE] = ACTIONS(398), - [anon_sym_CARET] = ACTIONS(398), - [anon_sym_EQ_EQ] = ACTIONS(396), - [anon_sym_BANG_EQ] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(396), - [anon_sym_GT_EQ] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(398), - [anon_sym_GT_GT] = ACTIONS(398), - [anon_sym_SLASH] = ACTIONS(398), - [anon_sym_PERCENT] = ACTIONS(398), - [anon_sym_PLUS_EQ] = ACTIONS(396), - [anon_sym_DASH_EQ] = ACTIONS(396), - [anon_sym_STAR_EQ] = ACTIONS(396), - [anon_sym_SLASH_EQ] = ACTIONS(396), - [anon_sym_PERCENT_EQ] = ACTIONS(396), - [anon_sym_AMP_EQ] = ACTIONS(396), - [anon_sym_PIPE_EQ] = ACTIONS(396), - [anon_sym_CARET_EQ] = ACTIONS(396), - [anon_sym_LT_LT_EQ] = ACTIONS(396), - [anon_sym_GT_GT_EQ] = ACTIONS(396), - [anon_sym_else] = ACTIONS(864), - [anon_sym_DOT] = ACTIONS(398), - [sym_integer_literal] = ACTIONS(396), - [aux_sym_string_literal_token1] = ACTIONS(396), - [sym_char_literal] = ACTIONS(396), - [anon_sym_true] = ACTIONS(398), - [anon_sym_false] = ACTIONS(398), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(398), - [sym_super] = ACTIONS(398), - [sym_crate] = ACTIONS(398), - [sym_metavariable] = ACTIONS(396), - [sym_raw_string_literal] = ACTIONS(396), - [sym_float_literal] = ACTIONS(396), - [sym_block_comment] = ACTIONS(3), - }, - [214] = { - [sym__attr] = STATE(2535), - [sym_custom_attr] = STATE(2535), - [sym_built_in_attr] = STATE(2535), - [sym__built_in_attr_path] = STATE(1766), - [sym_bracketed_type] = STATE(2322), - [sym_generic_type_with_turbofish] = STATE(2525), - [sym_scoped_identifier] = STATE(1563), + [215] = { + [sym__attr] = STATE(2359), + [sym_custom_attr] = STATE(2359), + [sym_built_in_attr] = STATE(2359), + [sym__built_in_attr_path] = STATE(1859), + [sym_bracketed_type] = STATE(2334), + [sym_generic_type_with_turbofish] = STATE(2530), + [sym_scoped_identifier] = STATE(1598), [sym_identifier] = ACTIONS(852), [anon_sym_path] = ACTIONS(854), [anon_sym_u8] = ACTIONS(856), @@ -39474,14 +39633,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(862), [sym_block_comment] = ACTIONS(3), }, - [215] = { - [sym__attr] = STATE(2314), - [sym_custom_attr] = STATE(2314), - [sym_built_in_attr] = STATE(2314), - [sym__built_in_attr_path] = STATE(1766), - [sym_bracketed_type] = STATE(2322), - [sym_generic_type_with_turbofish] = STATE(2525), - [sym_scoped_identifier] = STATE(1563), + [216] = { + [sym__attr] = STATE(2340), + [sym_custom_attr] = STATE(2340), + [sym_built_in_attr] = STATE(2340), + [sym__built_in_attr_path] = STATE(1859), + [sym_bracketed_type] = STATE(2334), + [sym_generic_type_with_turbofish] = STATE(2530), + [sym_scoped_identifier] = STATE(1598), [sym_identifier] = ACTIONS(852), [anon_sym_path] = ACTIONS(854), [anon_sym_u8] = ACTIONS(856), @@ -39556,14 +39715,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(862), [sym_block_comment] = ACTIONS(3), }, - [216] = { - [sym__attr] = STATE(2362), - [sym_custom_attr] = STATE(2362), - [sym_built_in_attr] = STATE(2362), - [sym__built_in_attr_path] = STATE(1766), - [sym_bracketed_type] = STATE(2322), - [sym_generic_type_with_turbofish] = STATE(2525), - [sym_scoped_identifier] = STATE(1563), + [217] = { + [sym__attr] = STATE(2377), + [sym_custom_attr] = STATE(2377), + [sym_built_in_attr] = STATE(2377), + [sym__built_in_attr_path] = STATE(1859), + [sym_bracketed_type] = STATE(2334), + [sym_generic_type_with_turbofish] = STATE(2530), + [sym_scoped_identifier] = STATE(1598), [sym_identifier] = ACTIONS(852), [anon_sym_path] = ACTIONS(854), [anon_sym_u8] = ACTIONS(856), @@ -39638,14 +39797,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(862), [sym_block_comment] = ACTIONS(3), }, - [217] = { - [sym__attr] = STATE(2426), - [sym_custom_attr] = STATE(2426), - [sym_built_in_attr] = STATE(2426), - [sym__built_in_attr_path] = STATE(1766), - [sym_bracketed_type] = STATE(2322), - [sym_generic_type_with_turbofish] = STATE(2525), - [sym_scoped_identifier] = STATE(1563), + [218] = { + [sym__attr] = STATE(2436), + [sym_custom_attr] = STATE(2436), + [sym_built_in_attr] = STATE(2436), + [sym__built_in_attr_path] = STATE(1859), + [sym_bracketed_type] = STATE(2334), + [sym_generic_type_with_turbofish] = STATE(2530), + [sym_scoped_identifier] = STATE(1598), [sym_identifier] = ACTIONS(852), [anon_sym_path] = ACTIONS(854), [anon_sym_u8] = ACTIONS(856), @@ -39720,14 +39879,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(862), [sym_block_comment] = ACTIONS(3), }, - [218] = { - [sym__attr] = STATE(2328), - [sym_custom_attr] = STATE(2328), - [sym_built_in_attr] = STATE(2328), - [sym__built_in_attr_path] = STATE(1766), - [sym_bracketed_type] = STATE(2322), - [sym_generic_type_with_turbofish] = STATE(2525), - [sym_scoped_identifier] = STATE(1563), + [219] = { + [sym_else_clause] = STATE(236), + [sym_identifier] = ACTIONS(400), + [anon_sym_LPAREN] = ACTIONS(398), + [anon_sym_RBRACE] = ACTIONS(398), + [anon_sym_LBRACK] = ACTIONS(398), + [anon_sym_PLUS] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(400), + [anon_sym_QMARK] = ACTIONS(398), + [anon_sym_u8] = ACTIONS(400), + [anon_sym_i8] = ACTIONS(400), + [anon_sym_u16] = ACTIONS(400), + [anon_sym_i16] = ACTIONS(400), + [anon_sym_u32] = ACTIONS(400), + [anon_sym_i32] = ACTIONS(400), + [anon_sym_u64] = ACTIONS(400), + [anon_sym_i64] = ACTIONS(400), + [anon_sym_u128] = ACTIONS(400), + [anon_sym_i128] = ACTIONS(400), + [anon_sym_isize] = ACTIONS(400), + [anon_sym_usize] = ACTIONS(400), + [anon_sym_f32] = ACTIONS(400), + [anon_sym_f64] = ACTIONS(400), + [anon_sym_bool] = ACTIONS(400), + [anon_sym_str] = ACTIONS(400), + [anon_sym_char] = ACTIONS(400), + [anon_sym_as] = ACTIONS(400), + [anon_sym_const] = ACTIONS(400), + [anon_sym_default] = ACTIONS(400), + [anon_sym_union] = ACTIONS(400), + [anon_sym_POUND] = ACTIONS(398), + [anon_sym_EQ] = ACTIONS(400), + [anon_sym_COMMA] = ACTIONS(398), + [anon_sym_ref] = ACTIONS(400), + [anon_sym_LT] = ACTIONS(400), + [anon_sym_GT] = ACTIONS(400), + [anon_sym_COLON_COLON] = ACTIONS(398), + [anon_sym__] = ACTIONS(400), + [anon_sym_AMP] = ACTIONS(400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(398), + [sym_mutable_specifier] = ACTIONS(400), + [anon_sym_DOT_DOT] = ACTIONS(400), + [anon_sym_DOT_DOT_EQ] = ACTIONS(398), + [anon_sym_DASH] = ACTIONS(400), + [anon_sym_AMP_AMP] = ACTIONS(398), + [anon_sym_PIPE_PIPE] = ACTIONS(398), + [anon_sym_PIPE] = ACTIONS(400), + [anon_sym_CARET] = ACTIONS(400), + [anon_sym_EQ_EQ] = ACTIONS(398), + [anon_sym_BANG_EQ] = ACTIONS(398), + [anon_sym_LT_EQ] = ACTIONS(398), + [anon_sym_GT_EQ] = ACTIONS(398), + [anon_sym_LT_LT] = ACTIONS(400), + [anon_sym_GT_GT] = ACTIONS(400), + [anon_sym_SLASH] = ACTIONS(400), + [anon_sym_PERCENT] = ACTIONS(400), + [anon_sym_PLUS_EQ] = ACTIONS(398), + [anon_sym_DASH_EQ] = ACTIONS(398), + [anon_sym_STAR_EQ] = ACTIONS(398), + [anon_sym_SLASH_EQ] = ACTIONS(398), + [anon_sym_PERCENT_EQ] = ACTIONS(398), + [anon_sym_AMP_EQ] = ACTIONS(398), + [anon_sym_PIPE_EQ] = ACTIONS(398), + [anon_sym_CARET_EQ] = ACTIONS(398), + [anon_sym_LT_LT_EQ] = ACTIONS(398), + [anon_sym_GT_GT_EQ] = ACTIONS(398), + [anon_sym_else] = ACTIONS(864), + [anon_sym_DOT] = ACTIONS(400), + [sym_integer_literal] = ACTIONS(398), + [aux_sym_string_literal_token1] = ACTIONS(398), + [sym_char_literal] = ACTIONS(398), + [anon_sym_true] = ACTIONS(400), + [anon_sym_false] = ACTIONS(400), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(400), + [sym_super] = ACTIONS(400), + [sym_crate] = ACTIONS(400), + [sym_metavariable] = ACTIONS(398), + [sym_raw_string_literal] = ACTIONS(398), + [sym_float_literal] = ACTIONS(398), + [sym_block_comment] = ACTIONS(3), + }, + [220] = { + [sym__attr] = STATE(2326), + [sym_custom_attr] = STATE(2326), + [sym_built_in_attr] = STATE(2326), + [sym__built_in_attr_path] = STATE(1859), + [sym_bracketed_type] = STATE(2334), + [sym_generic_type_with_turbofish] = STATE(2530), + [sym_scoped_identifier] = STATE(1598), [sym_identifier] = ACTIONS(852), [anon_sym_path] = ACTIONS(854), [anon_sym_u8] = ACTIONS(856), @@ -39802,7 +40043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(862), [sym_block_comment] = ACTIONS(3), }, - [219] = { + [221] = { [sym_identifier] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(406), [anon_sym_RBRACE] = ACTIONS(406), @@ -39883,7 +40124,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(406), [sym_block_comment] = ACTIONS(3), }, - [220] = { + [222] = { + [sym_identifier] = ACTIONS(416), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_RBRACE] = ACTIONS(414), + [anon_sym_LBRACK] = ACTIONS(414), + [anon_sym_PLUS] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(416), + [anon_sym_QMARK] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(416), + [anon_sym_i8] = ACTIONS(416), + [anon_sym_u16] = ACTIONS(416), + [anon_sym_i16] = ACTIONS(416), + [anon_sym_u32] = ACTIONS(416), + [anon_sym_i32] = ACTIONS(416), + [anon_sym_u64] = ACTIONS(416), + [anon_sym_i64] = ACTIONS(416), + [anon_sym_u128] = ACTIONS(416), + [anon_sym_i128] = ACTIONS(416), + [anon_sym_isize] = ACTIONS(416), + [anon_sym_usize] = ACTIONS(416), + [anon_sym_f32] = ACTIONS(416), + [anon_sym_f64] = ACTIONS(416), + [anon_sym_bool] = ACTIONS(416), + [anon_sym_str] = ACTIONS(416), + [anon_sym_char] = ACTIONS(416), + [anon_sym_as] = ACTIONS(416), + [anon_sym_const] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_union] = ACTIONS(416), + [anon_sym_POUND] = ACTIONS(414), + [anon_sym_EQ] = ACTIONS(416), + [anon_sym_COMMA] = ACTIONS(414), + [anon_sym_ref] = ACTIONS(416), + [anon_sym_LT] = ACTIONS(416), + [anon_sym_GT] = ACTIONS(416), + [anon_sym_COLON_COLON] = ACTIONS(414), + [anon_sym__] = ACTIONS(416), + [anon_sym_AMP] = ACTIONS(416), + [anon_sym_DOT_DOT_DOT] = ACTIONS(414), + [sym_mutable_specifier] = ACTIONS(416), + [anon_sym_DOT_DOT] = ACTIONS(416), + [anon_sym_DOT_DOT_EQ] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(416), + [anon_sym_AMP_AMP] = ACTIONS(414), + [anon_sym_PIPE_PIPE] = ACTIONS(414), + [anon_sym_PIPE] = ACTIONS(416), + [anon_sym_CARET] = ACTIONS(416), + [anon_sym_EQ_EQ] = ACTIONS(414), + [anon_sym_BANG_EQ] = ACTIONS(414), + [anon_sym_LT_EQ] = ACTIONS(414), + [anon_sym_GT_EQ] = ACTIONS(414), + [anon_sym_LT_LT] = ACTIONS(416), + [anon_sym_GT_GT] = ACTIONS(416), + [anon_sym_SLASH] = ACTIONS(416), + [anon_sym_PERCENT] = ACTIONS(416), + [anon_sym_PLUS_EQ] = ACTIONS(414), + [anon_sym_DASH_EQ] = ACTIONS(414), + [anon_sym_STAR_EQ] = ACTIONS(414), + [anon_sym_SLASH_EQ] = ACTIONS(414), + [anon_sym_PERCENT_EQ] = ACTIONS(414), + [anon_sym_AMP_EQ] = ACTIONS(414), + [anon_sym_PIPE_EQ] = ACTIONS(414), + [anon_sym_CARET_EQ] = ACTIONS(414), + [anon_sym_LT_LT_EQ] = ACTIONS(414), + [anon_sym_GT_GT_EQ] = ACTIONS(414), + [anon_sym_else] = ACTIONS(416), + [anon_sym_DOT] = ACTIONS(416), + [sym_integer_literal] = ACTIONS(414), + [aux_sym_string_literal_token1] = ACTIONS(414), + [sym_char_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(416), + [sym_super] = ACTIONS(416), + [sym_crate] = ACTIONS(416), + [sym_metavariable] = ACTIONS(414), + [sym_raw_string_literal] = ACTIONS(414), + [sym_float_literal] = ACTIONS(414), + [sym_block_comment] = ACTIONS(3), + }, + [223] = { [sym_identifier] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(410), [anon_sym_RBRACE] = ACTIONS(410), @@ -39964,248 +40286,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(410), [sym_block_comment] = ACTIONS(3), }, - [221] = { - [sym_identifier] = ACTIONS(416), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_PLUS] = ACTIONS(416), - [anon_sym_STAR] = ACTIONS(416), - [anon_sym_QMARK] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_as] = ACTIONS(416), - [anon_sym_const] = ACTIONS(416), - [anon_sym_default] = ACTIONS(416), - [anon_sym_union] = ACTIONS(416), - [anon_sym_POUND] = ACTIONS(414), - [anon_sym_EQ] = ACTIONS(416), - [anon_sym_COMMA] = ACTIONS(414), - [anon_sym_ref] = ACTIONS(416), - [anon_sym_LT] = ACTIONS(416), - [anon_sym_GT] = ACTIONS(416), - [anon_sym_COLON_COLON] = ACTIONS(414), - [anon_sym__] = ACTIONS(416), - [anon_sym_AMP] = ACTIONS(416), - [anon_sym_DOT_DOT_DOT] = ACTIONS(414), - [sym_mutable_specifier] = ACTIONS(416), - [anon_sym_DOT_DOT] = ACTIONS(416), - [anon_sym_DOT_DOT_EQ] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(416), - [anon_sym_AMP_AMP] = ACTIONS(414), - [anon_sym_PIPE_PIPE] = ACTIONS(414), - [anon_sym_PIPE] = ACTIONS(416), - [anon_sym_CARET] = ACTIONS(416), - [anon_sym_EQ_EQ] = ACTIONS(414), - [anon_sym_BANG_EQ] = ACTIONS(414), - [anon_sym_LT_EQ] = ACTIONS(414), - [anon_sym_GT_EQ] = ACTIONS(414), - [anon_sym_LT_LT] = ACTIONS(416), - [anon_sym_GT_GT] = ACTIONS(416), - [anon_sym_SLASH] = ACTIONS(416), - [anon_sym_PERCENT] = ACTIONS(416), - [anon_sym_PLUS_EQ] = ACTIONS(414), - [anon_sym_DASH_EQ] = ACTIONS(414), - [anon_sym_STAR_EQ] = ACTIONS(414), - [anon_sym_SLASH_EQ] = ACTIONS(414), - [anon_sym_PERCENT_EQ] = ACTIONS(414), - [anon_sym_AMP_EQ] = ACTIONS(414), - [anon_sym_PIPE_EQ] = ACTIONS(414), - [anon_sym_CARET_EQ] = ACTIONS(414), - [anon_sym_LT_LT_EQ] = ACTIONS(414), - [anon_sym_GT_GT_EQ] = ACTIONS(414), - [anon_sym_else] = ACTIONS(416), - [anon_sym_DOT] = ACTIONS(416), - [sym_integer_literal] = ACTIONS(414), - [aux_sym_string_literal_token1] = ACTIONS(414), - [sym_char_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(416), - [sym_super] = ACTIONS(416), - [sym_crate] = ACTIONS(416), - [sym_metavariable] = ACTIONS(414), - [sym_raw_string_literal] = ACTIONS(414), - [sym_float_literal] = ACTIONS(414), + [224] = { + [sym_identifier] = ACTIONS(604), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_RBRACE] = ACTIONS(602), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_u8] = ACTIONS(604), + [anon_sym_i8] = ACTIONS(604), + [anon_sym_u16] = ACTIONS(604), + [anon_sym_i16] = ACTIONS(604), + [anon_sym_u32] = ACTIONS(604), + [anon_sym_i32] = ACTIONS(604), + [anon_sym_u64] = ACTIONS(604), + [anon_sym_i64] = ACTIONS(604), + [anon_sym_u128] = ACTIONS(604), + [anon_sym_i128] = ACTIONS(604), + [anon_sym_isize] = ACTIONS(604), + [anon_sym_usize] = ACTIONS(604), + [anon_sym_f32] = ACTIONS(604), + [anon_sym_f64] = ACTIONS(604), + [anon_sym_bool] = ACTIONS(604), + [anon_sym_str] = ACTIONS(604), + [anon_sym_char] = ACTIONS(604), + [anon_sym_as] = ACTIONS(604), + [anon_sym_const] = ACTIONS(604), + [anon_sym_default] = ACTIONS(604), + [anon_sym_union] = ACTIONS(604), + [anon_sym_POUND] = ACTIONS(602), + [anon_sym_EQ] = ACTIONS(604), + [anon_sym_COMMA] = ACTIONS(602), + [anon_sym_ref] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(604), + [anon_sym_GT] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(602), + [anon_sym__] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT_DOT] = ACTIONS(602), + [sym_mutable_specifier] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(604), + [anon_sym_DOT_DOT_EQ] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(602), + [anon_sym_PIPE_PIPE] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(604), + [anon_sym_CARET] = ACTIONS(604), + [anon_sym_EQ_EQ] = ACTIONS(602), + [anon_sym_BANG_EQ] = ACTIONS(602), + [anon_sym_LT_EQ] = ACTIONS(602), + [anon_sym_GT_EQ] = ACTIONS(602), + [anon_sym_LT_LT] = ACTIONS(604), + [anon_sym_GT_GT] = ACTIONS(604), + [anon_sym_SLASH] = ACTIONS(604), + [anon_sym_PERCENT] = ACTIONS(604), + [anon_sym_PLUS_EQ] = ACTIONS(602), + [anon_sym_DASH_EQ] = ACTIONS(602), + [anon_sym_STAR_EQ] = ACTIONS(602), + [anon_sym_SLASH_EQ] = ACTIONS(602), + [anon_sym_PERCENT_EQ] = ACTIONS(602), + [anon_sym_AMP_EQ] = ACTIONS(602), + [anon_sym_PIPE_EQ] = ACTIONS(602), + [anon_sym_CARET_EQ] = ACTIONS(602), + [anon_sym_LT_LT_EQ] = ACTIONS(602), + [anon_sym_GT_GT_EQ] = ACTIONS(602), + [anon_sym_DOT] = ACTIONS(604), + [sym_integer_literal] = ACTIONS(602), + [aux_sym_string_literal_token1] = ACTIONS(602), + [sym_char_literal] = ACTIONS(602), + [anon_sym_true] = ACTIONS(604), + [anon_sym_false] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(604), + [sym_super] = ACTIONS(604), + [sym_crate] = ACTIONS(604), + [sym_metavariable] = ACTIONS(602), + [sym_raw_string_literal] = ACTIONS(602), + [sym_float_literal] = ACTIONS(602), [sym_block_comment] = ACTIONS(3), }, - [222] = { - [sym_identifier] = ACTIONS(514), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(514), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_u8] = ACTIONS(514), - [anon_sym_i8] = ACTIONS(514), - [anon_sym_u16] = ACTIONS(514), - [anon_sym_i16] = ACTIONS(514), - [anon_sym_u32] = ACTIONS(514), - [anon_sym_i32] = ACTIONS(514), - [anon_sym_u64] = ACTIONS(514), - [anon_sym_i64] = ACTIONS(514), - [anon_sym_u128] = ACTIONS(514), - [anon_sym_i128] = ACTIONS(514), - [anon_sym_isize] = ACTIONS(514), - [anon_sym_usize] = ACTIONS(514), - [anon_sym_f32] = ACTIONS(514), - [anon_sym_f64] = ACTIONS(514), - [anon_sym_bool] = ACTIONS(514), - [anon_sym_str] = ACTIONS(514), - [anon_sym_char] = ACTIONS(514), - [anon_sym_as] = ACTIONS(514), - [anon_sym_const] = ACTIONS(514), - [anon_sym_default] = ACTIONS(514), - [anon_sym_union] = ACTIONS(514), - [anon_sym_POUND] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(514), - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_ref] = ACTIONS(514), - [anon_sym_LT] = ACTIONS(514), - [anon_sym_GT] = ACTIONS(514), - [anon_sym_COLON_COLON] = ACTIONS(512), - [anon_sym__] = ACTIONS(514), - [anon_sym_AMP] = ACTIONS(514), - [anon_sym_DOT_DOT_DOT] = ACTIONS(512), - [sym_mutable_specifier] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(514), - [anon_sym_DOT_DOT_EQ] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(514), - [anon_sym_AMP_AMP] = ACTIONS(512), - [anon_sym_PIPE_PIPE] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(514), - [anon_sym_CARET] = ACTIONS(514), - [anon_sym_EQ_EQ] = ACTIONS(512), - [anon_sym_BANG_EQ] = ACTIONS(512), - [anon_sym_LT_EQ] = ACTIONS(512), - [anon_sym_GT_EQ] = ACTIONS(512), - [anon_sym_LT_LT] = ACTIONS(514), - [anon_sym_GT_GT] = ACTIONS(514), - [anon_sym_SLASH] = ACTIONS(514), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_PLUS_EQ] = ACTIONS(512), - [anon_sym_DASH_EQ] = ACTIONS(512), - [anon_sym_STAR_EQ] = ACTIONS(512), - [anon_sym_SLASH_EQ] = ACTIONS(512), - [anon_sym_PERCENT_EQ] = ACTIONS(512), - [anon_sym_AMP_EQ] = ACTIONS(512), - [anon_sym_PIPE_EQ] = ACTIONS(512), - [anon_sym_CARET_EQ] = ACTIONS(512), - [anon_sym_LT_LT_EQ] = ACTIONS(512), - [anon_sym_GT_GT_EQ] = ACTIONS(512), - [anon_sym_DOT] = ACTIONS(514), - [sym_integer_literal] = ACTIONS(512), - [aux_sym_string_literal_token1] = ACTIONS(512), - [sym_char_literal] = ACTIONS(512), - [anon_sym_true] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(514), - [sym_super] = ACTIONS(514), - [sym_crate] = ACTIONS(514), - [sym_metavariable] = ACTIONS(512), - [sym_raw_string_literal] = ACTIONS(512), - [sym_float_literal] = ACTIONS(512), + [225] = { + [sym_identifier] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_RBRACE] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(464), + [anon_sym_QMARK] = ACTIONS(462), + [anon_sym_u8] = ACTIONS(464), + [anon_sym_i8] = ACTIONS(464), + [anon_sym_u16] = ACTIONS(464), + [anon_sym_i16] = ACTIONS(464), + [anon_sym_u32] = ACTIONS(464), + [anon_sym_i32] = ACTIONS(464), + [anon_sym_u64] = ACTIONS(464), + [anon_sym_i64] = ACTIONS(464), + [anon_sym_u128] = ACTIONS(464), + [anon_sym_i128] = ACTIONS(464), + [anon_sym_isize] = ACTIONS(464), + [anon_sym_usize] = ACTIONS(464), + [anon_sym_f32] = ACTIONS(464), + [anon_sym_f64] = ACTIONS(464), + [anon_sym_bool] = ACTIONS(464), + [anon_sym_str] = ACTIONS(464), + [anon_sym_char] = ACTIONS(464), + [anon_sym_as] = ACTIONS(464), + [anon_sym_const] = ACTIONS(464), + [anon_sym_default] = ACTIONS(464), + [anon_sym_union] = ACTIONS(464), + [anon_sym_POUND] = ACTIONS(462), + [anon_sym_EQ] = ACTIONS(464), + [anon_sym_COMMA] = ACTIONS(462), + [anon_sym_ref] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(464), + [anon_sym_GT] = ACTIONS(464), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym__] = ACTIONS(464), + [anon_sym_AMP] = ACTIONS(464), + [anon_sym_DOT_DOT_DOT] = ACTIONS(462), + [sym_mutable_specifier] = ACTIONS(464), + [anon_sym_DOT_DOT] = ACTIONS(464), + [anon_sym_DOT_DOT_EQ] = ACTIONS(462), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_AMP_AMP] = ACTIONS(462), + [anon_sym_PIPE_PIPE] = ACTIONS(462), + [anon_sym_PIPE] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_EQ_EQ] = ACTIONS(462), + [anon_sym_BANG_EQ] = ACTIONS(462), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_PLUS_EQ] = ACTIONS(462), + [anon_sym_DASH_EQ] = ACTIONS(462), + [anon_sym_STAR_EQ] = ACTIONS(462), + [anon_sym_SLASH_EQ] = ACTIONS(462), + [anon_sym_PERCENT_EQ] = ACTIONS(462), + [anon_sym_AMP_EQ] = ACTIONS(462), + [anon_sym_PIPE_EQ] = ACTIONS(462), + [anon_sym_CARET_EQ] = ACTIONS(462), + [anon_sym_LT_LT_EQ] = ACTIONS(462), + [anon_sym_GT_GT_EQ] = ACTIONS(462), + [anon_sym_DOT] = ACTIONS(464), + [sym_integer_literal] = ACTIONS(462), + [aux_sym_string_literal_token1] = ACTIONS(462), + [sym_char_literal] = ACTIONS(462), + [anon_sym_true] = ACTIONS(464), + [anon_sym_false] = ACTIONS(464), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(464), + [sym_super] = ACTIONS(464), + [sym_crate] = ACTIONS(464), + [sym_metavariable] = ACTIONS(462), + [sym_raw_string_literal] = ACTIONS(462), + [sym_float_literal] = ACTIONS(462), [sym_block_comment] = ACTIONS(3), }, - [223] = { - [sym_identifier] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(478), - [anon_sym_RBRACE] = ACTIONS(478), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_STAR] = ACTIONS(480), - [anon_sym_QMARK] = ACTIONS(478), - [anon_sym_u8] = ACTIONS(480), - [anon_sym_i8] = ACTIONS(480), - [anon_sym_u16] = ACTIONS(480), - [anon_sym_i16] = ACTIONS(480), - [anon_sym_u32] = ACTIONS(480), - [anon_sym_i32] = ACTIONS(480), - [anon_sym_u64] = ACTIONS(480), - [anon_sym_i64] = ACTIONS(480), - [anon_sym_u128] = ACTIONS(480), - [anon_sym_i128] = ACTIONS(480), - [anon_sym_isize] = ACTIONS(480), - [anon_sym_usize] = ACTIONS(480), - [anon_sym_f32] = ACTIONS(480), - [anon_sym_f64] = ACTIONS(480), - [anon_sym_bool] = ACTIONS(480), - [anon_sym_str] = ACTIONS(480), - [anon_sym_char] = ACTIONS(480), - [anon_sym_as] = ACTIONS(480), - [anon_sym_const] = ACTIONS(480), - [anon_sym_default] = ACTIONS(480), - [anon_sym_union] = ACTIONS(480), - [anon_sym_POUND] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(480), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_ref] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(480), - [anon_sym_GT] = ACTIONS(480), - [anon_sym_COLON_COLON] = ACTIONS(478), - [anon_sym__] = ACTIONS(480), - [anon_sym_AMP] = ACTIONS(480), - [anon_sym_DOT_DOT_DOT] = ACTIONS(478), - [sym_mutable_specifier] = ACTIONS(480), - [anon_sym_DOT_DOT] = ACTIONS(480), - [anon_sym_DOT_DOT_EQ] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_AMP_AMP] = ACTIONS(478), - [anon_sym_PIPE_PIPE] = ACTIONS(478), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_CARET] = ACTIONS(480), - [anon_sym_EQ_EQ] = ACTIONS(478), - [anon_sym_BANG_EQ] = ACTIONS(478), - [anon_sym_LT_EQ] = ACTIONS(478), - [anon_sym_GT_EQ] = ACTIONS(478), - [anon_sym_LT_LT] = ACTIONS(480), - [anon_sym_GT_GT] = ACTIONS(480), - [anon_sym_SLASH] = ACTIONS(480), - [anon_sym_PERCENT] = ACTIONS(480), - [anon_sym_PLUS_EQ] = ACTIONS(478), - [anon_sym_DASH_EQ] = ACTIONS(478), - [anon_sym_STAR_EQ] = ACTIONS(478), - [anon_sym_SLASH_EQ] = ACTIONS(478), - [anon_sym_PERCENT_EQ] = ACTIONS(478), - [anon_sym_AMP_EQ] = ACTIONS(478), - [anon_sym_PIPE_EQ] = ACTIONS(478), - [anon_sym_CARET_EQ] = ACTIONS(478), - [anon_sym_LT_LT_EQ] = ACTIONS(478), - [anon_sym_GT_GT_EQ] = ACTIONS(478), - [anon_sym_DOT] = ACTIONS(480), - [sym_integer_literal] = ACTIONS(478), - [aux_sym_string_literal_token1] = ACTIONS(478), - [sym_char_literal] = ACTIONS(478), - [anon_sym_true] = ACTIONS(480), - [anon_sym_false] = ACTIONS(480), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(480), - [sym_super] = ACTIONS(480), - [sym_crate] = ACTIONS(480), - [sym_metavariable] = ACTIONS(478), - [sym_raw_string_literal] = ACTIONS(478), - [sym_float_literal] = ACTIONS(478), + [226] = { + [sym_identifier] = ACTIONS(608), + [anon_sym_LPAREN] = ACTIONS(606), + [anon_sym_RBRACE] = ACTIONS(606), + [anon_sym_LBRACK] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(608), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_QMARK] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(608), + [anon_sym_i8] = ACTIONS(608), + [anon_sym_u16] = ACTIONS(608), + [anon_sym_i16] = ACTIONS(608), + [anon_sym_u32] = ACTIONS(608), + [anon_sym_i32] = ACTIONS(608), + [anon_sym_u64] = ACTIONS(608), + [anon_sym_i64] = ACTIONS(608), + [anon_sym_u128] = ACTIONS(608), + [anon_sym_i128] = ACTIONS(608), + [anon_sym_isize] = ACTIONS(608), + [anon_sym_usize] = ACTIONS(608), + [anon_sym_f32] = ACTIONS(608), + [anon_sym_f64] = ACTIONS(608), + [anon_sym_bool] = ACTIONS(608), + [anon_sym_str] = ACTIONS(608), + [anon_sym_char] = ACTIONS(608), + [anon_sym_as] = ACTIONS(608), + [anon_sym_const] = ACTIONS(608), + [anon_sym_default] = ACTIONS(608), + [anon_sym_union] = ACTIONS(608), + [anon_sym_POUND] = ACTIONS(606), + [anon_sym_EQ] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(606), + [anon_sym_ref] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(608), + [anon_sym_GT] = ACTIONS(608), + [anon_sym_COLON_COLON] = ACTIONS(606), + [anon_sym__] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(606), + [sym_mutable_specifier] = ACTIONS(608), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DOT_DOT_EQ] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(608), + [anon_sym_AMP_AMP] = ACTIONS(606), + [anon_sym_PIPE_PIPE] = ACTIONS(606), + [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_CARET] = ACTIONS(608), + [anon_sym_EQ_EQ] = ACTIONS(606), + [anon_sym_BANG_EQ] = ACTIONS(606), + [anon_sym_LT_EQ] = ACTIONS(606), + [anon_sym_GT_EQ] = ACTIONS(606), + [anon_sym_LT_LT] = ACTIONS(608), + [anon_sym_GT_GT] = ACTIONS(608), + [anon_sym_SLASH] = ACTIONS(608), + [anon_sym_PERCENT] = ACTIONS(608), + [anon_sym_PLUS_EQ] = ACTIONS(606), + [anon_sym_DASH_EQ] = ACTIONS(606), + [anon_sym_STAR_EQ] = ACTIONS(606), + [anon_sym_SLASH_EQ] = ACTIONS(606), + [anon_sym_PERCENT_EQ] = ACTIONS(606), + [anon_sym_AMP_EQ] = ACTIONS(606), + [anon_sym_PIPE_EQ] = ACTIONS(606), + [anon_sym_CARET_EQ] = ACTIONS(606), + [anon_sym_LT_LT_EQ] = ACTIONS(606), + [anon_sym_GT_GT_EQ] = ACTIONS(606), + [anon_sym_DOT] = ACTIONS(608), + [sym_integer_literal] = ACTIONS(606), + [aux_sym_string_literal_token1] = ACTIONS(606), + [sym_char_literal] = ACTIONS(606), + [anon_sym_true] = ACTIONS(608), + [anon_sym_false] = ACTIONS(608), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(608), + [sym_super] = ACTIONS(608), + [sym_crate] = ACTIONS(608), + [sym_metavariable] = ACTIONS(606), + [sym_raw_string_literal] = ACTIONS(606), + [sym_float_literal] = ACTIONS(606), [sym_block_comment] = ACTIONS(3), }, - [224] = { + [227] = { [sym_identifier] = ACTIONS(460), [anon_sym_LPAREN] = ACTIONS(458), [anon_sym_RBRACE] = ACTIONS(458), @@ -40285,327 +40606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(458), [sym_block_comment] = ACTIONS(3), }, - [225] = { - [sym_identifier] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_RBRACE] = ACTIONS(474), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_STAR] = ACTIONS(476), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_u8] = ACTIONS(476), - [anon_sym_i8] = ACTIONS(476), - [anon_sym_u16] = ACTIONS(476), - [anon_sym_i16] = ACTIONS(476), - [anon_sym_u32] = ACTIONS(476), - [anon_sym_i32] = ACTIONS(476), - [anon_sym_u64] = ACTIONS(476), - [anon_sym_i64] = ACTIONS(476), - [anon_sym_u128] = ACTIONS(476), - [anon_sym_i128] = ACTIONS(476), - [anon_sym_isize] = ACTIONS(476), - [anon_sym_usize] = ACTIONS(476), - [anon_sym_f32] = ACTIONS(476), - [anon_sym_f64] = ACTIONS(476), - [anon_sym_bool] = ACTIONS(476), - [anon_sym_str] = ACTIONS(476), - [anon_sym_char] = ACTIONS(476), - [anon_sym_as] = ACTIONS(476), - [anon_sym_const] = ACTIONS(476), - [anon_sym_default] = ACTIONS(476), - [anon_sym_union] = ACTIONS(476), - [anon_sym_POUND] = ACTIONS(474), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_ref] = ACTIONS(476), - [anon_sym_LT] = ACTIONS(476), - [anon_sym_GT] = ACTIONS(476), - [anon_sym_COLON_COLON] = ACTIONS(474), - [anon_sym__] = ACTIONS(476), - [anon_sym_AMP] = ACTIONS(476), - [anon_sym_DOT_DOT_DOT] = ACTIONS(474), - [sym_mutable_specifier] = ACTIONS(476), - [anon_sym_DOT_DOT] = ACTIONS(476), - [anon_sym_DOT_DOT_EQ] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(476), - [anon_sym_CARET] = ACTIONS(476), - [anon_sym_EQ_EQ] = ACTIONS(474), - [anon_sym_BANG_EQ] = ACTIONS(474), - [anon_sym_LT_EQ] = ACTIONS(474), - [anon_sym_GT_EQ] = ACTIONS(474), - [anon_sym_LT_LT] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(476), - [anon_sym_SLASH] = ACTIONS(476), - [anon_sym_PERCENT] = ACTIONS(476), - [anon_sym_PLUS_EQ] = ACTIONS(474), - [anon_sym_DASH_EQ] = ACTIONS(474), - [anon_sym_STAR_EQ] = ACTIONS(474), - [anon_sym_SLASH_EQ] = ACTIONS(474), - [anon_sym_PERCENT_EQ] = ACTIONS(474), - [anon_sym_AMP_EQ] = ACTIONS(474), - [anon_sym_PIPE_EQ] = ACTIONS(474), - [anon_sym_CARET_EQ] = ACTIONS(474), - [anon_sym_LT_LT_EQ] = ACTIONS(474), - [anon_sym_GT_GT_EQ] = ACTIONS(474), - [anon_sym_DOT] = ACTIONS(476), - [sym_integer_literal] = ACTIONS(474), - [aux_sym_string_literal_token1] = ACTIONS(474), - [sym_char_literal] = ACTIONS(474), - [anon_sym_true] = ACTIONS(476), - [anon_sym_false] = ACTIONS(476), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(476), - [sym_crate] = ACTIONS(476), - [sym_metavariable] = ACTIONS(474), - [sym_raw_string_literal] = ACTIONS(474), - [sym_float_literal] = ACTIONS(474), - [sym_block_comment] = ACTIONS(3), - }, - [226] = { - [sym_identifier] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(422), - [anon_sym_STAR] = ACTIONS(422), - [anon_sym_QMARK] = ACTIONS(424), - [anon_sym_u8] = ACTIONS(866), - [anon_sym_i8] = ACTIONS(866), - [anon_sym_u16] = ACTIONS(866), - [anon_sym_i16] = ACTIONS(866), - [anon_sym_u32] = ACTIONS(866), - [anon_sym_i32] = ACTIONS(866), - [anon_sym_u64] = ACTIONS(866), - [anon_sym_i64] = ACTIONS(866), - [anon_sym_u128] = ACTIONS(866), - [anon_sym_i128] = ACTIONS(866), - [anon_sym_isize] = ACTIONS(866), - [anon_sym_usize] = ACTIONS(866), - [anon_sym_f32] = ACTIONS(866), - [anon_sym_f64] = ACTIONS(866), - [anon_sym_bool] = ACTIONS(866), - [anon_sym_str] = ACTIONS(866), - [anon_sym_char] = ACTIONS(866), - [anon_sym_as] = ACTIONS(422), - [anon_sym_const] = ACTIONS(866), - [anon_sym_default] = ACTIONS(866), - [anon_sym_union] = ACTIONS(866), - [anon_sym_POUND] = ACTIONS(868), - [anon_sym_EQ] = ACTIONS(422), - [anon_sym_COMMA] = ACTIONS(424), - [anon_sym_ref] = ACTIONS(866), - [anon_sym_LT] = ACTIONS(866), - [anon_sym_GT] = ACTIONS(422), - [anon_sym_COLON_COLON] = ACTIONS(868), - [anon_sym__] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(866), - [anon_sym_DOT_DOT_DOT] = ACTIONS(424), - [sym_mutable_specifier] = ACTIONS(866), - [anon_sym_DOT_DOT] = ACTIONS(866), - [anon_sym_DOT_DOT_EQ] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(866), - [anon_sym_AMP_AMP] = ACTIONS(424), - [anon_sym_PIPE_PIPE] = ACTIONS(424), - [anon_sym_PIPE] = ACTIONS(422), - [anon_sym_CARET] = ACTIONS(422), - [anon_sym_EQ_EQ] = ACTIONS(424), - [anon_sym_BANG_EQ] = ACTIONS(424), - [anon_sym_LT_EQ] = ACTIONS(424), - [anon_sym_GT_EQ] = ACTIONS(424), - [anon_sym_LT_LT] = ACTIONS(422), - [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_SLASH] = ACTIONS(422), - [anon_sym_PERCENT] = ACTIONS(422), - [anon_sym_PLUS_EQ] = ACTIONS(424), - [anon_sym_DASH_EQ] = ACTIONS(424), - [anon_sym_STAR_EQ] = ACTIONS(424), - [anon_sym_SLASH_EQ] = ACTIONS(424), - [anon_sym_PERCENT_EQ] = ACTIONS(424), - [anon_sym_AMP_EQ] = ACTIONS(424), - [anon_sym_PIPE_EQ] = ACTIONS(424), - [anon_sym_CARET_EQ] = ACTIONS(424), - [anon_sym_LT_LT_EQ] = ACTIONS(424), - [anon_sym_GT_GT_EQ] = ACTIONS(424), - [anon_sym_DOT] = ACTIONS(422), - [sym_integer_literal] = ACTIONS(868), - [aux_sym_string_literal_token1] = ACTIONS(868), - [sym_char_literal] = ACTIONS(868), - [anon_sym_true] = ACTIONS(866), - [anon_sym_false] = ACTIONS(866), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(866), - [sym_super] = ACTIONS(866), - [sym_crate] = ACTIONS(866), - [sym_metavariable] = ACTIONS(868), - [sym_raw_string_literal] = ACTIONS(868), - [sym_float_literal] = ACTIONS(868), - [sym_block_comment] = ACTIONS(3), - }, - [227] = { - [sym_identifier] = ACTIONS(444), - [anon_sym_LPAREN] = ACTIONS(442), - [anon_sym_RBRACE] = ACTIONS(442), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_STAR] = ACTIONS(444), - [anon_sym_QMARK] = ACTIONS(442), - [anon_sym_u8] = ACTIONS(444), - [anon_sym_i8] = ACTIONS(444), - [anon_sym_u16] = ACTIONS(444), - [anon_sym_i16] = ACTIONS(444), - [anon_sym_u32] = ACTIONS(444), - [anon_sym_i32] = ACTIONS(444), - [anon_sym_u64] = ACTIONS(444), - [anon_sym_i64] = ACTIONS(444), - [anon_sym_u128] = ACTIONS(444), - [anon_sym_i128] = ACTIONS(444), - [anon_sym_isize] = ACTIONS(444), - [anon_sym_usize] = ACTIONS(444), - [anon_sym_f32] = ACTIONS(444), - [anon_sym_f64] = ACTIONS(444), - [anon_sym_bool] = ACTIONS(444), - [anon_sym_str] = ACTIONS(444), - [anon_sym_char] = ACTIONS(444), - [anon_sym_as] = ACTIONS(444), - [anon_sym_const] = ACTIONS(444), - [anon_sym_default] = ACTIONS(444), - [anon_sym_union] = ACTIONS(444), - [anon_sym_POUND] = ACTIONS(442), - [anon_sym_EQ] = ACTIONS(444), - [anon_sym_COMMA] = ACTIONS(442), - [anon_sym_ref] = ACTIONS(444), - [anon_sym_LT] = ACTIONS(444), - [anon_sym_GT] = ACTIONS(444), - [anon_sym_COLON_COLON] = ACTIONS(442), - [anon_sym__] = ACTIONS(444), - [anon_sym_AMP] = ACTIONS(444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(442), - [sym_mutable_specifier] = ACTIONS(444), - [anon_sym_DOT_DOT] = ACTIONS(444), - [anon_sym_DOT_DOT_EQ] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_AMP_AMP] = ACTIONS(442), - [anon_sym_PIPE_PIPE] = ACTIONS(442), - [anon_sym_PIPE] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_EQ_EQ] = ACTIONS(442), - [anon_sym_BANG_EQ] = ACTIONS(442), - [anon_sym_LT_EQ] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(442), - [anon_sym_LT_LT] = ACTIONS(444), - [anon_sym_GT_GT] = ACTIONS(444), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_PERCENT] = ACTIONS(444), - [anon_sym_PLUS_EQ] = ACTIONS(442), - [anon_sym_DASH_EQ] = ACTIONS(442), - [anon_sym_STAR_EQ] = ACTIONS(442), - [anon_sym_SLASH_EQ] = ACTIONS(442), - [anon_sym_PERCENT_EQ] = ACTIONS(442), - [anon_sym_AMP_EQ] = ACTIONS(442), - [anon_sym_PIPE_EQ] = ACTIONS(442), - [anon_sym_CARET_EQ] = ACTIONS(442), - [anon_sym_LT_LT_EQ] = ACTIONS(442), - [anon_sym_GT_GT_EQ] = ACTIONS(442), - [anon_sym_DOT] = ACTIONS(444), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(442), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(444), - [anon_sym_false] = ACTIONS(444), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(444), - [sym_super] = ACTIONS(444), - [sym_crate] = ACTIONS(444), - [sym_metavariable] = ACTIONS(442), - [sym_raw_string_literal] = ACTIONS(442), - [sym_float_literal] = ACTIONS(442), - [sym_block_comment] = ACTIONS(3), - }, [228] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1990), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_type_binding] = STATE(2275), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [sym_block] = STATE(2275), - [sym__literal] = STATE(2275), - [sym_string_literal] = STATE(2136), - [sym_boolean_literal] = STATE(2136), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(890), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(890), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), - [sym_block_comment] = ACTIONS(3), - }, - [229] = { [sym_identifier] = ACTIONS(434), [anon_sym_LPAREN] = ACTIONS(432), [anon_sym_RBRACE] = ACTIONS(432), @@ -40685,407 +40686,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(432), [sym_block_comment] = ACTIONS(3), }, - [230] = { - [sym_identifier] = ACTIONS(506), - [anon_sym_LPAREN] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(504), - [anon_sym_PLUS] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(506), - [anon_sym_QMARK] = ACTIONS(504), - [anon_sym_u8] = ACTIONS(506), - [anon_sym_i8] = ACTIONS(506), - [anon_sym_u16] = ACTIONS(506), - [anon_sym_i16] = ACTIONS(506), - [anon_sym_u32] = ACTIONS(506), - [anon_sym_i32] = ACTIONS(506), - [anon_sym_u64] = ACTIONS(506), - [anon_sym_i64] = ACTIONS(506), - [anon_sym_u128] = ACTIONS(506), - [anon_sym_i128] = ACTIONS(506), - [anon_sym_isize] = ACTIONS(506), - [anon_sym_usize] = ACTIONS(506), - [anon_sym_f32] = ACTIONS(506), - [anon_sym_f64] = ACTIONS(506), - [anon_sym_bool] = ACTIONS(506), - [anon_sym_str] = ACTIONS(506), - [anon_sym_char] = ACTIONS(506), - [anon_sym_as] = ACTIONS(506), - [anon_sym_const] = ACTIONS(506), - [anon_sym_default] = ACTIONS(506), - [anon_sym_union] = ACTIONS(506), - [anon_sym_POUND] = ACTIONS(504), - [anon_sym_EQ] = ACTIONS(506), - [anon_sym_COMMA] = ACTIONS(504), - [anon_sym_ref] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(506), - [anon_sym_GT] = ACTIONS(506), - [anon_sym_COLON_COLON] = ACTIONS(504), - [anon_sym__] = ACTIONS(506), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_DOT_DOT_DOT] = ACTIONS(504), - [sym_mutable_specifier] = ACTIONS(506), - [anon_sym_DOT_DOT] = ACTIONS(506), - [anon_sym_DOT_DOT_EQ] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(504), - [anon_sym_PIPE_PIPE] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_CARET] = ACTIONS(506), - [anon_sym_EQ_EQ] = ACTIONS(504), - [anon_sym_BANG_EQ] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(504), - [anon_sym_GT_EQ] = ACTIONS(504), - [anon_sym_LT_LT] = ACTIONS(506), - [anon_sym_GT_GT] = ACTIONS(506), - [anon_sym_SLASH] = ACTIONS(506), - [anon_sym_PERCENT] = ACTIONS(506), - [anon_sym_PLUS_EQ] = ACTIONS(504), - [anon_sym_DASH_EQ] = ACTIONS(504), - [anon_sym_STAR_EQ] = ACTIONS(504), - [anon_sym_SLASH_EQ] = ACTIONS(504), - [anon_sym_PERCENT_EQ] = ACTIONS(504), - [anon_sym_AMP_EQ] = ACTIONS(504), - [anon_sym_PIPE_EQ] = ACTIONS(504), - [anon_sym_CARET_EQ] = ACTIONS(504), - [anon_sym_LT_LT_EQ] = ACTIONS(504), - [anon_sym_GT_GT_EQ] = ACTIONS(504), - [anon_sym_DOT] = ACTIONS(506), - [sym_integer_literal] = ACTIONS(504), - [aux_sym_string_literal_token1] = ACTIONS(504), - [sym_char_literal] = ACTIONS(504), - [anon_sym_true] = ACTIONS(506), - [anon_sym_false] = ACTIONS(506), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(506), - [sym_super] = ACTIONS(506), - [sym_crate] = ACTIONS(506), - [sym_metavariable] = ACTIONS(504), - [sym_raw_string_literal] = ACTIONS(504), - [sym_float_literal] = ACTIONS(504), - [sym_block_comment] = ACTIONS(3), - }, - [231] = { - [sym_identifier] = ACTIONS(494), - [anon_sym_LPAREN] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_LBRACK] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(494), - [anon_sym_QMARK] = ACTIONS(492), - [anon_sym_u8] = ACTIONS(494), - [anon_sym_i8] = ACTIONS(494), - [anon_sym_u16] = ACTIONS(494), - [anon_sym_i16] = ACTIONS(494), - [anon_sym_u32] = ACTIONS(494), - [anon_sym_i32] = ACTIONS(494), - [anon_sym_u64] = ACTIONS(494), - [anon_sym_i64] = ACTIONS(494), - [anon_sym_u128] = ACTIONS(494), - [anon_sym_i128] = ACTIONS(494), - [anon_sym_isize] = ACTIONS(494), - [anon_sym_usize] = ACTIONS(494), - [anon_sym_f32] = ACTIONS(494), - [anon_sym_f64] = ACTIONS(494), - [anon_sym_bool] = ACTIONS(494), - [anon_sym_str] = ACTIONS(494), - [anon_sym_char] = ACTIONS(494), - [anon_sym_as] = ACTIONS(494), - [anon_sym_const] = ACTIONS(494), - [anon_sym_default] = ACTIONS(494), - [anon_sym_union] = ACTIONS(494), - [anon_sym_POUND] = ACTIONS(492), - [anon_sym_EQ] = ACTIONS(494), - [anon_sym_COMMA] = ACTIONS(492), - [anon_sym_ref] = ACTIONS(494), - [anon_sym_LT] = ACTIONS(494), - [anon_sym_GT] = ACTIONS(494), - [anon_sym_COLON_COLON] = ACTIONS(492), - [anon_sym__] = ACTIONS(494), - [anon_sym_AMP] = ACTIONS(494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(492), - [sym_mutable_specifier] = ACTIONS(494), - [anon_sym_DOT_DOT] = ACTIONS(494), - [anon_sym_DOT_DOT_EQ] = ACTIONS(492), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(492), - [anon_sym_PIPE] = ACTIONS(494), - [anon_sym_CARET] = ACTIONS(494), - [anon_sym_EQ_EQ] = ACTIONS(492), - [anon_sym_BANG_EQ] = ACTIONS(492), - [anon_sym_LT_EQ] = ACTIONS(492), - [anon_sym_GT_EQ] = ACTIONS(492), - [anon_sym_LT_LT] = ACTIONS(494), - [anon_sym_GT_GT] = ACTIONS(494), - [anon_sym_SLASH] = ACTIONS(494), - [anon_sym_PERCENT] = ACTIONS(494), - [anon_sym_PLUS_EQ] = ACTIONS(492), - [anon_sym_DASH_EQ] = ACTIONS(492), - [anon_sym_STAR_EQ] = ACTIONS(492), - [anon_sym_SLASH_EQ] = ACTIONS(492), - [anon_sym_PERCENT_EQ] = ACTIONS(492), - [anon_sym_AMP_EQ] = ACTIONS(492), - [anon_sym_PIPE_EQ] = ACTIONS(492), - [anon_sym_CARET_EQ] = ACTIONS(492), - [anon_sym_LT_LT_EQ] = ACTIONS(492), - [anon_sym_GT_GT_EQ] = ACTIONS(492), - [anon_sym_DOT] = ACTIONS(494), - [sym_integer_literal] = ACTIONS(492), - [aux_sym_string_literal_token1] = ACTIONS(492), - [sym_char_literal] = ACTIONS(492), - [anon_sym_true] = ACTIONS(494), - [anon_sym_false] = ACTIONS(494), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(494), - [sym_crate] = ACTIONS(494), - [sym_metavariable] = ACTIONS(492), - [sym_raw_string_literal] = ACTIONS(492), - [sym_float_literal] = ACTIONS(492), - [sym_block_comment] = ACTIONS(3), - }, - [232] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1990), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_type_binding] = STATE(2275), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [sym_block] = STATE(2275), - [sym__literal] = STATE(2275), - [sym_string_literal] = STATE(2136), - [sym_boolean_literal] = STATE(2136), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), + [229] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1988), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(1994), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_type_binding] = STATE(2305), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [sym_block] = STATE(2305), + [sym__literal] = STATE(2305), + [sym_string_literal] = STATE(2159), + [sym_boolean_literal] = STATE(2159), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(896), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(890), + [sym_integer_literal] = ACTIONS(886), [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(890), + [sym_char_literal] = ACTIONS(886), [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(886), + [sym_float_literal] = ACTIONS(886), [sym_block_comment] = ACTIONS(3), }, - [233] = { - [sym_identifier] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(486), - [anon_sym_PLUS] = ACTIONS(488), - [anon_sym_STAR] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(486), - [anon_sym_u8] = ACTIONS(488), - [anon_sym_i8] = ACTIONS(488), - [anon_sym_u16] = ACTIONS(488), - [anon_sym_i16] = ACTIONS(488), - [anon_sym_u32] = ACTIONS(488), - [anon_sym_i32] = ACTIONS(488), - [anon_sym_u64] = ACTIONS(488), - [anon_sym_i64] = ACTIONS(488), - [anon_sym_u128] = ACTIONS(488), - [anon_sym_i128] = ACTIONS(488), - [anon_sym_isize] = ACTIONS(488), - [anon_sym_usize] = ACTIONS(488), - [anon_sym_f32] = ACTIONS(488), - [anon_sym_f64] = ACTIONS(488), - [anon_sym_bool] = ACTIONS(488), - [anon_sym_str] = ACTIONS(488), - [anon_sym_char] = ACTIONS(488), - [anon_sym_as] = ACTIONS(488), - [anon_sym_const] = ACTIONS(488), - [anon_sym_default] = ACTIONS(488), - [anon_sym_union] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(486), - [anon_sym_EQ] = ACTIONS(488), - [anon_sym_COMMA] = ACTIONS(486), - [anon_sym_ref] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_COLON_COLON] = ACTIONS(486), - [anon_sym__] = ACTIONS(488), - [anon_sym_AMP] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(486), - [sym_mutable_specifier] = ACTIONS(488), - [anon_sym_DOT_DOT] = ACTIONS(488), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(488), - [anon_sym_CARET] = ACTIONS(488), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT] = ACTIONS(488), - [anon_sym_GT_GT] = ACTIONS(488), - [anon_sym_SLASH] = ACTIONS(488), - [anon_sym_PERCENT] = ACTIONS(488), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_PERCENT_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_CARET_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_DOT] = ACTIONS(488), - [sym_integer_literal] = ACTIONS(486), - [aux_sym_string_literal_token1] = ACTIONS(486), - [sym_char_literal] = ACTIONS(486), - [anon_sym_true] = ACTIONS(488), - [anon_sym_false] = ACTIONS(488), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(488), - [sym_super] = ACTIONS(488), - [sym_crate] = ACTIONS(488), - [sym_metavariable] = ACTIONS(486), - [sym_raw_string_literal] = ACTIONS(486), - [sym_float_literal] = ACTIONS(486), - [sym_block_comment] = ACTIONS(3), - }, - [234] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1990), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_type_binding] = STATE(2275), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [sym_block] = STATE(2275), - [sym__literal] = STATE(2275), - [sym_string_literal] = STATE(2136), - [sym_boolean_literal] = STATE(2136), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(890), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(890), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), + [230] = { + [sym_identifier] = ACTIONS(892), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RBRACE] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_PLUS] = ACTIONS(486), + [anon_sym_STAR] = ACTIONS(486), + [anon_sym_QMARK] = ACTIONS(484), + [anon_sym_u8] = ACTIONS(892), + [anon_sym_i8] = ACTIONS(892), + [anon_sym_u16] = ACTIONS(892), + [anon_sym_i16] = ACTIONS(892), + [anon_sym_u32] = ACTIONS(892), + [anon_sym_i32] = ACTIONS(892), + [anon_sym_u64] = ACTIONS(892), + [anon_sym_i64] = ACTIONS(892), + [anon_sym_u128] = ACTIONS(892), + [anon_sym_i128] = ACTIONS(892), + [anon_sym_isize] = ACTIONS(892), + [anon_sym_usize] = ACTIONS(892), + [anon_sym_f32] = ACTIONS(892), + [anon_sym_f64] = ACTIONS(892), + [anon_sym_bool] = ACTIONS(892), + [anon_sym_str] = ACTIONS(892), + [anon_sym_char] = ACTIONS(892), + [anon_sym_as] = ACTIONS(486), + [anon_sym_const] = ACTIONS(892), + [anon_sym_default] = ACTIONS(892), + [anon_sym_union] = ACTIONS(892), + [anon_sym_POUND] = ACTIONS(894), + [anon_sym_EQ] = ACTIONS(486), + [anon_sym_COMMA] = ACTIONS(484), + [anon_sym_ref] = ACTIONS(892), + [anon_sym_LT] = ACTIONS(892), + [anon_sym_GT] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(894), + [anon_sym__] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(484), + [sym_mutable_specifier] = ACTIONS(892), + [anon_sym_DOT_DOT] = ACTIONS(892), + [anon_sym_DOT_DOT_EQ] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(892), + [anon_sym_AMP_AMP] = ACTIONS(484), + [anon_sym_PIPE_PIPE] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_CARET] = ACTIONS(486), + [anon_sym_EQ_EQ] = ACTIONS(484), + [anon_sym_BANG_EQ] = ACTIONS(484), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_LT_LT] = ACTIONS(486), + [anon_sym_GT_GT] = ACTIONS(486), + [anon_sym_SLASH] = ACTIONS(486), + [anon_sym_PERCENT] = ACTIONS(486), + [anon_sym_PLUS_EQ] = ACTIONS(484), + [anon_sym_DASH_EQ] = ACTIONS(484), + [anon_sym_STAR_EQ] = ACTIONS(484), + [anon_sym_SLASH_EQ] = ACTIONS(484), + [anon_sym_PERCENT_EQ] = ACTIONS(484), + [anon_sym_AMP_EQ] = ACTIONS(484), + [anon_sym_PIPE_EQ] = ACTIONS(484), + [anon_sym_CARET_EQ] = ACTIONS(484), + [anon_sym_LT_LT_EQ] = ACTIONS(484), + [anon_sym_GT_GT_EQ] = ACTIONS(484), + [anon_sym_DOT] = ACTIONS(486), + [sym_integer_literal] = ACTIONS(894), + [aux_sym_string_literal_token1] = ACTIONS(894), + [sym_char_literal] = ACTIONS(894), + [anon_sym_true] = ACTIONS(892), + [anon_sym_false] = ACTIONS(892), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(892), [sym_super] = ACTIONS(892), [sym_crate] = ACTIONS(892), [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(894), + [sym_float_literal] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, - [235] = { + [231] = { + [sym_identifier] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(452), + [anon_sym_RBRACE] = ACTIONS(452), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_PLUS] = ACTIONS(454), + [anon_sym_STAR] = ACTIONS(454), + [anon_sym_QMARK] = ACTIONS(452), + [anon_sym_u8] = ACTIONS(454), + [anon_sym_i8] = ACTIONS(454), + [anon_sym_u16] = ACTIONS(454), + [anon_sym_i16] = ACTIONS(454), + [anon_sym_u32] = ACTIONS(454), + [anon_sym_i32] = ACTIONS(454), + [anon_sym_u64] = ACTIONS(454), + [anon_sym_i64] = ACTIONS(454), + [anon_sym_u128] = ACTIONS(454), + [anon_sym_i128] = ACTIONS(454), + [anon_sym_isize] = ACTIONS(454), + [anon_sym_usize] = ACTIONS(454), + [anon_sym_f32] = ACTIONS(454), + [anon_sym_f64] = ACTIONS(454), + [anon_sym_bool] = ACTIONS(454), + [anon_sym_str] = ACTIONS(454), + [anon_sym_char] = ACTIONS(454), + [anon_sym_as] = ACTIONS(454), + [anon_sym_const] = ACTIONS(454), + [anon_sym_default] = ACTIONS(454), + [anon_sym_union] = ACTIONS(454), + [anon_sym_POUND] = ACTIONS(452), + [anon_sym_EQ] = ACTIONS(454), + [anon_sym_COMMA] = ACTIONS(452), + [anon_sym_ref] = ACTIONS(454), + [anon_sym_LT] = ACTIONS(454), + [anon_sym_GT] = ACTIONS(454), + [anon_sym_COLON_COLON] = ACTIONS(452), + [anon_sym__] = ACTIONS(454), + [anon_sym_AMP] = ACTIONS(454), + [anon_sym_DOT_DOT_DOT] = ACTIONS(452), + [sym_mutable_specifier] = ACTIONS(454), + [anon_sym_DOT_DOT] = ACTIONS(454), + [anon_sym_DOT_DOT_EQ] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(454), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE_PIPE] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(454), + [anon_sym_EQ_EQ] = ACTIONS(452), + [anon_sym_BANG_EQ] = ACTIONS(452), + [anon_sym_LT_EQ] = ACTIONS(452), + [anon_sym_GT_EQ] = ACTIONS(452), + [anon_sym_LT_LT] = ACTIONS(454), + [anon_sym_GT_GT] = ACTIONS(454), + [anon_sym_SLASH] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(454), + [anon_sym_PLUS_EQ] = ACTIONS(452), + [anon_sym_DASH_EQ] = ACTIONS(452), + [anon_sym_STAR_EQ] = ACTIONS(452), + [anon_sym_SLASH_EQ] = ACTIONS(452), + [anon_sym_PERCENT_EQ] = ACTIONS(452), + [anon_sym_AMP_EQ] = ACTIONS(452), + [anon_sym_PIPE_EQ] = ACTIONS(452), + [anon_sym_CARET_EQ] = ACTIONS(452), + [anon_sym_LT_LT_EQ] = ACTIONS(452), + [anon_sym_GT_GT_EQ] = ACTIONS(452), + [anon_sym_DOT] = ACTIONS(454), + [sym_integer_literal] = ACTIONS(452), + [aux_sym_string_literal_token1] = ACTIONS(452), + [sym_char_literal] = ACTIONS(452), + [anon_sym_true] = ACTIONS(454), + [anon_sym_false] = ACTIONS(454), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(454), + [sym_super] = ACTIONS(454), + [sym_crate] = ACTIONS(454), + [sym_metavariable] = ACTIONS(452), + [sym_raw_string_literal] = ACTIONS(452), + [sym_float_literal] = ACTIONS(452), + [sym_block_comment] = ACTIONS(3), + }, + [232] = { [sym_identifier] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(428), [anon_sym_RBRACE] = ACTIONS(428), @@ -41165,541 +41006,941 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(428), [sym_block_comment] = ACTIONS(3), }, + [233] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1988), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(1994), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_type_binding] = STATE(2305), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [sym_block] = STATE(2305), + [sym__literal] = STATE(2305), + [sym_string_literal] = STATE(2159), + [sym_boolean_literal] = STATE(2159), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(896), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(886), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(886), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(886), + [sym_float_literal] = ACTIONS(886), + [sym_block_comment] = ACTIONS(3), + }, + [234] = { + [sym_identifier] = ACTIONS(422), + [anon_sym_LPAREN] = ACTIONS(420), + [anon_sym_RBRACE] = ACTIONS(420), + [anon_sym_LBRACK] = ACTIONS(420), + [anon_sym_PLUS] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(422), + [anon_sym_QMARK] = ACTIONS(420), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_isize] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_f32] = ACTIONS(422), + [anon_sym_f64] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_str] = ACTIONS(422), + [anon_sym_char] = ACTIONS(422), + [anon_sym_as] = ACTIONS(422), + [anon_sym_const] = ACTIONS(422), + [anon_sym_default] = ACTIONS(422), + [anon_sym_union] = ACTIONS(422), + [anon_sym_POUND] = ACTIONS(420), + [anon_sym_EQ] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(420), + [anon_sym_ref] = ACTIONS(422), + [anon_sym_LT] = ACTIONS(422), + [anon_sym_GT] = ACTIONS(422), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym__] = ACTIONS(422), + [anon_sym_AMP] = ACTIONS(422), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [sym_mutable_specifier] = ACTIONS(422), + [anon_sym_DOT_DOT] = ACTIONS(422), + [anon_sym_DOT_DOT_EQ] = ACTIONS(420), + [anon_sym_DASH] = ACTIONS(422), + [anon_sym_AMP_AMP] = ACTIONS(420), + [anon_sym_PIPE_PIPE] = ACTIONS(420), + [anon_sym_PIPE] = ACTIONS(422), + [anon_sym_CARET] = ACTIONS(422), + [anon_sym_EQ_EQ] = ACTIONS(420), + [anon_sym_BANG_EQ] = ACTIONS(420), + [anon_sym_LT_EQ] = ACTIONS(420), + [anon_sym_GT_EQ] = ACTIONS(420), + [anon_sym_LT_LT] = ACTIONS(422), + [anon_sym_GT_GT] = ACTIONS(422), + [anon_sym_SLASH] = ACTIONS(422), + [anon_sym_PERCENT] = ACTIONS(422), + [anon_sym_PLUS_EQ] = ACTIONS(420), + [anon_sym_DASH_EQ] = ACTIONS(420), + [anon_sym_STAR_EQ] = ACTIONS(420), + [anon_sym_SLASH_EQ] = ACTIONS(420), + [anon_sym_PERCENT_EQ] = ACTIONS(420), + [anon_sym_AMP_EQ] = ACTIONS(420), + [anon_sym_PIPE_EQ] = ACTIONS(420), + [anon_sym_CARET_EQ] = ACTIONS(420), + [anon_sym_LT_LT_EQ] = ACTIONS(420), + [anon_sym_GT_GT_EQ] = ACTIONS(420), + [anon_sym_DOT] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(420), + [aux_sym_string_literal_token1] = ACTIONS(420), + [sym_char_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(422), + [sym_super] = ACTIONS(422), + [sym_crate] = ACTIONS(422), + [sym_metavariable] = ACTIONS(420), + [sym_raw_string_literal] = ACTIONS(420), + [sym_float_literal] = ACTIONS(420), + [sym_block_comment] = ACTIONS(3), + }, + [235] = { + [sym_identifier] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(468), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_STAR] = ACTIONS(470), + [anon_sym_QMARK] = ACTIONS(468), + [anon_sym_u8] = ACTIONS(470), + [anon_sym_i8] = ACTIONS(470), + [anon_sym_u16] = ACTIONS(470), + [anon_sym_i16] = ACTIONS(470), + [anon_sym_u32] = ACTIONS(470), + [anon_sym_i32] = ACTIONS(470), + [anon_sym_u64] = ACTIONS(470), + [anon_sym_i64] = ACTIONS(470), + [anon_sym_u128] = ACTIONS(470), + [anon_sym_i128] = ACTIONS(470), + [anon_sym_isize] = ACTIONS(470), + [anon_sym_usize] = ACTIONS(470), + [anon_sym_f32] = ACTIONS(470), + [anon_sym_f64] = ACTIONS(470), + [anon_sym_bool] = ACTIONS(470), + [anon_sym_str] = ACTIONS(470), + [anon_sym_char] = ACTIONS(470), + [anon_sym_as] = ACTIONS(470), + [anon_sym_const] = ACTIONS(470), + [anon_sym_default] = ACTIONS(470), + [anon_sym_union] = ACTIONS(470), + [anon_sym_POUND] = ACTIONS(468), + [anon_sym_EQ] = ACTIONS(470), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_ref] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_COLON_COLON] = ACTIONS(468), + [anon_sym__] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(468), + [sym_mutable_specifier] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT_EQ] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_AMP_AMP] = ACTIONS(468), + [anon_sym_PIPE_PIPE] = ACTIONS(468), + [anon_sym_PIPE] = ACTIONS(470), + [anon_sym_CARET] = ACTIONS(470), + [anon_sym_EQ_EQ] = ACTIONS(468), + [anon_sym_BANG_EQ] = ACTIONS(468), + [anon_sym_LT_EQ] = ACTIONS(468), + [anon_sym_GT_EQ] = ACTIONS(468), + [anon_sym_LT_LT] = ACTIONS(470), + [anon_sym_GT_GT] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(470), + [anon_sym_PERCENT] = ACTIONS(470), + [anon_sym_PLUS_EQ] = ACTIONS(468), + [anon_sym_DASH_EQ] = ACTIONS(468), + [anon_sym_STAR_EQ] = ACTIONS(468), + [anon_sym_SLASH_EQ] = ACTIONS(468), + [anon_sym_PERCENT_EQ] = ACTIONS(468), + [anon_sym_AMP_EQ] = ACTIONS(468), + [anon_sym_PIPE_EQ] = ACTIONS(468), + [anon_sym_CARET_EQ] = ACTIONS(468), + [anon_sym_LT_LT_EQ] = ACTIONS(468), + [anon_sym_GT_GT_EQ] = ACTIONS(468), + [anon_sym_DOT] = ACTIONS(470), + [sym_integer_literal] = ACTIONS(468), + [aux_sym_string_literal_token1] = ACTIONS(468), + [sym_char_literal] = ACTIONS(468), + [anon_sym_true] = ACTIONS(470), + [anon_sym_false] = ACTIONS(470), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(470), + [sym_super] = ACTIONS(470), + [sym_crate] = ACTIONS(470), + [sym_metavariable] = ACTIONS(468), + [sym_raw_string_literal] = ACTIONS(468), + [sym_float_literal] = ACTIONS(468), + [sym_block_comment] = ACTIONS(3), + }, [236] = { - [sym_identifier] = ACTIONS(510), - [anon_sym_LPAREN] = ACTIONS(508), - [anon_sym_RBRACE] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_STAR] = ACTIONS(510), - [anon_sym_QMARK] = ACTIONS(508), - [anon_sym_u8] = ACTIONS(510), - [anon_sym_i8] = ACTIONS(510), - [anon_sym_u16] = ACTIONS(510), - [anon_sym_i16] = ACTIONS(510), - [anon_sym_u32] = ACTIONS(510), - [anon_sym_i32] = ACTIONS(510), - [anon_sym_u64] = ACTIONS(510), - [anon_sym_i64] = ACTIONS(510), - [anon_sym_u128] = ACTIONS(510), - [anon_sym_i128] = ACTIONS(510), - [anon_sym_isize] = ACTIONS(510), - [anon_sym_usize] = ACTIONS(510), - [anon_sym_f32] = ACTIONS(510), - [anon_sym_f64] = ACTIONS(510), - [anon_sym_bool] = ACTIONS(510), - [anon_sym_str] = ACTIONS(510), - [anon_sym_char] = ACTIONS(510), - [anon_sym_as] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_default] = ACTIONS(510), - [anon_sym_union] = ACTIONS(510), - [anon_sym_POUND] = ACTIONS(508), - [anon_sym_EQ] = ACTIONS(510), - [anon_sym_COMMA] = ACTIONS(508), - [anon_sym_ref] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(510), - [anon_sym_GT] = ACTIONS(510), - [anon_sym_COLON_COLON] = ACTIONS(508), - [anon_sym__] = ACTIONS(510), - [anon_sym_AMP] = ACTIONS(510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(508), - [sym_mutable_specifier] = ACTIONS(510), - [anon_sym_DOT_DOT] = ACTIONS(510), - [anon_sym_DOT_DOT_EQ] = ACTIONS(508), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(508), - [anon_sym_PIPE] = ACTIONS(510), - [anon_sym_CARET] = ACTIONS(510), - [anon_sym_EQ_EQ] = ACTIONS(508), - [anon_sym_BANG_EQ] = ACTIONS(508), - [anon_sym_LT_EQ] = ACTIONS(508), - [anon_sym_GT_EQ] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(510), - [anon_sym_GT_GT] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(510), - [anon_sym_PERCENT] = ACTIONS(510), - [anon_sym_PLUS_EQ] = ACTIONS(508), - [anon_sym_DASH_EQ] = ACTIONS(508), - [anon_sym_STAR_EQ] = ACTIONS(508), - [anon_sym_SLASH_EQ] = ACTIONS(508), - [anon_sym_PERCENT_EQ] = ACTIONS(508), - [anon_sym_AMP_EQ] = ACTIONS(508), - [anon_sym_PIPE_EQ] = ACTIONS(508), - [anon_sym_CARET_EQ] = ACTIONS(508), - [anon_sym_LT_LT_EQ] = ACTIONS(508), - [anon_sym_GT_GT_EQ] = ACTIONS(508), - [anon_sym_DOT] = ACTIONS(510), - [sym_integer_literal] = ACTIONS(508), - [aux_sym_string_literal_token1] = ACTIONS(508), - [sym_char_literal] = ACTIONS(508), - [anon_sym_true] = ACTIONS(510), - [anon_sym_false] = ACTIONS(510), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(510), - [sym_super] = ACTIONS(510), - [sym_crate] = ACTIONS(510), - [sym_metavariable] = ACTIONS(508), - [sym_raw_string_literal] = ACTIONS(508), - [sym_float_literal] = ACTIONS(508), + [sym_identifier] = ACTIONS(598), + [anon_sym_LPAREN] = ACTIONS(596), + [anon_sym_RBRACE] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(596), + [anon_sym_PLUS] = ACTIONS(598), + [anon_sym_STAR] = ACTIONS(598), + [anon_sym_QMARK] = ACTIONS(596), + [anon_sym_u8] = ACTIONS(598), + [anon_sym_i8] = ACTIONS(598), + [anon_sym_u16] = ACTIONS(598), + [anon_sym_i16] = ACTIONS(598), + [anon_sym_u32] = ACTIONS(598), + [anon_sym_i32] = ACTIONS(598), + [anon_sym_u64] = ACTIONS(598), + [anon_sym_i64] = ACTIONS(598), + [anon_sym_u128] = ACTIONS(598), + [anon_sym_i128] = ACTIONS(598), + [anon_sym_isize] = ACTIONS(598), + [anon_sym_usize] = ACTIONS(598), + [anon_sym_f32] = ACTIONS(598), + [anon_sym_f64] = ACTIONS(598), + [anon_sym_bool] = ACTIONS(598), + [anon_sym_str] = ACTIONS(598), + [anon_sym_char] = ACTIONS(598), + [anon_sym_as] = ACTIONS(598), + [anon_sym_const] = ACTIONS(598), + [anon_sym_default] = ACTIONS(598), + [anon_sym_union] = ACTIONS(598), + [anon_sym_POUND] = ACTIONS(596), + [anon_sym_EQ] = ACTIONS(598), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_ref] = ACTIONS(598), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_GT] = ACTIONS(598), + [anon_sym_COLON_COLON] = ACTIONS(596), + [anon_sym__] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(596), + [sym_mutable_specifier] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(596), + [anon_sym_DASH] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_CARET] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(596), + [anon_sym_BANG_EQ] = ACTIONS(596), + [anon_sym_LT_EQ] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(596), + [anon_sym_LT_LT] = ACTIONS(598), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_SLASH] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_PLUS_EQ] = ACTIONS(596), + [anon_sym_DASH_EQ] = ACTIONS(596), + [anon_sym_STAR_EQ] = ACTIONS(596), + [anon_sym_SLASH_EQ] = ACTIONS(596), + [anon_sym_PERCENT_EQ] = ACTIONS(596), + [anon_sym_AMP_EQ] = ACTIONS(596), + [anon_sym_PIPE_EQ] = ACTIONS(596), + [anon_sym_CARET_EQ] = ACTIONS(596), + [anon_sym_LT_LT_EQ] = ACTIONS(596), + [anon_sym_GT_GT_EQ] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(598), + [sym_integer_literal] = ACTIONS(596), + [aux_sym_string_literal_token1] = ACTIONS(596), + [sym_char_literal] = ACTIONS(596), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(598), + [sym_super] = ACTIONS(598), + [sym_crate] = ACTIONS(598), + [sym_metavariable] = ACTIONS(596), + [sym_raw_string_literal] = ACTIONS(596), + [sym_float_literal] = ACTIONS(596), [sym_block_comment] = ACTIONS(3), }, [237] = { - [sym_identifier] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_RBRACE] = ACTIONS(454), - [anon_sym_LBRACK] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_STAR] = ACTIONS(456), - [anon_sym_QMARK] = ACTIONS(454), - [anon_sym_u8] = ACTIONS(456), - [anon_sym_i8] = ACTIONS(456), - [anon_sym_u16] = ACTIONS(456), - [anon_sym_i16] = ACTIONS(456), - [anon_sym_u32] = ACTIONS(456), - [anon_sym_i32] = ACTIONS(456), - [anon_sym_u64] = ACTIONS(456), - [anon_sym_i64] = ACTIONS(456), - [anon_sym_u128] = ACTIONS(456), - [anon_sym_i128] = ACTIONS(456), - [anon_sym_isize] = ACTIONS(456), - [anon_sym_usize] = ACTIONS(456), - [anon_sym_f32] = ACTIONS(456), - [anon_sym_f64] = ACTIONS(456), - [anon_sym_bool] = ACTIONS(456), - [anon_sym_str] = ACTIONS(456), - [anon_sym_char] = ACTIONS(456), - [anon_sym_as] = ACTIONS(456), - [anon_sym_const] = ACTIONS(456), - [anon_sym_default] = ACTIONS(456), - [anon_sym_union] = ACTIONS(456), - [anon_sym_POUND] = ACTIONS(454), - [anon_sym_EQ] = ACTIONS(456), - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_ref] = ACTIONS(456), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_GT] = ACTIONS(456), - [anon_sym_COLON_COLON] = ACTIONS(454), - [anon_sym__] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(454), - [sym_mutable_specifier] = ACTIONS(456), - [anon_sym_DOT_DOT] = ACTIONS(456), - [anon_sym_DOT_DOT_EQ] = ACTIONS(454), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_AMP_AMP] = ACTIONS(454), - [anon_sym_PIPE_PIPE] = ACTIONS(454), - [anon_sym_PIPE] = ACTIONS(456), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_EQ_EQ] = ACTIONS(454), - [anon_sym_BANG_EQ] = ACTIONS(454), - [anon_sym_LT_EQ] = ACTIONS(454), - [anon_sym_GT_EQ] = ACTIONS(454), - [anon_sym_LT_LT] = ACTIONS(456), - [anon_sym_GT_GT] = ACTIONS(456), - [anon_sym_SLASH] = ACTIONS(456), - [anon_sym_PERCENT] = ACTIONS(456), - [anon_sym_PLUS_EQ] = ACTIONS(454), - [anon_sym_DASH_EQ] = ACTIONS(454), - [anon_sym_STAR_EQ] = ACTIONS(454), - [anon_sym_SLASH_EQ] = ACTIONS(454), - [anon_sym_PERCENT_EQ] = ACTIONS(454), - [anon_sym_AMP_EQ] = ACTIONS(454), - [anon_sym_PIPE_EQ] = ACTIONS(454), - [anon_sym_CARET_EQ] = ACTIONS(454), - [anon_sym_LT_LT_EQ] = ACTIONS(454), - [anon_sym_GT_GT_EQ] = ACTIONS(454), - [anon_sym_DOT] = ACTIONS(456), - [sym_integer_literal] = ACTIONS(454), - [aux_sym_string_literal_token1] = ACTIONS(454), - [sym_char_literal] = ACTIONS(454), - [anon_sym_true] = ACTIONS(456), - [anon_sym_false] = ACTIONS(456), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(456), - [sym_super] = ACTIONS(456), - [sym_crate] = ACTIONS(456), - [sym_metavariable] = ACTIONS(454), - [sym_raw_string_literal] = ACTIONS(454), - [sym_float_literal] = ACTIONS(454), + [sym_identifier] = ACTIONS(438), + [anon_sym_LPAREN] = ACTIONS(436), + [anon_sym_RBRACE] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(436), + [anon_sym_PLUS] = ACTIONS(438), + [anon_sym_STAR] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(436), + [anon_sym_u8] = ACTIONS(438), + [anon_sym_i8] = ACTIONS(438), + [anon_sym_u16] = ACTIONS(438), + [anon_sym_i16] = ACTIONS(438), + [anon_sym_u32] = ACTIONS(438), + [anon_sym_i32] = ACTIONS(438), + [anon_sym_u64] = ACTIONS(438), + [anon_sym_i64] = ACTIONS(438), + [anon_sym_u128] = ACTIONS(438), + [anon_sym_i128] = ACTIONS(438), + [anon_sym_isize] = ACTIONS(438), + [anon_sym_usize] = ACTIONS(438), + [anon_sym_f32] = ACTIONS(438), + [anon_sym_f64] = ACTIONS(438), + [anon_sym_bool] = ACTIONS(438), + [anon_sym_str] = ACTIONS(438), + [anon_sym_char] = ACTIONS(438), + [anon_sym_as] = ACTIONS(438), + [anon_sym_const] = ACTIONS(438), + [anon_sym_default] = ACTIONS(438), + [anon_sym_union] = ACTIONS(438), + [anon_sym_POUND] = ACTIONS(436), + [anon_sym_EQ] = ACTIONS(438), + [anon_sym_COMMA] = ACTIONS(436), + [anon_sym_ref] = ACTIONS(438), + [anon_sym_LT] = ACTIONS(438), + [anon_sym_GT] = ACTIONS(438), + [anon_sym_COLON_COLON] = ACTIONS(436), + [anon_sym__] = ACTIONS(438), + [anon_sym_AMP] = ACTIONS(438), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_mutable_specifier] = ACTIONS(438), + [anon_sym_DOT_DOT] = ACTIONS(438), + [anon_sym_DOT_DOT_EQ] = ACTIONS(436), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_AMP_AMP] = ACTIONS(436), + [anon_sym_PIPE_PIPE] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(438), + [anon_sym_CARET] = ACTIONS(438), + [anon_sym_EQ_EQ] = ACTIONS(436), + [anon_sym_BANG_EQ] = ACTIONS(436), + [anon_sym_LT_EQ] = ACTIONS(436), + [anon_sym_GT_EQ] = ACTIONS(436), + [anon_sym_LT_LT] = ACTIONS(438), + [anon_sym_GT_GT] = ACTIONS(438), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_PERCENT] = ACTIONS(438), + [anon_sym_PLUS_EQ] = ACTIONS(436), + [anon_sym_DASH_EQ] = ACTIONS(436), + [anon_sym_STAR_EQ] = ACTIONS(436), + [anon_sym_SLASH_EQ] = ACTIONS(436), + [anon_sym_PERCENT_EQ] = ACTIONS(436), + [anon_sym_AMP_EQ] = ACTIONS(436), + [anon_sym_PIPE_EQ] = ACTIONS(436), + [anon_sym_CARET_EQ] = ACTIONS(436), + [anon_sym_LT_LT_EQ] = ACTIONS(436), + [anon_sym_GT_GT_EQ] = ACTIONS(436), + [anon_sym_DOT] = ACTIONS(438), + [sym_integer_literal] = ACTIONS(436), + [aux_sym_string_literal_token1] = ACTIONS(436), + [sym_char_literal] = ACTIONS(436), + [anon_sym_true] = ACTIONS(438), + [anon_sym_false] = ACTIONS(438), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(438), + [sym_super] = ACTIONS(438), + [sym_crate] = ACTIONS(438), + [sym_metavariable] = ACTIONS(436), + [sym_raw_string_literal] = ACTIONS(436), + [sym_float_literal] = ACTIONS(436), [sym_block_comment] = ACTIONS(3), }, [238] = { - [sym_identifier] = ACTIONS(472), - [anon_sym_LPAREN] = ACTIONS(470), - [anon_sym_RBRACE] = ACTIONS(470), - [anon_sym_LBRACK] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_STAR] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_as] = ACTIONS(472), - [anon_sym_const] = ACTIONS(472), - [anon_sym_default] = ACTIONS(472), - [anon_sym_union] = ACTIONS(472), - [anon_sym_POUND] = ACTIONS(470), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_ref] = ACTIONS(472), - [anon_sym_LT] = ACTIONS(472), - [anon_sym_GT] = ACTIONS(472), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym__] = ACTIONS(472), - [anon_sym_AMP] = ACTIONS(472), - [anon_sym_DOT_DOT_DOT] = ACTIONS(470), - [sym_mutable_specifier] = ACTIONS(472), - [anon_sym_DOT_DOT] = ACTIONS(472), - [anon_sym_DOT_DOT_EQ] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(470), - [anon_sym_BANG_EQ] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(470), - [anon_sym_LT_LT] = ACTIONS(472), - [anon_sym_GT_GT] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_PERCENT] = ACTIONS(472), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_DOT] = ACTIONS(472), - [sym_integer_literal] = ACTIONS(470), - [aux_sym_string_literal_token1] = ACTIONS(470), - [sym_char_literal] = ACTIONS(470), - [anon_sym_true] = ACTIONS(472), - [anon_sym_false] = ACTIONS(472), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(472), - [sym_super] = ACTIONS(472), - [sym_crate] = ACTIONS(472), - [sym_metavariable] = ACTIONS(470), - [sym_raw_string_literal] = ACTIONS(470), - [sym_float_literal] = ACTIONS(470), + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1988), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(1994), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_type_binding] = STATE(2305), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [sym_block] = STATE(2305), + [sym__literal] = STATE(2305), + [sym_string_literal] = STATE(2159), + [sym_boolean_literal] = STATE(2159), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(886), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(886), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(886), + [sym_float_literal] = ACTIONS(886), [sym_block_comment] = ACTIONS(3), }, [239] = { - [sym_identifier] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_RBRACE] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(482), - [anon_sym_PLUS] = ACTIONS(484), - [anon_sym_STAR] = ACTIONS(484), - [anon_sym_QMARK] = ACTIONS(482), - [anon_sym_u8] = ACTIONS(484), - [anon_sym_i8] = ACTIONS(484), - [anon_sym_u16] = ACTIONS(484), - [anon_sym_i16] = ACTIONS(484), - [anon_sym_u32] = ACTIONS(484), - [anon_sym_i32] = ACTIONS(484), - [anon_sym_u64] = ACTIONS(484), - [anon_sym_i64] = ACTIONS(484), - [anon_sym_u128] = ACTIONS(484), - [anon_sym_i128] = ACTIONS(484), - [anon_sym_isize] = ACTIONS(484), - [anon_sym_usize] = ACTIONS(484), - [anon_sym_f32] = ACTIONS(484), - [anon_sym_f64] = ACTIONS(484), - [anon_sym_bool] = ACTIONS(484), - [anon_sym_str] = ACTIONS(484), - [anon_sym_char] = ACTIONS(484), - [anon_sym_as] = ACTIONS(484), - [anon_sym_const] = ACTIONS(484), - [anon_sym_default] = ACTIONS(484), - [anon_sym_union] = ACTIONS(484), - [anon_sym_POUND] = ACTIONS(482), - [anon_sym_EQ] = ACTIONS(484), - [anon_sym_COMMA] = ACTIONS(482), - [anon_sym_ref] = ACTIONS(484), - [anon_sym_LT] = ACTIONS(484), - [anon_sym_GT] = ACTIONS(484), - [anon_sym_COLON_COLON] = ACTIONS(482), - [anon_sym__] = ACTIONS(484), - [anon_sym_AMP] = ACTIONS(484), - [anon_sym_DOT_DOT_DOT] = ACTIONS(482), - [sym_mutable_specifier] = ACTIONS(484), - [anon_sym_DOT_DOT] = ACTIONS(484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(482), - [anon_sym_DASH] = ACTIONS(484), - [anon_sym_AMP_AMP] = ACTIONS(482), - [anon_sym_PIPE_PIPE] = ACTIONS(482), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_CARET] = ACTIONS(484), - [anon_sym_EQ_EQ] = ACTIONS(482), - [anon_sym_BANG_EQ] = ACTIONS(482), - [anon_sym_LT_EQ] = ACTIONS(482), - [anon_sym_GT_EQ] = ACTIONS(482), - [anon_sym_LT_LT] = ACTIONS(484), - [anon_sym_GT_GT] = ACTIONS(484), - [anon_sym_SLASH] = ACTIONS(484), - [anon_sym_PERCENT] = ACTIONS(484), - [anon_sym_PLUS_EQ] = ACTIONS(482), - [anon_sym_DASH_EQ] = ACTIONS(482), - [anon_sym_STAR_EQ] = ACTIONS(482), - [anon_sym_SLASH_EQ] = ACTIONS(482), - [anon_sym_PERCENT_EQ] = ACTIONS(482), - [anon_sym_AMP_EQ] = ACTIONS(482), - [anon_sym_PIPE_EQ] = ACTIONS(482), - [anon_sym_CARET_EQ] = ACTIONS(482), - [anon_sym_LT_LT_EQ] = ACTIONS(482), - [anon_sym_GT_GT_EQ] = ACTIONS(482), - [anon_sym_DOT] = ACTIONS(484), - [sym_integer_literal] = ACTIONS(482), - [aux_sym_string_literal_token1] = ACTIONS(482), - [sym_char_literal] = ACTIONS(482), - [anon_sym_true] = ACTIONS(484), - [anon_sym_false] = ACTIONS(484), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(484), - [sym_super] = ACTIONS(484), - [sym_crate] = ACTIONS(484), - [sym_metavariable] = ACTIONS(482), - [sym_raw_string_literal] = ACTIONS(482), - [sym_float_literal] = ACTIONS(482), + [sym_identifier] = ACTIONS(450), + [anon_sym_LPAREN] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_STAR] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(448), + [anon_sym_u8] = ACTIONS(450), + [anon_sym_i8] = ACTIONS(450), + [anon_sym_u16] = ACTIONS(450), + [anon_sym_i16] = ACTIONS(450), + [anon_sym_u32] = ACTIONS(450), + [anon_sym_i32] = ACTIONS(450), + [anon_sym_u64] = ACTIONS(450), + [anon_sym_i64] = ACTIONS(450), + [anon_sym_u128] = ACTIONS(450), + [anon_sym_i128] = ACTIONS(450), + [anon_sym_isize] = ACTIONS(450), + [anon_sym_usize] = ACTIONS(450), + [anon_sym_f32] = ACTIONS(450), + [anon_sym_f64] = ACTIONS(450), + [anon_sym_bool] = ACTIONS(450), + [anon_sym_str] = ACTIONS(450), + [anon_sym_char] = ACTIONS(450), + [anon_sym_as] = ACTIONS(450), + [anon_sym_const] = ACTIONS(450), + [anon_sym_default] = ACTIONS(450), + [anon_sym_union] = ACTIONS(450), + [anon_sym_POUND] = ACTIONS(448), + [anon_sym_EQ] = ACTIONS(450), + [anon_sym_COMMA] = ACTIONS(448), + [anon_sym_ref] = ACTIONS(450), + [anon_sym_LT] = ACTIONS(450), + [anon_sym_GT] = ACTIONS(450), + [anon_sym_COLON_COLON] = ACTIONS(448), + [anon_sym__] = ACTIONS(450), + [anon_sym_AMP] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(448), + [sym_mutable_specifier] = ACTIONS(450), + [anon_sym_DOT_DOT] = ACTIONS(450), + [anon_sym_DOT_DOT_EQ] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_AMP_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(448), + [anon_sym_PIPE] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_EQ_EQ] = ACTIONS(448), + [anon_sym_BANG_EQ] = ACTIONS(448), + [anon_sym_LT_EQ] = ACTIONS(448), + [anon_sym_GT_EQ] = ACTIONS(448), + [anon_sym_LT_LT] = ACTIONS(450), + [anon_sym_GT_GT] = ACTIONS(450), + [anon_sym_SLASH] = ACTIONS(450), + [anon_sym_PERCENT] = ACTIONS(450), + [anon_sym_PLUS_EQ] = ACTIONS(448), + [anon_sym_DASH_EQ] = ACTIONS(448), + [anon_sym_STAR_EQ] = ACTIONS(448), + [anon_sym_SLASH_EQ] = ACTIONS(448), + [anon_sym_PERCENT_EQ] = ACTIONS(448), + [anon_sym_AMP_EQ] = ACTIONS(448), + [anon_sym_PIPE_EQ] = ACTIONS(448), + [anon_sym_CARET_EQ] = ACTIONS(448), + [anon_sym_LT_LT_EQ] = ACTIONS(448), + [anon_sym_GT_GT_EQ] = ACTIONS(448), + [anon_sym_DOT] = ACTIONS(450), + [sym_integer_literal] = ACTIONS(448), + [aux_sym_string_literal_token1] = ACTIONS(448), + [sym_char_literal] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(450), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(450), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(448), + [sym_raw_string_literal] = ACTIONS(448), + [sym_float_literal] = ACTIONS(448), [sym_block_comment] = ACTIONS(3), }, [240] = { - [sym_identifier] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(496), - [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_LBRACK] = ACTIONS(496), - [anon_sym_PLUS] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(498), - [anon_sym_QMARK] = ACTIONS(496), - [anon_sym_u8] = ACTIONS(498), - [anon_sym_i8] = ACTIONS(498), - [anon_sym_u16] = ACTIONS(498), - [anon_sym_i16] = ACTIONS(498), - [anon_sym_u32] = ACTIONS(498), - [anon_sym_i32] = ACTIONS(498), - [anon_sym_u64] = ACTIONS(498), - [anon_sym_i64] = ACTIONS(498), - [anon_sym_u128] = ACTIONS(498), - [anon_sym_i128] = ACTIONS(498), - [anon_sym_isize] = ACTIONS(498), - [anon_sym_usize] = ACTIONS(498), - [anon_sym_f32] = ACTIONS(498), - [anon_sym_f64] = ACTIONS(498), - [anon_sym_bool] = ACTIONS(498), - [anon_sym_str] = ACTIONS(498), - [anon_sym_char] = ACTIONS(498), - [anon_sym_as] = ACTIONS(498), - [anon_sym_const] = ACTIONS(498), - [anon_sym_default] = ACTIONS(498), - [anon_sym_union] = ACTIONS(498), - [anon_sym_POUND] = ACTIONS(496), - [anon_sym_EQ] = ACTIONS(498), - [anon_sym_COMMA] = ACTIONS(496), - [anon_sym_ref] = ACTIONS(498), - [anon_sym_LT] = ACTIONS(498), - [anon_sym_GT] = ACTIONS(498), - [anon_sym_COLON_COLON] = ACTIONS(496), - [anon_sym__] = ACTIONS(498), - [anon_sym_AMP] = ACTIONS(498), - [anon_sym_DOT_DOT_DOT] = ACTIONS(496), - [sym_mutable_specifier] = ACTIONS(498), - [anon_sym_DOT_DOT] = ACTIONS(498), - [anon_sym_DOT_DOT_EQ] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(498), - [anon_sym_AMP_AMP] = ACTIONS(496), - [anon_sym_PIPE_PIPE] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(498), - [anon_sym_CARET] = ACTIONS(498), - [anon_sym_EQ_EQ] = ACTIONS(496), - [anon_sym_BANG_EQ] = ACTIONS(496), - [anon_sym_LT_EQ] = ACTIONS(496), - [anon_sym_GT_EQ] = ACTIONS(496), - [anon_sym_LT_LT] = ACTIONS(498), - [anon_sym_GT_GT] = ACTIONS(498), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_PERCENT] = ACTIONS(498), - [anon_sym_PLUS_EQ] = ACTIONS(496), - [anon_sym_DASH_EQ] = ACTIONS(496), - [anon_sym_STAR_EQ] = ACTIONS(496), - [anon_sym_SLASH_EQ] = ACTIONS(496), - [anon_sym_PERCENT_EQ] = ACTIONS(496), - [anon_sym_AMP_EQ] = ACTIONS(496), - [anon_sym_PIPE_EQ] = ACTIONS(496), - [anon_sym_CARET_EQ] = ACTIONS(496), - [anon_sym_LT_LT_EQ] = ACTIONS(496), - [anon_sym_GT_GT_EQ] = ACTIONS(496), - [anon_sym_DOT] = ACTIONS(498), - [sym_integer_literal] = ACTIONS(496), - [aux_sym_string_literal_token1] = ACTIONS(496), - [sym_char_literal] = ACTIONS(496), - [anon_sym_true] = ACTIONS(498), - [anon_sym_false] = ACTIONS(498), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(498), - [sym_super] = ACTIONS(498), - [sym_crate] = ACTIONS(498), - [sym_metavariable] = ACTIONS(496), - [sym_raw_string_literal] = ACTIONS(496), - [sym_float_literal] = ACTIONS(496), + [sym_identifier] = ACTIONS(478), + [anon_sym_LPAREN] = ACTIONS(476), + [anon_sym_RBRACE] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(478), + [anon_sym_QMARK] = ACTIONS(476), + [anon_sym_u8] = ACTIONS(478), + [anon_sym_i8] = ACTIONS(478), + [anon_sym_u16] = ACTIONS(478), + [anon_sym_i16] = ACTIONS(478), + [anon_sym_u32] = ACTIONS(478), + [anon_sym_i32] = ACTIONS(478), + [anon_sym_u64] = ACTIONS(478), + [anon_sym_i64] = ACTIONS(478), + [anon_sym_u128] = ACTIONS(478), + [anon_sym_i128] = ACTIONS(478), + [anon_sym_isize] = ACTIONS(478), + [anon_sym_usize] = ACTIONS(478), + [anon_sym_f32] = ACTIONS(478), + [anon_sym_f64] = ACTIONS(478), + [anon_sym_bool] = ACTIONS(478), + [anon_sym_str] = ACTIONS(478), + [anon_sym_char] = ACTIONS(478), + [anon_sym_as] = ACTIONS(478), + [anon_sym_const] = ACTIONS(478), + [anon_sym_default] = ACTIONS(478), + [anon_sym_union] = ACTIONS(478), + [anon_sym_POUND] = ACTIONS(476), + [anon_sym_EQ] = ACTIONS(478), + [anon_sym_COMMA] = ACTIONS(476), + [anon_sym_ref] = ACTIONS(478), + [anon_sym_LT] = ACTIONS(478), + [anon_sym_GT] = ACTIONS(478), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym__] = ACTIONS(478), + [anon_sym_AMP] = ACTIONS(478), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_mutable_specifier] = ACTIONS(478), + [anon_sym_DOT_DOT] = ACTIONS(478), + [anon_sym_DOT_DOT_EQ] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(478), + [anon_sym_AMP_AMP] = ACTIONS(476), + [anon_sym_PIPE_PIPE] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(478), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_EQ_EQ] = ACTIONS(476), + [anon_sym_BANG_EQ] = ACTIONS(476), + [anon_sym_LT_EQ] = ACTIONS(476), + [anon_sym_GT_EQ] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(478), + [anon_sym_SLASH] = ACTIONS(478), + [anon_sym_PERCENT] = ACTIONS(478), + [anon_sym_PLUS_EQ] = ACTIONS(476), + [anon_sym_DASH_EQ] = ACTIONS(476), + [anon_sym_STAR_EQ] = ACTIONS(476), + [anon_sym_SLASH_EQ] = ACTIONS(476), + [anon_sym_PERCENT_EQ] = ACTIONS(476), + [anon_sym_AMP_EQ] = ACTIONS(476), + [anon_sym_PIPE_EQ] = ACTIONS(476), + [anon_sym_CARET_EQ] = ACTIONS(476), + [anon_sym_LT_LT_EQ] = ACTIONS(476), + [anon_sym_GT_GT_EQ] = ACTIONS(476), + [anon_sym_DOT] = ACTIONS(478), + [sym_integer_literal] = ACTIONS(476), + [aux_sym_string_literal_token1] = ACTIONS(476), + [sym_char_literal] = ACTIONS(476), + [anon_sym_true] = ACTIONS(478), + [anon_sym_false] = ACTIONS(478), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(478), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(476), + [sym_raw_string_literal] = ACTIONS(476), + [sym_float_literal] = ACTIONS(476), [sym_block_comment] = ACTIONS(3), }, [241] = { - [sym_identifier] = ACTIONS(452), - [anon_sym_LPAREN] = ACTIONS(450), - [anon_sym_RBRACE] = ACTIONS(450), - [anon_sym_LBRACK] = ACTIONS(450), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_STAR] = ACTIONS(452), - [anon_sym_QMARK] = ACTIONS(450), - [anon_sym_u8] = ACTIONS(452), - [anon_sym_i8] = ACTIONS(452), - [anon_sym_u16] = ACTIONS(452), - [anon_sym_i16] = ACTIONS(452), - [anon_sym_u32] = ACTIONS(452), - [anon_sym_i32] = ACTIONS(452), - [anon_sym_u64] = ACTIONS(452), - [anon_sym_i64] = ACTIONS(452), - [anon_sym_u128] = ACTIONS(452), - [anon_sym_i128] = ACTIONS(452), - [anon_sym_isize] = ACTIONS(452), - [anon_sym_usize] = ACTIONS(452), - [anon_sym_f32] = ACTIONS(452), - [anon_sym_f64] = ACTIONS(452), - [anon_sym_bool] = ACTIONS(452), - [anon_sym_str] = ACTIONS(452), - [anon_sym_char] = ACTIONS(452), - [anon_sym_as] = ACTIONS(452), - [anon_sym_const] = ACTIONS(452), - [anon_sym_default] = ACTIONS(452), - [anon_sym_union] = ACTIONS(452), - [anon_sym_POUND] = ACTIONS(450), - [anon_sym_EQ] = ACTIONS(452), - [anon_sym_COMMA] = ACTIONS(450), - [anon_sym_ref] = ACTIONS(452), - [anon_sym_LT] = ACTIONS(452), - [anon_sym_GT] = ACTIONS(452), - [anon_sym_COLON_COLON] = ACTIONS(450), - [anon_sym__] = ACTIONS(452), - [anon_sym_AMP] = ACTIONS(452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym_mutable_specifier] = ACTIONS(452), - [anon_sym_DOT_DOT] = ACTIONS(452), - [anon_sym_DOT_DOT_EQ] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_AMP_AMP] = ACTIONS(450), - [anon_sym_PIPE_PIPE] = ACTIONS(450), - [anon_sym_PIPE] = ACTIONS(452), - [anon_sym_CARET] = ACTIONS(452), - [anon_sym_EQ_EQ] = ACTIONS(450), - [anon_sym_BANG_EQ] = ACTIONS(450), - [anon_sym_LT_EQ] = ACTIONS(450), - [anon_sym_GT_EQ] = ACTIONS(450), - [anon_sym_LT_LT] = ACTIONS(452), - [anon_sym_GT_GT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(452), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_PLUS_EQ] = ACTIONS(450), - [anon_sym_DASH_EQ] = ACTIONS(450), - [anon_sym_STAR_EQ] = ACTIONS(450), - [anon_sym_SLASH_EQ] = ACTIONS(450), - [anon_sym_PERCENT_EQ] = ACTIONS(450), - [anon_sym_AMP_EQ] = ACTIONS(450), - [anon_sym_PIPE_EQ] = ACTIONS(450), - [anon_sym_CARET_EQ] = ACTIONS(450), - [anon_sym_LT_LT_EQ] = ACTIONS(450), - [anon_sym_GT_GT_EQ] = ACTIONS(450), - [anon_sym_DOT] = ACTIONS(452), - [sym_integer_literal] = ACTIONS(450), - [aux_sym_string_literal_token1] = ACTIONS(450), - [sym_char_literal] = ACTIONS(450), - [anon_sym_true] = ACTIONS(452), - [anon_sym_false] = ACTIONS(452), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(452), - [sym_super] = ACTIONS(452), - [sym_crate] = ACTIONS(452), - [sym_metavariable] = ACTIONS(450), - [sym_raw_string_literal] = ACTIONS(450), - [sym_float_literal] = ACTIONS(450), + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1988), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(1994), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_type_binding] = STATE(2305), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [sym_block] = STATE(2305), + [sym__literal] = STATE(2305), + [sym_string_literal] = STATE(2159), + [sym_boolean_literal] = STATE(2159), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(886), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(886), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(886), + [sym_float_literal] = ACTIONS(886), [sym_block_comment] = ACTIONS(3), }, [242] = { - [sym_identifier] = ACTIONS(900), - [anon_sym_LPAREN] = ACTIONS(902), + [sym_identifier] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_STAR] = ACTIONS(592), + [anon_sym_QMARK] = ACTIONS(590), + [anon_sym_u8] = ACTIONS(592), + [anon_sym_i8] = ACTIONS(592), + [anon_sym_u16] = ACTIONS(592), + [anon_sym_i16] = ACTIONS(592), + [anon_sym_u32] = ACTIONS(592), + [anon_sym_i32] = ACTIONS(592), + [anon_sym_u64] = ACTIONS(592), + [anon_sym_i64] = ACTIONS(592), + [anon_sym_u128] = ACTIONS(592), + [anon_sym_i128] = ACTIONS(592), + [anon_sym_isize] = ACTIONS(592), + [anon_sym_usize] = ACTIONS(592), + [anon_sym_f32] = ACTIONS(592), + [anon_sym_f64] = ACTIONS(592), + [anon_sym_bool] = ACTIONS(592), + [anon_sym_str] = ACTIONS(592), + [anon_sym_char] = ACTIONS(592), + [anon_sym_as] = ACTIONS(592), + [anon_sym_const] = ACTIONS(592), + [anon_sym_default] = ACTIONS(592), + [anon_sym_union] = ACTIONS(592), + [anon_sym_POUND] = ACTIONS(590), + [anon_sym_EQ] = ACTIONS(592), + [anon_sym_COMMA] = ACTIONS(590), + [anon_sym_ref] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(592), + [anon_sym_GT] = ACTIONS(592), + [anon_sym_COLON_COLON] = ACTIONS(590), + [anon_sym__] = ACTIONS(592), + [anon_sym_AMP] = ACTIONS(592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(590), + [sym_mutable_specifier] = ACTIONS(592), + [anon_sym_DOT_DOT] = ACTIONS(592), + [anon_sym_DOT_DOT_EQ] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_AMP_AMP] = ACTIONS(590), + [anon_sym_PIPE_PIPE] = ACTIONS(590), + [anon_sym_PIPE] = ACTIONS(592), + [anon_sym_CARET] = ACTIONS(592), + [anon_sym_EQ_EQ] = ACTIONS(590), + [anon_sym_BANG_EQ] = ACTIONS(590), + [anon_sym_LT_EQ] = ACTIONS(590), + [anon_sym_GT_EQ] = ACTIONS(590), + [anon_sym_LT_LT] = ACTIONS(592), + [anon_sym_GT_GT] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(592), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_PLUS_EQ] = ACTIONS(590), + [anon_sym_DASH_EQ] = ACTIONS(590), + [anon_sym_STAR_EQ] = ACTIONS(590), + [anon_sym_SLASH_EQ] = ACTIONS(590), + [anon_sym_PERCENT_EQ] = ACTIONS(590), + [anon_sym_AMP_EQ] = ACTIONS(590), + [anon_sym_PIPE_EQ] = ACTIONS(590), + [anon_sym_CARET_EQ] = ACTIONS(590), + [anon_sym_LT_LT_EQ] = ACTIONS(590), + [anon_sym_GT_GT_EQ] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(592), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(590), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(592), + [anon_sym_false] = ACTIONS(592), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(592), + [sym_super] = ACTIONS(592), + [sym_crate] = ACTIONS(592), + [sym_metavariable] = ACTIONS(590), + [sym_raw_string_literal] = ACTIONS(590), + [sym_float_literal] = ACTIONS(590), + [sym_block_comment] = ACTIONS(3), + }, + [243] = { + [sym_identifier] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_RBRACE] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(486), + [anon_sym_STAR] = ACTIONS(486), + [anon_sym_QMARK] = ACTIONS(484), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [anon_sym_as] = ACTIONS(486), + [anon_sym_const] = ACTIONS(902), + [anon_sym_default] = ACTIONS(902), + [anon_sym_union] = ACTIONS(902), + [anon_sym_POUND] = ACTIONS(904), + [anon_sym_EQ] = ACTIONS(486), + [anon_sym_COMMA] = ACTIONS(484), + [anon_sym_ref] = ACTIONS(902), + [anon_sym_LT] = ACTIONS(902), + [anon_sym_GT] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(904), + [anon_sym__] = ACTIONS(902), + [anon_sym_AMP] = ACTIONS(902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(484), + [sym_mutable_specifier] = ACTIONS(902), + [anon_sym_DOT_DOT] = ACTIONS(902), + [anon_sym_DOT_DOT_EQ] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_AMP_AMP] = ACTIONS(484), + [anon_sym_PIPE_PIPE] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_CARET] = ACTIONS(486), + [anon_sym_EQ_EQ] = ACTIONS(484), + [anon_sym_BANG_EQ] = ACTIONS(484), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_LT_LT] = ACTIONS(486), + [anon_sym_GT_GT] = ACTIONS(486), + [anon_sym_SLASH] = ACTIONS(486), + [anon_sym_PERCENT] = ACTIONS(486), + [anon_sym_PLUS_EQ] = ACTIONS(484), + [anon_sym_DASH_EQ] = ACTIONS(484), + [anon_sym_STAR_EQ] = ACTIONS(484), + [anon_sym_SLASH_EQ] = ACTIONS(484), + [anon_sym_PERCENT_EQ] = ACTIONS(484), + [anon_sym_AMP_EQ] = ACTIONS(484), + [anon_sym_PIPE_EQ] = ACTIONS(484), + [anon_sym_CARET_EQ] = ACTIONS(484), + [anon_sym_LT_LT_EQ] = ACTIONS(484), + [anon_sym_GT_GT_EQ] = ACTIONS(484), + [anon_sym_DOT] = ACTIONS(486), + [sym_integer_literal] = ACTIONS(904), + [aux_sym_string_literal_token1] = ACTIONS(904), + [sym_char_literal] = ACTIONS(904), + [anon_sym_true] = ACTIONS(902), + [anon_sym_false] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(902), + [sym_super] = ACTIONS(902), + [sym_crate] = ACTIONS(902), + [sym_metavariable] = ACTIONS(904), + [sym_raw_string_literal] = ACTIONS(904), + [sym_float_literal] = ACTIONS(904), + [sym_block_comment] = ACTIONS(3), + }, + [244] = { + [sym_identifier] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(424), [anon_sym_RBRACE] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(422), - [anon_sym_STAR] = ACTIONS(422), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_STAR] = ACTIONS(426), [anon_sym_QMARK] = ACTIONS(424), - [anon_sym_u8] = ACTIONS(900), - [anon_sym_i8] = ACTIONS(900), - [anon_sym_u16] = ACTIONS(900), - [anon_sym_i16] = ACTIONS(900), - [anon_sym_u32] = ACTIONS(900), - [anon_sym_i32] = ACTIONS(900), - [anon_sym_u64] = ACTIONS(900), - [anon_sym_i64] = ACTIONS(900), - [anon_sym_u128] = ACTIONS(900), - [anon_sym_i128] = ACTIONS(900), - [anon_sym_isize] = ACTIONS(900), - [anon_sym_usize] = ACTIONS(900), - [anon_sym_f32] = ACTIONS(900), - [anon_sym_f64] = ACTIONS(900), - [anon_sym_bool] = ACTIONS(900), - [anon_sym_str] = ACTIONS(900), - [anon_sym_char] = ACTIONS(900), - [anon_sym_as] = ACTIONS(422), - [anon_sym_const] = ACTIONS(900), - [anon_sym_default] = ACTIONS(900), - [anon_sym_union] = ACTIONS(900), - [anon_sym_POUND] = ACTIONS(902), - [anon_sym_EQ] = ACTIONS(422), + [anon_sym_u8] = ACTIONS(426), + [anon_sym_i8] = ACTIONS(426), + [anon_sym_u16] = ACTIONS(426), + [anon_sym_i16] = ACTIONS(426), + [anon_sym_u32] = ACTIONS(426), + [anon_sym_i32] = ACTIONS(426), + [anon_sym_u64] = ACTIONS(426), + [anon_sym_i64] = ACTIONS(426), + [anon_sym_u128] = ACTIONS(426), + [anon_sym_i128] = ACTIONS(426), + [anon_sym_isize] = ACTIONS(426), + [anon_sym_usize] = ACTIONS(426), + [anon_sym_f32] = ACTIONS(426), + [anon_sym_f64] = ACTIONS(426), + [anon_sym_bool] = ACTIONS(426), + [anon_sym_str] = ACTIONS(426), + [anon_sym_char] = ACTIONS(426), + [anon_sym_as] = ACTIONS(426), + [anon_sym_const] = ACTIONS(426), + [anon_sym_default] = ACTIONS(426), + [anon_sym_union] = ACTIONS(426), + [anon_sym_POUND] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(426), [anon_sym_COMMA] = ACTIONS(424), - [anon_sym_ref] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(900), - [anon_sym_GT] = ACTIONS(422), - [anon_sym_COLON_COLON] = ACTIONS(902), - [anon_sym__] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(900), + [anon_sym_ref] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(426), + [anon_sym_GT] = ACTIONS(426), + [anon_sym_COLON_COLON] = ACTIONS(424), + [anon_sym__] = ACTIONS(426), + [anon_sym_AMP] = ACTIONS(426), [anon_sym_DOT_DOT_DOT] = ACTIONS(424), - [sym_mutable_specifier] = ACTIONS(900), - [anon_sym_DOT_DOT] = ACTIONS(900), + [sym_mutable_specifier] = ACTIONS(426), + [anon_sym_DOT_DOT] = ACTIONS(426), [anon_sym_DOT_DOT_EQ] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(426), [anon_sym_AMP_AMP] = ACTIONS(424), [anon_sym_PIPE_PIPE] = ACTIONS(424), - [anon_sym_PIPE] = ACTIONS(422), - [anon_sym_CARET] = ACTIONS(422), + [anon_sym_PIPE] = ACTIONS(426), + [anon_sym_CARET] = ACTIONS(426), [anon_sym_EQ_EQ] = ACTIONS(424), [anon_sym_BANG_EQ] = ACTIONS(424), [anon_sym_LT_EQ] = ACTIONS(424), [anon_sym_GT_EQ] = ACTIONS(424), - [anon_sym_LT_LT] = ACTIONS(422), - [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_SLASH] = ACTIONS(422), - [anon_sym_PERCENT] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(426), + [anon_sym_GT_GT] = ACTIONS(426), + [anon_sym_SLASH] = ACTIONS(426), + [anon_sym_PERCENT] = ACTIONS(426), [anon_sym_PLUS_EQ] = ACTIONS(424), [anon_sym_DASH_EQ] = ACTIONS(424), [anon_sym_STAR_EQ] = ACTIONS(424), @@ -41710,368 +41951,368 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(424), [anon_sym_LT_LT_EQ] = ACTIONS(424), [anon_sym_GT_GT_EQ] = ACTIONS(424), - [anon_sym_DOT] = ACTIONS(422), - [sym_integer_literal] = ACTIONS(902), - [aux_sym_string_literal_token1] = ACTIONS(902), - [sym_char_literal] = ACTIONS(902), - [anon_sym_true] = ACTIONS(900), - [anon_sym_false] = ACTIONS(900), + [anon_sym_DOT] = ACTIONS(426), + [sym_integer_literal] = ACTIONS(424), + [aux_sym_string_literal_token1] = ACTIONS(424), + [sym_char_literal] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(900), - [sym_super] = ACTIONS(900), - [sym_crate] = ACTIONS(900), - [sym_metavariable] = ACTIONS(902), - [sym_raw_string_literal] = ACTIONS(902), - [sym_float_literal] = ACTIONS(902), + [sym_self] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(424), + [sym_raw_string_literal] = ACTIONS(424), + [sym_float_literal] = ACTIONS(424), [sym_block_comment] = ACTIONS(3), }, - [243] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1990), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_type_binding] = STATE(2275), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [sym_block] = STATE(2275), - [sym__literal] = STATE(2275), - [sym_string_literal] = STATE(2136), - [sym_boolean_literal] = STATE(2136), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(904), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(890), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(890), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), + [245] = { + [sym_identifier] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(614), + [anon_sym_RBRACE] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_STAR] = ACTIONS(616), + [anon_sym_QMARK] = ACTIONS(614), + [anon_sym_u8] = ACTIONS(616), + [anon_sym_i8] = ACTIONS(616), + [anon_sym_u16] = ACTIONS(616), + [anon_sym_i16] = ACTIONS(616), + [anon_sym_u32] = ACTIONS(616), + [anon_sym_i32] = ACTIONS(616), + [anon_sym_u64] = ACTIONS(616), + [anon_sym_i64] = ACTIONS(616), + [anon_sym_u128] = ACTIONS(616), + [anon_sym_i128] = ACTIONS(616), + [anon_sym_isize] = ACTIONS(616), + [anon_sym_usize] = ACTIONS(616), + [anon_sym_f32] = ACTIONS(616), + [anon_sym_f64] = ACTIONS(616), + [anon_sym_bool] = ACTIONS(616), + [anon_sym_str] = ACTIONS(616), + [anon_sym_char] = ACTIONS(616), + [anon_sym_as] = ACTIONS(616), + [anon_sym_const] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_union] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(614), + [anon_sym_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(614), + [anon_sym_ref] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(614), + [anon_sym__] = ACTIONS(616), + [anon_sym_AMP] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(614), + [sym_mutable_specifier] = ACTIONS(616), + [anon_sym_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_AMP_AMP] = ACTIONS(614), + [anon_sym_PIPE_PIPE] = ACTIONS(614), + [anon_sym_PIPE] = ACTIONS(616), + [anon_sym_CARET] = ACTIONS(616), + [anon_sym_EQ_EQ] = ACTIONS(614), + [anon_sym_BANG_EQ] = ACTIONS(614), + [anon_sym_LT_EQ] = ACTIONS(614), + [anon_sym_GT_EQ] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(616), + [anon_sym_GT_GT] = ACTIONS(616), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PERCENT] = ACTIONS(616), + [anon_sym_PLUS_EQ] = ACTIONS(614), + [anon_sym_DASH_EQ] = ACTIONS(614), + [anon_sym_STAR_EQ] = ACTIONS(614), + [anon_sym_SLASH_EQ] = ACTIONS(614), + [anon_sym_PERCENT_EQ] = ACTIONS(614), + [anon_sym_AMP_EQ] = ACTIONS(614), + [anon_sym_PIPE_EQ] = ACTIONS(614), + [anon_sym_CARET_EQ] = ACTIONS(614), + [anon_sym_LT_LT_EQ] = ACTIONS(614), + [anon_sym_GT_GT_EQ] = ACTIONS(614), + [anon_sym_DOT] = ACTIONS(616), + [sym_integer_literal] = ACTIONS(614), + [aux_sym_string_literal_token1] = ACTIONS(614), + [sym_char_literal] = ACTIONS(614), + [anon_sym_true] = ACTIONS(616), + [anon_sym_false] = ACTIONS(616), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(616), + [sym_super] = ACTIONS(616), + [sym_crate] = ACTIONS(616), + [sym_metavariable] = ACTIONS(614), + [sym_raw_string_literal] = ACTIONS(614), + [sym_float_literal] = ACTIONS(614), [sym_block_comment] = ACTIONS(3), }, - [244] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1990), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_type_binding] = STATE(2275), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [sym_block] = STATE(2275), - [sym__literal] = STATE(2275), - [sym_string_literal] = STATE(2136), - [sym_boolean_literal] = STATE(2136), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), + [246] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1988), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(1994), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_type_binding] = STATE(2305), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [sym_block] = STATE(2305), + [sym__literal] = STATE(2305), + [sym_string_literal] = STATE(2159), + [sym_boolean_literal] = STATE(2159), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(890), + [sym_integer_literal] = ACTIONS(886), [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(890), + [sym_char_literal] = ACTIONS(886), [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(886), + [sym_float_literal] = ACTIONS(886), [sym_block_comment] = ACTIONS(3), }, - [245] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1849), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(1843), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_type_binding] = STATE(1890), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [sym_block] = STATE(1890), - [sym__literal] = STATE(1890), - [sym_string_literal] = STATE(2136), - [sym_boolean_literal] = STATE(2136), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), + [247] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1852), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(1846), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_type_binding] = STATE(1902), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [sym_block] = STATE(1902), + [sym__literal] = STATE(1902), + [sym_string_literal] = STATE(2159), + [sym_boolean_literal] = STATE(2159), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(890), + [sym_integer_literal] = ACTIONS(886), [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(890), + [sym_char_literal] = ACTIONS(886), [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(886), + [sym_float_literal] = ACTIONS(886), [sym_block_comment] = ACTIONS(3), }, - [246] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1753), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(1752), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_type_binding] = STATE(2083), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [sym_block] = STATE(2083), - [sym__literal] = STATE(2083), - [sym_string_literal] = STATE(2136), - [sym_boolean_literal] = STATE(2136), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), + [248] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1760), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(1759), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_type_binding] = STATE(2095), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [sym_block] = STATE(2095), + [sym__literal] = STATE(2095), + [sym_string_literal] = STATE(2159), + [sym_boolean_literal] = STATE(2159), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(890), + [sym_integer_literal] = ACTIONS(886), [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(890), + [sym_char_literal] = ACTIONS(886), [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_raw_string_literal] = ACTIONS(886), + [sym_float_literal] = ACTIONS(886), [sym_block_comment] = ACTIONS(3), }, - [247] = { - [sym_empty_statement] = STATE(251), - [sym_macro_definition] = STATE(251), - [sym_attribute_item] = STATE(251), - [sym_inner_attribute_item] = STATE(251), - [sym_mod_item] = STATE(251), - [sym_foreign_mod_item] = STATE(251), - [sym_struct_item] = STATE(251), - [sym_union_item] = STATE(251), - [sym_enum_item] = STATE(251), - [sym_extern_crate_declaration] = STATE(251), - [sym_const_item] = STATE(251), - [sym_static_item] = STATE(251), - [sym_type_item] = STATE(251), - [sym_function_item] = STATE(251), - [sym_function_signature_item] = STATE(251), - [sym_function_modifiers] = STATE(2536), - [sym_impl_item] = STATE(251), - [sym_trait_item] = STATE(251), - [sym_associated_type] = STATE(251), - [sym_let_declaration] = STATE(251), - [sym_use_declaration] = STATE(251), - [sym_extern_modifier] = STATE(1481), - [sym_visibility_modifier] = STATE(1324), - [sym_bracketed_type] = STATE(2358), - [sym_generic_type_with_turbofish] = STATE(2525), - [sym_macro_invocation] = STATE(251), - [sym_scoped_identifier] = STATE(2268), - [aux_sym_declaration_list_repeat1] = STATE(251), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [249] = { + [sym_empty_statement] = STATE(254), + [sym_macro_definition] = STATE(254), + [sym_attribute_item] = STATE(254), + [sym_inner_attribute_item] = STATE(254), + [sym_mod_item] = STATE(254), + [sym_foreign_mod_item] = STATE(254), + [sym_struct_item] = STATE(254), + [sym_union_item] = STATE(254), + [sym_enum_item] = STATE(254), + [sym_extern_crate_declaration] = STATE(254), + [sym_const_item] = STATE(254), + [sym_static_item] = STATE(254), + [sym_type_item] = STATE(254), + [sym_function_item] = STATE(254), + [sym_function_signature_item] = STATE(254), + [sym_function_modifiers] = STATE(2548), + [sym_impl_item] = STATE(254), + [sym_trait_item] = STATE(254), + [sym_associated_type] = STATE(254), + [sym_let_declaration] = STATE(254), + [sym_use_declaration] = STATE(254), + [sym_extern_modifier] = STATE(1513), + [sym_visibility_modifier] = STATE(1327), + [sym_bracketed_type] = STATE(2370), + [sym_generic_type_with_turbofish] = STATE(2530), + [sym_macro_invocation] = STATE(254), + [sym_scoped_identifier] = STATE(2277), + [aux_sym_declaration_list_repeat1] = STATE(254), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(906), [anon_sym_SEMI] = ACTIONS(908), [anon_sym_macro_rules_BANG] = ACTIONS(910), @@ -42120,36 +42361,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(952), [sym_block_comment] = ACTIONS(3), }, - [248] = { - [sym_empty_statement] = STATE(247), - [sym_macro_definition] = STATE(247), - [sym_attribute_item] = STATE(247), - [sym_inner_attribute_item] = STATE(247), - [sym_mod_item] = STATE(247), - [sym_foreign_mod_item] = STATE(247), - [sym_struct_item] = STATE(247), - [sym_union_item] = STATE(247), - [sym_enum_item] = STATE(247), - [sym_extern_crate_declaration] = STATE(247), - [sym_const_item] = STATE(247), - [sym_static_item] = STATE(247), - [sym_type_item] = STATE(247), - [sym_function_item] = STATE(247), - [sym_function_signature_item] = STATE(247), - [sym_function_modifiers] = STATE(2536), - [sym_impl_item] = STATE(247), - [sym_trait_item] = STATE(247), - [sym_associated_type] = STATE(247), - [sym_let_declaration] = STATE(247), - [sym_use_declaration] = STATE(247), - [sym_extern_modifier] = STATE(1481), - [sym_visibility_modifier] = STATE(1324), - [sym_bracketed_type] = STATE(2358), - [sym_generic_type_with_turbofish] = STATE(2525), - [sym_macro_invocation] = STATE(247), - [sym_scoped_identifier] = STATE(2268), - [aux_sym_declaration_list_repeat1] = STATE(247), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [250] = { + [sym_empty_statement] = STATE(254), + [sym_macro_definition] = STATE(254), + [sym_attribute_item] = STATE(254), + [sym_inner_attribute_item] = STATE(254), + [sym_mod_item] = STATE(254), + [sym_foreign_mod_item] = STATE(254), + [sym_struct_item] = STATE(254), + [sym_union_item] = STATE(254), + [sym_enum_item] = STATE(254), + [sym_extern_crate_declaration] = STATE(254), + [sym_const_item] = STATE(254), + [sym_static_item] = STATE(254), + [sym_type_item] = STATE(254), + [sym_function_item] = STATE(254), + [sym_function_signature_item] = STATE(254), + [sym_function_modifiers] = STATE(2548), + [sym_impl_item] = STATE(254), + [sym_trait_item] = STATE(254), + [sym_associated_type] = STATE(254), + [sym_let_declaration] = STATE(254), + [sym_use_declaration] = STATE(254), + [sym_extern_modifier] = STATE(1513), + [sym_visibility_modifier] = STATE(1327), + [sym_bracketed_type] = STATE(2370), + [sym_generic_type_with_turbofish] = STATE(2530), + [sym_macro_invocation] = STATE(254), + [sym_scoped_identifier] = STATE(2277), + [aux_sym_declaration_list_repeat1] = STATE(254), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(906), [anon_sym_SEMI] = ACTIONS(908), [anon_sym_macro_rules_BANG] = ACTIONS(910), @@ -42198,36 +42439,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(952), [sym_block_comment] = ACTIONS(3), }, - [249] = { - [sym_empty_statement] = STATE(251), - [sym_macro_definition] = STATE(251), - [sym_attribute_item] = STATE(251), - [sym_inner_attribute_item] = STATE(251), - [sym_mod_item] = STATE(251), - [sym_foreign_mod_item] = STATE(251), - [sym_struct_item] = STATE(251), - [sym_union_item] = STATE(251), - [sym_enum_item] = STATE(251), - [sym_extern_crate_declaration] = STATE(251), - [sym_const_item] = STATE(251), - [sym_static_item] = STATE(251), - [sym_type_item] = STATE(251), - [sym_function_item] = STATE(251), - [sym_function_signature_item] = STATE(251), - [sym_function_modifiers] = STATE(2536), - [sym_impl_item] = STATE(251), - [sym_trait_item] = STATE(251), - [sym_associated_type] = STATE(251), - [sym_let_declaration] = STATE(251), - [sym_use_declaration] = STATE(251), - [sym_extern_modifier] = STATE(1481), - [sym_visibility_modifier] = STATE(1324), - [sym_bracketed_type] = STATE(2358), - [sym_generic_type_with_turbofish] = STATE(2525), - [sym_macro_invocation] = STATE(251), - [sym_scoped_identifier] = STATE(2268), - [aux_sym_declaration_list_repeat1] = STATE(251), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [251] = { + [sym_empty_statement] = STATE(250), + [sym_macro_definition] = STATE(250), + [sym_attribute_item] = STATE(250), + [sym_inner_attribute_item] = STATE(250), + [sym_mod_item] = STATE(250), + [sym_foreign_mod_item] = STATE(250), + [sym_struct_item] = STATE(250), + [sym_union_item] = STATE(250), + [sym_enum_item] = STATE(250), + [sym_extern_crate_declaration] = STATE(250), + [sym_const_item] = STATE(250), + [sym_static_item] = STATE(250), + [sym_type_item] = STATE(250), + [sym_function_item] = STATE(250), + [sym_function_signature_item] = STATE(250), + [sym_function_modifiers] = STATE(2548), + [sym_impl_item] = STATE(250), + [sym_trait_item] = STATE(250), + [sym_associated_type] = STATE(250), + [sym_let_declaration] = STATE(250), + [sym_use_declaration] = STATE(250), + [sym_extern_modifier] = STATE(1513), + [sym_visibility_modifier] = STATE(1327), + [sym_bracketed_type] = STATE(2370), + [sym_generic_type_with_turbofish] = STATE(2530), + [sym_macro_invocation] = STATE(250), + [sym_scoped_identifier] = STATE(2277), + [aux_sym_declaration_list_repeat1] = STATE(250), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(906), [anon_sym_SEMI] = ACTIONS(908), [anon_sym_macro_rules_BANG] = ACTIONS(910), @@ -42276,7 +42517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(952), [sym_block_comment] = ACTIONS(3), }, - [250] = { + [252] = { [sym_empty_statement] = STATE(249), [sym_macro_definition] = STATE(249), [sym_attribute_item] = STATE(249), @@ -42292,20 +42533,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(249), [sym_function_item] = STATE(249), [sym_function_signature_item] = STATE(249), - [sym_function_modifiers] = STATE(2536), + [sym_function_modifiers] = STATE(2548), [sym_impl_item] = STATE(249), [sym_trait_item] = STATE(249), [sym_associated_type] = STATE(249), [sym_let_declaration] = STATE(249), [sym_use_declaration] = STATE(249), - [sym_extern_modifier] = STATE(1481), - [sym_visibility_modifier] = STATE(1324), - [sym_bracketed_type] = STATE(2358), - [sym_generic_type_with_turbofish] = STATE(2525), + [sym_extern_modifier] = STATE(1513), + [sym_visibility_modifier] = STATE(1327), + [sym_bracketed_type] = STATE(2370), + [sym_generic_type_with_turbofish] = STATE(2530), [sym_macro_invocation] = STATE(249), - [sym_scoped_identifier] = STATE(2268), + [sym_scoped_identifier] = STATE(2277), [aux_sym_declaration_list_repeat1] = STATE(249), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(906), [anon_sym_SEMI] = ACTIONS(908), [anon_sym_macro_rules_BANG] = ACTIONS(910), @@ -42354,163 +42595,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(952), [sym_block_comment] = ACTIONS(3), }, - [251] = { - [sym_empty_statement] = STATE(251), - [sym_macro_definition] = STATE(251), - [sym_attribute_item] = STATE(251), - [sym_inner_attribute_item] = STATE(251), - [sym_mod_item] = STATE(251), - [sym_foreign_mod_item] = STATE(251), - [sym_struct_item] = STATE(251), - [sym_union_item] = STATE(251), - [sym_enum_item] = STATE(251), - [sym_extern_crate_declaration] = STATE(251), - [sym_const_item] = STATE(251), - [sym_static_item] = STATE(251), - [sym_type_item] = STATE(251), - [sym_function_item] = STATE(251), - [sym_function_signature_item] = STATE(251), - [sym_function_modifiers] = STATE(2536), - [sym_impl_item] = STATE(251), - [sym_trait_item] = STATE(251), - [sym_associated_type] = STATE(251), - [sym_let_declaration] = STATE(251), - [sym_use_declaration] = STATE(251), - [sym_extern_modifier] = STATE(1481), - [sym_visibility_modifier] = STATE(1324), - [sym_bracketed_type] = STATE(2358), - [sym_generic_type_with_turbofish] = STATE(2525), - [sym_macro_invocation] = STATE(251), - [sym_scoped_identifier] = STATE(2268), - [aux_sym_declaration_list_repeat1] = STATE(251), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [253] = { + [sym__token_pattern] = STATE(253), + [sym_token_tree_pattern] = STATE(253), + [sym_token_binding_pattern] = STATE(253), + [sym_token_repetition_pattern] = STATE(253), + [sym__literal] = STATE(253), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), [sym_identifier] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_macro_rules_BANG] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_u8] = ACTIONS(971), - [anon_sym_i8] = ACTIONS(971), - [anon_sym_u16] = ACTIONS(971), - [anon_sym_i16] = ACTIONS(971), - [anon_sym_u32] = ACTIONS(971), - [anon_sym_i32] = ACTIONS(971), - [anon_sym_u64] = ACTIONS(971), - [anon_sym_i64] = ACTIONS(971), - [anon_sym_u128] = ACTIONS(971), - [anon_sym_i128] = ACTIONS(971), - [anon_sym_isize] = ACTIONS(971), - [anon_sym_usize] = ACTIONS(971), - [anon_sym_f32] = ACTIONS(971), - [anon_sym_f64] = ACTIONS(971), - [anon_sym_bool] = ACTIONS(971), - [anon_sym_str] = ACTIONS(971), - [anon_sym_char] = ACTIONS(971), - [anon_sym_async] = ACTIONS(974), - [anon_sym_const] = ACTIONS(977), - [anon_sym_default] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(983), - [anon_sym_fn] = ACTIONS(986), - [anon_sym_impl] = ACTIONS(989), - [anon_sym_let] = ACTIONS(992), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_pub] = ACTIONS(998), - [anon_sym_static] = ACTIONS(1001), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_trait] = ACTIONS(1007), - [anon_sym_type] = ACTIONS(1010), - [anon_sym_union] = ACTIONS(1013), - [anon_sym_unsafe] = ACTIONS(1016), - [anon_sym_use] = ACTIONS(1019), - [anon_sym_POUND] = ACTIONS(1022), - [anon_sym_extern] = ACTIONS(1025), - [anon_sym_LT] = ACTIONS(1028), - [anon_sym_COLON_COLON] = ACTIONS(1031), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1034), - [sym_super] = ACTIONS(1034), - [sym_crate] = ACTIONS(1037), - [sym_metavariable] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_RBRACK] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(974), + [anon_sym_u8] = ACTIONS(960), + [anon_sym_i8] = ACTIONS(960), + [anon_sym_u16] = ACTIONS(960), + [anon_sym_i16] = ACTIONS(960), + [anon_sym_u32] = ACTIONS(960), + [anon_sym_i32] = ACTIONS(960), + [anon_sym_u64] = ACTIONS(960), + [anon_sym_i64] = ACTIONS(960), + [anon_sym_u128] = ACTIONS(960), + [anon_sym_i128] = ACTIONS(960), + [anon_sym_isize] = ACTIONS(960), + [anon_sym_usize] = ACTIONS(960), + [anon_sym_f32] = ACTIONS(960), + [anon_sym_f64] = ACTIONS(960), + [anon_sym_bool] = ACTIONS(960), + [anon_sym_str] = ACTIONS(960), + [anon_sym_char] = ACTIONS(960), + [aux_sym__non_special_token_token1] = ACTIONS(960), + [anon_sym_SQUOTE] = ACTIONS(960), + [anon_sym_as] = ACTIONS(960), + [anon_sym_async] = ACTIONS(960), + [anon_sym_await] = ACTIONS(960), + [anon_sym_break] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_continue] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_fn] = ACTIONS(960), + [anon_sym_for] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_impl] = ACTIONS(960), + [anon_sym_let] = ACTIONS(960), + [anon_sym_loop] = ACTIONS(960), + [anon_sym_match] = ACTIONS(960), + [anon_sym_mod] = ACTIONS(960), + [anon_sym_pub] = ACTIONS(960), + [anon_sym_return] = ACTIONS(960), + [anon_sym_static] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(960), + [anon_sym_trait] = ACTIONS(960), + [anon_sym_type] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_unsafe] = ACTIONS(960), + [anon_sym_use] = ACTIONS(960), + [anon_sym_where] = ACTIONS(960), + [anon_sym_while] = ACTIONS(960), + [sym_mutable_specifier] = ACTIONS(960), + [sym_integer_literal] = ACTIONS(977), + [aux_sym_string_literal_token1] = ACTIONS(980), + [sym_char_literal] = ACTIONS(977), + [anon_sym_true] = ACTIONS(983), + [anon_sym_false] = ACTIONS(983), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(960), + [sym_super] = ACTIONS(960), + [sym_crate] = ACTIONS(960), + [sym_metavariable] = ACTIONS(988), + [sym_raw_string_literal] = ACTIONS(977), + [sym_float_literal] = ACTIONS(977), [sym_block_comment] = ACTIONS(3), }, - [252] = { - [sym__token_pattern] = STATE(252), - [sym_token_tree_pattern] = STATE(252), - [sym_token_binding_pattern] = STATE(252), - [sym_token_repetition_pattern] = STATE(252), - [sym__literal] = STATE(252), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_pattern_repeat1] = STATE(252), - [sym_identifier] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(1049), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1049), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_RBRACK] = ACTIONS(1049), - [anon_sym_DOLLAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(1043), - [anon_sym_i8] = ACTIONS(1043), - [anon_sym_u16] = ACTIONS(1043), - [anon_sym_i16] = ACTIONS(1043), - [anon_sym_u32] = ACTIONS(1043), - [anon_sym_i32] = ACTIONS(1043), - [anon_sym_u64] = ACTIONS(1043), - [anon_sym_i64] = ACTIONS(1043), - [anon_sym_u128] = ACTIONS(1043), - [anon_sym_i128] = ACTIONS(1043), - [anon_sym_isize] = ACTIONS(1043), - [anon_sym_usize] = ACTIONS(1043), - [anon_sym_f32] = ACTIONS(1043), - [anon_sym_f64] = ACTIONS(1043), - [anon_sym_bool] = ACTIONS(1043), - [anon_sym_str] = ACTIONS(1043), - [anon_sym_char] = ACTIONS(1043), - [aux_sym__non_special_token_token1] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1043), - [anon_sym_as] = ACTIONS(1043), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_await] = ACTIONS(1043), - [anon_sym_break] = ACTIONS(1043), - [anon_sym_const] = ACTIONS(1043), - [anon_sym_continue] = ACTIONS(1043), - [anon_sym_default] = ACTIONS(1043), - [anon_sym_enum] = ACTIONS(1043), - [anon_sym_fn] = ACTIONS(1043), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_if] = ACTIONS(1043), - [anon_sym_impl] = ACTIONS(1043), - [anon_sym_let] = ACTIONS(1043), - [anon_sym_loop] = ACTIONS(1043), - [anon_sym_match] = ACTIONS(1043), - [anon_sym_mod] = ACTIONS(1043), - [anon_sym_pub] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_struct] = ACTIONS(1043), - [anon_sym_trait] = ACTIONS(1043), - [anon_sym_type] = ACTIONS(1043), - [anon_sym_union] = ACTIONS(1043), - [anon_sym_unsafe] = ACTIONS(1043), - [anon_sym_use] = ACTIONS(1043), - [anon_sym_where] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1043), - [sym_mutable_specifier] = ACTIONS(1043), - [sym_integer_literal] = ACTIONS(1060), - [aux_sym_string_literal_token1] = ACTIONS(1063), - [sym_char_literal] = ACTIONS(1060), - [anon_sym_true] = ACTIONS(1066), - [anon_sym_false] = ACTIONS(1066), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(1043), - [sym_super] = ACTIONS(1043), - [sym_crate] = ACTIONS(1043), + [254] = { + [sym_empty_statement] = STATE(254), + [sym_macro_definition] = STATE(254), + [sym_attribute_item] = STATE(254), + [sym_inner_attribute_item] = STATE(254), + [sym_mod_item] = STATE(254), + [sym_foreign_mod_item] = STATE(254), + [sym_struct_item] = STATE(254), + [sym_union_item] = STATE(254), + [sym_enum_item] = STATE(254), + [sym_extern_crate_declaration] = STATE(254), + [sym_const_item] = STATE(254), + [sym_static_item] = STATE(254), + [sym_type_item] = STATE(254), + [sym_function_item] = STATE(254), + [sym_function_signature_item] = STATE(254), + [sym_function_modifiers] = STATE(2548), + [sym_impl_item] = STATE(254), + [sym_trait_item] = STATE(254), + [sym_associated_type] = STATE(254), + [sym_let_declaration] = STATE(254), + [sym_use_declaration] = STATE(254), + [sym_extern_modifier] = STATE(1513), + [sym_visibility_modifier] = STATE(1327), + [sym_bracketed_type] = STATE(2370), + [sym_generic_type_with_turbofish] = STATE(2530), + [sym_macro_invocation] = STATE(254), + [sym_scoped_identifier] = STATE(2277), + [aux_sym_declaration_list_repeat1] = STATE(254), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(991), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_macro_rules_BANG] = ACTIONS(997), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_u8] = ACTIONS(1002), + [anon_sym_i8] = ACTIONS(1002), + [anon_sym_u16] = ACTIONS(1002), + [anon_sym_i16] = ACTIONS(1002), + [anon_sym_u32] = ACTIONS(1002), + [anon_sym_i32] = ACTIONS(1002), + [anon_sym_u64] = ACTIONS(1002), + [anon_sym_i64] = ACTIONS(1002), + [anon_sym_u128] = ACTIONS(1002), + [anon_sym_i128] = ACTIONS(1002), + [anon_sym_isize] = ACTIONS(1002), + [anon_sym_usize] = ACTIONS(1002), + [anon_sym_f32] = ACTIONS(1002), + [anon_sym_f64] = ACTIONS(1002), + [anon_sym_bool] = ACTIONS(1002), + [anon_sym_str] = ACTIONS(1002), + [anon_sym_char] = ACTIONS(1002), + [anon_sym_async] = ACTIONS(1005), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1011), + [anon_sym_enum] = ACTIONS(1014), + [anon_sym_fn] = ACTIONS(1017), + [anon_sym_impl] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1023), + [anon_sym_mod] = ACTIONS(1026), + [anon_sym_pub] = ACTIONS(1029), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1035), + [anon_sym_trait] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_union] = ACTIONS(1044), + [anon_sym_unsafe] = ACTIONS(1047), + [anon_sym_use] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(1053), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(1062), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1065), + [sym_super] = ACTIONS(1065), + [sym_crate] = ACTIONS(1068), [sym_metavariable] = ACTIONS(1071), - [sym_raw_string_literal] = ACTIONS(1060), - [sym_float_literal] = ACTIONS(1060), [sym_block_comment] = ACTIONS(3), }, - [253] = { + [255] = { [ts_builtin_sym_end] = ACTIONS(1074), [sym_identifier] = ACTIONS(1076), [anon_sym_SEMI] = ACTIONS(1074), @@ -42587,7 +42828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1074), [sym_block_comment] = ACTIONS(3), }, - [254] = { + [256] = { [ts_builtin_sym_end] = ACTIONS(1078), [sym_identifier] = ACTIONS(1080), [anon_sym_SEMI] = ACTIONS(1078), @@ -42664,7 +42905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1078), [sym_block_comment] = ACTIONS(3), }, - [255] = { + [257] = { [ts_builtin_sym_end] = ACTIONS(1082), [sym_identifier] = ACTIONS(1084), [anon_sym_SEMI] = ACTIONS(1082), @@ -42741,7 +42982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1082), [sym_block_comment] = ACTIONS(3), }, - [256] = { + [258] = { [ts_builtin_sym_end] = ACTIONS(1086), [sym_identifier] = ACTIONS(1088), [anon_sym_SEMI] = ACTIONS(1086), @@ -42818,7 +43059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1086), [sym_block_comment] = ACTIONS(3), }, - [257] = { + [259] = { [ts_builtin_sym_end] = ACTIONS(1090), [sym_identifier] = ACTIONS(1092), [anon_sym_SEMI] = ACTIONS(1090), @@ -42895,7 +43136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1090), [sym_block_comment] = ACTIONS(3), }, - [258] = { + [260] = { [ts_builtin_sym_end] = ACTIONS(1094), [sym_identifier] = ACTIONS(1096), [anon_sym_SEMI] = ACTIONS(1094), @@ -42972,7 +43213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1094), [sym_block_comment] = ACTIONS(3), }, - [259] = { + [261] = { [ts_builtin_sym_end] = ACTIONS(1098), [sym_identifier] = ACTIONS(1100), [anon_sym_SEMI] = ACTIONS(1098), @@ -43049,7 +43290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1098), [sym_block_comment] = ACTIONS(3), }, - [260] = { + [262] = { [ts_builtin_sym_end] = ACTIONS(1102), [sym_identifier] = ACTIONS(1104), [anon_sym_SEMI] = ACTIONS(1102), @@ -43126,7 +43367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1102), [sym_block_comment] = ACTIONS(3), }, - [261] = { + [263] = { [ts_builtin_sym_end] = ACTIONS(1106), [sym_identifier] = ACTIONS(1108), [anon_sym_SEMI] = ACTIONS(1106), @@ -43203,7 +43444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1106), [sym_block_comment] = ACTIONS(3), }, - [262] = { + [264] = { [ts_builtin_sym_end] = ACTIONS(1110), [sym_identifier] = ACTIONS(1112), [anon_sym_SEMI] = ACTIONS(1110), @@ -43280,7 +43521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1110), [sym_block_comment] = ACTIONS(3), }, - [263] = { + [265] = { [ts_builtin_sym_end] = ACTIONS(1114), [sym_identifier] = ACTIONS(1116), [anon_sym_SEMI] = ACTIONS(1114), @@ -43357,7 +43598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1114), [sym_block_comment] = ACTIONS(3), }, - [264] = { + [266] = { [ts_builtin_sym_end] = ACTIONS(1118), [sym_identifier] = ACTIONS(1120), [anon_sym_SEMI] = ACTIONS(1118), @@ -43434,7 +43675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1118), [sym_block_comment] = ACTIONS(3), }, - [265] = { + [267] = { [ts_builtin_sym_end] = ACTIONS(1122), [sym_identifier] = ACTIONS(1124), [anon_sym_SEMI] = ACTIONS(1122), @@ -43511,7 +43752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1122), [sym_block_comment] = ACTIONS(3), }, - [266] = { + [268] = { [ts_builtin_sym_end] = ACTIONS(1126), [sym_identifier] = ACTIONS(1128), [anon_sym_SEMI] = ACTIONS(1126), @@ -43588,7 +43829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1126), [sym_block_comment] = ACTIONS(3), }, - [267] = { + [269] = { [ts_builtin_sym_end] = ACTIONS(1130), [sym_identifier] = ACTIONS(1132), [anon_sym_SEMI] = ACTIONS(1130), @@ -43665,7 +43906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1130), [sym_block_comment] = ACTIONS(3), }, - [268] = { + [270] = { [ts_builtin_sym_end] = ACTIONS(1134), [sym_identifier] = ACTIONS(1136), [anon_sym_SEMI] = ACTIONS(1134), @@ -43742,7 +43983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1134), [sym_block_comment] = ACTIONS(3), }, - [269] = { + [271] = { [ts_builtin_sym_end] = ACTIONS(1138), [sym_identifier] = ACTIONS(1140), [anon_sym_SEMI] = ACTIONS(1138), @@ -43819,7 +44060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1138), [sym_block_comment] = ACTIONS(3), }, - [270] = { + [272] = { [ts_builtin_sym_end] = ACTIONS(1142), [sym_identifier] = ACTIONS(1144), [anon_sym_SEMI] = ACTIONS(1142), @@ -43896,7 +44137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1142), [sym_block_comment] = ACTIONS(3), }, - [271] = { + [273] = { [ts_builtin_sym_end] = ACTIONS(1146), [sym_identifier] = ACTIONS(1148), [anon_sym_SEMI] = ACTIONS(1146), @@ -43973,7 +44214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1146), [sym_block_comment] = ACTIONS(3), }, - [272] = { + [274] = { [ts_builtin_sym_end] = ACTIONS(1150), [sym_identifier] = ACTIONS(1152), [anon_sym_SEMI] = ACTIONS(1150), @@ -44050,7 +44291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1150), [sym_block_comment] = ACTIONS(3), }, - [273] = { + [275] = { [ts_builtin_sym_end] = ACTIONS(1154), [sym_identifier] = ACTIONS(1156), [anon_sym_SEMI] = ACTIONS(1154), @@ -44127,7 +44368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1154), [sym_block_comment] = ACTIONS(3), }, - [274] = { + [276] = { [ts_builtin_sym_end] = ACTIONS(1158), [sym_identifier] = ACTIONS(1160), [anon_sym_SEMI] = ACTIONS(1158), @@ -44204,7 +44445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1158), [sym_block_comment] = ACTIONS(3), }, - [275] = { + [277] = { [ts_builtin_sym_end] = ACTIONS(1162), [sym_identifier] = ACTIONS(1164), [anon_sym_SEMI] = ACTIONS(1162), @@ -44281,7 +44522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1162), [sym_block_comment] = ACTIONS(3), }, - [276] = { + [278] = { [ts_builtin_sym_end] = ACTIONS(1166), [sym_identifier] = ACTIONS(1168), [anon_sym_SEMI] = ACTIONS(1166), @@ -44358,7 +44599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1166), [sym_block_comment] = ACTIONS(3), }, - [277] = { + [279] = { [ts_builtin_sym_end] = ACTIONS(1170), [sym_identifier] = ACTIONS(1172), [anon_sym_SEMI] = ACTIONS(1170), @@ -44435,7 +44676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1170), [sym_block_comment] = ACTIONS(3), }, - [278] = { + [280] = { [ts_builtin_sym_end] = ACTIONS(1174), [sym_identifier] = ACTIONS(1176), [anon_sym_SEMI] = ACTIONS(1174), @@ -44512,7 +44753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1174), [sym_block_comment] = ACTIONS(3), }, - [279] = { + [281] = { [ts_builtin_sym_end] = ACTIONS(1178), [sym_identifier] = ACTIONS(1180), [anon_sym_SEMI] = ACTIONS(1178), @@ -44589,7 +44830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1178), [sym_block_comment] = ACTIONS(3), }, - [280] = { + [282] = { [ts_builtin_sym_end] = ACTIONS(1182), [sym_identifier] = ACTIONS(1184), [anon_sym_SEMI] = ACTIONS(1182), @@ -44666,7 +44907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1182), [sym_block_comment] = ACTIONS(3), }, - [281] = { + [283] = { [ts_builtin_sym_end] = ACTIONS(1186), [sym_identifier] = ACTIONS(1188), [anon_sym_SEMI] = ACTIONS(1186), @@ -44743,7 +44984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1186), [sym_block_comment] = ACTIONS(3), }, - [282] = { + [284] = { [ts_builtin_sym_end] = ACTIONS(1190), [sym_identifier] = ACTIONS(1192), [anon_sym_SEMI] = ACTIONS(1190), @@ -44820,7 +45061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1190), [sym_block_comment] = ACTIONS(3), }, - [283] = { + [285] = { [ts_builtin_sym_end] = ACTIONS(1194), [sym_identifier] = ACTIONS(1196), [anon_sym_SEMI] = ACTIONS(1194), @@ -44897,7 +45138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1194), [sym_block_comment] = ACTIONS(3), }, - [284] = { + [286] = { [ts_builtin_sym_end] = ACTIONS(1198), [sym_identifier] = ACTIONS(1200), [anon_sym_SEMI] = ACTIONS(1198), @@ -44974,7 +45215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1198), [sym_block_comment] = ACTIONS(3), }, - [285] = { + [287] = { [ts_builtin_sym_end] = ACTIONS(1202), [sym_identifier] = ACTIONS(1204), [anon_sym_SEMI] = ACTIONS(1202), @@ -45051,7 +45292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, - [286] = { + [288] = { [ts_builtin_sym_end] = ACTIONS(1206), [sym_identifier] = ACTIONS(1208), [anon_sym_SEMI] = ACTIONS(1206), @@ -45128,7 +45369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1206), [sym_block_comment] = ACTIONS(3), }, - [287] = { + [289] = { [ts_builtin_sym_end] = ACTIONS(1210), [sym_identifier] = ACTIONS(1212), [anon_sym_SEMI] = ACTIONS(1210), @@ -45205,7 +45446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1210), [sym_block_comment] = ACTIONS(3), }, - [288] = { + [290] = { [ts_builtin_sym_end] = ACTIONS(1214), [sym_identifier] = ACTIONS(1216), [anon_sym_SEMI] = ACTIONS(1214), @@ -45282,7 +45523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1214), [sym_block_comment] = ACTIONS(3), }, - [289] = { + [291] = { [ts_builtin_sym_end] = ACTIONS(1218), [sym_identifier] = ACTIONS(1220), [anon_sym_SEMI] = ACTIONS(1218), @@ -45359,7 +45600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1218), [sym_block_comment] = ACTIONS(3), }, - [290] = { + [292] = { [ts_builtin_sym_end] = ACTIONS(1222), [sym_identifier] = ACTIONS(1224), [anon_sym_SEMI] = ACTIONS(1222), @@ -45436,7 +45677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1222), [sym_block_comment] = ACTIONS(3), }, - [291] = { + [293] = { [ts_builtin_sym_end] = ACTIONS(1226), [sym_identifier] = ACTIONS(1228), [anon_sym_SEMI] = ACTIONS(1226), @@ -45513,7 +45754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1226), [sym_block_comment] = ACTIONS(3), }, - [292] = { + [294] = { [ts_builtin_sym_end] = ACTIONS(1230), [sym_identifier] = ACTIONS(1232), [anon_sym_SEMI] = ACTIONS(1230), @@ -45590,7 +45831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1230), [sym_block_comment] = ACTIONS(3), }, - [293] = { + [295] = { [ts_builtin_sym_end] = ACTIONS(1234), [sym_identifier] = ACTIONS(1236), [anon_sym_SEMI] = ACTIONS(1234), @@ -45667,7 +45908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1234), [sym_block_comment] = ACTIONS(3), }, - [294] = { + [296] = { [ts_builtin_sym_end] = ACTIONS(1238), [sym_identifier] = ACTIONS(1240), [anon_sym_SEMI] = ACTIONS(1238), @@ -45744,7 +45985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1238), [sym_block_comment] = ACTIONS(3), }, - [295] = { + [297] = { [ts_builtin_sym_end] = ACTIONS(1242), [sym_identifier] = ACTIONS(1244), [anon_sym_SEMI] = ACTIONS(1242), @@ -45821,7 +46062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1242), [sym_block_comment] = ACTIONS(3), }, - [296] = { + [298] = { [ts_builtin_sym_end] = ACTIONS(1246), [sym_identifier] = ACTIONS(1248), [anon_sym_SEMI] = ACTIONS(1246), @@ -45898,7 +46139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1246), [sym_block_comment] = ACTIONS(3), }, - [297] = { + [299] = { [ts_builtin_sym_end] = ACTIONS(1250), [sym_identifier] = ACTIONS(1252), [anon_sym_SEMI] = ACTIONS(1250), @@ -45975,7 +46216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1250), [sym_block_comment] = ACTIONS(3), }, - [298] = { + [300] = { [ts_builtin_sym_end] = ACTIONS(1254), [sym_identifier] = ACTIONS(1256), [anon_sym_SEMI] = ACTIONS(1254), @@ -46052,7 +46293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1254), [sym_block_comment] = ACTIONS(3), }, - [299] = { + [301] = { [ts_builtin_sym_end] = ACTIONS(1258), [sym_identifier] = ACTIONS(1260), [anon_sym_SEMI] = ACTIONS(1258), @@ -46129,7 +46370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1258), [sym_block_comment] = ACTIONS(3), }, - [300] = { + [302] = { [ts_builtin_sym_end] = ACTIONS(1262), [sym_identifier] = ACTIONS(1264), [anon_sym_SEMI] = ACTIONS(1262), @@ -46206,7 +46447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1262), [sym_block_comment] = ACTIONS(3), }, - [301] = { + [303] = { [ts_builtin_sym_end] = ACTIONS(1266), [sym_identifier] = ACTIONS(1268), [anon_sym_SEMI] = ACTIONS(1266), @@ -46283,7 +46524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1266), [sym_block_comment] = ACTIONS(3), }, - [302] = { + [304] = { [ts_builtin_sym_end] = ACTIONS(1270), [sym_identifier] = ACTIONS(1272), [anon_sym_SEMI] = ACTIONS(1270), @@ -46360,7 +46601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1270), [sym_block_comment] = ACTIONS(3), }, - [303] = { + [305] = { [ts_builtin_sym_end] = ACTIONS(1274), [sym_identifier] = ACTIONS(1276), [anon_sym_SEMI] = ACTIONS(1274), @@ -46437,7 +46678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1274), [sym_block_comment] = ACTIONS(3), }, - [304] = { + [306] = { [ts_builtin_sym_end] = ACTIONS(1278), [sym_identifier] = ACTIONS(1280), [anon_sym_SEMI] = ACTIONS(1278), @@ -46514,7 +46755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1278), [sym_block_comment] = ACTIONS(3), }, - [305] = { + [307] = { [ts_builtin_sym_end] = ACTIONS(1282), [sym_identifier] = ACTIONS(1284), [anon_sym_SEMI] = ACTIONS(1282), @@ -46591,7 +46832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1282), [sym_block_comment] = ACTIONS(3), }, - [306] = { + [308] = { [ts_builtin_sym_end] = ACTIONS(1286), [sym_identifier] = ACTIONS(1288), [anon_sym_SEMI] = ACTIONS(1286), @@ -46668,7 +46909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1286), [sym_block_comment] = ACTIONS(3), }, - [307] = { + [309] = { [ts_builtin_sym_end] = ACTIONS(1290), [sym_identifier] = ACTIONS(1292), [anon_sym_SEMI] = ACTIONS(1290), @@ -46745,7 +46986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1290), [sym_block_comment] = ACTIONS(3), }, - [308] = { + [310] = { [ts_builtin_sym_end] = ACTIONS(1294), [sym_identifier] = ACTIONS(1296), [anon_sym_SEMI] = ACTIONS(1294), @@ -46822,7 +47063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1294), [sym_block_comment] = ACTIONS(3), }, - [309] = { + [311] = { [ts_builtin_sym_end] = ACTIONS(1298), [sym_identifier] = ACTIONS(1300), [anon_sym_SEMI] = ACTIONS(1298), @@ -46899,84 +47140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1298), [sym_block_comment] = ACTIONS(3), }, - [310] = { - [ts_builtin_sym_end] = ACTIONS(414), - [sym_identifier] = ACTIONS(416), - [anon_sym_SEMI] = ACTIONS(414), - [anon_sym_macro_rules_BANG] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_SQUOTE] = ACTIONS(416), - [anon_sym_async] = ACTIONS(416), - [anon_sym_break] = ACTIONS(416), - [anon_sym_const] = ACTIONS(416), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(416), - [anon_sym_enum] = ACTIONS(416), - [anon_sym_fn] = ACTIONS(416), - [anon_sym_for] = ACTIONS(416), - [anon_sym_if] = ACTIONS(416), - [anon_sym_impl] = ACTIONS(416), - [anon_sym_let] = ACTIONS(416), - [anon_sym_loop] = ACTIONS(416), - [anon_sym_match] = ACTIONS(416), - [anon_sym_mod] = ACTIONS(416), - [anon_sym_pub] = ACTIONS(416), - [anon_sym_return] = ACTIONS(416), - [anon_sym_static] = ACTIONS(416), - [anon_sym_struct] = ACTIONS(416), - [anon_sym_trait] = ACTIONS(416), - [anon_sym_type] = ACTIONS(416), - [anon_sym_union] = ACTIONS(416), - [anon_sym_unsafe] = ACTIONS(416), - [anon_sym_use] = ACTIONS(416), - [anon_sym_while] = ACTIONS(416), - [anon_sym_POUND] = ACTIONS(414), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_extern] = ACTIONS(416), - [anon_sym_LT] = ACTIONS(414), - [anon_sym_COLON_COLON] = ACTIONS(414), - [anon_sym_AMP] = ACTIONS(414), - [anon_sym_DOT_DOT] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(414), - [anon_sym_PIPE] = ACTIONS(414), - [anon_sym_yield] = ACTIONS(416), - [anon_sym_move] = ACTIONS(416), - [sym_integer_literal] = ACTIONS(414), - [aux_sym_string_literal_token1] = ACTIONS(414), - [sym_char_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(416), - [sym_super] = ACTIONS(416), - [sym_crate] = ACTIONS(416), - [sym_metavariable] = ACTIONS(414), - [sym_raw_string_literal] = ACTIONS(414), - [sym_float_literal] = ACTIONS(414), - [sym_block_comment] = ACTIONS(3), - }, - [311] = { + [312] = { [ts_builtin_sym_end] = ACTIONS(1302), [sym_identifier] = ACTIONS(1304), [anon_sym_SEMI] = ACTIONS(1302), @@ -47053,7 +47217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1302), [sym_block_comment] = ACTIONS(3), }, - [312] = { + [313] = { [ts_builtin_sym_end] = ACTIONS(1306), [sym_identifier] = ACTIONS(1308), [anon_sym_SEMI] = ACTIONS(1306), @@ -47130,7 +47294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1306), [sym_block_comment] = ACTIONS(3), }, - [313] = { + [314] = { [ts_builtin_sym_end] = ACTIONS(1310), [sym_identifier] = ACTIONS(1312), [anon_sym_SEMI] = ACTIONS(1310), @@ -47207,7 +47371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1310), [sym_block_comment] = ACTIONS(3), }, - [314] = { + [315] = { [ts_builtin_sym_end] = ACTIONS(1314), [sym_identifier] = ACTIONS(1316), [anon_sym_SEMI] = ACTIONS(1314), @@ -47284,7 +47448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1314), [sym_block_comment] = ACTIONS(3), }, - [315] = { + [316] = { [ts_builtin_sym_end] = ACTIONS(1318), [sym_identifier] = ACTIONS(1320), [anon_sym_SEMI] = ACTIONS(1318), @@ -47361,7 +47525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1318), [sym_block_comment] = ACTIONS(3), }, - [316] = { + [317] = { [ts_builtin_sym_end] = ACTIONS(1322), [sym_identifier] = ACTIONS(1324), [anon_sym_SEMI] = ACTIONS(1322), @@ -47438,7 +47602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1322), [sym_block_comment] = ACTIONS(3), }, - [317] = { + [318] = { [ts_builtin_sym_end] = ACTIONS(1326), [sym_identifier] = ACTIONS(1328), [anon_sym_SEMI] = ACTIONS(1326), @@ -47515,7 +47679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1326), [sym_block_comment] = ACTIONS(3), }, - [318] = { + [319] = { [ts_builtin_sym_end] = ACTIONS(1330), [sym_identifier] = ACTIONS(1332), [anon_sym_SEMI] = ACTIONS(1330), @@ -47592,7 +47756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1330), [sym_block_comment] = ACTIONS(3), }, - [319] = { + [320] = { [ts_builtin_sym_end] = ACTIONS(1334), [sym_identifier] = ACTIONS(1336), [anon_sym_SEMI] = ACTIONS(1334), @@ -47669,7 +47833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1334), [sym_block_comment] = ACTIONS(3), }, - [320] = { + [321] = { [ts_builtin_sym_end] = ACTIONS(1338), [sym_identifier] = ACTIONS(1340), [anon_sym_SEMI] = ACTIONS(1338), @@ -47746,7 +47910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1338), [sym_block_comment] = ACTIONS(3), }, - [321] = { + [322] = { [ts_builtin_sym_end] = ACTIONS(1342), [sym_identifier] = ACTIONS(1344), [anon_sym_SEMI] = ACTIONS(1342), @@ -47823,7 +47987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1342), [sym_block_comment] = ACTIONS(3), }, - [322] = { + [323] = { [ts_builtin_sym_end] = ACTIONS(1346), [sym_identifier] = ACTIONS(1348), [anon_sym_SEMI] = ACTIONS(1346), @@ -47900,7 +48064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1346), [sym_block_comment] = ACTIONS(3), }, - [323] = { + [324] = { [ts_builtin_sym_end] = ACTIONS(1350), [sym_identifier] = ACTIONS(1352), [anon_sym_SEMI] = ACTIONS(1350), @@ -47977,7 +48141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1350), [sym_block_comment] = ACTIONS(3), }, - [324] = { + [325] = { [ts_builtin_sym_end] = ACTIONS(1354), [sym_identifier] = ACTIONS(1356), [anon_sym_SEMI] = ACTIONS(1354), @@ -48054,7 +48218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1354), [sym_block_comment] = ACTIONS(3), }, - [325] = { + [326] = { [ts_builtin_sym_end] = ACTIONS(1358), [sym_identifier] = ACTIONS(1360), [anon_sym_SEMI] = ACTIONS(1358), @@ -48131,7 +48295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1358), [sym_block_comment] = ACTIONS(3), }, - [326] = { + [327] = { [ts_builtin_sym_end] = ACTIONS(1362), [sym_identifier] = ACTIONS(1364), [anon_sym_SEMI] = ACTIONS(1362), @@ -48208,7 +48372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1362), [sym_block_comment] = ACTIONS(3), }, - [327] = { + [328] = { [ts_builtin_sym_end] = ACTIONS(1366), [sym_identifier] = ACTIONS(1368), [anon_sym_SEMI] = ACTIONS(1366), @@ -48285,7 +48449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1366), [sym_block_comment] = ACTIONS(3), }, - [328] = { + [329] = { [ts_builtin_sym_end] = ACTIONS(1370), [sym_identifier] = ACTIONS(1372), [anon_sym_SEMI] = ACTIONS(1370), @@ -48362,7 +48526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1370), [sym_block_comment] = ACTIONS(3), }, - [329] = { + [330] = { [ts_builtin_sym_end] = ACTIONS(1374), [sym_identifier] = ACTIONS(1376), [anon_sym_SEMI] = ACTIONS(1374), @@ -48439,7 +48603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1374), [sym_block_comment] = ACTIONS(3), }, - [330] = { + [331] = { [ts_builtin_sym_end] = ACTIONS(1378), [sym_identifier] = ACTIONS(1380), [anon_sym_SEMI] = ACTIONS(1378), @@ -48516,7 +48680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1378), [sym_block_comment] = ACTIONS(3), }, - [331] = { + [332] = { [ts_builtin_sym_end] = ACTIONS(1382), [sym_identifier] = ACTIONS(1384), [anon_sym_SEMI] = ACTIONS(1382), @@ -48593,7 +48757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1382), [sym_block_comment] = ACTIONS(3), }, - [332] = { + [333] = { [ts_builtin_sym_end] = ACTIONS(1386), [sym_identifier] = ACTIONS(1388), [anon_sym_SEMI] = ACTIONS(1386), @@ -48670,7 +48834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1386), [sym_block_comment] = ACTIONS(3), }, - [333] = { + [334] = { [ts_builtin_sym_end] = ACTIONS(1390), [sym_identifier] = ACTIONS(1392), [anon_sym_SEMI] = ACTIONS(1390), @@ -48747,7 +48911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1390), [sym_block_comment] = ACTIONS(3), }, - [334] = { + [335] = { [ts_builtin_sym_end] = ACTIONS(1394), [sym_identifier] = ACTIONS(1396), [anon_sym_SEMI] = ACTIONS(1394), @@ -48824,7 +48988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1394), [sym_block_comment] = ACTIONS(3), }, - [335] = { + [336] = { [ts_builtin_sym_end] = ACTIONS(1398), [sym_identifier] = ACTIONS(1400), [anon_sym_SEMI] = ACTIONS(1398), @@ -48901,7 +49065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1398), [sym_block_comment] = ACTIONS(3), }, - [336] = { + [337] = { [ts_builtin_sym_end] = ACTIONS(1402), [sym_identifier] = ACTIONS(1404), [anon_sym_SEMI] = ACTIONS(1402), @@ -48978,7 +49142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1402), [sym_block_comment] = ACTIONS(3), }, - [337] = { + [338] = { [ts_builtin_sym_end] = ACTIONS(1406), [sym_identifier] = ACTIONS(1408), [anon_sym_SEMI] = ACTIONS(1406), @@ -49055,7 +49219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1406), [sym_block_comment] = ACTIONS(3), }, - [338] = { + [339] = { [ts_builtin_sym_end] = ACTIONS(1410), [sym_identifier] = ACTIONS(1412), [anon_sym_SEMI] = ACTIONS(1410), @@ -49132,7 +49296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1410), [sym_block_comment] = ACTIONS(3), }, - [339] = { + [340] = { [ts_builtin_sym_end] = ACTIONS(1414), [sym_identifier] = ACTIONS(1416), [anon_sym_SEMI] = ACTIONS(1414), @@ -49209,7 +49373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1414), [sym_block_comment] = ACTIONS(3), }, - [340] = { + [341] = { [ts_builtin_sym_end] = ACTIONS(1418), [sym_identifier] = ACTIONS(1420), [anon_sym_SEMI] = ACTIONS(1418), @@ -49286,7 +49450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1418), [sym_block_comment] = ACTIONS(3), }, - [341] = { + [342] = { [ts_builtin_sym_end] = ACTIONS(1422), [sym_identifier] = ACTIONS(1424), [anon_sym_SEMI] = ACTIONS(1422), @@ -49363,7 +49527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1422), [sym_block_comment] = ACTIONS(3), }, - [342] = { + [343] = { [ts_builtin_sym_end] = ACTIONS(1426), [sym_identifier] = ACTIONS(1428), [anon_sym_SEMI] = ACTIONS(1426), @@ -49440,7 +49604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1426), [sym_block_comment] = ACTIONS(3), }, - [343] = { + [344] = { [ts_builtin_sym_end] = ACTIONS(1430), [sym_identifier] = ACTIONS(1432), [anon_sym_SEMI] = ACTIONS(1430), @@ -49517,7 +49681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1430), [sym_block_comment] = ACTIONS(3), }, - [344] = { + [345] = { [ts_builtin_sym_end] = ACTIONS(1434), [sym_identifier] = ACTIONS(1436), [anon_sym_SEMI] = ACTIONS(1434), @@ -49594,7 +49758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1434), [sym_block_comment] = ACTIONS(3), }, - [345] = { + [346] = { [ts_builtin_sym_end] = ACTIONS(1438), [sym_identifier] = ACTIONS(1440), [anon_sym_SEMI] = ACTIONS(1438), @@ -49671,7 +49835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1438), [sym_block_comment] = ACTIONS(3), }, - [346] = { + [347] = { [ts_builtin_sym_end] = ACTIONS(1442), [sym_identifier] = ACTIONS(1444), [anon_sym_SEMI] = ACTIONS(1442), @@ -49748,7 +49912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1442), [sym_block_comment] = ACTIONS(3), }, - [347] = { + [348] = { [ts_builtin_sym_end] = ACTIONS(1446), [sym_identifier] = ACTIONS(1448), [anon_sym_SEMI] = ACTIONS(1446), @@ -49825,7 +49989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1446), [sym_block_comment] = ACTIONS(3), }, - [348] = { + [349] = { [ts_builtin_sym_end] = ACTIONS(1450), [sym_identifier] = ACTIONS(1452), [anon_sym_SEMI] = ACTIONS(1450), @@ -49902,7 +50066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1450), [sym_block_comment] = ACTIONS(3), }, - [349] = { + [350] = { [ts_builtin_sym_end] = ACTIONS(1454), [sym_identifier] = ACTIONS(1456), [anon_sym_SEMI] = ACTIONS(1454), @@ -49979,7 +50143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1454), [sym_block_comment] = ACTIONS(3), }, - [350] = { + [351] = { [ts_builtin_sym_end] = ACTIONS(1458), [sym_identifier] = ACTIONS(1460), [anon_sym_SEMI] = ACTIONS(1458), @@ -50056,7 +50220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1458), [sym_block_comment] = ACTIONS(3), }, - [351] = { + [352] = { [ts_builtin_sym_end] = ACTIONS(1462), [sym_identifier] = ACTIONS(1464), [anon_sym_SEMI] = ACTIONS(1462), @@ -50133,7 +50297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1462), [sym_block_comment] = ACTIONS(3), }, - [352] = { + [353] = { [ts_builtin_sym_end] = ACTIONS(1466), [sym_identifier] = ACTIONS(1468), [anon_sym_SEMI] = ACTIONS(1466), @@ -50210,7 +50374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1466), [sym_block_comment] = ACTIONS(3), }, - [353] = { + [354] = { [ts_builtin_sym_end] = ACTIONS(1470), [sym_identifier] = ACTIONS(1472), [anon_sym_SEMI] = ACTIONS(1470), @@ -50287,7 +50451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1470), [sym_block_comment] = ACTIONS(3), }, - [354] = { + [355] = { [ts_builtin_sym_end] = ACTIONS(1474), [sym_identifier] = ACTIONS(1476), [anon_sym_SEMI] = ACTIONS(1474), @@ -50364,7 +50528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1474), [sym_block_comment] = ACTIONS(3), }, - [355] = { + [356] = { [ts_builtin_sym_end] = ACTIONS(1478), [sym_identifier] = ACTIONS(1480), [anon_sym_SEMI] = ACTIONS(1478), @@ -50441,7 +50605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1478), [sym_block_comment] = ACTIONS(3), }, - [356] = { + [357] = { [ts_builtin_sym_end] = ACTIONS(1482), [sym_identifier] = ACTIONS(1484), [anon_sym_SEMI] = ACTIONS(1482), @@ -50518,7 +50682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1482), [sym_block_comment] = ACTIONS(3), }, - [357] = { + [358] = { [ts_builtin_sym_end] = ACTIONS(1486), [sym_identifier] = ACTIONS(1488), [anon_sym_SEMI] = ACTIONS(1486), @@ -50595,7 +50759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1486), [sym_block_comment] = ACTIONS(3), }, - [358] = { + [359] = { [ts_builtin_sym_end] = ACTIONS(1490), [sym_identifier] = ACTIONS(1492), [anon_sym_SEMI] = ACTIONS(1490), @@ -50672,7 +50836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1490), [sym_block_comment] = ACTIONS(3), }, - [359] = { + [360] = { [ts_builtin_sym_end] = ACTIONS(1494), [sym_identifier] = ACTIONS(1496), [anon_sym_SEMI] = ACTIONS(1494), @@ -50749,7 +50913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1494), [sym_block_comment] = ACTIONS(3), }, - [360] = { + [361] = { [ts_builtin_sym_end] = ACTIONS(1498), [sym_identifier] = ACTIONS(1500), [anon_sym_SEMI] = ACTIONS(1498), @@ -50826,7 +50990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, - [361] = { + [362] = { [ts_builtin_sym_end] = ACTIONS(1502), [sym_identifier] = ACTIONS(1504), [anon_sym_SEMI] = ACTIONS(1502), @@ -50903,7 +51067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1502), [sym_block_comment] = ACTIONS(3), }, - [362] = { + [363] = { [ts_builtin_sym_end] = ACTIONS(1506), [sym_identifier] = ACTIONS(1508), [anon_sym_SEMI] = ACTIONS(1506), @@ -50980,66 +51144,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1506), [sym_block_comment] = ACTIONS(3), }, - [363] = { - [sym_attribute_item] = STATE(545), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_match_arm] = STATE(486), - [sym_last_match_arm] = STATE(2458), - [sym_match_pattern] = STATE(2312), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1916), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_enum_variant_list_repeat1] = STATE(545), - [aux_sym_match_block_repeat1] = STATE(486), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), + [364] = { + [ts_builtin_sym_end] = ACTIONS(1510), + [sym_identifier] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_macro_rules_BANG] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_u8] = ACTIONS(1512), + [anon_sym_i8] = ACTIONS(1512), + [anon_sym_u16] = ACTIONS(1512), + [anon_sym_i16] = ACTIONS(1512), + [anon_sym_u32] = ACTIONS(1512), + [anon_sym_i32] = ACTIONS(1512), + [anon_sym_u64] = ACTIONS(1512), + [anon_sym_i64] = ACTIONS(1512), + [anon_sym_u128] = ACTIONS(1512), + [anon_sym_i128] = ACTIONS(1512), + [anon_sym_isize] = ACTIONS(1512), + [anon_sym_usize] = ACTIONS(1512), + [anon_sym_f32] = ACTIONS(1512), + [anon_sym_f64] = ACTIONS(1512), + [anon_sym_bool] = ACTIONS(1512), + [anon_sym_str] = ACTIONS(1512), + [anon_sym_char] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_fn] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_impl] = ACTIONS(1512), + [anon_sym_let] = ACTIONS(1512), + [anon_sym_loop] = ACTIONS(1512), + [anon_sym_match] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1512), + [anon_sym_pub] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_trait] = ACTIONS(1512), + [anon_sym_type] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_unsafe] = ACTIONS(1512), + [anon_sym_use] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1510), + [anon_sym_COLON_COLON] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), + [anon_sym_move] = ACTIONS(1512), + [sym_integer_literal] = ACTIONS(1510), + [aux_sym_string_literal_token1] = ACTIONS(1510), + [sym_char_literal] = ACTIONS(1510), + [anon_sym_true] = ACTIONS(1512), + [anon_sym_false] = ACTIONS(1512), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1512), + [sym_super] = ACTIONS(1512), + [sym_crate] = ACTIONS(1512), + [sym_metavariable] = ACTIONS(1510), + [sym_raw_string_literal] = ACTIONS(1510), + [sym_float_literal] = ACTIONS(1510), + [sym_block_comment] = ACTIONS(3), + }, + [365] = { + [ts_builtin_sym_end] = ACTIONS(1514), + [sym_identifier] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_macro_rules_BANG] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1514), [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_u8] = ACTIONS(1516), + [anon_sym_i8] = ACTIONS(1516), + [anon_sym_u16] = ACTIONS(1516), + [anon_sym_i16] = ACTIONS(1516), + [anon_sym_u32] = ACTIONS(1516), + [anon_sym_i32] = ACTIONS(1516), + [anon_sym_u64] = ACTIONS(1516), + [anon_sym_i64] = ACTIONS(1516), + [anon_sym_u128] = ACTIONS(1516), + [anon_sym_i128] = ACTIONS(1516), + [anon_sym_isize] = ACTIONS(1516), + [anon_sym_usize] = ACTIONS(1516), + [anon_sym_f32] = ACTIONS(1516), + [anon_sym_f64] = ACTIONS(1516), + [anon_sym_bool] = ACTIONS(1516), + [anon_sym_str] = ACTIONS(1516), + [anon_sym_char] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_fn] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_impl] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_loop] = ACTIONS(1516), + [anon_sym_match] = ACTIONS(1516), + [anon_sym_mod] = ACTIONS(1516), + [anon_sym_pub] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_trait] = ACTIONS(1516), + [anon_sym_type] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_unsafe] = ACTIONS(1516), + [anon_sym_use] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1514), + [anon_sym_COLON_COLON] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_DOT_DOT] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_yield] = ACTIONS(1516), + [anon_sym_move] = ACTIONS(1516), + [sym_integer_literal] = ACTIONS(1514), + [aux_sym_string_literal_token1] = ACTIONS(1514), + [sym_char_literal] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = ACTIONS(1516), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1516), + [sym_super] = ACTIONS(1516), + [sym_crate] = ACTIONS(1516), + [sym_metavariable] = ACTIONS(1514), + [sym_raw_string_literal] = ACTIONS(1514), + [sym_float_literal] = ACTIONS(1514), + [sym_block_comment] = ACTIONS(3), + }, + [366] = { + [sym_attribute_item] = STATE(547), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_match_arm] = STATE(488), + [sym_last_match_arm] = STATE(2324), + [sym_match_pattern] = STATE(2441), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1928), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_enum_variant_list_repeat1] = STATE(547), + [aux_sym_match_block_repeat1] = STATE(488), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -51049,169 +51367,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [364] = { - [ts_builtin_sym_end] = ACTIONS(1532), - [sym_identifier] = ACTIONS(1534), - [anon_sym_SEMI] = ACTIONS(1532), - [anon_sym_macro_rules_BANG] = ACTIONS(1532), - [anon_sym_LPAREN] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_RBRACE] = ACTIONS(1532), - [anon_sym_LBRACK] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(1532), - [anon_sym_u8] = ACTIONS(1534), - [anon_sym_i8] = ACTIONS(1534), - [anon_sym_u16] = ACTIONS(1534), - [anon_sym_i16] = ACTIONS(1534), - [anon_sym_u32] = ACTIONS(1534), - [anon_sym_i32] = ACTIONS(1534), - [anon_sym_u64] = ACTIONS(1534), - [anon_sym_i64] = ACTIONS(1534), - [anon_sym_u128] = ACTIONS(1534), - [anon_sym_i128] = ACTIONS(1534), - [anon_sym_isize] = ACTIONS(1534), - [anon_sym_usize] = ACTIONS(1534), - [anon_sym_f32] = ACTIONS(1534), - [anon_sym_f64] = ACTIONS(1534), - [anon_sym_bool] = ACTIONS(1534), - [anon_sym_str] = ACTIONS(1534), - [anon_sym_char] = ACTIONS(1534), - [anon_sym_SQUOTE] = ACTIONS(1534), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1534), - [anon_sym_enum] = ACTIONS(1534), - [anon_sym_fn] = ACTIONS(1534), - [anon_sym_for] = ACTIONS(1534), - [anon_sym_if] = ACTIONS(1534), - [anon_sym_impl] = ACTIONS(1534), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_loop] = ACTIONS(1534), - [anon_sym_match] = ACTIONS(1534), - [anon_sym_mod] = ACTIONS(1534), - [anon_sym_pub] = ACTIONS(1534), - [anon_sym_return] = ACTIONS(1534), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_struct] = ACTIONS(1534), - [anon_sym_trait] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_union] = ACTIONS(1534), - [anon_sym_unsafe] = ACTIONS(1534), - [anon_sym_use] = ACTIONS(1534), - [anon_sym_while] = ACTIONS(1534), - [anon_sym_POUND] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1532), - [anon_sym_extern] = ACTIONS(1534), - [anon_sym_LT] = ACTIONS(1532), - [anon_sym_COLON_COLON] = ACTIONS(1532), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_DOT_DOT] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(1532), - [anon_sym_yield] = ACTIONS(1534), - [anon_sym_move] = ACTIONS(1534), - [sym_integer_literal] = ACTIONS(1532), - [aux_sym_string_literal_token1] = ACTIONS(1532), - [sym_char_literal] = ACTIONS(1532), - [anon_sym_true] = ACTIONS(1534), - [anon_sym_false] = ACTIONS(1534), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1534), - [sym_super] = ACTIONS(1534), - [sym_crate] = ACTIONS(1534), - [sym_metavariable] = ACTIONS(1532), - [sym_raw_string_literal] = ACTIONS(1532), - [sym_float_literal] = ACTIONS(1532), - [sym_block_comment] = ACTIONS(3), - }, - [365] = { - [ts_builtin_sym_end] = ACTIONS(1536), - [sym_identifier] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1536), - [anon_sym_macro_rules_BANG] = ACTIONS(1536), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1536), - [anon_sym_STAR] = ACTIONS(1536), - [anon_sym_u8] = ACTIONS(1538), - [anon_sym_i8] = ACTIONS(1538), - [anon_sym_u16] = ACTIONS(1538), - [anon_sym_i16] = ACTIONS(1538), - [anon_sym_u32] = ACTIONS(1538), - [anon_sym_i32] = ACTIONS(1538), - [anon_sym_u64] = ACTIONS(1538), - [anon_sym_i64] = ACTIONS(1538), - [anon_sym_u128] = ACTIONS(1538), - [anon_sym_i128] = ACTIONS(1538), - [anon_sym_isize] = ACTIONS(1538), - [anon_sym_usize] = ACTIONS(1538), - [anon_sym_f32] = ACTIONS(1538), - [anon_sym_f64] = ACTIONS(1538), - [anon_sym_bool] = ACTIONS(1538), - [anon_sym_str] = ACTIONS(1538), - [anon_sym_char] = ACTIONS(1538), - [anon_sym_SQUOTE] = ACTIONS(1538), - [anon_sym_async] = ACTIONS(1538), - [anon_sym_break] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1538), - [anon_sym_enum] = ACTIONS(1538), - [anon_sym_fn] = ACTIONS(1538), - [anon_sym_for] = ACTIONS(1538), - [anon_sym_if] = ACTIONS(1538), - [anon_sym_impl] = ACTIONS(1538), - [anon_sym_let] = ACTIONS(1538), - [anon_sym_loop] = ACTIONS(1538), - [anon_sym_match] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1538), - [anon_sym_pub] = ACTIONS(1538), - [anon_sym_return] = ACTIONS(1538), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_struct] = ACTIONS(1538), - [anon_sym_trait] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_union] = ACTIONS(1538), - [anon_sym_unsafe] = ACTIONS(1538), - [anon_sym_use] = ACTIONS(1538), - [anon_sym_while] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(1536), - [anon_sym_BANG] = ACTIONS(1536), - [anon_sym_extern] = ACTIONS(1538), - [anon_sym_LT] = ACTIONS(1536), - [anon_sym_COLON_COLON] = ACTIONS(1536), - [anon_sym_AMP] = ACTIONS(1536), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_PIPE] = ACTIONS(1536), - [anon_sym_yield] = ACTIONS(1538), - [anon_sym_move] = ACTIONS(1538), - [sym_integer_literal] = ACTIONS(1536), - [aux_sym_string_literal_token1] = ACTIONS(1536), - [sym_char_literal] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1538), - [sym_super] = ACTIONS(1538), - [sym_crate] = ACTIONS(1538), - [sym_metavariable] = ACTIONS(1536), - [sym_raw_string_literal] = ACTIONS(1536), - [sym_float_literal] = ACTIONS(1536), - [sym_block_comment] = ACTIONS(3), - }, - [366] = { + [367] = { [ts_builtin_sym_end] = ACTIONS(1540), [sym_identifier] = ACTIONS(1542), [anon_sym_SEMI] = ACTIONS(1540), @@ -51288,7 +51452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1540), [sym_block_comment] = ACTIONS(3), }, - [367] = { + [368] = { [ts_builtin_sym_end] = ACTIONS(1544), [sym_identifier] = ACTIONS(1546), [anon_sym_SEMI] = ACTIONS(1544), @@ -51365,7 +51529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1544), [sym_block_comment] = ACTIONS(3), }, - [368] = { + [369] = { [ts_builtin_sym_end] = ACTIONS(1548), [sym_identifier] = ACTIONS(1550), [anon_sym_SEMI] = ACTIONS(1548), @@ -51442,7 +51606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1548), [sym_block_comment] = ACTIONS(3), }, - [369] = { + [370] = { [ts_builtin_sym_end] = ACTIONS(1552), [sym_identifier] = ACTIONS(1554), [anon_sym_SEMI] = ACTIONS(1552), @@ -51519,7 +51683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1552), [sym_block_comment] = ACTIONS(3), }, - [370] = { + [371] = { [ts_builtin_sym_end] = ACTIONS(1556), [sym_identifier] = ACTIONS(1558), [anon_sym_SEMI] = ACTIONS(1556), @@ -51596,7 +51760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1556), [sym_block_comment] = ACTIONS(3), }, - [371] = { + [372] = { [ts_builtin_sym_end] = ACTIONS(1560), [sym_identifier] = ACTIONS(1562), [anon_sym_SEMI] = ACTIONS(1560), @@ -51673,7 +51837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1560), [sym_block_comment] = ACTIONS(3), }, - [372] = { + [373] = { [ts_builtin_sym_end] = ACTIONS(1564), [sym_identifier] = ACTIONS(1566), [anon_sym_SEMI] = ACTIONS(1564), @@ -51750,7 +51914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1564), [sym_block_comment] = ACTIONS(3), }, - [373] = { + [374] = { [ts_builtin_sym_end] = ACTIONS(1568), [sym_identifier] = ACTIONS(1570), [anon_sym_SEMI] = ACTIONS(1568), @@ -51827,7 +51991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1568), [sym_block_comment] = ACTIONS(3), }, - [374] = { + [375] = { [ts_builtin_sym_end] = ACTIONS(1572), [sym_identifier] = ACTIONS(1574), [anon_sym_SEMI] = ACTIONS(1572), @@ -51904,7 +52068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1572), [sym_block_comment] = ACTIONS(3), }, - [375] = { + [376] = { [ts_builtin_sym_end] = ACTIONS(1576), [sym_identifier] = ACTIONS(1578), [anon_sym_SEMI] = ACTIONS(1576), @@ -51981,7 +52145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1576), [sym_block_comment] = ACTIONS(3), }, - [376] = { + [377] = { [ts_builtin_sym_end] = ACTIONS(1580), [sym_identifier] = ACTIONS(1582), [anon_sym_SEMI] = ACTIONS(1580), @@ -52058,7 +52222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1580), [sym_block_comment] = ACTIONS(3), }, - [377] = { + [378] = { [ts_builtin_sym_end] = ACTIONS(1584), [sym_identifier] = ACTIONS(1586), [anon_sym_SEMI] = ACTIONS(1584), @@ -52135,7 +52299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1584), [sym_block_comment] = ACTIONS(3), }, - [378] = { + [379] = { [ts_builtin_sym_end] = ACTIONS(1588), [sym_identifier] = ACTIONS(1590), [anon_sym_SEMI] = ACTIONS(1588), @@ -52212,7 +52376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1588), [sym_block_comment] = ACTIONS(3), }, - [379] = { + [380] = { [ts_builtin_sym_end] = ACTIONS(1592), [sym_identifier] = ACTIONS(1594), [anon_sym_SEMI] = ACTIONS(1592), @@ -52289,7 +52453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1592), [sym_block_comment] = ACTIONS(3), }, - [380] = { + [381] = { [ts_builtin_sym_end] = ACTIONS(1596), [sym_identifier] = ACTIONS(1598), [anon_sym_SEMI] = ACTIONS(1596), @@ -52366,7 +52530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1596), [sym_block_comment] = ACTIONS(3), }, - [381] = { + [382] = { [ts_builtin_sym_end] = ACTIONS(1600), [sym_identifier] = ACTIONS(1602), [anon_sym_SEMI] = ACTIONS(1600), @@ -52443,7 +52607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1600), [sym_block_comment] = ACTIONS(3), }, - [382] = { + [383] = { [ts_builtin_sym_end] = ACTIONS(1604), [sym_identifier] = ACTIONS(1606), [anon_sym_SEMI] = ACTIONS(1604), @@ -52520,7 +52684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1604), [sym_block_comment] = ACTIONS(3), }, - [383] = { + [384] = { [ts_builtin_sym_end] = ACTIONS(1608), [sym_identifier] = ACTIONS(1610), [anon_sym_SEMI] = ACTIONS(1608), @@ -52597,7 +52761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1608), [sym_block_comment] = ACTIONS(3), }, - [384] = { + [385] = { [ts_builtin_sym_end] = ACTIONS(1612), [sym_identifier] = ACTIONS(1614), [anon_sym_SEMI] = ACTIONS(1612), @@ -52674,7 +52838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1612), [sym_block_comment] = ACTIONS(3), }, - [385] = { + [386] = { [ts_builtin_sym_end] = ACTIONS(1616), [sym_identifier] = ACTIONS(1618), [anon_sym_SEMI] = ACTIONS(1616), @@ -52751,7 +52915,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1616), [sym_block_comment] = ACTIONS(3), }, - [386] = { + [387] = { [ts_builtin_sym_end] = ACTIONS(1620), [sym_identifier] = ACTIONS(1622), [anon_sym_SEMI] = ACTIONS(1620), @@ -52828,7 +52992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1620), [sym_block_comment] = ACTIONS(3), }, - [387] = { + [388] = { [ts_builtin_sym_end] = ACTIONS(1624), [sym_identifier] = ACTIONS(1626), [anon_sym_SEMI] = ACTIONS(1624), @@ -52905,7 +53069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1624), [sym_block_comment] = ACTIONS(3), }, - [388] = { + [389] = { [ts_builtin_sym_end] = ACTIONS(1628), [sym_identifier] = ACTIONS(1630), [anon_sym_SEMI] = ACTIONS(1628), @@ -52982,7 +53146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1628), [sym_block_comment] = ACTIONS(3), }, - [389] = { + [390] = { [ts_builtin_sym_end] = ACTIONS(1632), [sym_identifier] = ACTIONS(1634), [anon_sym_SEMI] = ACTIONS(1632), @@ -53059,7 +53223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1632), [sym_block_comment] = ACTIONS(3), }, - [390] = { + [391] = { [ts_builtin_sym_end] = ACTIONS(1636), [sym_identifier] = ACTIONS(1638), [anon_sym_SEMI] = ACTIONS(1636), @@ -53136,7 +53300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1636), [sym_block_comment] = ACTIONS(3), }, - [391] = { + [392] = { [ts_builtin_sym_end] = ACTIONS(1640), [sym_identifier] = ACTIONS(1642), [anon_sym_SEMI] = ACTIONS(1640), @@ -53213,7 +53377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1640), [sym_block_comment] = ACTIONS(3), }, - [392] = { + [393] = { [ts_builtin_sym_end] = ACTIONS(1644), [sym_identifier] = ACTIONS(1646), [anon_sym_SEMI] = ACTIONS(1644), @@ -53290,7 +53454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1644), [sym_block_comment] = ACTIONS(3), }, - [393] = { + [394] = { [ts_builtin_sym_end] = ACTIONS(1648), [sym_identifier] = ACTIONS(1650), [anon_sym_SEMI] = ACTIONS(1648), @@ -53367,7 +53531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1648), [sym_block_comment] = ACTIONS(3), }, - [394] = { + [395] = { [ts_builtin_sym_end] = ACTIONS(1652), [sym_identifier] = ACTIONS(1654), [anon_sym_SEMI] = ACTIONS(1652), @@ -53444,7 +53608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1652), [sym_block_comment] = ACTIONS(3), }, - [395] = { + [396] = { [ts_builtin_sym_end] = ACTIONS(1656), [sym_identifier] = ACTIONS(1658), [anon_sym_SEMI] = ACTIONS(1656), @@ -53521,7 +53685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1656), [sym_block_comment] = ACTIONS(3), }, - [396] = { + [397] = { [ts_builtin_sym_end] = ACTIONS(1660), [sym_identifier] = ACTIONS(1662), [anon_sym_SEMI] = ACTIONS(1660), @@ -53598,7 +53762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1660), [sym_block_comment] = ACTIONS(3), }, - [397] = { + [398] = { [ts_builtin_sym_end] = ACTIONS(1664), [sym_identifier] = ACTIONS(1666), [anon_sym_SEMI] = ACTIONS(1664), @@ -53675,7 +53839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1664), [sym_block_comment] = ACTIONS(3), }, - [398] = { + [399] = { [ts_builtin_sym_end] = ACTIONS(1668), [sym_identifier] = ACTIONS(1670), [anon_sym_SEMI] = ACTIONS(1668), @@ -53752,7 +53916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1668), [sym_block_comment] = ACTIONS(3), }, - [399] = { + [400] = { [ts_builtin_sym_end] = ACTIONS(1672), [sym_identifier] = ACTIONS(1674), [anon_sym_SEMI] = ACTIONS(1672), @@ -53829,7 +53993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1672), [sym_block_comment] = ACTIONS(3), }, - [400] = { + [401] = { [ts_builtin_sym_end] = ACTIONS(1676), [sym_identifier] = ACTIONS(1678), [anon_sym_SEMI] = ACTIONS(1676), @@ -53906,7 +54070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1676), [sym_block_comment] = ACTIONS(3), }, - [401] = { + [402] = { [ts_builtin_sym_end] = ACTIONS(1680), [sym_identifier] = ACTIONS(1682), [anon_sym_SEMI] = ACTIONS(1680), @@ -53983,7 +54147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1680), [sym_block_comment] = ACTIONS(3), }, - [402] = { + [403] = { [ts_builtin_sym_end] = ACTIONS(1684), [sym_identifier] = ACTIONS(1686), [anon_sym_SEMI] = ACTIONS(1684), @@ -54060,7 +54224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1684), [sym_block_comment] = ACTIONS(3), }, - [403] = { + [404] = { [ts_builtin_sym_end] = ACTIONS(1688), [sym_identifier] = ACTIONS(1690), [anon_sym_SEMI] = ACTIONS(1688), @@ -54137,7 +54301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1688), [sym_block_comment] = ACTIONS(3), }, - [404] = { + [405] = { [ts_builtin_sym_end] = ACTIONS(1692), [sym_identifier] = ACTIONS(1694), [anon_sym_SEMI] = ACTIONS(1692), @@ -54214,7 +54378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1692), [sym_block_comment] = ACTIONS(3), }, - [405] = { + [406] = { [ts_builtin_sym_end] = ACTIONS(1696), [sym_identifier] = ACTIONS(1698), [anon_sym_SEMI] = ACTIONS(1696), @@ -54291,7 +54455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1696), [sym_block_comment] = ACTIONS(3), }, - [406] = { + [407] = { [ts_builtin_sym_end] = ACTIONS(1700), [sym_identifier] = ACTIONS(1702), [anon_sym_SEMI] = ACTIONS(1700), @@ -54368,7 +54532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1700), [sym_block_comment] = ACTIONS(3), }, - [407] = { + [408] = { [ts_builtin_sym_end] = ACTIONS(1704), [sym_identifier] = ACTIONS(1706), [anon_sym_SEMI] = ACTIONS(1704), @@ -54445,7 +54609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1704), [sym_block_comment] = ACTIONS(3), }, - [408] = { + [409] = { [ts_builtin_sym_end] = ACTIONS(1708), [sym_identifier] = ACTIONS(1710), [anon_sym_SEMI] = ACTIONS(1708), @@ -54522,7 +54686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1708), [sym_block_comment] = ACTIONS(3), }, - [409] = { + [410] = { [ts_builtin_sym_end] = ACTIONS(1712), [sym_identifier] = ACTIONS(1714), [anon_sym_SEMI] = ACTIONS(1712), @@ -54599,7 +54763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1712), [sym_block_comment] = ACTIONS(3), }, - [410] = { + [411] = { [ts_builtin_sym_end] = ACTIONS(1716), [sym_identifier] = ACTIONS(1718), [anon_sym_SEMI] = ACTIONS(1716), @@ -54676,7 +54840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1716), [sym_block_comment] = ACTIONS(3), }, - [411] = { + [412] = { [ts_builtin_sym_end] = ACTIONS(1720), [sym_identifier] = ACTIONS(1722), [anon_sym_SEMI] = ACTIONS(1720), @@ -54753,7 +54917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1720), [sym_block_comment] = ACTIONS(3), }, - [412] = { + [413] = { [ts_builtin_sym_end] = ACTIONS(1724), [sym_identifier] = ACTIONS(1726), [anon_sym_SEMI] = ACTIONS(1724), @@ -54830,7 +54994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1724), [sym_block_comment] = ACTIONS(3), }, - [413] = { + [414] = { [ts_builtin_sym_end] = ACTIONS(1728), [sym_identifier] = ACTIONS(1730), [anon_sym_SEMI] = ACTIONS(1728), @@ -54907,7 +55071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1728), [sym_block_comment] = ACTIONS(3), }, - [414] = { + [415] = { [ts_builtin_sym_end] = ACTIONS(1732), [sym_identifier] = ACTIONS(1734), [anon_sym_SEMI] = ACTIONS(1732), @@ -54984,7 +55148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1732), [sym_block_comment] = ACTIONS(3), }, - [415] = { + [416] = { [ts_builtin_sym_end] = ACTIONS(1736), [sym_identifier] = ACTIONS(1738), [anon_sym_SEMI] = ACTIONS(1736), @@ -55061,7 +55225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1736), [sym_block_comment] = ACTIONS(3), }, - [416] = { + [417] = { [ts_builtin_sym_end] = ACTIONS(1740), [sym_identifier] = ACTIONS(1742), [anon_sym_SEMI] = ACTIONS(1740), @@ -55138,7 +55302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1740), [sym_block_comment] = ACTIONS(3), }, - [417] = { + [418] = { [ts_builtin_sym_end] = ACTIONS(1744), [sym_identifier] = ACTIONS(1746), [anon_sym_SEMI] = ACTIONS(1744), @@ -55215,7 +55379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1744), [sym_block_comment] = ACTIONS(3), }, - [418] = { + [419] = { [ts_builtin_sym_end] = ACTIONS(1748), [sym_identifier] = ACTIONS(1750), [anon_sym_SEMI] = ACTIONS(1748), @@ -55292,7 +55456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1748), [sym_block_comment] = ACTIONS(3), }, - [419] = { + [420] = { [ts_builtin_sym_end] = ACTIONS(1752), [sym_identifier] = ACTIONS(1754), [anon_sym_SEMI] = ACTIONS(1752), @@ -55369,7 +55533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1752), [sym_block_comment] = ACTIONS(3), }, - [420] = { + [421] = { [ts_builtin_sym_end] = ACTIONS(1756), [sym_identifier] = ACTIONS(1758), [anon_sym_SEMI] = ACTIONS(1756), @@ -55446,7 +55610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1756), [sym_block_comment] = ACTIONS(3), }, - [421] = { + [422] = { [ts_builtin_sym_end] = ACTIONS(1760), [sym_identifier] = ACTIONS(1762), [anon_sym_SEMI] = ACTIONS(1760), @@ -55523,7 +55687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1760), [sym_block_comment] = ACTIONS(3), }, - [422] = { + [423] = { [ts_builtin_sym_end] = ACTIONS(1764), [sym_identifier] = ACTIONS(1766), [anon_sym_SEMI] = ACTIONS(1764), @@ -55600,7 +55764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1764), [sym_block_comment] = ACTIONS(3), }, - [423] = { + [424] = { [ts_builtin_sym_end] = ACTIONS(1768), [sym_identifier] = ACTIONS(1770), [anon_sym_SEMI] = ACTIONS(1768), @@ -55677,7 +55841,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1768), [sym_block_comment] = ACTIONS(3), }, - [424] = { + [425] = { + [ts_builtin_sym_end] = ACTIONS(414), + [sym_identifier] = ACTIONS(416), + [anon_sym_SEMI] = ACTIONS(414), + [anon_sym_macro_rules_BANG] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE] = ACTIONS(414), + [anon_sym_LBRACK] = ACTIONS(414), + [anon_sym_STAR] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(416), + [anon_sym_i8] = ACTIONS(416), + [anon_sym_u16] = ACTIONS(416), + [anon_sym_i16] = ACTIONS(416), + [anon_sym_u32] = ACTIONS(416), + [anon_sym_i32] = ACTIONS(416), + [anon_sym_u64] = ACTIONS(416), + [anon_sym_i64] = ACTIONS(416), + [anon_sym_u128] = ACTIONS(416), + [anon_sym_i128] = ACTIONS(416), + [anon_sym_isize] = ACTIONS(416), + [anon_sym_usize] = ACTIONS(416), + [anon_sym_f32] = ACTIONS(416), + [anon_sym_f64] = ACTIONS(416), + [anon_sym_bool] = ACTIONS(416), + [anon_sym_str] = ACTIONS(416), + [anon_sym_char] = ACTIONS(416), + [anon_sym_SQUOTE] = ACTIONS(416), + [anon_sym_async] = ACTIONS(416), + [anon_sym_break] = ACTIONS(416), + [anon_sym_const] = ACTIONS(416), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_enum] = ACTIONS(416), + [anon_sym_fn] = ACTIONS(416), + [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(416), + [anon_sym_impl] = ACTIONS(416), + [anon_sym_let] = ACTIONS(416), + [anon_sym_loop] = ACTIONS(416), + [anon_sym_match] = ACTIONS(416), + [anon_sym_mod] = ACTIONS(416), + [anon_sym_pub] = ACTIONS(416), + [anon_sym_return] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(416), + [anon_sym_trait] = ACTIONS(416), + [anon_sym_type] = ACTIONS(416), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(416), + [anon_sym_use] = ACTIONS(416), + [anon_sym_while] = ACTIONS(416), + [anon_sym_POUND] = ACTIONS(414), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_extern] = ACTIONS(416), + [anon_sym_LT] = ACTIONS(414), + [anon_sym_COLON_COLON] = ACTIONS(414), + [anon_sym_AMP] = ACTIONS(414), + [anon_sym_DOT_DOT] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_PIPE] = ACTIONS(414), + [anon_sym_yield] = ACTIONS(416), + [anon_sym_move] = ACTIONS(416), + [sym_integer_literal] = ACTIONS(414), + [aux_sym_string_literal_token1] = ACTIONS(414), + [sym_char_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(416), + [sym_super] = ACTIONS(416), + [sym_crate] = ACTIONS(416), + [sym_metavariable] = ACTIONS(414), + [sym_raw_string_literal] = ACTIONS(414), + [sym_float_literal] = ACTIONS(414), + [sym_block_comment] = ACTIONS(3), + }, + [426] = { [ts_builtin_sym_end] = ACTIONS(1772), [sym_identifier] = ACTIONS(1774), [anon_sym_SEMI] = ACTIONS(1772), @@ -55754,7 +55995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1772), [sym_block_comment] = ACTIONS(3), }, - [425] = { + [427] = { [ts_builtin_sym_end] = ACTIONS(1776), [sym_identifier] = ACTIONS(1778), [anon_sym_SEMI] = ACTIONS(1776), @@ -55831,7 +56072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1776), [sym_block_comment] = ACTIONS(3), }, - [426] = { + [428] = { [ts_builtin_sym_end] = ACTIONS(1780), [sym_identifier] = ACTIONS(1782), [anon_sym_SEMI] = ACTIONS(1780), @@ -55908,7 +56149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1780), [sym_block_comment] = ACTIONS(3), }, - [427] = { + [429] = { [ts_builtin_sym_end] = ACTIONS(1784), [sym_identifier] = ACTIONS(1786), [anon_sym_SEMI] = ACTIONS(1784), @@ -55985,7 +56226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1784), [sym_block_comment] = ACTIONS(3), }, - [428] = { + [430] = { [ts_builtin_sym_end] = ACTIONS(1788), [sym_identifier] = ACTIONS(1790), [anon_sym_SEMI] = ACTIONS(1788), @@ -56062,7 +56303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1788), [sym_block_comment] = ACTIONS(3), }, - [429] = { + [431] = { [ts_builtin_sym_end] = ACTIONS(1792), [sym_identifier] = ACTIONS(1794), [anon_sym_SEMI] = ACTIONS(1792), @@ -56139,7 +56380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1792), [sym_block_comment] = ACTIONS(3), }, - [430] = { + [432] = { [ts_builtin_sym_end] = ACTIONS(1796), [sym_identifier] = ACTIONS(1798), [anon_sym_SEMI] = ACTIONS(1796), @@ -56216,7 +56457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1796), [sym_block_comment] = ACTIONS(3), }, - [431] = { + [433] = { [ts_builtin_sym_end] = ACTIONS(1800), [sym_identifier] = ACTIONS(1802), [anon_sym_SEMI] = ACTIONS(1800), @@ -56293,7 +56534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1800), [sym_block_comment] = ACTIONS(3), }, - [432] = { + [434] = { [ts_builtin_sym_end] = ACTIONS(1804), [sym_identifier] = ACTIONS(1806), [anon_sym_SEMI] = ACTIONS(1804), @@ -56370,7 +56611,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1804), [sym_block_comment] = ACTIONS(3), }, - [433] = { + [435] = { + [ts_builtin_sym_end] = ACTIONS(410), + [sym_identifier] = ACTIONS(412), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_macro_rules_BANG] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_LBRACK] = ACTIONS(410), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(412), + [anon_sym_async] = ACTIONS(412), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(412), + [anon_sym_continue] = ACTIONS(412), + [anon_sym_default] = ACTIONS(412), + [anon_sym_enum] = ACTIONS(412), + [anon_sym_fn] = ACTIONS(412), + [anon_sym_for] = ACTIONS(412), + [anon_sym_if] = ACTIONS(412), + [anon_sym_impl] = ACTIONS(412), + [anon_sym_let] = ACTIONS(412), + [anon_sym_loop] = ACTIONS(412), + [anon_sym_match] = ACTIONS(412), + [anon_sym_mod] = ACTIONS(412), + [anon_sym_pub] = ACTIONS(412), + [anon_sym_return] = ACTIONS(412), + [anon_sym_static] = ACTIONS(412), + [anon_sym_struct] = ACTIONS(412), + [anon_sym_trait] = ACTIONS(412), + [anon_sym_type] = ACTIONS(412), + [anon_sym_union] = ACTIONS(412), + [anon_sym_unsafe] = ACTIONS(412), + [anon_sym_use] = ACTIONS(412), + [anon_sym_while] = ACTIONS(412), + [anon_sym_POUND] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_extern] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_AMP] = ACTIONS(410), + [anon_sym_DOT_DOT] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_PIPE] = ACTIONS(410), + [anon_sym_yield] = ACTIONS(412), + [anon_sym_move] = ACTIONS(412), + [sym_integer_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(410), + [sym_char_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(412), + [sym_super] = ACTIONS(412), + [sym_crate] = ACTIONS(412), + [sym_metavariable] = ACTIONS(410), + [sym_raw_string_literal] = ACTIONS(410), + [sym_float_literal] = ACTIONS(410), + [sym_block_comment] = ACTIONS(3), + }, + [436] = { [ts_builtin_sym_end] = ACTIONS(1808), [sym_identifier] = ACTIONS(1810), [anon_sym_SEMI] = ACTIONS(1808), @@ -56447,7 +56765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1808), [sym_block_comment] = ACTIONS(3), }, - [434] = { + [437] = { [ts_builtin_sym_end] = ACTIONS(1812), [sym_identifier] = ACTIONS(1814), [anon_sym_SEMI] = ACTIONS(1812), @@ -56524,7 +56842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1812), [sym_block_comment] = ACTIONS(3), }, - [435] = { + [438] = { [ts_builtin_sym_end] = ACTIONS(1816), [sym_identifier] = ACTIONS(1818), [anon_sym_SEMI] = ACTIONS(1816), @@ -56601,7 +56919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1816), [sym_block_comment] = ACTIONS(3), }, - [436] = { + [439] = { [ts_builtin_sym_end] = ACTIONS(1820), [sym_identifier] = ACTIONS(1822), [anon_sym_SEMI] = ACTIONS(1820), @@ -56678,7 +56996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1820), [sym_block_comment] = ACTIONS(3), }, - [437] = { + [440] = { [ts_builtin_sym_end] = ACTIONS(1824), [sym_identifier] = ACTIONS(1826), [anon_sym_SEMI] = ACTIONS(1824), @@ -56755,7 +57073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1824), [sym_block_comment] = ACTIONS(3), }, - [438] = { + [441] = { [ts_builtin_sym_end] = ACTIONS(1828), [sym_identifier] = ACTIONS(1830), [anon_sym_SEMI] = ACTIONS(1828), @@ -56832,7 +57150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1828), [sym_block_comment] = ACTIONS(3), }, - [439] = { + [442] = { [ts_builtin_sym_end] = ACTIONS(1832), [sym_identifier] = ACTIONS(1834), [anon_sym_SEMI] = ACTIONS(1832), @@ -56909,7 +57227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1832), [sym_block_comment] = ACTIONS(3), }, - [440] = { + [443] = { [ts_builtin_sym_end] = ACTIONS(1836), [sym_identifier] = ACTIONS(1838), [anon_sym_SEMI] = ACTIONS(1836), @@ -56986,7 +57304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1836), [sym_block_comment] = ACTIONS(3), }, - [441] = { + [444] = { [ts_builtin_sym_end] = ACTIONS(1840), [sym_identifier] = ACTIONS(1842), [anon_sym_SEMI] = ACTIONS(1840), @@ -57063,7 +57381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1840), [sym_block_comment] = ACTIONS(3), }, - [442] = { + [445] = { [ts_builtin_sym_end] = ACTIONS(1844), [sym_identifier] = ACTIONS(1846), [anon_sym_SEMI] = ACTIONS(1844), @@ -57140,7 +57458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1844), [sym_block_comment] = ACTIONS(3), }, - [443] = { + [446] = { [ts_builtin_sym_end] = ACTIONS(406), [sym_identifier] = ACTIONS(408), [anon_sym_SEMI] = ACTIONS(406), @@ -57217,7 +57535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(406), [sym_block_comment] = ACTIONS(3), }, - [444] = { + [447] = { [ts_builtin_sym_end] = ACTIONS(1848), [sym_identifier] = ACTIONS(1850), [anon_sym_SEMI] = ACTIONS(1848), @@ -57294,7 +57612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1848), [sym_block_comment] = ACTIONS(3), }, - [445] = { + [448] = { [ts_builtin_sym_end] = ACTIONS(1852), [sym_identifier] = ACTIONS(1854), [anon_sym_SEMI] = ACTIONS(1852), @@ -57371,84 +57689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1852), [sym_block_comment] = ACTIONS(3), }, - [446] = { - [ts_builtin_sym_end] = ACTIONS(410), - [sym_identifier] = ACTIONS(412), - [anon_sym_SEMI] = ACTIONS(410), - [anon_sym_macro_rules_BANG] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(410), - [anon_sym_RBRACE] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(410), - [anon_sym_STAR] = ACTIONS(410), - [anon_sym_u8] = ACTIONS(412), - [anon_sym_i8] = ACTIONS(412), - [anon_sym_u16] = ACTIONS(412), - [anon_sym_i16] = ACTIONS(412), - [anon_sym_u32] = ACTIONS(412), - [anon_sym_i32] = ACTIONS(412), - [anon_sym_u64] = ACTIONS(412), - [anon_sym_i64] = ACTIONS(412), - [anon_sym_u128] = ACTIONS(412), - [anon_sym_i128] = ACTIONS(412), - [anon_sym_isize] = ACTIONS(412), - [anon_sym_usize] = ACTIONS(412), - [anon_sym_f32] = ACTIONS(412), - [anon_sym_f64] = ACTIONS(412), - [anon_sym_bool] = ACTIONS(412), - [anon_sym_str] = ACTIONS(412), - [anon_sym_char] = ACTIONS(412), - [anon_sym_SQUOTE] = ACTIONS(412), - [anon_sym_async] = ACTIONS(412), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(412), - [anon_sym_default] = ACTIONS(412), - [anon_sym_enum] = ACTIONS(412), - [anon_sym_fn] = ACTIONS(412), - [anon_sym_for] = ACTIONS(412), - [anon_sym_if] = ACTIONS(412), - [anon_sym_impl] = ACTIONS(412), - [anon_sym_let] = ACTIONS(412), - [anon_sym_loop] = ACTIONS(412), - [anon_sym_match] = ACTIONS(412), - [anon_sym_mod] = ACTIONS(412), - [anon_sym_pub] = ACTIONS(412), - [anon_sym_return] = ACTIONS(412), - [anon_sym_static] = ACTIONS(412), - [anon_sym_struct] = ACTIONS(412), - [anon_sym_trait] = ACTIONS(412), - [anon_sym_type] = ACTIONS(412), - [anon_sym_union] = ACTIONS(412), - [anon_sym_unsafe] = ACTIONS(412), - [anon_sym_use] = ACTIONS(412), - [anon_sym_while] = ACTIONS(412), - [anon_sym_POUND] = ACTIONS(410), - [anon_sym_BANG] = ACTIONS(410), - [anon_sym_extern] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_COLON_COLON] = ACTIONS(410), - [anon_sym_AMP] = ACTIONS(410), - [anon_sym_DOT_DOT] = ACTIONS(410), - [anon_sym_DASH] = ACTIONS(410), - [anon_sym_PIPE] = ACTIONS(410), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_move] = ACTIONS(412), - [sym_integer_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(410), - [sym_char_literal] = ACTIONS(410), - [anon_sym_true] = ACTIONS(412), - [anon_sym_false] = ACTIONS(412), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(412), - [sym_super] = ACTIONS(412), - [sym_crate] = ACTIONS(412), - [sym_metavariable] = ACTIONS(410), - [sym_raw_string_literal] = ACTIONS(410), - [sym_float_literal] = ACTIONS(410), - [sym_block_comment] = ACTIONS(3), - }, - [447] = { + [449] = { [ts_builtin_sym_end] = ACTIONS(1856), [sym_identifier] = ACTIONS(1858), [anon_sym_SEMI] = ACTIONS(1856), @@ -57525,7 +57766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1856), [sym_block_comment] = ACTIONS(3), }, - [448] = { + [450] = { [ts_builtin_sym_end] = ACTIONS(1860), [sym_identifier] = ACTIONS(1862), [anon_sym_SEMI] = ACTIONS(1860), @@ -57602,7 +57843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1860), [sym_block_comment] = ACTIONS(3), }, - [449] = { + [451] = { [ts_builtin_sym_end] = ACTIONS(1864), [sym_identifier] = ACTIONS(1866), [anon_sym_SEMI] = ACTIONS(1864), @@ -57679,7 +57920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1864), [sym_block_comment] = ACTIONS(3), }, - [450] = { + [452] = { [ts_builtin_sym_end] = ACTIONS(1868), [sym_identifier] = ACTIONS(1870), [anon_sym_SEMI] = ACTIONS(1868), @@ -57756,66 +57997,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1868), [sym_block_comment] = ACTIONS(3), }, - [451] = { - [sym_attribute_item] = STATE(545), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_match_arm] = STATE(482), - [sym_last_match_arm] = STATE(2359), - [sym_match_pattern] = STATE(2312), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1916), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_enum_variant_list_repeat1] = STATE(545), - [aux_sym_match_block_repeat1] = STATE(482), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), + [453] = { + [ts_builtin_sym_end] = ACTIONS(1872), + [sym_identifier] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_macro_rules_BANG] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1872), [anon_sym_RBRACE] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_u8] = ACTIONS(1874), + [anon_sym_i8] = ACTIONS(1874), + [anon_sym_u16] = ACTIONS(1874), + [anon_sym_i16] = ACTIONS(1874), + [anon_sym_u32] = ACTIONS(1874), + [anon_sym_i32] = ACTIONS(1874), + [anon_sym_u64] = ACTIONS(1874), + [anon_sym_i64] = ACTIONS(1874), + [anon_sym_u128] = ACTIONS(1874), + [anon_sym_i128] = ACTIONS(1874), + [anon_sym_isize] = ACTIONS(1874), + [anon_sym_usize] = ACTIONS(1874), + [anon_sym_f32] = ACTIONS(1874), + [anon_sym_f64] = ACTIONS(1874), + [anon_sym_bool] = ACTIONS(1874), + [anon_sym_str] = ACTIONS(1874), + [anon_sym_char] = ACTIONS(1874), + [anon_sym_SQUOTE] = ACTIONS(1874), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_break] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1874), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_default] = ACTIONS(1874), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_fn] = ACTIONS(1874), + [anon_sym_for] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_impl] = ACTIONS(1874), + [anon_sym_let] = ACTIONS(1874), + [anon_sym_loop] = ACTIONS(1874), + [anon_sym_match] = ACTIONS(1874), + [anon_sym_mod] = ACTIONS(1874), + [anon_sym_pub] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_static] = ACTIONS(1874), + [anon_sym_struct] = ACTIONS(1874), + [anon_sym_trait] = ACTIONS(1874), + [anon_sym_type] = ACTIONS(1874), + [anon_sym_union] = ACTIONS(1874), + [anon_sym_unsafe] = ACTIONS(1874), + [anon_sym_use] = ACTIONS(1874), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(1872), + [anon_sym_BANG] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1872), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1874), + [anon_sym_move] = ACTIONS(1874), + [sym_integer_literal] = ACTIONS(1872), + [aux_sym_string_literal_token1] = ACTIONS(1872), + [sym_char_literal] = ACTIONS(1872), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1874), + [sym_super] = ACTIONS(1874), + [sym_crate] = ACTIONS(1874), + [sym_metavariable] = ACTIONS(1872), + [sym_raw_string_literal] = ACTIONS(1872), + [sym_float_literal] = ACTIONS(1872), + [sym_block_comment] = ACTIONS(3), + }, + [454] = { + [sym_attribute_item] = STATE(547), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_match_arm] = STATE(486), + [sym_last_match_arm] = STATE(2503), + [sym_match_pattern] = STATE(2441), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1928), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_enum_variant_list_repeat1] = STATE(547), + [aux_sym_match_block_repeat1] = STATE(486), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1876), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -57825,92 +58143,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [452] = { - [ts_builtin_sym_end] = ACTIONS(1874), - [sym_identifier] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_macro_rules_BANG] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_u8] = ACTIONS(1876), - [anon_sym_i8] = ACTIONS(1876), - [anon_sym_u16] = ACTIONS(1876), - [anon_sym_i16] = ACTIONS(1876), - [anon_sym_u32] = ACTIONS(1876), - [anon_sym_i32] = ACTIONS(1876), - [anon_sym_u64] = ACTIONS(1876), - [anon_sym_i64] = ACTIONS(1876), - [anon_sym_u128] = ACTIONS(1876), - [anon_sym_i128] = ACTIONS(1876), - [anon_sym_isize] = ACTIONS(1876), - [anon_sym_usize] = ACTIONS(1876), - [anon_sym_f32] = ACTIONS(1876), - [anon_sym_f64] = ACTIONS(1876), - [anon_sym_bool] = ACTIONS(1876), - [anon_sym_str] = ACTIONS(1876), - [anon_sym_char] = ACTIONS(1876), - [anon_sym_SQUOTE] = ACTIONS(1876), - [anon_sym_async] = ACTIONS(1876), - [anon_sym_break] = ACTIONS(1876), - [anon_sym_const] = ACTIONS(1876), - [anon_sym_continue] = ACTIONS(1876), - [anon_sym_default] = ACTIONS(1876), - [anon_sym_enum] = ACTIONS(1876), - [anon_sym_fn] = ACTIONS(1876), - [anon_sym_for] = ACTIONS(1876), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_impl] = ACTIONS(1876), - [anon_sym_let] = ACTIONS(1876), - [anon_sym_loop] = ACTIONS(1876), - [anon_sym_match] = ACTIONS(1876), - [anon_sym_mod] = ACTIONS(1876), - [anon_sym_pub] = ACTIONS(1876), - [anon_sym_return] = ACTIONS(1876), - [anon_sym_static] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1876), - [anon_sym_trait] = ACTIONS(1876), - [anon_sym_type] = ACTIONS(1876), - [anon_sym_union] = ACTIONS(1876), - [anon_sym_unsafe] = ACTIONS(1876), - [anon_sym_use] = ACTIONS(1876), - [anon_sym_while] = ACTIONS(1876), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_BANG] = ACTIONS(1874), - [anon_sym_extern] = ACTIONS(1876), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_COLON_COLON] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1874), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_yield] = ACTIONS(1876), - [anon_sym_move] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [aux_sym_string_literal_token1] = ACTIONS(1874), - [sym_char_literal] = ACTIONS(1874), - [anon_sym_true] = ACTIONS(1876), - [anon_sym_false] = ACTIONS(1876), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1876), - [sym_super] = ACTIONS(1876), - [sym_crate] = ACTIONS(1876), - [sym_metavariable] = ACTIONS(1874), - [sym_raw_string_literal] = ACTIONS(1874), - [sym_float_literal] = ACTIONS(1874), - [sym_block_comment] = ACTIONS(3), - }, - [453] = { + [455] = { [ts_builtin_sym_end] = ACTIONS(1878), [sym_identifier] = ACTIONS(1880), [anon_sym_SEMI] = ACTIONS(1878), @@ -57987,66 +58228,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1878), [sym_block_comment] = ACTIONS(3), }, - [454] = { - [sym_attribute_item] = STATE(545), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), + [456] = { + [sym_attribute_item] = STATE(547), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), [sym_match_arm] = STATE(484), - [sym_last_match_arm] = STATE(2512), - [sym_match_pattern] = STATE(2312), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1916), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_enum_variant_list_repeat1] = STATE(545), + [sym_last_match_arm] = STATE(2373), + [sym_match_pattern] = STATE(2441), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1928), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_enum_variant_list_repeat1] = STATE(547), [aux_sym_match_block_repeat1] = STATE(484), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -58056,15 +58297,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [455] = { + [457] = { [ts_builtin_sym_end] = ACTIONS(1884), [sym_identifier] = ACTIONS(1886), [anon_sym_SEMI] = ACTIONS(1884), @@ -58141,7 +58382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1884), [sym_block_comment] = ACTIONS(3), }, - [456] = { + [458] = { [ts_builtin_sym_end] = ACTIONS(1888), [sym_identifier] = ACTIONS(1890), [anon_sym_SEMI] = ACTIONS(1888), @@ -58218,7 +58459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1888), [sym_block_comment] = ACTIONS(3), }, - [457] = { + [459] = { [ts_builtin_sym_end] = ACTIONS(1892), [sym_identifier] = ACTIONS(1894), [anon_sym_SEMI] = ACTIONS(1892), @@ -58295,7 +58536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1892), [sym_block_comment] = ACTIONS(3), }, - [458] = { + [460] = { [ts_builtin_sym_end] = ACTIONS(1896), [sym_identifier] = ACTIONS(1898), [anon_sym_SEMI] = ACTIONS(1896), @@ -58372,7 +58613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1896), [sym_block_comment] = ACTIONS(3), }, - [459] = { + [461] = { [ts_builtin_sym_end] = ACTIONS(1900), [sym_identifier] = ACTIONS(1902), [anon_sym_SEMI] = ACTIONS(1900), @@ -58449,7 +58690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1900), [sym_block_comment] = ACTIONS(3), }, - [460] = { + [462] = { [ts_builtin_sym_end] = ACTIONS(1904), [sym_identifier] = ACTIONS(1906), [anon_sym_SEMI] = ACTIONS(1904), @@ -58526,7 +58767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1904), [sym_block_comment] = ACTIONS(3), }, - [461] = { + [463] = { [ts_builtin_sym_end] = ACTIONS(1908), [sym_identifier] = ACTIONS(1910), [anon_sym_SEMI] = ACTIONS(1908), @@ -58603,7 +58844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1908), [sym_block_comment] = ACTIONS(3), }, - [462] = { + [464] = { [ts_builtin_sym_end] = ACTIONS(1912), [sym_identifier] = ACTIONS(1914), [anon_sym_SEMI] = ACTIONS(1912), @@ -58680,7 +58921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1912), [sym_block_comment] = ACTIONS(3), }, - [463] = { + [465] = { [ts_builtin_sym_end] = ACTIONS(1916), [sym_identifier] = ACTIONS(1918), [anon_sym_SEMI] = ACTIONS(1916), @@ -58757,7 +58998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1916), [sym_block_comment] = ACTIONS(3), }, - [464] = { + [466] = { [ts_builtin_sym_end] = ACTIONS(1920), [sym_identifier] = ACTIONS(1922), [anon_sym_SEMI] = ACTIONS(1920), @@ -58834,7 +59075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1920), [sym_block_comment] = ACTIONS(3), }, - [465] = { + [467] = { [ts_builtin_sym_end] = ACTIONS(1924), [sym_identifier] = ACTIONS(1926), [anon_sym_SEMI] = ACTIONS(1924), @@ -58911,7 +59152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1924), [sym_block_comment] = ACTIONS(3), }, - [466] = { + [468] = { [ts_builtin_sym_end] = ACTIONS(1928), [sym_identifier] = ACTIONS(1930), [anon_sym_SEMI] = ACTIONS(1928), @@ -58988,7 +59229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1928), [sym_block_comment] = ACTIONS(3), }, - [467] = { + [469] = { [ts_builtin_sym_end] = ACTIONS(1932), [sym_identifier] = ACTIONS(1934), [anon_sym_SEMI] = ACTIONS(1932), @@ -59065,7 +59306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1932), [sym_block_comment] = ACTIONS(3), }, - [468] = { + [470] = { [ts_builtin_sym_end] = ACTIONS(1936), [sym_identifier] = ACTIONS(1938), [anon_sym_SEMI] = ACTIONS(1936), @@ -59142,7 +59383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1936), [sym_block_comment] = ACTIONS(3), }, - [469] = { + [471] = { [ts_builtin_sym_end] = ACTIONS(1940), [sym_identifier] = ACTIONS(1942), [anon_sym_SEMI] = ACTIONS(1940), @@ -59219,7 +59460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1940), [sym_block_comment] = ACTIONS(3), }, - [470] = { + [472] = { [ts_builtin_sym_end] = ACTIONS(1944), [sym_identifier] = ACTIONS(1946), [anon_sym_SEMI] = ACTIONS(1944), @@ -59296,7 +59537,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1944), [sym_block_comment] = ACTIONS(3), }, - [471] = { + [473] = { [ts_builtin_sym_end] = ACTIONS(1948), [sym_identifier] = ACTIONS(1950), [anon_sym_SEMI] = ACTIONS(1948), @@ -59373,7 +59614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1948), [sym_block_comment] = ACTIONS(3), }, - [472] = { + [474] = { [ts_builtin_sym_end] = ACTIONS(1952), [sym_identifier] = ACTIONS(1954), [anon_sym_SEMI] = ACTIONS(1952), @@ -59450,7 +59691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1952), [sym_block_comment] = ACTIONS(3), }, - [473] = { + [475] = { [ts_builtin_sym_end] = ACTIONS(1956), [sym_identifier] = ACTIONS(1958), [anon_sym_SEMI] = ACTIONS(1956), @@ -59527,7 +59768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1956), [sym_block_comment] = ACTIONS(3), }, - [474] = { + [476] = { [ts_builtin_sym_end] = ACTIONS(1960), [sym_identifier] = ACTIONS(1962), [anon_sym_SEMI] = ACTIONS(1960), @@ -59604,7 +59845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1960), [sym_block_comment] = ACTIONS(3), }, - [475] = { + [477] = { [ts_builtin_sym_end] = ACTIONS(1964), [sym_identifier] = ACTIONS(1966), [anon_sym_SEMI] = ACTIONS(1964), @@ -59681,7 +59922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1964), [sym_block_comment] = ACTIONS(3), }, - [476] = { + [478] = { [ts_builtin_sym_end] = ACTIONS(1968), [sym_identifier] = ACTIONS(1970), [anon_sym_SEMI] = ACTIONS(1968), @@ -59758,7 +59999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1968), [sym_block_comment] = ACTIONS(3), }, - [477] = { + [479] = { [ts_builtin_sym_end] = ACTIONS(1972), [sym_identifier] = ACTIONS(1974), [anon_sym_SEMI] = ACTIONS(1972), @@ -59835,7 +60076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1972), [sym_block_comment] = ACTIONS(3), }, - [478] = { + [480] = { [ts_builtin_sym_end] = ACTIONS(1976), [sym_identifier] = ACTIONS(1978), [anon_sym_SEMI] = ACTIONS(1976), @@ -59912,7 +60153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1976), [sym_block_comment] = ACTIONS(3), }, - [479] = { + [481] = { [ts_builtin_sym_end] = ACTIONS(1980), [sym_identifier] = ACTIONS(1982), [anon_sym_SEMI] = ACTIONS(1980), @@ -59989,7 +60230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1980), [sym_block_comment] = ACTIONS(3), }, - [480] = { + [482] = { [ts_builtin_sym_end] = ACTIONS(1984), [sym_identifier] = ACTIONS(1986), [anon_sym_SEMI] = ACTIONS(1984), @@ -60066,19 +60307,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1984), [sym_block_comment] = ACTIONS(3), }, - [481] = { - [sym__token_pattern] = STATE(490), - [sym_token_tree_pattern] = STATE(490), - [sym_token_binding_pattern] = STATE(490), - [sym_token_repetition_pattern] = STATE(490), - [sym__literal] = STATE(490), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_pattern_repeat1] = STATE(490), + [483] = { + [sym__token_pattern] = STATE(500), + [sym_token_tree_pattern] = STATE(500), + [sym_token_binding_pattern] = STATE(500), + [sym_token_repetition_pattern] = STATE(500), + [sym__literal] = STATE(500), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_pattern_repeat1] = STATE(500), [sym_identifier] = ACTIONS(1988), [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1992), - [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_RPAREN] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), [anon_sym_LBRACK] = ACTIONS(1996), [anon_sym_DOLLAR] = ACTIONS(1998), [anon_sym_u8] = ACTIONS(1988), @@ -60133,7 +60374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(1988), [sym_super] = ACTIONS(1988), [sym_crate] = ACTIONS(1988), @@ -60142,65 +60383,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [482] = { - [sym_attribute_item] = STATE(545), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_match_arm] = STATE(500), - [sym_last_match_arm] = STATE(2357), - [sym_match_pattern] = STATE(2312), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1916), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_enum_variant_list_repeat1] = STATE(545), - [aux_sym_match_block_repeat1] = STATE(500), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [484] = { + [sym_attribute_item] = STATE(547), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_match_arm] = STATE(502), + [sym_last_match_arm] = STATE(2371), + [sym_match_pattern] = STATE(2441), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1928), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_enum_variant_list_repeat1] = STATE(547), + [aux_sym_match_block_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -60210,22 +60451,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [483] = { - [sym_delim_token_tree] = STATE(483), - [sym__delim_tokens] = STATE(483), - [sym__non_delim_token] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(483), + [485] = { + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(485), [sym_identifier] = ACTIONS(2008), [anon_sym_LPAREN] = ACTIONS(2011), [anon_sym_RPAREN] = ACTIONS(2014), @@ -60286,7 +60527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2025), [anon_sym_true] = ACTIONS(2031), [anon_sym_false] = ACTIONS(2031), - [sym_line_comment] = ACTIONS(1069), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2008), [sym_super] = ACTIONS(2008), [sym_crate] = ACTIONS(2008), @@ -60294,65 +60535,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2025), [sym_block_comment] = ACTIONS(3), }, - [484] = { - [sym_attribute_item] = STATE(545), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_match_arm] = STATE(500), + [486] = { + [sym_attribute_item] = STATE(547), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_match_arm] = STATE(502), [sym_last_match_arm] = STATE(2511), - [sym_match_pattern] = STATE(2312), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1916), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_enum_variant_list_repeat1] = STATE(545), - [aux_sym_match_block_repeat1] = STATE(500), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [sym_match_pattern] = STATE(2441), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1928), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_enum_variant_list_repeat1] = STATE(547), + [aux_sym_match_block_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -60362,21 +60603,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [485] = { - [sym_token_tree] = STATE(485), - [sym_token_repetition] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_repeat1] = STATE(485), + [487] = { + [sym_token_tree] = STATE(487), + [sym_token_repetition] = STATE(487), + [sym__literal] = STATE(487), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_repeat1] = STATE(487), [sym_identifier] = ACTIONS(2034), [anon_sym_LPAREN] = ACTIONS(2037), [anon_sym_RPAREN] = ACTIONS(2040), @@ -60437,7 +60678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2051), [anon_sym_true] = ACTIONS(2057), [anon_sym_false] = ACTIONS(2057), - [sym_line_comment] = ACTIONS(1069), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2034), [sym_super] = ACTIONS(2034), [sym_crate] = ACTIONS(2034), @@ -60446,65 +60687,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2051), [sym_block_comment] = ACTIONS(3), }, - [486] = { - [sym_attribute_item] = STATE(545), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_match_arm] = STATE(500), - [sym_last_match_arm] = STATE(2391), - [sym_match_pattern] = STATE(2312), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1916), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_enum_variant_list_repeat1] = STATE(545), - [aux_sym_match_block_repeat1] = STATE(500), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [488] = { + [sym_attribute_item] = STATE(547), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_match_arm] = STATE(502), + [sym_last_match_arm] = STATE(2403), + [sym_match_pattern] = STATE(2441), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1928), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_enum_variant_list_repeat1] = STATE(547), + [aux_sym_match_block_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -60514,27 +60755,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [487] = { - [sym__token_pattern] = STATE(252), - [sym_token_tree_pattern] = STATE(252), - [sym_token_binding_pattern] = STATE(252), - [sym_token_repetition_pattern] = STATE(252), - [sym__literal] = STATE(252), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_pattern_repeat1] = STATE(252), + [489] = { + [sym__token_pattern] = STATE(253), + [sym_token_tree_pattern] = STATE(253), + [sym_token_binding_pattern] = STATE(253), + [sym_token_repetition_pattern] = STATE(253), + [sym__literal] = STATE(253), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), [sym_identifier] = ACTIONS(2063), [anon_sym_LPAREN] = ACTIONS(1990), [anon_sym_RPAREN] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), [anon_sym_LBRACK] = ACTIONS(1996), [anon_sym_DOLLAR] = ACTIONS(1998), [anon_sym_u8] = ACTIONS(2063), @@ -60589,7 +60830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2063), [sym_super] = ACTIONS(2063), [sym_crate] = ACTIONS(2063), @@ -60598,20 +60839,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [488] = { - [sym__token_pattern] = STATE(489), - [sym_token_tree_pattern] = STATE(489), - [sym_token_binding_pattern] = STATE(489), - [sym_token_repetition_pattern] = STATE(489), - [sym__literal] = STATE(489), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_pattern_repeat1] = STATE(489), + [490] = { + [sym__token_pattern] = STATE(492), + [sym_token_tree_pattern] = STATE(492), + [sym_token_binding_pattern] = STATE(492), + [sym_token_repetition_pattern] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_pattern_repeat1] = STATE(492), [sym_identifier] = ACTIONS(2067), [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(2069), [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_RBRACK] = ACTIONS(1994), [anon_sym_DOLLAR] = ACTIONS(1998), [anon_sym_u8] = ACTIONS(2067), [anon_sym_i8] = ACTIONS(2067), @@ -60665,7 +60906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2067), [sym_super] = ACTIONS(2067), [sym_crate] = ACTIONS(2067), @@ -60674,170 +60915,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [489] = { - [sym__token_pattern] = STATE(252), - [sym_token_tree_pattern] = STATE(252), - [sym_token_binding_pattern] = STATE(252), - [sym_token_repetition_pattern] = STATE(252), - [sym__literal] = STATE(252), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_pattern_repeat1] = STATE(252), - [sym_identifier] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_RBRACK] = ACTIONS(2069), - [anon_sym_DOLLAR] = ACTIONS(1998), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2063), - [anon_sym_SQUOTE] = ACTIONS(2063), - [anon_sym_as] = ACTIONS(2063), - [anon_sym_async] = ACTIONS(2063), - [anon_sym_await] = 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_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_where] = ACTIONS(2063), - [anon_sym_while] = ACTIONS(2063), - [sym_mutable_specifier] = ACTIONS(2063), - [sym_integer_literal] = ACTIONS(2000), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2063), - [sym_super] = ACTIONS(2063), - [sym_crate] = ACTIONS(2063), - [sym_metavariable] = ACTIONS(2006), - [sym_raw_string_literal] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), - [sym_block_comment] = ACTIONS(3), - }, - [490] = { - [sym__token_pattern] = STATE(252), - [sym_token_tree_pattern] = STATE(252), - [sym_token_binding_pattern] = STATE(252), - [sym_token_repetition_pattern] = STATE(252), - [sym__literal] = STATE(252), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_pattern_repeat1] = STATE(252), - [sym_identifier] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1992), - [anon_sym_RBRACE] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_DOLLAR] = ACTIONS(1998), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2063), - [anon_sym_SQUOTE] = ACTIONS(2063), - [anon_sym_as] = ACTIONS(2063), - [anon_sym_async] = ACTIONS(2063), - [anon_sym_await] = 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_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_where] = ACTIONS(2063), - [anon_sym_while] = ACTIONS(2063), - [sym_mutable_specifier] = ACTIONS(2063), - [sym_integer_literal] = ACTIONS(2000), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2063), - [sym_super] = ACTIONS(2063), - [sym_crate] = ACTIONS(2063), - [sym_metavariable] = ACTIONS(2006), - [sym_raw_string_literal] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), - [sym_block_comment] = ACTIONS(3), - }, [491] = { - [sym__token_pattern] = STATE(252), - [sym_token_tree_pattern] = STATE(252), - [sym_token_binding_pattern] = STATE(252), - [sym_token_repetition_pattern] = STATE(252), - [sym__literal] = STATE(252), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_pattern_repeat1] = STATE(252), + [sym__token_pattern] = STATE(253), + [sym_token_tree_pattern] = STATE(253), + [sym_token_binding_pattern] = STATE(253), + [sym_token_repetition_pattern] = STATE(253), + [sym__literal] = STATE(253), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), [sym_identifier] = ACTIONS(2063), [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), [anon_sym_LBRACK] = ACTIONS(1996), [anon_sym_RBRACK] = ACTIONS(2071), [anon_sym_DOLLAR] = ACTIONS(1998), @@ -60893,7 +60982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2063), [sym_super] = ACTIONS(2063), [sym_crate] = ACTIONS(2063), @@ -60903,18 +60992,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [492] = { - [sym__token_pattern] = STATE(252), - [sym_token_tree_pattern] = STATE(252), - [sym_token_binding_pattern] = STATE(252), - [sym_token_repetition_pattern] = STATE(252), - [sym__literal] = STATE(252), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_pattern_repeat1] = STATE(252), + [sym__token_pattern] = STATE(253), + [sym_token_tree_pattern] = STATE(253), + [sym_token_binding_pattern] = STATE(253), + [sym_token_repetition_pattern] = STATE(253), + [sym__literal] = STATE(253), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), [sym_identifier] = ACTIONS(2063), [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_RPAREN] = ACTIONS(2069), - [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(2071), [anon_sym_LBRACK] = ACTIONS(1996), [anon_sym_DOLLAR] = ACTIONS(1998), [anon_sym_u8] = ACTIONS(2063), @@ -60969,7 +61058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2063), [sym_super] = ACTIONS(2063), [sym_crate] = ACTIONS(2063), @@ -60979,19 +61068,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [493] = { - [sym__token_pattern] = STATE(487), - [sym_token_tree_pattern] = STATE(487), - [sym_token_binding_pattern] = STATE(487), - [sym_token_repetition_pattern] = STATE(487), - [sym__literal] = STATE(487), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_pattern_repeat1] = STATE(487), + [sym__token_pattern] = STATE(491), + [sym_token_tree_pattern] = STATE(491), + [sym_token_binding_pattern] = STATE(491), + [sym_token_repetition_pattern] = STATE(491), + [sym__literal] = STATE(491), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_pattern_repeat1] = STATE(491), [sym_identifier] = ACTIONS(2073), [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_RPAREN] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_RBRACK] = ACTIONS(2069), [anon_sym_DOLLAR] = ACTIONS(1998), [anon_sym_u8] = ACTIONS(2073), [anon_sym_i8] = ACTIONS(2073), @@ -61045,7 +61134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2073), [sym_super] = ACTIONS(2073), [sym_crate] = ACTIONS(2073), @@ -61055,94 +61144,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [494] = { - [sym__token_pattern] = STATE(491), - [sym_token_tree_pattern] = STATE(491), - [sym_token_binding_pattern] = STATE(491), - [sym_token_repetition_pattern] = STATE(491), - [sym__literal] = STATE(491), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_pattern_repeat1] = STATE(491), - [sym_identifier] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_RBRACK] = ACTIONS(2079), - [anon_sym_DOLLAR] = ACTIONS(1998), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_as] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_await] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_default] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), - [anon_sym_fn] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_impl] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_loop] = ACTIONS(2077), - [anon_sym_match] = ACTIONS(2077), - [anon_sym_mod] = ACTIONS(2077), - [anon_sym_pub] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(2077), - [anon_sym_trait] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_union] = ACTIONS(2077), - [anon_sym_unsafe] = ACTIONS(2077), - [anon_sym_use] = ACTIONS(2077), - [anon_sym_where] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [sym_mutable_specifier] = ACTIONS(2077), - [sym_integer_literal] = ACTIONS(2000), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_crate] = ACTIONS(2077), - [sym_metavariable] = ACTIONS(2006), - [sym_raw_string_literal] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), - [sym_block_comment] = ACTIONS(3), - }, - [495] = { - [sym__token_pattern] = STATE(252), - [sym_token_tree_pattern] = STATE(252), - [sym_token_binding_pattern] = STATE(252), - [sym_token_repetition_pattern] = STATE(252), - [sym__literal] = STATE(252), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_pattern_repeat1] = STATE(252), + [sym__token_pattern] = STATE(253), + [sym_token_tree_pattern] = STATE(253), + [sym_token_binding_pattern] = STATE(253), + [sym_token_repetition_pattern] = STATE(253), + [sym__literal] = STATE(253), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), [sym_identifier] = ACTIONS(2063), [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1992), - [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(1994), [anon_sym_LBRACK] = ACTIONS(1996), [anon_sym_DOLLAR] = ACTIONS(1998), [anon_sym_u8] = ACTIONS(2063), @@ -61197,7 +61210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2063), [sym_super] = ACTIONS(2063), [sym_crate] = ACTIONS(2063), @@ -61206,96 +61219,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, + [495] = { + [sym__token_pattern] = STATE(489), + [sym_token_tree_pattern] = STATE(489), + [sym_token_binding_pattern] = STATE(489), + [sym_token_repetition_pattern] = STATE(489), + [sym__literal] = STATE(489), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_pattern_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_RPAREN] = ACTIONS(2077), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_DOLLAR] = ACTIONS(1998), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2075), + [anon_sym_SQUOTE] = ACTIONS(2075), + [anon_sym_as] = ACTIONS(2075), + [anon_sym_async] = ACTIONS(2075), + [anon_sym_await] = 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_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_where] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2075), + [sym_mutable_specifier] = ACTIONS(2075), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2075), + [sym_super] = ACTIONS(2075), + [sym_crate] = ACTIONS(2075), + [sym_metavariable] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, [496] = { - [sym__token_pattern] = STATE(495), - [sym_token_tree_pattern] = STATE(495), - [sym_token_binding_pattern] = STATE(495), - [sym_token_repetition_pattern] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_pattern_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2081), + [sym__token_pattern] = STATE(497), + [sym_token_tree_pattern] = STATE(497), + [sym_token_binding_pattern] = STATE(497), + [sym_token_repetition_pattern] = STATE(497), + [sym__literal] = STATE(497), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_pattern_repeat1] = STATE(497), + [sym_identifier] = ACTIONS(2079), [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1992), - [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(1994), [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_RBRACK] = ACTIONS(1992), [anon_sym_DOLLAR] = ACTIONS(1998), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(2081), - [anon_sym_as] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_default] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [anon_sym_fn] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_impl] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_loop] = ACTIONS(2081), - [anon_sym_match] = ACTIONS(2081), - [anon_sym_mod] = ACTIONS(2081), - [anon_sym_pub] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_struct] = ACTIONS(2081), - [anon_sym_trait] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_union] = ACTIONS(2081), - [anon_sym_unsafe] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_where] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [sym_mutable_specifier] = ACTIONS(2081), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2079), + [anon_sym_as] = ACTIONS(2079), + [anon_sym_async] = ACTIONS(2079), + [anon_sym_await] = 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_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_where] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2079), + [sym_mutable_specifier] = ACTIONS(2079), [sym_integer_literal] = ACTIONS(2000), [aux_sym_string_literal_token1] = ACTIONS(2002), [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2081), - [sym_super] = ACTIONS(2081), - [sym_crate] = ACTIONS(2081), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2079), + [sym_super] = ACTIONS(2079), + [sym_crate] = ACTIONS(2079), [sym_metavariable] = ACTIONS(2006), [sym_raw_string_literal] = ACTIONS(2000), [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, [497] = { - [sym__token_pattern] = STATE(252), - [sym_token_tree_pattern] = STATE(252), - [sym_token_binding_pattern] = STATE(252), - [sym_token_repetition_pattern] = STATE(252), - [sym__literal] = STATE(252), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_pattern_repeat1] = STATE(252), + [sym__token_pattern] = STATE(253), + [sym_token_tree_pattern] = STATE(253), + [sym_token_binding_pattern] = STATE(253), + [sym_token_repetition_pattern] = STATE(253), + [sym__literal] = STATE(253), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), [sym_identifier] = ACTIONS(2063), [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_RPAREN] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_RBRACK] = ACTIONS(2081), [anon_sym_DOLLAR] = ACTIONS(1998), [anon_sym_u8] = ACTIONS(2063), [anon_sym_i8] = ACTIONS(2063), @@ -61349,7 +61438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2063), [sym_super] = ACTIONS(2063), [sym_crate] = ACTIONS(2063), @@ -61359,18 +61448,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [498] = { - [sym__token_pattern] = STATE(492), - [sym_token_tree_pattern] = STATE(492), - [sym_token_binding_pattern] = STATE(492), - [sym_token_repetition_pattern] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_pattern_repeat1] = STATE(492), + [sym__token_pattern] = STATE(253), + [sym_token_tree_pattern] = STATE(253), + [sym_token_binding_pattern] = STATE(253), + [sym_token_repetition_pattern] = STATE(253), + [sym__literal] = STATE(253), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_DOLLAR] = ACTIONS(1998), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2063), + [anon_sym_as] = ACTIONS(2063), + [anon_sym_async] = ACTIONS(2063), + [anon_sym_await] = 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_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_where] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2063), + [sym_mutable_specifier] = ACTIONS(2063), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2063), + [sym_super] = ACTIONS(2063), + [sym_crate] = ACTIONS(2063), + [sym_metavariable] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, + [499] = { + [sym__token_pattern] = STATE(498), + [sym_token_tree_pattern] = STATE(498), + [sym_token_binding_pattern] = STATE(498), + [sym_token_repetition_pattern] = STATE(498), + [sym__literal] = STATE(498), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_pattern_repeat1] = STATE(498), [sym_identifier] = ACTIONS(2083), [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_RPAREN] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(1992), [anon_sym_LBRACK] = ACTIONS(1996), [anon_sym_DOLLAR] = ACTIONS(1998), [anon_sym_u8] = ACTIONS(2083), @@ -61425,7 +61590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2083), [sym_super] = ACTIONS(2083), [sym_crate] = ACTIONS(2083), @@ -61434,19 +61599,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [499] = { - [sym__token_pattern] = STATE(497), - [sym_token_tree_pattern] = STATE(497), - [sym_token_binding_pattern] = STATE(497), - [sym_token_repetition_pattern] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_pattern_repeat1] = STATE(497), + [500] = { + [sym__token_pattern] = STATE(253), + [sym_token_tree_pattern] = STATE(253), + [sym_token_binding_pattern] = STATE(253), + [sym_token_repetition_pattern] = STATE(253), + [sym__literal] = STATE(253), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_RPAREN] = ACTIONS(2081), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_DOLLAR] = ACTIONS(1998), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2063), + [anon_sym_as] = ACTIONS(2063), + [anon_sym_async] = ACTIONS(2063), + [anon_sym_await] = 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_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_where] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2063), + [sym_mutable_specifier] = ACTIONS(2063), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2063), + [sym_super] = ACTIONS(2063), + [sym_crate] = ACTIONS(2063), + [sym_metavariable] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, + [501] = { + [sym__token_pattern] = STATE(494), + [sym_token_tree_pattern] = STATE(494), + [sym_token_binding_pattern] = STATE(494), + [sym_token_repetition_pattern] = STATE(494), + [sym__literal] = STATE(494), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_pattern_repeat1] = STATE(494), [sym_identifier] = ACTIONS(2085), [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_RPAREN] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_RPAREN] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1994), [anon_sym_LBRACK] = ACTIONS(1996), [anon_sym_DOLLAR] = ACTIONS(1998), [anon_sym_u8] = ACTIONS(2085), @@ -61501,7 +61742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2085), [sym_super] = ACTIONS(2085), [sym_crate] = ACTIONS(2085), @@ -61510,35 +61751,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [500] = { - [sym_attribute_item] = STATE(546), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_match_arm] = STATE(500), - [sym_match_pattern] = STATE(2422), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1916), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_enum_variant_list_repeat1] = STATE(546), - [aux_sym_match_block_repeat1] = STATE(500), + [502] = { + [sym_attribute_item] = STATE(548), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_match_arm] = STATE(502), + [sym_match_pattern] = STATE(2419), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1928), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_enum_variant_list_repeat1] = STATE(548), + [aux_sym_match_block_repeat1] = STATE(502), [sym_identifier] = ACTIONS(2087), [anon_sym_LPAREN] = ACTIONS(2090), [anon_sym_LBRACK] = ACTIONS(2093), @@ -61585,16 +61826,683 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2132), [sym_block_comment] = ACTIONS(3), }, - [501] = { - [sym_token_tree] = STATE(538), - [sym_token_repetition] = STATE(538), - [sym__literal] = STATE(538), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_repeat1] = STATE(538), + [503] = { + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_RPAREN] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_u8] = ACTIONS(2147), + [anon_sym_i8] = ACTIONS(2147), + [anon_sym_u16] = ACTIONS(2147), + [anon_sym_i16] = ACTIONS(2147), + [anon_sym_u32] = ACTIONS(2147), + [anon_sym_i32] = ACTIONS(2147), + [anon_sym_u64] = ACTIONS(2147), + [anon_sym_i64] = ACTIONS(2147), + [anon_sym_u128] = ACTIONS(2147), + [anon_sym_i128] = ACTIONS(2147), + [anon_sym_isize] = ACTIONS(2147), + [anon_sym_usize] = ACTIONS(2147), + [anon_sym_f32] = ACTIONS(2147), + [anon_sym_f64] = ACTIONS(2147), + [anon_sym_bool] = ACTIONS(2147), + [anon_sym_str] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [aux_sym__non_special_token_token1] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_impl] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_mod] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_trait] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_where] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [sym_mutable_specifier] = ACTIONS(2147), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_crate] = ACTIONS(2147), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), + [sym_block_comment] = ACTIONS(3), + }, + [504] = { + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_RBRACK] = ACTIONS(2165), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_u8] = ACTIONS(2147), + [anon_sym_i8] = ACTIONS(2147), + [anon_sym_u16] = ACTIONS(2147), + [anon_sym_i16] = ACTIONS(2147), + [anon_sym_u32] = ACTIONS(2147), + [anon_sym_i32] = ACTIONS(2147), + [anon_sym_u64] = ACTIONS(2147), + [anon_sym_i64] = ACTIONS(2147), + [anon_sym_u128] = ACTIONS(2147), + [anon_sym_i128] = ACTIONS(2147), + [anon_sym_isize] = ACTIONS(2147), + [anon_sym_usize] = ACTIONS(2147), + [anon_sym_f32] = ACTIONS(2147), + [anon_sym_f64] = ACTIONS(2147), + [anon_sym_bool] = ACTIONS(2147), + [anon_sym_str] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [aux_sym__non_special_token_token1] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_impl] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_mod] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_trait] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_where] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [sym_mutable_specifier] = ACTIONS(2147), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_crate] = ACTIONS(2147), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), + [sym_block_comment] = ACTIONS(3), + }, + [505] = { + [sym_token_tree] = STATE(545), + [sym_token_repetition] = STATE(545), + [sym__literal] = STATE(545), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_repeat1] = STATE(545), + [sym_identifier] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2177), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_as] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_await] = 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_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_where] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [sym_mutable_specifier] = ACTIONS(2167), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2167), + [sym_super] = ACTIONS(2167), + [sym_crate] = ACTIONS(2167), + [sym_metavariable] = ACTIONS(2179), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, + [506] = { + [sym_token_tree] = STATE(487), + [sym_token_repetition] = STATE(487), + [sym__literal] = STATE(487), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_repeat1] = STATE(487), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2177), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_where] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [sym_mutable_specifier] = ACTIONS(2181), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, + [507] = { + [sym_delim_token_tree] = STATE(514), + [sym__delim_tokens] = STATE(514), + [sym__non_delim_token] = STATE(514), + [sym__literal] = STATE(514), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(514), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_RPAREN] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2191), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_async] = ACTIONS(2187), + [anon_sym_await] = 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_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_where] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [sym_mutable_specifier] = ACTIONS(2187), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2187), + [sym_super] = ACTIONS(2187), + [sym_crate] = ACTIONS(2187), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), + [sym_block_comment] = ACTIONS(3), + }, + [508] = { + [sym_delim_token_tree] = STATE(516), + [sym__delim_tokens] = STATE(516), + [sym__non_delim_token] = STATE(516), + [sym__literal] = STATE(516), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2195), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_as] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_default] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [anon_sym_fn] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_impl] = ACTIONS(2193), + [anon_sym_let] = ACTIONS(2193), + [anon_sym_loop] = ACTIONS(2193), + [anon_sym_match] = ACTIONS(2193), + [anon_sym_mod] = ACTIONS(2193), + [anon_sym_pub] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_struct] = ACTIONS(2193), + [anon_sym_trait] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_union] = ACTIONS(2193), + [anon_sym_unsafe] = ACTIONS(2193), + [anon_sym_use] = ACTIONS(2193), + [anon_sym_where] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [sym_mutable_specifier] = ACTIONS(2193), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2193), + [sym_super] = ACTIONS(2193), + [sym_crate] = ACTIONS(2193), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), + [sym_block_comment] = ACTIONS(3), + }, + [509] = { + [sym_delim_token_tree] = STATE(518), + [sym__delim_tokens] = STATE(518), + [sym__non_delim_token] = STATE(518), + [sym__literal] = STATE(518), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(518), + [sym_identifier] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_RBRACK] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2199), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [anon_sym_fn] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_impl] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_loop] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_mod] = ACTIONS(2197), + [anon_sym_pub] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_struct] = ACTIONS(2197), + [anon_sym_trait] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_union] = ACTIONS(2197), + [anon_sym_unsafe] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_where] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [sym_mutable_specifier] = ACTIONS(2197), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_crate] = ACTIONS(2197), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), + [sym_block_comment] = ACTIONS(3), + }, + [510] = { + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_RBRACK] = ACTIONS(2201), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_u8] = ACTIONS(2147), + [anon_sym_i8] = ACTIONS(2147), + [anon_sym_u16] = ACTIONS(2147), + [anon_sym_i16] = ACTIONS(2147), + [anon_sym_u32] = ACTIONS(2147), + [anon_sym_i32] = ACTIONS(2147), + [anon_sym_u64] = ACTIONS(2147), + [anon_sym_i64] = ACTIONS(2147), + [anon_sym_u128] = ACTIONS(2147), + [anon_sym_i128] = ACTIONS(2147), + [anon_sym_isize] = ACTIONS(2147), + [anon_sym_usize] = ACTIONS(2147), + [anon_sym_f32] = ACTIONS(2147), + [anon_sym_f64] = ACTIONS(2147), + [anon_sym_bool] = ACTIONS(2147), + [anon_sym_str] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [aux_sym__non_special_token_token1] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_impl] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_mod] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_trait] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_where] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [sym_mutable_specifier] = ACTIONS(2147), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_crate] = ACTIONS(2147), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), + [sym_block_comment] = ACTIONS(3), + }, + [511] = { + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_u8] = ACTIONS(2147), + [anon_sym_i8] = ACTIONS(2147), + [anon_sym_u16] = ACTIONS(2147), + [anon_sym_i16] = ACTIONS(2147), + [anon_sym_u32] = ACTIONS(2147), + [anon_sym_i32] = ACTIONS(2147), + [anon_sym_u64] = ACTIONS(2147), + [anon_sym_i64] = ACTIONS(2147), + [anon_sym_u128] = ACTIONS(2147), + [anon_sym_i128] = ACTIONS(2147), + [anon_sym_isize] = ACTIONS(2147), + [anon_sym_usize] = ACTIONS(2147), + [anon_sym_f32] = ACTIONS(2147), + [anon_sym_f64] = ACTIONS(2147), + [anon_sym_bool] = ACTIONS(2147), + [anon_sym_str] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [aux_sym__non_special_token_token1] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_impl] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_mod] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_trait] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_where] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [sym_mutable_specifier] = ACTIONS(2147), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_crate] = ACTIONS(2147), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), + [sym_block_comment] = ACTIONS(3), + }, + [512] = { + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(485), [sym_identifier] = ACTIONS(2147), [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(2151), + [anon_sym_RPAREN] = ACTIONS(2201), [anon_sym_LBRACE] = ACTIONS(2153), [anon_sym_LBRACK] = ACTIONS(2155), [anon_sym_DOLLAR] = ACTIONS(2157), @@ -61645,773 +62553,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2147), [anon_sym_while] = ACTIONS(2147), [sym_mutable_specifier] = ACTIONS(2147), - [sym_integer_literal] = ACTIONS(2000), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2147), [sym_super] = ACTIONS(2147), [sym_crate] = ACTIONS(2147), - [sym_metavariable] = ACTIONS(2159), - [sym_raw_string_literal] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), [sym_block_comment] = ACTIONS(3), }, - [502] = { - [sym_token_tree] = STATE(485), - [sym_token_repetition] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2161), + [513] = { + [sym_delim_token_tree] = STATE(510), + [sym__delim_tokens] = STATE(510), + [sym__non_delim_token] = STATE(510), + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(510), + [sym_identifier] = ACTIONS(2203), [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(2163), [anon_sym_LBRACE] = ACTIONS(2153), [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2157), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2161), - [anon_sym_SQUOTE] = ACTIONS(2161), - [anon_sym_as] = ACTIONS(2161), - [anon_sym_async] = ACTIONS(2161), - [anon_sym_await] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_default] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [anon_sym_fn] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_impl] = ACTIONS(2161), - [anon_sym_let] = ACTIONS(2161), - [anon_sym_loop] = ACTIONS(2161), - [anon_sym_match] = ACTIONS(2161), - [anon_sym_mod] = ACTIONS(2161), - [anon_sym_pub] = ACTIONS(2161), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_struct] = ACTIONS(2161), - [anon_sym_trait] = ACTIONS(2161), - [anon_sym_type] = ACTIONS(2161), - [anon_sym_union] = ACTIONS(2161), - [anon_sym_unsafe] = ACTIONS(2161), - [anon_sym_use] = ACTIONS(2161), - [anon_sym_where] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [sym_mutable_specifier] = ACTIONS(2161), - [sym_integer_literal] = ACTIONS(2000), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_metavariable] = ACTIONS(2165), - [sym_raw_string_literal] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), + [anon_sym_RBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2203), + [anon_sym_SQUOTE] = ACTIONS(2203), + [anon_sym_as] = ACTIONS(2203), + [anon_sym_async] = ACTIONS(2203), + [anon_sym_await] = 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_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_where] = ACTIONS(2203), + [anon_sym_while] = ACTIONS(2203), + [sym_mutable_specifier] = ACTIONS(2203), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2203), + [sym_super] = ACTIONS(2203), + [sym_crate] = ACTIONS(2203), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), [sym_block_comment] = ACTIONS(3), }, - [503] = { - [sym_token_tree] = STATE(543), - [sym_token_repetition] = STATE(543), - [sym__literal] = STATE(543), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_repeat1] = STATE(543), - [sym_identifier] = ACTIONS(2167), + [514] = { + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2147), [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_RPAREN] = ACTIONS(2209), [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2169), [anon_sym_LBRACK] = ACTIONS(2155), [anon_sym_DOLLAR] = ACTIONS(2157), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_await] = 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_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_where] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [sym_mutable_specifier] = ACTIONS(2167), - [sym_integer_literal] = ACTIONS(2000), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_crate] = ACTIONS(2167), - [sym_metavariable] = ACTIONS(2171), - [sym_raw_string_literal] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), + [anon_sym_u8] = ACTIONS(2147), + [anon_sym_i8] = ACTIONS(2147), + [anon_sym_u16] = ACTIONS(2147), + [anon_sym_i16] = ACTIONS(2147), + [anon_sym_u32] = ACTIONS(2147), + [anon_sym_i32] = ACTIONS(2147), + [anon_sym_u64] = ACTIONS(2147), + [anon_sym_i64] = ACTIONS(2147), + [anon_sym_u128] = ACTIONS(2147), + [anon_sym_i128] = ACTIONS(2147), + [anon_sym_isize] = ACTIONS(2147), + [anon_sym_usize] = ACTIONS(2147), + [anon_sym_f32] = ACTIONS(2147), + [anon_sym_f64] = ACTIONS(2147), + [anon_sym_bool] = ACTIONS(2147), + [anon_sym_str] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [aux_sym__non_special_token_token1] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_impl] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_mod] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_trait] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_where] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [sym_mutable_specifier] = ACTIONS(2147), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_crate] = ACTIONS(2147), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), [sym_block_comment] = ACTIONS(3), }, - [504] = { - [sym_token_tree] = STATE(485), - [sym_token_repetition] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2161), + [515] = { + [sym_delim_token_tree] = STATE(511), + [sym__delim_tokens] = STATE(511), + [sym__non_delim_token] = STATE(511), + [sym__literal] = STATE(511), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(511), + [sym_identifier] = ACTIONS(2211), [anon_sym_LPAREN] = ACTIONS(2149), [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2205), [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_RBRACK] = ACTIONS(2163), - [anon_sym_DOLLAR] = ACTIONS(2157), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2161), - [anon_sym_SQUOTE] = ACTIONS(2161), - [anon_sym_as] = ACTIONS(2161), - [anon_sym_async] = ACTIONS(2161), - [anon_sym_await] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_default] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [anon_sym_fn] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_impl] = ACTIONS(2161), - [anon_sym_let] = ACTIONS(2161), - [anon_sym_loop] = ACTIONS(2161), - [anon_sym_match] = ACTIONS(2161), - [anon_sym_mod] = ACTIONS(2161), - [anon_sym_pub] = ACTIONS(2161), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_struct] = ACTIONS(2161), - [anon_sym_trait] = ACTIONS(2161), - [anon_sym_type] = ACTIONS(2161), - [anon_sym_union] = ACTIONS(2161), - [anon_sym_unsafe] = ACTIONS(2161), - [anon_sym_use] = ACTIONS(2161), - [anon_sym_where] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [sym_mutable_specifier] = ACTIONS(2161), - [sym_integer_literal] = ACTIONS(2000), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_metavariable] = ACTIONS(2165), - [sym_raw_string_literal] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), - [sym_block_comment] = ACTIONS(3), - }, - [505] = { - [sym_delim_token_tree] = STATE(514), - [sym__delim_tokens] = STATE(514), - [sym__non_delim_token] = STATE(514), - [sym__literal] = STATE(514), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(514), - [sym_identifier] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_RPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_DOLLAR] = ACTIONS(2183), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2173), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2173), - [anon_sym_async] = ACTIONS(2173), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_default] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [anon_sym_fn] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_impl] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), - [anon_sym_loop] = ACTIONS(2173), - [anon_sym_match] = ACTIONS(2173), - [anon_sym_mod] = ACTIONS(2173), - [anon_sym_pub] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_static] = ACTIONS(2173), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_trait] = ACTIONS(2173), - [anon_sym_type] = ACTIONS(2173), - [anon_sym_union] = ACTIONS(2173), - [anon_sym_unsafe] = ACTIONS(2173), - [anon_sym_use] = ACTIONS(2173), - [anon_sym_where] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [sym_mutable_specifier] = ACTIONS(2173), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2173), - [sym_super] = ACTIONS(2173), - [sym_crate] = ACTIONS(2173), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_block_comment] = ACTIONS(3), - }, - [506] = { - [sym_delim_token_tree] = STATE(516), - [sym__delim_tokens] = STATE(516), - [sym__non_delim_token] = STATE(516), - [sym__literal] = STATE(516), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(516), - [sym_identifier] = ACTIONS(2191), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2177), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_DOLLAR] = ACTIONS(2193), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2191), - [anon_sym_SQUOTE] = ACTIONS(2191), - [anon_sym_as] = ACTIONS(2191), - [anon_sym_async] = ACTIONS(2191), - [anon_sym_await] = 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_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_where] = ACTIONS(2191), - [anon_sym_while] = ACTIONS(2191), - [sym_mutable_specifier] = ACTIONS(2191), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2191), - [sym_super] = ACTIONS(2191), - [sym_crate] = ACTIONS(2191), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_block_comment] = ACTIONS(3), - }, - [507] = { - [sym_delim_token_tree] = STATE(483), - [sym__delim_tokens] = STATE(483), - [sym__non_delim_token] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_RBRACK] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_u8] = ACTIONS(2195), - [anon_sym_i8] = ACTIONS(2195), - [anon_sym_u16] = ACTIONS(2195), - [anon_sym_i16] = ACTIONS(2195), - [anon_sym_u32] = ACTIONS(2195), - [anon_sym_i32] = ACTIONS(2195), - [anon_sym_u64] = ACTIONS(2195), - [anon_sym_i64] = ACTIONS(2195), - [anon_sym_u128] = ACTIONS(2195), - [anon_sym_i128] = ACTIONS(2195), - [anon_sym_isize] = ACTIONS(2195), - [anon_sym_usize] = ACTIONS(2195), - [anon_sym_f32] = ACTIONS(2195), - [anon_sym_f64] = ACTIONS(2195), - [anon_sym_bool] = ACTIONS(2195), - [anon_sym_str] = ACTIONS(2195), - [anon_sym_char] = ACTIONS(2195), - [aux_sym__non_special_token_token1] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [anon_sym_fn] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_impl] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_mod] = ACTIONS(2195), - [anon_sym_pub] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_trait] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2195), - [anon_sym_unsafe] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [sym_mutable_specifier] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_block_comment] = ACTIONS(3), - }, - [508] = { - [sym_delim_token_tree] = STATE(483), - [sym__delim_tokens] = STATE(483), - [sym__non_delim_token] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_u8] = ACTIONS(2195), - [anon_sym_i8] = ACTIONS(2195), - [anon_sym_u16] = ACTIONS(2195), - [anon_sym_i16] = ACTIONS(2195), - [anon_sym_u32] = ACTIONS(2195), - [anon_sym_i32] = ACTIONS(2195), - [anon_sym_u64] = ACTIONS(2195), - [anon_sym_i64] = ACTIONS(2195), - [anon_sym_u128] = ACTIONS(2195), - [anon_sym_i128] = ACTIONS(2195), - [anon_sym_isize] = ACTIONS(2195), - [anon_sym_usize] = ACTIONS(2195), - [anon_sym_f32] = ACTIONS(2195), - [anon_sym_f64] = ACTIONS(2195), - [anon_sym_bool] = ACTIONS(2195), - [anon_sym_str] = ACTIONS(2195), - [anon_sym_char] = ACTIONS(2195), - [aux_sym__non_special_token_token1] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [anon_sym_fn] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_impl] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_mod] = ACTIONS(2195), - [anon_sym_pub] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_trait] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2195), - [anon_sym_unsafe] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [sym_mutable_specifier] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_block_comment] = ACTIONS(3), - }, - [509] = { - [sym_delim_token_tree] = STATE(483), - [sym__delim_tokens] = STATE(483), - [sym__non_delim_token] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_RPAREN] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_u8] = ACTIONS(2195), - [anon_sym_i8] = ACTIONS(2195), - [anon_sym_u16] = ACTIONS(2195), - [anon_sym_i16] = ACTIONS(2195), - [anon_sym_u32] = ACTIONS(2195), - [anon_sym_i32] = ACTIONS(2195), - [anon_sym_u64] = ACTIONS(2195), - [anon_sym_i64] = ACTIONS(2195), - [anon_sym_u128] = ACTIONS(2195), - [anon_sym_i128] = ACTIONS(2195), - [anon_sym_isize] = ACTIONS(2195), - [anon_sym_usize] = ACTIONS(2195), - [anon_sym_f32] = ACTIONS(2195), - [anon_sym_f64] = ACTIONS(2195), - [anon_sym_bool] = ACTIONS(2195), - [anon_sym_str] = ACTIONS(2195), - [anon_sym_char] = ACTIONS(2195), - [aux_sym__non_special_token_token1] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [anon_sym_fn] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_impl] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_mod] = ACTIONS(2195), - [anon_sym_pub] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_trait] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2195), - [anon_sym_unsafe] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [sym_mutable_specifier] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_block_comment] = ACTIONS(3), - }, - [510] = { - [sym_delim_token_tree] = STATE(517), - [sym__delim_tokens] = STATE(517), - [sym__non_delim_token] = STATE(517), - [sym__literal] = STATE(517), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(517), - [sym_identifier] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_RBRACK] = ACTIONS(2177), - [anon_sym_DOLLAR] = ACTIONS(2203), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2201), - [anon_sym_SQUOTE] = ACTIONS(2201), - [anon_sym_as] = ACTIONS(2201), - [anon_sym_async] = ACTIONS(2201), - [anon_sym_await] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_const] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_default] = ACTIONS(2201), - [anon_sym_enum] = ACTIONS(2201), - [anon_sym_fn] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_impl] = ACTIONS(2201), - [anon_sym_let] = ACTIONS(2201), - [anon_sym_loop] = ACTIONS(2201), - [anon_sym_match] = ACTIONS(2201), - [anon_sym_mod] = ACTIONS(2201), - [anon_sym_pub] = ACTIONS(2201), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_static] = ACTIONS(2201), - [anon_sym_struct] = ACTIONS(2201), - [anon_sym_trait] = ACTIONS(2201), - [anon_sym_type] = ACTIONS(2201), - [anon_sym_union] = ACTIONS(2201), - [anon_sym_unsafe] = ACTIONS(2201), - [anon_sym_use] = ACTIONS(2201), - [anon_sym_where] = ACTIONS(2201), - [anon_sym_while] = ACTIONS(2201), - [sym_mutable_specifier] = ACTIONS(2201), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_block_comment] = ACTIONS(3), - }, - [511] = { - [sym_delim_token_tree] = STATE(507), - [sym__delim_tokens] = STATE(507), - [sym__non_delim_token] = STATE(507), - [sym__literal] = STATE(507), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_RBRACK] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2209), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_as] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_default] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [anon_sym_fn] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_impl] = ACTIONS(2205), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_loop] = ACTIONS(2205), - [anon_sym_match] = ACTIONS(2205), - [anon_sym_mod] = ACTIONS(2205), - [anon_sym_pub] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_struct] = ACTIONS(2205), - [anon_sym_trait] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_union] = ACTIONS(2205), - [anon_sym_unsafe] = ACTIONS(2205), - [anon_sym_use] = ACTIONS(2205), - [anon_sym_where] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [sym_mutable_specifier] = ACTIONS(2205), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2205), - [sym_super] = ACTIONS(2205), - [sym_crate] = ACTIONS(2205), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_block_comment] = ACTIONS(3), - }, - [512] = { - [sym_delim_token_tree] = STATE(508), - [sym__delim_tokens] = STATE(508), - [sym__non_delim_token] = STATE(508), - [sym__literal] = STATE(508), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(508), - [sym_identifier] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2181), [anon_sym_DOLLAR] = ACTIONS(2213), [anon_sym_u8] = ACTIONS(2211), [anon_sym_i8] = ACTIONS(2211), @@ -62460,32 +62775,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2211), [anon_sym_while] = ACTIONS(2211), [sym_mutable_specifier] = ACTIONS(2211), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2211), [sym_super] = ACTIONS(2211), [sym_crate] = ACTIONS(2211), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), [sym_block_comment] = ACTIONS(3), }, - [513] = { - [sym_delim_token_tree] = STATE(509), - [sym__delim_tokens] = STATE(509), - [sym__non_delim_token] = STATE(509), - [sym__literal] = STATE(509), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(509), + [516] = { + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_u8] = ACTIONS(2147), + [anon_sym_i8] = ACTIONS(2147), + [anon_sym_u16] = ACTIONS(2147), + [anon_sym_i16] = ACTIONS(2147), + [anon_sym_u32] = ACTIONS(2147), + [anon_sym_i32] = ACTIONS(2147), + [anon_sym_u64] = ACTIONS(2147), + [anon_sym_i64] = ACTIONS(2147), + [anon_sym_u128] = ACTIONS(2147), + [anon_sym_i128] = ACTIONS(2147), + [anon_sym_isize] = ACTIONS(2147), + [anon_sym_usize] = ACTIONS(2147), + [anon_sym_f32] = ACTIONS(2147), + [anon_sym_f64] = ACTIONS(2147), + [anon_sym_bool] = ACTIONS(2147), + [anon_sym_str] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [aux_sym__non_special_token_token1] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_impl] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_mod] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_trait] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_where] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [sym_mutable_specifier] = ACTIONS(2147), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_crate] = ACTIONS(2147), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), + [sym_block_comment] = ACTIONS(3), + }, + [517] = { + [sym_delim_token_tree] = STATE(512), + [sym__delim_tokens] = STATE(512), + [sym__non_delim_token] = STATE(512), + [sym__literal] = STATE(512), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(512), [sym_identifier] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_RPAREN] = ACTIONS(2207), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_RPAREN] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), [anon_sym_DOLLAR] = ACTIONS(2217), [anon_sym_u8] = ACTIONS(2215), [anon_sym_i8] = ACTIONS(2215), @@ -62534,402 +62923,328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2215), [anon_sym_while] = ACTIONS(2215), [sym_mutable_specifier] = ACTIONS(2215), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2215), [sym_super] = ACTIONS(2215), [sym_crate] = ACTIONS(2215), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_block_comment] = ACTIONS(3), - }, - [514] = { - [sym_delim_token_tree] = STATE(483), - [sym__delim_tokens] = STATE(483), - [sym__non_delim_token] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_RPAREN] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_u8] = ACTIONS(2195), - [anon_sym_i8] = ACTIONS(2195), - [anon_sym_u16] = ACTIONS(2195), - [anon_sym_i16] = ACTIONS(2195), - [anon_sym_u32] = ACTIONS(2195), - [anon_sym_i32] = ACTIONS(2195), - [anon_sym_u64] = ACTIONS(2195), - [anon_sym_i64] = ACTIONS(2195), - [anon_sym_u128] = ACTIONS(2195), - [anon_sym_i128] = ACTIONS(2195), - [anon_sym_isize] = ACTIONS(2195), - [anon_sym_usize] = ACTIONS(2195), - [anon_sym_f32] = ACTIONS(2195), - [anon_sym_f64] = ACTIONS(2195), - [anon_sym_bool] = ACTIONS(2195), - [anon_sym_str] = ACTIONS(2195), - [anon_sym_char] = ACTIONS(2195), - [aux_sym__non_special_token_token1] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [anon_sym_fn] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_impl] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_mod] = ACTIONS(2195), - [anon_sym_pub] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_trait] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2195), - [anon_sym_unsafe] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [sym_mutable_specifier] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), [sym_block_comment] = ACTIONS(3), }, - [515] = { - [sym_token_tree] = STATE(504), - [sym_token_repetition] = STATE(504), - [sym__literal] = STATE(504), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_repeat1] = STATE(504), - [sym_identifier] = ACTIONS(2221), + [518] = { + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2147), [anon_sym_LPAREN] = ACTIONS(2149), [anon_sym_LBRACE] = ACTIONS(2153), [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_RBRACK] = ACTIONS(2169), + [anon_sym_RBRACK] = ACTIONS(2209), [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_u8] = ACTIONS(2221), - [anon_sym_i8] = ACTIONS(2221), - [anon_sym_u16] = ACTIONS(2221), - [anon_sym_i16] = ACTIONS(2221), - [anon_sym_u32] = ACTIONS(2221), - [anon_sym_i32] = ACTIONS(2221), - [anon_sym_u64] = ACTIONS(2221), - [anon_sym_i64] = ACTIONS(2221), - [anon_sym_u128] = ACTIONS(2221), - [anon_sym_i128] = ACTIONS(2221), - [anon_sym_isize] = ACTIONS(2221), - [anon_sym_usize] = ACTIONS(2221), - [anon_sym_f32] = ACTIONS(2221), - [anon_sym_f64] = ACTIONS(2221), - [anon_sym_bool] = ACTIONS(2221), - [anon_sym_str] = ACTIONS(2221), - [anon_sym_char] = ACTIONS(2221), - [aux_sym__non_special_token_token1] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_as] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [anon_sym_fn] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_impl] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_loop] = ACTIONS(2221), - [anon_sym_match] = ACTIONS(2221), - [anon_sym_mod] = ACTIONS(2221), - [anon_sym_pub] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_struct] = ACTIONS(2221), - [anon_sym_trait] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_union] = ACTIONS(2221), - [anon_sym_unsafe] = ACTIONS(2221), - [anon_sym_use] = ACTIONS(2221), - [anon_sym_where] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [sym_mutable_specifier] = ACTIONS(2221), - [sym_integer_literal] = ACTIONS(2000), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_crate] = ACTIONS(2221), - [sym_metavariable] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), + [anon_sym_u8] = ACTIONS(2147), + [anon_sym_i8] = ACTIONS(2147), + [anon_sym_u16] = ACTIONS(2147), + [anon_sym_i16] = ACTIONS(2147), + [anon_sym_u32] = ACTIONS(2147), + [anon_sym_i32] = ACTIONS(2147), + [anon_sym_u64] = ACTIONS(2147), + [anon_sym_i64] = ACTIONS(2147), + [anon_sym_u128] = ACTIONS(2147), + [anon_sym_i128] = ACTIONS(2147), + [anon_sym_isize] = ACTIONS(2147), + [anon_sym_usize] = ACTIONS(2147), + [anon_sym_f32] = ACTIONS(2147), + [anon_sym_f64] = ACTIONS(2147), + [anon_sym_bool] = ACTIONS(2147), + [anon_sym_str] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [aux_sym__non_special_token_token1] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_impl] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_mod] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_trait] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_where] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [sym_mutable_specifier] = ACTIONS(2147), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_crate] = ACTIONS(2147), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), [sym_block_comment] = ACTIONS(3), }, - [516] = { - [sym_delim_token_tree] = STATE(483), - [sym__delim_tokens] = STATE(483), - [sym__non_delim_token] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_u8] = ACTIONS(2195), - [anon_sym_i8] = ACTIONS(2195), - [anon_sym_u16] = ACTIONS(2195), - [anon_sym_i16] = ACTIONS(2195), - [anon_sym_u32] = ACTIONS(2195), - [anon_sym_i32] = ACTIONS(2195), - [anon_sym_u64] = ACTIONS(2195), - [anon_sym_i64] = ACTIONS(2195), - [anon_sym_u128] = ACTIONS(2195), - [anon_sym_i128] = ACTIONS(2195), - [anon_sym_isize] = ACTIONS(2195), - [anon_sym_usize] = ACTIONS(2195), - [anon_sym_f32] = ACTIONS(2195), - [anon_sym_f64] = ACTIONS(2195), - [anon_sym_bool] = ACTIONS(2195), - [anon_sym_str] = ACTIONS(2195), - [anon_sym_char] = ACTIONS(2195), - [aux_sym__non_special_token_token1] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [anon_sym_fn] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_impl] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_mod] = ACTIONS(2195), - [anon_sym_pub] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_trait] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2195), - [anon_sym_unsafe] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [sym_mutable_specifier] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), + [519] = { + [sym_delim_token_tree] = STATE(503), + [sym__delim_tokens] = STATE(503), + [sym__non_delim_token] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_RPAREN] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2223), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_await] = 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_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_where] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [sym_mutable_specifier] = ACTIONS(2219), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_crate] = ACTIONS(2219), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), [sym_block_comment] = ACTIONS(3), }, - [517] = { - [sym_delim_token_tree] = STATE(483), - [sym__delim_tokens] = STATE(483), - [sym__non_delim_token] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_RBRACK] = ACTIONS(2219), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_u8] = ACTIONS(2195), - [anon_sym_i8] = ACTIONS(2195), - [anon_sym_u16] = ACTIONS(2195), - [anon_sym_i16] = ACTIONS(2195), - [anon_sym_u32] = ACTIONS(2195), - [anon_sym_i32] = ACTIONS(2195), - [anon_sym_u64] = ACTIONS(2195), - [anon_sym_i64] = ACTIONS(2195), - [anon_sym_u128] = ACTIONS(2195), - [anon_sym_i128] = ACTIONS(2195), - [anon_sym_isize] = ACTIONS(2195), - [anon_sym_usize] = ACTIONS(2195), - [anon_sym_f32] = ACTIONS(2195), - [anon_sym_f64] = ACTIONS(2195), - [anon_sym_bool] = ACTIONS(2195), - [anon_sym_str] = ACTIONS(2195), - [anon_sym_char] = ACTIONS(2195), - [aux_sym__non_special_token_token1] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [anon_sym_fn] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_impl] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_mod] = ACTIONS(2195), - [anon_sym_pub] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_trait] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2195), - [anon_sym_unsafe] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [sym_mutable_specifier] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), + [520] = { + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_RBRACK] = ACTIONS(2225), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_u8] = ACTIONS(2147), + [anon_sym_i8] = ACTIONS(2147), + [anon_sym_u16] = ACTIONS(2147), + [anon_sym_i16] = ACTIONS(2147), + [anon_sym_u32] = ACTIONS(2147), + [anon_sym_i32] = ACTIONS(2147), + [anon_sym_u64] = ACTIONS(2147), + [anon_sym_i64] = ACTIONS(2147), + [anon_sym_u128] = ACTIONS(2147), + [anon_sym_i128] = ACTIONS(2147), + [anon_sym_isize] = ACTIONS(2147), + [anon_sym_usize] = ACTIONS(2147), + [anon_sym_f32] = ACTIONS(2147), + [anon_sym_f64] = ACTIONS(2147), + [anon_sym_bool] = ACTIONS(2147), + [anon_sym_str] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [aux_sym__non_special_token_token1] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_impl] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_mod] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_trait] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_where] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [sym_mutable_specifier] = ACTIONS(2147), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_crate] = ACTIONS(2147), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), [sym_block_comment] = ACTIONS(3), }, - [518] = { - [sym_delim_token_tree] = STATE(523), - [sym__delim_tokens] = STATE(523), - [sym__non_delim_token] = STATE(523), - [sym__literal] = STATE(523), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(523), - [sym_identifier] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_RPAREN] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), + [521] = { + [sym_delim_token_tree] = STATE(526), + [sym__delim_tokens] = STATE(526), + [sym__non_delim_token] = STATE(526), + [sym__literal] = STATE(526), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(526), + [sym_identifier] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2155), [anon_sym_DOLLAR] = ACTIONS(2229), - [anon_sym_u8] = ACTIONS(2225), - [anon_sym_i8] = ACTIONS(2225), - [anon_sym_u16] = ACTIONS(2225), - [anon_sym_i16] = ACTIONS(2225), - [anon_sym_u32] = ACTIONS(2225), - [anon_sym_i32] = ACTIONS(2225), - [anon_sym_u64] = ACTIONS(2225), - [anon_sym_i64] = ACTIONS(2225), - [anon_sym_u128] = ACTIONS(2225), - [anon_sym_i128] = ACTIONS(2225), - [anon_sym_isize] = ACTIONS(2225), - [anon_sym_usize] = ACTIONS(2225), - [anon_sym_f32] = ACTIONS(2225), - [anon_sym_f64] = ACTIONS(2225), - [anon_sym_bool] = ACTIONS(2225), - [anon_sym_str] = ACTIONS(2225), - [anon_sym_char] = ACTIONS(2225), - [aux_sym__non_special_token_token1] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_as] = ACTIONS(2225), - [anon_sym_async] = ACTIONS(2225), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_default] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [anon_sym_fn] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_impl] = ACTIONS(2225), - [anon_sym_let] = ACTIONS(2225), - [anon_sym_loop] = ACTIONS(2225), - [anon_sym_match] = ACTIONS(2225), - [anon_sym_mod] = ACTIONS(2225), - [anon_sym_pub] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2225), - [anon_sym_trait] = ACTIONS(2225), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_union] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2225), - [anon_sym_where] = ACTIONS(2225), - [anon_sym_while] = ACTIONS(2225), - [sym_mutable_specifier] = ACTIONS(2225), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2225), - [sym_super] = ACTIONS(2225), - [sym_crate] = ACTIONS(2225), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), + [anon_sym_u8] = ACTIONS(2227), + [anon_sym_i8] = ACTIONS(2227), + [anon_sym_u16] = ACTIONS(2227), + [anon_sym_i16] = ACTIONS(2227), + [anon_sym_u32] = ACTIONS(2227), + [anon_sym_i32] = ACTIONS(2227), + [anon_sym_u64] = ACTIONS(2227), + [anon_sym_i64] = ACTIONS(2227), + [anon_sym_u128] = ACTIONS(2227), + [anon_sym_i128] = ACTIONS(2227), + [anon_sym_isize] = ACTIONS(2227), + [anon_sym_usize] = ACTIONS(2227), + [anon_sym_f32] = ACTIONS(2227), + [anon_sym_f64] = ACTIONS(2227), + [anon_sym_bool] = ACTIONS(2227), + [anon_sym_str] = ACTIONS(2227), + [anon_sym_char] = ACTIONS(2227), + [aux_sym__non_special_token_token1] = ACTIONS(2227), + [anon_sym_SQUOTE] = ACTIONS(2227), + [anon_sym_as] = ACTIONS(2227), + [anon_sym_async] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_break] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2227), + [anon_sym_continue] = ACTIONS(2227), + [anon_sym_default] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2227), + [anon_sym_fn] = ACTIONS(2227), + [anon_sym_for] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_impl] = ACTIONS(2227), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_loop] = ACTIONS(2227), + [anon_sym_match] = ACTIONS(2227), + [anon_sym_mod] = ACTIONS(2227), + [anon_sym_pub] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2227), + [anon_sym_static] = ACTIONS(2227), + [anon_sym_struct] = ACTIONS(2227), + [anon_sym_trait] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2227), + [anon_sym_union] = ACTIONS(2227), + [anon_sym_unsafe] = ACTIONS(2227), + [anon_sym_use] = ACTIONS(2227), + [anon_sym_where] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2227), + [sym_mutable_specifier] = ACTIONS(2227), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2227), + [sym_super] = ACTIONS(2227), + [sym_crate] = ACTIONS(2227), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), [sym_block_comment] = ACTIONS(3), }, - [519] = { - [sym_delim_token_tree] = STATE(525), - [sym__delim_tokens] = STATE(525), - [sym__non_delim_token] = STATE(525), - [sym__literal] = STATE(525), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(525), + [522] = { + [sym_delim_token_tree] = STATE(528), + [sym__delim_tokens] = STATE(528), + [sym__non_delim_token] = STATE(528), + [sym__literal] = STATE(528), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(528), [sym_identifier] = ACTIONS(2231), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_RBRACK] = ACTIONS(2221), [anon_sym_DOLLAR] = ACTIONS(2233), [anon_sym_u8] = ACTIONS(2231), [anon_sym_i8] = ACTIONS(2231), @@ -62978,33 +63293,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2231), [anon_sym_while] = ACTIONS(2231), [sym_mutable_specifier] = ACTIONS(2231), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2231), [sym_super] = ACTIONS(2231), [sym_crate] = ACTIONS(2231), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), [sym_block_comment] = ACTIONS(3), }, - [520] = { - [sym_delim_token_tree] = STATE(528), - [sym__delim_tokens] = STATE(528), - [sym__non_delim_token] = STATE(528), - [sym__literal] = STATE(528), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(528), + [523] = { + [sym_token_tree] = STATE(506), + [sym_token_repetition] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_repeat1] = STATE(506), [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_RBRACK] = ACTIONS(2227), - [anon_sym_DOLLAR] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2177), [anon_sym_u8] = ACTIONS(2235), [anon_sym_i8] = ACTIONS(2235), [anon_sym_u16] = ACTIONS(2235), @@ -63052,995 +63366,774 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2235), [anon_sym_while] = ACTIONS(2235), [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2235), [sym_super] = ACTIONS(2235), [sym_crate] = ACTIONS(2235), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), + [sym_metavariable] = ACTIONS(2237), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [521] = { - [sym_delim_token_tree] = STATE(483), - [sym__delim_tokens] = STATE(483), - [sym__non_delim_token] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_RBRACK] = ACTIONS(2239), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_u8] = ACTIONS(2195), - [anon_sym_i8] = ACTIONS(2195), - [anon_sym_u16] = ACTIONS(2195), - [anon_sym_i16] = ACTIONS(2195), - [anon_sym_u32] = ACTIONS(2195), - [anon_sym_i32] = ACTIONS(2195), - [anon_sym_u64] = ACTIONS(2195), - [anon_sym_i64] = ACTIONS(2195), - [anon_sym_u128] = ACTIONS(2195), - [anon_sym_i128] = ACTIONS(2195), - [anon_sym_isize] = ACTIONS(2195), - [anon_sym_usize] = ACTIONS(2195), - [anon_sym_f32] = ACTIONS(2195), - [anon_sym_f64] = ACTIONS(2195), - [anon_sym_bool] = ACTIONS(2195), - [anon_sym_str] = ACTIONS(2195), - [anon_sym_char] = ACTIONS(2195), - [aux_sym__non_special_token_token1] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [anon_sym_fn] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_impl] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_mod] = ACTIONS(2195), - [anon_sym_pub] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_trait] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2195), - [anon_sym_unsafe] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [sym_mutable_specifier] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), + [524] = { + [sym_token_tree] = STATE(540), + [sym_token_repetition] = STATE(540), + [sym__literal] = STATE(540), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_repeat1] = STATE(540), + [sym_identifier] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2177), + [anon_sym_u8] = ACTIONS(2239), + [anon_sym_i8] = ACTIONS(2239), + [anon_sym_u16] = ACTIONS(2239), + [anon_sym_i16] = ACTIONS(2239), + [anon_sym_u32] = ACTIONS(2239), + [anon_sym_i32] = ACTIONS(2239), + [anon_sym_u64] = ACTIONS(2239), + [anon_sym_i64] = ACTIONS(2239), + [anon_sym_u128] = ACTIONS(2239), + [anon_sym_i128] = ACTIONS(2239), + [anon_sym_isize] = ACTIONS(2239), + [anon_sym_usize] = ACTIONS(2239), + [anon_sym_f32] = ACTIONS(2239), + [anon_sym_f64] = ACTIONS(2239), + [anon_sym_bool] = ACTIONS(2239), + [anon_sym_str] = ACTIONS(2239), + [anon_sym_char] = ACTIONS(2239), + [aux_sym__non_special_token_token1] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2239), + [anon_sym_as] = ACTIONS(2239), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_await] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2239), + [anon_sym_enum] = ACTIONS(2239), + [anon_sym_fn] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_impl] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_loop] = ACTIONS(2239), + [anon_sym_match] = ACTIONS(2239), + [anon_sym_mod] = ACTIONS(2239), + [anon_sym_pub] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_static] = ACTIONS(2239), + [anon_sym_struct] = ACTIONS(2239), + [anon_sym_trait] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2239), + [anon_sym_union] = ACTIONS(2239), + [anon_sym_unsafe] = ACTIONS(2239), + [anon_sym_use] = ACTIONS(2239), + [anon_sym_where] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [sym_mutable_specifier] = ACTIONS(2239), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2239), + [sym_super] = ACTIONS(2239), + [sym_crate] = ACTIONS(2239), + [sym_metavariable] = ACTIONS(2243), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, + [525] = { + [sym_token_tree] = STATE(541), + [sym_token_repetition] = STATE(541), + [sym__literal] = STATE(541), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_repeat1] = STATE(541), + [sym_identifier] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2177), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_as] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [anon_sym_fn] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_impl] = ACTIONS(2245), + [anon_sym_let] = ACTIONS(2245), + [anon_sym_loop] = ACTIONS(2245), + [anon_sym_match] = ACTIONS(2245), + [anon_sym_mod] = ACTIONS(2245), + [anon_sym_pub] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_struct] = ACTIONS(2245), + [anon_sym_trait] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_union] = ACTIONS(2245), + [anon_sym_unsafe] = ACTIONS(2245), + [anon_sym_use] = ACTIONS(2245), + [anon_sym_where] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [sym_mutable_specifier] = ACTIONS(2245), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2245), + [sym_super] = ACTIONS(2245), + [sym_crate] = ACTIONS(2245), + [sym_metavariable] = ACTIONS(2247), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, + [526] = { + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_u8] = ACTIONS(2147), + [anon_sym_i8] = ACTIONS(2147), + [anon_sym_u16] = ACTIONS(2147), + [anon_sym_i16] = ACTIONS(2147), + [anon_sym_u32] = ACTIONS(2147), + [anon_sym_i32] = ACTIONS(2147), + [anon_sym_u64] = ACTIONS(2147), + [anon_sym_i64] = ACTIONS(2147), + [anon_sym_u128] = ACTIONS(2147), + [anon_sym_i128] = ACTIONS(2147), + [anon_sym_isize] = ACTIONS(2147), + [anon_sym_usize] = ACTIONS(2147), + [anon_sym_f32] = ACTIONS(2147), + [anon_sym_f64] = ACTIONS(2147), + [anon_sym_bool] = ACTIONS(2147), + [anon_sym_str] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [aux_sym__non_special_token_token1] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_impl] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_mod] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_trait] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_where] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [sym_mutable_specifier] = ACTIONS(2147), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_crate] = ACTIONS(2147), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), [sym_block_comment] = ACTIONS(3), }, - [522] = { - [sym_token_tree] = STATE(539), - [sym_token_repetition] = STATE(539), - [sym__literal] = STATE(539), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_repeat1] = STATE(539), - [sym_identifier] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2157), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2241), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_as] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(2241), - [anon_sym_await] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_default] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [anon_sym_fn] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_impl] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_loop] = ACTIONS(2241), - [anon_sym_match] = ACTIONS(2241), - [anon_sym_mod] = ACTIONS(2241), - [anon_sym_pub] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_static] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(2241), - [anon_sym_trait] = ACTIONS(2241), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_union] = ACTIONS(2241), - [anon_sym_unsafe] = ACTIONS(2241), - [anon_sym_use] = ACTIONS(2241), - [anon_sym_where] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [sym_mutable_specifier] = ACTIONS(2241), + [527] = { + [sym_token_tree] = STATE(542), + [sym_token_repetition] = STATE(542), + [sym__literal] = STATE(542), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_repeat1] = STATE(542), + [sym_identifier] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2241), + [anon_sym_DOLLAR] = ACTIONS(2177), + [anon_sym_u8] = ACTIONS(2249), + [anon_sym_i8] = ACTIONS(2249), + [anon_sym_u16] = ACTIONS(2249), + [anon_sym_i16] = ACTIONS(2249), + [anon_sym_u32] = ACTIONS(2249), + [anon_sym_i32] = ACTIONS(2249), + [anon_sym_u64] = ACTIONS(2249), + [anon_sym_i64] = ACTIONS(2249), + [anon_sym_u128] = ACTIONS(2249), + [anon_sym_i128] = ACTIONS(2249), + [anon_sym_isize] = ACTIONS(2249), + [anon_sym_usize] = ACTIONS(2249), + [anon_sym_f32] = ACTIONS(2249), + [anon_sym_f64] = ACTIONS(2249), + [anon_sym_bool] = ACTIONS(2249), + [anon_sym_str] = ACTIONS(2249), + [anon_sym_char] = ACTIONS(2249), + [aux_sym__non_special_token_token1] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_as] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_fn] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_impl] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_loop] = ACTIONS(2249), + [anon_sym_match] = ACTIONS(2249), + [anon_sym_mod] = ACTIONS(2249), + [anon_sym_pub] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_trait] = ACTIONS(2249), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_union] = ACTIONS(2249), + [anon_sym_unsafe] = ACTIONS(2249), + [anon_sym_use] = ACTIONS(2249), + [anon_sym_where] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [sym_mutable_specifier] = ACTIONS(2249), [sym_integer_literal] = ACTIONS(2000), [aux_sym_string_literal_token1] = ACTIONS(2002), [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2241), - [sym_super] = ACTIONS(2241), - [sym_crate] = ACTIONS(2241), - [sym_metavariable] = ACTIONS(2243), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2249), + [sym_super] = ACTIONS(2249), + [sym_crate] = ACTIONS(2249), + [sym_metavariable] = ACTIONS(2251), [sym_raw_string_literal] = ACTIONS(2000), [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [523] = { - [sym_delim_token_tree] = STATE(483), - [sym__delim_tokens] = STATE(483), - [sym__non_delim_token] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_RPAREN] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_u8] = ACTIONS(2195), - [anon_sym_i8] = ACTIONS(2195), - [anon_sym_u16] = ACTIONS(2195), - [anon_sym_i16] = ACTIONS(2195), - [anon_sym_u32] = ACTIONS(2195), - [anon_sym_i32] = ACTIONS(2195), - [anon_sym_u64] = ACTIONS(2195), - [anon_sym_i64] = ACTIONS(2195), - [anon_sym_u128] = ACTIONS(2195), - [anon_sym_i128] = ACTIONS(2195), - [anon_sym_isize] = ACTIONS(2195), - [anon_sym_usize] = ACTIONS(2195), - [anon_sym_f32] = ACTIONS(2195), - [anon_sym_f64] = ACTIONS(2195), - [anon_sym_bool] = ACTIONS(2195), - [anon_sym_str] = ACTIONS(2195), - [anon_sym_char] = ACTIONS(2195), - [aux_sym__non_special_token_token1] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [anon_sym_fn] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_impl] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_mod] = ACTIONS(2195), - [anon_sym_pub] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_trait] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2195), - [anon_sym_unsafe] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [sym_mutable_specifier] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_block_comment] = ACTIONS(3), - }, - [524] = { - [sym_token_tree] = STATE(540), - [sym_token_repetition] = STATE(540), - [sym__literal] = STATE(540), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_repeat1] = STATE(540), - [sym_identifier] = ACTIONS(2247), + [528] = { + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2147), [anon_sym_LPAREN] = ACTIONS(2149), [anon_sym_LBRACE] = ACTIONS(2153), [anon_sym_LBRACK] = ACTIONS(2155), [anon_sym_RBRACK] = ACTIONS(2151), [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_u8] = ACTIONS(2247), - [anon_sym_i8] = ACTIONS(2247), - [anon_sym_u16] = ACTIONS(2247), - [anon_sym_i16] = ACTIONS(2247), - [anon_sym_u32] = ACTIONS(2247), - [anon_sym_i32] = ACTIONS(2247), - [anon_sym_u64] = ACTIONS(2247), - [anon_sym_i64] = ACTIONS(2247), - [anon_sym_u128] = ACTIONS(2247), - [anon_sym_i128] = ACTIONS(2247), - [anon_sym_isize] = ACTIONS(2247), - [anon_sym_usize] = ACTIONS(2247), - [anon_sym_f32] = ACTIONS(2247), - [anon_sym_f64] = ACTIONS(2247), - [anon_sym_bool] = ACTIONS(2247), - [anon_sym_str] = ACTIONS(2247), - [anon_sym_char] = ACTIONS(2247), - [aux_sym__non_special_token_token1] = ACTIONS(2247), - [anon_sym_SQUOTE] = ACTIONS(2247), - [anon_sym_as] = ACTIONS(2247), - [anon_sym_async] = ACTIONS(2247), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_break] = ACTIONS(2247), - [anon_sym_const] = ACTIONS(2247), - [anon_sym_continue] = ACTIONS(2247), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_enum] = ACTIONS(2247), - [anon_sym_fn] = ACTIONS(2247), - [anon_sym_for] = ACTIONS(2247), - [anon_sym_if] = ACTIONS(2247), - [anon_sym_impl] = ACTIONS(2247), - [anon_sym_let] = ACTIONS(2247), - [anon_sym_loop] = ACTIONS(2247), - [anon_sym_match] = ACTIONS(2247), - [anon_sym_mod] = ACTIONS(2247), - [anon_sym_pub] = ACTIONS(2247), - [anon_sym_return] = ACTIONS(2247), - [anon_sym_static] = ACTIONS(2247), - [anon_sym_struct] = ACTIONS(2247), - [anon_sym_trait] = ACTIONS(2247), - [anon_sym_type] = ACTIONS(2247), - [anon_sym_union] = ACTIONS(2247), - [anon_sym_unsafe] = ACTIONS(2247), - [anon_sym_use] = ACTIONS(2247), - [anon_sym_where] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2247), - [sym_mutable_specifier] = ACTIONS(2247), + [anon_sym_u8] = ACTIONS(2147), + [anon_sym_i8] = ACTIONS(2147), + [anon_sym_u16] = ACTIONS(2147), + [anon_sym_i16] = ACTIONS(2147), + [anon_sym_u32] = ACTIONS(2147), + [anon_sym_i32] = ACTIONS(2147), + [anon_sym_u64] = ACTIONS(2147), + [anon_sym_i64] = ACTIONS(2147), + [anon_sym_u128] = ACTIONS(2147), + [anon_sym_i128] = ACTIONS(2147), + [anon_sym_isize] = ACTIONS(2147), + [anon_sym_usize] = ACTIONS(2147), + [anon_sym_f32] = ACTIONS(2147), + [anon_sym_f64] = ACTIONS(2147), + [anon_sym_bool] = ACTIONS(2147), + [anon_sym_str] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [aux_sym__non_special_token_token1] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_impl] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_mod] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_trait] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_where] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [sym_mutable_specifier] = ACTIONS(2147), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_crate] = ACTIONS(2147), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), + [sym_block_comment] = ACTIONS(3), + }, + [529] = { + [sym_token_tree] = STATE(487), + [sym_token_repetition] = STATE(487), + [sym__literal] = STATE(487), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_repeat1] = STATE(487), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2177), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_where] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [sym_mutable_specifier] = ACTIONS(2181), [sym_integer_literal] = ACTIONS(2000), [aux_sym_string_literal_token1] = ACTIONS(2002), [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2247), - [sym_super] = ACTIONS(2247), - [sym_crate] = ACTIONS(2247), - [sym_metavariable] = ACTIONS(2249), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2185), [sym_raw_string_literal] = ACTIONS(2000), [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [525] = { - [sym_delim_token_tree] = STATE(483), - [sym__delim_tokens] = STATE(483), - [sym__non_delim_token] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_u8] = ACTIONS(2195), - [anon_sym_i8] = ACTIONS(2195), - [anon_sym_u16] = ACTIONS(2195), - [anon_sym_i16] = ACTIONS(2195), - [anon_sym_u32] = ACTIONS(2195), - [anon_sym_i32] = ACTIONS(2195), - [anon_sym_u64] = ACTIONS(2195), - [anon_sym_i64] = ACTIONS(2195), - [anon_sym_u128] = ACTIONS(2195), - [anon_sym_i128] = ACTIONS(2195), - [anon_sym_isize] = ACTIONS(2195), - [anon_sym_usize] = ACTIONS(2195), - [anon_sym_f32] = ACTIONS(2195), - [anon_sym_f64] = ACTIONS(2195), - [anon_sym_bool] = ACTIONS(2195), - [anon_sym_str] = ACTIONS(2195), - [anon_sym_char] = ACTIONS(2195), - [aux_sym__non_special_token_token1] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [anon_sym_fn] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_impl] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_mod] = ACTIONS(2195), - [anon_sym_pub] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_trait] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2195), - [anon_sym_unsafe] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [sym_mutable_specifier] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_block_comment] = ACTIONS(3), - }, - [526] = { - [sym_token_tree] = STATE(485), - [sym_token_repetition] = STATE(485), + [530] = { + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), [sym__literal] = STATE(485), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2161), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2147), [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(2251), [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2225), [anon_sym_LBRACK] = ACTIONS(2155), [anon_sym_DOLLAR] = ACTIONS(2157), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2161), - [anon_sym_SQUOTE] = ACTIONS(2161), - [anon_sym_as] = ACTIONS(2161), - [anon_sym_async] = ACTIONS(2161), - [anon_sym_await] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_default] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [anon_sym_fn] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_impl] = ACTIONS(2161), - [anon_sym_let] = ACTIONS(2161), - [anon_sym_loop] = ACTIONS(2161), - [anon_sym_match] = ACTIONS(2161), - [anon_sym_mod] = ACTIONS(2161), - [anon_sym_pub] = ACTIONS(2161), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_struct] = ACTIONS(2161), - [anon_sym_trait] = ACTIONS(2161), - [anon_sym_type] = ACTIONS(2161), - [anon_sym_union] = ACTIONS(2161), - [anon_sym_unsafe] = ACTIONS(2161), - [anon_sym_use] = ACTIONS(2161), - [anon_sym_where] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [sym_mutable_specifier] = ACTIONS(2161), - [sym_integer_literal] = ACTIONS(2000), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_metavariable] = ACTIONS(2165), - [sym_raw_string_literal] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), - [sym_block_comment] = ACTIONS(3), - }, - [527] = { - [sym_delim_token_tree] = STATE(529), - [sym__delim_tokens] = STATE(529), - [sym__non_delim_token] = STATE(529), - [sym__literal] = STATE(529), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(529), - [sym_identifier] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_RPAREN] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_DOLLAR] = ACTIONS(2257), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2253), - [anon_sym_SQUOTE] = ACTIONS(2253), - [anon_sym_as] = ACTIONS(2253), - [anon_sym_async] = ACTIONS(2253), - [anon_sym_await] = ACTIONS(2253), - [anon_sym_break] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_continue] = ACTIONS(2253), - [anon_sym_default] = ACTIONS(2253), - [anon_sym_enum] = ACTIONS(2253), - [anon_sym_fn] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_impl] = ACTIONS(2253), - [anon_sym_let] = ACTIONS(2253), - [anon_sym_loop] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2253), - [anon_sym_mod] = ACTIONS(2253), - [anon_sym_pub] = ACTIONS(2253), - [anon_sym_return] = ACTIONS(2253), - [anon_sym_static] = ACTIONS(2253), - [anon_sym_struct] = ACTIONS(2253), - [anon_sym_trait] = ACTIONS(2253), - [anon_sym_type] = ACTIONS(2253), - [anon_sym_union] = ACTIONS(2253), - [anon_sym_unsafe] = ACTIONS(2253), - [anon_sym_use] = ACTIONS(2253), - [anon_sym_where] = ACTIONS(2253), - [anon_sym_while] = ACTIONS(2253), - [sym_mutable_specifier] = ACTIONS(2253), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2253), - [sym_super] = ACTIONS(2253), - [sym_crate] = ACTIONS(2253), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_block_comment] = ACTIONS(3), - }, - [528] = { - [sym_delim_token_tree] = STATE(483), - [sym__delim_tokens] = STATE(483), - [sym__non_delim_token] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_RBRACK] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_u8] = ACTIONS(2195), - [anon_sym_i8] = ACTIONS(2195), - [anon_sym_u16] = ACTIONS(2195), - [anon_sym_i16] = ACTIONS(2195), - [anon_sym_u32] = ACTIONS(2195), - [anon_sym_i32] = ACTIONS(2195), - [anon_sym_u64] = ACTIONS(2195), - [anon_sym_i64] = ACTIONS(2195), - [anon_sym_u128] = ACTIONS(2195), - [anon_sym_i128] = ACTIONS(2195), - [anon_sym_isize] = ACTIONS(2195), - [anon_sym_usize] = ACTIONS(2195), - [anon_sym_f32] = ACTIONS(2195), - [anon_sym_f64] = ACTIONS(2195), - [anon_sym_bool] = ACTIONS(2195), - [anon_sym_str] = ACTIONS(2195), - [anon_sym_char] = ACTIONS(2195), - [aux_sym__non_special_token_token1] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [anon_sym_fn] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_impl] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_mod] = ACTIONS(2195), - [anon_sym_pub] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_trait] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2195), - [anon_sym_unsafe] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [sym_mutable_specifier] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_block_comment] = ACTIONS(3), - }, - [529] = { - [sym_delim_token_tree] = STATE(483), - [sym__delim_tokens] = STATE(483), - [sym__non_delim_token] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_RPAREN] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_u8] = ACTIONS(2195), - [anon_sym_i8] = ACTIONS(2195), - [anon_sym_u16] = ACTIONS(2195), - [anon_sym_i16] = ACTIONS(2195), - [anon_sym_u32] = ACTIONS(2195), - [anon_sym_i32] = ACTIONS(2195), - [anon_sym_u64] = ACTIONS(2195), - [anon_sym_i64] = ACTIONS(2195), - [anon_sym_u128] = ACTIONS(2195), - [anon_sym_i128] = ACTIONS(2195), - [anon_sym_isize] = ACTIONS(2195), - [anon_sym_usize] = ACTIONS(2195), - [anon_sym_f32] = ACTIONS(2195), - [anon_sym_f64] = ACTIONS(2195), - [anon_sym_bool] = ACTIONS(2195), - [anon_sym_str] = ACTIONS(2195), - [anon_sym_char] = ACTIONS(2195), - [aux_sym__non_special_token_token1] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [anon_sym_fn] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_impl] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_mod] = ACTIONS(2195), - [anon_sym_pub] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_trait] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2195), - [anon_sym_unsafe] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [sym_mutable_specifier] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_block_comment] = ACTIONS(3), - }, - [530] = { - [sym_delim_token_tree] = STATE(483), - [sym__delim_tokens] = STATE(483), - [sym__non_delim_token] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_u8] = ACTIONS(2195), - [anon_sym_i8] = ACTIONS(2195), - [anon_sym_u16] = ACTIONS(2195), - [anon_sym_i16] = ACTIONS(2195), - [anon_sym_u32] = ACTIONS(2195), - [anon_sym_i32] = ACTIONS(2195), - [anon_sym_u64] = ACTIONS(2195), - [anon_sym_i64] = ACTIONS(2195), - [anon_sym_u128] = ACTIONS(2195), - [anon_sym_i128] = ACTIONS(2195), - [anon_sym_isize] = ACTIONS(2195), - [anon_sym_usize] = ACTIONS(2195), - [anon_sym_f32] = ACTIONS(2195), - [anon_sym_f64] = ACTIONS(2195), - [anon_sym_bool] = ACTIONS(2195), - [anon_sym_str] = ACTIONS(2195), - [anon_sym_char] = ACTIONS(2195), - [aux_sym__non_special_token_token1] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [anon_sym_fn] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_impl] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_mod] = ACTIONS(2195), - [anon_sym_pub] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_trait] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2195), - [anon_sym_unsafe] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [sym_mutable_specifier] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), + [anon_sym_u8] = ACTIONS(2147), + [anon_sym_i8] = ACTIONS(2147), + [anon_sym_u16] = ACTIONS(2147), + [anon_sym_i16] = ACTIONS(2147), + [anon_sym_u32] = ACTIONS(2147), + [anon_sym_i32] = ACTIONS(2147), + [anon_sym_u64] = ACTIONS(2147), + [anon_sym_i64] = ACTIONS(2147), + [anon_sym_u128] = ACTIONS(2147), + [anon_sym_i128] = ACTIONS(2147), + [anon_sym_isize] = ACTIONS(2147), + [anon_sym_usize] = ACTIONS(2147), + [anon_sym_f32] = ACTIONS(2147), + [anon_sym_f64] = ACTIONS(2147), + [anon_sym_bool] = ACTIONS(2147), + [anon_sym_str] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [aux_sym__non_special_token_token1] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_impl] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_mod] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_trait] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_where] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [sym_mutable_specifier] = ACTIONS(2147), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_crate] = ACTIONS(2147), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), [sym_block_comment] = ACTIONS(3), }, [531] = { - [sym_delim_token_tree] = STATE(483), - [sym__delim_tokens] = STATE(483), - [sym__non_delim_token] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_RBRACK] = ACTIONS(2259), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_u8] = ACTIONS(2195), - [anon_sym_i8] = ACTIONS(2195), - [anon_sym_u16] = ACTIONS(2195), - [anon_sym_i16] = ACTIONS(2195), - [anon_sym_u32] = ACTIONS(2195), - [anon_sym_i32] = ACTIONS(2195), - [anon_sym_u64] = ACTIONS(2195), - [anon_sym_i64] = ACTIONS(2195), - [anon_sym_u128] = ACTIONS(2195), - [anon_sym_i128] = ACTIONS(2195), - [anon_sym_isize] = ACTIONS(2195), - [anon_sym_usize] = ACTIONS(2195), - [anon_sym_f32] = ACTIONS(2195), - [anon_sym_f64] = ACTIONS(2195), - [anon_sym_bool] = ACTIONS(2195), - [anon_sym_str] = ACTIONS(2195), - [anon_sym_char] = ACTIONS(2195), - [aux_sym__non_special_token_token1] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [anon_sym_fn] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_impl] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_mod] = ACTIONS(2195), - [anon_sym_pub] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_trait] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2195), - [anon_sym_unsafe] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [sym_mutable_specifier] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), + [sym_delim_token_tree] = STATE(535), + [sym__delim_tokens] = STATE(535), + [sym__non_delim_token] = STATE(535), + [sym__literal] = STATE(535), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(535), + [sym_identifier] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_RPAREN] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2259), + [anon_sym_u8] = ACTIONS(2255), + [anon_sym_i8] = ACTIONS(2255), + [anon_sym_u16] = ACTIONS(2255), + [anon_sym_i16] = ACTIONS(2255), + [anon_sym_u32] = ACTIONS(2255), + [anon_sym_i32] = ACTIONS(2255), + [anon_sym_u64] = ACTIONS(2255), + [anon_sym_i64] = ACTIONS(2255), + [anon_sym_u128] = ACTIONS(2255), + [anon_sym_i128] = ACTIONS(2255), + [anon_sym_isize] = ACTIONS(2255), + [anon_sym_usize] = ACTIONS(2255), + [anon_sym_f32] = ACTIONS(2255), + [anon_sym_f64] = ACTIONS(2255), + [anon_sym_bool] = ACTIONS(2255), + [anon_sym_str] = ACTIONS(2255), + [anon_sym_char] = ACTIONS(2255), + [aux_sym__non_special_token_token1] = ACTIONS(2255), + [anon_sym_SQUOTE] = ACTIONS(2255), + [anon_sym_as] = ACTIONS(2255), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2255), + [anon_sym_break] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_continue] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [anon_sym_fn] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_impl] = ACTIONS(2255), + [anon_sym_let] = ACTIONS(2255), + [anon_sym_loop] = ACTIONS(2255), + [anon_sym_match] = ACTIONS(2255), + [anon_sym_mod] = ACTIONS(2255), + [anon_sym_pub] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_struct] = ACTIONS(2255), + [anon_sym_trait] = ACTIONS(2255), + [anon_sym_type] = ACTIONS(2255), + [anon_sym_union] = ACTIONS(2255), + [anon_sym_unsafe] = ACTIONS(2255), + [anon_sym_use] = ACTIONS(2255), + [anon_sym_where] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2255), + [sym_mutable_specifier] = ACTIONS(2255), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2255), + [sym_super] = ACTIONS(2255), + [sym_crate] = ACTIONS(2255), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), [sym_block_comment] = ACTIONS(3), }, [532] = { - [sym_delim_token_tree] = STATE(483), - [sym__delim_tokens] = STATE(483), - [sym__non_delim_token] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2239), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_u8] = ACTIONS(2195), - [anon_sym_i8] = ACTIONS(2195), - [anon_sym_u16] = ACTIONS(2195), - [anon_sym_i16] = ACTIONS(2195), - [anon_sym_u32] = ACTIONS(2195), - [anon_sym_i32] = ACTIONS(2195), - [anon_sym_u64] = ACTIONS(2195), - [anon_sym_i64] = ACTIONS(2195), - [anon_sym_u128] = ACTIONS(2195), - [anon_sym_i128] = ACTIONS(2195), - [anon_sym_isize] = ACTIONS(2195), - [anon_sym_usize] = ACTIONS(2195), - [anon_sym_f32] = ACTIONS(2195), - [anon_sym_f64] = ACTIONS(2195), - [anon_sym_bool] = ACTIONS(2195), - [anon_sym_str] = ACTIONS(2195), - [anon_sym_char] = ACTIONS(2195), - [aux_sym__non_special_token_token1] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [anon_sym_fn] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_impl] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_mod] = ACTIONS(2195), - [anon_sym_pub] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_trait] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2195), - [anon_sym_unsafe] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [sym_mutable_specifier] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_RPAREN] = ACTIONS(2165), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_u8] = ACTIONS(2147), + [anon_sym_i8] = ACTIONS(2147), + [anon_sym_u16] = ACTIONS(2147), + [anon_sym_i16] = ACTIONS(2147), + [anon_sym_u32] = ACTIONS(2147), + [anon_sym_i32] = ACTIONS(2147), + [anon_sym_u64] = ACTIONS(2147), + [anon_sym_i64] = ACTIONS(2147), + [anon_sym_u128] = ACTIONS(2147), + [anon_sym_i128] = ACTIONS(2147), + [anon_sym_isize] = ACTIONS(2147), + [anon_sym_usize] = ACTIONS(2147), + [anon_sym_f32] = ACTIONS(2147), + [anon_sym_f64] = ACTIONS(2147), + [anon_sym_bool] = ACTIONS(2147), + [anon_sym_str] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [aux_sym__non_special_token_token1] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_impl] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_mod] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_trait] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_where] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [sym_mutable_specifier] = ACTIONS(2147), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_crate] = ACTIONS(2147), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), [sym_block_comment] = ACTIONS(3), }, [533] = { - [sym_delim_token_tree] = STATE(483), - [sym__delim_tokens] = STATE(483), - [sym__non_delim_token] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_RPAREN] = ACTIONS(2239), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_DOLLAR] = ACTIONS(2199), - [anon_sym_u8] = ACTIONS(2195), - [anon_sym_i8] = ACTIONS(2195), - [anon_sym_u16] = ACTIONS(2195), - [anon_sym_i16] = ACTIONS(2195), - [anon_sym_u32] = ACTIONS(2195), - [anon_sym_i32] = ACTIONS(2195), - [anon_sym_u64] = ACTIONS(2195), - [anon_sym_i64] = ACTIONS(2195), - [anon_sym_u128] = ACTIONS(2195), - [anon_sym_i128] = ACTIONS(2195), - [anon_sym_isize] = ACTIONS(2195), - [anon_sym_usize] = ACTIONS(2195), - [anon_sym_f32] = ACTIONS(2195), - [anon_sym_f64] = ACTIONS(2195), - [anon_sym_bool] = ACTIONS(2195), - [anon_sym_str] = ACTIONS(2195), - [anon_sym_char] = ACTIONS(2195), - [aux_sym__non_special_token_token1] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [anon_sym_fn] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_impl] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_mod] = ACTIONS(2195), - [anon_sym_pub] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_trait] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2195), - [anon_sym_unsafe] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [sym_mutable_specifier] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_u8] = ACTIONS(2147), + [anon_sym_i8] = ACTIONS(2147), + [anon_sym_u16] = ACTIONS(2147), + [anon_sym_i16] = ACTIONS(2147), + [anon_sym_u32] = ACTIONS(2147), + [anon_sym_i32] = ACTIONS(2147), + [anon_sym_u64] = ACTIONS(2147), + [anon_sym_i64] = ACTIONS(2147), + [anon_sym_u128] = ACTIONS(2147), + [anon_sym_i128] = ACTIONS(2147), + [anon_sym_isize] = ACTIONS(2147), + [anon_sym_usize] = ACTIONS(2147), + [anon_sym_f32] = ACTIONS(2147), + [anon_sym_f64] = ACTIONS(2147), + [anon_sym_bool] = ACTIONS(2147), + [anon_sym_str] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [aux_sym__non_special_token_token1] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_impl] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_mod] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_trait] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_where] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [sym_mutable_specifier] = ACTIONS(2147), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_crate] = ACTIONS(2147), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), [sym_block_comment] = ACTIONS(3), }, [534] = { - [sym_delim_token_tree] = STATE(530), - [sym__delim_tokens] = STATE(530), - [sym__non_delim_token] = STATE(530), - [sym__literal] = STATE(530), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(530), + [sym_delim_token_tree] = STATE(532), + [sym__delim_tokens] = STATE(532), + [sym__non_delim_token] = STATE(532), + [sym__literal] = STATE(532), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(532), [sym_identifier] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_DOLLAR] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2265), [anon_sym_u8] = ACTIONS(2261), [anon_sym_i8] = ACTIONS(2261), [anon_sym_u16] = ACTIONS(2261), @@ -64088,106 +64181,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2261), [anon_sym_while] = ACTIONS(2261), [sym_mutable_specifier] = ACTIONS(2261), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2261), [sym_super] = ACTIONS(2261), [sym_crate] = ACTIONS(2261), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), [sym_block_comment] = ACTIONS(3), }, [535] = { - [sym_delim_token_tree] = STATE(521), - [sym__delim_tokens] = STATE(521), - [sym__non_delim_token] = STATE(521), - [sym__literal] = STATE(521), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(521), - [sym_identifier] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_RBRACK] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2269), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2265), - [anon_sym_SQUOTE] = ACTIONS(2265), - [anon_sym_as] = ACTIONS(2265), - [anon_sym_async] = ACTIONS(2265), - [anon_sym_await] = ACTIONS(2265), - [anon_sym_break] = ACTIONS(2265), - [anon_sym_const] = ACTIONS(2265), - [anon_sym_continue] = ACTIONS(2265), - [anon_sym_default] = ACTIONS(2265), - [anon_sym_enum] = ACTIONS(2265), - [anon_sym_fn] = ACTIONS(2265), - [anon_sym_for] = ACTIONS(2265), - [anon_sym_if] = ACTIONS(2265), - [anon_sym_impl] = ACTIONS(2265), - [anon_sym_let] = ACTIONS(2265), - [anon_sym_loop] = ACTIONS(2265), - [anon_sym_match] = ACTIONS(2265), - [anon_sym_mod] = ACTIONS(2265), - [anon_sym_pub] = ACTIONS(2265), - [anon_sym_return] = ACTIONS(2265), - [anon_sym_static] = ACTIONS(2265), - [anon_sym_struct] = ACTIONS(2265), - [anon_sym_trait] = ACTIONS(2265), - [anon_sym_type] = ACTIONS(2265), - [anon_sym_union] = ACTIONS(2265), - [anon_sym_unsafe] = ACTIONS(2265), - [anon_sym_use] = ACTIONS(2265), - [anon_sym_where] = ACTIONS(2265), - [anon_sym_while] = ACTIONS(2265), - [sym_mutable_specifier] = ACTIONS(2265), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2265), - [sym_super] = ACTIONS(2265), - [sym_crate] = ACTIONS(2265), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_RPAREN] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_u8] = ACTIONS(2147), + [anon_sym_i8] = ACTIONS(2147), + [anon_sym_u16] = ACTIONS(2147), + [anon_sym_i16] = ACTIONS(2147), + [anon_sym_u32] = ACTIONS(2147), + [anon_sym_i32] = ACTIONS(2147), + [anon_sym_u64] = ACTIONS(2147), + [anon_sym_i64] = ACTIONS(2147), + [anon_sym_u128] = ACTIONS(2147), + [anon_sym_i128] = ACTIONS(2147), + [anon_sym_isize] = ACTIONS(2147), + [anon_sym_usize] = ACTIONS(2147), + [anon_sym_f32] = ACTIONS(2147), + [anon_sym_f64] = ACTIONS(2147), + [anon_sym_bool] = ACTIONS(2147), + [anon_sym_str] = ACTIONS(2147), + [anon_sym_char] = ACTIONS(2147), + [aux_sym__non_special_token_token1] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_as] = ACTIONS(2147), + [anon_sym_async] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(2147), + [anon_sym_break] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_continue] = ACTIONS(2147), + [anon_sym_default] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2147), + [anon_sym_fn] = ACTIONS(2147), + [anon_sym_for] = ACTIONS(2147), + [anon_sym_if] = ACTIONS(2147), + [anon_sym_impl] = ACTIONS(2147), + [anon_sym_let] = ACTIONS(2147), + [anon_sym_loop] = ACTIONS(2147), + [anon_sym_match] = ACTIONS(2147), + [anon_sym_mod] = ACTIONS(2147), + [anon_sym_pub] = ACTIONS(2147), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_struct] = ACTIONS(2147), + [anon_sym_trait] = ACTIONS(2147), + [anon_sym_type] = ACTIONS(2147), + [anon_sym_union] = ACTIONS(2147), + [anon_sym_unsafe] = ACTIONS(2147), + [anon_sym_use] = ACTIONS(2147), + [anon_sym_where] = ACTIONS(2147), + [anon_sym_while] = ACTIONS(2147), + [sym_mutable_specifier] = ACTIONS(2147), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_crate] = ACTIONS(2147), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), [sym_block_comment] = ACTIONS(3), }, [536] = { - [sym_token_tree] = STATE(502), - [sym_token_repetition] = STATE(502), - [sym__literal] = STATE(502), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_repeat1] = STATE(502), + [sym_delim_token_tree] = STATE(533), + [sym__delim_tokens] = STATE(533), + [sym__non_delim_token] = STATE(533), + [sym__literal] = STATE(533), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(533), + [sym_identifier] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2269), + [anon_sym_u8] = ACTIONS(2267), + [anon_sym_i8] = ACTIONS(2267), + [anon_sym_u16] = ACTIONS(2267), + [anon_sym_i16] = ACTIONS(2267), + [anon_sym_u32] = ACTIONS(2267), + [anon_sym_i32] = ACTIONS(2267), + [anon_sym_u64] = ACTIONS(2267), + [anon_sym_i64] = ACTIONS(2267), + [anon_sym_u128] = ACTIONS(2267), + [anon_sym_i128] = ACTIONS(2267), + [anon_sym_isize] = ACTIONS(2267), + [anon_sym_usize] = ACTIONS(2267), + [anon_sym_f32] = ACTIONS(2267), + [anon_sym_f64] = ACTIONS(2267), + [anon_sym_bool] = ACTIONS(2267), + [anon_sym_str] = ACTIONS(2267), + [anon_sym_char] = ACTIONS(2267), + [aux_sym__non_special_token_token1] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2267), + [anon_sym_as] = ACTIONS(2267), + [anon_sym_async] = ACTIONS(2267), + [anon_sym_await] = ACTIONS(2267), + [anon_sym_break] = ACTIONS(2267), + [anon_sym_const] = ACTIONS(2267), + [anon_sym_continue] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(2267), + [anon_sym_enum] = ACTIONS(2267), + [anon_sym_fn] = ACTIONS(2267), + [anon_sym_for] = ACTIONS(2267), + [anon_sym_if] = ACTIONS(2267), + [anon_sym_impl] = ACTIONS(2267), + [anon_sym_let] = ACTIONS(2267), + [anon_sym_loop] = ACTIONS(2267), + [anon_sym_match] = ACTIONS(2267), + [anon_sym_mod] = ACTIONS(2267), + [anon_sym_pub] = ACTIONS(2267), + [anon_sym_return] = ACTIONS(2267), + [anon_sym_static] = ACTIONS(2267), + [anon_sym_struct] = ACTIONS(2267), + [anon_sym_trait] = ACTIONS(2267), + [anon_sym_type] = ACTIONS(2267), + [anon_sym_union] = ACTIONS(2267), + [anon_sym_unsafe] = ACTIONS(2267), + [anon_sym_use] = ACTIONS(2267), + [anon_sym_where] = ACTIONS(2267), + [anon_sym_while] = ACTIONS(2267), + [sym_mutable_specifier] = ACTIONS(2267), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2267), + [sym_super] = ACTIONS(2267), + [sym_crate] = ACTIONS(2267), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), + [sym_block_comment] = ACTIONS(3), + }, + [537] = { + [sym_delim_token_tree] = STATE(504), + [sym__delim_tokens] = STATE(504), + [sym__non_delim_token] = STATE(504), + [sym__literal] = STATE(504), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(504), [sym_identifier] = ACTIONS(2271), [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(2169), [anon_sym_LBRACE] = ACTIONS(2153), [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_RBRACK] = ACTIONS(2263), + [anon_sym_DOLLAR] = ACTIONS(2273), [anon_sym_u8] = ACTIONS(2271), [anon_sym_i8] = ACTIONS(2271), [anon_sym_u16] = ACTIONS(2271), @@ -64235,34 +64403,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2271), [anon_sym_while] = ACTIONS(2271), [sym_mutable_specifier] = ACTIONS(2271), - [sym_integer_literal] = ACTIONS(2000), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2271), [sym_super] = ACTIONS(2271), [sym_crate] = ACTIONS(2271), - [sym_metavariable] = ACTIONS(2273), - [sym_raw_string_literal] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), [sym_block_comment] = ACTIONS(3), }, - [537] = { - [sym_delim_token_tree] = STATE(531), - [sym__delim_tokens] = STATE(531), - [sym__non_delim_token] = STATE(531), - [sym__literal] = STATE(531), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(531), + [538] = { + [sym_token_tree] = STATE(529), + [sym_token_repetition] = STATE(529), + [sym__literal] = STATE(529), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_repeat1] = STATE(529), [sym_identifier] = ACTIONS(2275), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_RBRACK] = ACTIONS(2255), - [anon_sym_DOLLAR] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2277), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2177), [anon_sym_u8] = ACTIONS(2275), [anon_sym_i8] = ACTIONS(2275), [anon_sym_u16] = ACTIONS(2275), @@ -64310,254 +64476,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2275), [anon_sym_while] = ACTIONS(2275), [sym_mutable_specifier] = ACTIONS(2275), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2275), - [sym_super] = ACTIONS(2275), - [sym_crate] = ACTIONS(2275), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), - [sym_block_comment] = ACTIONS(3), - }, - [538] = { - [sym_token_tree] = STATE(485), - [sym_token_repetition] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2157), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2161), - [anon_sym_SQUOTE] = ACTIONS(2161), - [anon_sym_as] = ACTIONS(2161), - [anon_sym_async] = ACTIONS(2161), - [anon_sym_await] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_default] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [anon_sym_fn] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_impl] = ACTIONS(2161), - [anon_sym_let] = ACTIONS(2161), - [anon_sym_loop] = ACTIONS(2161), - [anon_sym_match] = ACTIONS(2161), - [anon_sym_mod] = ACTIONS(2161), - [anon_sym_pub] = ACTIONS(2161), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_struct] = ACTIONS(2161), - [anon_sym_trait] = ACTIONS(2161), - [anon_sym_type] = ACTIONS(2161), - [anon_sym_union] = ACTIONS(2161), - [anon_sym_unsafe] = ACTIONS(2161), - [anon_sym_use] = ACTIONS(2161), - [anon_sym_where] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [sym_mutable_specifier] = ACTIONS(2161), [sym_integer_literal] = ACTIONS(2000), [aux_sym_string_literal_token1] = ACTIONS(2002), [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_metavariable] = ACTIONS(2165), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2275), + [sym_super] = ACTIONS(2275), + [sym_crate] = ACTIONS(2275), + [sym_metavariable] = ACTIONS(2279), [sym_raw_string_literal] = ACTIONS(2000), [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, [539] = { - [sym_token_tree] = STATE(485), - [sym_token_repetition] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2157), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2161), - [anon_sym_SQUOTE] = ACTIONS(2161), - [anon_sym_as] = ACTIONS(2161), - [anon_sym_async] = ACTIONS(2161), - [anon_sym_await] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_default] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [anon_sym_fn] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_impl] = ACTIONS(2161), - [anon_sym_let] = ACTIONS(2161), - [anon_sym_loop] = ACTIONS(2161), - [anon_sym_match] = ACTIONS(2161), - [anon_sym_mod] = ACTIONS(2161), - [anon_sym_pub] = ACTIONS(2161), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_struct] = ACTIONS(2161), - [anon_sym_trait] = ACTIONS(2161), - [anon_sym_type] = ACTIONS(2161), - [anon_sym_union] = ACTIONS(2161), - [anon_sym_unsafe] = ACTIONS(2161), - [anon_sym_use] = ACTIONS(2161), - [anon_sym_where] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [sym_mutable_specifier] = ACTIONS(2161), - [sym_integer_literal] = ACTIONS(2000), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_metavariable] = ACTIONS(2165), - [sym_raw_string_literal] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), - [sym_block_comment] = ACTIONS(3), - }, - [540] = { - [sym_token_tree] = STATE(485), - [sym_token_repetition] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_RBRACK] = ACTIONS(2279), - [anon_sym_DOLLAR] = ACTIONS(2157), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2161), - [anon_sym_SQUOTE] = ACTIONS(2161), - [anon_sym_as] = ACTIONS(2161), - [anon_sym_async] = ACTIONS(2161), - [anon_sym_await] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_default] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [anon_sym_fn] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_impl] = ACTIONS(2161), - [anon_sym_let] = ACTIONS(2161), - [anon_sym_loop] = ACTIONS(2161), - [anon_sym_match] = ACTIONS(2161), - [anon_sym_mod] = ACTIONS(2161), - [anon_sym_pub] = ACTIONS(2161), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_struct] = ACTIONS(2161), - [anon_sym_trait] = ACTIONS(2161), - [anon_sym_type] = ACTIONS(2161), - [anon_sym_union] = ACTIONS(2161), - [anon_sym_unsafe] = ACTIONS(2161), - [anon_sym_use] = ACTIONS(2161), - [anon_sym_where] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [sym_mutable_specifier] = ACTIONS(2161), - [sym_integer_literal] = ACTIONS(2000), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_metavariable] = ACTIONS(2165), - [sym_raw_string_literal] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), - [sym_block_comment] = ACTIONS(3), - }, - [541] = { - [sym_token_tree] = STATE(526), - [sym_token_repetition] = STATE(526), - [sym__literal] = STATE(526), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_repeat1] = STATE(526), + [sym_token_tree] = STATE(543), + [sym_token_repetition] = STATE(543), + [sym__literal] = STATE(543), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_repeat1] = STATE(543), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2177), [anon_sym_u8] = ACTIONS(2281), [anon_sym_i8] = ACTIONS(2281), [anon_sym_u16] = ACTIONS(2281), @@ -64610,28 +64555,324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2281), [sym_super] = ACTIONS(2281), [sym_crate] = ACTIONS(2281), - [sym_metavariable] = ACTIONS(2285), + [sym_metavariable] = ACTIONS(2283), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, + [540] = { + [sym_token_tree] = STATE(487), + [sym_token_repetition] = STATE(487), + [sym__literal] = STATE(487), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_repeat1] = STATE(487), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2177), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_where] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [sym_mutable_specifier] = ACTIONS(2181), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, + [541] = { + [sym_token_tree] = STATE(487), + [sym_token_repetition] = STATE(487), + [sym__literal] = STATE(487), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_repeat1] = STATE(487), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2177), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_where] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [sym_mutable_specifier] = ACTIONS(2181), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2185), [sym_raw_string_literal] = ACTIONS(2000), [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, [542] = { - [sym_delim_token_tree] = STATE(532), - [sym__delim_tokens] = STATE(532), - [sym__non_delim_token] = STATE(532), - [sym__literal] = STATE(532), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(532), + [sym_token_tree] = STATE(487), + [sym_token_repetition] = STATE(487), + [sym__literal] = STATE(487), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_repeat1] = STATE(487), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2285), + [anon_sym_DOLLAR] = ACTIONS(2177), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_where] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [sym_mutable_specifier] = ACTIONS(2181), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, + [543] = { + [sym_token_tree] = STATE(487), + [sym_token_repetition] = STATE(487), + [sym__literal] = STATE(487), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_repeat1] = STATE(487), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_DOLLAR] = ACTIONS(2177), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_where] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [sym_mutable_specifier] = ACTIONS(2181), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, + [544] = { + [sym_delim_token_tree] = STATE(520), + [sym__delim_tokens] = STATE(520), + [sym__non_delim_token] = STATE(520), + [sym__literal] = STATE(520), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(520), [sym_identifier] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_RBRACK] = ACTIONS(2257), [anon_sym_DOLLAR] = ACTIONS(2289), [anon_sym_u8] = ACTIONS(2287), [anon_sym_i8] = ACTIONS(2287), @@ -64680,106 +64921,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2287), [anon_sym_while] = ACTIONS(2287), [sym_mutable_specifier] = ACTIONS(2287), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2287), [sym_super] = ACTIONS(2287), [sym_crate] = ACTIONS(2287), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), [sym_block_comment] = ACTIONS(3), }, - [543] = { - [sym_token_tree] = STATE(485), - [sym_token_repetition] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(582), - [sym_boolean_literal] = STATE(582), - [aux_sym_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2157), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2161), - [anon_sym_SQUOTE] = ACTIONS(2161), - [anon_sym_as] = ACTIONS(2161), - [anon_sym_async] = ACTIONS(2161), - [anon_sym_await] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_default] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [anon_sym_fn] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_impl] = ACTIONS(2161), - [anon_sym_let] = ACTIONS(2161), - [anon_sym_loop] = ACTIONS(2161), - [anon_sym_match] = ACTIONS(2161), - [anon_sym_mod] = ACTIONS(2161), - [anon_sym_pub] = ACTIONS(2161), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_struct] = ACTIONS(2161), - [anon_sym_trait] = ACTIONS(2161), - [anon_sym_type] = ACTIONS(2161), - [anon_sym_union] = ACTIONS(2161), - [anon_sym_unsafe] = ACTIONS(2161), - [anon_sym_use] = ACTIONS(2161), - [anon_sym_where] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [sym_mutable_specifier] = ACTIONS(2161), + [545] = { + [sym_token_tree] = STATE(487), + [sym_token_repetition] = STATE(487), + [sym__literal] = STATE(487), + [sym_string_literal] = STATE(564), + [sym_boolean_literal] = STATE(564), + [aux_sym_token_tree_repeat1] = STATE(487), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2183), + [anon_sym_DOLLAR] = ACTIONS(2177), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_where] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [sym_mutable_specifier] = ACTIONS(2181), [sym_integer_literal] = ACTIONS(2000), [aux_sym_string_literal_token1] = ACTIONS(2002), [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_metavariable] = ACTIONS(2165), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2185), [sym_raw_string_literal] = ACTIONS(2000), [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [544] = { - [sym_delim_token_tree] = STATE(533), - [sym__delim_tokens] = STATE(533), - [sym__non_delim_token] = STATE(533), - [sym__literal] = STATE(533), - [sym_string_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [aux_sym_delim_token_tree_repeat1] = STATE(533), + [546] = { + [sym_delim_token_tree] = STATE(530), + [sym__delim_tokens] = STATE(530), + [sym__non_delim_token] = STATE(530), + [sym__literal] = STATE(530), + [sym_string_literal] = STATE(599), + [sym_boolean_literal] = STATE(599), + [aux_sym_delim_token_tree_repeat1] = STATE(530), [sym_identifier] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_RPAREN] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2155), [anon_sym_DOLLAR] = ACTIONS(2293), [anon_sym_u8] = ACTIONS(2291), [anon_sym_i8] = ACTIONS(2291), @@ -64828,75 +65069,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2291), [anon_sym_while] = ACTIONS(2291), [sym_mutable_specifier] = ACTIONS(2291), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(1069), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2291), [sym_super] = ACTIONS(2291), [sym_crate] = ACTIONS(2291), - [sym_raw_string_literal] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), [sym_block_comment] = ACTIONS(3), }, - [545] = { - [sym_attribute_item] = STATE(621), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_match_pattern] = STATE(2385), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1916), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_enum_variant_list_repeat1] = STATE(621), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [547] = { + [sym_attribute_item] = STATE(626), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_match_pattern] = STATE(2464), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1928), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_enum_variant_list_repeat1] = STATE(626), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -64906,70 +65147,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [546] = { - [sym_attribute_item] = STATE(621), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_match_pattern] = STATE(2433), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1916), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [aux_sym_enum_variant_list_repeat1] = STATE(621), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [548] = { + [sym_attribute_item] = STATE(626), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_match_pattern] = STATE(2454), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1928), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [aux_sym_enum_variant_list_repeat1] = STATE(626), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -64979,715 +65220,644 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [547] = { - [sym_attribute_item] = STATE(554), - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym_visibility_modifier] = STATE(685), - [sym__type] = STATE(1832), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_enum_variant_list_repeat1] = STATE(554), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [549] = { + [sym_attribute_item] = STATE(556), + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym_visibility_modifier] = STATE(691), + [sym__type] = STATE(1837), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_enum_variant_list_repeat1] = STATE(556), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(868), [anon_sym_RPAREN] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2303), [anon_sym_BANG] = ACTIONS(680), [anon_sym_COMMA] = ACTIONS(2305), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(894), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [548] = { - [sym_attribute_item] = STATE(558), - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym_visibility_modifier] = STATE(692), - [sym__type] = STATE(2054), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [550] = { + [sym_attribute_item] = STATE(559), + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym_visibility_modifier] = STATE(731), + [sym__type] = STATE(2052), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_enum_variant_list_repeat1] = STATE(559), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(868), [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2303), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(894), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [549] = { - [sym_attribute_item] = STATE(558), - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym_visibility_modifier] = STATE(692), - [sym__type] = STATE(2054), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [551] = { + [sym_attribute_item] = STATE(559), + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym_visibility_modifier] = STATE(731), + [sym__type] = STATE(2052), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_enum_variant_list_repeat1] = STATE(559), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(868), [anon_sym_RPAREN] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2303), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(894), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [550] = { - [sym_attribute_item] = STATE(558), - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym_visibility_modifier] = STATE(692), - [sym__type] = STATE(2054), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [552] = { + [sym_attribute_item] = STATE(559), + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym_visibility_modifier] = STATE(731), + [sym__type] = STATE(2052), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_enum_variant_list_repeat1] = STATE(559), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(868), [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2303), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(894), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [551] = { - [sym_attribute_item] = STATE(558), - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym_visibility_modifier] = STATE(692), - [sym__type] = STATE(2054), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [553] = { + [sym_attribute_item] = STATE(559), + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym_visibility_modifier] = STATE(731), + [sym__type] = STATE(2052), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_enum_variant_list_repeat1] = STATE(559), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(868), [anon_sym_RPAREN] = ACTIONS(2315), - [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2303), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(894), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [552] = { - [sym_attribute_item] = STATE(558), - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym_visibility_modifier] = STATE(692), - [sym__type] = STATE(2054), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [554] = { + [sym_attribute_item] = STATE(559), + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym_visibility_modifier] = STATE(731), + [sym__type] = STATE(2052), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_enum_variant_list_repeat1] = STATE(559), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(868), [anon_sym_RPAREN] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2303), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(894), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [553] = { - [sym_attribute_item] = STATE(558), - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym_visibility_modifier] = STATE(692), - [sym__type] = STATE(2054), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [555] = { + [sym_attribute_item] = STATE(559), + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym_visibility_modifier] = STATE(731), + [sym__type] = STATE(2052), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_enum_variant_list_repeat1] = STATE(559), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(868), [anon_sym_RPAREN] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2303), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(894), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [554] = { - [sym_attribute_item] = STATE(1048), - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym_visibility_modifier] = STATE(719), - [sym__type] = STATE(1824), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_enum_variant_list_repeat1] = STATE(1048), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [556] = { + [sym_attribute_item] = STATE(1121), + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym_visibility_modifier] = STATE(697), + [sym__type] = STATE(1823), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_enum_variant_list_repeat1] = STATE(1121), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2303), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [555] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1787), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_RBRACK] = ACTIONS(780), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_COMMA] = ACTIONS(788), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [556] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1853), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), + [557] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1861), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), [anon_sym_RPAREN] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_COMMA] = ACTIONS(2323), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -65697,210 +65867,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [557] = { - [sym_attribute_item] = STATE(558), - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym_visibility_modifier] = STATE(692), - [sym__type] = STATE(2054), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [558] = { + [sym_attribute_item] = STATE(559), + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym_visibility_modifier] = STATE(731), + [sym__type] = STATE(2052), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_enum_variant_list_repeat1] = STATE(559), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2303), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(894), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [558] = { - [sym_attribute_item] = STATE(1048), - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym_visibility_modifier] = STATE(740), - [sym__type] = STATE(2043), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_enum_variant_list_repeat1] = STATE(1048), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [559] = { + [sym_attribute_item] = STATE(1121), + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym_visibility_modifier] = STATE(664), + [sym__type] = STATE(2058), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_enum_variant_list_repeat1] = STATE(1121), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2303), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(894), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [559] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1789), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), + [560] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1792), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), [anon_sym_RPAREN] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_COMMA] = ACTIONS(810), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -65910,67 +66080,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [560] = { - [sym_parameter] = STATE(1882), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1845), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), + [561] = { + [sym_parameter] = STATE(1865), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1850), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), [anon_sym_default] = ACTIONS(2327), [anon_sym_union] = ACTIONS(2327), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(2329), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -65982,14 +66152,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2333), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [561] = { + [562] = { [sym_identifier] = ACTIONS(2335), [anon_sym_LPAREN] = ACTIONS(2337), [anon_sym_RPAREN] = ACTIONS(2337), @@ -66051,7 +66221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2337), [anon_sym_true] = ACTIONS(2335), [anon_sym_false] = ACTIONS(2335), - [sym_line_comment] = ACTIONS(1069), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2335), [sym_super] = ACTIONS(2335), [sym_crate] = ACTIONS(2335), @@ -66060,7 +66230,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2337), [sym_block_comment] = ACTIONS(3), }, - [562] = { + [563] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1831), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_RBRACK] = ACTIONS(780), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), + [anon_sym_COMMA] = ACTIONS(788), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1534), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [564] = { [sym_identifier] = ACTIONS(2341), [anon_sym_LPAREN] = ACTIONS(2343), [anon_sym_RPAREN] = ACTIONS(2343), @@ -66121,7 +66362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2343), [anon_sym_true] = ACTIONS(2341), [anon_sym_false] = ACTIONS(2341), - [sym_line_comment] = ACTIONS(1069), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2341), [sym_super] = ACTIONS(2341), [sym_crate] = ACTIONS(2341), @@ -66130,199 +66371,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2343), [sym_block_comment] = ACTIONS(3), }, - [563] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1788), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_RBRACK] = ACTIONS(2345), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [565] = { + [sym_identifier] = ACTIONS(2345), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_RPAREN] = ACTIONS(2347), + [anon_sym_LBRACE] = ACTIONS(2347), + [anon_sym_RBRACE] = ACTIONS(2347), + [anon_sym_LBRACK] = ACTIONS(2347), + [anon_sym_RBRACK] = ACTIONS(2347), + [anon_sym_DOLLAR] = ACTIONS(2345), + [anon_sym_u8] = ACTIONS(2345), + [anon_sym_i8] = ACTIONS(2345), + [anon_sym_u16] = ACTIONS(2345), + [anon_sym_i16] = ACTIONS(2345), + [anon_sym_u32] = ACTIONS(2345), + [anon_sym_i32] = ACTIONS(2345), + [anon_sym_u64] = ACTIONS(2345), + [anon_sym_i64] = ACTIONS(2345), + [anon_sym_u128] = ACTIONS(2345), + [anon_sym_i128] = ACTIONS(2345), + [anon_sym_isize] = ACTIONS(2345), + [anon_sym_usize] = ACTIONS(2345), + [anon_sym_f32] = ACTIONS(2345), + [anon_sym_f64] = ACTIONS(2345), + [anon_sym_bool] = ACTIONS(2345), + [anon_sym_str] = ACTIONS(2345), + [anon_sym_char] = ACTIONS(2345), + [aux_sym__non_special_token_token1] = ACTIONS(2345), + [anon_sym_SQUOTE] = ACTIONS(2345), + [anon_sym_as] = ACTIONS(2345), + [anon_sym_async] = ACTIONS(2345), + [anon_sym_await] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), + [anon_sym_fn] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_impl] = ACTIONS(2345), + [anon_sym_let] = ACTIONS(2345), + [anon_sym_loop] = ACTIONS(2345), + [anon_sym_match] = ACTIONS(2345), + [anon_sym_mod] = ACTIONS(2345), + [anon_sym_pub] = ACTIONS(2345), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_static] = ACTIONS(2345), + [anon_sym_struct] = ACTIONS(2345), + [anon_sym_trait] = ACTIONS(2345), + [anon_sym_type] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_unsafe] = ACTIONS(2345), + [anon_sym_use] = ACTIONS(2345), + [anon_sym_where] = ACTIONS(2345), + [anon_sym_while] = ACTIONS(2345), + [sym_mutable_specifier] = ACTIONS(2345), + [sym_integer_literal] = ACTIONS(2347), + [aux_sym_string_literal_token1] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [anon_sym_true] = ACTIONS(2345), + [anon_sym_false] = ACTIONS(2345), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2345), + [sym_super] = ACTIONS(2345), + [sym_crate] = ACTIONS(2345), + [sym_metavariable] = ACTIONS(2347), + [sym_raw_string_literal] = ACTIONS(2347), + [sym_float_literal] = ACTIONS(2347), [sym_block_comment] = ACTIONS(3), }, - [564] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), + [566] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1794), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), [anon_sym_RPAREN] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_RBRACK] = ACTIONS(2349), - [anon_sym_DOLLAR] = ACTIONS(2347), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2347), - [anon_sym_as] = ACTIONS(2347), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_await] = 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_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_where] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [sym_mutable_specifier] = ACTIONS(2347), - [sym_integer_literal] = ACTIONS(2349), - [aux_sym_string_literal_token1] = ACTIONS(2349), - [sym_char_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2347), - [sym_super] = ACTIONS(2347), - [sym_crate] = ACTIONS(2347), - [sym_metavariable] = ACTIONS(2349), - [sym_raw_string_literal] = ACTIONS(2349), - [sym_float_literal] = ACTIONS(2349), - [sym_block_comment] = ACTIONS(3), - }, - [565] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1788), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_RPAREN] = ACTIONS(2351), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -66332,557 +66503,627 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [566] = { - [sym_identifier] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_RPAREN] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_RBRACK] = ACTIONS(2355), - [anon_sym_DOLLAR] = ACTIONS(2353), - [anon_sym_u8] = ACTIONS(2353), - [anon_sym_i8] = ACTIONS(2353), - [anon_sym_u16] = ACTIONS(2353), - [anon_sym_i16] = ACTIONS(2353), - [anon_sym_u32] = ACTIONS(2353), - [anon_sym_i32] = ACTIONS(2353), - [anon_sym_u64] = ACTIONS(2353), - [anon_sym_i64] = ACTIONS(2353), - [anon_sym_u128] = ACTIONS(2353), - [anon_sym_i128] = ACTIONS(2353), - [anon_sym_isize] = ACTIONS(2353), - [anon_sym_usize] = ACTIONS(2353), - [anon_sym_f32] = ACTIONS(2353), - [anon_sym_f64] = ACTIONS(2353), - [anon_sym_bool] = ACTIONS(2353), - [anon_sym_str] = ACTIONS(2353), - [anon_sym_char] = ACTIONS(2353), - [aux_sym__non_special_token_token1] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2353), - [anon_sym_as] = ACTIONS(2353), - [anon_sym_async] = ACTIONS(2353), - [anon_sym_await] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_const] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym_default] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), - [anon_sym_fn] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_impl] = ACTIONS(2353), - [anon_sym_let] = ACTIONS(2353), - [anon_sym_loop] = ACTIONS(2353), - [anon_sym_match] = ACTIONS(2353), - [anon_sym_mod] = ACTIONS(2353), - [anon_sym_pub] = ACTIONS(2353), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_static] = ACTIONS(2353), - [anon_sym_struct] = ACTIONS(2353), - [anon_sym_trait] = ACTIONS(2353), - [anon_sym_type] = ACTIONS(2353), - [anon_sym_union] = ACTIONS(2353), - [anon_sym_unsafe] = ACTIONS(2353), - [anon_sym_use] = ACTIONS(2353), - [anon_sym_where] = ACTIONS(2353), - [anon_sym_while] = ACTIONS(2353), - [sym_mutable_specifier] = ACTIONS(2353), - [sym_integer_literal] = ACTIONS(2355), - [aux_sym_string_literal_token1] = ACTIONS(2355), - [sym_char_literal] = ACTIONS(2355), - [anon_sym_true] = ACTIONS(2353), - [anon_sym_false] = ACTIONS(2353), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2353), - [sym_super] = ACTIONS(2353), - [sym_crate] = ACTIONS(2353), - [sym_metavariable] = ACTIONS(2355), - [sym_raw_string_literal] = ACTIONS(2355), - [sym_float_literal] = ACTIONS(2355), - [sym_block_comment] = ACTIONS(3), - }, [567] = { - [sym_identifier] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_RPAREN] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_RBRACK] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2357), - [anon_sym_u8] = ACTIONS(2357), - [anon_sym_i8] = ACTIONS(2357), - [anon_sym_u16] = ACTIONS(2357), - [anon_sym_i16] = ACTIONS(2357), - [anon_sym_u32] = ACTIONS(2357), - [anon_sym_i32] = ACTIONS(2357), - [anon_sym_u64] = ACTIONS(2357), - [anon_sym_i64] = ACTIONS(2357), - [anon_sym_u128] = ACTIONS(2357), - [anon_sym_i128] = ACTIONS(2357), - [anon_sym_isize] = ACTIONS(2357), - [anon_sym_usize] = ACTIONS(2357), - [anon_sym_f32] = ACTIONS(2357), - [anon_sym_f64] = ACTIONS(2357), - [anon_sym_bool] = ACTIONS(2357), - [anon_sym_str] = ACTIONS(2357), - [anon_sym_char] = ACTIONS(2357), - [aux_sym__non_special_token_token1] = ACTIONS(2357), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_as] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2357), - [anon_sym_await] = ACTIONS(2357), - [anon_sym_break] = ACTIONS(2357), - [anon_sym_const] = ACTIONS(2357), - [anon_sym_continue] = ACTIONS(2357), - [anon_sym_default] = ACTIONS(2357), - [anon_sym_enum] = ACTIONS(2357), - [anon_sym_fn] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2357), - [anon_sym_if] = ACTIONS(2357), - [anon_sym_impl] = ACTIONS(2357), - [anon_sym_let] = ACTIONS(2357), - [anon_sym_loop] = ACTIONS(2357), - [anon_sym_match] = ACTIONS(2357), - [anon_sym_mod] = ACTIONS(2357), - [anon_sym_pub] = ACTIONS(2357), - [anon_sym_return] = ACTIONS(2357), - [anon_sym_static] = ACTIONS(2357), - [anon_sym_struct] = ACTIONS(2357), - [anon_sym_trait] = ACTIONS(2357), - [anon_sym_type] = ACTIONS(2357), - [anon_sym_union] = ACTIONS(2357), - [anon_sym_unsafe] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2357), - [anon_sym_where] = ACTIONS(2357), - [anon_sym_while] = ACTIONS(2357), - [sym_mutable_specifier] = ACTIONS(2357), - [sym_integer_literal] = ACTIONS(2359), - [aux_sym_string_literal_token1] = ACTIONS(2359), - [sym_char_literal] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2357), - [anon_sym_false] = ACTIONS(2357), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2357), - [sym_super] = ACTIONS(2357), - [sym_crate] = ACTIONS(2357), - [sym_metavariable] = ACTIONS(2359), - [sym_raw_string_literal] = ACTIONS(2359), - [sym_float_literal] = ACTIONS(2359), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN] = ACTIONS(2353), + [anon_sym_RPAREN] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2353), + [anon_sym_RBRACE] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_RBRACK] = ACTIONS(2353), + [anon_sym_DOLLAR] = ACTIONS(2351), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2351), + [anon_sym_SQUOTE] = ACTIONS(2351), + [anon_sym_as] = ACTIONS(2351), + [anon_sym_async] = ACTIONS(2351), + [anon_sym_await] = 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_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_where] = ACTIONS(2351), + [anon_sym_while] = ACTIONS(2351), + [sym_mutable_specifier] = ACTIONS(2351), + [sym_integer_literal] = ACTIONS(2353), + [aux_sym_string_literal_token1] = ACTIONS(2353), + [sym_char_literal] = ACTIONS(2353), + [anon_sym_true] = ACTIONS(2351), + [anon_sym_false] = ACTIONS(2351), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2351), + [sym_super] = ACTIONS(2351), + [sym_crate] = ACTIONS(2351), + [sym_metavariable] = ACTIONS(2353), + [sym_raw_string_literal] = ACTIONS(2353), + [sym_float_literal] = ACTIONS(2353), [sym_block_comment] = ACTIONS(3), }, [568] = { - [sym_identifier] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2363), - [anon_sym_RPAREN] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2363), - [anon_sym_RBRACE] = ACTIONS(2363), - [anon_sym_LBRACK] = ACTIONS(2363), - [anon_sym_RBRACK] = ACTIONS(2363), - [anon_sym_DOLLAR] = ACTIONS(2361), - [anon_sym_u8] = ACTIONS(2361), - [anon_sym_i8] = ACTIONS(2361), - [anon_sym_u16] = ACTIONS(2361), - [anon_sym_i16] = ACTIONS(2361), - [anon_sym_u32] = ACTIONS(2361), - [anon_sym_i32] = ACTIONS(2361), - [anon_sym_u64] = ACTIONS(2361), - [anon_sym_i64] = ACTIONS(2361), - [anon_sym_u128] = ACTIONS(2361), - [anon_sym_i128] = ACTIONS(2361), - [anon_sym_isize] = ACTIONS(2361), - [anon_sym_usize] = ACTIONS(2361), - [anon_sym_f32] = ACTIONS(2361), - [anon_sym_f64] = ACTIONS(2361), - [anon_sym_bool] = ACTIONS(2361), - [anon_sym_str] = ACTIONS(2361), - [anon_sym_char] = ACTIONS(2361), - [aux_sym__non_special_token_token1] = ACTIONS(2361), - [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_as] = ACTIONS(2361), - [anon_sym_async] = ACTIONS(2361), - [anon_sym_await] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_default] = ACTIONS(2361), - [anon_sym_enum] = ACTIONS(2361), - [anon_sym_fn] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_impl] = ACTIONS(2361), - [anon_sym_let] = ACTIONS(2361), - [anon_sym_loop] = ACTIONS(2361), - [anon_sym_match] = ACTIONS(2361), - [anon_sym_mod] = ACTIONS(2361), - [anon_sym_pub] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_static] = ACTIONS(2361), - [anon_sym_struct] = ACTIONS(2361), - [anon_sym_trait] = ACTIONS(2361), - [anon_sym_type] = ACTIONS(2361), - [anon_sym_union] = ACTIONS(2361), - [anon_sym_unsafe] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2361), - [anon_sym_where] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [sym_mutable_specifier] = ACTIONS(2361), - [sym_integer_literal] = ACTIONS(2363), - [aux_sym_string_literal_token1] = ACTIONS(2363), - [sym_char_literal] = ACTIONS(2363), - [anon_sym_true] = ACTIONS(2361), - [anon_sym_false] = ACTIONS(2361), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2361), - [sym_super] = ACTIONS(2361), - [sym_crate] = ACTIONS(2361), - [sym_metavariable] = ACTIONS(2363), - [sym_raw_string_literal] = ACTIONS(2363), - [sym_float_literal] = ACTIONS(2363), + [sym_identifier] = ACTIONS(2355), + [anon_sym_LPAREN] = ACTIONS(2357), + [anon_sym_RPAREN] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_RBRACE] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_RBRACK] = ACTIONS(2357), + [anon_sym_DOLLAR] = ACTIONS(2355), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2355), + [anon_sym_SQUOTE] = ACTIONS(2355), + [anon_sym_as] = ACTIONS(2355), + [anon_sym_async] = ACTIONS(2355), + [anon_sym_await] = 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_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_where] = ACTIONS(2355), + [anon_sym_while] = ACTIONS(2355), + [sym_mutable_specifier] = ACTIONS(2355), + [sym_integer_literal] = ACTIONS(2357), + [aux_sym_string_literal_token1] = ACTIONS(2357), + [sym_char_literal] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(2355), + [anon_sym_false] = ACTIONS(2355), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2355), + [sym_super] = ACTIONS(2355), + [sym_crate] = ACTIONS(2355), + [sym_metavariable] = ACTIONS(2357), + [sym_raw_string_literal] = ACTIONS(2357), + [sym_float_literal] = ACTIONS(2357), [sym_block_comment] = ACTIONS(3), }, [569] = { - [sym_identifier] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_RPAREN] = ACTIONS(2367), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_LBRACK] = ACTIONS(2367), - [anon_sym_RBRACK] = ACTIONS(2367), - [anon_sym_DOLLAR] = ACTIONS(2365), - [anon_sym_u8] = ACTIONS(2365), - [anon_sym_i8] = ACTIONS(2365), - [anon_sym_u16] = ACTIONS(2365), - [anon_sym_i16] = ACTIONS(2365), - [anon_sym_u32] = ACTIONS(2365), - [anon_sym_i32] = ACTIONS(2365), - [anon_sym_u64] = ACTIONS(2365), - [anon_sym_i64] = ACTIONS(2365), - [anon_sym_u128] = ACTIONS(2365), - [anon_sym_i128] = ACTIONS(2365), - [anon_sym_isize] = ACTIONS(2365), - [anon_sym_usize] = ACTIONS(2365), - [anon_sym_f32] = ACTIONS(2365), - [anon_sym_f64] = ACTIONS(2365), - [anon_sym_bool] = ACTIONS(2365), - [anon_sym_str] = ACTIONS(2365), - [anon_sym_char] = ACTIONS(2365), - [aux_sym__non_special_token_token1] = ACTIONS(2365), - [anon_sym_SQUOTE] = ACTIONS(2365), - [anon_sym_as] = ACTIONS(2365), - [anon_sym_async] = ACTIONS(2365), - [anon_sym_await] = ACTIONS(2365), - [anon_sym_break] = ACTIONS(2365), - [anon_sym_const] = ACTIONS(2365), - [anon_sym_continue] = ACTIONS(2365), - [anon_sym_default] = ACTIONS(2365), - [anon_sym_enum] = ACTIONS(2365), - [anon_sym_fn] = ACTIONS(2365), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_impl] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_loop] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_mod] = ACTIONS(2365), - [anon_sym_pub] = ACTIONS(2365), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_static] = ACTIONS(2365), - [anon_sym_struct] = ACTIONS(2365), - [anon_sym_trait] = ACTIONS(2365), - [anon_sym_type] = ACTIONS(2365), - [anon_sym_union] = ACTIONS(2365), - [anon_sym_unsafe] = ACTIONS(2365), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_where] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [sym_mutable_specifier] = ACTIONS(2365), - [sym_integer_literal] = ACTIONS(2367), - [aux_sym_string_literal_token1] = ACTIONS(2367), - [sym_char_literal] = ACTIONS(2367), - [anon_sym_true] = ACTIONS(2365), - [anon_sym_false] = ACTIONS(2365), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2365), - [sym_super] = ACTIONS(2365), - [sym_crate] = ACTIONS(2365), - [sym_metavariable] = ACTIONS(2367), - [sym_raw_string_literal] = ACTIONS(2367), - [sym_float_literal] = ACTIONS(2367), + [sym_identifier] = ACTIONS(2359), + [anon_sym_LPAREN] = ACTIONS(2361), + [anon_sym_RPAREN] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_RBRACK] = ACTIONS(2361), + [anon_sym_DOLLAR] = ACTIONS(2359), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2359), + [anon_sym_SQUOTE] = ACTIONS(2359), + [anon_sym_as] = ACTIONS(2359), + [anon_sym_async] = ACTIONS(2359), + [anon_sym_await] = 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_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_where] = ACTIONS(2359), + [anon_sym_while] = ACTIONS(2359), + [sym_mutable_specifier] = ACTIONS(2359), + [sym_integer_literal] = ACTIONS(2361), + [aux_sym_string_literal_token1] = ACTIONS(2361), + [sym_char_literal] = ACTIONS(2361), + [anon_sym_true] = ACTIONS(2359), + [anon_sym_false] = ACTIONS(2359), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2359), + [sym_super] = ACTIONS(2359), + [sym_crate] = ACTIONS(2359), + [sym_metavariable] = ACTIONS(2361), + [sym_raw_string_literal] = ACTIONS(2361), + [sym_float_literal] = ACTIONS(2361), [sym_block_comment] = ACTIONS(3), }, [570] = { - [sym_identifier] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_RPAREN] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(2369), - [anon_sym_u8] = ACTIONS(2369), - [anon_sym_i8] = ACTIONS(2369), - [anon_sym_u16] = ACTIONS(2369), - [anon_sym_i16] = ACTIONS(2369), - [anon_sym_u32] = ACTIONS(2369), - [anon_sym_i32] = ACTIONS(2369), - [anon_sym_u64] = ACTIONS(2369), - [anon_sym_i64] = ACTIONS(2369), - [anon_sym_u128] = ACTIONS(2369), - [anon_sym_i128] = ACTIONS(2369), - [anon_sym_isize] = ACTIONS(2369), - [anon_sym_usize] = ACTIONS(2369), - [anon_sym_f32] = ACTIONS(2369), - [anon_sym_f64] = ACTIONS(2369), - [anon_sym_bool] = ACTIONS(2369), - [anon_sym_str] = ACTIONS(2369), - [anon_sym_char] = ACTIONS(2369), - [aux_sym__non_special_token_token1] = ACTIONS(2369), - [anon_sym_SQUOTE] = ACTIONS(2369), - [anon_sym_as] = ACTIONS(2369), - [anon_sym_async] = ACTIONS(2369), - [anon_sym_await] = ACTIONS(2369), - [anon_sym_break] = ACTIONS(2369), - [anon_sym_const] = ACTIONS(2369), - [anon_sym_continue] = ACTIONS(2369), - [anon_sym_default] = ACTIONS(2369), - [anon_sym_enum] = ACTIONS(2369), - [anon_sym_fn] = ACTIONS(2369), - [anon_sym_for] = ACTIONS(2369), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_impl] = ACTIONS(2369), - [anon_sym_let] = ACTIONS(2369), - [anon_sym_loop] = ACTIONS(2369), - [anon_sym_match] = ACTIONS(2369), - [anon_sym_mod] = ACTIONS(2369), - [anon_sym_pub] = ACTIONS(2369), - [anon_sym_return] = ACTIONS(2369), - [anon_sym_static] = ACTIONS(2369), - [anon_sym_struct] = ACTIONS(2369), - [anon_sym_trait] = ACTIONS(2369), - [anon_sym_type] = ACTIONS(2369), - [anon_sym_union] = ACTIONS(2369), - [anon_sym_unsafe] = ACTIONS(2369), - [anon_sym_use] = ACTIONS(2369), - [anon_sym_where] = ACTIONS(2369), - [anon_sym_while] = ACTIONS(2369), - [sym_mutable_specifier] = ACTIONS(2369), - [sym_integer_literal] = ACTIONS(2371), - [aux_sym_string_literal_token1] = ACTIONS(2371), - [sym_char_literal] = ACTIONS(2371), - [anon_sym_true] = ACTIONS(2369), - [anon_sym_false] = ACTIONS(2369), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2369), - [sym_super] = ACTIONS(2369), - [sym_crate] = ACTIONS(2369), - [sym_metavariable] = ACTIONS(2371), - [sym_raw_string_literal] = ACTIONS(2371), - [sym_float_literal] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2365), + [anon_sym_RPAREN] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2365), + [anon_sym_RBRACE] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(2365), + [anon_sym_RBRACK] = ACTIONS(2365), + [anon_sym_DOLLAR] = ACTIONS(2363), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2363), + [anon_sym_SQUOTE] = ACTIONS(2363), + [anon_sym_as] = ACTIONS(2363), + [anon_sym_async] = ACTIONS(2363), + [anon_sym_await] = 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_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_where] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [sym_mutable_specifier] = ACTIONS(2363), + [sym_integer_literal] = ACTIONS(2365), + [aux_sym_string_literal_token1] = ACTIONS(2365), + [sym_char_literal] = ACTIONS(2365), + [anon_sym_true] = ACTIONS(2363), + [anon_sym_false] = ACTIONS(2363), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2363), + [sym_super] = ACTIONS(2363), + [sym_crate] = ACTIONS(2363), + [sym_metavariable] = ACTIONS(2365), + [sym_raw_string_literal] = ACTIONS(2365), + [sym_float_literal] = ACTIONS(2365), [sym_block_comment] = ACTIONS(3), }, [571] = { - [sym_identifier] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2375), - [anon_sym_RPAREN] = ACTIONS(2375), - [anon_sym_LBRACE] = ACTIONS(2375), - [anon_sym_RBRACE] = ACTIONS(2375), - [anon_sym_LBRACK] = ACTIONS(2375), - [anon_sym_RBRACK] = ACTIONS(2375), - [anon_sym_DOLLAR] = ACTIONS(2373), - [anon_sym_u8] = ACTIONS(2373), - [anon_sym_i8] = ACTIONS(2373), - [anon_sym_u16] = ACTIONS(2373), - [anon_sym_i16] = ACTIONS(2373), - [anon_sym_u32] = ACTIONS(2373), - [anon_sym_i32] = ACTIONS(2373), - [anon_sym_u64] = ACTIONS(2373), - [anon_sym_i64] = ACTIONS(2373), - [anon_sym_u128] = ACTIONS(2373), - [anon_sym_i128] = ACTIONS(2373), - [anon_sym_isize] = ACTIONS(2373), - [anon_sym_usize] = ACTIONS(2373), - [anon_sym_f32] = ACTIONS(2373), - [anon_sym_f64] = ACTIONS(2373), - [anon_sym_bool] = ACTIONS(2373), - [anon_sym_str] = ACTIONS(2373), - [anon_sym_char] = ACTIONS(2373), - [aux_sym__non_special_token_token1] = ACTIONS(2373), - [anon_sym_SQUOTE] = ACTIONS(2373), - [anon_sym_as] = ACTIONS(2373), - [anon_sym_async] = ACTIONS(2373), - [anon_sym_await] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(2373), - [anon_sym_const] = ACTIONS(2373), - [anon_sym_continue] = ACTIONS(2373), - [anon_sym_default] = ACTIONS(2373), - [anon_sym_enum] = ACTIONS(2373), - [anon_sym_fn] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_impl] = ACTIONS(2373), - [anon_sym_let] = ACTIONS(2373), - [anon_sym_loop] = ACTIONS(2373), - [anon_sym_match] = ACTIONS(2373), - [anon_sym_mod] = ACTIONS(2373), - [anon_sym_pub] = ACTIONS(2373), - [anon_sym_return] = ACTIONS(2373), - [anon_sym_static] = ACTIONS(2373), - [anon_sym_struct] = ACTIONS(2373), - [anon_sym_trait] = ACTIONS(2373), - [anon_sym_type] = ACTIONS(2373), - [anon_sym_union] = ACTIONS(2373), - [anon_sym_unsafe] = ACTIONS(2373), - [anon_sym_use] = ACTIONS(2373), - [anon_sym_where] = ACTIONS(2373), - [anon_sym_while] = ACTIONS(2373), - [sym_mutable_specifier] = ACTIONS(2373), - [sym_integer_literal] = ACTIONS(2375), - [aux_sym_string_literal_token1] = ACTIONS(2375), - [sym_char_literal] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(2373), - [anon_sym_false] = ACTIONS(2373), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2373), - [sym_super] = ACTIONS(2373), - [sym_crate] = ACTIONS(2373), - [sym_metavariable] = ACTIONS(2375), - [sym_raw_string_literal] = ACTIONS(2375), - [sym_float_literal] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2367), + [anon_sym_LPAREN] = ACTIONS(2369), + [anon_sym_RPAREN] = ACTIONS(2369), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2369), + [anon_sym_RBRACK] = ACTIONS(2369), + [anon_sym_DOLLAR] = ACTIONS(2367), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2367), + [anon_sym_SQUOTE] = ACTIONS(2367), + [anon_sym_as] = ACTIONS(2367), + [anon_sym_async] = ACTIONS(2367), + [anon_sym_await] = 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_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_where] = ACTIONS(2367), + [anon_sym_while] = ACTIONS(2367), + [sym_mutable_specifier] = ACTIONS(2367), + [sym_integer_literal] = ACTIONS(2369), + [aux_sym_string_literal_token1] = ACTIONS(2369), + [sym_char_literal] = ACTIONS(2369), + [anon_sym_true] = ACTIONS(2367), + [anon_sym_false] = ACTIONS(2367), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2367), + [sym_super] = ACTIONS(2367), + [sym_crate] = ACTIONS(2367), + [sym_metavariable] = ACTIONS(2369), + [sym_raw_string_literal] = ACTIONS(2369), + [sym_float_literal] = ACTIONS(2369), [sym_block_comment] = ACTIONS(3), }, [572] = { - [sym_identifier] = ACTIONS(2377), - [anon_sym_LPAREN] = ACTIONS(2379), - [anon_sym_RPAREN] = ACTIONS(2379), - [anon_sym_LBRACE] = ACTIONS(2379), - [anon_sym_RBRACE] = ACTIONS(2379), - [anon_sym_LBRACK] = ACTIONS(2379), - [anon_sym_RBRACK] = ACTIONS(2379), - [anon_sym_DOLLAR] = ACTIONS(2377), - [anon_sym_u8] = ACTIONS(2377), - [anon_sym_i8] = ACTIONS(2377), - [anon_sym_u16] = ACTIONS(2377), - [anon_sym_i16] = ACTIONS(2377), - [anon_sym_u32] = ACTIONS(2377), - [anon_sym_i32] = ACTIONS(2377), - [anon_sym_u64] = ACTIONS(2377), - [anon_sym_i64] = ACTIONS(2377), - [anon_sym_u128] = ACTIONS(2377), - [anon_sym_i128] = ACTIONS(2377), - [anon_sym_isize] = ACTIONS(2377), - [anon_sym_usize] = ACTIONS(2377), - [anon_sym_f32] = ACTIONS(2377), - [anon_sym_f64] = ACTIONS(2377), - [anon_sym_bool] = ACTIONS(2377), - [anon_sym_str] = ACTIONS(2377), - [anon_sym_char] = ACTIONS(2377), - [aux_sym__non_special_token_token1] = ACTIONS(2377), - [anon_sym_SQUOTE] = ACTIONS(2377), - [anon_sym_as] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2377), - [anon_sym_await] = ACTIONS(2377), - [anon_sym_break] = ACTIONS(2377), - [anon_sym_const] = ACTIONS(2377), - [anon_sym_continue] = ACTIONS(2377), - [anon_sym_default] = ACTIONS(2377), - [anon_sym_enum] = ACTIONS(2377), - [anon_sym_fn] = ACTIONS(2377), - [anon_sym_for] = ACTIONS(2377), - [anon_sym_if] = ACTIONS(2377), - [anon_sym_impl] = ACTIONS(2377), - [anon_sym_let] = ACTIONS(2377), - [anon_sym_loop] = ACTIONS(2377), - [anon_sym_match] = ACTIONS(2377), - [anon_sym_mod] = ACTIONS(2377), - [anon_sym_pub] = ACTIONS(2377), - [anon_sym_return] = ACTIONS(2377), - [anon_sym_static] = ACTIONS(2377), - [anon_sym_struct] = ACTIONS(2377), - [anon_sym_trait] = ACTIONS(2377), - [anon_sym_type] = ACTIONS(2377), - [anon_sym_union] = ACTIONS(2377), - [anon_sym_unsafe] = ACTIONS(2377), - [anon_sym_use] = ACTIONS(2377), - [anon_sym_where] = ACTIONS(2377), - [anon_sym_while] = ACTIONS(2377), - [sym_mutable_specifier] = ACTIONS(2377), - [sym_integer_literal] = ACTIONS(2379), - [aux_sym_string_literal_token1] = ACTIONS(2379), - [sym_char_literal] = ACTIONS(2379), - [anon_sym_true] = ACTIONS(2377), - [anon_sym_false] = ACTIONS(2377), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2377), - [sym_super] = ACTIONS(2377), - [sym_crate] = ACTIONS(2377), - [sym_metavariable] = ACTIONS(2379), - [sym_raw_string_literal] = ACTIONS(2379), - [sym_float_literal] = ACTIONS(2379), + [sym_identifier] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_RPAREN] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_RBRACK] = ACTIONS(2373), + [anon_sym_DOLLAR] = ACTIONS(2371), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2371), + [anon_sym_as] = ACTIONS(2371), + [anon_sym_async] = ACTIONS(2371), + [anon_sym_await] = 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_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_where] = ACTIONS(2371), + [anon_sym_while] = ACTIONS(2371), + [sym_mutable_specifier] = ACTIONS(2371), + [sym_integer_literal] = ACTIONS(2373), + [aux_sym_string_literal_token1] = ACTIONS(2373), + [sym_char_literal] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2371), + [anon_sym_false] = ACTIONS(2371), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2371), + [sym_super] = ACTIONS(2371), + [sym_crate] = ACTIONS(2371), + [sym_metavariable] = ACTIONS(2373), + [sym_raw_string_literal] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), [sym_block_comment] = ACTIONS(3), }, [573] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1788), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), + [sym_identifier] = ACTIONS(2375), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_RPAREN] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2377), + [anon_sym_RBRACE] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_RBRACK] = ACTIONS(2377), + [anon_sym_DOLLAR] = ACTIONS(2375), + [anon_sym_u8] = ACTIONS(2375), + [anon_sym_i8] = ACTIONS(2375), + [anon_sym_u16] = ACTIONS(2375), + [anon_sym_i16] = ACTIONS(2375), + [anon_sym_u32] = ACTIONS(2375), + [anon_sym_i32] = ACTIONS(2375), + [anon_sym_u64] = ACTIONS(2375), + [anon_sym_i64] = ACTIONS(2375), + [anon_sym_u128] = ACTIONS(2375), + [anon_sym_i128] = ACTIONS(2375), + [anon_sym_isize] = ACTIONS(2375), + [anon_sym_usize] = ACTIONS(2375), + [anon_sym_f32] = ACTIONS(2375), + [anon_sym_f64] = ACTIONS(2375), + [anon_sym_bool] = ACTIONS(2375), + [anon_sym_str] = ACTIONS(2375), + [anon_sym_char] = ACTIONS(2375), + [aux_sym__non_special_token_token1] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_as] = ACTIONS(2375), + [anon_sym_async] = ACTIONS(2375), + [anon_sym_await] = ACTIONS(2375), + [anon_sym_break] = ACTIONS(2375), + [anon_sym_const] = ACTIONS(2375), + [anon_sym_continue] = ACTIONS(2375), + [anon_sym_default] = ACTIONS(2375), + [anon_sym_enum] = ACTIONS(2375), + [anon_sym_fn] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2375), + [anon_sym_if] = ACTIONS(2375), + [anon_sym_impl] = ACTIONS(2375), + [anon_sym_let] = ACTIONS(2375), + [anon_sym_loop] = ACTIONS(2375), + [anon_sym_match] = ACTIONS(2375), + [anon_sym_mod] = ACTIONS(2375), + [anon_sym_pub] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2375), + [anon_sym_static] = ACTIONS(2375), + [anon_sym_struct] = ACTIONS(2375), + [anon_sym_trait] = ACTIONS(2375), + [anon_sym_type] = ACTIONS(2375), + [anon_sym_union] = ACTIONS(2375), + [anon_sym_unsafe] = ACTIONS(2375), + [anon_sym_use] = ACTIONS(2375), + [anon_sym_where] = ACTIONS(2375), + [anon_sym_while] = ACTIONS(2375), + [sym_mutable_specifier] = ACTIONS(2375), + [sym_integer_literal] = ACTIONS(2377), + [aux_sym_string_literal_token1] = ACTIONS(2377), + [sym_char_literal] = ACTIONS(2377), + [anon_sym_true] = ACTIONS(2375), + [anon_sym_false] = ACTIONS(2375), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2375), + [sym_super] = ACTIONS(2375), + [sym_crate] = ACTIONS(2375), + [sym_metavariable] = ACTIONS(2377), + [sym_raw_string_literal] = ACTIONS(2377), + [sym_float_literal] = ACTIONS(2377), + [sym_block_comment] = ACTIONS(3), + }, + [574] = { + [sym_identifier] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2381), [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_RBRACE] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_RBRACK] = ACTIONS(2381), + [anon_sym_DOLLAR] = ACTIONS(2379), + [anon_sym_u8] = ACTIONS(2379), + [anon_sym_i8] = ACTIONS(2379), + [anon_sym_u16] = ACTIONS(2379), + [anon_sym_i16] = ACTIONS(2379), + [anon_sym_u32] = ACTIONS(2379), + [anon_sym_i32] = ACTIONS(2379), + [anon_sym_u64] = ACTIONS(2379), + [anon_sym_i64] = ACTIONS(2379), + [anon_sym_u128] = ACTIONS(2379), + [anon_sym_i128] = ACTIONS(2379), + [anon_sym_isize] = ACTIONS(2379), + [anon_sym_usize] = ACTIONS(2379), + [anon_sym_f32] = ACTIONS(2379), + [anon_sym_f64] = ACTIONS(2379), + [anon_sym_bool] = ACTIONS(2379), + [anon_sym_str] = ACTIONS(2379), + [anon_sym_char] = ACTIONS(2379), + [aux_sym__non_special_token_token1] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_as] = ACTIONS(2379), + [anon_sym_async] = ACTIONS(2379), + [anon_sym_await] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(2379), + [anon_sym_enum] = ACTIONS(2379), + [anon_sym_fn] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_impl] = ACTIONS(2379), + [anon_sym_let] = ACTIONS(2379), + [anon_sym_loop] = ACTIONS(2379), + [anon_sym_match] = ACTIONS(2379), + [anon_sym_mod] = ACTIONS(2379), + [anon_sym_pub] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_static] = ACTIONS(2379), + [anon_sym_struct] = ACTIONS(2379), + [anon_sym_trait] = ACTIONS(2379), + [anon_sym_type] = ACTIONS(2379), + [anon_sym_union] = ACTIONS(2379), + [anon_sym_unsafe] = ACTIONS(2379), + [anon_sym_use] = ACTIONS(2379), + [anon_sym_where] = ACTIONS(2379), + [anon_sym_while] = ACTIONS(2379), + [sym_mutable_specifier] = ACTIONS(2379), + [sym_integer_literal] = ACTIONS(2381), + [aux_sym_string_literal_token1] = ACTIONS(2381), + [sym_char_literal] = ACTIONS(2381), + [anon_sym_true] = ACTIONS(2379), + [anon_sym_false] = ACTIONS(2379), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2379), + [sym_super] = ACTIONS(2379), + [sym_crate] = ACTIONS(2379), + [sym_metavariable] = ACTIONS(2381), + [sym_raw_string_literal] = ACTIONS(2381), + [sym_float_literal] = ACTIONS(2381), + [sym_block_comment] = ACTIONS(3), + }, + [575] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1794), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(2383), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -66892,137 +67133,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [574] = { - [sym_identifier] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_RPAREN] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2385), - [anon_sym_RBRACE] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(2385), + [576] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1794), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), [anon_sym_RBRACK] = ACTIONS(2385), - [anon_sym_DOLLAR] = ACTIONS(2383), - [anon_sym_u8] = ACTIONS(2383), - [anon_sym_i8] = ACTIONS(2383), - [anon_sym_u16] = ACTIONS(2383), - [anon_sym_i16] = ACTIONS(2383), - [anon_sym_u32] = ACTIONS(2383), - [anon_sym_i32] = ACTIONS(2383), - [anon_sym_u64] = ACTIONS(2383), - [anon_sym_i64] = ACTIONS(2383), - [anon_sym_u128] = ACTIONS(2383), - [anon_sym_i128] = ACTIONS(2383), - [anon_sym_isize] = ACTIONS(2383), - [anon_sym_usize] = ACTIONS(2383), - [anon_sym_f32] = ACTIONS(2383), - [anon_sym_f64] = ACTIONS(2383), - [anon_sym_bool] = ACTIONS(2383), - [anon_sym_str] = ACTIONS(2383), - [anon_sym_char] = ACTIONS(2383), - [aux_sym__non_special_token_token1] = ACTIONS(2383), - [anon_sym_SQUOTE] = ACTIONS(2383), - [anon_sym_as] = ACTIONS(2383), - [anon_sym_async] = ACTIONS(2383), - [anon_sym_await] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_const] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_default] = ACTIONS(2383), - [anon_sym_enum] = ACTIONS(2383), - [anon_sym_fn] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_impl] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), - [anon_sym_loop] = ACTIONS(2383), - [anon_sym_match] = ACTIONS(2383), - [anon_sym_mod] = ACTIONS(2383), - [anon_sym_pub] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_static] = ACTIONS(2383), - [anon_sym_struct] = ACTIONS(2383), - [anon_sym_trait] = ACTIONS(2383), - [anon_sym_type] = ACTIONS(2383), - [anon_sym_union] = ACTIONS(2383), - [anon_sym_unsafe] = ACTIONS(2383), - [anon_sym_use] = ACTIONS(2383), - [anon_sym_where] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [sym_mutable_specifier] = ACTIONS(2383), - [sym_integer_literal] = ACTIONS(2385), - [aux_sym_string_literal_token1] = ACTIONS(2385), - [sym_char_literal] = ACTIONS(2385), - [anon_sym_true] = ACTIONS(2383), - [anon_sym_false] = ACTIONS(2383), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2383), - [sym_super] = ACTIONS(2383), - [sym_crate] = ACTIONS(2383), - [sym_metavariable] = ACTIONS(2385), - [sym_raw_string_literal] = ACTIONS(2385), - [sym_float_literal] = ACTIONS(2385), - [sym_block_comment] = ACTIONS(3), - }, - [575] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1788), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_RBRACK] = ACTIONS(2387), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -67032,67 +67203,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [576] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1788), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_RPAREN] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [577] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1794), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(2387), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -67102,155 +67273,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [577] = { - [sym_identifier] = ACTIONS(2391), - [anon_sym_LPAREN] = ACTIONS(2393), - [anon_sym_RPAREN] = ACTIONS(2393), - [anon_sym_LBRACE] = ACTIONS(2393), - [anon_sym_RBRACE] = ACTIONS(2393), - [anon_sym_LBRACK] = ACTIONS(2393), - [anon_sym_RBRACK] = ACTIONS(2393), - [anon_sym_DOLLAR] = ACTIONS(2391), - [anon_sym_u8] = ACTIONS(2391), - [anon_sym_i8] = ACTIONS(2391), - [anon_sym_u16] = ACTIONS(2391), - [anon_sym_i16] = ACTIONS(2391), - [anon_sym_u32] = ACTIONS(2391), - [anon_sym_i32] = ACTIONS(2391), - [anon_sym_u64] = ACTIONS(2391), - [anon_sym_i64] = ACTIONS(2391), - [anon_sym_u128] = ACTIONS(2391), - [anon_sym_i128] = ACTIONS(2391), - [anon_sym_isize] = ACTIONS(2391), - [anon_sym_usize] = ACTIONS(2391), - [anon_sym_f32] = ACTIONS(2391), - [anon_sym_f64] = ACTIONS(2391), - [anon_sym_bool] = ACTIONS(2391), - [anon_sym_str] = ACTIONS(2391), - [anon_sym_char] = ACTIONS(2391), - [aux_sym__non_special_token_token1] = ACTIONS(2391), - [anon_sym_SQUOTE] = ACTIONS(2391), - [anon_sym_as] = ACTIONS(2391), - [anon_sym_async] = ACTIONS(2391), - [anon_sym_await] = ACTIONS(2391), - [anon_sym_break] = ACTIONS(2391), - [anon_sym_const] = ACTIONS(2391), - [anon_sym_continue] = ACTIONS(2391), - [anon_sym_default] = ACTIONS(2391), - [anon_sym_enum] = ACTIONS(2391), - [anon_sym_fn] = ACTIONS(2391), - [anon_sym_for] = ACTIONS(2391), - [anon_sym_if] = ACTIONS(2391), - [anon_sym_impl] = ACTIONS(2391), - [anon_sym_let] = ACTIONS(2391), - [anon_sym_loop] = ACTIONS(2391), - [anon_sym_match] = ACTIONS(2391), - [anon_sym_mod] = ACTIONS(2391), - [anon_sym_pub] = ACTIONS(2391), - [anon_sym_return] = ACTIONS(2391), - [anon_sym_static] = ACTIONS(2391), - [anon_sym_struct] = ACTIONS(2391), - [anon_sym_trait] = ACTIONS(2391), - [anon_sym_type] = ACTIONS(2391), - [anon_sym_union] = ACTIONS(2391), - [anon_sym_unsafe] = ACTIONS(2391), - [anon_sym_use] = ACTIONS(2391), - [anon_sym_where] = ACTIONS(2391), - [anon_sym_while] = ACTIONS(2391), - [sym_mutable_specifier] = ACTIONS(2391), - [sym_integer_literal] = ACTIONS(2393), - [aux_sym_string_literal_token1] = ACTIONS(2393), - [sym_char_literal] = ACTIONS(2393), - [anon_sym_true] = ACTIONS(2391), - [anon_sym_false] = ACTIONS(2391), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2391), - [sym_super] = ACTIONS(2391), - [sym_crate] = ACTIONS(2391), - [sym_metavariable] = ACTIONS(2393), - [sym_raw_string_literal] = ACTIONS(2393), - [sym_float_literal] = ACTIONS(2393), + [578] = { + [sym_identifier] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_RPAREN] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(2391), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym_LBRACK] = ACTIONS(2391), + [anon_sym_RBRACK] = ACTIONS(2391), + [anon_sym_DOLLAR] = ACTIONS(2389), + [anon_sym_u8] = ACTIONS(2389), + [anon_sym_i8] = ACTIONS(2389), + [anon_sym_u16] = ACTIONS(2389), + [anon_sym_i16] = ACTIONS(2389), + [anon_sym_u32] = ACTIONS(2389), + [anon_sym_i32] = ACTIONS(2389), + [anon_sym_u64] = ACTIONS(2389), + [anon_sym_i64] = ACTIONS(2389), + [anon_sym_u128] = ACTIONS(2389), + [anon_sym_i128] = ACTIONS(2389), + [anon_sym_isize] = ACTIONS(2389), + [anon_sym_usize] = ACTIONS(2389), + [anon_sym_f32] = ACTIONS(2389), + [anon_sym_f64] = ACTIONS(2389), + [anon_sym_bool] = ACTIONS(2389), + [anon_sym_str] = ACTIONS(2389), + [anon_sym_char] = ACTIONS(2389), + [aux_sym__non_special_token_token1] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(2389), + [anon_sym_as] = ACTIONS(2389), + [anon_sym_async] = ACTIONS(2389), + [anon_sym_await] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_default] = ACTIONS(2389), + [anon_sym_enum] = ACTIONS(2389), + [anon_sym_fn] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_impl] = ACTIONS(2389), + [anon_sym_let] = ACTIONS(2389), + [anon_sym_loop] = ACTIONS(2389), + [anon_sym_match] = ACTIONS(2389), + [anon_sym_mod] = ACTIONS(2389), + [anon_sym_pub] = ACTIONS(2389), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_static] = ACTIONS(2389), + [anon_sym_struct] = ACTIONS(2389), + [anon_sym_trait] = ACTIONS(2389), + [anon_sym_type] = ACTIONS(2389), + [anon_sym_union] = ACTIONS(2389), + [anon_sym_unsafe] = ACTIONS(2389), + [anon_sym_use] = ACTIONS(2389), + [anon_sym_where] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [sym_mutable_specifier] = ACTIONS(2389), + [sym_integer_literal] = ACTIONS(2391), + [aux_sym_string_literal_token1] = ACTIONS(2391), + [sym_char_literal] = ACTIONS(2391), + [anon_sym_true] = ACTIONS(2389), + [anon_sym_false] = ACTIONS(2389), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2389), + [sym_super] = ACTIONS(2389), + [sym_crate] = ACTIONS(2389), + [sym_metavariable] = ACTIONS(2391), + [sym_raw_string_literal] = ACTIONS(2391), + [sym_float_literal] = ACTIONS(2391), [sym_block_comment] = ACTIONS(3), }, - [578] = { - [sym_identifier] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2397), - [anon_sym_RPAREN] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2397), - [anon_sym_RBRACE] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(2397), + [579] = { + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_RPAREN] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_RBRACK] = ACTIONS(2395), + [anon_sym_DOLLAR] = ACTIONS(2393), + [anon_sym_u8] = ACTIONS(2393), + [anon_sym_i8] = ACTIONS(2393), + [anon_sym_u16] = ACTIONS(2393), + [anon_sym_i16] = ACTIONS(2393), + [anon_sym_u32] = ACTIONS(2393), + [anon_sym_i32] = ACTIONS(2393), + [anon_sym_u64] = ACTIONS(2393), + [anon_sym_i64] = ACTIONS(2393), + [anon_sym_u128] = ACTIONS(2393), + [anon_sym_i128] = ACTIONS(2393), + [anon_sym_isize] = ACTIONS(2393), + [anon_sym_usize] = ACTIONS(2393), + [anon_sym_f32] = ACTIONS(2393), + [anon_sym_f64] = ACTIONS(2393), + [anon_sym_bool] = ACTIONS(2393), + [anon_sym_str] = ACTIONS(2393), + [anon_sym_char] = ACTIONS(2393), + [aux_sym__non_special_token_token1] = ACTIONS(2393), + [anon_sym_SQUOTE] = ACTIONS(2393), + [anon_sym_as] = ACTIONS(2393), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_await] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_default] = ACTIONS(2393), + [anon_sym_enum] = ACTIONS(2393), + [anon_sym_fn] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_impl] = ACTIONS(2393), + [anon_sym_let] = ACTIONS(2393), + [anon_sym_loop] = ACTIONS(2393), + [anon_sym_match] = ACTIONS(2393), + [anon_sym_mod] = ACTIONS(2393), + [anon_sym_pub] = ACTIONS(2393), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_static] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(2393), + [anon_sym_trait] = ACTIONS(2393), + [anon_sym_type] = ACTIONS(2393), + [anon_sym_union] = ACTIONS(2393), + [anon_sym_unsafe] = ACTIONS(2393), + [anon_sym_use] = ACTIONS(2393), + [anon_sym_where] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [sym_mutable_specifier] = ACTIONS(2393), + [sym_integer_literal] = ACTIONS(2395), + [aux_sym_string_literal_token1] = ACTIONS(2395), + [sym_char_literal] = ACTIONS(2395), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2393), + [sym_super] = ACTIONS(2393), + [sym_crate] = ACTIONS(2393), + [sym_metavariable] = ACTIONS(2395), + [sym_raw_string_literal] = ACTIONS(2395), + [sym_float_literal] = ACTIONS(2395), + [sym_block_comment] = ACTIONS(3), + }, + [580] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1794), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), [anon_sym_RBRACK] = ACTIONS(2397), - [anon_sym_DOLLAR] = ACTIONS(2395), - [anon_sym_u8] = ACTIONS(2395), - [anon_sym_i8] = ACTIONS(2395), - [anon_sym_u16] = ACTIONS(2395), - [anon_sym_i16] = ACTIONS(2395), - [anon_sym_u32] = ACTIONS(2395), - [anon_sym_i32] = ACTIONS(2395), - [anon_sym_u64] = ACTIONS(2395), - [anon_sym_i64] = ACTIONS(2395), - [anon_sym_u128] = ACTIONS(2395), - [anon_sym_i128] = ACTIONS(2395), - [anon_sym_isize] = ACTIONS(2395), - [anon_sym_usize] = ACTIONS(2395), - [anon_sym_f32] = ACTIONS(2395), - [anon_sym_f64] = ACTIONS(2395), - [anon_sym_bool] = ACTIONS(2395), - [anon_sym_str] = ACTIONS(2395), - [anon_sym_char] = ACTIONS(2395), - [aux_sym__non_special_token_token1] = ACTIONS(2395), - [anon_sym_SQUOTE] = ACTIONS(2395), - [anon_sym_as] = ACTIONS(2395), - [anon_sym_async] = ACTIONS(2395), - [anon_sym_await] = ACTIONS(2395), - [anon_sym_break] = ACTIONS(2395), - [anon_sym_const] = ACTIONS(2395), - [anon_sym_continue] = ACTIONS(2395), - [anon_sym_default] = ACTIONS(2395), - [anon_sym_enum] = ACTIONS(2395), - [anon_sym_fn] = ACTIONS(2395), - [anon_sym_for] = ACTIONS(2395), - [anon_sym_if] = ACTIONS(2395), - [anon_sym_impl] = ACTIONS(2395), - [anon_sym_let] = ACTIONS(2395), - [anon_sym_loop] = ACTIONS(2395), - [anon_sym_match] = ACTIONS(2395), - [anon_sym_mod] = ACTIONS(2395), - [anon_sym_pub] = ACTIONS(2395), - [anon_sym_return] = ACTIONS(2395), - [anon_sym_static] = ACTIONS(2395), - [anon_sym_struct] = ACTIONS(2395), - [anon_sym_trait] = ACTIONS(2395), - [anon_sym_type] = ACTIONS(2395), - [anon_sym_union] = ACTIONS(2395), - [anon_sym_unsafe] = ACTIONS(2395), - [anon_sym_use] = ACTIONS(2395), - [anon_sym_where] = ACTIONS(2395), - [anon_sym_while] = ACTIONS(2395), - [sym_mutable_specifier] = ACTIONS(2395), - [sym_integer_literal] = ACTIONS(2397), - [aux_sym_string_literal_token1] = ACTIONS(2397), - [sym_char_literal] = ACTIONS(2397), - [anon_sym_true] = ACTIONS(2395), - [anon_sym_false] = ACTIONS(2395), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2395), - [sym_super] = ACTIONS(2395), - [sym_crate] = ACTIONS(2395), - [sym_metavariable] = ACTIONS(2397), - [sym_raw_string_literal] = ACTIONS(2397), - [sym_float_literal] = ACTIONS(2397), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1534), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [579] = { + [581] = { [sym_identifier] = ACTIONS(2399), [anon_sym_LPAREN] = ACTIONS(2401), [anon_sym_RPAREN] = ACTIONS(2401), @@ -67311,7 +67552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2401), [anon_sym_true] = ACTIONS(2399), [anon_sym_false] = ACTIONS(2399), - [sym_line_comment] = ACTIONS(1069), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2399), [sym_super] = ACTIONS(2399), [sym_crate] = ACTIONS(2399), @@ -67320,7 +67561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2401), [sym_block_comment] = ACTIONS(3), }, - [580] = { + [582] = { [sym_identifier] = ACTIONS(2403), [anon_sym_LPAREN] = ACTIONS(2405), [anon_sym_RPAREN] = ACTIONS(2405), @@ -67381,7 +67622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2405), [anon_sym_true] = ACTIONS(2403), [anon_sym_false] = ACTIONS(2403), - [sym_line_comment] = ACTIONS(1069), + [sym_line_comment] = ACTIONS(986), [sym_self] = ACTIONS(2403), [sym_super] = ACTIONS(2403), [sym_crate] = ACTIONS(2403), @@ -67390,7 +67631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2405), [sym_block_comment] = ACTIONS(3), }, - [581] = { + [583] = { [sym_identifier] = ACTIONS(2407), [anon_sym_LPAREN] = ACTIONS(2409), [anon_sym_RPAREN] = ACTIONS(2409), @@ -67451,555 +67692,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2409), [anon_sym_true] = ACTIONS(2407), [anon_sym_false] = ACTIONS(2407), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2407), - [sym_super] = ACTIONS(2407), - [sym_crate] = ACTIONS(2407), - [sym_metavariable] = ACTIONS(2409), - [sym_raw_string_literal] = ACTIONS(2409), - [sym_float_literal] = ACTIONS(2409), - [sym_block_comment] = ACTIONS(3), - }, - [582] = { - [sym_identifier] = ACTIONS(2411), - [anon_sym_LPAREN] = ACTIONS(2413), - [anon_sym_RPAREN] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2413), - [anon_sym_RBRACE] = ACTIONS(2413), - [anon_sym_LBRACK] = ACTIONS(2413), - [anon_sym_RBRACK] = ACTIONS(2413), - [anon_sym_DOLLAR] = ACTIONS(2411), - [anon_sym_u8] = ACTIONS(2411), - [anon_sym_i8] = ACTIONS(2411), - [anon_sym_u16] = ACTIONS(2411), - [anon_sym_i16] = ACTIONS(2411), - [anon_sym_u32] = ACTIONS(2411), - [anon_sym_i32] = ACTIONS(2411), - [anon_sym_u64] = ACTIONS(2411), - [anon_sym_i64] = ACTIONS(2411), - [anon_sym_u128] = ACTIONS(2411), - [anon_sym_i128] = ACTIONS(2411), - [anon_sym_isize] = ACTIONS(2411), - [anon_sym_usize] = ACTIONS(2411), - [anon_sym_f32] = ACTIONS(2411), - [anon_sym_f64] = ACTIONS(2411), - [anon_sym_bool] = ACTIONS(2411), - [anon_sym_str] = ACTIONS(2411), - [anon_sym_char] = ACTIONS(2411), - [aux_sym__non_special_token_token1] = ACTIONS(2411), - [anon_sym_SQUOTE] = ACTIONS(2411), - [anon_sym_as] = ACTIONS(2411), - [anon_sym_async] = ACTIONS(2411), - [anon_sym_await] = ACTIONS(2411), - [anon_sym_break] = ACTIONS(2411), - [anon_sym_const] = ACTIONS(2411), - [anon_sym_continue] = ACTIONS(2411), - [anon_sym_default] = ACTIONS(2411), - [anon_sym_enum] = ACTIONS(2411), - [anon_sym_fn] = ACTIONS(2411), - [anon_sym_for] = ACTIONS(2411), - [anon_sym_if] = ACTIONS(2411), - [anon_sym_impl] = ACTIONS(2411), - [anon_sym_let] = ACTIONS(2411), - [anon_sym_loop] = ACTIONS(2411), - [anon_sym_match] = ACTIONS(2411), - [anon_sym_mod] = ACTIONS(2411), - [anon_sym_pub] = ACTIONS(2411), - [anon_sym_return] = ACTIONS(2411), - [anon_sym_static] = ACTIONS(2411), - [anon_sym_struct] = ACTIONS(2411), - [anon_sym_trait] = ACTIONS(2411), - [anon_sym_type] = ACTIONS(2411), - [anon_sym_union] = ACTIONS(2411), - [anon_sym_unsafe] = ACTIONS(2411), - [anon_sym_use] = ACTIONS(2411), - [anon_sym_where] = ACTIONS(2411), - [anon_sym_while] = ACTIONS(2411), - [sym_mutable_specifier] = ACTIONS(2411), - [sym_integer_literal] = ACTIONS(2413), - [aux_sym_string_literal_token1] = ACTIONS(2413), - [sym_char_literal] = ACTIONS(2413), - [anon_sym_true] = ACTIONS(2411), - [anon_sym_false] = ACTIONS(2411), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2411), - [sym_super] = ACTIONS(2411), - [sym_crate] = ACTIONS(2411), - [sym_metavariable] = ACTIONS(2413), - [sym_raw_string_literal] = ACTIONS(2413), - [sym_float_literal] = ACTIONS(2413), - [sym_block_comment] = ACTIONS(3), - }, - [583] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1788), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_RPAREN] = ACTIONS(2415), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [584] = { - [sym_function_modifiers] = STATE(2432), - [sym_const_parameter] = STATE(2116), - [sym_constrained_type_parameter] = STATE(1757), - [sym_optional_type_parameter] = STATE(2116), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1866), - [sym_bracketed_type] = STATE(2367), - [sym_qualified_type] = STATE(2506), - [sym_lifetime] = STATE(1627), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(2417), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2299), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(2419), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(2421), - [sym_block_comment] = ACTIONS(3), - }, - [585] = { - [sym_parameter] = STATE(2284), - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2001), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(2327), - [anon_sym_union] = ACTIONS(2327), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), - [sym_mutable_specifier] = ACTIONS(2329), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2333), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [586] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1439), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [587] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2153), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [588] = { - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(462), - [anon_sym_RPAREN] = ACTIONS(462), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_RBRACE] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(462), - [anon_sym_RBRACK] = ACTIONS(462), - [anon_sym_DOLLAR] = ACTIONS(462), - [anon_sym_u8] = ACTIONS(464), - [anon_sym_i8] = ACTIONS(464), - [anon_sym_u16] = ACTIONS(464), - [anon_sym_i16] = ACTIONS(464), - [anon_sym_u32] = ACTIONS(464), - [anon_sym_i32] = ACTIONS(464), - [anon_sym_u64] = ACTIONS(464), - [anon_sym_i64] = ACTIONS(464), - [anon_sym_u128] = ACTIONS(464), - [anon_sym_i128] = ACTIONS(464), - [anon_sym_isize] = ACTIONS(464), - [anon_sym_usize] = ACTIONS(464), - [anon_sym_f32] = ACTIONS(464), - [anon_sym_f64] = ACTIONS(464), - [anon_sym_bool] = ACTIONS(464), - [anon_sym_str] = ACTIONS(464), - [anon_sym_char] = ACTIONS(464), - [aux_sym__non_special_token_token1] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(464), - [anon_sym_as] = ACTIONS(464), - [anon_sym_async] = ACTIONS(464), - [anon_sym_await] = ACTIONS(464), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(464), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_default] = ACTIONS(464), - [anon_sym_enum] = ACTIONS(464), - [anon_sym_fn] = ACTIONS(464), - [anon_sym_for] = ACTIONS(464), - [anon_sym_if] = ACTIONS(464), - [anon_sym_impl] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_loop] = ACTIONS(464), - [anon_sym_match] = ACTIONS(464), - [anon_sym_mod] = ACTIONS(464), - [anon_sym_pub] = ACTIONS(464), - [anon_sym_return] = ACTIONS(464), - [anon_sym_static] = ACTIONS(464), - [anon_sym_struct] = ACTIONS(464), - [anon_sym_trait] = ACTIONS(464), - [anon_sym_type] = ACTIONS(464), - [anon_sym_union] = ACTIONS(464), - [anon_sym_unsafe] = ACTIONS(464), - [anon_sym_use] = ACTIONS(464), - [anon_sym_where] = ACTIONS(464), - [anon_sym_while] = ACTIONS(464), - [sym_mutable_specifier] = ACTIONS(464), - [sym_integer_literal] = ACTIONS(462), - [aux_sym_string_literal_token1] = ACTIONS(462), - [sym_char_literal] = ACTIONS(462), - [anon_sym_true] = ACTIONS(464), - [anon_sym_false] = ACTIONS(464), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(464), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_raw_string_literal] = ACTIONS(462), - [sym_float_literal] = ACTIONS(462), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2407), + [sym_super] = ACTIONS(2407), + [sym_crate] = ACTIONS(2407), + [sym_metavariable] = ACTIONS(2409), + [sym_raw_string_literal] = ACTIONS(2409), + [sym_float_literal] = ACTIONS(2409), [sym_block_comment] = ACTIONS(3), }, - [589] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1784), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [584] = { + [sym_parameter] = STATE(2291), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2023), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(2327), + [anon_sym_union] = ACTIONS(2327), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), - [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1534), + [sym_mutable_specifier] = ACTIONS(2329), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -68008,274 +67763,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(2333), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [590] = { - [sym_function_modifiers] = STATE(2432), - [sym_higher_ranked_trait_bound] = STATE(1574), - [sym_removed_trait_bound] = STATE(1574), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1577), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(1576), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), + [585] = { + [sym_function_modifiers] = STATE(2473), + [sym_const_parameter] = STATE(2108), + [sym_constrained_type_parameter] = STATE(1765), + [sym_optional_type_parameter] = STATE(2108), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1882), + [sym_bracketed_type] = STATE(2379), + [sym_qualified_type] = STATE(2353), + [sym_lifetime] = STATE(1615), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_QMARK] = ACTIONS(2423), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_const] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(2415), [sym_block_comment] = ACTIONS(3), }, - [591] = { - [sym_function_modifiers] = STATE(2432), - [sym_higher_ranked_trait_bound] = STATE(1574), - [sym_removed_trait_bound] = STATE(1574), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1577), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(1579), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_QMARK] = ACTIONS(2423), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2299), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), + [586] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1794), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_dyn] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1534), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [592] = { - [sym_function_modifiers] = STATE(2432), - [sym_higher_ranked_trait_bound] = STATE(1574), - [sym_removed_trait_bound] = STATE(1574), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1575), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(1576), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [587] = { + [sym_identifier] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [anon_sym_RPAREN] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_LBRACK] = ACTIONS(2421), + [anon_sym_RBRACK] = ACTIONS(2421), + [anon_sym_DOLLAR] = ACTIONS(2419), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2419), + [anon_sym_SQUOTE] = ACTIONS(2419), + [anon_sym_as] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_await] = 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_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_where] = ACTIONS(2419), + [anon_sym_while] = ACTIONS(2419), + [sym_mutable_specifier] = ACTIONS(2419), + [sym_integer_literal] = ACTIONS(2421), + [aux_sym_string_literal_token1] = ACTIONS(2421), + [sym_char_literal] = ACTIONS(2421), + [anon_sym_true] = ACTIONS(2419), + [anon_sym_false] = ACTIONS(2419), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym_raw_string_literal] = ACTIONS(2421), + [sym_float_literal] = ACTIONS(2421), + [sym_block_comment] = ACTIONS(3), + }, + [588] = { + [sym_function_modifiers] = STATE(2473), + [sym_higher_ranked_trait_bound] = STATE(1593), + [sym_removed_trait_bound] = STATE(1593), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1563), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(1590), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), [anon_sym_QMARK] = ACTIONS(2423), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(2425), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [593] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2266), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [589] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1856), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), - [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1534), + [sym_mutable_specifier] = ACTIONS(2427), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -68284,67 +68111,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [594] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1803), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [590] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1454), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), - [sym_mutable_specifier] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(1534), + [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -68353,136 +68180,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [595] = { - [sym_identifier] = ACTIONS(2411), - [anon_sym_LPAREN] = ACTIONS(2413), - [anon_sym_RPAREN] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2413), - [anon_sym_RBRACE] = ACTIONS(2413), - [anon_sym_LBRACK] = ACTIONS(2413), - [anon_sym_RBRACK] = ACTIONS(2413), - [anon_sym_DOLLAR] = ACTIONS(2413), - [anon_sym_u8] = ACTIONS(2411), - [anon_sym_i8] = ACTIONS(2411), - [anon_sym_u16] = ACTIONS(2411), - [anon_sym_i16] = ACTIONS(2411), - [anon_sym_u32] = ACTIONS(2411), - [anon_sym_i32] = ACTIONS(2411), - [anon_sym_u64] = ACTIONS(2411), - [anon_sym_i64] = ACTIONS(2411), - [anon_sym_u128] = ACTIONS(2411), - [anon_sym_i128] = ACTIONS(2411), - [anon_sym_isize] = ACTIONS(2411), - [anon_sym_usize] = ACTIONS(2411), - [anon_sym_f32] = ACTIONS(2411), - [anon_sym_f64] = ACTIONS(2411), - [anon_sym_bool] = ACTIONS(2411), - [anon_sym_str] = ACTIONS(2411), - [anon_sym_char] = ACTIONS(2411), - [aux_sym__non_special_token_token1] = ACTIONS(2411), - [anon_sym_SQUOTE] = ACTIONS(2411), - [anon_sym_as] = ACTIONS(2411), - [anon_sym_async] = ACTIONS(2411), - [anon_sym_await] = ACTIONS(2411), - [anon_sym_break] = ACTIONS(2411), - [anon_sym_const] = ACTIONS(2411), - [anon_sym_continue] = ACTIONS(2411), - [anon_sym_default] = ACTIONS(2411), - [anon_sym_enum] = ACTIONS(2411), - [anon_sym_fn] = ACTIONS(2411), - [anon_sym_for] = ACTIONS(2411), - [anon_sym_if] = ACTIONS(2411), - [anon_sym_impl] = ACTIONS(2411), - [anon_sym_let] = ACTIONS(2411), - [anon_sym_loop] = ACTIONS(2411), - [anon_sym_match] = ACTIONS(2411), - [anon_sym_mod] = ACTIONS(2411), - [anon_sym_pub] = ACTIONS(2411), - [anon_sym_return] = ACTIONS(2411), - [anon_sym_static] = ACTIONS(2411), - [anon_sym_struct] = ACTIONS(2411), - [anon_sym_trait] = ACTIONS(2411), - [anon_sym_type] = ACTIONS(2411), - [anon_sym_union] = ACTIONS(2411), - [anon_sym_unsafe] = ACTIONS(2411), - [anon_sym_use] = ACTIONS(2411), - [anon_sym_where] = ACTIONS(2411), - [anon_sym_while] = ACTIONS(2411), - [sym_mutable_specifier] = ACTIONS(2411), - [sym_integer_literal] = ACTIONS(2413), - [aux_sym_string_literal_token1] = ACTIONS(2413), - [sym_char_literal] = ACTIONS(2413), - [anon_sym_true] = ACTIONS(2411), - [anon_sym_false] = ACTIONS(2411), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2411), - [sym_super] = ACTIONS(2411), - [sym_crate] = ACTIONS(2411), - [sym_raw_string_literal] = ACTIONS(2413), - [sym_float_literal] = ACTIONS(2413), - [sym_block_comment] = ACTIONS(3), - }, - [596] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2144), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [591] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1436), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), - [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1534), + [sym_mutable_specifier] = ACTIONS(2429), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -68491,66 +68249,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [597] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2060), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [592] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1794), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -68560,135 +68318,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [598] = { - [sym_identifier] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_RPAREN] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2409), - [anon_sym_RBRACE] = ACTIONS(2409), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_RBRACK] = ACTIONS(2409), - [anon_sym_DOLLAR] = ACTIONS(2409), - [anon_sym_u8] = ACTIONS(2407), - [anon_sym_i8] = ACTIONS(2407), - [anon_sym_u16] = ACTIONS(2407), - [anon_sym_i16] = ACTIONS(2407), - [anon_sym_u32] = ACTIONS(2407), - [anon_sym_i32] = ACTIONS(2407), - [anon_sym_u64] = ACTIONS(2407), - [anon_sym_i64] = ACTIONS(2407), - [anon_sym_u128] = ACTIONS(2407), - [anon_sym_i128] = ACTIONS(2407), - [anon_sym_isize] = ACTIONS(2407), - [anon_sym_usize] = ACTIONS(2407), - [anon_sym_f32] = ACTIONS(2407), - [anon_sym_f64] = ACTIONS(2407), - [anon_sym_bool] = ACTIONS(2407), - [anon_sym_str] = ACTIONS(2407), - [anon_sym_char] = ACTIONS(2407), - [aux_sym__non_special_token_token1] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_as] = ACTIONS(2407), - [anon_sym_async] = ACTIONS(2407), - [anon_sym_await] = ACTIONS(2407), - [anon_sym_break] = ACTIONS(2407), - [anon_sym_const] = ACTIONS(2407), - [anon_sym_continue] = ACTIONS(2407), - [anon_sym_default] = ACTIONS(2407), - [anon_sym_enum] = ACTIONS(2407), - [anon_sym_fn] = ACTIONS(2407), - [anon_sym_for] = ACTIONS(2407), - [anon_sym_if] = ACTIONS(2407), - [anon_sym_impl] = ACTIONS(2407), - [anon_sym_let] = ACTIONS(2407), - [anon_sym_loop] = ACTIONS(2407), - [anon_sym_match] = ACTIONS(2407), - [anon_sym_mod] = ACTIONS(2407), - [anon_sym_pub] = ACTIONS(2407), - [anon_sym_return] = ACTIONS(2407), - [anon_sym_static] = ACTIONS(2407), - [anon_sym_struct] = ACTIONS(2407), - [anon_sym_trait] = ACTIONS(2407), - [anon_sym_type] = ACTIONS(2407), - [anon_sym_union] = ACTIONS(2407), - [anon_sym_unsafe] = ACTIONS(2407), - [anon_sym_use] = ACTIONS(2407), - [anon_sym_where] = ACTIONS(2407), - [anon_sym_while] = ACTIONS(2407), - [sym_mutable_specifier] = ACTIONS(2407), - [sym_integer_literal] = ACTIONS(2409), - [aux_sym_string_literal_token1] = ACTIONS(2409), - [sym_char_literal] = ACTIONS(2409), - [anon_sym_true] = ACTIONS(2407), - [anon_sym_false] = ACTIONS(2407), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2407), - [sym_super] = ACTIONS(2407), - [sym_crate] = ACTIONS(2407), - [sym_raw_string_literal] = ACTIONS(2409), - [sym_float_literal] = ACTIONS(2409), + [593] = { + [sym_identifier] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_RPAREN] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(610), + [anon_sym_RBRACK] = ACTIONS(610), + [anon_sym_DOLLAR] = ACTIONS(610), + [anon_sym_u8] = ACTIONS(612), + [anon_sym_i8] = ACTIONS(612), + [anon_sym_u16] = ACTIONS(612), + [anon_sym_i16] = ACTIONS(612), + [anon_sym_u32] = ACTIONS(612), + [anon_sym_i32] = ACTIONS(612), + [anon_sym_u64] = ACTIONS(612), + [anon_sym_i64] = ACTIONS(612), + [anon_sym_u128] = ACTIONS(612), + [anon_sym_i128] = ACTIONS(612), + [anon_sym_isize] = ACTIONS(612), + [anon_sym_usize] = ACTIONS(612), + [anon_sym_f32] = ACTIONS(612), + [anon_sym_f64] = ACTIONS(612), + [anon_sym_bool] = ACTIONS(612), + [anon_sym_str] = ACTIONS(612), + [anon_sym_char] = ACTIONS(612), + [aux_sym__non_special_token_token1] = ACTIONS(612), + [anon_sym_SQUOTE] = ACTIONS(612), + [anon_sym_as] = ACTIONS(612), + [anon_sym_async] = ACTIONS(612), + [anon_sym_await] = ACTIONS(612), + [anon_sym_break] = ACTIONS(612), + [anon_sym_const] = ACTIONS(612), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_default] = ACTIONS(612), + [anon_sym_enum] = ACTIONS(612), + [anon_sym_fn] = ACTIONS(612), + [anon_sym_for] = ACTIONS(612), + [anon_sym_if] = ACTIONS(612), + [anon_sym_impl] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_loop] = ACTIONS(612), + [anon_sym_match] = ACTIONS(612), + [anon_sym_mod] = ACTIONS(612), + [anon_sym_pub] = ACTIONS(612), + [anon_sym_return] = ACTIONS(612), + [anon_sym_static] = ACTIONS(612), + [anon_sym_struct] = ACTIONS(612), + [anon_sym_trait] = ACTIONS(612), + [anon_sym_type] = ACTIONS(612), + [anon_sym_union] = ACTIONS(612), + [anon_sym_unsafe] = ACTIONS(612), + [anon_sym_use] = ACTIONS(612), + [anon_sym_where] = ACTIONS(612), + [anon_sym_while] = ACTIONS(612), + [sym_mutable_specifier] = ACTIONS(612), + [sym_integer_literal] = ACTIONS(610), + [aux_sym_string_literal_token1] = ACTIONS(610), + [sym_char_literal] = ACTIONS(610), + [anon_sym_true] = ACTIONS(612), + [anon_sym_false] = ACTIONS(612), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(612), + [sym_super] = ACTIONS(612), + [sym_crate] = ACTIONS(612), + [sym_raw_string_literal] = ACTIONS(610), + [sym_float_literal] = ACTIONS(610), [sym_block_comment] = ACTIONS(3), }, - [599] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1450), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [594] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1834), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(2431), + [anon_sym_union] = ACTIONS(2431), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -68698,66 +68456,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(2433), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [600] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2147), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [595] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2080), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -68767,66 +68525,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [601] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1449), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [596] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2176), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -68836,66 +68594,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [602] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1831), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2429), + [597] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1441), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -68905,67 +68663,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2431), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [603] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1978), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [598] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1807), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), - [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1534), + [sym_mutable_specifier] = ACTIONS(2435), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -68974,66 +68732,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [604] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2129), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [599] = { + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2343), + [anon_sym_RPAREN] = ACTIONS(2343), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(2343), + [anon_sym_RBRACK] = ACTIONS(2343), + [anon_sym_DOLLAR] = ACTIONS(2343), + [anon_sym_u8] = ACTIONS(2341), + [anon_sym_i8] = ACTIONS(2341), + [anon_sym_u16] = ACTIONS(2341), + [anon_sym_i16] = ACTIONS(2341), + [anon_sym_u32] = ACTIONS(2341), + [anon_sym_i32] = ACTIONS(2341), + [anon_sym_u64] = ACTIONS(2341), + [anon_sym_i64] = ACTIONS(2341), + [anon_sym_u128] = ACTIONS(2341), + [anon_sym_i128] = ACTIONS(2341), + [anon_sym_isize] = ACTIONS(2341), + [anon_sym_usize] = ACTIONS(2341), + [anon_sym_f32] = ACTIONS(2341), + [anon_sym_f64] = ACTIONS(2341), + [anon_sym_bool] = ACTIONS(2341), + [anon_sym_str] = ACTIONS(2341), + [anon_sym_char] = ACTIONS(2341), + [aux_sym__non_special_token_token1] = ACTIONS(2341), + [anon_sym_SQUOTE] = ACTIONS(2341), + [anon_sym_as] = ACTIONS(2341), + [anon_sym_async] = ACTIONS(2341), + [anon_sym_await] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_default] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_fn] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_impl] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2341), + [anon_sym_loop] = ACTIONS(2341), + [anon_sym_match] = ACTIONS(2341), + [anon_sym_mod] = ACTIONS(2341), + [anon_sym_pub] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_struct] = ACTIONS(2341), + [anon_sym_trait] = ACTIONS(2341), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_union] = ACTIONS(2341), + [anon_sym_unsafe] = ACTIONS(2341), + [anon_sym_use] = ACTIONS(2341), + [anon_sym_where] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [sym_mutable_specifier] = ACTIONS(2341), + [sym_integer_literal] = ACTIONS(2343), + [aux_sym_string_literal_token1] = ACTIONS(2343), + [sym_char_literal] = ACTIONS(2343), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2341), + [sym_super] = ACTIONS(2341), + [sym_crate] = ACTIONS(2341), + [sym_raw_string_literal] = ACTIONS(2343), + [sym_float_literal] = ACTIONS(2343), + [sym_block_comment] = ACTIONS(3), + }, + [600] = { + [sym_identifier] = ACTIONS(2345), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_RPAREN] = ACTIONS(2347), + [anon_sym_LBRACE] = ACTIONS(2347), + [anon_sym_RBRACE] = ACTIONS(2347), + [anon_sym_LBRACK] = ACTIONS(2347), + [anon_sym_RBRACK] = ACTIONS(2347), + [anon_sym_DOLLAR] = ACTIONS(2347), + [anon_sym_u8] = ACTIONS(2345), + [anon_sym_i8] = ACTIONS(2345), + [anon_sym_u16] = ACTIONS(2345), + [anon_sym_i16] = ACTIONS(2345), + [anon_sym_u32] = ACTIONS(2345), + [anon_sym_i32] = ACTIONS(2345), + [anon_sym_u64] = ACTIONS(2345), + [anon_sym_i64] = ACTIONS(2345), + [anon_sym_u128] = ACTIONS(2345), + [anon_sym_i128] = ACTIONS(2345), + [anon_sym_isize] = ACTIONS(2345), + [anon_sym_usize] = ACTIONS(2345), + [anon_sym_f32] = ACTIONS(2345), + [anon_sym_f64] = ACTIONS(2345), + [anon_sym_bool] = ACTIONS(2345), + [anon_sym_str] = ACTIONS(2345), + [anon_sym_char] = ACTIONS(2345), + [aux_sym__non_special_token_token1] = ACTIONS(2345), + [anon_sym_SQUOTE] = ACTIONS(2345), + [anon_sym_as] = ACTIONS(2345), + [anon_sym_async] = ACTIONS(2345), + [anon_sym_await] = ACTIONS(2345), + [anon_sym_break] = ACTIONS(2345), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_continue] = ACTIONS(2345), + [anon_sym_default] = ACTIONS(2345), + [anon_sym_enum] = ACTIONS(2345), + [anon_sym_fn] = ACTIONS(2345), + [anon_sym_for] = ACTIONS(2345), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_impl] = ACTIONS(2345), + [anon_sym_let] = ACTIONS(2345), + [anon_sym_loop] = ACTIONS(2345), + [anon_sym_match] = ACTIONS(2345), + [anon_sym_mod] = ACTIONS(2345), + [anon_sym_pub] = ACTIONS(2345), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_static] = ACTIONS(2345), + [anon_sym_struct] = ACTIONS(2345), + [anon_sym_trait] = ACTIONS(2345), + [anon_sym_type] = ACTIONS(2345), + [anon_sym_union] = ACTIONS(2345), + [anon_sym_unsafe] = ACTIONS(2345), + [anon_sym_use] = ACTIONS(2345), + [anon_sym_where] = ACTIONS(2345), + [anon_sym_while] = ACTIONS(2345), + [sym_mutable_specifier] = ACTIONS(2345), + [sym_integer_literal] = ACTIONS(2347), + [aux_sym_string_literal_token1] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [anon_sym_true] = ACTIONS(2345), + [anon_sym_false] = ACTIONS(2345), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2345), + [sym_super] = ACTIONS(2345), + [sym_crate] = ACTIONS(2345), + [sym_raw_string_literal] = ACTIONS(2347), + [sym_float_literal] = ACTIONS(2347), + [sym_block_comment] = ACTIONS(3), + }, + [601] = { + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_RPAREN] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_RBRACK] = ACTIONS(2395), + [anon_sym_DOLLAR] = ACTIONS(2395), + [anon_sym_u8] = ACTIONS(2393), + [anon_sym_i8] = ACTIONS(2393), + [anon_sym_u16] = ACTIONS(2393), + [anon_sym_i16] = ACTIONS(2393), + [anon_sym_u32] = ACTIONS(2393), + [anon_sym_i32] = ACTIONS(2393), + [anon_sym_u64] = ACTIONS(2393), + [anon_sym_i64] = ACTIONS(2393), + [anon_sym_u128] = ACTIONS(2393), + [anon_sym_i128] = ACTIONS(2393), + [anon_sym_isize] = ACTIONS(2393), + [anon_sym_usize] = ACTIONS(2393), + [anon_sym_f32] = ACTIONS(2393), + [anon_sym_f64] = ACTIONS(2393), + [anon_sym_bool] = ACTIONS(2393), + [anon_sym_str] = ACTIONS(2393), + [anon_sym_char] = ACTIONS(2393), + [aux_sym__non_special_token_token1] = ACTIONS(2393), + [anon_sym_SQUOTE] = ACTIONS(2393), + [anon_sym_as] = ACTIONS(2393), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_await] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_default] = ACTIONS(2393), + [anon_sym_enum] = ACTIONS(2393), + [anon_sym_fn] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_impl] = ACTIONS(2393), + [anon_sym_let] = ACTIONS(2393), + [anon_sym_loop] = ACTIONS(2393), + [anon_sym_match] = ACTIONS(2393), + [anon_sym_mod] = ACTIONS(2393), + [anon_sym_pub] = ACTIONS(2393), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_static] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(2393), + [anon_sym_trait] = ACTIONS(2393), + [anon_sym_type] = ACTIONS(2393), + [anon_sym_union] = ACTIONS(2393), + [anon_sym_unsafe] = ACTIONS(2393), + [anon_sym_use] = ACTIONS(2393), + [anon_sym_where] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [sym_mutable_specifier] = ACTIONS(2393), + [sym_integer_literal] = ACTIONS(2395), + [aux_sym_string_literal_token1] = ACTIONS(2395), + [sym_char_literal] = ACTIONS(2395), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2393), + [sym_super] = ACTIONS(2393), + [sym_crate] = ACTIONS(2393), + [sym_raw_string_literal] = ACTIONS(2395), + [sym_float_literal] = ACTIONS(2395), + [sym_block_comment] = ACTIONS(3), + }, + [602] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2155), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -69043,66 +69008,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, + [603] = { + [sym_identifier] = ACTIONS(474), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(472), + [anon_sym_RBRACE] = ACTIONS(472), + [anon_sym_LBRACK] = ACTIONS(472), + [anon_sym_RBRACK] = ACTIONS(472), + [anon_sym_DOLLAR] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(474), + [anon_sym_i8] = ACTIONS(474), + [anon_sym_u16] = ACTIONS(474), + [anon_sym_i16] = ACTIONS(474), + [anon_sym_u32] = ACTIONS(474), + [anon_sym_i32] = ACTIONS(474), + [anon_sym_u64] = ACTIONS(474), + [anon_sym_i64] = ACTIONS(474), + [anon_sym_u128] = ACTIONS(474), + [anon_sym_i128] = ACTIONS(474), + [anon_sym_isize] = ACTIONS(474), + [anon_sym_usize] = ACTIONS(474), + [anon_sym_f32] = ACTIONS(474), + [anon_sym_f64] = ACTIONS(474), + [anon_sym_bool] = ACTIONS(474), + [anon_sym_str] = ACTIONS(474), + [anon_sym_char] = ACTIONS(474), + [aux_sym__non_special_token_token1] = ACTIONS(474), + [anon_sym_SQUOTE] = ACTIONS(474), + [anon_sym_as] = ACTIONS(474), + [anon_sym_async] = ACTIONS(474), + [anon_sym_await] = ACTIONS(474), + [anon_sym_break] = ACTIONS(474), + [anon_sym_const] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(474), + [anon_sym_default] = ACTIONS(474), + [anon_sym_enum] = ACTIONS(474), + [anon_sym_fn] = ACTIONS(474), + [anon_sym_for] = ACTIONS(474), + [anon_sym_if] = ACTIONS(474), + [anon_sym_impl] = ACTIONS(474), + [anon_sym_let] = ACTIONS(474), + [anon_sym_loop] = ACTIONS(474), + [anon_sym_match] = ACTIONS(474), + [anon_sym_mod] = ACTIONS(474), + [anon_sym_pub] = ACTIONS(474), + [anon_sym_return] = ACTIONS(474), + [anon_sym_static] = ACTIONS(474), + [anon_sym_struct] = ACTIONS(474), + [anon_sym_trait] = ACTIONS(474), + [anon_sym_type] = ACTIONS(474), + [anon_sym_union] = ACTIONS(474), + [anon_sym_unsafe] = ACTIONS(474), + [anon_sym_use] = ACTIONS(474), + [anon_sym_where] = ACTIONS(474), + [anon_sym_while] = ACTIONS(474), + [sym_mutable_specifier] = ACTIONS(474), + [sym_integer_literal] = ACTIONS(472), + [aux_sym_string_literal_token1] = ACTIONS(472), + [sym_char_literal] = ACTIONS(472), + [anon_sym_true] = ACTIONS(474), + [anon_sym_false] = ACTIONS(474), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(474), + [sym_super] = ACTIONS(474), + [sym_crate] = ACTIONS(474), + [sym_raw_string_literal] = ACTIONS(472), + [sym_float_literal] = ACTIONS(472), + [sym_block_comment] = ACTIONS(3), + }, + [604] = { + [sym_identifier] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_RPAREN] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_RBRACK] = ACTIONS(2373), + [anon_sym_DOLLAR] = ACTIONS(2373), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2371), + [anon_sym_as] = ACTIONS(2371), + [anon_sym_async] = ACTIONS(2371), + [anon_sym_await] = 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_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_where] = ACTIONS(2371), + [anon_sym_while] = ACTIONS(2371), + [sym_mutable_specifier] = ACTIONS(2371), + [sym_integer_literal] = ACTIONS(2373), + [aux_sym_string_literal_token1] = ACTIONS(2373), + [sym_char_literal] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2371), + [anon_sym_false] = ACTIONS(2371), + [sym_line_comment] = ACTIONS(986), + [sym_self] = ACTIONS(2371), + [sym_super] = ACTIONS(2371), + [sym_crate] = ACTIONS(2371), + [sym_raw_string_literal] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), + [sym_block_comment] = ACTIONS(3), + }, [605] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1935), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2156), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -69112,66 +69215,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [606] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1777), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2282), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -69181,204 +69284,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [607] = { - [sym_identifier] = ACTIONS(2403), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2405), - [anon_sym_RBRACE] = ACTIONS(2405), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_RBRACK] = ACTIONS(2405), - [anon_sym_DOLLAR] = ACTIONS(2405), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2403), - [anon_sym_SQUOTE] = ACTIONS(2403), - [anon_sym_as] = ACTIONS(2403), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_await] = 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_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_where] = ACTIONS(2403), - [anon_sym_while] = ACTIONS(2403), - [sym_mutable_specifier] = ACTIONS(2403), - [sym_integer_literal] = ACTIONS(2405), - [aux_sym_string_literal_token1] = ACTIONS(2405), - [sym_char_literal] = ACTIONS(2405), - [anon_sym_true] = ACTIONS(2403), - [anon_sym_false] = ACTIONS(2403), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2403), - [sym_super] = ACTIONS(2403), - [sym_crate] = ACTIONS(2403), - [sym_raw_string_literal] = ACTIONS(2405), - [sym_float_literal] = ACTIONS(2405), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1949), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1534), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [608] = { - [sym_identifier] = ACTIONS(2399), - [anon_sym_LPAREN] = ACTIONS(2401), - [anon_sym_RPAREN] = ACTIONS(2401), - [anon_sym_LBRACE] = ACTIONS(2401), - [anon_sym_RBRACE] = ACTIONS(2401), - [anon_sym_LBRACK] = ACTIONS(2401), - [anon_sym_RBRACK] = ACTIONS(2401), - [anon_sym_DOLLAR] = ACTIONS(2401), - [anon_sym_u8] = ACTIONS(2399), - [anon_sym_i8] = ACTIONS(2399), - [anon_sym_u16] = ACTIONS(2399), - [anon_sym_i16] = ACTIONS(2399), - [anon_sym_u32] = ACTIONS(2399), - [anon_sym_i32] = ACTIONS(2399), - [anon_sym_u64] = ACTIONS(2399), - [anon_sym_i64] = ACTIONS(2399), - [anon_sym_u128] = ACTIONS(2399), - [anon_sym_i128] = ACTIONS(2399), - [anon_sym_isize] = ACTIONS(2399), - [anon_sym_usize] = ACTIONS(2399), - [anon_sym_f32] = ACTIONS(2399), - [anon_sym_f64] = ACTIONS(2399), - [anon_sym_bool] = ACTIONS(2399), - [anon_sym_str] = ACTIONS(2399), - [anon_sym_char] = ACTIONS(2399), - [aux_sym__non_special_token_token1] = ACTIONS(2399), - [anon_sym_SQUOTE] = ACTIONS(2399), - [anon_sym_as] = ACTIONS(2399), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_await] = ACTIONS(2399), - [anon_sym_break] = ACTIONS(2399), - [anon_sym_const] = ACTIONS(2399), - [anon_sym_continue] = ACTIONS(2399), - [anon_sym_default] = ACTIONS(2399), - [anon_sym_enum] = ACTIONS(2399), - [anon_sym_fn] = ACTIONS(2399), - [anon_sym_for] = ACTIONS(2399), - [anon_sym_if] = ACTIONS(2399), - [anon_sym_impl] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_loop] = ACTIONS(2399), - [anon_sym_match] = ACTIONS(2399), - [anon_sym_mod] = ACTIONS(2399), - [anon_sym_pub] = ACTIONS(2399), - [anon_sym_return] = ACTIONS(2399), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_struct] = ACTIONS(2399), - [anon_sym_trait] = ACTIONS(2399), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_union] = ACTIONS(2399), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_use] = ACTIONS(2399), - [anon_sym_where] = ACTIONS(2399), - [anon_sym_while] = ACTIONS(2399), - [sym_mutable_specifier] = ACTIONS(2399), - [sym_integer_literal] = ACTIONS(2401), - [aux_sym_string_literal_token1] = ACTIONS(2401), - [sym_char_literal] = ACTIONS(2401), - [anon_sym_true] = ACTIONS(2399), - [anon_sym_false] = ACTIONS(2399), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(2399), - [sym_super] = ACTIONS(2399), - [sym_crate] = ACTIONS(2399), - [sym_raw_string_literal] = ACTIONS(2401), - [sym_float_literal] = ACTIONS(2401), - [sym_block_comment] = ACTIONS(3), - }, - [609] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1426), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1431), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -69388,135 +69422,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [610] = { - [sym_identifier] = ACTIONS(448), - [anon_sym_LPAREN] = ACTIONS(446), - [anon_sym_RPAREN] = ACTIONS(446), - [anon_sym_LBRACE] = ACTIONS(446), - [anon_sym_RBRACE] = ACTIONS(446), - [anon_sym_LBRACK] = ACTIONS(446), - [anon_sym_RBRACK] = ACTIONS(446), - [anon_sym_DOLLAR] = ACTIONS(446), - [anon_sym_u8] = ACTIONS(448), - [anon_sym_i8] = ACTIONS(448), - [anon_sym_u16] = ACTIONS(448), - [anon_sym_i16] = ACTIONS(448), - [anon_sym_u32] = ACTIONS(448), - [anon_sym_i32] = ACTIONS(448), - [anon_sym_u64] = ACTIONS(448), - [anon_sym_i64] = ACTIONS(448), - [anon_sym_u128] = ACTIONS(448), - [anon_sym_i128] = ACTIONS(448), - [anon_sym_isize] = ACTIONS(448), - [anon_sym_usize] = ACTIONS(448), - [anon_sym_f32] = ACTIONS(448), - [anon_sym_f64] = ACTIONS(448), - [anon_sym_bool] = ACTIONS(448), - [anon_sym_str] = ACTIONS(448), - [anon_sym_char] = ACTIONS(448), - [aux_sym__non_special_token_token1] = ACTIONS(448), - [anon_sym_SQUOTE] = ACTIONS(448), - [anon_sym_as] = ACTIONS(448), - [anon_sym_async] = ACTIONS(448), - [anon_sym_await] = ACTIONS(448), - [anon_sym_break] = ACTIONS(448), - [anon_sym_const] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(448), - [anon_sym_default] = ACTIONS(448), - [anon_sym_enum] = ACTIONS(448), - [anon_sym_fn] = ACTIONS(448), - [anon_sym_for] = ACTIONS(448), - [anon_sym_if] = ACTIONS(448), - [anon_sym_impl] = ACTIONS(448), - [anon_sym_let] = ACTIONS(448), - [anon_sym_loop] = ACTIONS(448), - [anon_sym_match] = ACTIONS(448), - [anon_sym_mod] = ACTIONS(448), - [anon_sym_pub] = ACTIONS(448), - [anon_sym_return] = ACTIONS(448), - [anon_sym_static] = ACTIONS(448), - [anon_sym_struct] = ACTIONS(448), - [anon_sym_trait] = ACTIONS(448), - [anon_sym_type] = ACTIONS(448), - [anon_sym_union] = ACTIONS(448), - [anon_sym_unsafe] = ACTIONS(448), - [anon_sym_use] = ACTIONS(448), - [anon_sym_where] = ACTIONS(448), - [anon_sym_while] = ACTIONS(448), - [sym_mutable_specifier] = ACTIONS(448), - [sym_integer_literal] = ACTIONS(446), - [aux_sym_string_literal_token1] = ACTIONS(446), - [sym_char_literal] = ACTIONS(446), - [anon_sym_true] = ACTIONS(448), - [anon_sym_false] = ACTIONS(448), - [sym_line_comment] = ACTIONS(1069), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(448), - [sym_crate] = ACTIONS(448), - [sym_raw_string_literal] = ACTIONS(446), - [sym_float_literal] = ACTIONS(446), + [609] = { + [sym_function_modifiers] = STATE(2473), + [sym_higher_ranked_trait_bound] = STATE(1593), + [sym_removed_trait_bound] = STATE(1593), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1563), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(1584), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(2423), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [611] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1831), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2429), + [610] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2173), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -69526,67 +69560,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2433), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, + [611] = { + [sym_function_modifiers] = STATE(2473), + [sym_higher_ranked_trait_bound] = STATE(1593), + [sym_removed_trait_bound] = STATE(1593), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1592), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(1590), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(2423), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(878), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, [612] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1852), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1789), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), - [sym_mutable_specifier] = ACTIONS(2435), + [anon_sym_AMP] = ACTIONS(1534), + [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -69595,66 +69698,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [613] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1788), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2174), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -69664,67 +69767,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [614] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1448), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2157), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), - [sym_mutable_specifier] = ACTIONS(2437), + [anon_sym_AMP] = ACTIONS(1534), + [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -69733,66 +69836,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [615] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(1420), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1974), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -69802,66 +69905,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [616] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2170), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1788), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -69871,135 +69974,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [617] = { - [sym_function_modifiers] = STATE(2432), - [sym_higher_ranked_trait_bound] = STATE(1535), - [sym_removed_trait_bound] = STATE(1535), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1552), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(1553), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_function_modifiers] = STATE(2473), + [sym_higher_ranked_trait_bound] = STATE(1523), + [sym_removed_trait_bound] = STATE(1523), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1557), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(1525), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), [anon_sym_QMARK] = ACTIONS(2423), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(2425), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, [618] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2273), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1435), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -70009,66 +70112,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [619] = { - [sym_bracketed_type] = STATE(2456), - [sym_generic_type] = STATE(2452), - [sym_generic_type_with_turbofish] = STATE(2443), - [sym_macro_invocation] = STATE(1419), - [sym_scoped_identifier] = STATE(1333), - [sym_scoped_type_identifier] = STATE(2030), - [sym_const_block] = STATE(1419), - [sym__pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(1419), - [sym_slice_pattern] = STATE(1419), - [sym_tuple_struct_pattern] = STATE(1419), - [sym_struct_pattern] = STATE(1419), - [sym_remaining_field_pattern] = STATE(1419), - [sym_mut_pattern] = STATE(1419), - [sym_range_pattern] = STATE(1419), - [sym_ref_pattern] = STATE(1419), - [sym_captured_pattern] = STATE(1419), - [sym_reference_pattern] = STATE(1419), - [sym_or_pattern] = STATE(1419), - [sym__literal_pattern] = STATE(1376), - [sym_negative_literal] = STATE(1381), - [sym_string_literal] = STATE(1381), - [sym_boolean_literal] = STATE(1381), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1437), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1532), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1534), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -70078,37 +70181,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1530), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [620] = { - [sym_function_modifiers] = STATE(2375), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1117), - [sym_bracketed_type] = STATE(2474), - [sym_lifetime] = STATE(2321), - [sym_array_type] = STATE(1046), - [sym_for_lifetimes] = STATE(1190), - [sym_function_type] = STATE(1046), - [sym_tuple_type] = STATE(1046), - [sym_unit_type] = STATE(1046), - [sym_generic_type] = STATE(1001), - [sym_generic_type_with_turbofish] = STATE(2475), - [sym_bounded_type] = STATE(1046), - [sym_reference_type] = STATE(1046), - [sym_pointer_type] = STATE(1046), - [sym_empty_type] = STATE(1046), - [sym_abstract_type] = STATE(1046), - [sym_dynamic_type] = STATE(1046), - [sym_macro_invocation] = STATE(1046), - [sym_scoped_identifier] = STATE(2269), - [sym_scoped_type_identifier] = STATE(762), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(1834), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(2431), + [anon_sym_union] = ACTIONS(2431), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1534), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2437), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [621] = { + [sym_bracketed_type] = STATE(2461), + [sym_generic_type] = STATE(2459), + [sym_generic_type_with_turbofish] = STATE(2455), + [sym_macro_invocation] = STATE(1457), + [sym_scoped_identifier] = STATE(1334), + [sym_scoped_type_identifier] = STATE(2042), + [sym_const_block] = STATE(1457), + [sym__pattern] = STATE(2296), + [sym_tuple_pattern] = STATE(1457), + [sym_slice_pattern] = STATE(1457), + [sym_tuple_struct_pattern] = STATE(1457), + [sym_struct_pattern] = STATE(1457), + [sym_remaining_field_pattern] = STATE(1457), + [sym_mut_pattern] = STATE(1457), + [sym_range_pattern] = STATE(1457), + [sym_ref_pattern] = STATE(1457), + [sym_captured_pattern] = STATE(1457), + [sym_reference_pattern] = STATE(1457), + [sym_or_pattern] = STATE(1457), + [sym__literal_pattern] = STATE(1399), + [sym_negative_literal] = STATE(1375), + [sym_string_literal] = STATE(1375), + [sym_boolean_literal] = STATE(1375), + [sym_identifier] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1534), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1538), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [622] = { + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1041), + [sym_bracketed_type] = STATE(2486), + [sym_lifetime] = STATE(2336), + [sym_array_type] = STATE(1100), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1100), + [sym_tuple_type] = STATE(1100), + [sym_unit_type] = STATE(1100), + [sym_generic_type] = STATE(933), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_bounded_type] = STATE(1100), + [sym_reference_type] = STATE(1100), + [sym_pointer_type] = STATE(1100), + [sym_empty_type] = STATE(1100), + [sym_abstract_type] = STATE(1100), + [sym_dynamic_type] = STATE(1100), + [sym_macro_invocation] = STATE(1100), + [sym_scoped_identifier] = STATE(2283), + [sym_scoped_type_identifier] = STATE(772), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2439), [anon_sym_LPAREN] = ACTIONS(2441), [anon_sym_LBRACK] = ACTIONS(2443), @@ -70154,971 +70395,971 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(2471), [sym_block_comment] = ACTIONS(3), }, - [621] = { - [sym_attribute_item] = STATE(621), - [aux_sym_enum_variant_list_repeat1] = STATE(621), - [sym_identifier] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_RBRACK] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_u8] = ACTIONS(2473), - [anon_sym_i8] = ACTIONS(2473), - [anon_sym_u16] = ACTIONS(2473), - [anon_sym_i16] = ACTIONS(2473), - [anon_sym_u32] = ACTIONS(2473), - [anon_sym_i32] = ACTIONS(2473), - [anon_sym_u64] = ACTIONS(2473), - [anon_sym_i64] = ACTIONS(2473), - [anon_sym_u128] = ACTIONS(2473), - [anon_sym_i128] = ACTIONS(2473), - [anon_sym_isize] = ACTIONS(2473), - [anon_sym_usize] = ACTIONS(2473), - [anon_sym_f32] = ACTIONS(2473), - [anon_sym_f64] = ACTIONS(2473), - [anon_sym_bool] = ACTIONS(2473), - [anon_sym_str] = ACTIONS(2473), - [anon_sym_char] = ACTIONS(2473), - [anon_sym_SQUOTE] = ACTIONS(2473), - [anon_sym_async] = ACTIONS(2473), - [anon_sym_break] = ACTIONS(2473), - [anon_sym_const] = ACTIONS(2473), - [anon_sym_continue] = ACTIONS(2473), - [anon_sym_default] = ACTIONS(2473), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_loop] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_union] = ACTIONS(2473), - [anon_sym_unsafe] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_POUND] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_ref] = ACTIONS(2473), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_COLON_COLON] = ACTIONS(2475), - [anon_sym__] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2475), - [sym_mutable_specifier] = ACTIONS(2473), - [anon_sym_DOT_DOT] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2473), - [anon_sym_move] = ACTIONS(2473), - [sym_integer_literal] = ACTIONS(2475), - [aux_sym_string_literal_token1] = ACTIONS(2475), - [sym_char_literal] = ACTIONS(2475), - [anon_sym_true] = ACTIONS(2473), - [anon_sym_false] = ACTIONS(2473), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2473), - [sym_super] = ACTIONS(2473), - [sym_crate] = ACTIONS(2473), - [sym_metavariable] = ACTIONS(2475), - [sym_raw_string_literal] = ACTIONS(2475), - [sym_float_literal] = ACTIONS(2475), - [sym_block_comment] = ACTIONS(3), - }, - [622] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1382), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [623] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(2204), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_PLUS] = ACTIONS(2473), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(2482), + [sym_mutable_specifier] = ACTIONS(2475), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2484), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [623] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(2195), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [624] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1377), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_PLUS] = ACTIONS(2473), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(2486), + [sym_mutable_specifier] = ACTIONS(2477), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(2479), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [624] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1382), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [625] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1377), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_PLUS] = ACTIONS(2473), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(2488), + [sym_mutable_specifier] = ACTIONS(2481), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [625] = { - [sym_function_modifiers] = STATE(2432), - [sym_type_parameters] = STATE(702), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1639), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1625), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1492), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [626] = { + [sym_attribute_item] = STATE(626), + [aux_sym_enum_variant_list_repeat1] = STATE(626), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_RBRACK] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(2485), + [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_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_for] = ACTIONS(2483), + [anon_sym_if] = ACTIONS(2483), + [anon_sym_loop] = ACTIONS(2483), + [anon_sym_match] = ACTIONS(2483), + [anon_sym_return] = ACTIONS(2483), + [anon_sym_union] = ACTIONS(2483), + [anon_sym_unsafe] = ACTIONS(2483), + [anon_sym_while] = ACTIONS(2483), + [anon_sym_POUND] = ACTIONS(2487), + [anon_sym_BANG] = ACTIONS(2485), + [anon_sym_COMMA] = ACTIONS(2485), + [anon_sym_ref] = ACTIONS(2483), + [anon_sym_LT] = ACTIONS(2485), + [anon_sym_COLON_COLON] = ACTIONS(2485), + [anon_sym__] = ACTIONS(2483), + [anon_sym_AMP] = ACTIONS(2485), + [sym_mutable_specifier] = ACTIONS(2483), + [anon_sym_DOT_DOT] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PIPE] = ACTIONS(2485), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_move] = ACTIONS(2483), + [sym_integer_literal] = ACTIONS(2485), + [aux_sym_string_literal_token1] = ACTIONS(2485), + [sym_char_literal] = ACTIONS(2485), + [anon_sym_true] = ACTIONS(2483), + [anon_sym_false] = ACTIONS(2483), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2483), + [sym_super] = ACTIONS(2483), + [sym_crate] = ACTIONS(2483), + [sym_metavariable] = ACTIONS(2485), + [sym_raw_string_literal] = ACTIONS(2485), + [sym_float_literal] = ACTIONS(2485), + [sym_block_comment] = ACTIONS(3), + }, + [627] = { + [sym_function_modifiers] = STATE(2473), + [sym_type_parameters] = STATE(687), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1669), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1659), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1500), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2490), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(2492), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [626] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1988), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2494), - [anon_sym_LBRACK] = ACTIONS(876), + [628] = { + [sym_function_modifiers] = STATE(2473), + [sym_type_parameters] = STATE(749), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1650), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1487), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(2494), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(2492), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [627] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1988), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [629] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1993), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(868), [anon_sym_RPAREN] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [628] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1988), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(876), + [630] = { + [sym_function_modifiers] = STATE(2473), + [sym_type_parameters] = STATE(688), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1662), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1625), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1494), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(2498), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(2492), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [629] = { - [sym_function_modifiers] = STATE(2432), - [sym_type_parameters] = STATE(660), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1664), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1659), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1512), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), + [631] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1882), + [sym_bracketed_type] = STATE(2379), + [sym_qualified_type] = STATE(2353), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(2492), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [630] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1988), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [632] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1774), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2500), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [631] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(2182), - [sym_bracketed_type] = STATE(2367), + [633] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(2191), + [sym_bracketed_type] = STATE(2379), [sym_lifetime] = STATE(623), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2504), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2502), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(2506), + [sym_mutable_specifier] = ACTIONS(2504), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [632] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1794), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [634] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1795), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2508), - [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [633] = { - [sym_function_modifiers] = STATE(2432), - [sym_type_parameters] = STATE(710), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1682), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1623), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1476), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), + [635] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1993), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(2492), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [634] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1770), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [636] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1993), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(2512), - [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2510), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [635] = { - [sym_function_modifiers] = STATE(2375), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1105), - [sym_bracketed_type] = STATE(2474), - [sym_lifetime] = STATE(620), - [sym_array_type] = STATE(1046), - [sym_for_lifetimes] = STATE(1190), - [sym_function_type] = STATE(1046), - [sym_tuple_type] = STATE(1046), - [sym_unit_type] = STATE(1046), - [sym_generic_type] = STATE(1001), - [sym_generic_type_with_turbofish] = STATE(2475), - [sym_bounded_type] = STATE(1046), - [sym_reference_type] = STATE(1046), - [sym_pointer_type] = STATE(1046), - [sym_empty_type] = STATE(1046), - [sym_abstract_type] = STATE(1046), - [sym_dynamic_type] = STATE(1046), - [sym_macro_invocation] = STATE(1046), - [sym_scoped_identifier] = STATE(2269), - [sym_scoped_type_identifier] = STATE(762), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [637] = { + [sym_function_modifiers] = STATE(2387), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1106), + [sym_bracketed_type] = STATE(2486), + [sym_lifetime] = STATE(622), + [sym_array_type] = STATE(1100), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1100), + [sym_tuple_type] = STATE(1100), + [sym_unit_type] = STATE(1100), + [sym_generic_type] = STATE(933), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_bounded_type] = STATE(1100), + [sym_reference_type] = STATE(1100), + [sym_pointer_type] = STATE(1100), + [sym_empty_type] = STATE(1100), + [sym_abstract_type] = STATE(1100), + [sym_dynamic_type] = STATE(1100), + [sym_macro_invocation] = STATE(1100), + [sym_scoped_identifier] = STATE(2283), + [sym_scoped_type_identifier] = STATE(772), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2439), [anon_sym_LPAREN] = ACTIONS(2441), [anon_sym_LBRACK] = ACTIONS(2443), @@ -71140,7 +71381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2449), [anon_sym_str] = ACTIONS(2449), [anon_sym_char] = ACTIONS(2449), - [anon_sym_SQUOTE] = ACTIONS(2504), + [anon_sym_SQUOTE] = ACTIONS(2502), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), [anon_sym_default] = ACTIONS(2451), @@ -71155,7 +71396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(2461), [anon_sym_AMP] = ACTIONS(2463), [anon_sym_dyn] = ACTIONS(2465), - [sym_mutable_specifier] = ACTIONS(2514), + [sym_mutable_specifier] = ACTIONS(2512), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2469), [sym_super] = ACTIONS(2469), @@ -71163,205 +71404,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(2471), [sym_block_comment] = ACTIONS(3), }, - [636] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1393), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(624), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), + [638] = { + [sym_function_modifiers] = STATE(2473), + [sym_type_parameters] = STATE(714), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1688), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1629), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1510), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(2514), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2504), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(2492), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(2516), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [637] = { - [sym_function_modifiers] = STATE(2432), - [sym_type_parameters] = STATE(683), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1670), - [sym_bracketed_type] = STATE(2367), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1620), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1484), - [aux_sym_function_modifiers_repeat1] = STATE(1551), - [sym_identifier] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [639] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1400), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(625), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(2502), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(2492), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(2516), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [638] = { - [sym_function_modifiers] = STATE(2432), - [sym_extern_modifier] = STATE(1551), - [sym__type] = STATE(1866), - [sym_bracketed_type] = STATE(2367), - [sym_qualified_type] = STATE(2506), - [sym_lifetime] = STATE(2467), - [sym_array_type] = STATE(1370), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1370), - [sym_tuple_type] = STATE(1370), - [sym_unit_type] = STATE(1370), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2368), - [sym_bounded_type] = STATE(1370), - [sym_reference_type] = STATE(1370), - [sym_pointer_type] = STATE(1370), - [sym_empty_type] = STATE(1370), - [sym_abstract_type] = STATE(1370), - [sym_dynamic_type] = STATE(1370), - [sym_macro_invocation] = STATE(1370), - [sym_scoped_identifier] = STATE(2180), - [sym_scoped_type_identifier] = STATE(1319), - [aux_sym_function_modifiers_repeat1] = STATE(1551), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [640] = { + [sym_function_modifiers] = STATE(2473), + [sym_extern_modifier] = STATE(1548), + [sym__type] = STATE(1993), + [sym_bracketed_type] = STATE(2379), + [sym_lifetime] = STATE(2479), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1194), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1361), + [sym_generic_type_with_turbofish] = STATE(2380), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2194), + [sym_scoped_type_identifier] = STATE(1326), + [aux_sym_function_modifiers_repeat1] = STATE(1548), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(2518), + [anon_sym_LBRACK] = ACTIONS(872), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(880), + [anon_sym_default] = ACTIONS(876), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(882), + [anon_sym_union] = ACTIONS(878), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(884), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), + [sym_self] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, }; @@ -71384,57 +71625,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2008), 1, + STATE(2113), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1395), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(874), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [129] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1852), 20, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(1854), 42, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [200] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + ACTIONS(2447), 1, + anon_sym_STAR, + ACTIONS(2451), 1, + anon_sym_default, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, + anon_sym_union, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, + anon_sym_COLON_COLON, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, + sym_metavariable, + STATE(772), 1, + sym_scoped_type_identifier, + STATE(933), 1, + sym_generic_type, + STATE(1065), 1, + sym__type, + STATE(1191), 1, + sym_for_lifetimes, + STATE(2283), 1, + sym_scoped_identifier, + STATE(2336), 1, + sym_lifetime, + STATE(2387), 1, + sym_function_modifiers, + STATE(2486), 1, + sym_bracketed_type, + STATE(2487), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1100), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71446,7 +71852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(2449), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71464,7 +71870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [129] = 32, + [329] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -71481,57 +71887,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2180), 1, - sym_scoped_identifier, - STATE(2223), 1, + STATE(1387), 1, sym__type, - STATE(2367), 1, + STATE(2194), 1, + sym_scoped_identifier, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71543,7 +71949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71561,7 +71967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [258] = 32, + [458] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -71578,57 +71984,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1988), 1, + STATE(1386), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71640,7 +72046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71658,7 +72064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [387] = 32, + [587] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -71675,57 +72081,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2058), 1, - sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2235), 1, + sym__type, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71737,7 +72143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71755,7 +72161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [516] = 32, + [716] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -71772,57 +72178,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1695), 1, + STATE(1985), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71834,7 +72240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71852,7 +72258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [645] = 32, + [845] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -71869,57 +72275,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1965), 1, + STATE(2128), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71931,7 +72337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71949,7 +72355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [774] = 32, + [974] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -71966,57 +72372,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1693), 1, + STATE(1383), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72028,7 +72434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72046,104 +72452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [903] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2443), 1, - anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_STAR, - ACTIONS(2451), 1, - anon_sym_default, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2455), 1, - anon_sym_impl, - ACTIONS(2457), 1, - anon_sym_union, - ACTIONS(2459), 1, - anon_sym_BANG, - ACTIONS(2461), 1, - anon_sym_COLON_COLON, - ACTIONS(2463), 1, - anon_sym_AMP, - ACTIONS(2465), 1, - anon_sym_dyn, - ACTIONS(2471), 1, - sym_metavariable, - STATE(762), 1, - sym_scoped_type_identifier, - STATE(1001), 1, - sym_generic_type, - STATE(1107), 1, - sym__type, - STATE(1190), 1, - sym_for_lifetimes, - STATE(2269), 1, - sym_scoped_identifier, - STATE(2321), 1, - sym_lifetime, - STATE(2375), 1, - sym_function_modifiers, - STATE(2474), 1, - sym_bracketed_type, - STATE(2475), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1551), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2469), 3, - sym_self, - sym_super, - sym_crate, - STATE(1046), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2449), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [1032] = 32, + [1103] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -72160,57 +72469,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1375), 1, + STATE(1704), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72222,7 +72531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72240,7 +72549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1161] = 32, + [1232] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -72257,57 +72566,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2053), 1, + STATE(1703), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72319,7 +72628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72337,7 +72646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1290] = 32, + [1361] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -72354,154 +72663,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1386), 1, + STATE(2179), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1551), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1370), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [1419] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2443), 1, - anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_STAR, - ACTIONS(2451), 1, - anon_sym_default, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2455), 1, - anon_sym_impl, - ACTIONS(2457), 1, - anon_sym_union, - ACTIONS(2459), 1, - anon_sym_BANG, - ACTIONS(2461), 1, - anon_sym_COLON_COLON, - ACTIONS(2463), 1, - anon_sym_AMP, - ACTIONS(2465), 1, - anon_sym_dyn, - ACTIONS(2471), 1, - sym_metavariable, - STATE(762), 1, - sym_scoped_type_identifier, - STATE(1001), 1, - sym_generic_type, - STATE(1065), 1, - sym__type, - STATE(1190), 1, - sym_for_lifetimes, - STATE(2269), 1, - sym_scoped_identifier, - STATE(2321), 1, + STATE(2479), 1, sym_lifetime, - STATE(2375), 1, - sym_function_modifiers, - STATE(2474), 1, - sym_bracketed_type, - STATE(2475), 1, - sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1046), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72513,7 +72725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2449), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72531,7 +72743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1548] = 32, + [1490] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -72548,57 +72760,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1604), 1, + STATE(1621), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72610,7 +72822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72628,7 +72840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1677] = 32, + [1619] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -72645,57 +72857,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1683), 1, + STATE(1687), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72707,7 +72919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72725,74 +72937,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1806] = 32, + [1748] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_STAR, - ACTIONS(2451), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2455), 1, - anon_sym_impl, - ACTIONS(2457), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(2459), 1, - anon_sym_BANG, - ACTIONS(2461), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2463), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2465), 1, - anon_sym_dyn, - ACTIONS(2471), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(762), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1194), 1, + sym_for_lifetimes, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1001), 1, + STATE(1361), 1, sym_generic_type, - STATE(1063), 1, + STATE(1969), 1, sym__type, - STATE(1190), 1, - sym_for_lifetimes, - STATE(2269), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2321), 1, - sym_lifetime, - STATE(2375), 1, - sym_function_modifiers, - STATE(2474), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2475), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, + STATE(2473), 1, + sym_function_modifiers, + STATE(2479), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1046), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72804,7 +73016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2449), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72822,7 +73034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1935] = 32, + [1877] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -72839,57 +73051,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1571), 1, + STATE(2068), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72901,7 +73113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72919,7 +73131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2064] = 32, + [2006] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -72936,57 +73148,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1667), 1, + STATE(1681), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72998,7 +73210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73016,74 +73228,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2193] = 32, + [2135] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_STAR, - ACTIONS(2451), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2455), 1, - anon_sym_impl, - ACTIONS(2457), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(2459), 1, - anon_sym_BANG, - ACTIONS(2461), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2463), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2465), 1, - anon_sym_dyn, - ACTIONS(2471), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(762), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1194), 1, + sym_for_lifetimes, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1001), 1, + STATE(1361), 1, sym_generic_type, - STATE(1110), 1, + STATE(1385), 1, sym__type, - STATE(1190), 1, - sym_for_lifetimes, - STATE(2269), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2321), 1, - sym_lifetime, - STATE(2375), 1, - sym_function_modifiers, - STATE(2474), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2475), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, + STATE(2473), 1, + sym_function_modifiers, + STATE(2479), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1046), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73095,7 +73307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2449), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73113,7 +73325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2322] = 33, + [2264] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73130,58 +73342,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(2520), 1, - sym_self, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1375), 1, + STATE(1680), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(892), 2, - sym_super, - sym_crate, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - STATE(1370), 11, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73193,7 +73404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73211,7 +73422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2453] = 32, + [2393] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73228,57 +73439,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2180), 1, - sym_scoped_identifier, - STATE(2187), 1, + STATE(1397), 1, sym__type, - STATE(2367), 1, + STATE(2194), 1, + sym_scoped_identifier, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73290,7 +73501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73308,7 +73519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2582] = 32, + [2522] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73325,57 +73536,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2073), 1, + STATE(1685), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73387,7 +73598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73405,7 +73616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2711] = 32, + [2651] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73422,57 +73633,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, + ACTIONS(2295), 1, + sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(2522), 1, - sym_identifier, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1483), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1671), 1, - sym__type, - STATE(1672), 1, + STATE(1361), 1, sym_generic_type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2199), 1, + sym__type, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73484,7 +73695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73502,7 +73713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2840] = 32, + [2780] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73519,57 +73730,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1660), 1, + STATE(1684), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73581,7 +73792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73599,74 +73810,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2969] = 32, + [2909] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_STAR, - ACTIONS(2451), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2455), 1, - anon_sym_impl, - ACTIONS(2457), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(2459), 1, - anon_sym_BANG, - ACTIONS(2461), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2463), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2465), 1, - anon_sym_dyn, - ACTIONS(2471), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(762), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1194), 1, + sym_for_lifetimes, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1001), 1, + STATE(1361), 1, sym_generic_type, - STATE(1113), 1, + STATE(1945), 1, sym__type, - STATE(1190), 1, - sym_for_lifetimes, - STATE(2269), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2321), 1, - sym_lifetime, - STATE(2375), 1, - sym_function_modifiers, - STATE(2474), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2475), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, + STATE(2473), 1, + sym_function_modifiers, + STATE(2479), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1046), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73678,7 +73889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2449), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73696,7 +73907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3098] = 32, + [3038] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73713,57 +73924,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1658), 1, + STATE(2086), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73775,7 +73986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73793,7 +74004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3227] = 32, + [3167] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73810,57 +74021,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1394), 1, + STATE(1664), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73872,7 +74083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73890,7 +74101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3356] = 32, + [3296] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73907,57 +74118,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2172), 1, + STATE(1811), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73969,7 +74180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73987,7 +74198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3485] = 32, + [3425] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74004,57 +74215,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1941), 1, + STATE(1660), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74066,7 +74277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74084,7 +74295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3614] = 32, + [3554] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74101,154 +74312,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, - anon_sym_LBRACK, - ACTIONS(880), 1, - anon_sym_default, - ACTIONS(882), 1, - anon_sym_union, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(888), 1, - anon_sym_AMP, - ACTIONS(894), 1, - sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(1191), 1, - sym_for_lifetimes, - STATE(1319), 1, - sym_scoped_type_identifier, - STATE(1362), 1, - sym_generic_type, - STATE(2180), 1, - sym_scoped_identifier, - STATE(2272), 1, - sym__type, - STATE(2367), 1, - sym_bracketed_type, - STATE(2368), 1, - sym_generic_type_with_turbofish, - STATE(2432), 1, - sym_function_modifiers, - STATE(2467), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1551), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1370), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(878), 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, - [3743] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2095), 1, + STATE(2184), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74260,7 +74374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74278,7 +74392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3872] = 32, + [3683] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74295,57 +74409,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1689), 1, + STATE(1378), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74357,7 +74471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74375,7 +74489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4001] = 32, + [3812] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74392,57 +74506,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1373), 1, + STATE(1950), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74454,7 +74568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74472,7 +74586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4130] = 32, + [3941] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74489,57 +74603,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2124), 1, + STATE(2075), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74551,7 +74665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74569,74 +74683,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4259] = 32, + [4070] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(2447), 1, + anon_sym_STAR, + ACTIONS(2451), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(1191), 1, - sym_for_lifetimes, - STATE(1319), 1, + STATE(772), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(933), 1, sym_generic_type, - STATE(2096), 1, + STATE(1117), 1, sym__type, - STATE(2180), 1, + STATE(1191), 1, + sym_for_lifetimes, + STATE(2283), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2336), 1, + sym_lifetime, + STATE(2387), 1, + sym_function_modifiers, + STATE(2486), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2487), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, - sym_function_modifiers, - STATE(2467), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1100), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74648,7 +74762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(2449), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74666,7 +74780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4388] = 32, + [4199] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74683,57 +74797,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1657), 1, + STATE(1699), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74745,7 +74859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74763,7 +74877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4517] = 32, + [4328] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74780,57 +74894,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1654), 1, + STATE(2114), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74842,7 +74956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74860,7 +74974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4646] = 32, + [4457] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74877,57 +74991,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1919), 1, + STATE(1655), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74939,7 +75053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74957,7 +75071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4775] = 32, + [4586] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74974,57 +75088,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, STATE(1651), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75036,7 +75150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75054,7 +75168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4904] = 32, + [4715] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75071,57 +75185,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2180), 1, - sym_scoped_identifier, - STATE(2294), 1, + STATE(2163), 1, sym__type, - STATE(2367), 1, + STATE(2194), 1, + sym_scoped_identifier, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75133,7 +75247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75151,7 +75265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5033] = 32, + [4844] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75168,57 +75282,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1619), 1, + STATE(1649), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75230,7 +75344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75248,7 +75362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5162] = 32, + [4973] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75265,57 +75379,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1915), 1, + STATE(2046), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75327,7 +75441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75345,7 +75459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5291] = 32, + [5102] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75362,57 +75476,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1771), 1, + STATE(1607), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75424,7 +75538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75442,7 +75556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5420] = 32, + [5231] = 33, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75459,57 +75573,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + ACTIONS(2520), 1, + sym_self, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1909), 1, + STATE(1385), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + ACTIONS(888), 2, + sym_super, + sym_crate, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75521,7 +75636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75539,7 +75654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5549] = 32, + [5362] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75556,57 +75671,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2102), 1, + STATE(2016), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75618,7 +75733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75636,7 +75751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5678] = 32, + [5491] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75653,57 +75768,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, + ACTIONS(2295), 1, + sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(2524), 1, - sym_identifier, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1478), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1617), 1, + STATE(1361), 1, sym_generic_type, - STATE(1630), 1, - sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2288), 1, + sym__type, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75715,7 +75830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75733,74 +75848,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5807] = 32, + [5620] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_STAR, - ACTIONS(2451), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2455), 1, - anon_sym_impl, - ACTIONS(2457), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(2459), 1, - anon_sym_BANG, - ACTIONS(2461), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2463), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2465), 1, - anon_sym_dyn, - ACTIONS(2471), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(762), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1194), 1, + sym_for_lifetimes, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1001), 1, + STATE(1361), 1, sym_generic_type, - STATE(1094), 1, + STATE(1697), 1, sym__type, - STATE(1190), 1, - sym_for_lifetimes, - STATE(2269), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2321), 1, - sym_lifetime, - STATE(2375), 1, - sym_function_modifiers, - STATE(2474), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2475), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, + STATE(2473), 1, + sym_function_modifiers, + STATE(2479), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1046), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75812,7 +75927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2449), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75830,7 +75945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5936] = 32, + [5749] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75847,57 +75962,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1824), 1, + STATE(1944), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75909,7 +76024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75927,7 +76042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6065] = 32, + [5878] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75944,57 +76059,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2295), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2522), 1, sym_identifier, + STATE(1194), 1, + sym_for_lifetimes, + STATE(1519), 1, + sym_scoped_type_identifier, + STATE(1674), 1, + sym__type, + STATE(1675), 1, + sym_generic_type, + STATE(2194), 1, + sym_scoped_identifier, + STATE(2379), 1, + sym_bracketed_type, + STATE(2380), 1, + sym_generic_type_with_turbofish, + STATE(2473), 1, + sym_function_modifiers, + STATE(2479), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1548), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(1395), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(874), 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, + [6007] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(868), 1, + anon_sym_LPAREN, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(876), 1, + anon_sym_default, + ACTIONS(878), 1, + anon_sym_union, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(884), 1, + anon_sym_AMP, + ACTIONS(890), 1, + sym_metavariable, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + ACTIONS(2524), 1, + sym_identifier, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1493), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1620), 1, sym_generic_type, - STATE(2146), 1, + STATE(1627), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76006,7 +76218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76024,7 +76236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6194] = 32, + [6136] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76041,57 +76253,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2104), 1, + STATE(2154), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76103,7 +76315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76121,7 +76333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6323] = 32, + [6265] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76138,57 +76350,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1646), 1, + STATE(1993), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76200,7 +76412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76218,7 +76430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6452] = 32, + [6394] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76235,57 +76447,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2097), 1, + STATE(1823), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76297,7 +76509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76315,7 +76527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6581] = 32, + [6523] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76332,57 +76544,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1618), 1, + STATE(2116), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76394,7 +76606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76412,7 +76624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6710] = 32, + [6652] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76429,57 +76641,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1616), 1, + STATE(1922), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76491,7 +76703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76509,7 +76721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6839] = 32, + [6781] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76526,57 +76738,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2043), 1, + STATE(2109), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76588,7 +76800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76606,74 +76818,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6968] = 32, + [6910] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_STAR, - ACTIONS(2451), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2455), 1, - anon_sym_impl, - ACTIONS(2457), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(2459), 1, - anon_sym_BANG, - ACTIONS(2461), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2463), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2465), 1, - anon_sym_dyn, - ACTIONS(2471), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(762), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1194), 1, + sym_for_lifetimes, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1001), 1, + STATE(1361), 1, sym_generic_type, - STATE(1096), 1, + STATE(1624), 1, sym__type, - STATE(1190), 1, - sym_for_lifetimes, - STATE(2269), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2321), 1, - sym_lifetime, - STATE(2375), 1, - sym_function_modifiers, - STATE(2474), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2475), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, + STATE(2473), 1, + sym_function_modifiers, + STATE(2479), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1046), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76685,7 +76897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2449), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76703,7 +76915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7097] = 32, + [7039] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76720,57 +76932,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1687), 1, + STATE(1622), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76782,7 +76994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76800,7 +77012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7226] = 32, + [7168] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76817,57 +77029,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2065), 1, + STATE(1777), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76879,7 +77091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76897,7 +77109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7355] = 32, + [7297] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76914,57 +77126,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2180), 1, - sym_scoped_identifier, - STATE(2229), 1, + STATE(1695), 1, sym__type, - STATE(2367), 1, + STATE(2194), 1, + sym_scoped_identifier, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76976,7 +77188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76994,7 +77206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7484] = 32, + [7426] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77011,57 +77223,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1770), 1, + STATE(1853), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77073,7 +77285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77091,7 +77303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7613] = 32, + [7555] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77108,57 +77320,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1872), 1, + STATE(2077), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77170,7 +77382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77188,7 +77400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7742] = 32, + [7684] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77205,57 +77417,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1645), 1, + STATE(1384), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77267,7 +77479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77285,74 +77497,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7871] = 32, + [7813] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_STAR, - ACTIONS(2451), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2455), 1, - anon_sym_impl, - ACTIONS(2457), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(2459), 1, - anon_sym_BANG, - ACTIONS(2461), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2463), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2465), 1, - anon_sym_dyn, - ACTIONS(2471), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(762), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1194), 1, + sym_for_lifetimes, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1001), 1, + STATE(1361), 1, sym_generic_type, - STATE(1061), 1, + STATE(1774), 1, sym__type, - STATE(1190), 1, - sym_for_lifetimes, - STATE(2269), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2321), 1, - sym_lifetime, - STATE(2375), 1, - sym_function_modifiers, - STATE(2474), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2475), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, + STATE(2473), 1, + sym_function_modifiers, + STATE(2479), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1046), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77364,7 +77576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2449), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77382,7 +77594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8000] = 32, + [7942] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77399,57 +77611,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1581), 1, + STATE(2060), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77461,7 +77673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77479,7 +77691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8129] = 32, + [8071] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77496,57 +77708,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, + ACTIONS(2295), 1, + sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(2526), 1, - sym_identifier, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1509), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1605), 1, + STATE(1361), 1, sym_generic_type, - STATE(1607), 1, + STATE(1935), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77558,7 +77770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77576,7 +77788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8258] = 32, + [8200] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77593,57 +77805,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2025), 1, + STATE(1986), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77655,7 +77867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77673,7 +77885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8387] = 32, + [8329] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(672), 1, @@ -77708,28 +77920,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dyn, ACTIONS(2471), 1, sym_metavariable, - STATE(762), 1, + STATE(772), 1, sym_scoped_type_identifier, - STATE(1001), 1, + STATE(933), 1, sym_generic_type, - STATE(1057), 1, + STATE(1116), 1, sym__type, - STATE(1190), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(2269), 1, + STATE(2283), 1, sym_scoped_identifier, - STATE(2321), 1, + STATE(2336), 1, sym_lifetime, - STATE(2375), 1, + STATE(2387), 1, sym_function_modifiers, - STATE(2474), 1, + STATE(2486), 1, sym_bracketed_type, - STATE(2475), 1, + STATE(2487), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, @@ -77740,7 +77952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1046), 11, + STATE(1100), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77770,7 +77982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8516] = 32, + [8458] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77787,57 +77999,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1807), 1, + STATE(1576), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77849,7 +78061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77867,7 +78079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8645] = 32, + [8587] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77884,57 +78096,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1690), 1, + STATE(1851), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77946,7 +78158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77964,7 +78176,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8774] = 32, + [8716] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + ACTIONS(2447), 1, + anon_sym_STAR, + ACTIONS(2451), 1, + anon_sym_default, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, + anon_sym_union, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, + anon_sym_COLON_COLON, + ACTIONS(2463), 1, + anon_sym_AMP, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, + sym_metavariable, + STATE(772), 1, + sym_scoped_type_identifier, + STATE(933), 1, + sym_generic_type, + STATE(1091), 1, + sym__type, + STATE(1191), 1, + sym_for_lifetimes, + STATE(2283), 1, + sym_scoped_identifier, + STATE(2336), 1, + sym_lifetime, + STATE(2387), 1, + sym_function_modifiers, + STATE(2486), 1, + sym_bracketed_type, + STATE(2487), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1548), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2469), 3, + sym_self, + sym_super, + sym_crate, + STATE(1100), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2449), 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, + [8845] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77981,57 +78290,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1613), 1, + STATE(1396), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78043,7 +78352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78061,7 +78370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8903] = 32, + [8974] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78078,57 +78387,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2180), 1, - sym_scoped_identifier, - STATE(2201), 1, + STATE(1926), 1, sym__type, - STATE(2367), 1, + STATE(2194), 1, + sym_scoped_identifier, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78140,7 +78449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78158,7 +78467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9032] = 32, + [9103] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78175,57 +78484,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1606), 1, + STATE(1679), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78237,7 +78546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78255,74 +78564,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9161] = 32, + [9232] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(2447), 1, + anon_sym_STAR, + ACTIONS(2451), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, sym_metavariable, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2528), 1, - sym_identifier, - STATE(1191), 1, - sym_for_lifetimes, - STATE(1487), 1, + STATE(772), 1, sym_scoped_type_identifier, - STATE(1622), 1, + STATE(933), 1, sym_generic_type, - STATE(1697), 1, + STATE(1044), 1, sym__type, - STATE(2180), 1, + STATE(1191), 1, + sym_for_lifetimes, + STATE(2283), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2336), 1, + sym_lifetime, + STATE(2387), 1, + sym_function_modifiers, + STATE(2486), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2487), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, - sym_function_modifiers, - STATE(2467), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1100), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78334,7 +78643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(2449), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78352,7 +78661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9290] = 32, + [9361] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78369,57 +78678,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + ACTIONS(2526), 1, + sym_identifier, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1496), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1628), 1, sym_generic_type, - STATE(1383), 1, + STATE(1702), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78431,7 +78740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78449,7 +78758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9419] = 32, + [9490] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78466,57 +78775,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2018), 1, + STATE(1880), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78528,7 +78837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78546,7 +78855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9548] = 32, + [9619] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78563,57 +78872,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1383), 1, + STATE(1390), 1, sym__type, - STATE(1385), 1, - sym_lifetime, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, + STATE(2479), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78625,7 +78934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78643,7 +78952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9677] = 32, + [9748] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78660,57 +78969,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1698), 1, + STATE(2030), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78722,7 +79031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78740,7 +79049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9806] = 32, + [9877] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78757,57 +79066,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2180), 1, - sym_scoped_identifier, - STATE(2216), 1, + STATE(2146), 1, sym__type, - STATE(2367), 1, + STATE(2194), 1, + sym_scoped_identifier, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78819,7 +79128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78837,7 +79146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9935] = 32, + [10006] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78854,57 +79163,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1847), 1, + STATE(1654), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78916,7 +79225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78934,74 +79243,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10064] = 32, + [10135] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(2447), 1, + anon_sym_STAR, + ACTIONS(2451), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(1191), 1, - sym_for_lifetimes, - STATE(1319), 1, + STATE(772), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(933), 1, sym_generic_type, - STATE(1846), 1, + STATE(1041), 1, sym__type, - STATE(2180), 1, + STATE(1191), 1, + sym_for_lifetimes, + STATE(2283), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2336), 1, + sym_lifetime, + STATE(2387), 1, + sym_function_modifiers, + STATE(2486), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2487), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, - sym_function_modifiers, - STATE(2467), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1100), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79013,7 +79322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(2449), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79031,7 +79340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10193] = 32, + [10264] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79048,57 +79357,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2071), 1, - sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2219), 1, + sym__type, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79110,7 +79419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79128,7 +79437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10322] = 32, + [10393] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79145,57 +79454,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1768), 1, - sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2202), 1, + sym__type, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79207,7 +79516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79225,7 +79534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10451] = 32, + [10522] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79242,57 +79551,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1656), 1, - sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2204), 1, + sym__type, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79304,7 +79613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79322,7 +79631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10580] = 32, + [10651] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79339,57 +79648,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1641), 1, + STATE(1952), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79401,7 +79710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79419,74 +79728,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10709] = 32, + [10780] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(2447), 1, + anon_sym_STAR, + ACTIONS(2451), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(1191), 1, - sym_for_lifetimes, - STATE(1319), 1, + STATE(772), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(933), 1, sym_generic_type, - STATE(2049), 1, + STATE(1039), 1, sym__type, - STATE(2180), 1, + STATE(1191), 1, + sym_for_lifetimes, + STATE(2283), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2336), 1, + sym_lifetime, + STATE(2387), 1, + sym_function_modifiers, + STATE(2486), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2487), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, - sym_function_modifiers, - STATE(2467), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1100), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79498,7 +79807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(2449), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79516,7 +79825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10838] = 32, + [10909] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79533,57 +79842,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1940), 1, + STATE(1667), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79595,7 +79904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79613,7 +79922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10967] = 32, + [11038] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79630,57 +79939,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1681), 1, + STATE(2107), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79692,7 +80001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79710,7 +80019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11096] = 32, + [11167] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(672), 1, @@ -79745,28 +80054,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dyn, ACTIONS(2471), 1, sym_metavariable, - STATE(762), 1, + STATE(772), 1, sym_scoped_type_identifier, - STATE(1001), 1, + STATE(933), 1, sym_generic_type, - STATE(1124), 1, + STATE(1131), 1, sym__type, - STATE(1190), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(2269), 1, + STATE(2283), 1, sym_scoped_identifier, - STATE(2321), 1, + STATE(2336), 1, sym_lifetime, - STATE(2375), 1, + STATE(2387), 1, sym_function_modifiers, - STATE(2474), 1, + STATE(2486), 1, sym_bracketed_type, - STATE(2475), 1, + STATE(2487), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, @@ -79777,7 +80086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1046), 11, + STATE(1100), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79807,7 +80116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11225] = 32, + [11296] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79824,57 +80133,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1382), 1, + STATE(1682), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79886,7 +80195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79904,74 +80213,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11354] = 32, + [11425] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(2447), 1, + anon_sym_STAR, + ACTIONS(2451), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(1191), 1, - sym_for_lifetimes, - STATE(1319), 1, + STATE(772), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(933), 1, sym_generic_type, - STATE(2180), 1, - sym_scoped_identifier, - STATE(2242), 1, + STATE(1134), 1, sym__type, - STATE(2367), 1, + STATE(1191), 1, + sym_for_lifetimes, + STATE(2283), 1, + sym_scoped_identifier, + STATE(2336), 1, + sym_lifetime, + STATE(2387), 1, + sym_function_modifiers, + STATE(2486), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2487), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, - sym_function_modifiers, - STATE(2467), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1100), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79983,7 +80292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(2449), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80001,7 +80310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11483] = 32, + [11554] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80018,57 +80327,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1655), 1, + STATE(2058), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80080,50 +80389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 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, - [11612] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1852), 20, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1854), 42, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80141,31 +80407,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, [11683] = 32, ACTIONS(77), 1, anon_sym_LT, @@ -80183,57 +80424,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1993), 1, + STATE(2025), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80245,7 +80486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80280,57 +80521,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1980), 1, + STATE(1382), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80342,7 +80583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80377,57 +80618,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1379), 1, + STATE(1663), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80439,7 +80680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80474,57 +80715,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1380), 1, + STATE(2043), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80536,7 +80777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80557,71 +80798,71 @@ static const uint16_t ts_small_parse_table[] = { [12199] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(2447), 1, + anon_sym_STAR, + ACTIONS(2451), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(1191), 1, - sym_for_lifetimes, - STATE(1319), 1, + STATE(772), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(933), 1, sym_generic_type, - STATE(2103), 1, + STATE(1125), 1, sym__type, - STATE(2180), 1, + STATE(1191), 1, + sym_for_lifetimes, + STATE(2283), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2336), 1, + sym_lifetime, + STATE(2387), 1, + sym_function_modifiers, + STATE(2486), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2487), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, - sym_function_modifiers, - STATE(2467), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1100), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80633,7 +80874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(2449), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80668,57 +80909,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1692), 1, + STATE(1612), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80730,7 +80971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80765,57 +81006,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1387), 1, + STATE(1379), 1, + sym_lifetime, + STATE(1382), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80827,7 +81068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80848,71 +81089,71 @@ static const uint16_t ts_small_parse_table[] = { [12586] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(2447), 1, + anon_sym_STAR, + ACTIONS(2451), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(1191), 1, - sym_for_lifetimes, - STATE(1319), 1, + STATE(772), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(933), 1, sym_generic_type, - STATE(1384), 1, + STATE(1073), 1, sym__type, - STATE(2180), 1, + STATE(1191), 1, + sym_for_lifetimes, + STATE(2283), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2336), 1, + sym_lifetime, + STATE(2387), 1, + sym_function_modifiers, + STATE(2486), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2487), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, - sym_function_modifiers, - STATE(2467), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1100), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80924,7 +81165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(2449), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80959,57 +81200,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1674), 1, - sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2216), 1, + sym__type, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81021,7 +81262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81056,57 +81297,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1378), 1, + STATE(1689), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81118,7 +81359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81139,71 +81380,71 @@ static const uint16_t ts_small_parse_table[] = { [12973] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2439), 1, + sym_identifier, + ACTIONS(2441), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(2447), 1, + anon_sym_STAR, + ACTIONS(2451), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2455), 1, + anon_sym_impl, + ACTIONS(2457), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(2459), 1, + anon_sym_BANG, + ACTIONS(2461), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(2463), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(2465), 1, + anon_sym_dyn, + ACTIONS(2471), 1, sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(1191), 1, - sym_for_lifetimes, - STATE(1319), 1, + STATE(772), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(933), 1, sym_generic_type, - STATE(1926), 1, + STATE(1122), 1, sym__type, - STATE(2180), 1, + STATE(1191), 1, + sym_for_lifetimes, + STATE(2283), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2336), 1, + sym_lifetime, + STATE(2387), 1, + sym_function_modifiers, + STATE(2486), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2487), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, - sym_function_modifiers, - STATE(2467), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1100), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81215,7 +81456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(2449), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81250,57 +81491,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2023), 1, + STATE(1863), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81312,7 +81553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81347,57 +81588,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1679), 1, - sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2207), 1, + sym__type, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81409,7 +81650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81444,57 +81685,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(1989), 1, + STATE(1613), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81506,7 +81747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81541,57 +81782,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2032), 1, + STATE(1648), 1, sym__type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81603,7 +81844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81624,71 +81865,71 @@ static const uint16_t ts_small_parse_table[] = { [13618] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_STAR, - ACTIONS(2451), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2455), 1, - anon_sym_impl, - ACTIONS(2457), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(2459), 1, - anon_sym_BANG, - ACTIONS(2461), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2463), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2465), 1, - anon_sym_dyn, - ACTIONS(2471), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(762), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1194), 1, + sym_for_lifetimes, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1001), 1, + STATE(1361), 1, sym_generic_type, - STATE(1044), 1, + STATE(1652), 1, sym__type, - STATE(1190), 1, - sym_for_lifetimes, - STATE(2269), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2321), 1, - sym_lifetime, - STATE(2375), 1, - sym_function_modifiers, - STATE(2474), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2475), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, + STATE(2473), 1, + sym_function_modifiers, + STATE(2479), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1046), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81700,7 +81941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2449), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81721,71 +81962,71 @@ static const uint16_t ts_small_parse_table[] = { [13747] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_STAR, - ACTIONS(2451), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2455), 1, - anon_sym_impl, - ACTIONS(2457), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(2459), 1, - anon_sym_BANG, - ACTIONS(2461), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2463), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(2465), 1, - anon_sym_dyn, - ACTIONS(2471), 1, + ACTIONS(890), 1, sym_metavariable, - STATE(762), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1194), 1, + sym_for_lifetimes, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1001), 1, + STATE(1361), 1, sym_generic_type, - STATE(1117), 1, + STATE(1809), 1, sym__type, - STATE(1190), 1, - sym_for_lifetimes, - STATE(2269), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2321), 1, - sym_lifetime, - STATE(2375), 1, - sym_function_modifiers, - STATE(2474), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2475), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, + STATE(2473), 1, + sym_function_modifiers, + STATE(2479), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1046), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81797,7 +82038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2449), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81832,57 +82073,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + ACTIONS(2528), 1, + sym_identifier, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1522), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1641), 1, + sym__type, + STATE(1693), 1, sym_generic_type, - STATE(2180), 1, + STATE(2194), 1, sym_scoped_identifier, - STATE(2193), 1, - sym__type, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81894,7 +82135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81929,57 +82170,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(872), 1, + ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(880), 1, + ACTIONS(876), 1, anon_sym_default, - ACTIONS(882), 1, + ACTIONS(878), 1, anon_sym_union, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(888), 1, + ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(894), 1, + ACTIONS(890), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1319), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1361), 1, sym_generic_type, - STATE(2180), 1, - sym_scoped_identifier, - STATE(2195), 1, + STATE(1377), 1, sym__type, - STATE(2367), 1, + STATE(2194), 1, + sym_scoped_identifier, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2467), 1, + STATE(2479), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(1370), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81991,7 +82232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(878), 17, + ACTIONS(874), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82013,26 +82254,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(522), 18, + ACTIONS(850), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_BANG, + anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2530), 39, + ACTIONS(848), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82064,6 +82304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, + anon_sym_DASH, anon_sym_yield, anon_sym_move, anon_sym_true, @@ -82076,7 +82317,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 17, + ACTIONS(2532), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -82094,7 +82335,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2532), 40, + ACTIONS(2530), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82139,25 +82380,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(850), 17, + ACTIONS(494), 18, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_BANG, - anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(848), 40, + ACTIONS(2534), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82189,7 +82431,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, - anon_sym_DASH, anon_sym_yield, anon_sym_move, anon_sym_true, @@ -82329,9 +82570,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(2550), 1, anon_sym_LT2, - STATE(824), 1, + STATE(976), 1, sym_type_arguments, - STATE(832), 1, + STATE(989), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -82388,9 +82629,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(2550), 1, anon_sym_LT2, - STATE(824), 1, + STATE(976), 1, sym_type_arguments, - STATE(832), 1, + STATE(989), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -82447,9 +82688,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(2550), 1, anon_sym_LT2, - STATE(824), 1, + STATE(976), 1, sym_type_arguments, - STATE(832), 1, + STATE(989), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -82499,72 +82740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14664] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1470), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1472), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14720] = 7, - ACTIONS(2546), 1, + [14664] = 5, + ACTIONS(2564), 1, anon_sym_BANG, - ACTIONS(2560), 1, - anon_sym_LBRACE, - ACTIONS(2562), 1, + ACTIONS(2566), 1, anon_sym_COLON_COLON, - STATE(1131), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(422), 15, + ACTIONS(2562), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82575,15 +82759,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(424), 28, + ACTIONS(2560), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -82592,12 +82779,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -82607,21 +82794,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14784] = 7, - ACTIONS(2542), 1, - anon_sym_LPAREN, - ACTIONS(2550), 1, - anon_sym_LT2, - STATE(802), 1, - sym_type_arguments, - STATE(877), 1, - sym_parameters, + [14724] = 5, + ACTIONS(2572), 1, + anon_sym_BANG, + ACTIONS(2574), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2566), 17, + ACTIONS(2570), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82639,8 +82821,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2564), 26, + ACTIONS(2568), 28, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -82651,6 +82834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -82666,25 +82850,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14848] = 6, - ACTIONS(2574), 1, - anon_sym_BANG, - ACTIONS(2576), 1, - anon_sym_COLON_COLON, + [14784] = 7, + ACTIONS(2542), 1, + anon_sym_LPAREN, + ACTIONS(2550), 1, + anon_sym_LT2, + STATE(978), 1, + sym_type_arguments, + STATE(993), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2572), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(2570), 16, + ACTIONS(2578), 17, anon_sym_PLUS, anon_sym_STAR, - anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -82693,24 +82873,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2568), 23, + ACTIONS(2576), 26, anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -82720,74 +82906,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14910] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1848), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LT, + [14848] = 5, + ACTIONS(2584), 1, + anon_sym_BANG, + ACTIONS(2586), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1850), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14966] = 7, - ACTIONS(2542), 1, - anon_sym_LPAREN, - ACTIONS(2550), 1, - anon_sym_LT2, - STATE(802), 1, - sym_type_arguments, - STATE(877), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 17, + ACTIONS(2582), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82805,8 +82933,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2578), 26, + ACTIONS(2580), 28, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -82817,6 +82946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -82832,17 +82962,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15030] = 5, - ACTIONS(2586), 1, + [14908] = 6, + ACTIONS(2594), 1, anon_sym_BANG, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 17, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(2590), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -82851,32 +82989,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2582), 28, + ACTIONS(2588), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -82886,16 +83016,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15090] = 5, - ACTIONS(2594), 1, + [14970] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1844), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1846), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15026] = 7, + ACTIONS(2546), 1, anon_sym_BANG, - ACTIONS(2596), 1, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(2600), 1, anon_sym_COLON_COLON, + STATE(1055), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 17, + ACTIONS(486), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82906,18 +83094,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2590), 28, + ACTIONS(484), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -82926,12 +83111,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -82941,16 +83126,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15150] = 5, - ACTIONS(2602), 1, - anon_sym_BANG, - ACTIONS(2604), 1, - anon_sym_COLON_COLON, + [15090] = 7, + ACTIONS(2542), 1, + anon_sym_LPAREN, + ACTIONS(2550), 1, + anon_sym_LT2, + STATE(978), 1, + sym_type_arguments, + STATE(993), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 17, + ACTIONS(2604), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82968,9 +83158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2598), 28, + ACTIONS(2602), 26, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -82981,7 +83170,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -82997,11 +83185,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, + [15154] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1474), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1476), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, [15210] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1250), 9, + ACTIONS(1242), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83011,7 +83252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1252), 38, + ACTIONS(1244), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83109,7 +83350,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1314), 9, + ACTIONS(1306), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83119,7 +83360,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1316), 38, + ACTIONS(1308), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15382] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1186), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1188), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83158,14 +83452,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15382] = 7, + [15438] = 7, ACTIONS(2542), 1, anon_sym_LPAREN, ACTIONS(2550), 1, anon_sym_LT2, - STATE(802), 1, + STATE(978), 1, sym_type_arguments, - STATE(877), 1, + STATE(993), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -83215,66 +83509,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15446] = 3, + [15502] = 5, + ACTIONS(2622), 1, + anon_sym_SQUOTE, + STATE(1071), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1186), 9, + ACTIONS(2620), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2618), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15561] = 4, + ACTIONS(2624), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2572), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2574), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1188), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15502] = 4, - ACTIONS(2618), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15618] = 5, + ACTIONS(2626), 1, + anon_sym_else, + STATE(1052), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(400), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(398), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15677] = 4, + ACTIONS(2628), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 16, + ACTIONS(2584), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -83291,7 +83693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2612), 29, + ACTIONS(2586), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83321,13 +83723,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15559] = 4, - ACTIONS(2620), 1, - anon_sym_LBRACE, + [15734] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 16, + ACTIONS(2584), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -83344,10 +83744,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2604), 29, + ACTIONS(2586), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83374,13 +83775,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15616] = 4, - ACTIONS(2622), 1, + [15789] = 4, + ACTIONS(2630), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2594), 16, + ACTIONS(2610), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -83397,7 +83798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2596), 29, + ACTIONS(2612), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83427,11 +83828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15673] = 3, + [15846] = 4, + ACTIONS(2632), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2594), 16, + ACTIONS(2564), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -83448,11 +83851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2596), 30, + ACTIONS(2566), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83479,16 +83881,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15728] = 4, - ACTIONS(2624), 1, - anon_sym_LBRACE, + [15903] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1736), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1738), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15957] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1486), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1488), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16011] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1884), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1886), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16065] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1878), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1880), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16119] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1856), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1858), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16173] = 5, + ACTIONS(2596), 1, + anon_sym_COLON_COLON, + ACTIONS(2634), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 16, + ACTIONS(2590), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83502,7 +84160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2588), 29, + ACTIONS(2588), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83513,7 +84171,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -83532,172 +84189,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15785] = 5, - ACTIONS(2630), 1, - anon_sym_SQUOTE, - STATE(1128), 1, - sym_loop_label, + [16231] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2626), 29, + ACTIONS(1840), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15844] = 5, - ACTIONS(2632), 1, - anon_sym_else, - STATE(1047), 1, - sym_else_clause, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1842), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16285] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(398), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(396), 29, + ACTIONS(1836), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15903] = 5, - ACTIONS(2576), 1, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(2634), 1, - anon_sym_BANG, + sym_metavariable, + ACTIONS(1838), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16339] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2568), 28, + ACTIONS(1828), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15961] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1830), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16393] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(446), 7, + ACTIONS(1824), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83705,7 +84354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(448), 38, + ACTIONS(1826), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83744,11 +84393,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16015] = 3, + [16447] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1976), 7, + ACTIONS(1820), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83756,7 +84405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1978), 38, + ACTIONS(1822), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83795,11 +84444,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16069] = 3, + [16501] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1984), 7, + ACTIONS(1816), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83807,7 +84456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1986), 38, + ACTIONS(1818), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83846,11 +84495,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16123] = 3, + [16555] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1246), 7, + ACTIONS(1812), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83858,7 +84507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1248), 38, + ACTIONS(1814), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83897,11 +84546,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16177] = 3, + [16609] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1980), 7, + ACTIONS(1808), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83909,7 +84558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1982), 38, + ACTIONS(1810), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83948,11 +84597,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16231] = 3, + [16663] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1972), 7, + ACTIONS(1804), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83960,7 +84609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1974), 38, + ACTIONS(1806), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83999,113 +84648,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16285] = 3, + [16717] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2638), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2636), 30, + ACTIONS(1800), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16339] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1802), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16771] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(818), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(820), 30, + ACTIONS(1796), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16393] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1798), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16825] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1948), 7, + ACTIONS(1792), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84113,7 +84762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1950), 38, + ACTIONS(1794), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84152,11 +84801,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16447] = 3, + [16879] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1944), 7, + ACTIONS(1788), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84164,7 +84813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1946), 38, + ACTIONS(1790), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84203,11 +84852,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16501] = 3, + [16933] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1932), 7, + ACTIONS(1784), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84215,7 +84864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1934), 38, + ACTIONS(1786), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84254,62 +84903,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16555] = 3, + [16987] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2640), 30, + ACTIONS(1780), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16609] = 3, + sym_metavariable, + ACTIONS(1782), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17041] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1928), 7, + ACTIONS(1776), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84317,7 +84966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1930), 38, + ACTIONS(1778), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84356,11 +85005,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16663] = 3, + [17095] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2646), 15, + ACTIONS(818), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84376,7 +85025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2644), 30, + ACTIONS(820), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84385,10 +85034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -84407,62 +85056,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16717] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1238), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1240), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16771] = 3, + [17149] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1234), 7, + ACTIONS(1772), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84470,7 +85068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1236), 38, + ACTIONS(1774), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84509,11 +85107,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16825] = 3, + [17203] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1230), 7, + ACTIONS(1768), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84521,7 +85119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1232), 38, + ACTIONS(1770), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84560,11 +85158,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16879] = 3, + [17257] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1226), 7, + ACTIONS(1764), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84572,7 +85170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1228), 38, + ACTIONS(1766), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84611,11 +85209,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16933] = 3, + [17311] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1222), 7, + ACTIONS(1756), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84623,7 +85221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1224), 38, + ACTIONS(1758), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84662,11 +85260,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16987] = 3, + [17365] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1210), 7, + ACTIONS(1752), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84674,7 +85272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1212), 38, + ACTIONS(1754), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84713,11 +85311,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17041] = 3, + [17419] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1202), 7, + ACTIONS(1748), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84725,7 +85323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1204), 38, + ACTIONS(1750), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84764,11 +85362,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17095] = 3, + [17473] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1150), 7, + ACTIONS(1744), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84776,7 +85374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1152), 38, + ACTIONS(1746), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84815,11 +85413,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17149] = 3, + [17527] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1952), 7, + ACTIONS(1740), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84827,7 +85425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1954), 38, + ACTIONS(1742), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84866,62 +85464,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17203] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2650), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2648), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [17257] = 3, + [17581] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1074), 7, + ACTIONS(1382), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84929,7 +85476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1076), 38, + ACTIONS(1384), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84968,11 +85515,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17311] = 3, + [17635] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1174), 7, + ACTIONS(1732), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84980,7 +85527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1176), 38, + ACTIONS(1734), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85019,11 +85566,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17365] = 3, + [17689] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1956), 7, + ACTIONS(1728), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85031,7 +85578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1958), 38, + ACTIONS(1730), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85070,11 +85617,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17419] = 3, + [17743] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1960), 7, + ACTIONS(1720), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85082,7 +85629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1962), 38, + ACTIONS(1722), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85121,11 +85668,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17473] = 3, + [17797] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1166), 7, + ACTIONS(1716), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85133,7 +85680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1168), 38, + ACTIONS(1718), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85172,11 +85719,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17527] = 3, + [17851] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1162), 7, + ACTIONS(1684), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85184,7 +85731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1164), 38, + ACTIONS(1686), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85223,11 +85770,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17581] = 3, + [17905] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1964), 7, + ACTIONS(1668), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85235,7 +85782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1966), 38, + ACTIONS(1670), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85274,11 +85821,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17635] = 3, + [17959] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1158), 7, + ACTIONS(1660), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85286,7 +85833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1160), 38, + ACTIONS(1662), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85325,14 +85872,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17689] = 4, + [18013] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2654), 2, + ACTIONS(2638), 2, anon_sym_LBRACE, anon_sym_COLON_COLON, - ACTIONS(2656), 15, + ACTIONS(2640), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85348,7 +85895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2652), 28, + ACTIONS(2636), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85377,11 +85924,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17745] = 3, + [18069] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2660), 15, + ACTIONS(2644), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85397,7 +85944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2658), 30, + ACTIONS(2642), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85428,11 +85975,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17799] = 3, + [18123] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2664), 15, + ACTIONS(2648), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85448,7 +85995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2662), 30, + ACTIONS(2646), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85479,11 +86026,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17853] = 3, + [18177] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1138), 7, + ACTIONS(2652), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2650), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18231] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1640), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85491,7 +86089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1140), 38, + ACTIONS(1642), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85530,11 +86128,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17907] = 3, + [18285] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1134), 7, + ACTIONS(1632), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85542,7 +86140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1136), 38, + ACTIONS(1634), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85581,13 +86179,164 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17961] = 4, - ACTIONS(2666), 1, + [18339] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1628), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1630), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18393] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 15, + ACTIONS(1576), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1578), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18447] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1624), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1626), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18501] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2656), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85603,7 +86352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2614), 29, + ACTIONS(2654), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85615,6 +86364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85633,11 +86383,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18017] = 3, + [18555] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1126), 7, + ACTIONS(1612), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85645,7 +86395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1128), 38, + ACTIONS(1614), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85684,11 +86434,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18071] = 3, + [18609] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1912), 7, + ACTIONS(1608), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85696,7 +86446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1914), 38, + ACTIONS(1610), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85735,11 +86485,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18125] = 3, + [18663] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1122), 7, + ACTIONS(1896), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85747,7 +86497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1124), 38, + ACTIONS(1898), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85786,11 +86536,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18179] = 3, + [18717] = 4, + ACTIONS(2662), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1908), 7, + ACTIONS(2660), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2658), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18773] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1600), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85798,7 +86600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1910), 38, + ACTIONS(1602), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85837,11 +86639,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18233] = 3, + [18827] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1118), 7, + ACTIONS(1596), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85849,7 +86651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1120), 38, + ACTIONS(1598), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85888,11 +86690,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18287] = 3, + [18881] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1114), 7, + ACTIONS(1592), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85900,7 +86702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1116), 38, + ACTIONS(1594), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85939,11 +86741,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18341] = 3, + [18935] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1146), 7, + ACTIONS(1588), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85951,7 +86753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1148), 38, + ACTIONS(1590), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85990,11 +86792,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18395] = 3, + [18989] = 4, + ACTIONS(2664), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2670), 15, + ACTIONS(486), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86010,7 +86814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2668), 30, + ACTIONS(484), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86022,7 +86826,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -86041,113 +86844,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18449] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1102), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1104), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18503] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1924), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1926), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18557] = 3, + [19045] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1098), 7, + ACTIONS(1900), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86155,7 +86856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1100), 38, + ACTIONS(1902), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86194,7 +86895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18611] = 3, + [19099] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -86245,11 +86946,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18665] = 3, + [19153] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1170), 7, + ACTIONS(1580), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86257,7 +86958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1172), 38, + ACTIONS(1582), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86296,11 +86997,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18719] = 3, + [19207] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1094), 7, + ACTIONS(1908), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86308,7 +87009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1096), 38, + ACTIONS(1910), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86347,11 +87048,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18773] = 3, + [19261] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1090), 7, + ACTIONS(1568), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86359,7 +87060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1092), 38, + ACTIONS(1570), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86398,63 +87099,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18827] = 4, - ACTIONS(2676), 1, - anon_sym_DASH_GT, + [19315] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2674), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2672), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [18883] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1900), 7, + ACTIONS(1564), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86462,7 +87111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1902), 38, + ACTIONS(1566), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86501,11 +87150,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18937] = 3, + [19369] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1086), 7, + ACTIONS(1556), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86513,7 +87162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1088), 38, + ACTIONS(1558), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86552,11 +87201,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18991] = 3, + [19423] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1082), 7, + ACTIONS(1494), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86564,7 +87213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1084), 38, + ACTIONS(1496), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86603,11 +87252,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19045] = 3, + [19477] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1708), 7, + ACTIONS(1912), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86615,7 +87264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1710), 38, + ACTIONS(1914), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86654,13 +87303,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19099] = 4, - ACTIONS(2682), 1, - anon_sym_DASH_GT, + [19531] = 5, + ACTIONS(2668), 1, + anon_sym_LPAREN, + STATE(1046), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2680), 15, + ACTIONS(2670), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86676,9 +87327,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2678), 29, + ACTIONS(2666), 28, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86706,62 +87356,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19155] = 3, + [19589] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(2674), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2672), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1922), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19209] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19643] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1896), 7, + ACTIONS(1466), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86769,7 +87419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1898), 38, + ACTIONS(1468), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86808,11 +87458,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19263] = 3, + [19697] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1110), 7, + ACTIONS(1458), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86820,7 +87470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1112), 38, + ACTIONS(1460), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86859,11 +87509,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19317] = 3, + [19751] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1892), 7, + ACTIONS(1454), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86871,7 +87521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1894), 38, + ACTIONS(1456), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86910,11 +87560,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19371] = 3, + [19805] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1130), 7, + ACTIONS(1928), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86922,7 +87572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1132), 38, + ACTIONS(1930), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86961,11 +87611,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19425] = 3, + [19859] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1154), 7, + ACTIONS(1932), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86973,7 +87623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1156), 38, + ACTIONS(1934), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87012,11 +87662,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19479] = 3, + [19913] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1884), 7, + ACTIONS(1450), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87024,7 +87674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1886), 38, + ACTIONS(1452), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87063,11 +87713,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19533] = 3, + [19967] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1888), 7, + ACTIONS(1446), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87075,7 +87725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1890), 38, + ACTIONS(1448), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87114,11 +87764,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19587] = 3, + [20021] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1874), 7, + ACTIONS(1936), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87126,7 +87776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1876), 38, + ACTIONS(1938), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87165,11 +87815,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19641] = 3, + [20075] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1868), 7, + ACTIONS(1442), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87177,7 +87827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1870), 38, + ACTIONS(1444), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87216,11 +87866,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19695] = 3, + [20129] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1454), 7, + ACTIONS(1438), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87228,7 +87878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1456), 38, + ACTIONS(1440), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87267,11 +87917,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19749] = 3, + [20183] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1182), 7, + ACTIONS(1434), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87279,7 +87929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1184), 38, + ACTIONS(1436), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87318,11 +87968,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19803] = 3, + [20237] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1878), 7, + ACTIONS(1948), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87330,7 +87980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1880), 38, + ACTIONS(1950), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87369,11 +88019,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19857] = 3, + [20291] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1206), 7, + ACTIONS(1430), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87381,7 +88031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1208), 38, + ACTIONS(1432), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87420,11 +88070,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19911] = 3, + [20345] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1860), 7, + ACTIONS(1426), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87432,7 +88082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1862), 38, + ACTIONS(1428), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87471,62 +88121,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19965] = 3, + [20399] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1258), 7, + ACTIONS(2678), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2676), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1260), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20019] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20453] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1844), 7, + ACTIONS(1422), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87534,7 +88184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1846), 38, + ACTIONS(1424), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87573,11 +88223,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20073] = 3, + [20507] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1840), 7, + ACTIONS(1418), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87585,7 +88235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1842), 38, + ACTIONS(1420), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87624,11 +88274,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20127] = 3, + [20561] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1836), 7, + ACTIONS(1972), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87636,7 +88286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1838), 38, + ACTIONS(1974), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87675,11 +88325,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20181] = 3, + [20615] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1828), 7, + ACTIONS(1406), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87687,7 +88337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1830), 38, + ACTIONS(1408), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87726,11 +88376,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20235] = 3, + [20669] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1824), 7, + ACTIONS(1402), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87738,7 +88388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1826), 38, + ACTIONS(1404), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87777,11 +88427,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20289] = 3, + [20723] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1688), 7, + ACTIONS(1398), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87789,7 +88439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1690), 38, + ACTIONS(1400), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87828,11 +88478,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20343] = 3, + [20777] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1242), 7, + ACTIONS(1394), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87840,7 +88490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1244), 38, + ACTIONS(1396), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87879,11 +88529,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20397] = 3, + [20831] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1820), 7, + ACTIONS(1390), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87891,7 +88541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1822), 38, + ACTIONS(1392), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87930,11 +88580,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20451] = 3, + [20885] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1816), 7, + ACTIONS(1980), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87942,7 +88592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1818), 38, + ACTIONS(1982), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87981,11 +88631,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20505] = 3, + [20939] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1812), 7, + ACTIONS(1386), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87993,7 +88643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1814), 38, + ACTIONS(1388), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88032,11 +88682,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20559] = 3, + [20993] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1808), 7, + ACTIONS(1984), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88044,7 +88694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1810), 38, + ACTIONS(1986), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88083,11 +88733,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20613] = 3, + [21047] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1800), 7, + ACTIONS(1976), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88095,7 +88745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1802), 38, + ACTIONS(1978), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88134,11 +88784,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20667] = 3, + [21101] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1796), 7, + ACTIONS(1378), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88146,7 +88796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1798), 38, + ACTIONS(1380), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88185,11 +88835,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20721] = 3, + [21155] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1792), 7, + ACTIONS(1968), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88197,7 +88847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1794), 38, + ACTIONS(1970), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88236,114 +88886,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20775] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2686), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2684), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20829] = 4, - ACTIONS(2688), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(422), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(424), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20885] = 3, + [21209] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1788), 7, + ACTIONS(1964), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88351,7 +88898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1790), 38, + ACTIONS(1966), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88390,11 +88937,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20939] = 3, + [21263] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1676), 7, + ACTIONS(1960), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88402,7 +88949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1678), 38, + ACTIONS(1962), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88441,11 +88988,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20993] = 3, + [21317] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1262), 7, + ACTIONS(1956), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88453,7 +89000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1264), 38, + ACTIONS(1958), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88492,11 +89039,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21047] = 3, + [21371] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1672), 7, + ACTIONS(1374), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88504,7 +89051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1674), 38, + ACTIONS(1376), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88543,11 +89090,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21101] = 3, + [21425] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1494), 7, + ACTIONS(1370), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88555,7 +89102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1496), 38, + ACTIONS(1372), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88594,115 +89141,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21155] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2692), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2690), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [21209] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1282), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + [21479] = 5, + ACTIONS(2546), 1, + anon_sym_BANG, + ACTIONS(2680), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1284), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21263] = 4, - ACTIONS(2698), 1, - anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2696), 15, + ACTIONS(486), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88718,11 +89165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2694), 29, + ACTIONS(484), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -88748,215 +89194,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21319] = 3, + [21537] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1668), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1670), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21373] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1784), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1786), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21427] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1498), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1500), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21481] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1780), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1782), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21535] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1266), 7, + ACTIONS(1952), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88964,7 +89206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1268), 38, + ACTIONS(1954), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89003,11 +89245,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21589] = 3, + [21591] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1776), 7, + ACTIONS(1366), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89015,7 +89257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1778), 38, + ACTIONS(1368), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89054,11 +89296,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21643] = 3, + [21645] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1772), 7, + ACTIONS(1924), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89066,7 +89308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1774), 38, + ACTIONS(1926), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89105,11 +89347,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21697] = 3, + [21699] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1536), 7, + ACTIONS(1362), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89117,7 +89359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1538), 38, + ACTIONS(1364), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89156,11 +89398,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21751] = 3, + [21753] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(1920), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89168,7 +89410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1654), 38, + ACTIONS(1922), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89207,11 +89449,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21805] = 3, + [21807] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1540), 7, + ACTIONS(1916), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89219,7 +89461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1542), 38, + ACTIONS(1918), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89258,11 +89500,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21859] = 3, + [21861] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1764), 7, + ACTIONS(1358), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89270,7 +89512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1766), 38, + ACTIONS(1360), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89309,11 +89551,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21913] = 3, + [21915] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1760), 7, + ACTIONS(1872), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89321,7 +89563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1762), 38, + ACTIONS(1874), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89360,11 +89602,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21967] = 3, + [21969] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1568), 7, + ACTIONS(1354), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89372,7 +89614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1570), 38, + ACTIONS(1356), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89411,11 +89653,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22021] = 3, + [22023] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1564), 7, + ACTIONS(1868), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89423,7 +89665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1566), 38, + ACTIONS(1870), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89462,11 +89704,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22075] = 3, + [22077] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1756), 7, + ACTIONS(1350), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89474,7 +89716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1758), 38, + ACTIONS(1352), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89513,11 +89755,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22129] = 3, + [22131] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1748), 7, + ACTIONS(1346), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89525,7 +89767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1750), 38, + ACTIONS(1348), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89564,11 +89806,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22183] = 3, + [22185] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1744), 7, + ACTIONS(1848), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89576,7 +89818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1746), 38, + ACTIONS(1850), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89615,11 +89857,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22237] = 3, + [22239] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1740), 7, + ACTIONS(1342), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89627,7 +89869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1742), 38, + ACTIONS(1344), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89666,11 +89908,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22291] = 3, + [22293] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1736), 7, + ACTIONS(1692), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89678,7 +89920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1738), 38, + ACTIONS(1694), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89717,11 +89959,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22345] = 3, + [22347] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1732), 7, + ACTIONS(1338), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89729,7 +89971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1734), 38, + ACTIONS(1340), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89768,11 +90010,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22399] = 3, + [22401] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1576), 7, + ACTIONS(1680), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89780,7 +90022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1578), 38, + ACTIONS(1682), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89819,11 +90061,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22453] = 3, + [22455] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1728), 7, + ACTIONS(1676), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89831,7 +90073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1730), 38, + ACTIONS(1678), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89870,11 +90112,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22507] = 3, + [22509] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1724), 7, + ACTIONS(1672), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89882,7 +90124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1726), 38, + ACTIONS(1674), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89921,11 +90163,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22561] = 3, + [22563] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1720), 7, + ACTIONS(1298), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89933,7 +90175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1722), 38, + ACTIONS(1300), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89972,11 +90214,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22615] = 3, + [22617] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1712), 7, + ACTIONS(1290), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89984,7 +90226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1714), 38, + ACTIONS(1292), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90023,11 +90265,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22669] = 3, + [22671] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1596), 7, + ACTIONS(1652), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90035,7 +90277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1598), 38, + ACTIONS(1654), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90074,11 +90316,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22723] = 3, + [22725] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1270), 7, + ACTIONS(1286), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90086,7 +90328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1272), 38, + ACTIONS(1288), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90125,11 +90367,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22777] = 3, + [22779] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1612), 7, + ACTIONS(1282), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90137,7 +90379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1614), 38, + ACTIONS(1284), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90176,113 +90418,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22831] = 3, + [22833] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1278), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2684), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1280), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22885] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1106), 7, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2682), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1108), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22939] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [22887] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1680), 7, + ACTIONS(1888), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90290,7 +90481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1682), 38, + ACTIONS(1890), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90329,11 +90520,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22993] = 3, + [22941] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1628), 7, + ACTIONS(1266), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90341,7 +90532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1630), 38, + ACTIONS(1268), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90380,11 +90571,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23047] = 3, + [22995] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1482), 7, + ACTIONS(1262), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90392,7 +90583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1484), 38, + ACTIONS(1264), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90431,11 +90622,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23101] = 3, + [23049] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(1254), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90443,7 +90634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1666), 38, + ACTIONS(1256), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90482,11 +90673,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23155] = 3, + [23103] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(408), 15, + ACTIONS(2582), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90497,12 +90688,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(406), 30, + ACTIONS(2580), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90515,12 +90708,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -90530,14 +90723,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_else, - [23209] = 3, + [23157] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1656), 7, + ACTIONS(1250), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90545,7 +90736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1658), 38, + ACTIONS(1252), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90584,11 +90775,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23263] = 3, + [23211] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1704), 7, + ACTIONS(1482), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90596,7 +90787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1706), 38, + ACTIONS(1484), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90635,64 +90826,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23317] = 5, - ACTIONS(2702), 1, - anon_sym_LPAREN, - STATE(1127), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2704), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2700), 28, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23375] = 3, + [23265] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1318), 7, + ACTIONS(1478), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90700,7 +90838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1320), 38, + ACTIONS(1480), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90739,7 +90877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23429] = 3, + [23319] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -90790,11 +90928,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23483] = 3, + [23373] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 15, + ACTIONS(2688), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90810,7 +90948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2706), 30, + ACTIONS(2686), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90822,7 +90960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -90841,11 +90979,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23537] = 3, + [23427] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1330), 7, + ACTIONS(1238), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90853,7 +90991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1332), 38, + ACTIONS(1240), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90892,11 +91030,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23591] = 3, + [23481] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1478), 7, + ACTIONS(1318), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90904,7 +91042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1480), 38, + ACTIONS(1320), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90943,11 +91081,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23645] = 3, + [23535] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1636), 7, + ACTIONS(1234), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90955,7 +91093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1638), 38, + ACTIONS(1236), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90994,11 +91132,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23699] = 3, + [23589] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1632), 7, + ACTIONS(1310), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91006,7 +91144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1634), 38, + ACTIONS(1312), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91045,11 +91183,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23753] = 3, + [23643] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1624), 7, + ACTIONS(1230), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91057,7 +91195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1626), 38, + ACTIONS(1232), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91096,11 +91234,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23807] = 3, + [23697] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1286), 7, + ACTIONS(1226), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91108,7 +91246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1288), 38, + ACTIONS(1228), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91147,11 +91285,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23861] = 3, + [23751] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1620), 7, + ACTIONS(1222), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91159,7 +91297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1622), 38, + ACTIONS(1224), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91198,62 +91336,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23915] = 3, + [23805] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2712), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2710), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23969] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1462), 7, + ACTIONS(1832), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91261,7 +91348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1464), 38, + ACTIONS(1834), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91300,11 +91387,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24023] = 3, + [23859] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1378), 7, + ACTIONS(1302), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91312,7 +91399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1380), 38, + ACTIONS(1304), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91351,11 +91438,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24077] = 3, + [23913] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1406), 7, + ACTIONS(1210), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91363,7 +91450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1408), 38, + ACTIONS(1212), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91402,113 +91489,114 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24131] = 3, + [23967] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1474), 7, + ACTIONS(412), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(410), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_else, + [24021] = 4, + ACTIONS(2690), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1476), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24185] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1608), 7, + ACTIONS(2616), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2614), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1610), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24239] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24077] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1832), 7, + ACTIONS(1202), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91516,7 +91604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1834), 38, + ACTIONS(1204), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91555,11 +91643,115 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24293] = 3, + [24131] = 4, + ACTIONS(2692), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1604), 7, + ACTIONS(2616), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2614), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24187] = 4, + ACTIONS(2694), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2616), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2614), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24243] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1560), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91567,7 +91759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1606), 38, + ACTIONS(1562), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91606,11 +91798,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24347] = 3, + [24297] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1410), 7, + ACTIONS(1074), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91618,7 +91810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1412), 38, + ACTIONS(1076), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91657,11 +91849,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24401] = 3, + [24351] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1486), 7, + ACTIONS(1178), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91669,7 +91861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1488), 38, + ACTIONS(1180), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91708,11 +91900,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24455] = 3, + [24405] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1502), 7, + ACTIONS(1170), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91720,7 +91912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1504), 38, + ACTIONS(1172), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91759,11 +91951,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24509] = 3, + [24459] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(410), 7, + ACTIONS(1552), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91771,7 +91963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(412), 38, + ACTIONS(1554), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91810,11 +92002,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24563] = 3, + [24513] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1600), 7, + ACTIONS(1166), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91822,7 +92014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1602), 38, + ACTIONS(1168), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91861,11 +92053,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24617] = 3, + [24567] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1592), 7, + ACTIONS(1214), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91873,7 +92065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1594), 38, + ACTIONS(1216), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91912,11 +92104,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24671] = 3, + [24621] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1588), 7, + ACTIONS(406), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91924,7 +92116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1590), 38, + ACTIONS(408), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91963,11 +92155,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24725] = 3, + [24675] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(406), 7, + ACTIONS(1158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91975,7 +92167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(408), 38, + ACTIONS(1160), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92014,7 +92206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24779] = 3, + [24729] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -92065,11 +92257,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24833] = 3, + [24783] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1584), 7, + ACTIONS(1154), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92077,7 +92269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1586), 38, + ACTIONS(1156), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92116,11 +92308,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24887] = 3, + [24837] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(462), 7, + ACTIONS(410), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92128,7 +92320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(464), 38, + ACTIONS(412), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92167,11 +92359,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24941] = 3, + [24891] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1506), 7, + ACTIONS(1150), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92179,7 +92371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1508), 38, + ACTIONS(1152), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92218,11 +92410,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24995] = 3, + [24945] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1532), 7, + ACTIONS(610), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92230,7 +92422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1534), 38, + ACTIONS(612), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92269,11 +92461,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25049] = 3, + [24999] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1556), 7, + ACTIONS(1130), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92281,7 +92473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1558), 38, + ACTIONS(1132), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92320,11 +92512,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25103] = 3, + [25053] = 4, + ACTIONS(2700), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1322), 7, + ACTIONS(2698), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2696), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25109] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1126), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92332,7 +92576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1324), 38, + ACTIONS(1128), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92371,11 +92615,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25157] = 3, + [25163] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1310), 7, + ACTIONS(1118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92383,7 +92627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1312), 38, + ACTIONS(1120), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92422,11 +92666,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25211] = 3, + [25217] = 4, + ACTIONS(2706), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1616), 7, + ACTIONS(2704), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2702), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25273] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92434,7 +92730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1618), 38, + ACTIONS(1116), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92473,11 +92769,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25265] = 3, + [25327] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1856), 7, + ACTIONS(1110), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92485,7 +92781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1858), 38, + ACTIONS(1112), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92524,11 +92820,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25319] = 3, + [25381] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1306), 7, + ACTIONS(1106), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92536,7 +92832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1308), 38, + ACTIONS(1108), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92575,11 +92871,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25373] = 3, + [25435] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1290), 7, + ACTIONS(1102), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92587,7 +92883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1292), 38, + ACTIONS(1104), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92626,11 +92922,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25427] = 3, + [25489] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1580), 7, + ACTIONS(1206), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92638,7 +92934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1582), 38, + ACTIONS(1208), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92677,11 +92973,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25481] = 3, + [25543] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1968), 7, + ACTIONS(1198), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92689,7 +92985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1970), 38, + ACTIONS(1200), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92728,11 +93024,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25535] = 3, + [25597] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1572), 7, + ACTIONS(472), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92740,7 +93036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1574), 38, + ACTIONS(474), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92779,11 +93075,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25589] = 3, + [25651] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1560), 7, + ACTIONS(1098), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92791,7 +93087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1562), 38, + ACTIONS(1100), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92830,11 +93126,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25643] = 3, + [25705] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1552), 7, + ACTIONS(1094), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92842,7 +93138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1554), 38, + ACTIONS(1096), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92881,11 +93177,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25697] = 3, + [25759] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1640), 7, + ACTIONS(1090), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92893,7 +93189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1642), 38, + ACTIONS(1092), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92932,62 +93228,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25751] = 3, + [25813] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(414), 30, + ACTIONS(1086), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_else, - [25805] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1088), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25867] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1644), 7, + ACTIONS(1852), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92995,7 +93291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1646), 38, + ACTIONS(1854), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93034,14 +93330,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25859] = 4, + [25921] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2714), 2, + ACTIONS(2708), 2, anon_sym_LBRACE, anon_sym_COLON_COLON, - ACTIONS(2656), 15, + ACTIONS(2640), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93057,7 +93353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2652), 28, + ACTIONS(2636), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93086,11 +93382,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25915] = 3, + [25977] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1648), 7, + ACTIONS(1082), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93098,7 +93394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1650), 38, + ACTIONS(1084), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93137,11 +93433,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25969] = 3, + [26031] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1490), 7, + ACTIONS(1194), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93149,7 +93445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1492), 38, + ACTIONS(1196), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93188,11 +93484,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26023] = 3, + [26085] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1852), 7, + ACTIONS(1138), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93200,7 +93496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1854), 38, + ACTIONS(1140), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93239,15 +93535,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26077] = 5, - ACTIONS(2546), 1, - anon_sym_BANG, - ACTIONS(2716), 1, - anon_sym_COLON_COLON, + [26139] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(422), 15, + ACTIONS(416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93263,10 +93555,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(424), 28, + ACTIONS(414), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -93292,11 +93585,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26135] = 3, + anon_sym_else, + [26193] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1466), 7, + ACTIONS(1712), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93304,7 +93598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1468), 38, + ACTIONS(1714), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93343,63 +93637,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26189] = 4, - ACTIONS(2718), 1, - anon_sym_COLON_COLON, + [26247] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1146), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2578), 29, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1148), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26301] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1174), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26245] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1176), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26355] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1458), 7, + ACTIONS(1182), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93407,7 +93751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1460), 38, + ACTIONS(1184), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93446,11 +93790,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26299] = 3, + [26409] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1450), 7, + ACTIONS(440), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93458,7 +93802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1452), 38, + ACTIONS(442), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93497,11 +93841,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26353] = 3, + [26463] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(466), 7, + ACTIONS(1162), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93509,7 +93853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(468), 38, + ACTIONS(1164), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93548,11 +93892,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26407] = 3, + [26517] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1446), 7, + ACTIONS(2712), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2710), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26571] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(444), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93560,7 +93955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1448), 38, + ACTIONS(446), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93599,11 +93994,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26461] = 3, + [26625] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1442), 7, + ACTIONS(2716), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2714), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26679] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1218), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93611,7 +94057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1444), 38, + ACTIONS(1220), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93650,11 +94096,218 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26515] = 3, + [26733] = 4, + ACTIONS(2722), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1936), 7, + ACTIONS(2720), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2718), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26789] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2726), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2724), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26843] = 4, + ACTIONS(2732), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2730), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2728), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26899] = 4, + ACTIONS(2694), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2576), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26955] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1246), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93662,7 +94315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1938), 38, + ACTIONS(1248), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93701,11 +94354,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26569] = 3, + [27009] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1438), 7, + ACTIONS(1258), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93713,7 +94366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1440), 38, + ACTIONS(1260), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93752,11 +94405,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26623] = 3, + [27063] = 4, + ACTIONS(2694), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1940), 7, + ACTIONS(2604), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2602), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27119] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1334), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93764,7 +94469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1942), 38, + ACTIONS(1336), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93803,11 +94508,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26677] = 3, + [27173] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1916), 7, + ACTIONS(1330), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93815,7 +94520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1918), 38, + ACTIONS(1332), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93854,11 +94559,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26731] = 3, + [27227] = 4, + ACTIONS(2738), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1864), 7, + ACTIONS(2736), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2734), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27283] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1294), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93866,7 +94623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1866), 38, + ACTIONS(1296), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93905,11 +94662,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26785] = 3, + [27337] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1660), 7, + ACTIONS(1462), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93917,7 +94674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1662), 38, + ACTIONS(1464), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93956,11 +94713,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26839] = 3, + [27391] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1684), 7, + ACTIONS(1470), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93968,7 +94725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1686), 38, + ACTIONS(1472), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94007,11 +94764,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26893] = 3, + [27445] = 4, + ACTIONS(2744), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2742), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2740), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27501] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(500), 7, + ACTIONS(1506), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94019,7 +94828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(502), 38, + ACTIONS(1508), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94058,11 +94867,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26947] = 3, + [27555] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1434), 7, + ACTIONS(1544), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94070,7 +94879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1436), 38, + ACTIONS(1546), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94109,62 +94918,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27001] = 3, + [27609] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(412), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(410), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_else, - [27055] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1692), 7, + ACTIONS(1548), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94172,7 +94930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1694), 38, + ACTIONS(1550), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94211,11 +94969,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27109] = 3, + [27663] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1430), 7, + ACTIONS(1572), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94223,7 +94981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1432), 38, + ACTIONS(1574), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94262,11 +95020,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27163] = 3, + [27717] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1696), 7, + ACTIONS(1584), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94274,7 +95032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1698), 38, + ACTIONS(1586), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94313,63 +95071,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27217] = 4, - ACTIONS(2720), 1, - anon_sym_COLON_COLON, + [27771] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2578), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27273] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1254), 7, + ACTIONS(1604), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94377,7 +95083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1256), 38, + ACTIONS(1606), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94416,11 +95122,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27327] = 3, + [27825] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1426), 7, + ACTIONS(1760), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94428,7 +95134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1428), 38, + ACTIONS(1762), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94467,11 +95173,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27381] = 3, + [27879] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1700), 7, + ACTIONS(1724), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94479,7 +95185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1702), 38, + ACTIONS(1726), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94518,11 +95224,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27435] = 3, + [27933] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1078), 7, + ACTIONS(1278), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94530,7 +95236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1080), 38, + ACTIONS(1280), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94569,115 +95275,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27489] = 4, - ACTIONS(2666), 1, - anon_sym_COLON_COLON, + [27987] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2566), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2564), 29, + ACTIONS(1620), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27545] = 4, - ACTIONS(2726), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2724), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2722), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27601] = 3, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1622), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28041] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1194), 7, + ACTIONS(1636), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94685,7 +95338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1196), 38, + ACTIONS(1638), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94724,11 +95377,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27655] = 3, + [28095] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1294), 7, + ACTIONS(1322), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94736,7 +95389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1296), 38, + ACTIONS(1324), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94775,11 +95428,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27709] = 3, + [28149] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1190), 7, + ACTIONS(1708), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94787,7 +95440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1192), 38, + ACTIONS(1710), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94826,62 +95479,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27763] = 3, + [28203] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2730), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2728), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27817] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1716), 7, + ACTIONS(1704), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94889,7 +95491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1718), 38, + ACTIONS(1706), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94928,11 +95530,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27871] = 3, + [28257] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1422), 7, + ACTIONS(1078), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94940,7 +95542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1424), 38, + ACTIONS(1080), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94979,11 +95581,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27925] = 3, + [28311] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1418), 7, + ACTIONS(1700), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94991,7 +95593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1420), 38, + ACTIONS(1702), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95030,63 +95632,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27979] = 4, - ACTIONS(2666), 1, - anon_sym_COLON_COLON, + [28365] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2578), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28035] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1142), 7, + ACTIONS(1860), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95094,7 +95644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1144), 38, + ACTIONS(1862), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95133,11 +95683,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28089] = 3, + [28419] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1414), 7, + ACTIONS(1940), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95145,7 +95695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1416), 38, + ACTIONS(1942), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95184,11 +95734,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28143] = 3, + [28473] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1402), 7, + ACTIONS(1696), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95196,7 +95746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1404), 38, + ACTIONS(1698), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95235,11 +95785,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28197] = 3, + [28527] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1398), 7, + ACTIONS(1944), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95247,7 +95797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1400), 38, + ACTIONS(1946), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95286,11 +95836,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28251] = 3, + [28581] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1394), 7, + ACTIONS(1270), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95298,7 +95848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1396), 38, + ACTIONS(1272), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95337,11 +95887,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28305] = 3, + [28635] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1390), 7, + ACTIONS(1688), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95349,7 +95899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1392), 38, + ACTIONS(1690), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95388,63 +95938,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28359] = 4, - ACTIONS(2736), 1, - anon_sym_DASH_GT, + [28689] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2734), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2732), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28415] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1302), 7, + ACTIONS(1892), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95452,7 +95950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1304), 38, + ACTIONS(1894), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95491,11 +95989,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28469] = 3, + [28743] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1298), 7, + ACTIONS(1664), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95503,7 +96001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1300), 38, + ACTIONS(1666), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95542,11 +96040,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28523] = 3, + [28797] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1386), 7, + ACTIONS(1656), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95554,7 +96052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1388), 38, + ACTIONS(1658), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95593,11 +96091,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28577] = 3, + [28851] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1382), 7, + ACTIONS(1864), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95605,7 +96103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1384), 38, + ACTIONS(1866), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95644,11 +96142,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28631] = 3, + [28905] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1548), 7, + ACTIONS(1648), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95656,7 +96154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1550), 38, + ACTIONS(1650), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95695,11 +96193,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28685] = 3, + [28959] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1374), 7, + ACTIONS(408), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(406), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_else, + [29013] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1644), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95707,7 +96256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1376), 38, + ACTIONS(1646), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95746,11 +96295,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28739] = 3, + [29067] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1544), 7, + ACTIONS(1616), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95758,7 +96307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1546), 38, + ACTIONS(1618), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95797,11 +96346,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28793] = 3, + [29121] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1370), 7, + ACTIONS(1498), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95809,7 +96358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1372), 38, + ACTIONS(1500), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95848,11 +96397,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28847] = 3, + [29175] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1178), 7, + ACTIONS(1540), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95860,7 +96409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1180), 38, + ACTIONS(1542), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95899,11 +96448,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28901] = 3, + [29229] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1366), 7, + ACTIONS(1514), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95911,7 +96460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1368), 38, + ACTIONS(1516), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95950,11 +96499,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28955] = 3, + [29283] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1752), 7, + ACTIONS(1510), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95962,7 +96511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1754), 38, + ACTIONS(1512), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96001,11 +96550,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29009] = 3, + [29337] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1768), 7, + ACTIONS(1314), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96013,7 +96562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1770), 38, + ACTIONS(1316), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96052,11 +96601,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29063] = 3, + [29391] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1804), 7, + ACTIONS(1190), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96064,7 +96613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1806), 38, + ACTIONS(1192), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96103,11 +96652,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29117] = 3, + [29445] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1362), 7, + ACTIONS(1142), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96115,7 +96664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1364), 38, + ACTIONS(1144), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96154,11 +96703,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29171] = 3, + [29499] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1358), 7, + ACTIONS(1502), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96166,7 +96715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1360), 38, + ACTIONS(1504), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96205,11 +96754,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29225] = 3, + [29553] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1218), 7, + ACTIONS(1490), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96217,7 +96766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1220), 38, + ACTIONS(1492), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96256,63 +96805,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29279] = 4, - ACTIONS(2742), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2740), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2738), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29335] = 3, + [29607] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1354), 7, + ACTIONS(1414), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96320,7 +96817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1356), 38, + ACTIONS(1416), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96359,13 +96856,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29389] = 4, - ACTIONS(2748), 1, - anon_sym_DASH_GT, + [29661] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2746), 15, + ACTIONS(2748), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96381,7 +96876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2744), 29, + ACTIONS(2746), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96393,6 +96888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -96411,113 +96907,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29445] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1214), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1216), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29499] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1350), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1352), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29553] = 3, + [29715] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1346), 7, + ACTIONS(1122), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96525,7 +96919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1348), 38, + ACTIONS(1124), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96564,62 +96958,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29607] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2592), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2590), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [29661] = 3, + [29769] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1198), 7, + ACTIONS(1134), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96627,109 +96970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1200), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29715] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1334), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1336), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29769] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1342), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1344), 38, + ACTIONS(1136), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96772,7 +97013,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1338), 7, + ACTIONS(1410), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96780,7 +97021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1340), 38, + ACTIONS(1412), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96923,7 +97164,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2760), 15, + ACTIONS(2371), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96939,7 +97180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2758), 29, + ACTIONS(2373), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96973,57 +97214,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2764), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2762), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30089] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2768), 15, + ACTIONS(2760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97039,7 +97230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2766), 29, + ACTIONS(2758), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97069,11 +97260,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30142] = 3, + [30089] = 4, + ACTIONS(2762), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(452), 15, + ACTIONS(486), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97089,11 +97282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(450), 29, + ACTIONS(484), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -97119,11 +97311,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30195] = 3, + [30144] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2772), 15, + ACTIONS(2766), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97139,7 +97331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2770), 29, + ACTIONS(2764), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97169,11 +97361,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30248] = 3, + [30197] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(456), 15, + ACTIONS(2770), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97189,7 +97381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(454), 29, + ACTIONS(2768), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97219,11 +97411,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30301] = 3, + [30250] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2776), 15, + ACTIONS(2774), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97239,7 +97431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2774), 29, + ACTIONS(2772), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97269,11 +97461,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30354] = 3, + [30303] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(444), 15, + ACTIONS(2778), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97289,7 +97481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(442), 29, + ACTIONS(2776), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97319,11 +97511,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30407] = 3, + [30356] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 15, + ACTIONS(2782), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97339,7 +97531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2578), 29, + ACTIONS(2780), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97369,11 +97561,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30460] = 3, + [30409] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(480), 15, + ACTIONS(2345), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97389,7 +97581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(478), 29, + ACTIONS(2347), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97419,113 +97611,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30513] = 5, - ACTIONS(2778), 1, - anon_sym_POUND, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1048), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2475), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2473), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [30570] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2783), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2781), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [30623] = 3, + [30462] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2407), 15, + ACTIONS(2786), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97541,7 +97631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2409), 29, + ACTIONS(2784), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97571,11 +97661,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30676] = 3, + [30515] = 4, + ACTIONS(2792), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2790), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2788), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30570] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2787), 15, + ACTIONS(2796), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97591,7 +97732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2785), 29, + ACTIONS(2794), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97621,11 +97762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30729] = 3, + [30623] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2791), 15, + ACTIONS(598), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97641,7 +97782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2789), 29, + ACTIONS(596), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97671,11 +97812,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30782] = 3, + [30676] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(460), 15, + ACTIONS(2341), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97691,7 +97832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(458), 29, + ACTIONS(2343), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97721,11 +97862,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30835] = 3, + [30729] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(488), 15, + ACTIONS(2800), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97741,7 +97882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(486), 29, + ACTIONS(2798), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97771,11 +97912,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30888] = 3, + [30782] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(430), 15, + ACTIONS(2804), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97791,7 +97932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(428), 29, + ACTIONS(2802), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97821,11 +97962,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30941] = 3, + [30835] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2795), 15, + ACTIONS(612), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97841,7 +97982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2793), 29, + ACTIONS(610), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97871,11 +98012,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30994] = 3, + [30888] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2799), 15, + ACTIONS(422), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97891,7 +98032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2797), 29, + ACTIONS(420), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97921,61 +98062,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31047] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2803), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2801), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31100] = 3, + [30941] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2807), 15, + ACTIONS(2808), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97991,7 +98082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2805), 29, + ACTIONS(2806), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98021,13 +98112,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31153] = 4, - ACTIONS(2809), 1, - anon_sym_COLON_COLON, + [30994] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(422), 15, + ACTIONS(2812), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98043,10 +98132,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(424), 28, + ACTIONS(2810), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -98072,11 +98162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31208] = 3, + [31047] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2813), 15, + ACTIONS(460), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98092,7 +98182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2811), 29, + ACTIONS(458), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98122,11 +98212,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31261] = 3, + [31100] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2566), 15, + ACTIONS(2816), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98142,7 +98232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2564), 29, + ACTIONS(2814), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98172,11 +98262,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31314] = 3, + [31153] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2817), 15, + ACTIONS(2820), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98192,7 +98282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2815), 29, + ACTIONS(2818), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98222,11 +98312,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31367] = 3, + [31206] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2822), 1, + sym_identifier, + ACTIONS(2826), 1, + anon_sym_LPAREN, + ACTIONS(2828), 1, + anon_sym_STAR, + ACTIONS(2834), 1, + anon_sym_for, + ACTIONS(2836), 1, + anon_sym_AMP, + ACTIONS(2838), 1, + sym_metavariable, + STATE(1840), 1, + sym_scoped_type_identifier, + STATE(1874), 1, + sym_where_predicate, + STATE(1927), 1, + sym_generic_type, + STATE(2379), 1, + sym_bracketed_type, + STATE(2380), 1, + sym_generic_type_with_turbofish, + STATE(2549), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2824), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(2832), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(2238), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2830), 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, + [31295] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(318), 15, + ACTIONS(2393), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98242,7 +98400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(316), 29, + ACTIONS(2395), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98272,11 +98430,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31420] = 3, + [31348] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2821), 15, + ACTIONS(2842), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98292,7 +98450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2819), 29, + ACTIONS(2840), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98322,11 +98480,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31473] = 3, + [31401] = 4, + ACTIONS(2848), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2825), 15, + ACTIONS(2846), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2844), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31456] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(474), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98342,7 +98551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2823), 29, + ACTIONS(472), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98372,11 +98581,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31526] = 3, + [31509] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2829), 15, + ACTIONS(592), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98392,7 +98601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2827), 29, + ACTIONS(590), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98422,11 +98631,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31579] = 3, + [31562] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(468), 15, + ACTIONS(604), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98442,7 +98651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(466), 29, + ACTIONS(602), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98472,61 +98681,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31632] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2833), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2831), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31685] = 3, + [31615] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2837), 15, + ACTIONS(2640), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98542,7 +98701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2835), 29, + ACTIONS(2636), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98572,11 +98731,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31738] = 3, + [31668] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(506), 15, + ACTIONS(2852), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98592,7 +98751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(504), 29, + ACTIONS(2850), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98622,63 +98781,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31791] = 3, + [31721] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2841), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(2856), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, - sym_metavariable, - ACTIONS(2839), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31844] = 4, - ACTIONS(2576), 1, - anon_sym_COLON_COLON, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2854), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [31774] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 15, + ACTIONS(2860), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98694,10 +98851,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2568), 28, + ACTIONS(2858), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -98723,11 +98881,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31899] = 3, + [31827] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(510), 15, + ACTIONS(2864), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98743,7 +98901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(508), 29, + ACTIONS(2862), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98773,11 +98931,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31952] = 3, + [31880] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2845), 15, + ACTIONS(334), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98793,7 +98951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2843), 29, + ACTIONS(332), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98823,11 +98981,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32005] = 3, + [31933] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(434), 15, + ACTIONS(2868), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2866), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31986] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(450), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98843,7 +99051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(432), 29, + ACTIONS(448), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98873,11 +99081,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32058] = 3, + [32039] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2849), 15, + ACTIONS(2872), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2870), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32092] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2876), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98893,7 +99151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2847), 29, + ACTIONS(2874), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98923,11 +99181,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32111] = 3, + [32145] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2704), 15, + ACTIONS(2880), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98943,7 +99201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2700), 29, + ACTIONS(2878), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98973,11 +99231,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32164] = 3, + [32198] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2411), 15, + ACTIONS(2884), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98993,7 +99251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2413), 29, + ACTIONS(2882), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99023,11 +99281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32217] = 3, + [32251] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2853), 15, + ACTIONS(2888), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99043,7 +99301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2851), 29, + ACTIONS(2886), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99073,11 +99331,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32270] = 3, + [32304] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2857), 15, + ACTIONS(2892), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99093,7 +99351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2855), 29, + ACTIONS(2890), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99123,62 +99381,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32323] = 4, - ACTIONS(2863), 1, - anon_sym_RBRACE, + [32357] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2861), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, + ACTIONS(434), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2859), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32378] = 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(432), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32410] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(476), 15, + ACTIONS(2670), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99194,7 +99451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(474), 29, + ACTIONS(2666), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99224,11 +99481,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32431] = 3, + [32463] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(448), 15, + ACTIONS(2896), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99244,7 +99501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(446), 29, + ACTIONS(2894), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99274,11 +99531,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32484] = 3, + [32516] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2776), 15, + ACTIONS(2900), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99294,7 +99551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2774), 29, + ACTIONS(2898), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99324,111 +99581,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32537] = 3, + [32569] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2867), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(2904), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, - sym_metavariable, - ACTIONS(2865), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32590] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2871), 12, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2902), 29, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2869), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32643] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32622] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2875), 15, + ACTIONS(2908), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99444,7 +99651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2873), 29, + ACTIONS(2906), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99474,11 +99681,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32696] = 3, + [32675] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(502), 15, + ACTIONS(430), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99494,7 +99701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(500), 29, + ACTIONS(428), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99524,11 +99731,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32749] = 3, + [32728] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(494), 15, + ACTIONS(2912), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99544,7 +99751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(492), 29, + ACTIONS(2910), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99574,11 +99781,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32802] = 3, + [32781] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(514), 15, + ACTIONS(454), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99594,7 +99801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(512), 29, + ACTIONS(452), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99624,79 +99831,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32855] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2877), 1, - sym_identifier, - ACTIONS(2881), 1, - anon_sym_LPAREN, - ACTIONS(2883), 1, - anon_sym_STAR, - ACTIONS(2889), 1, - anon_sym_for, - ACTIONS(2891), 1, - anon_sym_AMP, - ACTIONS(2893), 1, - sym_metavariable, - STATE(1835), 1, - sym_scoped_type_identifier, - STATE(1917), 1, - sym_generic_type, - STATE(1932), 1, - sym_where_predicate, - STATE(2367), 1, - sym_bracketed_type, - STATE(2368), 1, - sym_generic_type_with_turbofish, - STATE(2545), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2879), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(2887), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(2222), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2885), 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, - [32944] = 3, + [32834] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2897), 15, + ACTIONS(2916), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99712,7 +99851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2895), 29, + ACTIONS(2914), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99742,11 +99881,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32997] = 3, + [32887] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2901), 15, + ACTIONS(2920), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99762,7 +99901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2899), 29, + ACTIONS(2918), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99792,79 +99931,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33050] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(886), 1, - anon_sym_COLON_COLON, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2877), 1, - sym_identifier, - ACTIONS(2881), 1, - anon_sym_LPAREN, - ACTIONS(2883), 1, - anon_sym_STAR, - ACTIONS(2889), 1, - anon_sym_for, - ACTIONS(2891), 1, - anon_sym_AMP, - ACTIONS(2893), 1, - sym_metavariable, - STATE(1835), 1, - sym_scoped_type_identifier, - STATE(1917), 1, - sym_generic_type, - STATE(1932), 1, - sym_where_predicate, - STATE(2367), 1, - sym_bracketed_type, - STATE(2368), 1, - sym_generic_type_with_turbofish, - STATE(2545), 1, - sym_scoped_identifier, + [32940] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2887), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(2903), 2, + ACTIONS(608), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(606), 29, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - STATE(2222), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2885), 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, - [33139] = 3, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32993] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2907), 15, + ACTIONS(442), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99880,7 +100001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2905), 29, + ACTIONS(440), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99910,11 +100031,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33192] = 3, + [33046] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2911), 15, + ACTIONS(2924), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99930,7 +100051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2909), 29, + ACTIONS(2922), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99960,11 +100081,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33245] = 3, + [33099] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2915), 15, + ACTIONS(2928), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99980,7 +100101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2913), 29, + ACTIONS(2926), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100010,11 +100131,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33298] = 3, + [33152] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2919), 15, + ACTIONS(438), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100030,7 +100151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2917), 29, + ACTIONS(436), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100060,11 +100181,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33351] = 3, + [33205] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2923), 15, + ACTIONS(2616), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100080,7 +100201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2921), 29, + ACTIONS(2614), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100110,111 +100231,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33404] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2927), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + [33258] = 21, + ACTIONS(77), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2925), 29, - anon_sym_SEMI, + ACTIONS(882), 1, + anon_sym_COLON_COLON, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2822), 1, + sym_identifier, + ACTIONS(2826), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33457] = 3, + ACTIONS(2828), 1, + anon_sym_STAR, + ACTIONS(2834), 1, + anon_sym_for, + ACTIONS(2836), 1, + anon_sym_AMP, + ACTIONS(2838), 1, + sym_metavariable, + STATE(1840), 1, + sym_scoped_type_identifier, + STATE(1874), 1, + sym_where_predicate, + STATE(1927), 1, + sym_generic_type, + STATE(2379), 1, + sym_bracketed_type, + STATE(2380), 1, + sym_generic_type_with_turbofish, + STATE(2549), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2931), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2929), 29, + ACTIONS(2832), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(2930), 2, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33510] = 3, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + STATE(2238), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2830), 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, + [33347] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2935), 15, + ACTIONS(478), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100230,7 +100319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2933), 29, + ACTIONS(476), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100260,11 +100349,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33563] = 3, + [33400] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 15, + ACTIONS(426), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100280,7 +100369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2937), 29, + ACTIONS(424), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100310,11 +100399,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33616] = 3, + [33453] = 4, + ACTIONS(2596), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2943), 15, + ACTIONS(2590), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100330,11 +100421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2941), 29, + ACTIONS(2588), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -100360,11 +100450,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33669] = 3, + [33508] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(498), 15, + ACTIONS(2604), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100380,7 +100470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(496), 29, + ACTIONS(2602), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100410,11 +100500,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33722] = 3, + [33561] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2947), 15, + ACTIONS(2934), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100430,7 +100520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2945), 29, + ACTIONS(2932), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100460,11 +100550,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33775] = 3, + [33614] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2951), 15, + ACTIONS(464), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100480,7 +100570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2949), 29, + ACTIONS(462), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100510,11 +100600,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33828] = 3, + [33667] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2399), 15, + ACTIONS(2578), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100530,7 +100620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2401), 29, + ACTIONS(2576), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100560,11 +100650,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33881] = 3, + [33720] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2955), 15, + ACTIONS(2938), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100580,7 +100670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2953), 29, + ACTIONS(2936), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100610,11 +100700,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33934] = 3, + [33773] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2959), 15, + ACTIONS(2942), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100630,7 +100720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2957), 29, + ACTIONS(2940), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100660,111 +100750,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33987] = 3, + [33826] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2614), 29, + ACTIONS(2946), 12, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34040] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2963), 15, - anon_sym_PLUS, anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2961), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34093] = 3, + sym_metavariable, + ACTIONS(2944), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33879] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2967), 15, + ACTIONS(2950), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100780,7 +100820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2965), 29, + ACTIONS(2948), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100810,11 +100850,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34146] = 3, + [33932] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2971), 15, + ACTIONS(2954), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100830,7 +100870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2969), 29, + ACTIONS(2952), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100860,11 +100900,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34199] = 3, + [33985] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2975), 15, + ACTIONS(2958), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100880,7 +100920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2973), 29, + ACTIONS(2956), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100910,11 +100950,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34252] = 3, + [34038] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2979), 15, + ACTIONS(446), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100930,7 +100970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2977), 29, + ACTIONS(444), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100960,11 +101000,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34305] = 3, + [34091] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(472), 15, + ACTIONS(2962), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100980,7 +101020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(470), 29, + ACTIONS(2960), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101010,11 +101050,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34358] = 3, + [34144] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(484), 15, + ACTIONS(2966), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101030,7 +101070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(482), 29, + ACTIONS(2964), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101060,11 +101100,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34411] = 3, + [34197] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2983), 15, + ACTIONS(616), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101080,7 +101120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2981), 29, + ACTIONS(614), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101110,11 +101150,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34464] = 3, + [34250] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2987), 15, + ACTIONS(2970), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101130,7 +101170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2985), 29, + ACTIONS(2968), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101160,11 +101200,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34517] = 3, + [34303] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2991), 15, + ACTIONS(2974), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101180,7 +101220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2989), 29, + ACTIONS(2972), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101210,28 +101250,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34570] = 4, - ACTIONS(2997), 1, - anon_sym_RBRACE, + [34356] = 5, + ACTIONS(2976), 1, + anon_sym_POUND, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2995), 14, - sym_raw_string_literal, - sym_float_literal, + STATE(1121), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2485), 9, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_POUND, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(2993), 29, + ACTIONS(2483), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101249,23 +101287,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [34625] = 3, + [34413] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 15, + ACTIONS(2981), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101281,7 +101322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2999), 29, + ACTIONS(2979), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101311,11 +101352,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34678] = 3, + [34466] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3005), 15, + ACTIONS(2985), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101331,7 +101372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3003), 29, + ACTIONS(2983), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101361,11 +101402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34731] = 3, + [34519] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2656), 15, + ACTIONS(2989), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101381,7 +101422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2652), 29, + ACTIONS(2987), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101411,11 +101452,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34784] = 3, + [34572] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3009), 15, + ACTIONS(2993), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101431,7 +101472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3007), 29, + ACTIONS(2991), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101461,11 +101502,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34837] = 3, + [34625] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3013), 15, + ACTIONS(2993), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101481,7 +101522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3011), 29, + ACTIONS(2991), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101511,11 +101552,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34890] = 3, + [34678] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3017), 15, + ACTIONS(2997), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2995), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34731] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3001), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2999), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34784] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(470), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101531,7 +101672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3015), 29, + ACTIONS(468), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101561,11 +101702,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34943] = 3, + [34837] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2403), 15, + ACTIONS(3005), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101581,7 +101722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2405), 29, + ACTIONS(3003), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101611,11 +101752,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34996] = 3, + [34890] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3021), 15, + ACTIONS(3009), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101631,7 +101772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3019), 29, + ACTIONS(3007), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101661,11 +101802,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35049] = 3, + [34943] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(464), 15, + ACTIONS(3013), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3011), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34996] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3017), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101681,7 +101872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(462), 29, + ACTIONS(3015), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101711,26 +101902,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35102] = 7, - ACTIONS(3025), 1, - anon_sym_LBRACK, - ACTIONS(3031), 1, - anon_sym_DOT_DOT, - ACTIONS(3033), 1, - anon_sym_DOT, + [35049] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3029), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3027), 13, + ACTIONS(3021), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -101738,16 +101921,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 25, + anon_sym_DOT, + ACTIONS(3019), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -101764,97 +101952,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35162] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2861), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2859), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [35214] = 16, + [35102] = 17, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3031), 1, - anon_sym_DOT_DOT, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3041), 1, anon_sym_EQ, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3039), 1, + anon_sym_DOT_DOT, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3029), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3037), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3035), 20, + ACTIONS(3023), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101864,7 +102005,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101875,99 +102015,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35292] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2995), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2993), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [35344] = 17, + [35182] = 9, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3031), 1, + ACTIONS(3039), 1, anon_sym_DOT_DOT, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3045), 1, - anon_sym_AMP, - ACTIONS(3047), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, - anon_sym_PIPE, - ACTIONS(3051), 1, - anon_sym_CARET, - ACTIONS(3059), 1, - anon_sym_EQ, - ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3029), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3037), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3029), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3057), 8, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3039), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3053), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3057), 19, + ACTIONS(3055), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101977,6 +102054,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101987,50 +102070,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35424] = 17, + [35246] = 16, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3031), 1, - anon_sym_DOT_DOT, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3039), 1, + anon_sym_DOT_DOT, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3065), 1, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3057), 1, anon_sym_EQ, ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3029), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3037), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3037), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3063), 19, + ACTIONS(3055), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102040,6 +102121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102050,59 +102132,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35504] = 17, + [35324] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3031), 1, - anon_sym_DOT_DOT, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3039), 1, + anon_sym_DOT_DOT, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3069), 1, + anon_sym_QMARK, + ACTIONS(3063), 1, + anon_sym_as, + ACTIONS(3065), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3029), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3037), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 19, + ACTIONS(3059), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102113,38 +102198,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35584] = 11, + [35410] = 11, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3031), 1, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3039), 1, anon_sym_DOT_DOT, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3045), 1, - anon_sym_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3029), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3055), 2, + ACTIONS(3037), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3041), 5, + ACTIONS(3057), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3035), 25, + ACTIONS(3055), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102170,50 +102255,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35652] = 17, - ACTIONS(288), 1, - anon_sym_EQ, + [35478] = 15, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3031), 1, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3039), 1, anon_sym_DOT_DOT, - ACTIONS(3033), 1, - anon_sym_DOT, ACTIONS(3045), 1, - anon_sym_AMP, - ACTIONS(3047), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3057), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3029), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3037), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(282), 19, + ACTIONS(3055), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102223,6 +102304,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102233,40 +102316,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35732] = 13, + [35554] = 7, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3031), 1, + ACTIONS(3039), 1, anon_sym_DOT_DOT, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3045), 1, - anon_sym_AMP, - ACTIONS(3049), 1, - anon_sym_PIPE, - ACTIONS(3051), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3029), 2, + ACTIONS(3037), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3037), 2, + ACTIONS(3057), 13, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, anon_sym_DASH, - ACTIONS(3055), 2, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3039), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3041), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3035), 25, + ACTIONS(3055), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102292,36 +102369,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35804] = 9, + [35614] = 17, + ACTIONS(288), 1, + anon_sym_EQ, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3031), 1, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3039), 1, anon_sym_DOT_DOT, - ACTIONS(3033), 1, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, + anon_sym_CARET, + ACTIONS(3053), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3029), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3039), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3041), 8, - anon_sym_EQ, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3037), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3035), 25, + ACTIONS(3029), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3049), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(282), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102331,12 +102422,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102347,37 +102432,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35868] = 10, + [35694] = 17, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3031), 1, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3039), 1, anon_sym_DOT_DOT, - ACTIONS(3033), 1, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, + anon_sym_CARET, + ACTIONS(3053), 1, anon_sym_DOT, + ACTIONS(3071), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3029), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3055), 2, + ACTIONS(3033), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3037), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3041), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3035), 25, + ACTIONS(3049), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3069), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102387,12 +102485,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102403,46 +102495,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35934] = 15, + [35774] = 12, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3031), 1, - anon_sym_DOT_DOT, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3041), 1, - anon_sym_EQ, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3049), 1, - anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3039), 1, + anon_sym_DOT_DOT, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3029), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3037), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3035), 21, + ACTIONS(3057), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(3055), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102454,6 +102539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102464,20 +102553,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36010] = 7, + [35844] = 7, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3031), 1, + ACTIONS(3039), 1, anon_sym_DOT_DOT, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3029), 2, + ACTIONS(3037), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3073), 13, + ACTIONS(3075), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102491,7 +102580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3071), 25, + ACTIONS(3073), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102517,59 +102606,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36070] = 17, + [35904] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3031), 1, - anon_sym_DOT_DOT, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3039), 1, + anon_sym_DOT_DOT, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3077), 1, + anon_sym_QMARK, + ACTIONS(3063), 1, + anon_sym_as, + ACTIONS(3065), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3029), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3037), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3075), 19, + ACTIONS(3077), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102580,62 +102672,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36150] = 20, + [35990] = 17, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3031), 1, - anon_sym_DOT_DOT, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3039), 1, + anon_sym_DOT_DOT, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3081), 1, - anon_sym_QMARK, - ACTIONS(3083), 1, - anon_sym_as, - ACTIONS(3085), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3029), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3037), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3079), 7, + ACTIONS(3079), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102646,22 +102735,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36236] = 7, + [36070] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2790), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2788), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [36122] = 8, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3031), 1, + ACTIONS(3039), 1, anon_sym_DOT_DOT, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3029), 2, + ACTIONS(3037), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3041), 13, - anon_sym_PLUS, + ACTIONS(3029), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3057), 10, + anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102671,9 +102812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3035), 25, + ACTIONS(3055), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102699,39 +102838,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36296] = 12, + [36184] = 7, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(2600), 1, + anon_sym_COLON_COLON, + ACTIONS(3083), 1, + anon_sym_BANG, + STATE(1055), 1, + sym_field_initializer_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(486), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(484), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36244] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2846), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2844), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [36296] = 7, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3031), 1, + ACTIONS(3039), 1, anon_sym_DOT_DOT, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3045), 1, - anon_sym_AMP, - ACTIONS(3051), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3029), 2, + ACTIONS(3037), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3037), 2, + ACTIONS(3087), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3055), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3039), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3041), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(3035), 25, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3085), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102757,50 +102993,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36366] = 17, + [36356] = 13, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3031), 1, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3039), 1, anon_sym_DOT_DOT, - ACTIONS(3033), 1, - anon_sym_DOT, ACTIONS(3045), 1, - anon_sym_AMP, - ACTIONS(3047), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3091), 1, - anon_sym_EQ, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3029), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3037), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3089), 19, + ACTIONS(3057), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3055), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102810,6 +103036,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102820,34 +103052,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36446] = 7, + [36428] = 10, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3031), 1, + ACTIONS(3039), 1, anon_sym_DOT_DOT, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3029), 2, + ACTIONS(3027), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3037), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3095), 13, - anon_sym_PLUS, + ACTIONS(3051), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3029), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3057), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3093), 25, + ACTIONS(3055), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102873,26 +103108,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36506] = 7, - ACTIONS(2560), 1, - anon_sym_LBRACE, - ACTIONS(2562), 1, - anon_sym_COLON_COLON, - ACTIONS(3097), 1, - anon_sym_BANG, - STATE(1131), 1, - sym_field_initializer_list, + [36494] = 7, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3039), 1, + anon_sym_DOT_DOT, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(422), 15, + ACTIONS(3037), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3091), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -102900,16 +103135,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(424), 24, + ACTIONS(3089), 25, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -102926,62 +103161,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36566] = 20, + [36554] = 17, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3031), 1, - anon_sym_DOT_DOT, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3039), 1, + anon_sym_DOT_DOT, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, - anon_sym_QMARK, - ACTIONS(3083), 1, - anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3095), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3029), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3037), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3099), 7, + ACTIONS(3093), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102992,35 +103224,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36652] = 8, + [36634] = 17, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3031), 1, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3039), 1, anon_sym_DOT_DOT, - ACTIONS(3033), 1, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, + anon_sym_CARET, + ACTIONS(3053), 1, anon_sym_DOT, + ACTIONS(3099), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3029), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3041), 10, + ACTIONS(3027), 2, anon_sym_PLUS, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_DASH, + ACTIONS(3033), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3037), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3035), 25, + ACTIONS(3029), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3049), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3097), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103030,12 +103277,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103046,49 +103287,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36714] = 17, + [36714] = 21, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(858), 1, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2461), 1, anon_sym_COLON_COLON, ACTIONS(3101), 1, sym_identifier, - ACTIONS(3103), 1, - anon_sym_RPAREN, + ACTIONS(3105), 1, + anon_sym_default, ACTIONS(3107), 1, - anon_sym_COMMA, - ACTIONS(3111), 1, sym_metavariable, - STATE(1633), 1, + STATE(766), 1, + sym_scoped_type_identifier, + STATE(986), 1, + sym_generic_type, + STATE(1105), 1, + sym_function_type, + STATE(1191), 1, + sym_for_lifetimes, + STATE(2387), 1, + sym_function_modifiers, + STATE(2413), 1, sym_scoped_identifier, - STATE(2322), 1, + STATE(2486), 1, sym_bracketed_type, - STATE(2525), 1, + STATE(2487), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1079), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1886), 2, - sym_meta_item, - sym__literal, - ACTIONS(3109), 3, + STATE(1548), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3105), 19, + ACTIONS(3103), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103106,89 +103352,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_default, anon_sym_union, - [36793] = 20, + [36801] = 17, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(886), 1, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(858), 1, anon_sym_COLON_COLON, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2877), 1, + ACTIONS(3109), 1, sym_identifier, - ACTIONS(2881), 1, - anon_sym_LPAREN, - ACTIONS(2883), 1, - anon_sym_STAR, - ACTIONS(2889), 1, - anon_sym_for, - ACTIONS(2891), 1, - anon_sym_AMP, - ACTIONS(2893), 1, + ACTIONS(3111), 1, + anon_sym_RPAREN, + ACTIONS(3115), 1, + anon_sym_COMMA, + ACTIONS(3119), 1, sym_metavariable, - STATE(1835), 1, - sym_scoped_type_identifier, - STATE(1917), 1, - sym_generic_type, - STATE(1932), 1, - sym_where_predicate, - STATE(2367), 1, + STATE(1638), 1, + sym_scoped_identifier, + STATE(2334), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2530), 1, sym_generic_type_with_turbofish, - STATE(2545), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2887), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(892), 3, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1053), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1894), 2, + sym_meta_item, + sym__literal, + ACTIONS(3117), 3, sym_self, sym_super, sym_crate, - STATE(2222), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2885), 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, - [36878] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1852), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_POUND, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(1854), 32, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3113), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103206,22 +103413,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [36929] = 21, + [36880] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(670), 1, @@ -103230,45 +103424,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2893), 1, + ACTIONS(2838), 1, sym_metavariable, - ACTIONS(3113), 1, + ACTIONS(3121), 1, sym_identifier, - ACTIONS(3115), 1, + ACTIONS(3123), 1, anon_sym_default, - STATE(1191), 1, + STATE(1194), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1351), 1, + STATE(1357), 1, sym_generic_type, - STATE(1395), 1, + STATE(1401), 1, sym_function_type, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(2473), 1, sym_function_modifiers, - STATE(2545), 1, + STATE(2549), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - ACTIONS(2887), 18, + ACTIONS(2832), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103287,54 +103481,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37016] = 21, + [36967] = 21, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2461), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(3117), 1, - sym_identifier, - ACTIONS(3121), 1, - anon_sym_default, - ACTIONS(3123), 1, + ACTIONS(2838), 1, sym_metavariable, - STATE(769), 1, + ACTIONS(3123), 1, + anon_sym_default, + ACTIONS(3125), 1, + sym_identifier, + STATE(1194), 1, + sym_for_lifetimes, + STATE(1328), 1, sym_scoped_type_identifier, - STATE(816), 1, + STATE(1371), 1, sym_generic_type, - STATE(1112), 1, + STATE(1392), 1, sym_function_type, - STATE(1190), 1, - sym_for_lifetimes, - STATE(2375), 1, - sym_function_modifiers, - STATE(2401), 1, - sym_scoped_identifier, - STATE(2474), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2475), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, + STATE(2473), 1, + sym_function_modifiers, + STATE(2549), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - ACTIONS(3119), 18, + ACTIONS(2832), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103353,88 +103547,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37103] = 21, + [37054] = 6, + ACTIONS(2594), 1, + anon_sym_BANG, + ACTIONS(2596), 1, + anon_sym_COLON_COLON, + ACTIONS(3127), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2590), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2588), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37111] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2461), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(3121), 1, - anon_sym_default, - ACTIONS(3123), 1, - sym_metavariable, - ACTIONS(3125), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2822), 1, sym_identifier, - STATE(759), 1, + ACTIONS(2826), 1, + anon_sym_LPAREN, + ACTIONS(2828), 1, + anon_sym_STAR, + ACTIONS(2834), 1, + anon_sym_for, + ACTIONS(2836), 1, + anon_sym_AMP, + ACTIONS(2838), 1, + sym_metavariable, + STATE(1840), 1, sym_scoped_type_identifier, - STATE(992), 1, + STATE(1874), 1, + sym_where_predicate, + STATE(1927), 1, sym_generic_type, - STATE(1062), 1, - sym_function_type, - STATE(1190), 1, - sym_for_lifetimes, - STATE(2375), 1, - sym_function_modifiers, - STATE(2401), 1, - sym_scoped_identifier, - STATE(2474), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2475), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, + STATE(2549), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(2832), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - ACTIONS(3119), 18, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_union, - [37190] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3003), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3005), 32, + STATE(2238), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2830), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103452,69 +103663,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_mutable_specifier, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [37241] = 21, + [37196] = 21, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(886), 1, + ACTIONS(2453), 1, + anon_sym_fn, + ACTIONS(2461), 1, anon_sym_COLON_COLON, - ACTIONS(2893), 1, - sym_metavariable, - ACTIONS(3115), 1, + ACTIONS(3105), 1, anon_sym_default, - ACTIONS(3127), 1, + ACTIONS(3107), 1, + sym_metavariable, + ACTIONS(3129), 1, sym_identifier, - STATE(1191), 1, - sym_for_lifetimes, - STATE(1321), 1, + STATE(761), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(983), 1, sym_generic_type, - STATE(1392), 1, + STATE(1108), 1, sym_function_type, - STATE(2367), 1, - sym_bracketed_type, - STATE(2368), 1, - sym_generic_type_with_turbofish, - STATE(2432), 1, + STATE(1191), 1, + sym_for_lifetimes, + STATE(2387), 1, sym_function_modifiers, - STATE(2545), 1, + STATE(2413), 1, sym_scoped_identifier, + STATE(2486), 1, + sym_bracketed_type, + STATE(2487), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(2469), 3, sym_self, sym_super, sym_crate, - ACTIONS(2887), 18, + ACTIONS(3103), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103533,54 +103729,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37328] = 20, + [37283] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(2877), 1, + ACTIONS(2822), 1, sym_identifier, - ACTIONS(2881), 1, + ACTIONS(2826), 1, anon_sym_LPAREN, - ACTIONS(2883), 1, + ACTIONS(2828), 1, anon_sym_STAR, - ACTIONS(2889), 1, + ACTIONS(2834), 1, anon_sym_for, - ACTIONS(2891), 1, + ACTIONS(2836), 1, anon_sym_AMP, - ACTIONS(2893), 1, + ACTIONS(2838), 1, sym_metavariable, - STATE(1828), 1, + STATE(1839), 1, sym_where_predicate, - STATE(1835), 1, + STATE(1840), 1, sym_scoped_type_identifier, - STATE(1917), 1, + STATE(1927), 1, sym_generic_type, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2545), 1, + STATE(2549), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2887), 2, + ACTIONS(2832), 2, anon_sym_default, anon_sym_union, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - STATE(2222), 5, + STATE(2238), 5, sym_higher_ranked_trait_bound, sym_lifetime, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(2885), 17, + ACTIONS(2830), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103598,98 +103794,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37413] = 6, - ACTIONS(2574), 1, - anon_sym_BANG, - ACTIONS(2576), 1, - anon_sym_COLON_COLON, - ACTIONS(3129), 1, - sym_identifier, + [37368] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 16, + ACTIONS(2936), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_STAR, - anon_sym_as, - anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2568), 23, - anon_sym_SEMI, + sym_metavariable, + ACTIONS(2938), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_mutable_specifier, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [37419] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1852), 10, anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(1854), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, [37470] = 16, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(702), 1, - anon_sym_DASH, - ACTIONS(706), 1, + ACTIONS(93), 1, aux_sym_string_literal_token1, ACTIONS(858), 1, anon_sym_COLON_COLON, - ACTIONS(3131), 1, + ACTIONS(3109), 1, sym_identifier, - ACTIONS(3137), 1, + ACTIONS(3119), 1, sym_metavariable, - STATE(1413), 1, + ACTIONS(3131), 1, + anon_sym_RPAREN, + STATE(1638), 1, sym_scoped_identifier, - STATE(1425), 1, - sym__literal_pattern, - STATE(2358), 1, + STATE(2334), 1, sym_bracketed_type, - STATE(2525), 1, + STATE(2530), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(708), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3135), 3, + STATE(1053), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2281), 2, + sym_meta_item, + sym__literal, + ACTIONS(3117), 3, sym_self, sym_super, sym_crate, - STATE(1381), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(704), 4, + ACTIONS(91), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3133), 19, + ACTIONS(3113), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103712,44 +103953,44 @@ static const uint16_t ts_small_parse_table[] = { [37546] = 16, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(93), 1, + ACTIONS(702), 1, + anon_sym_DASH, + ACTIONS(706), 1, aux_sym_string_literal_token1, ACTIONS(858), 1, anon_sym_COLON_COLON, - ACTIONS(3101), 1, + ACTIONS(3133), 1, sym_identifier, - ACTIONS(3111), 1, - sym_metavariable, ACTIONS(3139), 1, - anon_sym_RPAREN, - STATE(1633), 1, + sym_metavariable, + STATE(1416), 1, sym_scoped_identifier, - STATE(2322), 1, + STATE(1430), 1, + sym__literal_pattern, + STATE(2370), 1, sym_bracketed_type, - STATE(2525), 1, + STATE(2530), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, + ACTIONS(708), 2, anon_sym_true, anon_sym_false, - STATE(1079), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2286), 2, - sym_meta_item, - sym__literal, - ACTIONS(3109), 3, + ACTIONS(3137), 3, sym_self, sym_super, sym_crate, - ACTIONS(91), 4, + STATE(1375), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(704), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3105), 19, + ACTIONS(3135), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103772,44 +104013,44 @@ static const uint16_t ts_small_parse_table[] = { [37622] = 16, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(93), 1, + ACTIONS(702), 1, + anon_sym_DASH, + ACTIONS(706), 1, aux_sym_string_literal_token1, ACTIONS(858), 1, anon_sym_COLON_COLON, - ACTIONS(3101), 1, + ACTIONS(3141), 1, sym_identifier, - ACTIONS(3111), 1, + ACTIONS(3147), 1, sym_metavariable, - ACTIONS(3141), 1, - anon_sym_RPAREN, - STATE(1633), 1, + STATE(1405), 1, sym_scoped_identifier, - STATE(2322), 1, + STATE(1455), 1, + sym__literal_pattern, + STATE(2370), 1, sym_bracketed_type, - STATE(2525), 1, + STATE(2530), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, + ACTIONS(708), 2, anon_sym_true, anon_sym_false, - STATE(1079), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2286), 2, - sym_meta_item, - sym__literal, - ACTIONS(3109), 3, + ACTIONS(3145), 3, sym_self, sym_super, sym_crate, - ACTIONS(91), 4, + STATE(1375), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(704), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3105), 19, + ACTIONS(3143), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103832,44 +104073,44 @@ static const uint16_t ts_small_parse_table[] = { [37698] = 16, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(702), 1, - anon_sym_DASH, - ACTIONS(706), 1, + ACTIONS(93), 1, aux_sym_string_literal_token1, ACTIONS(858), 1, anon_sym_COLON_COLON, - ACTIONS(3143), 1, + ACTIONS(3109), 1, sym_identifier, - ACTIONS(3149), 1, + ACTIONS(3119), 1, sym_metavariable, - STATE(1408), 1, + ACTIONS(3149), 1, + anon_sym_RPAREN, + STATE(1638), 1, sym_scoped_identifier, - STATE(1437), 1, - sym__literal_pattern, - STATE(2358), 1, + STATE(2334), 1, sym_bracketed_type, - STATE(2525), 1, + STATE(2530), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(708), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3147), 3, + STATE(1053), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2281), 2, + sym_meta_item, + sym__literal, + ACTIONS(3117), 3, sym_self, sym_super, sym_crate, - STATE(1381), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(704), 4, + ACTIONS(91), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3145), 19, + ACTIONS(3113), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103890,14 +104131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_union, [37774] = 5, - ACTIONS(2716), 1, + ACTIONS(2680), 1, anon_sym_COLON_COLON, - ACTIONS(3097), 1, + ACTIONS(3083), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(422), 15, + ACTIONS(486), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103913,7 +104154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(424), 24, + ACTIONS(484), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -103943,12 +104184,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(3151), 1, anon_sym_COLON_COLON, - STATE(1131), 1, + STATE(1055), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(422), 15, + ACTIONS(486), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103964,7 +104205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(424), 23, + ACTIONS(484), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -103992,7 +104233,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3155), 9, + ACTIONS(2997), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -104002,7 +104243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3153), 31, + ACTIONS(2995), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104038,7 +104279,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2833), 9, + ACTIONS(3155), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -104048,7 +104289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2831), 31, + ACTIONS(3153), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104080,90 +104321,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37982] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2594), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + [37982] = 23, + ACTIONS(624), 1, + anon_sym_RBRACK, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3035), 1, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, + ACTIONS(3047), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(2596), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(3061), 1, anon_sym_QMARK, + ACTIONS(3063), 1, anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38031] = 5, - ACTIONS(2634), 1, - anon_sym_BANG, + ACTIONS(3065), 1, + anon_sym_EQ, ACTIONS(3157), 1, - anon_sym_COLON_COLON, + anon_sym_SEMI, + ACTIONS(3159), 1, + anon_sym_COMMA, + ACTIONS(3163), 1, + anon_sym_DOT_DOT, + STATE(1957), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 15, + ACTIONS(3027), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2568), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3029), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104174,45 +104387,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38084] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(858), 1, - anon_sym_COLON_COLON, - ACTIONS(3101), 1, - sym_identifier, - ACTIONS(3111), 1, - sym_metavariable, - STATE(1633), 1, - sym_scoped_identifier, - STATE(2322), 1, - sym_bracketed_type, - STATE(2525), 1, - sym_generic_type_with_turbofish, + [38071] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1079), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2286), 2, - sym_meta_item, - sym__literal, - ACTIONS(3109), 3, + ACTIONS(3167), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3165), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, sym_self, sym_super, sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3105), 19, + [38120] = 4, + ACTIONS(3173), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3171), 8, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3169), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104230,9 +104466,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - [38157] = 3, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38171] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -104278,11 +104526,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38206] = 3, + [38220] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3161), 9, + ACTIONS(3001), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -104292,7 +104540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3159), 31, + ACTIONS(2999), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104324,11 +104572,69 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38255] = 3, + [38269] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(858), 1, + anon_sym_COLON_COLON, + ACTIONS(3109), 1, + sym_identifier, + ACTIONS(3119), 1, + sym_metavariable, + STATE(1638), 1, + sym_scoped_identifier, + STATE(2334), 1, + sym_bracketed_type, + STATE(2530), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1053), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2281), 2, + sym_meta_item, + sym__literal, + ACTIONS(3117), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3113), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [38342] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 16, + ACTIONS(2572), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -104345,7 +104651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2604), 24, + ACTIONS(2574), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -104370,11 +104676,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38304] = 3, + [38391] = 23, + ACTIONS(378), 1, + anon_sym_RBRACK, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, + anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3061), 1, + anon_sym_QMARK, + ACTIONS(3063), 1, + anon_sym_as, + ACTIONS(3065), 1, + anon_sym_EQ, + ACTIONS(3163), 1, + anon_sym_DOT_DOT, + ACTIONS(3175), 1, + anon_sym_SEMI, + ACTIONS(3177), 1, + anon_sym_COMMA, + STATE(2006), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3027), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3033), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3051), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3029), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3049), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3067), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38480] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3165), 9, + ACTIONS(3181), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -104384,7 +104756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3163), 31, + ACTIONS(3179), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104416,12 +104788,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38353] = 3, + [38529] = 4, + ACTIONS(3183), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2867), 9, - anon_sym_LPAREN, + ACTIONS(3171), 8, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, @@ -104430,7 +104803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2865), 31, + ACTIONS(3169), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104462,11 +104835,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38402] = 3, + [38580] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 16, + ACTIONS(2584), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -104483,7 +104856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2588), 24, + ACTIONS(2586), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -104508,109 +104881,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38451] = 4, - ACTIONS(3171), 1, + [38629] = 5, + ACTIONS(2634), 1, + anon_sym_BANG, + ACTIONS(3185), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3169), 8, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(2590), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - sym_metavariable, - ACTIONS(3167), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [38502] = 23, - ACTIONS(630), 1, - anon_sym_RBRACK, - ACTIONS(3025), 1, - anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, - anon_sym_AMP, - ACTIONS(3047), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, + anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2588), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(3083), 1, anon_sym_as, - ACTIONS(3085), 1, - anon_sym_EQ, - ACTIONS(3173), 1, - anon_sym_SEMI, - ACTIONS(3175), 1, - anon_sym_COMMA, - ACTIONS(3179), 1, - anon_sym_DOT_DOT, - STATE(1948), 1, - aux_sym_array_expression_repeat1, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38682] = 5, + ACTIONS(2546), 1, + anon_sym_BANG, + ACTIONS(3187), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(486), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3043), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + anon_sym_DOT, + ACTIONS(484), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104621,62 +104977,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38591] = 23, - ACTIONS(374), 1, - anon_sym_RBRACK, - ACTIONS(3025), 1, - anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, - anon_sym_AMP, - ACTIONS(3047), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, - anon_sym_PIPE, - ACTIONS(3051), 1, - anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, - anon_sym_QMARK, - ACTIONS(3083), 1, - anon_sym_as, - ACTIONS(3085), 1, - anon_sym_EQ, - ACTIONS(3179), 1, - anon_sym_DOT_DOT, - ACTIONS(3181), 1, - anon_sym_SEMI, - ACTIONS(3183), 1, - anon_sym_COMMA, - STATE(1995), 1, - aux_sym_array_expression_repeat1, + [38735] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(2564), 16, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3043), 2, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + anon_sym_DOT, + ACTIONS(2566), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104687,15 +105023,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38680] = 5, - ACTIONS(2546), 1, - anon_sym_BANG, - ACTIONS(3185), 1, + [38784] = 4, + ACTIONS(3189), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(422), 15, + ACTIONS(486), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104711,7 +105045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(424), 23, + ACTIONS(484), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -104735,22 +105069,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38733] = 4, - ACTIONS(3187), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3169), 8, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + [38834] = 18, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(882), 1, anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(2838), 1, sym_metavariable, - ACTIONS(3167), 31, + ACTIONS(3123), 1, + anon_sym_default, + ACTIONS(3191), 1, + sym_identifier, + ACTIONS(3193), 1, + anon_sym_fn, + STATE(1790), 1, + sym_scoped_type_identifier, + STATE(2379), 1, + sym_bracketed_type, + STATE(2380), 1, + sym_generic_type_with_turbofish, + STATE(2415), 1, + sym_function_modifiers, + STATE(2459), 1, + sym_generic_type, + STATE(2549), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1548), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(888), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(2832), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104768,74 +105128,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [38784] = 22, + [38912] = 22, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3189), 1, + ACTIONS(3195), 1, anon_sym_RPAREN, - ACTIONS(3191), 1, + ACTIONS(3197), 1, anon_sym_COMMA, - STATE(2068), 1, + STATE(2123), 1, aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104846,13 +105193,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38870] = 4, - ACTIONS(2654), 1, + [38998] = 4, + ACTIONS(3185), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2656), 15, + ACTIONS(2590), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104868,7 +105215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2652), 23, + ACTIONS(2588), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -104892,48 +105239,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38920] = 18, + [39048] = 18, ACTIONS(77), 1, anon_sym_LT, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(886), 1, + ACTIONS(882), 1, anon_sym_COLON_COLON, - ACTIONS(2893), 1, + ACTIONS(2838), 1, sym_metavariable, - ACTIONS(3115), 1, + ACTIONS(3123), 1, anon_sym_default, - ACTIONS(3193), 1, + ACTIONS(3199), 1, sym_identifier, - ACTIONS(3195), 1, + ACTIONS(3201), 1, anon_sym_fn, STATE(1785), 1, sym_scoped_type_identifier, - STATE(2367), 1, + STATE(2379), 1, sym_bracketed_type, - STATE(2368), 1, + STATE(2380), 1, sym_generic_type_with_turbofish, - STATE(2403), 1, + STATE(2431), 1, sym_function_modifiers, - STATE(2452), 1, + STATE(2459), 1, sym_generic_type, - STATE(2545), 1, + STATE(2549), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, + STATE(1548), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(892), 3, + ACTIONS(888), 3, sym_self, sym_super, sym_crate, - ACTIONS(2887), 18, + ACTIONS(2832), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104952,73 +105299,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [38998] = 18, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(886), 1, + [39126] = 4, + ACTIONS(2638), 1, anon_sym_COLON_COLON, - ACTIONS(2893), 1, - sym_metavariable, - ACTIONS(3115), 1, - anon_sym_default, - ACTIONS(3197), 1, - sym_identifier, - ACTIONS(3199), 1, - anon_sym_fn, - STATE(1772), 1, - sym_scoped_type_identifier, - STATE(2367), 1, - sym_bracketed_type, - STATE(2368), 1, - sym_generic_type_with_turbofish, - STATE(2452), 1, - sym_generic_type, - STATE(2472), 1, - sym_function_modifiers, - STATE(2545), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(892), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2887), 18, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_union, - [39076] = 4, - ACTIONS(2714), 1, + ACTIONS(2640), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2636), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39176] = 4, + ACTIONS(2708), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2656), 15, + ACTIONS(2640), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -105034,7 +105367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2652), 23, + ACTIONS(2636), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -105058,60 +105391,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39126] = 22, + [39226] = 22, ACTIONS(392), 1, anon_sym_RPAREN, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3201), 1, + ACTIONS(3203), 1, anon_sym_COMMA, - STATE(1885), 1, + STATE(1888), 1, aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105122,42 +105455,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39212] = 4, - ACTIONS(3157), 1, - anon_sym_COLON_COLON, + [39312] = 20, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, + anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3061), 1, + anon_sym_QMARK, + ACTIONS(3063), 1, + anon_sym_as, + ACTIONS(3065), 1, + anon_sym_EQ, + ACTIONS(3163), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 15, + ACTIONS(3027), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2568), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3205), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3029), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105168,42 +105516,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39262] = 4, - ACTIONS(3203), 1, - anon_sym_COLON_COLON, + [39393] = 20, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, + anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3061), 1, + anon_sym_QMARK, + ACTIONS(3063), 1, + anon_sym_as, + ACTIONS(3065), 1, + anon_sym_EQ, + ACTIONS(3163), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(422), 15, + ACTIONS(3027), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(424), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3207), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3029), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105214,58 +105577,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39312] = 21, + [39474] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3081), 1, + ACTIONS(3061), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3205), 1, + ACTIONS(3209), 1, anon_sym_LBRACE, - ACTIONS(3211), 1, + ACTIONS(3216), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3220), 1, anon_sym_AMP, - ACTIONS(3219), 1, + ACTIONS(3224), 1, anon_sym_DOT_DOT, - ACTIONS(3221), 1, + ACTIONS(3226), 1, anon_sym_AMP_AMP, - ACTIONS(3223), 1, + ACTIONS(3228), 1, anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3230), 1, anon_sym_PIPE, - ACTIONS(3227), 1, + ACTIONS(3232), 1, anon_sym_CARET, - STATE(63), 1, - sym_match_block, + STATE(2117), 1, + aux_sym_let_chain_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3217), 2, + ACTIONS(3222), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 2, + ACTIONS(3236), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3209), 3, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3229), 4, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3238), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105276,57 +105639,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39395] = 20, + [39557] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, + ACTIONS(3240), 1, + anon_sym_SEMI, + ACTIONS(3242), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3235), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3039), 3, + ACTIONS(3029), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3049), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3067), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39640] = 21, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3061), 1, + anon_sym_QMARK, + ACTIONS(3063), 1, + anon_sym_as, + ACTIONS(3216), 1, + anon_sym_EQ, + ACTIONS(3220), 1, + anon_sym_AMP, + ACTIONS(3224), 1, + anon_sym_DOT_DOT, + ACTIONS(3228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3230), 1, + anon_sym_PIPE, + ACTIONS(3232), 1, + anon_sym_CARET, + ACTIONS(3244), 1, + anon_sym_LBRACE, + ACTIONS(3246), 1, + anon_sym_AMP_AMP, + STATE(244), 1, + sym_match_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3212), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3218), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3222), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3238), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105337,58 +105763,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39476] = 21, + [39723] = 21, ACTIONS(278), 1, anon_sym_RBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3237), 1, + ACTIONS(3240), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105399,58 +105825,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39559] = 21, - ACTIONS(490), 1, - anon_sym_RPAREN, + [39806] = 7, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3250), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3248), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3087), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3047), 1, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3085), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39861] = 7, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3250), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3248), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3091), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(3051), 1, anon_sym_CARET, - ACTIONS(3061), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3089), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39916] = 20, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, + anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3061), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3239), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3252), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105461,57 +105982,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39642] = 20, + [39997] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, + ACTIONS(3254), 1, + anon_sym_RPAREN, + ACTIONS(3256), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3241), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105522,58 +106044,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39723] = 21, + [40080] = 7, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3250), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3248), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3057), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3047), 1, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3055), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [40135] = 20, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3237), 1, - anon_sym_SEMI, - ACTIONS(3243), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3258), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105584,58 +106153,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39806] = 21, + [40216] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3237), 1, + ACTIONS(3240), 1, anon_sym_SEMI, - ACTIONS(3245), 1, + ACTIONS(3260), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105646,58 +106215,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39889] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, + [40299] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - anon_sym_QMARK, - ACTIONS(3083), 1, - anon_sym_as, - ACTIONS(3211), 1, - anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3219), 1, - anon_sym_DOT_DOT, - ACTIONS(3221), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3223), 1, + ACTIONS(3043), 1, anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3227), 1, + ACTIONS(3047), 1, anon_sym_CARET, - STATE(1090), 1, - sym_block, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3061), 1, + anon_sym_QMARK, + ACTIONS(3063), 1, + anon_sym_as, + ACTIONS(3065), 1, + anon_sym_EQ, + ACTIONS(3163), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3217), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3209), 3, + ACTIONS(3161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3262), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3229), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105708,58 +106276,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39972] = 21, - ACTIONS(270), 1, - anon_sym_RBRACE, + [40380] = 21, + ACTIONS(632), 1, + anon_sym_LBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3045), 1, - anon_sym_AMP, - ACTIONS(3047), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, - anon_sym_PIPE, - ACTIONS(3051), 1, - anon_sym_CARET, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3216), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3220), 1, + anon_sym_AMP, + ACTIONS(3224), 1, anon_sym_DOT_DOT, - ACTIONS(3237), 1, - anon_sym_SEMI, + ACTIONS(3228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3230), 1, + anon_sym_PIPE, + ACTIONS(3232), 1, + anon_sym_CARET, + ACTIONS(3246), 1, + anon_sym_AMP_AMP, + STATE(231), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3222), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3238), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105770,54 +106338,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40055] = 17, + [40463] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3091), 1, - anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3221), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3223), 1, + ACTIONS(3043), 1, anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3227), 1, + ACTIONS(3047), 1, anon_sym_CARET, - ACTIONS(3249), 1, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3061), 1, + anon_sym_QMARK, + ACTIONS(3063), 1, + anon_sym_as, + ACTIONS(3065), 1, + anon_sym_EQ, + ACTIONS(3163), 1, anon_sym_DOT_DOT, + ACTIONS(3240), 1, + anon_sym_SEMI, + ACTIONS(3264), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3209), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3229), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3089), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105828,57 +106400,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40130] = 20, + [40546] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, + ACTIONS(3266), 1, + anon_sym_RBRACE, + ACTIONS(3268), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3251), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105889,58 +106462,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40211] = 21, - ACTIONS(15), 1, + [40629] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3081), 1, + ACTIONS(3061), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3211), 1, + ACTIONS(3216), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3220), 1, anon_sym_AMP, - ACTIONS(3219), 1, + ACTIONS(3224), 1, anon_sym_DOT_DOT, - ACTIONS(3221), 1, - anon_sym_AMP_AMP, - ACTIONS(3223), 1, + ACTIONS(3228), 1, anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3230), 1, anon_sym_PIPE, - ACTIONS(3227), 1, + ACTIONS(3232), 1, anon_sym_CARET, - STATE(77), 1, + ACTIONS(3246), 1, + anon_sym_AMP_AMP, + STATE(1092), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3217), 2, + ACTIONS(3222), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 2, + ACTIONS(3236), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3209), 3, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3229), 4, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3238), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105951,44 +106524,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40294] = 7, + [40712] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3249), 1, + ACTIONS(3061), 1, + anon_sym_QMARK, + ACTIONS(3063), 1, + anon_sym_as, + ACTIONS(3216), 1, + anon_sym_EQ, + ACTIONS(3220), 1, + anon_sym_AMP, + ACTIONS(3224), 1, anon_sym_DOT_DOT, + ACTIONS(3228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3230), 1, + anon_sym_PIPE, + ACTIONS(3232), 1, + anon_sym_CARET, + ACTIONS(3246), 1, + anon_sym_AMP_AMP, + ACTIONS(3270), 1, + anon_sym_LBRACE, + STATE(60), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3247), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3073), 13, + ACTIONS(3212), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3218), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3222), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3236), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3214), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3071), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3238), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105999,57 +106586,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40349] = 20, + [40795] = 17, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3081), 1, + anon_sym_EQ, + ACTIONS(3220), 1, anon_sym_AMP, - ACTIONS(3047), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3230), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3232), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, - anon_sym_QMARK, - ACTIONS(3083), 1, - anon_sym_as, - ACTIONS(3085), 1, - anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3246), 1, + anon_sym_AMP_AMP, + ACTIONS(3250), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3236), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3248), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3253), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3039), 3, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3079), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106060,57 +106644,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40430] = 20, + [40870] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3045), 1, - anon_sym_AMP, - ACTIONS(3047), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, - anon_sym_PIPE, - ACTIONS(3051), 1, - anon_sym_CARET, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3216), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3220), 1, + anon_sym_AMP, + ACTIONS(3224), 1, anon_sym_DOT_DOT, + ACTIONS(3228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3230), 1, + anon_sym_PIPE, + ACTIONS(3232), 1, + anon_sym_CARET, + ACTIONS(3246), 1, + anon_sym_AMP_AMP, + STATE(1068), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3222), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3255), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3039), 3, + ACTIONS(3236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3238), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106121,57 +106706,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40511] = 20, + [40953] = 9, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3045), 1, - anon_sym_AMP, - ACTIONS(3047), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, - anon_sym_PIPE, - ACTIONS(3051), 1, - anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, - anon_sym_QMARK, - ACTIONS(3083), 1, - anon_sym_as, - ACTIONS(3085), 1, - anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3250), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3055), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3248), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3257), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3039), 3, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3057), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3055), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106182,58 +106756,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40592] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, + [41012] = 21, + ACTIONS(268), 1, + anon_sym_RBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - anon_sym_QMARK, - ACTIONS(3083), 1, - anon_sym_as, - ACTIONS(3211), 1, - anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3219), 1, - anon_sym_DOT_DOT, - ACTIONS(3221), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3223), 1, + ACTIONS(3043), 1, anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3227), 1, + ACTIONS(3047), 1, anon_sym_CARET, - STATE(1119), 1, - sym_block, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3061), 1, + anon_sym_QMARK, + ACTIONS(3063), 1, + anon_sym_as, + ACTIONS(3065), 1, + anon_sym_EQ, + ACTIONS(3163), 1, + anon_sym_DOT_DOT, + ACTIONS(3240), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3217), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3209), 3, + ACTIONS(3161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3229), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106244,58 +106818,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40675] = 21, + [41095] = 11, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3220), 1, anon_sym_AMP, - ACTIONS(3047), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, - anon_sym_PIPE, - ACTIONS(3051), 1, - anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, - anon_sym_QMARK, - ACTIONS(3083), 1, - anon_sym_as, - ACTIONS(3085), 1, - anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3250), 1, anon_sym_DOT_DOT, - ACTIONS(3237), 1, - anon_sym_SEMI, - ACTIONS(3259), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3236), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3248), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3057), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3055), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106306,54 +106870,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40758] = 17, + [41158] = 12, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3069), 1, - anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3220), 1, anon_sym_AMP, - ACTIONS(3221), 1, - anon_sym_AMP_AMP, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, - anon_sym_PIPE, - ACTIONS(3227), 1, + ACTIONS(3232), 1, anon_sym_CARET, - ACTIONS(3249), 1, + ACTIONS(3250), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3213), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3231), 2, + ACTIONS(3236), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3248), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3209), 3, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3229), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3067), 14, + ACTIONS(3057), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(3055), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106364,57 +106923,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40833] = 20, + [41223] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - anon_sym_QMARK, - ACTIONS(3083), 1, - anon_sym_as, - ACTIONS(3211), 1, - anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3221), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3223), 1, + ACTIONS(3043), 1, anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3227), 1, + ACTIONS(3047), 1, anon_sym_CARET, - ACTIONS(3249), 1, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3061), 1, + anon_sym_QMARK, + ACTIONS(3063), 1, + anon_sym_as, + ACTIONS(3065), 1, + anon_sym_EQ, + ACTIONS(3163), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3079), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3207), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3209), 3, + ACTIONS(3272), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3229), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106425,50 +106984,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40914] = 17, + [41304] = 17, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3059), 1, + ACTIONS(3031), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3220), 1, anon_sym_AMP, - ACTIONS(3221), 1, - anon_sym_AMP_AMP, - ACTIONS(3223), 1, + ACTIONS(3228), 1, anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3230), 1, anon_sym_PIPE, - ACTIONS(3227), 1, + ACTIONS(3232), 1, anon_sym_CARET, - ACTIONS(3249), 1, + ACTIONS(3246), 1, + anon_sym_AMP_AMP, + ACTIONS(3250), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3231), 2, + ACTIONS(3236), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3248), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3209), 3, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3229), 4, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3057), 14, + ACTIONS(3023), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -106483,58 +107042,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40989] = 21, + [41379] = 21, + ACTIONS(418), 1, + anon_sym_RPAREN, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - anon_sym_QMARK, - ACTIONS(3083), 1, - anon_sym_as, - ACTIONS(3211), 1, - anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3219), 1, - anon_sym_DOT_DOT, - ACTIONS(3221), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3223), 1, + ACTIONS(3043), 1, anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3227), 1, + ACTIONS(3047), 1, anon_sym_CARET, - ACTIONS(3261), 1, - anon_sym_LBRACE, - STATE(1076), 1, - sym_match_block, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3061), 1, + anon_sym_QMARK, + ACTIONS(3063), 1, + anon_sym_as, + ACTIONS(3065), 1, + anon_sym_EQ, + ACTIONS(3163), 1, + anon_sym_DOT_DOT, + ACTIONS(3274), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3217), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3209), 3, + ACTIONS(3161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3229), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106545,58 +107104,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41072] = 21, - ACTIONS(436), 1, - anon_sym_RPAREN, + [41462] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3239), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3276), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106607,58 +107165,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41155] = 21, + [41543] = 21, + ACTIONS(272), 1, + anon_sym_RBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3263), 1, - anon_sym_RBRACE, - ACTIONS(3265), 1, - anon_sym_COMMA, + ACTIONS(3240), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106669,54 +107227,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41238] = 17, + [41626] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3077), 1, + ACTIONS(3061), 1, + anon_sym_QMARK, + ACTIONS(3063), 1, + anon_sym_as, + ACTIONS(3216), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3220), 1, anon_sym_AMP, - ACTIONS(3221), 1, - anon_sym_AMP_AMP, - ACTIONS(3223), 1, + ACTIONS(3224), 1, + anon_sym_DOT_DOT, + ACTIONS(3228), 1, anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3230), 1, anon_sym_PIPE, - ACTIONS(3227), 1, + ACTIONS(3232), 1, anon_sym_CARET, - ACTIONS(3249), 1, - anon_sym_DOT_DOT, + ACTIONS(3246), 1, + anon_sym_AMP_AMP, + STATE(80), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3222), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3209), 3, + ACTIONS(3236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3229), 4, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3075), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3238), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106727,57 +107289,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41313] = 20, + [41709] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, + ACTIONS(3240), 1, + anon_sym_SEMI, + ACTIONS(3278), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3267), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106788,58 +107351,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41394] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, + [41792] = 16, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - anon_sym_QMARK, - ACTIONS(3083), 1, - anon_sym_as, - ACTIONS(3211), 1, - anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3219), 1, + ACTIONS(3039), 1, anon_sym_DOT_DOT, - ACTIONS(3221), 1, - anon_sym_AMP_AMP, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3227), 1, + ACTIONS(3047), 1, anon_sym_CARET, - STATE(80), 1, - sym_block, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3057), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3217), 2, + ACTIONS(3037), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3209), 3, + ACTIONS(3280), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3229), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3055), 14, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_as, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106850,58 +107408,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41477] = 21, + [41865] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3237), 1, - anon_sym_SEMI, - ACTIONS(3269), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3283), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106912,57 +107469,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41560] = 20, + [41946] = 16, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3081), 1, - anon_sym_QMARK, - ACTIONS(3083), 1, - anon_sym_as, - ACTIONS(3211), 1, + ACTIONS(3057), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3220), 1, anon_sym_AMP, - ACTIONS(3221), 1, - anon_sym_AMP_AMP, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3230), 1, anon_sym_PIPE, - ACTIONS(3227), 1, + ACTIONS(3232), 1, anon_sym_CARET, - ACTIONS(3249), 1, + ACTIONS(3246), 1, + anon_sym_AMP_AMP, + ACTIONS(3250), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3099), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3207), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3231), 2, + ACTIONS(3236), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3248), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3209), 3, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3229), 4, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3055), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106973,58 +107526,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41641] = 21, - ACTIONS(266), 1, - anon_sym_RBRACE, + [42019] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3237), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3285), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107035,58 +107587,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41724] = 21, - ACTIONS(262), 1, - anon_sym_RBRACE, + [42100] = 15, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3057), 1, + anon_sym_EQ, + ACTIONS(3220), 1, anon_sym_AMP, - ACTIONS(3047), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3230), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3232), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, - anon_sym_QMARK, - ACTIONS(3083), 1, - anon_sym_as, - ACTIONS(3085), 1, - anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3250), 1, anon_sym_DOT_DOT, - ACTIONS(3237), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3236), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3248), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3055), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107097,91 +107643,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41807] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3271), 1, - sym_identifier, - ACTIONS(3273), 1, - anon_sym_LBRACE, - ACTIONS(3275), 1, - anon_sym_RBRACE, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3281), 1, - anon_sym_COMMA, - ACTIONS(3283), 1, - anon_sym_COLON_COLON, - ACTIONS(3287), 1, - sym_metavariable, - STATE(1741), 1, - sym_scoped_identifier, - STATE(2322), 1, - sym_bracketed_type, - STATE(2525), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3285), 3, - sym_self, - sym_super, - sym_crate, - STATE(1896), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3279), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [41878] = 8, + [42171] = 10, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3249), 1, + ACTIONS(3250), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3247), 2, + ACTIONS(3212), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3248), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3209), 3, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3041), 10, - anon_sym_PLUS, + ACTIONS(3057), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3035), 20, + ACTIONS(3055), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -107202,50 +107694,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41935] = 17, + [42232] = 17, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3065), 1, + ACTIONS(3071), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3220), 1, anon_sym_AMP, - ACTIONS(3221), 1, - anon_sym_AMP_AMP, - ACTIONS(3223), 1, + ACTIONS(3228), 1, anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3230), 1, anon_sym_PIPE, - ACTIONS(3227), 1, + ACTIONS(3232), 1, anon_sym_CARET, - ACTIONS(3249), 1, + ACTIONS(3246), 1, + anon_sym_AMP_AMP, + ACTIONS(3250), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3231), 2, + ACTIONS(3236), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3248), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3209), 3, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3229), 4, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3063), 14, + ACTIONS(3069), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -107260,58 +107752,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42010] = 21, + [42307] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - anon_sym_QMARK, - ACTIONS(3083), 1, - anon_sym_as, - ACTIONS(3211), 1, - anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3219), 1, - anon_sym_DOT_DOT, - ACTIONS(3221), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3223), 1, + ACTIONS(3043), 1, anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3227), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3061), 1, + anon_sym_QMARK, + ACTIONS(3063), 1, + anon_sym_as, + ACTIONS(3065), 1, + anon_sym_EQ, + ACTIONS(3163), 1, + anon_sym_DOT_DOT, + ACTIONS(3287), 1, + anon_sym_RBRACE, ACTIONS(3289), 1, - anon_sym_LBRACE, - STATE(229), 1, - sym_match_block, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3217), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3209), 3, + ACTIONS(3161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3229), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107322,50 +107814,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42093] = 13, + [42390] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3215), 1, + ACTIONS(3061), 1, + anon_sym_QMARK, + ACTIONS(3063), 1, + anon_sym_as, + ACTIONS(3216), 1, + anon_sym_EQ, + ACTIONS(3220), 1, anon_sym_AMP, - ACTIONS(3225), 1, + ACTIONS(3224), 1, + anon_sym_DOT_DOT, + ACTIONS(3228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3230), 1, anon_sym_PIPE, - ACTIONS(3227), 1, + ACTIONS(3232), 1, anon_sym_CARET, - ACTIONS(3249), 1, - anon_sym_DOT_DOT, + ACTIONS(3246), 1, + anon_sym_AMP_AMP, + ACTIONS(3291), 1, + anon_sym_LBRACE, + STATE(1103), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3247), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3041), 3, - anon_sym_EQ, + ACTIONS(3218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3209), 3, + ACTIONS(3222), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3035), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3238), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107376,94 +107876,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42160] = 9, + [42473] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3249), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3247), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3209), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3041), 8, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3035), 1, anon_sym_AMP, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, + ACTIONS(3047), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3035), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3061), 1, anon_sym_QMARK, + ACTIONS(3063), 1, anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [42219] = 7, - ACTIONS(3025), 1, - anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3249), 1, + ACTIONS(3065), 1, + anon_sym_EQ, + ACTIONS(3163), 1, anon_sym_DOT_DOT, + ACTIONS(3274), 1, + anon_sym_COMMA, + ACTIONS(3293), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3247), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3041), 13, + ACTIONS(3027), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3029), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3035), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107474,57 +107938,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42274] = 20, + [42556] = 13, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3220), 1, anon_sym_AMP, - ACTIONS(3047), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3230), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3232), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, - anon_sym_QMARK, - ACTIONS(3083), 1, - anon_sym_as, - ACTIONS(3085), 1, - anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3250), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3236), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3248), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3291), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3039), 3, + ACTIONS(3057), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3055), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107535,57 +107992,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42355] = 20, + [42623] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, + ACTIONS(3240), 1, + anon_sym_SEMI, + ACTIONS(3295), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3293), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107596,57 +108054,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42436] = 20, + [42706] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3295), 2, + ACTIONS(3297), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107657,58 +108115,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42517] = 21, + [42787] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3237), 1, - anon_sym_SEMI, - ACTIONS(3297), 1, - anon_sym_RBRACE, + ACTIONS(3209), 1, + anon_sym_EQ_GT, + ACTIONS(3299), 1, + anon_sym_AMP_AMP, + STATE(2028), 1, + aux_sym_let_chain_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107719,58 +108177,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42600] = 21, - ACTIONS(264), 1, - anon_sym_RBRACE, + [42870] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3237), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3301), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107781,45 +108238,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42683] = 17, + [42951] = 17, ACTIONS(288), 1, anon_sym_EQ, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3215), 1, + ACTIONS(3220), 1, anon_sym_AMP, - ACTIONS(3221), 1, - anon_sym_AMP_AMP, - ACTIONS(3223), 1, + ACTIONS(3228), 1, anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3230), 1, anon_sym_PIPE, - ACTIONS(3227), 1, + ACTIONS(3232), 1, anon_sym_CARET, - ACTIONS(3249), 1, + ACTIONS(3246), 1, + anon_sym_AMP_AMP, + ACTIONS(3250), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3231), 2, + ACTIONS(3236), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3248), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3209), 3, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3229), 4, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -107839,20 +108296,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42758] = 7, + [43026] = 7, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3249), 1, + ACTIONS(3250), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3247), 2, + ACTIONS(3248), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3095), 13, + ACTIONS(3075), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -107866,7 +108323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3093), 20, + ACTIONS(3073), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -107887,48 +108344,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42813] = 11, + [43081] = 17, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3215), 1, + ACTIONS(3099), 1, + anon_sym_EQ, + ACTIONS(3220), 1, anon_sym_AMP, - ACTIONS(3249), 1, + ACTIONS(3228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3230), 1, + anon_sym_PIPE, + ACTIONS(3232), 1, + anon_sym_CARET, + ACTIONS(3246), 1, + anon_sym_AMP_AMP, + ACTIONS(3250), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3231), 2, + ACTIONS(3218), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3236), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3248), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3209), 3, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3041), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3035), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3097), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107939,37 +108402,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42876] = 10, + [43156] = 8, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3249), 1, + ACTIONS(3250), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3248), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3209), 3, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3041), 6, + ACTIONS(3057), 10, + anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3035), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3055), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -107990,58 +108451,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42937] = 21, + [43213] = 21, + ACTIONS(113), 1, + anon_sym_RBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3299), 1, - anon_sym_RPAREN, - ACTIONS(3301), 1, - anon_sym_COMMA, + ACTIONS(3240), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108052,57 +108513,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43020] = 20, + [43296] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3045), 1, - anon_sym_AMP, - ACTIONS(3047), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, - anon_sym_PIPE, - ACTIONS(3051), 1, - anon_sym_CARET, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3216), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3220), 1, + anon_sym_AMP, + ACTIONS(3224), 1, anon_sym_DOT_DOT, + ACTIONS(3228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3230), 1, + anon_sym_PIPE, + ACTIONS(3232), 1, + anon_sym_CARET, + ACTIONS(3246), 1, + anon_sym_AMP_AMP, + STATE(67), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3222), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3303), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3039), 3, + ACTIONS(3236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3238), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108113,44 +108575,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43101] = 7, + [43379] = 21, + ACTIONS(105), 1, + anon_sym_RBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, + anon_sym_CARET, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3249), 1, + ACTIONS(3061), 1, + anon_sym_QMARK, + ACTIONS(3063), 1, + anon_sym_as, + ACTIONS(3065), 1, + anon_sym_EQ, + ACTIONS(3163), 1, anon_sym_DOT_DOT, + ACTIONS(3240), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3247), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3027), 13, + ACTIONS(3027), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3029), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3023), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108161,58 +108637,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43156] = 21, - ACTIONS(632), 1, - anon_sym_LBRACE, + [43462] = 16, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3081), 1, - anon_sym_QMARK, - ACTIONS(3083), 1, - anon_sym_as, - ACTIONS(3211), 1, + ACTIONS(3057), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3220), 1, anon_sym_AMP, - ACTIONS(3219), 1, - anon_sym_DOT_DOT, - ACTIONS(3221), 1, - anon_sym_AMP_AMP, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3230), 1, anon_sym_PIPE, - ACTIONS(3227), 1, + ACTIONS(3232), 1, anon_sym_CARET, - STATE(239), 1, - sym_block, + ACTIONS(3250), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3217), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 2, + ACTIONS(3236), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3209), 3, + ACTIONS(3248), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3280), 2, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3229), 4, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3055), 14, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_as, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108223,52 +108694,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43239] = 15, + [43535] = 21, + ACTIONS(456), 1, + anon_sym_RPAREN, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3041), 1, - anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3225), 1, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3227), 1, + ACTIONS(3047), 1, anon_sym_CARET, - ACTIONS(3249), 1, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3061), 1, + anon_sym_QMARK, + ACTIONS(3063), 1, + anon_sym_as, + ACTIONS(3065), 1, + anon_sym_EQ, + ACTIONS(3163), 1, anon_sym_DOT_DOT, + ACTIONS(3274), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3209), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3229), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3035), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108279,58 +108756,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43310] = 21, + [43618] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3045), 1, - anon_sym_AMP, - ACTIONS(3047), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, - anon_sym_PIPE, - ACTIONS(3051), 1, - anon_sym_CARET, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3216), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3220), 1, + anon_sym_AMP, + ACTIONS(3228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3230), 1, + anon_sym_PIPE, + ACTIONS(3232), 1, + anon_sym_CARET, + ACTIONS(3246), 1, + anon_sym_AMP_AMP, + ACTIONS(3250), 1, anon_sym_DOT_DOT, - ACTIONS(3239), 1, - anon_sym_COMMA, - ACTIONS(3305), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3059), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3236), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3248), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3238), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108341,58 +108817,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43393] = 21, + [43699] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3303), 1, + sym_identifier, + ACTIONS(3305), 1, + anon_sym_LBRACE, + ACTIONS(3307), 1, + anon_sym_RBRACE, + ACTIONS(3309), 1, + anon_sym_STAR, + ACTIONS(3313), 1, + anon_sym_COMMA, + ACTIONS(3315), 1, + anon_sym_COLON_COLON, + ACTIONS(3319), 1, + sym_metavariable, + STATE(1745), 1, + sym_scoped_identifier, + STATE(2334), 1, + sym_bracketed_type, + STATE(2530), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3317), 3, + sym_self, + sym_super, + sym_crate, + STATE(1862), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3311), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [43770] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3045), 1, - anon_sym_AMP, - ACTIONS(3047), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, - anon_sym_PIPE, - ACTIONS(3051), 1, - anon_sym_CARET, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3216), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3220), 1, + anon_sym_AMP, + ACTIONS(3228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3230), 1, + anon_sym_PIPE, + ACTIONS(3232), 1, + anon_sym_CARET, + ACTIONS(3246), 1, + anon_sym_AMP_AMP, + ACTIONS(3250), 1, anon_sym_DOT_DOT, - ACTIONS(3307), 1, - anon_sym_RBRACE, - ACTIONS(3309), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3077), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3236), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3248), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3238), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108403,58 +108934,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43476] = 21, - ACTIONS(632), 1, - anon_sym_LBRACE, + [43851] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - anon_sym_QMARK, - ACTIONS(3083), 1, - anon_sym_as, - ACTIONS(3211), 1, - anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3219), 1, - anon_sym_DOT_DOT, - ACTIONS(3221), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3223), 1, + ACTIONS(3043), 1, anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3227), 1, + ACTIONS(3047), 1, anon_sym_CARET, - STATE(231), 1, - sym_block, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3061), 1, + anon_sym_QMARK, + ACTIONS(3063), 1, + anon_sym_as, + ACTIONS(3065), 1, + anon_sym_EQ, + ACTIONS(3163), 1, + anon_sym_DOT_DOT, + ACTIONS(3240), 1, + anon_sym_SEMI, + ACTIONS(3321), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3217), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3209), 3, + ACTIONS(3161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3229), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108465,58 +108996,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43559] = 21, - ACTIONS(272), 1, - anon_sym_RBRACE, + [43934] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3237), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3323), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108527,58 +109057,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43642] = 21, + [44015] = 21, + ACTIONS(632), 1, + anon_sym_LBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3045), 1, - anon_sym_AMP, - ACTIONS(3047), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, - anon_sym_PIPE, - ACTIONS(3051), 1, - anon_sym_CARET, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3216), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3220), 1, + anon_sym_AMP, + ACTIONS(3224), 1, anon_sym_DOT_DOT, - ACTIONS(3237), 1, - anon_sym_SEMI, - ACTIONS(3311), 1, - anon_sym_RBRACE, + ACTIONS(3228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3230), 1, + anon_sym_PIPE, + ACTIONS(3232), 1, + anon_sym_CARET, + ACTIONS(3246), 1, + anon_sym_AMP_AMP, + STATE(242), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3222), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3238), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108589,57 +109119,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43725] = 20, + [44098] = 21, + ACTIONS(111), 1, + anon_sym_RBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, + ACTIONS(3240), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3313), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108650,53 +109181,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43806] = 16, + [44181] = 17, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3041), 1, + ACTIONS(3095), 1, anon_sym_EQ, - ACTIONS(3215), 1, + ACTIONS(3220), 1, anon_sym_AMP, - ACTIONS(3221), 1, - anon_sym_AMP_AMP, - ACTIONS(3225), 1, + ACTIONS(3228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3230), 1, anon_sym_PIPE, - ACTIONS(3227), 1, + ACTIONS(3232), 1, anon_sym_CARET, - ACTIONS(3249), 1, + ACTIONS(3246), 1, + anon_sym_AMP_AMP, + ACTIONS(3250), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3231), 2, + ACTIONS(3236), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3248), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3209), 3, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3229), 4, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3035), 15, + ACTIONS(3093), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108707,49 +109239,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43879] = 12, + [44256] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3215), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3227), 1, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, anon_sym_CARET, - ACTIONS(3249), 1, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3061), 1, + anon_sym_QMARK, + ACTIONS(3063), 1, + anon_sym_as, + ACTIONS(3065), 1, + anon_sym_EQ, + ACTIONS(3163), 1, anon_sym_DOT_DOT, + ACTIONS(3325), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3231), 2, + ACTIONS(3033), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3209), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3041), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(3035), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108760,56 +109299,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43944] = 20, + [44336] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3315), 1, + ACTIONS(3327), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108820,56 +109359,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44024] = 20, + [44416] = 14, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3303), 1, + sym_identifier, + ACTIONS(3305), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_STAR, + ACTIONS(3315), 1, + anon_sym_COLON_COLON, + ACTIONS(3319), 1, + sym_metavariable, + ACTIONS(3329), 1, + anon_sym_RBRACE, + STATE(1745), 1, + sym_scoped_identifier, + STATE(2334), 1, + sym_bracketed_type, + STATE(2530), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3317), 3, + sym_self, + sym_super, + sym_crate, + STATE(2196), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3311), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [44484] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3317), 1, + ACTIONS(3331), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108880,56 +109473,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44104] = 20, + [44564] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3319), 1, + ACTIONS(3333), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108940,56 +109533,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44184] = 20, + [44644] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3321), 1, + ACTIONS(3335), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109000,56 +109593,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44264] = 20, + [44724] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3323), 1, - anon_sym_SEMI, + ACTIONS(3337), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109060,56 +109653,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44344] = 20, + [44804] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3325), 1, - anon_sym_COMMA, + ACTIONS(3339), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109120,56 +109713,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44424] = 20, + [44884] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3327), 1, - anon_sym_SEMI, + ACTIONS(3341), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109180,56 +109773,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44504] = 20, + [44964] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3329), 1, + ACTIONS(3343), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109240,55 +109833,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44584] = 19, + [45044] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3049), 1, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, + ACTIONS(3345), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3331), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109299,56 +109893,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44662] = 20, + [45124] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3333), 1, + ACTIONS(3240), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109359,56 +109953,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44742] = 20, + [45204] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3335), 1, + ACTIONS(3347), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109419,56 +110013,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44822] = 20, + [45284] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3337), 1, + ACTIONS(3349), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109479,55 +110073,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44902] = 19, + [45364] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3049), 1, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, + ACTIONS(3351), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3339), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109538,56 +110133,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44980] = 20, + [45444] = 19, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3045), 1, - anon_sym_AMP, - ACTIONS(3047), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, - anon_sym_PIPE, - ACTIONS(3051), 1, - anon_sym_CARET, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3216), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3220), 1, + anon_sym_AMP, + ACTIONS(3224), 1, anon_sym_DOT_DOT, - ACTIONS(3239), 1, - anon_sym_COMMA, + ACTIONS(3228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3230), 1, + anon_sym_PIPE, + ACTIONS(3232), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3222), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3353), 2, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3238), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109598,56 +110192,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45060] = 20, + [45522] = 19, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3341), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3353), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109658,56 +110251,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45140] = 20, + [45600] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3343), 1, - anon_sym_SEMI, + ACTIONS(3355), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109718,56 +110311,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45220] = 20, + [45680] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3345), 1, + ACTIONS(3357), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109778,56 +110371,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45300] = 20, + [45760] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3347), 1, + ACTIONS(3359), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109838,56 +110431,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45380] = 20, + [45840] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3349), 1, + ACTIONS(3361), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109898,56 +110491,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45460] = 20, + [45920] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3351), 1, - anon_sym_RBRACK, + ACTIONS(3363), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109958,56 +110551,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45540] = 20, + [46000] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3353), 1, - anon_sym_SEMI, + ACTIONS(3365), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110018,41 +110611,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45620] = 14, + [46080] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3271), 1, + ACTIONS(3303), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(3277), 1, + ACTIONS(3309), 1, anon_sym_STAR, - ACTIONS(3283), 1, + ACTIONS(3315), 1, anon_sym_COLON_COLON, - ACTIONS(3287), 1, + ACTIONS(3319), 1, sym_metavariable, - ACTIONS(3355), 1, + ACTIONS(3367), 1, anon_sym_RBRACE, - STATE(1741), 1, + STATE(1745), 1, sym_scoped_identifier, - STATE(2322), 1, + STATE(2334), 1, sym_bracketed_type, - STATE(2525), 1, + STATE(2530), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3285), 3, + ACTIONS(3317), 3, sym_self, sym_super, sym_crate, - STATE(2200), 5, + STATE(2196), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3279), 19, + ACTIONS(3311), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110072,56 +110665,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [45688] = 20, + [46148] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3357), 1, - anon_sym_RBRACK, + ACTIONS(3369), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110132,56 +110725,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45768] = 20, + [46228] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3359), 1, + ACTIONS(3371), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110192,56 +110785,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45848] = 20, + [46308] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3361), 1, - anon_sym_SEMI, + ACTIONS(3274), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110252,56 +110845,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45928] = 20, + [46388] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3363), 1, - anon_sym_SEMI, + ACTIONS(3373), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110312,56 +110905,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46008] = 20, + [46468] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3365), 1, + ACTIONS(3375), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110372,110 +110965,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46088] = 14, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3271), 1, - sym_identifier, - ACTIONS(3273), 1, - anon_sym_LBRACE, - ACTIONS(3277), 1, - anon_sym_STAR, - ACTIONS(3283), 1, - anon_sym_COLON_COLON, - ACTIONS(3287), 1, - sym_metavariable, - ACTIONS(3367), 1, - anon_sym_RBRACE, - STATE(1741), 1, - sym_scoped_identifier, - STATE(2322), 1, - sym_bracketed_type, - STATE(2525), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3285), 3, - sym_self, - sym_super, - sym_crate, - STATE(2200), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3279), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [46156] = 20, + [46548] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3369), 1, - anon_sym_RBRACK, + ACTIONS(3377), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110486,56 +111025,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46236] = 20, + [46628] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3371), 1, + ACTIONS(3379), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110546,55 +111085,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46316] = 19, + [46708] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, + anon_sym_CARET, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3081), 1, + ACTIONS(3061), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3211), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3215), 1, - anon_sym_AMP, - ACTIONS(3219), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, - anon_sym_PIPE, - ACTIONS(3227), 1, - anon_sym_CARET, + ACTIONS(3381), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3217), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3331), 2, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - ACTIONS(3209), 3, + ACTIONS(3161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3229), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110605,56 +111145,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46394] = 20, + [46788] = 19, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3045), 1, - anon_sym_AMP, - ACTIONS(3047), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, - anon_sym_PIPE, - ACTIONS(3051), 1, - anon_sym_CARET, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3216), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3220), 1, + anon_sym_AMP, + ACTIONS(3224), 1, anon_sym_DOT_DOT, - ACTIONS(3373), 1, - anon_sym_RBRACK, + ACTIONS(3228), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3230), 1, + anon_sym_PIPE, + ACTIONS(3232), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3212), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3222), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3236), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3383), 2, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + ACTIONS(3214), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3238), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110665,56 +111204,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46474] = 20, + [46866] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3375), 1, - anon_sym_SEMI, + ACTIONS(3385), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110725,56 +111264,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46554] = 20, + [46946] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3377), 1, - anon_sym_COMMA, + ACTIONS(3387), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110785,115 +111324,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46634] = 20, + [47026] = 19, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, - anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3379), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3053), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3087), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [46714] = 19, - ACTIONS(3025), 1, - anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - anon_sym_QMARK, - ACTIONS(3083), 1, - anon_sym_as, - ACTIONS(3211), 1, - anon_sym_EQ, - ACTIONS(3215), 1, - anon_sym_AMP, - ACTIONS(3219), 1, - anon_sym_DOT_DOT, - ACTIONS(3223), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3225), 1, - anon_sym_PIPE, - ACTIONS(3227), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3213), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3217), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3231), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3339), 2, - anon_sym_LBRACE, + ACTIONS(3383), 2, + anon_sym_EQ_GT, anon_sym_AMP_AMP, - ACTIONS(3209), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3229), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110904,56 +111383,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46792] = 20, + [47104] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3381), 1, - anon_sym_RBRACK, + ACTIONS(3389), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110964,56 +111443,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46872] = 20, + [47184] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3237), 1, + ACTIONS(3391), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111024,56 +111503,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46952] = 20, + [47264] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3033), 1, - anon_sym_DOT, - ACTIONS(3045), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3047), 1, + ACTIONS(3041), 1, anon_sym_AMP_AMP, - ACTIONS(3049), 1, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3051), 1, + ACTIONS(3047), 1, anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3081), 1, anon_sym_QMARK, - ACTIONS(3083), 1, + ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3085), 1, + ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3179), 1, + ACTIONS(3163), 1, anon_sym_DOT_DOT, - ACTIONS(3383), 1, - anon_sym_RBRACK, + ACTIONS(3393), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3043), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3055), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 2, + ACTIONS(3161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3039), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3053), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3087), 10, + ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111084,39 +111563,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47032] = 13, + [47344] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3271), 1, + ACTIONS(3303), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(3277), 1, + ACTIONS(3309), 1, anon_sym_STAR, - ACTIONS(3283), 1, + ACTIONS(3315), 1, anon_sym_COLON_COLON, - ACTIONS(3287), 1, + ACTIONS(3319), 1, sym_metavariable, - STATE(1741), 1, + STATE(1745), 1, sym_scoped_identifier, - STATE(2322), 1, + STATE(2334), 1, sym_bracketed_type, - STATE(2525), 1, + STATE(2530), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3285), 3, + ACTIONS(3317), 3, sym_self, sym_super, sym_crate, - STATE(2316), 5, + STATE(2531), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3279), 19, + ACTIONS(3311), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111136,39 +111615,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47097] = 13, + [47409] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3271), 1, + ACTIONS(3303), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(3277), 1, + ACTIONS(3309), 1, anon_sym_STAR, - ACTIONS(3283), 1, + ACTIONS(3315), 1, anon_sym_COLON_COLON, - ACTIONS(3287), 1, + ACTIONS(3319), 1, sym_metavariable, - STATE(1741), 1, + STATE(1745), 1, sym_scoped_identifier, - STATE(2322), 1, + STATE(2334), 1, sym_bracketed_type, - STATE(2525), 1, + STATE(2530), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3285), 3, + ACTIONS(3317), 3, sym_self, sym_super, sym_crate, - STATE(2526), 5, + STATE(2450), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3279), 19, + ACTIONS(3311), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111188,39 +111667,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47162] = 13, + [47474] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3271), 1, + ACTIONS(3303), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(3277), 1, + ACTIONS(3309), 1, anon_sym_STAR, - ACTIONS(3283), 1, + ACTIONS(3315), 1, anon_sym_COLON_COLON, - ACTIONS(3287), 1, + ACTIONS(3319), 1, sym_metavariable, - STATE(1741), 1, + STATE(1745), 1, sym_scoped_identifier, - STATE(2322), 1, + STATE(2334), 1, sym_bracketed_type, - STATE(2525), 1, + STATE(2530), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3285), 3, + ACTIONS(3317), 3, sym_self, sym_super, sym_crate, - STATE(2430), 5, + STATE(2196), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3279), 19, + ACTIONS(3311), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111240,39 +111719,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47227] = 13, + [47539] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3271), 1, + ACTIONS(3303), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(3277), 1, + ACTIONS(3309), 1, anon_sym_STAR, - ACTIONS(3283), 1, + ACTIONS(3315), 1, anon_sym_COLON_COLON, - ACTIONS(3287), 1, + ACTIONS(3319), 1, sym_metavariable, - STATE(1741), 1, + STATE(1745), 1, sym_scoped_identifier, - STATE(2322), 1, + STATE(2334), 1, sym_bracketed_type, - STATE(2525), 1, + STATE(2530), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3285), 3, + ACTIONS(3317), 3, sym_self, sym_super, sym_crate, - STATE(2341), 5, + STATE(2332), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3279), 19, + ACTIONS(3311), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111292,39 +111771,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47292] = 13, + [47604] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3271), 1, + ACTIONS(3303), 1, sym_identifier, - ACTIONS(3273), 1, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(3277), 1, + ACTIONS(3309), 1, anon_sym_STAR, - ACTIONS(3283), 1, + ACTIONS(3315), 1, anon_sym_COLON_COLON, - ACTIONS(3287), 1, + ACTIONS(3319), 1, sym_metavariable, - STATE(1741), 1, + STATE(1745), 1, sym_scoped_identifier, - STATE(2322), 1, + STATE(2334), 1, sym_bracketed_type, - STATE(2525), 1, + STATE(2530), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3285), 3, + ACTIONS(3317), 3, sym_self, sym_super, sym_crate, - STATE(2200), 5, + STATE(2365), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3279), 19, + ACTIONS(3311), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111344,15 +111823,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47357] = 3, + [47669] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3387), 3, + ACTIONS(3397), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3385), 28, + ACTIONS(3395), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111381,15 +111860,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [47397] = 3, + [47709] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3391), 3, + ACTIONS(3401), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3389), 28, + ACTIONS(3399), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111418,15 +111897,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [47437] = 3, + [47749] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3395), 3, + ACTIONS(3405), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3393), 28, + ACTIONS(3403), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111455,29 +111934,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [47477] = 10, + [47789] = 10, ACTIONS(77), 1, anon_sym_LT, ACTIONS(858), 1, anon_sym_COLON_COLON, - ACTIONS(3397), 1, + ACTIONS(3407), 1, sym_identifier, - ACTIONS(3403), 1, + ACTIONS(3413), 1, sym_metavariable, - STATE(2156), 1, + STATE(2175), 1, sym_scoped_identifier, - STATE(2322), 1, + STATE(2334), 1, sym_bracketed_type, - STATE(2525), 1, + STATE(2530), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3401), 3, + ACTIONS(3411), 3, sym_self, sym_super, sym_crate, - ACTIONS(3399), 19, + ACTIONS(3409), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111497,29 +111976,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47529] = 10, + [47841] = 10, ACTIONS(77), 1, anon_sym_LT, ACTIONS(858), 1, anon_sym_COLON_COLON, - ACTIONS(3405), 1, + ACTIONS(3415), 1, sym_identifier, - ACTIONS(3411), 1, + ACTIONS(3421), 1, sym_metavariable, - STATE(2230), 1, + STATE(2248), 1, sym_scoped_identifier, - STATE(2322), 1, + STATE(2334), 1, sym_bracketed_type, - STATE(2525), 1, + STATE(2530), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3409), 3, + ACTIONS(3419), 3, sym_self, sym_super, sym_crate, - ACTIONS(3407), 19, + ACTIONS(3417), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111539,13 +112018,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47581] = 3, - ACTIONS(2403), 1, + [47893] = 3, + ACTIONS(2393), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 20, + ACTIONS(2395), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111566,13 +112045,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [47611] = 3, - ACTIONS(2407), 1, + [47923] = 3, + ACTIONS(2371), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2409), 20, + ACTIONS(2373), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111593,31 +112072,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [47641] = 11, - ACTIONS(3415), 1, + [47953] = 11, + ACTIONS(3425), 1, anon_sym_LPAREN, - ACTIONS(3417), 1, + ACTIONS(3427), 1, anon_sym_LBRACE, - ACTIONS(3421), 1, + ACTIONS(3431), 1, anon_sym_BANG, - ACTIONS(3423), 1, + ACTIONS(3433), 1, anon_sym_COLON_COLON, - ACTIONS(3427), 1, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(3429), 1, + ACTIONS(3439), 1, anon_sym_AT, - STATE(1346), 1, + STATE(1341), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3419), 2, + ACTIONS(3429), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3425), 2, + ACTIONS(3435), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3413), 9, + ACTIONS(3423), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -111627,20 +112106,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [47686] = 9, + [47998] = 9, ACTIONS(2544), 1, anon_sym_COLON, - ACTIONS(3421), 1, + ACTIONS(3431), 1, anon_sym_BANG, - ACTIONS(3427), 1, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(3431), 1, + ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3433), 1, + ACTIONS(3443), 1, anon_sym_COLON_COLON, - STATE(1346), 1, + STATE(1341), 1, sym_type_arguments, - STATE(1349), 1, + STATE(1365), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -111658,42 +112137,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [47726] = 4, + [48038] = 4, + ACTIONS(2582), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2602), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2604), 14, + ACTIONS(2586), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2580), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [47755] = 4, + [48067] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 2, + ACTIONS(2580), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2594), 2, + ACTIONS(2584), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2596), 14, + ACTIONS(2586), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111708,41 +112187,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [47784] = 4, + [48096] = 4, + ACTIONS(2608), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2586), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2588), 14, + ACTIONS(2612), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2606), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, + anon_sym_LT2, anon_sym_PIPE, - [47813] = 4, - ACTIONS(2608), 1, + [48125] = 4, + ACTIONS(2562), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2612), 2, + ACTIONS(2566), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2606), 15, + ACTIONS(2560), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111758,16 +112237,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [47842] = 4, - ACTIONS(2584), 1, + [48154] = 4, + ACTIONS(2570), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 2, + ACTIONS(2574), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2582), 15, + ACTIONS(2568), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111783,18 +112262,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [47871] = 8, + [48183] = 8, ACTIONS(2558), 1, anon_sym_COLON, - ACTIONS(3427), 1, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(3431), 1, + ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3433), 1, + ACTIONS(3443), 1, anon_sym_COLON_COLON, - STATE(1346), 1, + STATE(1341), 1, sym_type_arguments, - STATE(1349), 1, + STATE(1365), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -111812,18 +112291,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [47908] = 8, + [48220] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2560), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2564), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2566), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [48249] = 8, ACTIONS(2554), 1, anon_sym_COLON, - ACTIONS(3427), 1, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(3431), 1, + ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3433), 1, + ACTIONS(3443), 1, anon_sym_COLON_COLON, - STATE(1346), 1, + STATE(1341), 1, sym_type_arguments, - STATE(1349), 1, + STATE(1365), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -111841,7 +112345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [47945] = 4, + [48286] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -111866,69 +112370,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [47974] = 4, - ACTIONS(2600), 1, - anon_sym_COLON, + [48315] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2604), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2598), 15, + ACTIONS(2568), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2572), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2574), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, - anon_sym_LT2, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48003] = 4, - ACTIONS(2592), 1, - anon_sym_COLON, + [48344] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2590), 15, + ACTIONS(2572), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2574), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_PLUS, anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, - anon_sym_LT2, + anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [48032] = 6, - ACTIONS(3427), 1, + [48370] = 6, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(3431), 1, + ACTIONS(3441), 1, anon_sym_LPAREN, - STATE(1347), 1, + STATE(1352), 1, sym_type_arguments, - STATE(1358), 1, + STATE(1369), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 13, + ACTIONS(2614), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -111942,56 +112444,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [48064] = 17, - ACTIONS(3437), 1, + [48402] = 17, + ACTIONS(3447), 1, anon_sym_const, - ACTIONS(3439), 1, + ACTIONS(3449), 1, anon_sym_enum, - ACTIONS(3441), 1, + ACTIONS(3451), 1, anon_sym_fn, - ACTIONS(3443), 1, + ACTIONS(3453), 1, anon_sym_mod, - ACTIONS(3445), 1, + ACTIONS(3455), 1, anon_sym_static, - ACTIONS(3447), 1, + ACTIONS(3457), 1, anon_sym_struct, - ACTIONS(3449), 1, + ACTIONS(3459), 1, anon_sym_trait, - ACTIONS(3451), 1, + ACTIONS(3461), 1, anon_sym_type, - ACTIONS(3453), 1, + ACTIONS(3463), 1, anon_sym_union, - ACTIONS(3455), 1, + ACTIONS(3465), 1, anon_sym_unsafe, - ACTIONS(3457), 1, + ACTIONS(3467), 1, anon_sym_use, - ACTIONS(3459), 1, + ACTIONS(3469), 1, anon_sym_extern, - STATE(1506), 1, + STATE(1498), 1, sym_extern_modifier, - STATE(1551), 1, + STATE(1548), 1, aux_sym_function_modifiers_repeat1, - STATE(2412), 1, + STATE(2554), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, + ACTIONS(3445), 2, anon_sym_async, anon_sym_default, - [48118] = 6, - ACTIONS(3427), 1, + [48456] = 6, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(3431), 1, + ACTIONS(3441), 1, anon_sym_LPAREN, - STATE(1347), 1, + STATE(1352), 1, sym_type_arguments, - STATE(1358), 1, + STATE(1369), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 13, + ACTIONS(2576), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112005,14 +112507,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [48150] = 3, + [48488] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 2, + ACTIONS(2610), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2604), 15, + ACTIONS(2612), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112028,74 +112530,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [48176] = 3, + [48514] = 6, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + STATE(1352), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2612), 15, + ACTIONS(2602), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_as, - anon_sym_if, - anon_sym_BANG, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, + anon_sym_GT, anon_sym_PIPE, - [48202] = 17, - ACTIONS(3461), 1, + [48546] = 17, + ACTIONS(3471), 1, anon_sym_const, - ACTIONS(3463), 1, + ACTIONS(3473), 1, anon_sym_enum, - ACTIONS(3465), 1, + ACTIONS(3475), 1, anon_sym_fn, - ACTIONS(3467), 1, + ACTIONS(3477), 1, anon_sym_mod, - ACTIONS(3469), 1, + ACTIONS(3479), 1, anon_sym_static, - ACTIONS(3471), 1, + ACTIONS(3481), 1, anon_sym_struct, - ACTIONS(3473), 1, + ACTIONS(3483), 1, anon_sym_trait, - ACTIONS(3475), 1, + ACTIONS(3485), 1, anon_sym_type, - ACTIONS(3477), 1, + ACTIONS(3487), 1, anon_sym_union, - ACTIONS(3479), 1, + ACTIONS(3489), 1, anon_sym_unsafe, - ACTIONS(3481), 1, + ACTIONS(3491), 1, anon_sym_use, - ACTIONS(3483), 1, + ACTIONS(3493), 1, anon_sym_extern, - STATE(1513), 1, + STATE(1520), 1, sym_extern_modifier, - STATE(1551), 1, + STATE(1548), 1, aux_sym_function_modifiers_repeat1, - STATE(2542), 1, + STATE(2424), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, + ACTIONS(3445), 2, anon_sym_async, anon_sym_default, - [48256] = 3, + [48600] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 2, + ACTIONS(2564), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2588), 15, + ACTIONS(2566), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112111,61 +112616,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [48282] = 6, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(3431), 1, - anon_sym_LPAREN, - STATE(1347), 1, - sym_type_arguments, - STATE(1358), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2564), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [48314] = 3, - ACTIONS(468), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(466), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_if, - anon_sym_where, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_in, - anon_sym_PIPE, - [48339] = 3, - ACTIONS(464), 1, + [48626] = 3, + ACTIONS(446), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(462), 15, + ACTIONS(444), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112181,56 +112638,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [48364] = 2, + [48651] = 7, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3495), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3429), 2, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PIPE, - [48387] = 3, - ACTIONS(502), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(500), 15, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3423), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, anon_sym_if, - anon_sym_where, anon_sym_COMMA, - anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [48412] = 3, - ACTIONS(3485), 1, + [48684] = 3, + ACTIONS(3497), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3167), 15, + ACTIONS(3169), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -112246,13 +112686,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [48437] = 3, - ACTIONS(448), 1, + [48709] = 3, + ACTIONS(442), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(446), 15, + ACTIONS(440), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112268,91 +112708,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [48462] = 7, - ACTIONS(3415), 1, - anon_sym_LPAREN, - ACTIONS(3421), 1, - anon_sym_BANG, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, + [48734] = 3, + ACTIONS(474), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3419), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3425), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3413), 9, + ACTIONS(472), 15, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, anon_sym_if, + anon_sym_where, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [48495] = 3, - ACTIONS(2712), 1, - anon_sym_COLON, + [48759] = 3, + ACTIONS(612), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2710), 14, + ACTIONS(610), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, + anon_sym_if, anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [48519] = 13, - ACTIONS(3413), 1, + anon_sym_in, anon_sym_PIPE, - ACTIONS(3417), 1, - anon_sym_LBRACE, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(3421), 1, - anon_sym_BANG, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(3429), 1, - anon_sym_AT, - ACTIONS(3489), 1, - anon_sym_LPAREN, - ACTIONS(3491), 1, - anon_sym_COLON_COLON, - STATE(1346), 1, - sym_type_arguments, - STATE(1349), 1, - sym_parameters, + [48784] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2540), 3, + ACTIONS(2580), 16, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [48563] = 3, - ACTIONS(2809), 1, - anon_sym_COLON_COLON, + anon_sym_GT, + anon_sym_LT2, + anon_sym_PIPE, + [48807] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3169), 14, + ACTIONS(3153), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -112367,13 +112792,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [48587] = 3, - ACTIONS(2646), 1, + sym_identifier, + [48829] = 3, + ACTIONS(2712), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2644), 14, + ACTIONS(2710), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112388,13 +112814,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [48611] = 3, - ACTIONS(3493), 1, + [48853] = 3, + ACTIONS(3499), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3169), 14, + ACTIONS(3171), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -112409,11 +112835,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [48635] = 2, + [48877] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3153), 15, + ACTIONS(3165), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -112429,43 +112855,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [48657] = 14, - ACTIONS(2540), 1, - anon_sym_PLUS, - ACTIONS(3413), 1, - anon_sym_PIPE, - ACTIONS(3417), 1, - anon_sym_LBRACE, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(3421), 1, - anon_sym_BANG, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(3429), 1, - anon_sym_AT, - ACTIONS(3495), 1, - anon_sym_LPAREN, - ACTIONS(3500), 1, - anon_sym_COLON_COLON, - STATE(1346), 1, - sym_type_arguments, - STATE(1349), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3425), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3497), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [48703] = 2, + [48899] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3159), 15, + ACTIONS(3179), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -112481,42 +112875,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [48725] = 13, - ACTIONS(3417), 1, - anon_sym_LBRACE, - ACTIONS(3421), 1, - anon_sym_BANG, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(3429), 1, - anon_sym_AT, - ACTIONS(3497), 1, - anon_sym_RBRACK, - ACTIONS(3502), 1, - anon_sym_LPAREN, - ACTIONS(3504), 1, + [48921] = 3, + ACTIONS(2762), 1, anon_sym_COLON_COLON, - STATE(1346), 1, - sym_type_arguments, - STATE(1349), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2540), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3413), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3425), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48769] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3163), 15, + ACTIONS(3171), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -112531,12 +112896,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [48791] = 2, + [48945] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3003), 15, + ACTIONS(2936), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112552,13 +112916,13 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, anon_sym_PIPE, sym_self, - [48813] = 3, - ACTIONS(2642), 1, + [48967] = 3, + ACTIONS(2656), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 14, + ACTIONS(2654), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112573,13 +112937,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [48837] = 3, - ACTIONS(2670), 1, + [48991] = 3, + ACTIONS(2674), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2668), 14, + ACTIONS(2672), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112594,13 +112958,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [48861] = 3, - ACTIONS(2650), 1, + [49015] = 3, + ACTIONS(2688), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 14, + ACTIONS(2686), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112615,74 +112979,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [48885] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2684), 14, - anon_sym_SEMI, - anon_sym_RPAREN, + [49039] = 13, + ACTIONS(3427), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3439), 1, + anon_sym_AT, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_PIPE, - [48906] = 3, ACTIONS(3506), 1, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, + STATE(1341), 1, + sym_type_arguments, + STATE(1365), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 13, + ACTIONS(2540), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3423), 2, anon_sym_COMMA, - anon_sym_GT, anon_sym_PIPE, - [48929] = 3, - ACTIONS(2399), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2401), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(3435), 2, anon_sym_DOT_DOT_DOT, - anon_sym_in, anon_sym_DOT_DOT_EQ, + [49083] = 13, + ACTIONS(3423), 1, anon_sym_PIPE, - [48952] = 4, - ACTIONS(2566), 1, + ACTIONS(3427), 1, + anon_sym_LBRACE, + ACTIONS(3429), 1, anon_sym_COLON, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3439), 1, + anon_sym_AT, ACTIONS(3508), 1, + anon_sym_LPAREN, + ACTIONS(3510), 1, anon_sym_COLON_COLON, + STATE(1341), 1, + sym_type_arguments, + STATE(1365), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2540), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [49127] = 3, + ACTIONS(2716), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 12, + ACTIONS(2714), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112690,18 +113055,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_PIPE, - [48977] = 3, - ACTIONS(3510), 1, - anon_sym_DASH_GT, + [49151] = 14, + ACTIONS(2540), 1, + anon_sym_PLUS, + ACTIONS(3423), 1, + anon_sym_PIPE, + ACTIONS(3427), 1, + anon_sym_LBRACE, + ACTIONS(3429), 1, + anon_sym_COLON, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3439), 1, + anon_sym_AT, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + anon_sym_COLON_COLON, + STATE(1341), 1, + sym_type_arguments, + STATE(1365), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3503), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [49197] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2738), 13, + ACTIONS(2724), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112713,33 +113110,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49000] = 3, - ACTIONS(3512), 1, - anon_sym_DASH_GT, + [49218] = 5, + ACTIONS(3520), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2744), 13, + ACTIONS(3518), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3522), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3516), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_in, anon_sym_PIPE, - [49023] = 2, + [49245] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2706), 14, + ACTIONS(2746), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112754,59 +113154,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49044] = 4, - ACTIONS(3516), 1, - anon_sym_pat, - STATE(578), 1, - sym_fragment_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3514), 12, - anon_sym_block, - anon_sym_expr, - anon_sym_ident, - anon_sym_item, - anon_sym_lifetime, - anon_sym_literal, - anon_sym_meta, - anon_sym_path, - anon_sym_stmt, - anon_sym_tt, - anon_sym_ty, - anon_sym_vis, - [49069] = 2, + [49266] = 4, + ACTIONS(2604), 1, + anon_sym_COLON, + ACTIONS(3524), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2728), 14, + ACTIONS(2602), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49090] = 3, - ACTIONS(3518), 1, - anon_sym_DASH_GT, + [49291] = 4, + ACTIONS(2616), 1, + anon_sym_COLON, + ACTIONS(3173), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2722), 13, + ACTIONS(2614), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -112814,13 +113196,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49113] = 3, - ACTIONS(3520), 1, - anon_sym_DASH_GT, + [49316] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2694), 13, + ACTIONS(2676), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112832,32 +113212,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49136] = 3, - ACTIONS(3522), 1, - anon_sym_DASH_GT, + [49337] = 3, + ACTIONS(2345), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2678), 13, + ACTIONS(2347), 13, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49159] = 4, + [49360] = 4, ACTIONS(2616), 1, anon_sym_COLON, - ACTIONS(3508), 1, + ACTIONS(3524), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -112875,37 +113256,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49184] = 5, - ACTIONS(3528), 1, - anon_sym_COLON_COLON, + [49385] = 3, + ACTIONS(3526), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3526), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3530), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3524), 9, + ACTIONS(2696), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, + anon_sym_GT, anon_sym_PIPE, - [49211] = 4, - ACTIONS(2580), 1, + [49408] = 4, + ACTIONS(2616), 1, anon_sym_COLON, - ACTIONS(3508), 1, + ACTIONS(3528), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 12, + ACTIONS(2614), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112918,20 +113297,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49236] = 4, - ACTIONS(2580), 1, - anon_sym_COLON, - ACTIONS(3171), 1, - anon_sym_COLON_COLON, + [49433] = 3, + ACTIONS(3530), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 12, + ACTIONS(2658), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -112939,11 +113317,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49261] = 2, + [49456] = 3, + ACTIONS(3532), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2636), 14, + ACTIONS(2734), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112955,23 +113335,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49282] = 4, - ACTIONS(2580), 1, - anon_sym_COLON, - ACTIONS(3532), 1, - anon_sym_COLON_COLON, + [49479] = 3, + ACTIONS(3534), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 12, + ACTIONS(2718), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -112979,30 +113357,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49307] = 14, - ACTIONS(3421), 1, + [49502] = 14, + ACTIONS(3431), 1, anon_sym_BANG, - ACTIONS(3427), 1, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(3431), 1, + ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3433), 1, + ACTIONS(3443), 1, anon_sym_COLON_COLON, - ACTIONS(3534), 1, - anon_sym_COLON, ACTIONS(3536), 1, - anon_sym_EQ, + anon_sym_COLON, ACTIONS(3538), 1, - anon_sym_COMMA, + anon_sym_EQ, ACTIONS(3540), 1, + anon_sym_COMMA, + ACTIONS(3542), 1, anon_sym_GT, - STATE(1346), 1, + STATE(1341), 1, sym_type_arguments, - STATE(1349), 1, + STATE(1365), 1, sym_parameters, - STATE(1901), 1, + STATE(1914), 1, sym_trait_bounds, - STATE(1905), 1, + STATE(1915), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, @@ -113010,11 +113388,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2540), 2, anon_sym_PLUS, anon_sym_as, - [49352] = 2, + [49547] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2690), 14, + ACTIONS(2682), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113029,13 +113407,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49373] = 3, - ACTIONS(3542), 1, + [49568] = 3, + ACTIONS(3544), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2732), 13, + ACTIONS(2740), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [49591] = 4, + ACTIONS(3548), 1, + anon_sym_pat, + STATE(581), 1, + sym_fragment_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3546), 12, + anon_sym_block, + anon_sym_expr, + anon_sym_ident, + anon_sym_item, + anon_sym_lifetime, + anon_sym_literal, + anon_sym_meta, + anon_sym_path, + anon_sym_stmt, + anon_sym_tt, + anon_sym_ty, + anon_sym_vis, + [49616] = 4, + ACTIONS(2578), 1, + anon_sym_COLON, + ACTIONS(3524), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2576), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [49641] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2650), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113047,13 +113485,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49396] = 2, + [49662] = 3, + ACTIONS(3550), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2766), 13, + ACTIONS(2728), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113067,11 +113508,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49416] = 2, + [49685] = 3, + ACTIONS(3552), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 13, + ACTIONS(2702), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113085,13 +113528,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49436] = 3, - ACTIONS(3546), 1, + [49708] = 3, + ACTIONS(3556), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3554), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [49730] = 3, + ACTIONS(3560), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3544), 12, + ACTIONS(3558), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113104,7 +113566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49458] = 2, + [49752] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -113122,11 +113584,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49478] = 2, + [49772] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2999), 13, + ACTIONS(2840), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113140,11 +113602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49498] = 2, + [49792] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2789), 13, + ACTIONS(2991), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113158,11 +113620,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49518] = 2, + [49812] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2953), 13, + ACTIONS(2940), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113176,50 +113638,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49538] = 4, - ACTIONS(3419), 1, - anon_sym_EQ, + [49832] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3413), 10, + ACTIONS(2584), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2586), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [49562] = 3, + [49854] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2594), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2596), 11, + ACTIONS(2991), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, + anon_sym_GT, anon_sym_PIPE, - [49584] = 2, + [49874] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2819), 13, + ACTIONS(2979), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113233,11 +113693,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49604] = 2, + [49894] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2797), 13, + ACTIONS(3019), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113251,11 +113711,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49624] = 2, + [49914] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2811), 13, + ACTIONS(2960), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113269,30 +113729,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49644] = 3, - ACTIONS(3550), 1, - anon_sym_EQ, + [49934] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3548), 12, + ACTIONS(3007), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [49666] = 2, + [49954] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2977), 13, + ACTIONS(2964), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113306,11 +113765,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49686] = 2, + [49974] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2774), 13, + ACTIONS(2952), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113324,11 +113783,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49706] = 2, + [49994] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2815), 13, + ACTIONS(2948), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113342,11 +113801,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49726] = 2, + [50014] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2774), 13, + ACTIONS(2768), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113360,11 +113819,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49746] = 2, + [50034] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2945), 13, + ACTIONS(2987), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113378,11 +113837,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49766] = 2, + [50054] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2961), 13, + ACTIONS(2576), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113396,11 +113855,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49786] = 2, + [50074] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2823), 13, + ACTIONS(2772), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113414,11 +113873,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49806] = 2, + [50094] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2827), 13, + ACTIONS(2780), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113432,11 +113891,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49826] = 2, + [50114] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2965), 13, + ACTIONS(2614), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113450,11 +113909,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49846] = 2, + [50134] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2981), 13, + ACTIONS(2754), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113468,11 +113927,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49866] = 2, + [50154] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 13, + ACTIONS(2910), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113486,11 +113945,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49886] = 2, + [50174] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2941), 13, + ACTIONS(2914), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113504,11 +113963,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49906] = 2, + [50194] = 4, + ACTIONS(3429), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3423), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [50218] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2899), 13, + ACTIONS(2932), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113522,11 +114001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49926] = 2, + [50238] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 13, + ACTIONS(2602), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113540,26 +114019,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49946] = 4, + [50258] = 5, + ACTIONS(2584), 1, + anon_sym_COLON, + ACTIONS(3562), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3552), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2598), 4, - anon_sym_SEMI, + ACTIONS(2580), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2604), 6, + ACTIONS(2586), 5, anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [50283] = 5, + ACTIONS(2584), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2580), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3562), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2586), 5, + anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49969] = 3, + [50308] = 3, ACTIONS(412), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -113577,213 +114077,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [49990] = 4, + [50329] = 4, + ACTIONS(3569), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3555), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2590), 4, + ACTIONS(3567), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3565), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2596), 6, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_in, anon_sym_PIPE, - [50013] = 4, + [50352] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3558), 2, + ACTIONS(3562), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2606), 4, + ACTIONS(2580), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2612), 6, + ACTIONS(2586), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50036] = 5, - ACTIONS(2586), 1, - anon_sym_COLON, + [50375] = 4, + ACTIONS(3499), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3561), 3, - anon_sym_LPAREN, + ACTIONS(3567), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3565), 9, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, anon_sym_COMMA, - ACTIONS(2588), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_in, anon_sym_PIPE, - [50061] = 4, + [50398] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3561), 2, + ACTIONS(3571), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2582), 4, + ACTIONS(2560), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2588), 6, + ACTIONS(2566), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50084] = 5, - ACTIONS(2602), 1, - anon_sym_COLON, + [50421] = 4, + ACTIONS(3574), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3552), 3, - anon_sym_LPAREN, + ACTIONS(3567), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3565), 9, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, anon_sym_COMMA, - ACTIONS(2604), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_in, anon_sym_PIPE, - [50109] = 5, - ACTIONS(2610), 1, - anon_sym_COLON, + [50444] = 4, + ACTIONS(3580), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3558), 3, - anon_sym_LPAREN, + ACTIONS(3578), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3576), 9, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, anon_sym_COMMA, - ACTIONS(2612), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_in, anon_sym_PIPE, - [50134] = 5, - ACTIONS(2594), 1, + [50467] = 5, + ACTIONS(2572), 1, anon_sym_COLON, + ACTIONS(3582), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 3, + ACTIONS(2568), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3555), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2596), 5, + anon_sym_LT2, + ACTIONS(2574), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50159] = 5, - ACTIONS(2594), 1, - anon_sym_COLON, - ACTIONS(3555), 1, - anon_sym_LPAREN, + [50492] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 5, - anon_sym_RPAREN, + ACTIONS(3585), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2606), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2596), 5, + ACTIONS(2612), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50184] = 5, - ACTIONS(2602), 1, - anon_sym_COLON, - ACTIONS(3552), 1, - anon_sym_LPAREN, + [50515] = 4, + ACTIONS(3574), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 5, + ACTIONS(3590), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3588), 9, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2604), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_in, anon_sym_PIPE, - [50209] = 5, + [50538] = 5, ACTIONS(2610), 1, anon_sym_COLON, - ACTIONS(3558), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 5, - anon_sym_RPAREN, + ACTIONS(2606), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, + ACTIONS(3585), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(2612), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50234] = 4, - ACTIONS(3568), 1, + [50563] = 4, + ACTIONS(3499), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3566), 2, + ACTIONS(3590), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3564), 9, + ACTIONS(3588), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113793,16 +114288,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50257] = 4, - ACTIONS(3493), 1, + [50586] = 4, + ACTIONS(3569), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3566), 2, + ACTIONS(3590), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3564), 9, + ACTIONS(3588), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113812,35 +114307,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50280] = 4, - ACTIONS(3574), 1, - anon_sym_COLON_COLON, + [50609] = 3, + ACTIONS(416), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3572), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3570), 9, + ACTIONS(414), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [50303] = 4, + [50630] = 5, + ACTIONS(2564), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2560), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3571), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2566), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [50655] = 4, ACTIONS(3580), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3578), 2, + ACTIONS(3594), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3576), 9, + ACTIONS(3592), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113850,51 +114364,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50326] = 4, - ACTIONS(3493), 1, - anon_sym_COLON_COLON, + [50678] = 5, + ACTIONS(2572), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3578), 2, + ACTIONS(2568), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3582), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2574), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [50703] = 5, + ACTIONS(2564), 1, anon_sym_COLON, + ACTIONS(3571), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2560), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2566), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [50728] = 3, + ACTIONS(408), 1, anon_sym_EQ, - ACTIONS(3576), 9, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(406), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [50349] = 4, - ACTIONS(3568), 1, + [50749] = 5, + ACTIONS(2610), 1, + anon_sym_COLON, + ACTIONS(3585), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2606), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2612), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [50774] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3582), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2568), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2574), 6, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [50797] = 9, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3443), 1, anon_sym_COLON_COLON, + ACTIONS(3596), 1, + anon_sym_for, + STATE(1341), 1, + sym_type_arguments, + STATE(1365), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3578), 2, - anon_sym_COLON, + ACTIONS(2540), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [50829] = 3, + ACTIONS(3600), 1, anon_sym_EQ, - ACTIONS(3576), 9, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3598), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50372] = 3, - ACTIONS(416), 1, + [50849] = 3, + ACTIONS(3604), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(414), 11, + ACTIONS(3602), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113903,35 +114516,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [50393] = 4, - ACTIONS(3574), 1, + [50869] = 5, + ACTIONS(706), 1, + aux_sym_string_literal_token1, + ACTIONS(3608), 1, + sym_crate, + STATE(1543), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3606), 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, + [50893] = 9, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3443), 1, anon_sym_COLON_COLON, + ACTIONS(3610), 1, + anon_sym_for, + STATE(1341), 1, + sym_type_arguments, + STATE(1365), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3584), 2, - anon_sym_COLON, + ACTIONS(2540), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [50925] = 3, + ACTIONS(3590), 1, anon_sym_EQ, - ACTIONS(3582), 9, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3588), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50416] = 3, - ACTIONS(408), 1, + [50945] = 3, + ACTIONS(3614), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(406), 11, + ACTIONS(3612), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113940,55 +114592,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [50437] = 5, - ACTIONS(2586), 1, - anon_sym_COLON, - ACTIONS(3561), 1, + [50965] = 9, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, anon_sym_LPAREN, + ACTIONS(3443), 1, + anon_sym_COLON_COLON, + ACTIONS(3616), 1, + anon_sym_for, + STATE(1341), 1, + sym_type_arguments, + STATE(1365), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 5, - anon_sym_RPAREN, + ACTIONS(2540), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2588), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50462] = 4, - ACTIONS(3580), 1, - anon_sym_COLON_COLON, + anon_sym_where, + [50997] = 3, + ACTIONS(3620), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3566), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3564), 9, + sym_line_comment, + ACTIONS(3618), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50485] = 3, - ACTIONS(3419), 1, + [51017] = 9, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3443), 1, + anon_sym_COLON_COLON, + ACTIONS(3622), 1, + anon_sym_for, + STATE(1341), 1, + sym_type_arguments, + STATE(1365), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2540), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [51049] = 3, + ACTIONS(3626), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3413), 10, + ACTIONS(3624), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113999,13 +114674,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50505] = 3, - ACTIONS(3588), 1, + [51069] = 3, + ACTIONS(3630), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3586), 10, + ACTIONS(3628), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114016,13 +114691,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50525] = 3, - ACTIONS(3592), 1, + [51089] = 3, + ACTIONS(3634), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3590), 10, + ACTIONS(3632), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114033,13 +114708,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50545] = 3, - ACTIONS(3596), 1, + [51109] = 3, + ACTIONS(3638), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3594), 10, + ACTIONS(3636), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114050,13 +114725,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50565] = 3, - ACTIONS(3600), 1, + [51129] = 3, + ACTIONS(3642), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3598), 10, + ACTIONS(3640), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114067,32 +114742,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50585] = 5, - ACTIONS(706), 1, - aux_sym_string_literal_token1, - ACTIONS(3604), 1, - sym_crate, - STATE(1556), 1, - sym_string_literal, + [51149] = 6, + ACTIONS(3644), 1, + anon_sym_COLON, + ACTIONS(3646), 1, + anon_sym_BANG, + ACTIONS(3648), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3602), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3522), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [50609] = 3, - ACTIONS(3578), 1, + [51175] = 3, + ACTIONS(3652), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3576), 10, + ACTIONS(3650), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114103,13 +114779,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50629] = 3, - ACTIONS(3608), 1, + [51195] = 3, + ACTIONS(3656), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3606), 10, + ACTIONS(3654), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114120,13 +114796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50649] = 3, - ACTIONS(3612), 1, + [51215] = 3, + ACTIONS(3660), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3610), 10, + ACTIONS(3658), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114137,13 +114813,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50669] = 3, - ACTIONS(460), 1, + [51235] = 3, + ACTIONS(3664), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(458), 10, + ACTIONS(3662), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114154,78 +114830,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50689] = 9, - ACTIONS(3421), 1, - anon_sym_BANG, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(3431), 1, - anon_sym_LPAREN, - ACTIONS(3433), 1, - anon_sym_COLON_COLON, - ACTIONS(3614), 1, - anon_sym_for, - STATE(1346), 1, - sym_type_arguments, - STATE(1349), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2540), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [50721] = 9, - ACTIONS(3421), 1, - anon_sym_BANG, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(3431), 1, - anon_sym_LPAREN, - ACTIONS(3433), 1, - anon_sym_COLON_COLON, - ACTIONS(3616), 1, - anon_sym_for, - STATE(1346), 1, - sym_type_arguments, - STATE(1349), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2540), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [50753] = 5, - ACTIONS(706), 1, - aux_sym_string_literal_token1, - ACTIONS(3618), 1, - sym_crate, - STATE(1556), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3602), 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, - [50777] = 3, - ACTIONS(3622), 1, + [51255] = 3, + ACTIONS(3668), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3620), 10, + ACTIONS(3666), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114236,13 +114847,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50797] = 3, - ACTIONS(3626), 1, + [51275] = 3, + ACTIONS(3672), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3624), 10, + ACTIONS(3670), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114253,113 +114864,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50817] = 3, - ACTIONS(3630), 1, - anon_sym_EQ, + [51295] = 5, + ACTIONS(706), 1, + aux_sym_string_literal_token1, + ACTIONS(3674), 1, + sym_crate, + STATE(1543), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3628), 10, + ACTIONS(3606), 8, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [50837] = 6, - ACTIONS(3632), 1, - anon_sym_COLON, - ACTIONS(3634), 1, - anon_sym_BANG, - ACTIONS(3636), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3530), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 6, + anon_sym_LBRACE, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [50863] = 9, - ACTIONS(3421), 1, - anon_sym_BANG, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(3431), 1, - anon_sym_LPAREN, - ACTIONS(3433), 1, - anon_sym_COLON_COLON, - ACTIONS(3638), 1, - anon_sym_for, - STATE(1346), 1, - sym_type_arguments, - STATE(1349), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2540), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [50895] = 3, - ACTIONS(3566), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3564), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [50915] = 9, - ACTIONS(3421), 1, - anon_sym_BANG, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(3431), 1, - anon_sym_LPAREN, - ACTIONS(3433), 1, - anon_sym_COLON_COLON, - ACTIONS(3640), 1, - anon_sym_for, - STATE(1346), 1, - sym_type_arguments, - STATE(1349), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2540), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [50947] = 3, - ACTIONS(3644), 1, + [51319] = 3, + ACTIONS(3678), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3642), 10, + ACTIONS(3676), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114370,13 +114900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50967] = 3, - ACTIONS(3648), 1, + [51339] = 3, + ACTIONS(3682), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3646), 10, + ACTIONS(3680), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114387,13 +114917,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50987] = 3, - ACTIONS(3652), 1, + [51359] = 3, + ACTIONS(3686), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3650), 10, + ACTIONS(3684), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114404,43 +114934,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51007] = 9, - ACTIONS(3421), 1, - anon_sym_BANG, - ACTIONS(3427), 1, - anon_sym_LT2, + [51379] = 9, ACTIONS(3431), 1, - anon_sym_LPAREN, - ACTIONS(3433), 1, - anon_sym_COLON_COLON, - ACTIONS(3654), 1, - anon_sym_for, - STATE(1346), 1, - sym_type_arguments, - STATE(1349), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2540), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [51039] = 9, - ACTIONS(3421), 1, anon_sym_BANG, - ACTIONS(3427), 1, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(3431), 1, + ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3433), 1, + ACTIONS(3443), 1, anon_sym_COLON_COLON, - ACTIONS(3656), 1, + ACTIONS(3688), 1, anon_sym_for, - STATE(1346), 1, + STATE(1341), 1, sym_type_arguments, - STATE(1349), 1, + STATE(1365), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -114450,36 +114957,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [51071] = 9, - ACTIONS(3421), 1, - anon_sym_BANG, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(3431), 1, - anon_sym_LPAREN, - ACTIONS(3433), 1, - anon_sym_COLON_COLON, - ACTIONS(3658), 1, - anon_sym_for, - STATE(1346), 1, - sym_type_arguments, - STATE(1349), 1, - sym_parameters, + [51411] = 3, + ACTIONS(3692), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2540), 4, + ACTIONS(3690), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [51103] = 3, - ACTIONS(3662), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [51431] = 3, + ACTIONS(430), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3660), 10, + ACTIONS(428), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114490,13 +114991,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51123] = 3, - ACTIONS(3666), 1, + [51451] = 3, + ACTIONS(3696), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3664), 10, + ACTIONS(3694), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114507,13 +115008,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51143] = 3, - ACTIONS(3670), 1, + [51471] = 3, + ACTIONS(3567), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3668), 10, + ACTIONS(3565), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114524,13 +115025,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51163] = 3, - ACTIONS(3674), 1, + [51491] = 3, + ACTIONS(3700), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3672), 10, + ACTIONS(3698), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114541,13 +115042,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51183] = 3, - ACTIONS(3678), 1, + [51511] = 3, + ACTIONS(3429), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3676), 10, + ACTIONS(3423), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114558,13 +115059,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51203] = 3, - ACTIONS(3682), 1, + [51531] = 3, + ACTIONS(3704), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3680), 10, + ACTIONS(3702), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114575,13 +115076,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51223] = 3, - ACTIONS(3686), 1, + [51551] = 3, + ACTIONS(3708), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3684), 10, + ACTIONS(3706), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114592,13 +115093,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51243] = 3, - ACTIONS(3690), 1, + [51571] = 3, + ACTIONS(3712), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3688), 10, + ACTIONS(3710), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114609,17 +115110,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51263] = 5, + [51591] = 5, ACTIONS(706), 1, aux_sym_string_literal_token1, - ACTIONS(3692), 1, + ACTIONS(3714), 1, sym_crate, - STATE(1556), 1, + STATE(1543), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3602), 8, + ACTIONS(3606), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -114628,13 +115129,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [51287] = 3, - ACTIONS(3696), 1, + [51615] = 3, + ACTIONS(3718), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3694), 10, + ACTIONS(3716), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114645,13 +115146,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51307] = 3, - ACTIONS(3700), 1, + [51635] = 5, + ACTIONS(706), 1, + aux_sym_string_literal_token1, + ACTIONS(3720), 1, + sym_crate, + STATE(1543), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3606), 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, + [51659] = 3, + ACTIONS(3724), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3698), 10, + ACTIONS(3722), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114662,20 +115182,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51327] = 9, - ACTIONS(3421), 1, + [51679] = 9, + ACTIONS(3431), 1, anon_sym_BANG, - ACTIONS(3427), 1, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(3431), 1, + ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3433), 1, + ACTIONS(3443), 1, anon_sym_COLON_COLON, - ACTIONS(3702), 1, + ACTIONS(3726), 1, anon_sym_for, - STATE(1346), 1, + STATE(1341), 1, sym_type_arguments, - STATE(1349), 1, + STATE(1365), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -114685,30 +115205,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [51359] = 3, - ACTIONS(3706), 1, - anon_sym_EQ, + [51711] = 9, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3443), 1, + anon_sym_COLON_COLON, + ACTIONS(3728), 1, + anon_sym_for, + STATE(1341), 1, + sym_type_arguments, + STATE(1365), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3704), 10, + ACTIONS(2540), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51379] = 3, - ACTIONS(3710), 1, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [51743] = 3, + ACTIONS(3732), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3708), 10, + ACTIONS(3730), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114719,2164 +115245,2040 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51399] = 3, - ACTIONS(3714), 1, - anon_sym_EQ, + [51763] = 9, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3443), 1, + anon_sym_COLON_COLON, + ACTIONS(3734), 1, + anon_sym_for, + STATE(1341), 1, + sym_type_arguments, + STATE(1365), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3712), 10, + ACTIONS(2540), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [51795] = 6, + ACTIONS(3644), 1, anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51419] = 5, - ACTIONS(706), 1, - aux_sym_string_literal_token1, - ACTIONS(3716), 1, - sym_crate, - STATE(1556), 1, - sym_string_literal, + ACTIONS(3646), 1, + anon_sym_BANG, + ACTIONS(3736), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3602), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3522), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [51443] = 3, - ACTIONS(3720), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3718), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51463] = 3, - ACTIONS(3724), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3722), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51483] = 6, - ACTIONS(3632), 1, - anon_sym_COLON, - ACTIONS(3634), 1, + [51821] = 5, + ACTIONS(3646), 1, anon_sym_BANG, - ACTIONS(3726), 1, + ACTIONS(3738), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 2, + ACTIONS(3522), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [51509] = 6, + [51844] = 6, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3449), 1, + ACTIONS(3483), 1, anon_sym_trait, - ACTIONS(3728), 1, + ACTIONS(3740), 1, anon_sym_impl, STATE(70), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2572), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [51534] = 5, - ACTIONS(3634), 1, - anon_sym_BANG, - ACTIONS(3730), 1, - anon_sym_COLON_COLON, + [51869] = 7, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3742), 1, + anon_sym_LBRACE, + STATE(1352), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [51557] = 10, + ACTIONS(2614), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_COMMA, + [51896] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3732), 1, + ACTIONS(3744), 1, sym_identifier, - ACTIONS(3734), 1, + ACTIONS(3746), 1, anon_sym_RBRACE, - ACTIONS(3736), 1, + ACTIONS(3748), 1, anon_sym_COMMA, - ACTIONS(3738), 1, + ACTIONS(3750), 1, sym_crate, - STATE(2070), 1, + STATE(1946), 1, sym_enum_variant, - STATE(2449), 1, + STATE(2405), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1523), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [51590] = 8, - ACTIONS(2303), 1, - anon_sym_POUND, - ACTIONS(3740), 1, - sym_identifier, - ACTIONS(3742), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3746), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1826), 2, + STATE(1562), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1922), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [51619] = 7, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(3431), 1, - anon_sym_LPAREN, - ACTIONS(3748), 1, - anon_sym_LBRACE, - STATE(1347), 1, - sym_type_arguments, - STATE(1358), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_COMMA, - [51646] = 10, + [51929] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3738), 1, - sym_crate, ACTIONS(3750), 1, - sym_identifier, + sym_crate, ACTIONS(3752), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3754), 1, + anon_sym_RBRACE, + ACTIONS(3756), 1, anon_sym_COMMA, - STATE(2106), 1, + STATE(2010), 1, sym_field_declaration, - STATE(2402), 1, + STATE(2412), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1536), 2, + STATE(1524), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [51679] = 9, - ACTIONS(3421), 1, - anon_sym_BANG, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(3431), 1, - anon_sym_LPAREN, - ACTIONS(3433), 1, - anon_sym_COLON_COLON, - ACTIONS(3756), 1, - anon_sym_EQ, - STATE(1349), 1, - sym_parameters, - STATE(1723), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2540), 3, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_GT, - [51710] = 5, - ACTIONS(3634), 1, - anon_sym_BANG, - ACTIONS(3636), 1, - anon_sym_COLON_COLON, + [51962] = 8, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(3758), 1, + sym_identifier, + ACTIONS(3760), 1, + anon_sym_RBRACE, + ACTIONS(3762), 1, + anon_sym_COMMA, + ACTIONS(3764), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [51733] = 5, - ACTIONS(3634), 1, + STATE(1763), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(1931), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [51991] = 5, + ACTIONS(3646), 1, anon_sym_BANG, - ACTIONS(3726), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 2, + ACTIONS(3522), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [51756] = 10, + [52014] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3732), 1, + ACTIONS(3744), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3750), 1, sym_crate, - ACTIONS(3758), 1, + ACTIONS(3766), 1, anon_sym_RBRACE, - ACTIONS(3760), 1, + ACTIONS(3768), 1, anon_sym_COMMA, - STATE(1936), 1, + STATE(2082), 1, sym_enum_variant, - STATE(2449), 1, + STATE(2405), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1549), 2, + STATE(1538), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [51789] = 10, + [52047] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3738), 1, - sym_crate, ACTIONS(3750), 1, + sym_crate, + ACTIONS(3752), 1, sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3770), 1, anon_sym_RBRACE, - ACTIONS(3764), 1, + ACTIONS(3772), 1, anon_sym_COMMA, - STATE(1923), 1, + STATE(2118), 1, sym_field_declaration, - STATE(2402), 1, + STATE(2412), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1544), 2, + STATE(1535), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [51822] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3766), 1, - sym_identifier, - STATE(71), 1, - sym_block, + [52080] = 9, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3443), 1, + anon_sym_COLON_COLON, + ACTIONS(3774), 1, + anon_sym_EQ, + STATE(1365), 1, + sym_parameters, + STATE(1710), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2540), 3, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_GT, + [52111] = 5, + ACTIONS(3646), 1, + anon_sym_BANG, + ACTIONS(3736), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3768), 6, + ACTIONS(3522), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [51844] = 7, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(3431), 1, - anon_sym_LPAREN, - ACTIONS(3770), 1, - anon_sym_for, - STATE(1347), 1, - sym_type_arguments, - STATE(1358), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 4, - anon_sym_SEMI, + [52134] = 5, + ACTIONS(15), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [51870] = 10, - ACTIONS(3772), 1, - anon_sym_SEMI, - ACTIONS(3774), 1, - anon_sym_LPAREN, ACTIONS(3776), 1, - anon_sym_LBRACE, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(3780), 1, - anon_sym_LT, - STATE(898), 1, - sym_field_declaration_list, - STATE(1572), 1, - sym_type_parameters, - STATE(2033), 1, - sym_ordered_field_declaration_list, - STATE(2245), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [51902] = 7, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(3431), 1, - anon_sym_LPAREN, - ACTIONS(3782), 1, - anon_sym_for, - STATE(1347), 1, - sym_type_arguments, - STATE(1358), 1, - sym_parameters, + sym_identifier, + STATE(61), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [51928] = 9, + ACTIONS(3778), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52156] = 9, ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(3784), 1, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3786), 1, + ACTIONS(3782), 1, anon_sym_const, - ACTIONS(3788), 1, + ACTIONS(3784), 1, anon_sym_GT, - ACTIONS(3790), 1, + ACTIONS(3786), 1, sym_metavariable, - STATE(1806), 1, + STATE(1810), 1, sym_lifetime, - STATE(1973), 1, + STATE(1979), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2309), 2, + STATE(2320), 2, sym_const_parameter, sym_optional_type_parameter, - [51958] = 10, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(3780), 1, - anon_sym_LT, - ACTIONS(3792), 1, + [52186] = 7, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(3758), 1, + sym_identifier, + ACTIONS(3764), 1, + anon_sym_DOT_DOT, + ACTIONS(3788), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1763), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2182), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [52212] = 10, + ACTIONS(3790), 1, anon_sym_SEMI, + ACTIONS(3792), 1, + anon_sym_LPAREN, ACTIONS(3794), 1, anon_sym_LBRACE, - STATE(473), 1, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3798), 1, + anon_sym_LT, + STATE(378), 1, sym_field_declaration_list, - STATE(1578), 1, + STATE(1599), 1, sym_type_parameters, - STATE(2041), 1, + STATE(2033), 1, sym_ordered_field_declaration_list, - STATE(2231), 1, + STATE(2280), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [51990] = 5, + [52244] = 10, + ACTIONS(3792), 1, + anon_sym_LPAREN, ACTIONS(3796), 1, - anon_sym_SEMI, + anon_sym_where, ACTIONS(3798), 1, + anon_sym_LT, + ACTIONS(3800), 1, + anon_sym_SEMI, + ACTIONS(3802), 1, anon_sym_LBRACE, - STATE(1015), 1, - sym_declaration_list, + STATE(998), 1, + sym_field_declaration_list, + STATE(1604), 1, + sym_type_parameters, + STATE(2045), 1, + sym_ordered_field_declaration_list, + STATE(2259), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2572), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52012] = 9, + [52276] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3738), 1, - sym_crate, ACTIONS(3750), 1, + sym_crate, + ACTIONS(3752), 1, sym_identifier, - ACTIONS(3800), 1, + ACTIONS(3804), 1, anon_sym_RBRACE, - STATE(2191), 1, + STATE(2232), 1, sym_field_declaration, - STATE(2402), 1, + STATE(2412), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1538), 2, + STATE(1536), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52042] = 7, - ACTIONS(3427), 1, + [52306] = 7, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(3431), 1, + ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3802), 1, + ACTIONS(3806), 1, anon_sym_for, - STATE(1347), 1, + STATE(1352), 1, sym_type_arguments, - STATE(1358), 1, + STATE(1369), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 4, + ACTIONS(2614), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52068] = 7, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(3431), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_for, - STATE(1347), 1, - sym_type_arguments, - STATE(1358), 1, - sym_parameters, + [52332] = 7, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(3758), 1, + sym_identifier, + ACTIONS(3764), 1, + anon_sym_DOT_DOT, + ACTIONS(3808), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52094] = 9, + STATE(1763), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2182), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [52358] = 9, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + sym_identifier, + ACTIONS(3782), 1, + anon_sym_const, + ACTIONS(3786), 1, + sym_metavariable, + ACTIONS(3810), 1, + anon_sym_GT, + STATE(1835), 1, + sym_lifetime, + STATE(1979), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2320), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52388] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3732), 1, + ACTIONS(3744), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3750), 1, sym_crate, - ACTIONS(3806), 1, + ACTIONS(3812), 1, anon_sym_RBRACE, - STATE(2141), 1, + STATE(2215), 1, sym_enum_variant, - STATE(2449), 1, + STATE(2405), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1534), 2, + STATE(1554), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52124] = 9, + [52418] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3738), 1, - sym_crate, - ACTIONS(3750), 1, + ACTIONS(3744), 1, sym_identifier, - ACTIONS(3808), 1, + ACTIONS(3750), 1, + sym_crate, + ACTIONS(3814), 1, anon_sym_RBRACE, - STATE(2191), 1, - sym_field_declaration, - STATE(2402), 1, + STATE(2215), 1, + sym_enum_variant, + STATE(2405), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1538), 2, + STATE(1554), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52154] = 7, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(3431), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_for, - STATE(1347), 1, - sym_type_arguments, - STATE(1358), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52180] = 10, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(3780), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_LBRACE, - ACTIONS(3812), 1, - anon_sym_SEMI, - STATE(375), 1, - sym_field_declaration_list, - STATE(1569), 1, - sym_type_parameters, - STATE(2035), 1, - sym_ordered_field_declaration_list, - STATE(2251), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [52212] = 9, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(3784), 1, - sym_identifier, - ACTIONS(3786), 1, - anon_sym_const, - ACTIONS(3790), 1, - sym_metavariable, - ACTIONS(3814), 1, - anon_sym_GT, - STATE(1806), 1, - sym_lifetime, - STATE(1973), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2309), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52242] = 9, + [52448] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3738), 1, - sym_crate, ACTIONS(3750), 1, + sym_crate, + ACTIONS(3752), 1, sym_identifier, ACTIONS(3816), 1, anon_sym_RBRACE, - STATE(2191), 1, + STATE(2232), 1, sym_field_declaration, - STATE(2402), 1, + STATE(2412), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1538), 2, + STATE(1536), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52272] = 9, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(3784), 1, - sym_identifier, - ACTIONS(3786), 1, - anon_sym_const, - ACTIONS(3790), 1, - sym_metavariable, + [52478] = 7, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, ACTIONS(3818), 1, - anon_sym_GT, - STATE(1806), 1, - sym_lifetime, - STATE(1973), 1, - sym_constrained_type_parameter, + anon_sym_for, + STATE(1352), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2309), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52302] = 7, - ACTIONS(3427), 1, + ACTIONS(2614), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52504] = 7, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(3431), 1, + ACTIONS(3441), 1, anon_sym_LPAREN, ACTIONS(3820), 1, anon_sym_for, - STATE(1347), 1, + STATE(1352), 1, sym_type_arguments, - STATE(1358), 1, + STATE(1369), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 4, + ACTIONS(2614), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52328] = 7, + [52530] = 9, + ACTIONS(53), 1, + anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3740), 1, + ACTIONS(3750), 1, + sym_crate, + ACTIONS(3752), 1, sym_identifier, - ACTIONS(3746), 1, - anon_sym_DOT_DOT, ACTIONS(3822), 1, anon_sym_RBRACE, + STATE(2232), 1, + sym_field_declaration, + STATE(2412), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1826), 2, + STATE(1536), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2184), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [52354] = 9, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(3784), 1, - sym_identifier, - ACTIONS(3786), 1, - anon_sym_const, - ACTIONS(3790), 1, - sym_metavariable, + [52560] = 7, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, ACTIONS(3824), 1, - anon_sym_GT, - STATE(1806), 1, - sym_lifetime, - STATE(1973), 1, - sym_constrained_type_parameter, + anon_sym_for, + STATE(1352), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2309), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52384] = 9, + ACTIONS(2614), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52586] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3732), 1, + ACTIONS(3744), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3750), 1, sym_crate, ACTIONS(3826), 1, anon_sym_RBRACE, - STATE(2141), 1, + STATE(2215), 1, sym_enum_variant, - STATE(2449), 1, + STATE(2405), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1534), 2, + STATE(1554), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52414] = 9, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(3784), 1, - sym_identifier, - ACTIONS(3786), 1, - anon_sym_const, - ACTIONS(3790), 1, - sym_metavariable, + [52616] = 5, ACTIONS(3828), 1, - anon_sym_GT, - STATE(1806), 1, - sym_lifetime, - STATE(1973), 1, - sym_constrained_type_parameter, + anon_sym_SEMI, + ACTIONS(3830), 1, + anon_sym_LBRACE, + STATE(1013), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2309), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52444] = 9, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52638] = 9, ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(3784), 1, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3786), 1, + ACTIONS(3782), 1, anon_sym_const, - ACTIONS(3790), 1, + ACTIONS(3786), 1, sym_metavariable, - ACTIONS(3830), 1, + ACTIONS(3832), 1, anon_sym_GT, - STATE(1806), 1, + STATE(1810), 1, sym_lifetime, - STATE(1973), 1, + STATE(1979), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2309), 2, + STATE(2320), 2, sym_const_parameter, sym_optional_type_parameter, - [52474] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3832), 1, - anon_sym_move, - STATE(78), 1, - sym_block, + [52668] = 7, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3834), 1, + anon_sym_for, + STATE(1352), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2572), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52496] = 9, + ACTIONS(2614), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52694] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3732), 1, + ACTIONS(3744), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3750), 1, sym_crate, - ACTIONS(3834), 1, - anon_sym_RBRACE, - STATE(2141), 1, - sym_enum_variant, - STATE(2449), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1534), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52526] = 7, - ACTIONS(2303), 1, - anon_sym_POUND, - ACTIONS(3740), 1, - sym_identifier, - ACTIONS(3746), 1, - anon_sym_DOT_DOT, - ACTIONS(3836), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1826), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2184), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [52552] = 10, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(3776), 1, - anon_sym_LBRACE, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(3780), 1, - anon_sym_LT, - ACTIONS(3838), 1, - anon_sym_SEMI, - STATE(805), 1, - sym_field_declaration_list, - STATE(1602), 1, - sym_type_parameters, - STATE(2117), 1, - sym_ordered_field_declaration_list, - STATE(2126), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [52584] = 7, - ACTIONS(3415), 1, - anon_sym_LPAREN, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(3421), 1, - anon_sym_BANG, - ACTIONS(3840), 1, - anon_sym_COLON_COLON, + ACTIONS(3836), 1, + anon_sym_RBRACE, + STATE(2215), 1, + sym_enum_variant, + STATE(2405), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3413), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [52610] = 9, + STATE(1554), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [52724] = 9, ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(3784), 1, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3786), 1, + ACTIONS(3782), 1, anon_sym_const, - ACTIONS(3790), 1, + ACTIONS(3786), 1, sym_metavariable, - ACTIONS(3842), 1, + ACTIONS(3838), 1, anon_sym_GT, - STATE(1829), 1, + STATE(1810), 1, sym_lifetime, - STATE(1973), 1, + STATE(1979), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2309), 2, + STATE(2320), 2, sym_const_parameter, sym_optional_type_parameter, - [52640] = 9, + [52754] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3738), 1, - sym_crate, ACTIONS(3750), 1, + sym_crate, + ACTIONS(3752), 1, sym_identifier, - ACTIONS(3844), 1, + ACTIONS(3840), 1, anon_sym_RBRACE, - STATE(2191), 1, + STATE(2232), 1, sym_field_declaration, - STATE(2402), 1, + STATE(2412), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1538), 2, + STATE(1536), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52670] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2303), 1, - anon_sym_POUND, - ACTIONS(3732), 1, + [52784] = 9, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3738), 1, - sym_crate, - ACTIONS(3846), 1, - anon_sym_RBRACE, - STATE(2141), 1, - sym_enum_variant, - STATE(2449), 1, - sym_visibility_modifier, + ACTIONS(3782), 1, + anon_sym_const, + ACTIONS(3786), 1, + sym_metavariable, + ACTIONS(3842), 1, + anon_sym_GT, + STATE(1810), 1, + sym_lifetime, + STATE(1979), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1534), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52700] = 5, - ACTIONS(3848), 1, - anon_sym_SEMI, - ACTIONS(3850), 1, - anon_sym_LBRACE, - STATE(469), 1, - sym_declaration_list, + STATE(2320), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52814] = 9, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + sym_identifier, + ACTIONS(3782), 1, + anon_sym_const, + ACTIONS(3786), 1, + sym_metavariable, + ACTIONS(3844), 1, + anon_sym_GT, + STATE(1810), 1, + sym_lifetime, + STATE(1979), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2572), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52722] = 9, + STATE(2320), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52844] = 9, ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(3784), 1, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3786), 1, + ACTIONS(3782), 1, anon_sym_const, - ACTIONS(3790), 1, + ACTIONS(3786), 1, sym_metavariable, - ACTIONS(3852), 1, + ACTIONS(3846), 1, anon_sym_GT, - STATE(1806), 1, + STATE(1810), 1, sym_lifetime, - STATE(1973), 1, + STATE(1979), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2309), 2, + STATE(2320), 2, sym_const_parameter, sym_optional_type_parameter, - [52752] = 9, + [52874] = 10, + ACTIONS(3792), 1, + anon_sym_LPAREN, + ACTIONS(3794), 1, + anon_sym_LBRACE, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3798), 1, + anon_sym_LT, + ACTIONS(3848), 1, + anon_sym_SEMI, + STATE(475), 1, + sym_field_declaration_list, + STATE(1569), 1, + sym_type_parameters, + STATE(2054), 1, + sym_ordered_field_declaration_list, + STATE(2225), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [52906] = 9, ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(3784), 1, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3786), 1, + ACTIONS(3782), 1, anon_sym_const, - ACTIONS(3790), 1, + ACTIONS(3786), 1, sym_metavariable, - ACTIONS(3854), 1, + ACTIONS(3850), 1, anon_sym_GT, - STATE(1806), 1, + STATE(1810), 1, sym_lifetime, - STATE(1973), 1, + STATE(1979), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2309), 2, + STATE(2320), 2, sym_const_parameter, sym_optional_type_parameter, - [52782] = 7, - ACTIONS(3427), 1, + [52936] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(3750), 1, + sym_crate, + ACTIONS(3752), 1, + sym_identifier, + ACTIONS(3852), 1, + anon_sym_RBRACE, + STATE(2232), 1, + sym_field_declaration, + STATE(2412), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1536), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [52966] = 7, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(3431), 1, + ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3856), 1, + ACTIONS(3854), 1, anon_sym_for, - STATE(1347), 1, + STATE(1352), 1, sym_type_arguments, - STATE(1358), 1, + STATE(1369), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 4, + ACTIONS(2614), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52808] = 9, + [52992] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3732), 1, + ACTIONS(3744), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3750), 1, sym_crate, - ACTIONS(3858), 1, + ACTIONS(3856), 1, anon_sym_RBRACE, - STATE(2141), 1, + STATE(2215), 1, sym_enum_variant, - STATE(2449), 1, + STATE(2405), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1534), 2, + STATE(1554), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52838] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2303), 1, - anon_sym_POUND, - ACTIONS(3738), 1, - sym_crate, - ACTIONS(3750), 1, + [53022] = 9, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3860), 1, - anon_sym_RBRACE, - STATE(2191), 1, - sym_field_declaration, - STATE(2402), 1, - sym_visibility_modifier, + ACTIONS(3782), 1, + anon_sym_const, + ACTIONS(3786), 1, + sym_metavariable, + ACTIONS(3858), 1, + anon_sym_GT, + STATE(1810), 1, + sym_lifetime, + STATE(1979), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1538), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52868] = 7, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(3431), 1, - anon_sym_LPAREN, - ACTIONS(3862), 1, - anon_sym_for, - STATE(1347), 1, - sym_type_arguments, - STATE(1358), 1, - sym_parameters, + STATE(2320), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53052] = 5, + ACTIONS(3830), 1, + anon_sym_LBRACE, + ACTIONS(3860), 1, + anon_sym_SEMI, + STATE(938), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 4, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53074] = 5, + ACTIONS(3862), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52894] = 5, - ACTIONS(3798), 1, - anon_sym_LBRACE, ACTIONS(3864), 1, - anon_sym_SEMI, - STATE(976), 1, + anon_sym_LBRACE, + STATE(370), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2572), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52916] = 9, + [53096] = 10, + ACTIONS(3792), 1, + anon_sym_LPAREN, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3798), 1, + anon_sym_LT, + ACTIONS(3802), 1, + anon_sym_LBRACE, + ACTIONS(3866), 1, + anon_sym_SEMI, + STATE(880), 1, + sym_field_declaration_list, + STATE(1571), 1, + sym_type_parameters, + STATE(2122), 1, + sym_ordered_field_declaration_list, + STATE(2138), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53128] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3738), 1, - sym_crate, - ACTIONS(3750), 1, + ACTIONS(3744), 1, sym_identifier, - ACTIONS(3866), 1, + ACTIONS(3750), 1, + sym_crate, + ACTIONS(3868), 1, anon_sym_RBRACE, - STATE(2191), 1, - sym_field_declaration, - STATE(2402), 1, + STATE(2215), 1, + sym_enum_variant, + STATE(2405), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1538), 2, + STATE(1554), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52946] = 9, + [53158] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3732), 1, - sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3750), 1, sym_crate, - ACTIONS(3868), 1, + ACTIONS(3752), 1, + sym_identifier, + ACTIONS(3870), 1, anon_sym_RBRACE, - STATE(2141), 1, - sym_enum_variant, - STATE(2449), 1, + STATE(2232), 1, + sym_field_declaration, + STATE(2412), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1534), 2, + STATE(1536), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52976] = 5, - ACTIONS(3850), 1, + [53188] = 5, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3870), 1, - anon_sym_SEMI, - STATE(367), 1, - sym_declaration_list, + ACTIONS(3872), 1, + anon_sym_move, + STATE(66), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2572), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52998] = 9, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(3798), 1, - anon_sym_LBRACE, - ACTIONS(3872), 1, - anon_sym_COLON, + [53210] = 7, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, ACTIONS(3874), 1, - anon_sym_LT, - STATE(903), 1, - sym_declaration_list, - STATE(1677), 1, - sym_type_parameters, - STATE(1782), 1, - sym_trait_bounds, - STATE(2244), 1, - sym_where_clause, + anon_sym_for, + STATE(1352), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53027] = 9, - ACTIONS(3778), 1, + ACTIONS(2614), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3850), 1, + [53236] = 5, + ACTIONS(3864), 1, anon_sym_LBRACE, - ACTIONS(3872), 1, - anon_sym_COLON, - ACTIONS(3874), 1, - anon_sym_LT, - STATE(403), 1, + ACTIONS(3876), 1, + anon_sym_SEMI, + STATE(472), 1, sym_declaration_list, - STATE(1675), 1, - sym_type_parameters, - STATE(1816), 1, - sym_trait_bounds, - STATE(2298), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53056] = 9, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(3798), 1, - anon_sym_LBRACE, - ACTIONS(3872), 1, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53258] = 7, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3429), 1, anon_sym_COLON, - ACTIONS(3874), 1, - anon_sym_LT, - STATE(901), 1, - sym_declaration_list, - STATE(1663), 1, - sym_type_parameters, - STATE(1776), 1, - sym_trait_bounds, - STATE(2189), 1, - sym_where_clause, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3878), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53085] = 8, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(3786), 1, - anon_sym_const, - ACTIONS(3876), 1, - sym_identifier, - ACTIONS(3878), 1, - sym_metavariable, - STATE(1640), 1, - sym_lifetime, - STATE(1757), 1, - sym_constrained_type_parameter, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3423), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [53284] = 7, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3880), 1, + anon_sym_for, + STATE(1352), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2116), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53112] = 4, - ACTIONS(3882), 1, + ACTIONS(2614), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53310] = 4, + ACTIONS(3884), 1, anon_sym_PLUS, - STATE(1527), 1, + STATE(1550), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3880), 6, + ACTIONS(3882), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [53131] = 4, - ACTIONS(3532), 1, - anon_sym_COLON_COLON, - ACTIONS(3634), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2572), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53150] = 8, + [53329] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3732), 1, - sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3750), 1, sym_crate, - STATE(2113), 1, - sym_enum_variant, - STATE(2449), 1, + ACTIONS(3752), 1, + sym_identifier, + STATE(1934), 1, + sym_field_declaration, + STATE(2412), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1048), 2, + STATE(1121), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53177] = 8, + [53356] = 4, + ACTIONS(3886), 1, + anon_sym_PLUS, + STATE(1550), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3882), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [53375] = 8, ACTIONS(798), 1, anon_sym_DOT_DOT, - ACTIONS(3884), 1, + ACTIONS(3888), 1, sym_identifier, - ACTIONS(3886), 1, + ACTIONS(3890), 1, anon_sym_RBRACE, - ACTIONS(3888), 1, + ACTIONS(3892), 1, anon_sym_COMMA, - ACTIONS(3890), 1, + ACTIONS(3894), 1, anon_sym_ref, - ACTIONS(3892), 1, + ACTIONS(3896), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1880), 2, + STATE(1891), 2, sym_field_pattern, sym_remaining_field_pattern, - [53204] = 5, - ACTIONS(3897), 1, - anon_sym_fn, - ACTIONS(3899), 1, - anon_sym_extern, + [53402] = 4, + ACTIONS(870), 1, + anon_sym_LBRACE, + STATE(1453), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1525), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3894), 4, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, anon_sym_unsafe, - [53225] = 8, - ACTIONS(3902), 1, - anon_sym_LPAREN, - ACTIONS(3907), 1, - anon_sym_LBRACE, - ACTIONS(3910), 1, - anon_sym_LBRACK, - STATE(1526), 1, - aux_sym_macro_definition_repeat1, - STATE(2313), 1, - sym_macro_rule, - STATE(2416), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3905), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [53252] = 4, - ACTIONS(3915), 1, - anon_sym_PLUS, - STATE(1527), 1, - aux_sym_trait_bounds_repeat1, + anon_sym_extern, + [53421] = 4, + ACTIONS(2690), 1, + anon_sym_COLON_COLON, + ACTIONS(3898), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3913), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [53271] = 9, - ACTIONS(3778), 1, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53440] = 9, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3850), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(3872), 1, + ACTIONS(3900), 1, anon_sym_COLON, - ACTIONS(3874), 1, + ACTIONS(3902), 1, anon_sym_LT, - STATE(380), 1, + STATE(999), 1, sym_declaration_list, - STATE(1691), 1, + STATE(1672), 1, sym_type_parameters, - STATE(1790), 1, + STATE(1784), 1, sym_trait_bounds, - STATE(2252), 1, + STATE(2257), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53300] = 8, + [53469] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3732), 1, - sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3750), 1, sym_crate, - STATE(2141), 1, - sym_enum_variant, - STATE(2449), 1, + ACTIONS(3752), 1, + sym_identifier, + STATE(2232), 1, + sym_field_declaration, + STATE(2412), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1534), 2, + STATE(1536), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53327] = 8, - ACTIONS(798), 1, - anon_sym_DOT_DOT, - ACTIONS(3884), 1, - sym_identifier, - ACTIONS(3890), 1, - anon_sym_ref, - ACTIONS(3892), 1, - sym_mutable_specifier, - ACTIONS(3918), 1, - anon_sym_RBRACE, - ACTIONS(3920), 1, - anon_sym_COMMA, + [53496] = 6, + ACTIONS(3738), 1, + anon_sym_COLON_COLON, + ACTIONS(3904), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1893), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [53354] = 7, - ACTIONS(2578), 1, + ACTIONS(2614), 2, + anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3524), 1, + ACTIONS(3516), 2, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(3526), 1, + ACTIONS(3522), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53519] = 9, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3830), 1, + anon_sym_LBRACE, + ACTIONS(3900), 1, anon_sym_COLON, - ACTIONS(3726), 1, - anon_sym_COLON_COLON, + ACTIONS(3902), 1, + anon_sym_LT, + STATE(896), 1, + sym_declaration_list, + STATE(1632), 1, + sym_type_parameters, + STATE(1764), 1, + sym_trait_bounds, + STATE(2162), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3922), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [53379] = 8, + [53548] = 8, ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(3784), 1, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3786), 1, + ACTIONS(3782), 1, anon_sym_const, - ACTIONS(3790), 1, + ACTIONS(3786), 1, sym_metavariable, - STATE(1806), 1, + STATE(1810), 1, sym_lifetime, - STATE(1973), 1, + STATE(1979), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2309), 2, + STATE(2320), 2, sym_const_parameter, sym_optional_type_parameter, - [53406] = 4, - ACTIONS(706), 1, - aux_sym_string_literal_token1, - STATE(1556), 1, - sym_string_literal, + [53575] = 4, + ACTIONS(3580), 1, + anon_sym_COLON_COLON, + ACTIONS(3907), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3602), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53425] = 8, + [53594] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3732), 1, - sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3750), 1, sym_crate, - STATE(2175), 1, - sym_enum_variant, - STATE(2449), 1, + ACTIONS(3752), 1, + sym_identifier, + STATE(2111), 1, + sym_field_declaration, + STATE(2412), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1048), 2, + STATE(1121), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53452] = 4, - ACTIONS(3882), 1, - anon_sym_PLUS, - STATE(1521), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3925), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [53471] = 8, + [53621] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3738), 1, - sym_crate, ACTIONS(3750), 1, + sym_crate, + ACTIONS(3752), 1, sym_identifier, - STATE(2084), 1, + STATE(2250), 1, sym_field_declaration, - STATE(2402), 1, + STATE(2412), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1048), 2, + STATE(1121), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53498] = 9, - ACTIONS(3778), 1, + [53648] = 9, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3850), 1, + ACTIONS(3864), 1, anon_sym_LBRACE, - ACTIONS(3872), 1, + ACTIONS(3900), 1, anon_sym_COLON, - ACTIONS(3874), 1, + ACTIONS(3902), 1, anon_sym_LT, - STATE(411), 1, + STATE(383), 1, sym_declaration_list, - STATE(1614), 1, + STATE(1666), 1, sym_type_parameters, - STATE(1854), 1, + STATE(1799), 1, sym_trait_bounds, - STATE(2163), 1, + STATE(2298), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53527] = 8, + [53677] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3738), 1, - sym_crate, - ACTIONS(3750), 1, + ACTIONS(3744), 1, sym_identifier, - STATE(2248), 1, - sym_field_declaration, - STATE(2402), 1, + ACTIONS(3750), 1, + sym_crate, + STATE(2125), 1, + sym_enum_variant, + STATE(2405), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1048), 2, + STATE(1121), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53554] = 9, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(3798), 1, - anon_sym_LBRACE, - ACTIONS(3872), 1, + [53704] = 7, + ACTIONS(2614), 1, + anon_sym_PLUS, + ACTIONS(3516), 1, + anon_sym_PIPE, + ACTIONS(3518), 1, anon_sym_COLON, - ACTIONS(3874), 1, - anon_sym_LT, - STATE(859), 1, - sym_declaration_list, - STATE(1634), 1, - sym_type_parameters, - STATE(1761), 1, - sym_trait_bounds, - STATE(2127), 1, - sym_where_clause, + ACTIONS(3736), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53583] = 6, - ACTIONS(3730), 1, - anon_sym_COLON_COLON, - ACTIONS(3922), 1, - anon_sym_RBRACK, + ACTIONS(3522), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3904), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [53729] = 8, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(3782), 1, + anon_sym_const, + ACTIONS(3909), 1, + sym_identifier, + ACTIONS(3911), 1, + sym_metavariable, + STATE(1709), 1, + sym_lifetime, + STATE(1765), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, - anon_sym_SEMI, + STATE(2108), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53756] = 4, + ACTIONS(3915), 1, anon_sym_PLUS, - ACTIONS(3524), 2, + STATE(1541), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3913), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3530), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [53606] = 6, - ACTIONS(2303), 1, - anon_sym_POUND, - ACTIONS(3740), 1, + anon_sym_GT, + [53775] = 8, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(3782), 1, + anon_sym_const, + ACTIONS(3918), 1, sym_identifier, - ACTIONS(3746), 1, - anon_sym_DOT_DOT, + ACTIONS(3920), 1, + sym_metavariable, + STATE(1755), 1, + sym_lifetime, + STATE(1793), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1826), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2184), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [53629] = 4, - ACTIONS(874), 1, - anon_sym_LBRACE, - STATE(1428), 1, - sym_block, + STATE(2032), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53802] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2572), 6, + ACTIONS(3922), 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, - [53648] = 6, - ACTIONS(3524), 1, + [53817] = 9, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3864), 1, + anon_sym_LBRACE, + ACTIONS(3900), 1, + anon_sym_COLON, + ACTIONS(3902), 1, + anon_sym_LT, + STATE(412), 1, + sym_declaration_list, + STATE(1619), 1, + sym_type_parameters, + STATE(1772), 1, + sym_trait_bounds, + STATE(2210), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [53846] = 6, + ACTIONS(3516), 1, anon_sym_PIPE, - ACTIONS(3526), 1, + ACTIONS(3518), 1, anon_sym_COLON, - ACTIONS(3636), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 2, + ACTIONS(3522), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2578), 3, + ACTIONS(2614), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [53671] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2303), 1, - anon_sym_POUND, - ACTIONS(3738), 1, - sym_crate, - ACTIONS(3750), 1, - sym_identifier, - STATE(1925), 1, - sym_field_declaration, - STATE(2402), 1, - sym_visibility_modifier, + [53869] = 6, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3924), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1048), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53698] = 8, - ACTIONS(53), 1, - anon_sym_pub, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3423), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [53892] = 4, + ACTIONS(706), 1, + aux_sym_string_literal_token1, + STATE(1543), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3606), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53911] = 5, + ACTIONS(3928), 1, + anon_sym_fn, + ACTIONS(3930), 1, + anon_sym_extern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3926), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [53932] = 6, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3738), 1, - sym_crate, - ACTIONS(3750), 1, + ACTIONS(3758), 1, sym_identifier, - STATE(2191), 1, - sym_field_declaration, - STATE(2402), 1, - sym_visibility_modifier, + ACTIONS(3764), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1538), 2, + STATE(1763), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53725] = 4, - ACTIONS(3574), 1, - anon_sym_COLON_COLON, - ACTIONS(3927), 1, - anon_sym_BANG, + STATE(2182), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53955] = 4, + ACTIONS(3884), 1, + anon_sym_PLUS, + STATE(1541), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3932), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [53974] = 5, + ACTIONS(3937), 1, + anon_sym_fn, + ACTIONS(3939), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2572), 6, + STATE(1551), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3934), 4, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, anon_sym_unsafe, - anon_sym_extern, - [53744] = 8, + [53995] = 8, ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(3786), 1, + ACTIONS(3782), 1, anon_sym_const, - ACTIONS(3929), 1, + ACTIONS(3909), 1, sym_identifier, - ACTIONS(3931), 1, + ACTIONS(3911), 1, sym_metavariable, - STATE(1731), 1, + STATE(1644), 1, sym_lifetime, - STATE(1793), 1, + STATE(1765), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2020), 2, + STATE(2108), 2, sym_const_parameter, sym_optional_type_parameter, - [53771] = 6, - ACTIONS(3415), 1, - anon_sym_LPAREN, - ACTIONS(3421), 1, - anon_sym_BANG, - ACTIONS(3933), 1, - anon_sym_COLON_COLON, + [54022] = 9, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3864), 1, + anon_sym_LBRACE, + ACTIONS(3900), 1, + anon_sym_COLON, + ACTIONS(3902), 1, + anon_sym_LT, + STATE(447), 1, + sym_declaration_list, + STATE(1678), 1, + sym_type_parameters, + STATE(1824), 1, + sym_trait_bounds, + STATE(2308), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3413), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - [53794] = 8, + [54051] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3732), 1, + ACTIONS(3744), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3750), 1, sym_crate, - STATE(2092), 1, + STATE(2139), 1, sym_enum_variant, - STATE(2449), 1, + STATE(2405), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1048), 2, + STATE(1121), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53821] = 4, - ACTIONS(3473), 1, - anon_sym_trait, - ACTIONS(3935), 1, - anon_sym_impl, + [54078] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(3744), 1, + sym_identifier, + ACTIONS(3750), 1, + sym_crate, + STATE(2215), 1, + sym_enum_variant, + STATE(2405), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2572), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53840] = 5, - ACTIONS(3939), 1, - anon_sym_fn, - ACTIONS(3941), 1, - anon_sym_extern, + STATE(1554), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54105] = 8, + ACTIONS(798), 1, + anon_sym_DOT_DOT, + ACTIONS(3888), 1, + sym_identifier, + ACTIONS(3894), 1, + anon_sym_ref, + ACTIONS(3896), 1, + sym_mutable_specifier, + ACTIONS(3942), 1, + anon_sym_RBRACE, + ACTIONS(3944), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1525), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3937), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [53861] = 4, - ACTIONS(3943), 1, + STATE(1906), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [54132] = 4, + ACTIONS(3946), 1, anon_sym_PLUS, - STATE(1521), 1, + STATE(1550), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3925), 6, + ACTIONS(3882), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [53880] = 4, - ACTIONS(3945), 1, - anon_sym_PLUS, - STATE(1521), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3925), 6, - anon_sym_SEMI, - anon_sym_LBRACE, + [54151] = 9, + ACTIONS(3796), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [53899] = 8, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(3786), 1, - anon_sym_const, - ACTIONS(3876), 1, - sym_identifier, - ACTIONS(3878), 1, - sym_metavariable, - STATE(1727), 1, - sym_lifetime, - STATE(1757), 1, - sym_constrained_type_parameter, + ACTIONS(3830), 1, + anon_sym_LBRACE, + ACTIONS(3900), 1, + anon_sym_COLON, + ACTIONS(3902), 1, + anon_sym_LT, + STATE(814), 1, + sym_declaration_list, + STATE(1670), 1, + sym_type_parameters, + STATE(1782), 1, + sym_trait_bounds, + STATE(2201), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2116), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53926] = 4, - ACTIONS(2718), 1, + [54180] = 4, + ACTIONS(3528), 1, anon_sym_COLON_COLON, - ACTIONS(3947), 1, + ACTIONS(3646), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2572), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53945] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3949), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53960] = 3, - ACTIONS(3951), 1, - sym_identifier, + [54199] = 4, + ACTIONS(3459), 1, + anon_sym_trait, + ACTIONS(3948), 1, + anon_sym_impl, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3768), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53976] = 8, - ACTIONS(3953), 1, + [54218] = 8, + ACTIONS(3950), 1, anon_sym_LPAREN, ACTIONS(3955), 1, anon_sym_LBRACE, - ACTIONS(3957), 1, - anon_sym_RBRACE, - ACTIONS(3959), 1, + ACTIONS(3958), 1, anon_sym_LBRACK, - STATE(1526), 1, + STATE(1561), 1, aux_sym_macro_definition_repeat1, - STATE(2137), 1, - sym_macro_rule, - STATE(2416), 1, + STATE(2430), 1, sym_token_tree_pattern, + STATE(2477), 1, + sym_macro_rule, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54002] = 8, - ACTIONS(3953), 1, - anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(3953), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [54245] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(3744), 1, + sym_identifier, + ACTIONS(3750), 1, + sym_crate, + STATE(2102), 1, + sym_enum_variant, + STATE(2405), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1121), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54272] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3913), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3959), 1, - anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54286] = 8, ACTIONS(3961), 1, + anon_sym_LPAREN, + ACTIONS(3963), 1, + anon_sym_LBRACE, + ACTIONS(3965), 1, anon_sym_RBRACE, - STATE(1526), 1, + ACTIONS(3967), 1, + anon_sym_LBRACK, + STATE(1561), 1, aux_sym_macro_definition_repeat1, - STATE(2139), 1, + STATE(2142), 1, sym_macro_rule, - STATE(2416), 1, + STATE(2430), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54028] = 8, - ACTIONS(3953), 1, + [54312] = 8, + ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(3963), 1, anon_sym_LBRACE, - ACTIONS(3959), 1, + ACTIONS(3967), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3969), 1, anon_sym_RPAREN, - STATE(1526), 1, + STATE(1589), 1, aux_sym_macro_definition_repeat1, - STATE(2143), 1, + STATE(2249), 1, sym_macro_rule, - STATE(2416), 1, + STATE(2430), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54054] = 3, - ACTIONS(3965), 1, - anon_sym_trait, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2572), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54070] = 6, - ACTIONS(3774), 1, + [54338] = 8, + ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3776), 1, + ACTIONS(3963), 1, anon_sym_LBRACE, - ACTIONS(3969), 1, - anon_sym_EQ, + ACTIONS(3967), 1, + anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_RPAREN, + STATE(1588), 1, + aux_sym_macro_definition_repeat1, + STATE(2253), 1, + sym_macro_rule, + STATE(2430), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3967), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1924), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [54092] = 8, - ACTIONS(3971), 1, + [54364] = 8, + ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3973), 1, + ACTIONS(3963), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(3967), 1, anon_sym_LBRACK, - ACTIONS(3977), 1, - anon_sym_RBRACK, - ACTIONS(3979), 1, - anon_sym_EQ, - ACTIONS(3981), 1, - anon_sym_COLON_COLON, - STATE(2315), 1, - sym_delim_token_tree, + ACTIONS(3973), 1, + anon_sym_RBRACE, + STATE(1564), 1, + aux_sym_macro_definition_repeat1, + STATE(2317), 1, + sym_macro_rule, + STATE(2430), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54118] = 3, - ACTIONS(3983), 1, - sym_identifier, + [54390] = 3, + ACTIONS(3975), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3768), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54134] = 8, - ACTIONS(3971), 1, - anon_sym_LPAREN, - ACTIONS(3973), 1, - anon_sym_LBRACE, - ACTIONS(3975), 1, - anon_sym_LBRACK, - ACTIONS(3977), 1, - anon_sym_RBRACK, - ACTIONS(3979), 1, - anon_sym_EQ, - ACTIONS(3985), 1, - anon_sym_COLON_COLON, - STATE(2315), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54160] = 8, - ACTIONS(3953), 1, - anon_sym_LPAREN, - ACTIONS(3955), 1, - anon_sym_LBRACE, - ACTIONS(3959), 1, - anon_sym_LBRACK, - ACTIONS(3987), 1, - anon_sym_RPAREN, - STATE(1526), 1, - aux_sym_macro_definition_repeat1, - STATE(2134), 1, - sym_macro_rule, - STATE(2416), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54186] = 8, - ACTIONS(3971), 1, + [54406] = 8, + ACTIONS(3792), 1, anon_sym_LPAREN, - ACTIONS(3973), 1, + ACTIONS(3794), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, - anon_sym_LBRACK, + ACTIONS(3796), 1, + anon_sym_where, ACTIONS(3977), 1, - anon_sym_RBRACK, - ACTIONS(3979), 1, - anon_sym_EQ, - ACTIONS(3989), 1, - anon_sym_COLON_COLON, - STATE(2315), 1, - sym_delim_token_tree, + anon_sym_SEMI, + STATE(416), 1, + sym_field_declaration_list, + STATE(1869), 1, + sym_ordered_field_declaration_list, + STATE(2150), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54212] = 8, - ACTIONS(3574), 1, - anon_sym_COLON_COLON, - ACTIONS(3971), 1, - anon_sym_LPAREN, - ACTIONS(3973), 1, - anon_sym_LBRACE, - ACTIONS(3975), 1, - anon_sym_LBRACK, - ACTIONS(3991), 1, - anon_sym_RBRACK, - ACTIONS(3993), 1, - anon_sym_EQ, - STATE(2317), 1, - sym_delim_token_tree, + [54432] = 3, + ACTIONS(3528), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54238] = 8, - ACTIONS(3774), 1, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54448] = 8, + ACTIONS(3792), 1, anon_sym_LPAREN, - ACTIONS(3778), 1, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3794), 1, + ACTIONS(3802), 1, anon_sym_LBRACE, - ACTIONS(3995), 1, + ACTIONS(3979), 1, anon_sym_SEMI, - STATE(313), 1, + STATE(780), 1, sym_field_declaration_list, - STATE(1931), 1, + STATE(2085), 1, sym_ordered_field_declaration_list, - STATE(2250), 1, + STATE(2198), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54264] = 8, - ACTIONS(3953), 1, + [54474] = 8, + ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(3963), 1, anon_sym_LBRACE, - ACTIONS(3959), 1, + ACTIONS(3967), 1, anon_sym_LBRACK, - ACTIONS(3997), 1, + ACTIONS(3981), 1, anon_sym_RBRACE, - STATE(1526), 1, + STATE(1602), 1, aux_sym_macro_definition_repeat1, - STATE(2140), 1, + STATE(2218), 1, sym_macro_rule, - STATE(2416), 1, + STATE(2430), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54290] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3999), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54304] = 8, - ACTIONS(3774), 1, + [54500] = 8, + ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3776), 1, + ACTIONS(3963), 1, anon_sym_LBRACE, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(4001), 1, - anon_sym_SEMI, - STATE(949), 1, - sym_field_declaration_list, - STATE(2108), 1, - sym_ordered_field_declaration_list, - STATE(2151), 1, - sym_where_clause, + ACTIONS(3967), 1, + anon_sym_LBRACK, + ACTIONS(3983), 1, + anon_sym_RPAREN, + STATE(1608), 1, + aux_sym_macro_definition_repeat1, + STATE(2278), 1, + sym_macro_rule, + STATE(2430), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54330] = 7, + [54526] = 7, ACTIONS(798), 1, anon_sym_DOT_DOT, - ACTIONS(3884), 1, + ACTIONS(3888), 1, sym_identifier, - ACTIONS(3890), 1, + ACTIONS(3894), 1, anon_sym_ref, - ACTIONS(3892), 1, + ACTIONS(3896), 1, sym_mutable_specifier, - ACTIONS(4003), 1, + ACTIONS(3985), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2310), 2, + STATE(2135), 2, sym_field_pattern, sym_remaining_field_pattern, - [54354] = 2, + [54550] = 8, + ACTIONS(3961), 1, + anon_sym_LPAREN, + ACTIONS(3963), 1, + anon_sym_LBRACE, + ACTIONS(3967), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_RBRACE, + STATE(1606), 1, + aux_sym_macro_definition_repeat1, + STATE(2256), 1, + sym_macro_rule, + STATE(2430), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3913), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54368] = 2, + [54576] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3913), 7, + ACTIONS(3989), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -116884,83 +117286,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54382] = 2, + [54590] = 8, + ACTIONS(3961), 1, + anon_sym_LPAREN, + ACTIONS(3963), 1, + anon_sym_LBRACE, + ACTIONS(3967), 1, + anon_sym_LBRACK, + ACTIONS(3991), 1, + anon_sym_RPAREN, + STATE(1596), 1, + aux_sym_macro_definition_repeat1, + STATE(2245), 1, + sym_macro_rule, + STATE(2430), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3913), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54396] = 2, + [54616] = 3, + ACTIONS(3993), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3913), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54410] = 8, - ACTIONS(3774), 1, + ACTIONS(3778), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54632] = 7, + ACTIONS(798), 1, + anon_sym_DOT_DOT, + ACTIONS(3888), 1, + sym_identifier, + ACTIONS(3894), 1, + anon_sym_ref, + ACTIONS(3896), 1, + sym_mutable_specifier, + ACTIONS(3995), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2135), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [54656] = 8, + ACTIONS(3580), 1, + anon_sym_COLON_COLON, + ACTIONS(3997), 1, anon_sym_LPAREN, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(3794), 1, + ACTIONS(3999), 1, anon_sym_LBRACE, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4003), 1, + anon_sym_RBRACK, ACTIONS(4005), 1, - anon_sym_SEMI, - STATE(414), 1, - sym_field_declaration_list, - STATE(1860), 1, - sym_ordered_field_declaration_list, - STATE(2122), 1, - sym_where_clause, + anon_sym_EQ, + STATE(2328), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54436] = 2, + [54682] = 8, + ACTIONS(3997), 1, + anon_sym_LPAREN, + ACTIONS(3999), 1, + anon_sym_LBRACE, + ACTIONS(4001), 1, + anon_sym_LBRACK, + ACTIONS(4007), 1, + anon_sym_RBRACK, + ACTIONS(4009), 1, + anon_sym_EQ, + ACTIONS(4011), 1, + anon_sym_COLON_COLON, + STATE(2443), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3913), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54450] = 8, - ACTIONS(3953), 1, + [54708] = 8, + ACTIONS(3997), 1, anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(3999), 1, anon_sym_LBRACE, - ACTIONS(3959), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, ACTIONS(4007), 1, - anon_sym_RBRACE, - STATE(1559), 1, - aux_sym_macro_definition_repeat1, - STATE(2199), 1, - sym_macro_rule, - STATE(2416), 1, - sym_token_tree_pattern, + anon_sym_RBRACK, + ACTIONS(4009), 1, + anon_sym_EQ, + ACTIONS(4013), 1, + anon_sym_COLON_COLON, + STATE(2443), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54734] = 6, + ACTIONS(3792), 1, + anon_sym_LPAREN, + ACTIONS(3802), 1, + anon_sym_LBRACE, + ACTIONS(4017), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54476] = 2, + ACTIONS(4015), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1917), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [54756] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4009), 7, + ACTIONS(3913), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -116968,218 +117416,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54490] = 8, - ACTIONS(3953), 1, - anon_sym_LPAREN, - ACTIONS(3955), 1, - anon_sym_LBRACE, - ACTIONS(3959), 1, - anon_sym_LBRACK, - ACTIONS(4011), 1, - anon_sym_RPAREN, - STATE(1560), 1, - aux_sym_macro_definition_repeat1, - STATE(2234), 1, - sym_macro_rule, - STATE(2416), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54516] = 3, - ACTIONS(4013), 1, - anon_sym_trait, + [54770] = 3, + ACTIONS(4019), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2572), 6, + ACTIONS(3778), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54532] = 8, - ACTIONS(3953), 1, + [54786] = 8, + ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(3963), 1, anon_sym_LBRACE, - ACTIONS(3959), 1, + ACTIONS(3967), 1, anon_sym_LBRACK, - ACTIONS(4015), 1, + ACTIONS(4021), 1, anon_sym_RBRACE, - STATE(1558), 1, + STATE(1601), 1, aux_sym_macro_definition_repeat1, - STATE(2204), 1, + STATE(2214), 1, sym_macro_rule, - STATE(2416), 1, + STATE(2430), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54558] = 7, - ACTIONS(798), 1, - anon_sym_DOT_DOT, - ACTIONS(3884), 1, - sym_identifier, - ACTIONS(3890), 1, - anon_sym_ref, - ACTIONS(3892), 1, - sym_mutable_specifier, - ACTIONS(4017), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2310), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54582] = 7, + [54812] = 7, ACTIONS(798), 1, anon_sym_DOT_DOT, - ACTIONS(3884), 1, + ACTIONS(3888), 1, sym_identifier, - ACTIONS(3890), 1, + ACTIONS(3894), 1, anon_sym_ref, - ACTIONS(3892), 1, + ACTIONS(3896), 1, sym_mutable_specifier, - ACTIONS(4019), 1, + ACTIONS(4023), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2310), 2, + STATE(2135), 2, sym_field_pattern, sym_remaining_field_pattern, - [54606] = 8, - ACTIONS(3953), 1, + [54836] = 8, + ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(3963), 1, anon_sym_LBRACE, - ACTIONS(3959), 1, + ACTIONS(3967), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, + ACTIONS(4025), 1, anon_sym_RPAREN, - STATE(1526), 1, + STATE(1561), 1, aux_sym_macro_definition_repeat1, - STATE(2209), 1, + STATE(2228), 1, sym_macro_rule, - STATE(2416), 1, + STATE(2430), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54632] = 8, - ACTIONS(3953), 1, + [54862] = 8, + ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(3963), 1, anon_sym_LBRACE, - ACTIONS(3959), 1, + ACTIONS(3967), 1, anon_sym_LBRACK, - ACTIONS(4023), 1, + ACTIONS(4027), 1, anon_sym_RPAREN, - STATE(1526), 1, + STATE(1561), 1, aux_sym_macro_definition_repeat1, - STATE(2120), 1, + STATE(2226), 1, sym_macro_rule, - STATE(2416), 1, + STATE(2430), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54658] = 8, - ACTIONS(3953), 1, - anon_sym_LPAREN, - ACTIONS(3955), 1, - anon_sym_LBRACE, - ACTIONS(3959), 1, - anon_sym_LBRACK, - ACTIONS(4025), 1, - anon_sym_RPAREN, - STATE(1587), 1, - aux_sym_macro_definition_repeat1, - STATE(2233), 1, - sym_macro_rule, - STATE(2416), 1, - sym_token_tree_pattern, + [54888] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54684] = 7, + ACTIONS(3913), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54902] = 7, ACTIONS(798), 1, anon_sym_DOT_DOT, - ACTIONS(3884), 1, + ACTIONS(3888), 1, sym_identifier, - ACTIONS(3890), 1, + ACTIONS(3894), 1, anon_sym_ref, - ACTIONS(3892), 1, + ACTIONS(3896), 1, sym_mutable_specifier, - ACTIONS(4027), 1, + ACTIONS(4029), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2310), 2, + STATE(2135), 2, sym_field_pattern, sym_remaining_field_pattern, - [54708] = 8, - ACTIONS(3953), 1, - anon_sym_LPAREN, - ACTIONS(3955), 1, + [54926] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3913), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3959), 1, - anon_sym_LBRACK, - ACTIONS(4029), 1, - anon_sym_RPAREN, - STATE(1588), 1, - aux_sym_macro_definition_repeat1, - STATE(2237), 1, - sym_macro_rule, - STATE(2416), 1, - sym_token_tree_pattern, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54940] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54734] = 8, - ACTIONS(3953), 1, - anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(3913), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3959), 1, - anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54954] = 3, ACTIONS(4031), 1, - anon_sym_RBRACE, - STATE(1570), 1, - aux_sym_macro_definition_repeat1, - STATE(2239), 1, - sym_macro_rule, - STATE(2416), 1, - sym_token_tree_pattern, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3778), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54970] = 3, + ACTIONS(2690), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54760] = 8, - ACTIONS(3953), 1, + ACTIONS(2592), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54986] = 8, + ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(3963), 1, anon_sym_LBRACE, - ACTIONS(3959), 1, + ACTIONS(3967), 1, anon_sym_LBRACK, ACTIONS(4033), 1, - anon_sym_RBRACE, - STATE(1526), 1, + anon_sym_RPAREN, + STATE(1561), 1, aux_sym_macro_definition_repeat1, - STATE(2133), 1, + STATE(2152), 1, sym_macro_rule, - STATE(2416), 1, + STATE(2430), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54786] = 6, - ACTIONS(3774), 1, + [55012] = 6, + ACTIONS(3792), 1, anon_sym_LPAREN, - ACTIONS(3776), 1, + ACTIONS(3802), 1, anon_sym_LBRACE, ACTIONS(4037), 1, anon_sym_EQ, @@ -117189,2033 +117610,2081 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4035), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(2118), 2, + STATE(2110), 2, sym_field_declaration_list, sym_ordered_field_declaration_list, - [54808] = 8, - ACTIONS(3953), 1, + [55034] = 8, + ACTIONS(3997), 1, anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(3999), 1, anon_sym_LBRACE, - ACTIONS(3959), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, + ACTIONS(4007), 1, + anon_sym_RBRACK, + ACTIONS(4009), 1, + anon_sym_EQ, ACTIONS(4039), 1, - anon_sym_RPAREN, - STATE(1566), 1, - aux_sym_macro_definition_repeat1, - STATE(2255), 1, - sym_macro_rule, - STATE(2416), 1, - sym_token_tree_pattern, + anon_sym_COLON_COLON, + STATE(2443), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54834] = 7, - ACTIONS(3413), 1, - anon_sym_PIPE, - ACTIONS(3415), 1, + [55060] = 8, + ACTIONS(3792), 1, anon_sym_LPAREN, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(3421), 1, - anon_sym_BANG, + ACTIONS(3794), 1, + anon_sym_LBRACE, + ACTIONS(3796), 1, + anon_sym_where, ACTIONS(4041), 1, - anon_sym_COLON_COLON, + anon_sym_SEMI, + STATE(318), 1, + sym_field_declaration_list, + STATE(1941), 1, + sym_ordered_field_declaration_list, + STATE(2265), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [54858] = 3, + [55086] = 3, ACTIONS(4043), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3768), 6, + ACTIONS(3778), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54874] = 3, - ACTIONS(3532), 1, - anon_sym_COLON_COLON, + [55102] = 8, + ACTIONS(3961), 1, + anon_sym_LPAREN, + ACTIONS(3963), 1, + anon_sym_LBRACE, + ACTIONS(3967), 1, + anon_sym_LBRACK, + ACTIONS(4045), 1, + anon_sym_RBRACE, + STATE(1561), 1, + aux_sym_macro_definition_repeat1, + STATE(2151), 1, + sym_macro_rule, + STATE(2430), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2572), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54890] = 3, - ACTIONS(2718), 1, - anon_sym_COLON_COLON, + [55128] = 8, + ACTIONS(3961), 1, + anon_sym_LPAREN, + ACTIONS(3963), 1, + anon_sym_LBRACE, + ACTIONS(3967), 1, + anon_sym_LBRACK, + ACTIONS(4047), 1, + anon_sym_RBRACE, + STATE(1561), 1, + aux_sym_macro_definition_repeat1, + STATE(2149), 1, + sym_macro_rule, + STATE(2430), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2572), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54906] = 3, - ACTIONS(4045), 1, - sym_identifier, + [55154] = 3, + ACTIONS(4049), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3768), 6, + ACTIONS(2592), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54922] = 8, - ACTIONS(3953), 1, + [55170] = 8, + ACTIONS(3792), 1, anon_sym_LPAREN, - ACTIONS(3955), 1, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3802), 1, + anon_sym_LBRACE, + ACTIONS(4051), 1, + anon_sym_SEMI, + STATE(917), 1, + sym_field_declaration_list, + STATE(2120), 1, + sym_ordered_field_declaration_list, + STATE(2161), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55196] = 7, + ACTIONS(3423), 1, + anon_sym_PIPE, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3429), 1, + anon_sym_COLON, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(4053), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55220] = 8, + ACTIONS(3961), 1, + anon_sym_LPAREN, + ACTIONS(3963), 1, anon_sym_LBRACE, - ACTIONS(3959), 1, + ACTIONS(3967), 1, anon_sym_LBRACK, - ACTIONS(4047), 1, + ACTIONS(4055), 1, anon_sym_RBRACE, - STATE(1593), 1, + STATE(1561), 1, aux_sym_macro_definition_repeat1, - STATE(2302), 1, + STATE(2242), 1, sym_macro_rule, - STATE(2416), 1, + STATE(2430), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54948] = 8, - ACTIONS(3774), 1, - anon_sym_LPAREN, - ACTIONS(3776), 1, + [55246] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4057), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3778), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4049), 1, - anon_sym_SEMI, - STATE(897), 1, - sym_field_declaration_list, - STATE(2072), 1, - sym_ordered_field_declaration_list, - STATE(2186), 1, - sym_where_clause, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55260] = 8, + ACTIONS(3961), 1, + anon_sym_LPAREN, + ACTIONS(3963), 1, + anon_sym_LBRACE, + ACTIONS(3967), 1, + anon_sym_LBRACK, + ACTIONS(4059), 1, + anon_sym_RPAREN, + STATE(1561), 1, + aux_sym_macro_definition_repeat1, + STATE(2145), 1, + sym_macro_rule, + STATE(2430), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54974] = 7, - ACTIONS(3776), 1, - anon_sym_LBRACE, - ACTIONS(3778), 1, + [55286] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3780), 1, + ACTIONS(3798), 1, anon_sym_LT, - STATE(806), 1, - sym_field_declaration_list, - STATE(1754), 1, + ACTIONS(4061), 1, + anon_sym_LBRACE, + STATE(889), 1, + sym_enum_variant_list, + STATE(1761), 1, sym_type_parameters, - STATE(2128), 1, + STATE(2314), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54997] = 7, - ACTIONS(3778), 1, + [55309] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3850), 1, - anon_sym_LBRACE, - ACTIONS(4051), 1, + ACTIONS(4063), 1, anon_sym_SEMI, - ACTIONS(4053), 1, - anon_sym_PLUS, - STATE(379), 1, - sym_declaration_list, - STATE(2027), 1, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(4067), 1, + anon_sym_DASH_GT, + STATE(899), 1, + sym_block, + STATE(2056), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55020] = 4, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - ACTIONS(3856), 1, - anon_sym_for, + [55332] = 7, + ACTIONS(3900), 1, + anon_sym_COLON, + ACTIONS(3902), 1, + anon_sym_LT, + ACTIONS(4069), 1, + anon_sym_SEMI, + ACTIONS(4071), 1, + anon_sym_EQ, + STATE(1816), 1, + sym_type_parameters, + STATE(2364), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [55037] = 7, - ACTIONS(3778), 1, + [55355] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3850), 1, + ACTIONS(3864), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4055), 1, + ACTIONS(4073), 1, anon_sym_SEMI, - STATE(275), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + STATE(278), 1, sym_declaration_list, - STATE(2016), 1, + STATE(2039), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55060] = 7, - ACTIONS(3778), 1, + [55378] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3850), 1, + ACTIONS(3864), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4057), 1, + ACTIONS(4077), 1, anon_sym_SEMI, - STATE(272), 1, + STATE(275), 1, sym_declaration_list, - STATE(1910), 1, + STATE(2029), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55083] = 7, - ACTIONS(3778), 1, + [55401] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4059), 1, - anon_sym_SEMI, - ACTIONS(4061), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(4063), 1, + ACTIONS(4079), 1, + anon_sym_SEMI, + ACTIONS(4081), 1, anon_sym_DASH_GT, - STATE(279), 1, + STATE(856), 1, sym_block, - STATE(1868), 1, + STATE(2131), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55106] = 7, - ACTIONS(3872), 1, + [55424] = 7, + ACTIONS(2473), 1, + anon_sym_PLUS, + ACTIONS(3900), 1, anon_sym_COLON, - ACTIONS(3874), 1, - anon_sym_LT, - ACTIONS(4065), 1, - anon_sym_SEMI, - ACTIONS(4067), 1, - anon_sym_EQ, - STATE(1805), 1, - sym_type_parameters, - STATE(2429), 1, + ACTIONS(4083), 1, + anon_sym_COMMA, + ACTIONS(4085), 1, + anon_sym_GT, + STATE(1919), 1, + aux_sym_type_parameters_repeat1, + STATE(1921), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55129] = 7, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(3780), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_LBRACE, - STATE(388), 1, - sym_field_declaration_list, - STATE(1808), 1, - sym_type_parameters, - STATE(2308), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55152] = 5, - ACTIONS(4071), 1, + [55447] = 5, + ACTIONS(4089), 1, anon_sym_COLON, - ACTIONS(4073), 1, + ACTIONS(4091), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, + ACTIONS(3435), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4069), 2, + ACTIONS(4087), 2, anon_sym_RPAREN, anon_sym_COMMA, - [55171] = 4, - ACTIONS(4073), 1, + [55466] = 4, + ACTIONS(4091), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, + ACTIONS(3435), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2578), 3, + ACTIONS(2614), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [55188] = 7, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(3850), 1, + [55483] = 7, + ACTIONS(3794), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4075), 1, - anon_sym_SEMI, - STATE(269), 1, - sym_declaration_list, - STATE(2013), 1, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3798), 1, + anon_sym_LT, + STATE(391), 1, + sym_field_declaration_list, + STATE(1818), 1, + sym_type_parameters, + STATE(2290), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55211] = 7, - ACTIONS(3778), 1, + [55506] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3850), 1, + ACTIONS(3864), 1, anon_sym_LBRACE, - ACTIONS(3872), 1, + ACTIONS(3900), 1, anon_sym_COLON, - STATE(321), 1, + STATE(323), 1, sym_declaration_list, - STATE(1764), 1, + STATE(1766), 1, sym_trait_bounds, - STATE(2145), 1, + STATE(2255), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55234] = 7, - ACTIONS(3778), 1, + [55529] = 4, + ACTIONS(3524), 1, + anon_sym_COLON_COLON, + ACTIONS(3818), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2614), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4077), 1, + [55546] = 7, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4093), 1, anon_sym_SEMI, - ACTIONS(4079), 1, + ACTIONS(4095), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, - anon_sym_DASH_GT, - STATE(788), 1, + STATE(263), 1, sym_block, - STATE(2107), 1, + STATE(2017), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55257] = 7, - ACTIONS(3778), 1, + [55569] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3798), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4083), 1, + ACTIONS(4097), 1, anon_sym_SEMI, - STATE(820), 1, + STATE(841), 1, sym_declaration_list, - STATE(2101), 1, + STATE(2119), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55280] = 4, - ACTIONS(3508), 1, + [55592] = 6, + ACTIONS(3173), 1, anon_sym_COLON_COLON, - ACTIONS(3782), 1, - anon_sym_for, + ACTIONS(4083), 1, + anon_sym_COMMA, + ACTIONS(4085), 1, + anon_sym_GT, + STATE(1919), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2614), 2, anon_sym_PLUS, + anon_sym_as, + [55613] = 7, + ACTIONS(3796), 1, anon_sym_where, - [55297] = 7, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(3798), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4085), 1, + ACTIONS(4099), 1, anon_sym_SEMI, - STATE(841), 1, + STATE(909), 1, sym_declaration_list, - STATE(2099), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55320] = 7, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4061), 1, - anon_sym_LBRACE, - ACTIONS(4087), 1, - anon_sym_SEMI, - STATE(259), 1, - sym_block, - STATE(1994), 1, + STATE(2115), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55343] = 4, - ACTIONS(3508), 1, + [55636] = 4, + ACTIONS(3524), 1, anon_sym_COLON_COLON, - ACTIONS(3804), 1, + ACTIONS(3820), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 4, + ACTIONS(2614), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [55360] = 7, - ACTIONS(3778), 1, + [55653] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4061), 1, + ACTIONS(4095), 1, anon_sym_LBRACE, - ACTIONS(4089), 1, + ACTIONS(4101), 1, anon_sym_SEMI, - ACTIONS(4091), 1, + ACTIONS(4103), 1, anon_sym_DASH_GT, STATE(470), 1, sym_block, - STATE(1934), 1, + STATE(2047), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55383] = 4, - ACTIONS(3508), 1, + [55676] = 7, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3830), 1, + anon_sym_LBRACE, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4105), 1, + anon_sym_SEMI, + STATE(796), 1, + sym_declaration_list, + STATE(2096), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55699] = 4, + ACTIONS(3524), 1, anon_sym_COLON_COLON, - ACTIONS(3810), 1, + ACTIONS(3824), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 4, + ACTIONS(2614), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [55400] = 4, - ACTIONS(3508), 1, + [55716] = 4, + ACTIONS(3524), 1, anon_sym_COLON_COLON, - ACTIONS(3770), 1, + ACTIONS(3854), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 4, + ACTIONS(2614), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [55417] = 7, - ACTIONS(3778), 1, + [55733] = 7, + ACTIONS(3305), 1, + anon_sym_LBRACE, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(4107), 1, + sym_identifier, + ACTIONS(4109), 1, + anon_sym_STAR, + STATE(1996), 1, + sym_use_list, + STATE(2483), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55756] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4061), 1, + ACTIONS(4095), 1, anon_sym_LBRACE, - ACTIONS(4093), 1, + ACTIONS(4111), 1, anon_sym_SEMI, - ACTIONS(4095), 1, + ACTIONS(4113), 1, anon_sym_DASH_GT, - STATE(334), 1, + STATE(321), 1, sym_block, - STATE(2114), 1, + STATE(2126), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55440] = 4, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - ACTIONS(3820), 1, - anon_sym_for, + [55779] = 7, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3830), 1, + anon_sym_LBRACE, + ACTIONS(3900), 1, + anon_sym_COLON, + STATE(801), 1, + sym_declaration_list, + STATE(1780), 1, + sym_trait_bounds, + STATE(2189), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [55457] = 4, - ACTIONS(4097), 1, + [55802] = 4, + ACTIONS(4115), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, + ACTIONS(3435), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2578), 3, + ACTIONS(2614), 3, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_PLUS, - [55474] = 7, - ACTIONS(2480), 1, - anon_sym_PLUS, - ACTIONS(3872), 1, - anon_sym_COLON, - ACTIONS(4099), 1, - anon_sym_COMMA, - ACTIONS(4101), 1, - anon_sym_GT, - STATE(1906), 1, - aux_sym_type_parameters_repeat1, - STATE(1907), 1, - sym_trait_bounds, + [55819] = 7, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(4095), 1, + anon_sym_LBRACE, + ACTIONS(4117), 1, + anon_sym_SEMI, + ACTIONS(4119), 1, + anon_sym_DASH_GT, + STATE(336), 1, + sym_block, + STATE(2105), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55497] = 7, - ACTIONS(3778), 1, + [55842] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4061), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(4103), 1, + ACTIONS(4121), 1, anon_sym_SEMI, - ACTIONS(4105), 1, + ACTIONS(4123), 1, anon_sym_DASH_GT, - STATE(319), 1, + STATE(805), 1, sym_block, - STATE(2109), 1, + STATE(2087), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55520] = 7, - ACTIONS(3273), 1, + [55865] = 7, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(3427), 1, + ACTIONS(3437), 1, anon_sym_LT2, ACTIONS(4107), 1, sym_identifier, ACTIONS(4109), 1, anon_sym_STAR, - STATE(1976), 1, + STATE(1996), 1, sym_use_list, - STATE(2471), 1, + STATE(2493), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55543] = 7, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(3798), 1, - anon_sym_LBRACE, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4111), 1, - anon_sym_SEMI, - STATE(866), 1, - sym_declaration_list, - STATE(2078), 1, - sym_where_clause, + [55888] = 4, + ACTIONS(3524), 1, + anon_sym_COLON_COLON, + ACTIONS(3806), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55566] = 6, - ACTIONS(3171), 1, + ACTIONS(2614), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [55905] = 6, + ACTIONS(4039), 1, anon_sym_COLON_COLON, - ACTIONS(4099), 1, - anon_sym_COMMA, - ACTIONS(4101), 1, - anon_sym_GT, - STATE(1906), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4125), 1, + anon_sym_LPAREN, + ACTIONS(4129), 1, + anon_sym_EQ, + STATE(2187), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, - anon_sym_PLUS, - anon_sym_as, - [55587] = 7, - ACTIONS(3273), 1, + ACTIONS(4127), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55926] = 7, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(4095), 1, anon_sym_LBRACE, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(4107), 1, - sym_identifier, - ACTIONS(4109), 1, - anon_sym_STAR, - STATE(1976), 1, - sym_use_list, - STATE(2481), 1, - sym_type_arguments, + ACTIONS(4131), 1, + anon_sym_SEMI, + ACTIONS(4133), 1, + anon_sym_DASH_GT, + STATE(273), 1, + sym_block, + STATE(1965), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55610] = 6, - ACTIONS(3981), 1, + [55949] = 6, + ACTIONS(4013), 1, anon_sym_COLON_COLON, - ACTIONS(4113), 1, + ACTIONS(4125), 1, anon_sym_LPAREN, - ACTIONS(4117), 1, + ACTIONS(4129), 1, anon_sym_EQ, - STATE(2166), 1, + STATE(2187), 1, sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4115), 2, + ACTIONS(4127), 2, anon_sym_RPAREN, anon_sym_COMMA, - [55631] = 7, - ACTIONS(3778), 1, + [55970] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3798), 1, + ACTIONS(3864), 1, anon_sym_LBRACE, - ACTIONS(3872), 1, - anon_sym_COLON, - STATE(883), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4135), 1, + anon_sym_SEMI, + STATE(285), 1, sym_declaration_list, - STATE(1774), 1, - sym_trait_bounds, - STATE(2177), 1, + STATE(1924), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55654] = 6, - ACTIONS(3985), 1, - anon_sym_COLON_COLON, - ACTIONS(4113), 1, - anon_sym_LPAREN, - ACTIONS(4117), 1, - anon_sym_EQ, - STATE(2166), 1, - sym_meta_arguments, + [55993] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4115), 2, + ACTIONS(2746), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3598), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4137), 2, anon_sym_RPAREN, anon_sym_COMMA, - [55675] = 6, - ACTIONS(3989), 1, + [56010] = 6, + ACTIONS(4011), 1, anon_sym_COLON_COLON, - ACTIONS(4113), 1, + ACTIONS(4125), 1, anon_sym_LPAREN, - ACTIONS(4117), 1, + ACTIONS(4129), 1, anon_sym_EQ, - STATE(2166), 1, + STATE(2187), 1, sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4115), 2, + ACTIONS(4127), 2, anon_sym_RPAREN, anon_sym_COMMA, - [55696] = 7, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(4079), 1, - anon_sym_LBRACE, - ACTIONS(4119), 1, - anon_sym_SEMI, - ACTIONS(4121), 1, - anon_sym_DASH_GT, - STATE(889), 1, - sym_block, - STATE(2075), 1, - sym_where_clause, + [56031] = 7, + ACTIONS(3900), 1, + anon_sym_COLON, + ACTIONS(4140), 1, + anon_sym_COMMA, + ACTIONS(4142), 1, + anon_sym_GT, + STATE(1919), 1, + aux_sym_type_parameters_repeat1, + STATE(1921), 1, + sym_trait_bounds, + STATE(1989), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55719] = 6, - ACTIONS(3574), 1, + [56054] = 6, + ACTIONS(3580), 1, anon_sym_COLON_COLON, - ACTIONS(4113), 1, - anon_sym_LPAREN, ACTIONS(4125), 1, + anon_sym_LPAREN, + ACTIONS(4146), 1, anon_sym_EQ, - STATE(2169), 1, + STATE(2192), 1, sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4123), 2, + ACTIONS(4144), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56075] = 5, + ACTIONS(4150), 1, + anon_sym_COLON, + ACTIONS(4152), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4148), 2, anon_sym_RPAREN, anon_sym_COMMA, - [55740] = 7, - ACTIONS(3778), 1, + [56094] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3850), 1, + ACTIONS(3798), 1, + anon_sym_LT, + ACTIONS(3802), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, + STATE(879), 1, + sym_field_declaration_list, + STATE(1770), 1, + sym_type_parameters, + STATE(2140), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56117] = 7, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3864), 1, + anon_sym_LBRACE, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4127), 1, + ACTIONS(4154), 1, anon_sym_SEMI, - STATE(351), 1, + STATE(463), 1, sym_declaration_list, - STATE(2044), 1, + STATE(1967), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55763] = 7, - ACTIONS(3872), 1, - anon_sym_COLON, - ACTIONS(4129), 1, - anon_sym_COMMA, - ACTIONS(4131), 1, - anon_sym_GT, - STATE(1906), 1, - aux_sym_type_parameters_repeat1, - STATE(1907), 1, - sym_trait_bounds, - STATE(1981), 1, - aux_sym_for_lifetimes_repeat1, + [56140] = 7, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4156), 1, + anon_sym_SEMI, + STATE(827), 1, + sym_block, + STATE(2071), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55786] = 7, - ACTIONS(3778), 1, + [56163] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3850), 1, + ACTIONS(3864), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4133), 1, + ACTIONS(4158), 1, anon_sym_SEMI, - STATE(461), 1, + STATE(354), 1, sym_declaration_list, - STATE(1957), 1, + STATE(2073), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55809] = 7, - ACTIONS(3778), 1, + [56186] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4061), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4135), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4160), 1, anon_sym_SEMI, - ACTIONS(4137), 1, - anon_sym_DASH_GT, - STATE(273), 1, + STATE(834), 1, + sym_declaration_list, + STATE(2070), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56209] = 7, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4095), 1, + anon_sym_LBRACE, + ACTIONS(4162), 1, + anon_sym_SEMI, + STATE(407), 1, sym_block, - STATE(1955), 1, + STATE(1895), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55832] = 7, - ACTIONS(3536), 1, + [56232] = 7, + ACTIONS(3538), 1, anon_sym_EQ, - ACTIONS(3872), 1, - anon_sym_COLON, - ACTIONS(4139), 1, + ACTIONS(3540), 1, anon_sym_COMMA, - ACTIONS(4141), 1, + ACTIONS(3542), 1, anon_sym_GT, - STATE(1901), 1, + ACTIONS(3900), 1, + anon_sym_COLON, + STATE(1914), 1, sym_trait_bounds, - STATE(2089), 1, + STATE(1915), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55855] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2728), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3610), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4143), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [55872] = 7, - ACTIONS(3778), 1, + sym_block_comment, + sym_line_comment, + [56255] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4061), 1, + ACTIONS(3864), 1, anon_sym_LBRACE, - ACTIONS(4146), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4164), 1, anon_sym_SEMI, - STATE(406), 1, - sym_block, - STATE(1887), 1, + STATE(458), 1, + sym_declaration_list, + STATE(1951), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55895] = 7, - ACTIONS(3778), 1, + [56278] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3850), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4148), 1, + ACTIONS(4166), 1, anon_sym_SEMI, - STATE(457), 1, + STATE(836), 1, sym_declaration_list, - STATE(1942), 1, + STATE(2069), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55918] = 7, - ACTIONS(3536), 1, - anon_sym_EQ, - ACTIONS(3538), 1, - anon_sym_COMMA, - ACTIONS(3540), 1, - anon_sym_GT, - ACTIONS(3872), 1, - anon_sym_COLON, - STATE(1901), 1, - sym_trait_bounds, - STATE(1905), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55941] = 4, - ACTIONS(4143), 1, + [56301] = 4, + ACTIONS(4137), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3610), 2, + ACTIONS(3598), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(2728), 3, + ACTIONS(2746), 3, anon_sym_SEMI, anon_sym_PLUS, anon_sym_DASH_GT, - [55958] = 4, - ACTIONS(4150), 1, + [56318] = 4, + ACTIONS(4168), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, + ACTIONS(3435), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2578), 3, + ACTIONS(2614), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [55975] = 5, - ACTIONS(4071), 1, + [56335] = 5, + ACTIONS(4089), 1, anon_sym_COLON, - ACTIONS(4150), 1, + ACTIONS(4168), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, + ACTIONS(3435), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4069), 2, + ACTIONS(4087), 2, anon_sym_RPAREN, anon_sym_COMMA, - [55994] = 7, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(4053), 1, + [56354] = 4, + ACTIONS(3524), 1, + anon_sym_COLON_COLON, + ACTIONS(3834), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2614), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4079), 1, + anon_sym_where, + [56371] = 7, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4152), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4170), 1, anon_sym_SEMI, - STATE(925), 1, - sym_block, - STATE(2057), 1, + STATE(855), 1, + sym_declaration_list, + STATE(2065), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56017] = 4, - ACTIONS(4154), 1, + [56394] = 4, + ACTIONS(4172), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3684), 2, + ACTIONS(3676), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(2636), 3, + ACTIONS(2676), 3, anon_sym_SEMI, anon_sym_PLUS, anon_sym_DASH_GT, - [56034] = 5, - ACTIONS(4159), 1, - anon_sym_COLON, - ACTIONS(4161), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3425), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4157), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56053] = 7, - ACTIONS(3778), 1, + [56411] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3798), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4163), 1, + ACTIONS(4175), 1, anon_sym_SEMI, - STATE(939), 1, + STATE(898), 1, sym_declaration_list, - STATE(2056), 1, + STATE(2121), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56076] = 7, - ACTIONS(3778), 1, + [56434] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3850), 1, + ACTIONS(3864), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4165), 1, + ACTIONS(4177), 1, anon_sym_SEMI, - STATE(342), 1, + STATE(344), 1, sym_declaration_list, - STATE(2082), 1, + STATE(2088), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56099] = 7, - ACTIONS(3778), 1, + [56457] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3850), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4167), 1, + ACTIONS(4179), 1, anon_sym_SEMI, - STATE(346), 1, + STATE(861), 1, sym_declaration_list, - STATE(2079), 1, + STATE(2063), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56122] = 7, - ACTIONS(3778), 1, + [56480] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3798), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4169), 1, + ACTIONS(4181), 1, anon_sym_SEMI, - STATE(943), 1, - sym_declaration_list, - STATE(2055), 1, + ACTIONS(4183), 1, + anon_sym_DASH_GT, + STATE(869), 1, + sym_block, + STATE(2059), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56145] = 7, - ACTIONS(3778), 1, + [56503] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3798), 1, + ACTIONS(3864), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4171), 1, - anon_sym_SEMI, - STATE(973), 1, + ACTIONS(3900), 1, + anon_sym_COLON, + STATE(358), 1, sym_declaration_list, - STATE(2047), 1, + STATE(1827), 1, + sym_trait_bounds, + STATE(2285), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56168] = 4, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - ACTIONS(3862), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [56185] = 7, - ACTIONS(3778), 1, + [56526] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3798), 1, + ACTIONS(3864), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4173), 1, + ACTIONS(4185), 1, anon_sym_SEMI, - STATE(989), 1, + STATE(348), 1, sym_declaration_list, - STATE(2046), 1, + STATE(2084), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56208] = 7, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(4079), 1, - anon_sym_LBRACE, - ACTIONS(4175), 1, - anon_sym_SEMI, - ACTIONS(4177), 1, - anon_sym_DASH_GT, - STATE(1006), 1, - sym_block, - STATE(2045), 1, - sym_where_clause, + [56549] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56231] = 7, - ACTIONS(3778), 1, + ACTIONS(3676), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2676), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [56564] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3780), 1, - anon_sym_LT, - ACTIONS(4179), 1, + ACTIONS(3864), 1, anon_sym_LBRACE, - STATE(845), 1, - sym_enum_variant_list, - STATE(1756), 1, - sym_type_parameters, - STATE(2123), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4187), 1, + anon_sym_SEMI, + STATE(405), 1, + sym_declaration_list, + STATE(1961), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56254] = 7, - ACTIONS(3778), 1, + [56587] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3798), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(3872), 1, + ACTIONS(3900), 1, anon_sym_COLON, - STATE(1034), 1, + STATE(895), 1, sym_declaration_list, - STATE(1791), 1, + STATE(1796), 1, sym_trait_bounds, - STATE(2225), 1, + STATE(2237), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56277] = 7, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(3850), 1, - anon_sym_LBRACE, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4181), 1, - anon_sym_SEMI, - STATE(400), 1, - sym_declaration_list, - STATE(1954), 1, - sym_where_clause, + [56610] = 7, + ACTIONS(3538), 1, + anon_sym_EQ, + ACTIONS(3900), 1, + anon_sym_COLON, + ACTIONS(4189), 1, + anon_sym_COMMA, + ACTIONS(4191), 1, + anon_sym_GT, + STATE(1914), 1, + sym_trait_bounds, + STATE(2101), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56300] = 7, - ACTIONS(3778), 1, + [56633] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4079), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4183), 1, - anon_sym_SEMI, - ACTIONS(4185), 1, - anon_sym_DASH_GT, - STATE(1033), 1, - sym_block, - STATE(2042), 1, + ACTIONS(3900), 1, + anon_sym_COLON, + STATE(781), 1, + sym_declaration_list, + STATE(1767), 1, + sym_trait_bounds, + STATE(2147), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56323] = 7, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(3780), 1, - anon_sym_LT, - ACTIONS(4187), 1, - anon_sym_LBRACE, - STATE(456), 1, - sym_enum_variant_list, - STATE(1795), 1, - sym_type_parameters, - STATE(2249), 1, - sym_where_clause, + [56656] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56346] = 7, - ACTIONS(3778), 1, + ACTIONS(3598), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2746), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [56671] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3850), 1, + ACTIONS(3864), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4189), 1, + ACTIONS(4193), 1, anon_sym_SEMI, - STATE(377), 1, + STATE(432), 1, sym_declaration_list, - STATE(2028), 1, + STATE(1920), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56369] = 3, + [56694] = 4, + ACTIONS(3524), 1, + anon_sym_COLON_COLON, + ACTIONS(3874), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3684), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2636), 4, - anon_sym_RPAREN, + ACTIONS(2614), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [56384] = 7, - ACTIONS(3778), 1, anon_sym_where, - ACTIONS(3780), 1, + [56711] = 6, + ACTIONS(798), 1, + anon_sym_DOT_DOT, + ACTIONS(3888), 1, + sym_identifier, + ACTIONS(3894), 1, + anon_sym_ref, + ACTIONS(3896), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2135), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [56732] = 7, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3798), 1, anon_sym_LT, - ACTIONS(4187), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, STATE(277), 1, sym_enum_variant_list, - STATE(1797), 1, + STATE(1801), 1, sym_type_parameters, - STATE(2259), 1, + STATE(2269), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56407] = 7, - ACTIONS(3778), 1, + [56755] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3798), 1, + ACTIONS(3864), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4191), 1, - anon_sym_SEMI, - STATE(871), 1, + ACTIONS(3900), 1, + anon_sym_COLON, + STATE(427), 1, sym_declaration_list, - STATE(2115), 1, + STATE(1842), 1, + sym_trait_bounds, + STATE(2206), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56430] = 7, - ACTIONS(3778), 1, + [56778] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3850), 1, - anon_sym_LBRACE, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4193), 1, + ACTIONS(4095), 1, + anon_sym_LBRACE, + ACTIONS(4197), 1, anon_sym_SEMI, - STATE(430), 1, - sym_declaration_list, - STATE(1911), 1, + STATE(388), 1, + sym_block, + STATE(1962), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56453] = 4, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - ACTIONS(3802), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 4, - anon_sym_SEMI, + [56801] = 7, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(4065), 1, anon_sym_LBRACE, + ACTIONS(4075), 1, anon_sym_PLUS, - anon_sym_where, - [56470] = 3, + ACTIONS(4199), 1, + anon_sym_SEMI, + STATE(911), 1, + sym_block, + STATE(2053), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3610), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2728), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [56485] = 7, - ACTIONS(3778), 1, + [56824] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4061), 1, + ACTIONS(4095), 1, anon_sym_LBRACE, - ACTIONS(4195), 1, + ACTIONS(4201), 1, anon_sym_SEMI, - STATE(393), 1, + STATE(394), 1, sym_block, - STATE(1908), 1, + STATE(1923), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56508] = 7, - ACTIONS(3778), 1, + [56847] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3850), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4095), 1, anon_sym_LBRACE, - ACTIONS(3872), 1, - anon_sym_COLON, - STATE(425), 1, - sym_declaration_list, - STATE(1834), 1, - sym_trait_bounds, - STATE(2203), 1, + ACTIONS(4203), 1, + anon_sym_SEMI, + STATE(302), 1, + sym_block, + STATE(2081), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56531] = 6, - ACTIONS(798), 1, - anon_sym_DOT_DOT, - ACTIONS(3884), 1, - sym_identifier, - ACTIONS(3890), 1, - anon_sym_ref, - ACTIONS(3892), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2310), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [56552] = 7, - ACTIONS(3778), 1, + [56870] = 7, + ACTIONS(3796), 1, anon_sym_where, ACTIONS(3798), 1, + anon_sym_LT, + ACTIONS(4195), 1, anon_sym_LBRACE, - ACTIONS(3872), 1, - anon_sym_COLON, - STATE(920), 1, - sym_declaration_list, - STATE(1755), 1, - sym_trait_bounds, - STATE(2149), 1, + STATE(465), 1, + sym_enum_variant_list, + STATE(1800), 1, + sym_type_parameters, + STATE(2251), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56575] = 7, - ACTIONS(3778), 1, + [56893] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3780), 1, - anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3864), 1, anon_sym_LBRACE, - STATE(474), 1, - sym_field_declaration_list, - STATE(1786), 1, - sym_type_parameters, - STATE(2212), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4205), 1, + anon_sym_SEMI, + STATE(379), 1, + sym_declaration_list, + STATE(2031), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56598] = 7, - ACTIONS(3778), 1, + [56916] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4061), 1, + ACTIONS(3864), 1, anon_sym_LBRACE, - ACTIONS(4197), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4207), 1, anon_sym_SEMI, - STATE(299), 1, - sym_block, - STATE(2063), 1, + STATE(381), 1, + sym_declaration_list, + STATE(2020), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56621] = 7, - ACTIONS(3778), 1, + [56939] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3780), 1, + ACTIONS(3798), 1, anon_sym_LT, - ACTIONS(4179), 1, + ACTIONS(4061), 1, anon_sym_LBRACE, - STATE(829), 1, + STATE(975), 1, sym_enum_variant_list, - STATE(1796), 1, + STATE(1797), 1, sym_type_parameters, - STATE(2278), 1, + STATE(2302), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56644] = 7, - ACTIONS(3778), 1, + [56962] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4061), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4199), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4209), 1, anon_sym_SEMI, - STATE(338), 1, - sym_block, - STATE(1921), 1, + STATE(939), 1, + sym_declaration_list, + STATE(2051), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56667] = 7, - ACTIONS(3778), 1, + [56985] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3798), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4201), 1, + ACTIONS(4211), 1, anon_sym_SEMI, - STATE(927), 1, + STATE(992), 1, sym_declaration_list, - STATE(2026), 1, + STATE(2038), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56690] = 7, - ACTIONS(3778), 1, + [57008] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4079), 1, + ACTIONS(4095), 1, anon_sym_LBRACE, - ACTIONS(4203), 1, + ACTIONS(4213), 1, anon_sym_SEMI, - STATE(853), 1, + STATE(339), 1, sym_block, - STATE(2039), 1, + STATE(1930), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56713] = 7, - ACTIONS(3872), 1, + [57031] = 7, + ACTIONS(3900), 1, anon_sym_COLON, - ACTIONS(3874), 1, + ACTIONS(3902), 1, anon_sym_LT, - ACTIONS(4205), 1, + ACTIONS(4215), 1, anon_sym_SEMI, - ACTIONS(4207), 1, + ACTIONS(4217), 1, anon_sym_EQ, - STATE(1780), 1, + STATE(1781), 1, sym_type_parameters, - STATE(2398), 1, + STATE(2428), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56736] = 7, - ACTIONS(3776), 1, - anon_sym_LBRACE, - ACTIONS(3778), 1, + [57054] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3780), 1, + ACTIONS(3798), 1, anon_sym_LT, - STATE(909), 1, + ACTIONS(3802), 1, + anon_sym_LBRACE, + STATE(1004), 1, sym_field_declaration_list, - STATE(1779), 1, + STATE(1778), 1, sym_type_parameters, - STATE(2236), 1, + STATE(2252), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56759] = 7, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(4061), 1, + [57077] = 7, + ACTIONS(3794), 1, anon_sym_LBRACE, - ACTIONS(4209), 1, - anon_sym_SEMI, - ACTIONS(4211), 1, - anon_sym_DASH_GT, - STATE(421), 1, - sym_block, - STATE(1874), 1, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3798), 1, + anon_sym_LT, + STATE(476), 1, + sym_field_declaration_list, + STATE(1791), 1, + sym_type_parameters, + STATE(2222), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56782] = 7, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4061), 1, - anon_sym_LBRACE, - ACTIONS(4213), 1, - anon_sym_SEMI, - STATE(386), 1, - sym_block, - STATE(1975), 1, - sym_where_clause, + [57100] = 4, + ACTIONS(3524), 1, + anon_sym_COLON_COLON, + ACTIONS(3880), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56805] = 7, - ACTIONS(3778), 1, + ACTIONS(2614), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4079), 1, + [57117] = 7, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(4095), 1, anon_sym_LBRACE, - ACTIONS(4215), 1, + ACTIONS(4219), 1, anon_sym_SEMI, - ACTIONS(4217), 1, + ACTIONS(4221), 1, anon_sym_DASH_GT, - STATE(1017), 1, + STATE(423), 1, sym_block, - STATE(2080), 1, + STATE(1881), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56828] = 7, - ACTIONS(3778), 1, + [57140] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4079), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(4219), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4223), 1, anon_sym_SEMI, - STATE(990), 1, + STATE(1009), 1, sym_block, - STATE(2017), 1, + STATE(2036), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56851] = 7, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(4053), 1, + [57163] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2676), 2, anon_sym_PLUS, - ACTIONS(4079), 1, + anon_sym_DASH_GT, + ACTIONS(3676), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4172), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57180] = 7, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(4221), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4225), 1, anon_sym_SEMI, - STATE(963), 1, + STATE(1020), 1, sym_block, - STATE(2024), 1, + STATE(2040), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56874] = 7, - ACTIONS(3778), 1, + [57203] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3850), 1, + ACTIONS(4095), 1, anon_sym_LBRACE, - ACTIONS(3872), 1, - anon_sym_COLON, - STATE(355), 1, - sym_declaration_list, - STATE(1820), 1, - sym_trait_bounds, - STATE(2270), 1, + ACTIONS(4227), 1, + anon_sym_SEMI, + ACTIONS(4229), 1, + anon_sym_DASH_GT, + STATE(270), 1, + sym_block, + STATE(1876), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56897] = 7, - ACTIONS(3778), 1, + [57226] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4079), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(4223), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4231), 1, anon_sym_SEMI, - STATE(934), 1, + STATE(1037), 1, sym_block, - STATE(2029), 1, + STATE(2041), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56920] = 7, - ACTIONS(3778), 1, + [57249] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3798), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4225), 1, + ACTIONS(4233), 1, anon_sym_SEMI, - STATE(808), 1, - sym_declaration_list, - STATE(2038), 1, + ACTIONS(4235), 1, + anon_sym_DASH_GT, + STATE(1036), 1, + sym_block, + STATE(2092), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56943] = 7, - ACTIONS(3778), 1, + [57272] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4079), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(4227), 1, + ACTIONS(4237), 1, anon_sym_SEMI, - ACTIONS(4229), 1, + ACTIONS(4239), 1, anon_sym_DASH_GT, - STATE(843), 1, + STATE(971), 1, sym_block, - STATE(2031), 1, + STATE(2044), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56966] = 7, - ACTIONS(3778), 1, + [57295] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3798), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4231), 1, + ACTIONS(4241), 1, anon_sym_SEMI, - STATE(814), 1, + STATE(967), 1, sym_declaration_list, - STATE(2037), 1, + STATE(2106), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56989] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2636), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3684), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4154), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57006] = 7, - ACTIONS(3778), 1, + [57318] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3798), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4233), 1, + ACTIONS(4243), 1, anon_sym_SEMI, - STATE(800), 1, + STATE(944), 1, sym_declaration_list, - STATE(2094), 1, + STATE(2049), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57029] = 7, - ACTIONS(3778), 1, + [57341] = 7, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4079), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(4235), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4245), 1, anon_sym_SEMI, - STATE(827), 1, + STATE(955), 1, sym_block, - STATE(2036), 1, + STATE(2048), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57052] = 4, - ACTIONS(4073), 1, + [57364] = 4, + ACTIONS(4168), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, + ACTIONS(3435), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4157), 2, + ACTIONS(4148), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57068] = 5, - ACTIONS(4237), 1, - anon_sym_RPAREN, - ACTIONS(4239), 1, - anon_sym_COMMA, - STATE(2074), 1, - aux_sym_parameters_repeat1, + [57380] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3413), 2, + ACTIONS(3654), 2, anon_sym_COLON, anon_sym_PIPE, - [57086] = 6, + ACTIONS(2940), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [57394] = 6, ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(3427), 1, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(3433), 1, + ACTIONS(3443), 1, anon_sym_COLON_COLON, - STATE(1027), 1, + STATE(952), 1, sym_parameters, - STATE(1346), 1, + STATE(1341), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57106] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4241), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57118] = 2, + [57414] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4243), 5, + ACTIONS(4247), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57130] = 5, - ACTIONS(3536), 1, - anon_sym_EQ, - ACTIONS(3872), 1, + [57426] = 6, + ACTIONS(3900), 1, anon_sym_COLON, - STATE(1901), 1, + ACTIONS(4083), 1, + anon_sym_COMMA, + ACTIONS(4085), 1, + anon_sym_GT, + STATE(1919), 1, + aux_sym_type_parameters_repeat1, + STATE(1921), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4245), 2, - anon_sym_COMMA, - anon_sym_GT, - [57148] = 6, - ACTIONS(4247), 1, - anon_sym_RPAREN, + [57446] = 3, ACTIONS(4249), 1, - anon_sym_COLON, - ACTIONS(4251), 1, - anon_sym_COMMA, - ACTIONS(4253), 1, - anon_sym_PIPE, - STATE(2019), 1, - aux_sym_tuple_pattern_repeat1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57168] = 4, - ACTIONS(2578), 1, + ACTIONS(2710), 4, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3413), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4255), 2, - anon_sym_RPAREN, anon_sym_COMMA, - [57184] = 4, - ACTIONS(4073), 1, + anon_sym_GT, anon_sym_COLON_COLON, + [57460] = 5, + ACTIONS(3538), 1, + anon_sym_EQ, + ACTIONS(3900), 1, + anon_sym_COLON, + STATE(1914), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4258), 2, - anon_sym_RPAREN, + ACTIONS(4251), 2, anon_sym_COMMA, - [57200] = 2, + anon_sym_GT, + [57478] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2833), 5, + ACTIONS(3001), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [57212] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4260), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57224] = 2, + [57490] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2841), 5, + ACTIONS(2946), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [57236] = 2, + [57502] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4262), 5, + ACTIONS(4253), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57248] = 2, + [57514] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4264), 5, + ACTIONS(4255), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57260] = 5, - ACTIONS(3632), 1, + [57526] = 6, + ACTIONS(4257), 1, + anon_sym_RPAREN, + ACTIONS(4259), 1, anon_sym_COLON, - ACTIONS(3634), 1, - anon_sym_BANG, - ACTIONS(3636), 1, - anon_sym_COLON_COLON, + ACTIONS(4261), 1, + anon_sym_COMMA, + ACTIONS(4263), 1, + anon_sym_PIPE, + STATE(2015), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [57278] = 2, + [57546] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4266), 5, + ACTIONS(4265), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57290] = 2, + [57558] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4268), 5, + ACTIONS(4267), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57302] = 2, + [57570] = 4, + ACTIONS(4091), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4270), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4269), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [57314] = 2, + [57586] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4272), 5, + ACTIONS(4271), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57326] = 6, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(3433), 1, - anon_sym_COLON_COLON, - ACTIONS(3534), 1, + [57598] = 5, + ACTIONS(3644), 1, anon_sym_COLON, - STATE(1346), 1, - sym_type_arguments, - STATE(2088), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57346] = 5, - ACTIONS(764), 1, - anon_sym_RPAREN, - ACTIONS(4274), 1, - anon_sym_COMMA, - STATE(1962), 1, - aux_sym_parameters_repeat1, + ACTIONS(3646), 1, + anon_sym_BANG, + ACTIONS(3648), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3413), 2, - anon_sym_COLON, - anon_sym_PIPE, - [57364] = 2, + ACTIONS(3522), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [57616] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4276), 5, + ACTIONS(4273), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57376] = 4, - ACTIONS(2981), 1, + [57628] = 4, + ACTIONS(2940), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3628), 2, + ACTIONS(3654), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4278), 2, + ACTIONS(4275), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57392] = 2, + [57644] = 6, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3443), 1, + anon_sym_COLON_COLON, + STATE(1341), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3905), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - [57404] = 3, - ACTIONS(4281), 1, - anon_sym_EQ, + [57664] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2668), 4, - anon_sym_PLUS, + ACTIONS(4278), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, + [57676] = 6, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3443), 1, anon_sym_COLON_COLON, - [57418] = 2, + ACTIONS(3536), 1, + anon_sym_COLON, + STATE(1341), 1, + sym_type_arguments, + STATE(2098), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57696] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4283), 5, + ACTIONS(4280), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57430] = 4, - ACTIONS(4287), 1, - anon_sym_as, - ACTIONS(4289), 1, + [57708] = 5, + ACTIONS(3520), 1, anon_sym_COLON_COLON, + ACTIONS(3646), 1, + anon_sym_BANG, + ACTIONS(4282), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3522), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [57726] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4285), 3, + ACTIONS(4284), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [57446] = 6, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(3431), 1, - anon_sym_LPAREN, - ACTIONS(3433), 1, - anon_sym_COLON_COLON, - STATE(1346), 1, - sym_type_arguments, - STATE(1353), 1, - sym_parameters, + [57738] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57466] = 6, - ACTIONS(3872), 1, - anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4286), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(4101), 1, - anon_sym_GT, - STATE(1906), 1, - aux_sym_type_parameters_repeat1, - STATE(1907), 1, - sym_trait_bounds, + [57750] = 5, + ACTIONS(4288), 1, + anon_sym_RPAREN, + ACTIONS(4290), 1, + anon_sym_COMMA, + STATE(2127), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57486] = 5, - ACTIONS(762), 1, + ACTIONS(3423), 2, + anon_sym_COLON, + anon_sym_PIPE, + [57768] = 5, + ACTIONS(760), 1, anon_sym_RPAREN, - ACTIONS(4291), 1, + ACTIONS(4292), 1, anon_sym_COMMA, - STATE(2059), 1, + STATE(1942), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3413), 2, + ACTIONS(3423), 2, anon_sym_COLON, anon_sym_PIPE, - [57504] = 4, - ACTIONS(4278), 1, - anon_sym_RBRACK, + [57786] = 5, + ACTIONS(762), 1, + anon_sym_RPAREN, + ACTIONS(4294), 1, + anon_sym_COMMA, + STATE(2072), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2981), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3628), 2, - anon_sym_COMMA, + ACTIONS(3423), 2, + anon_sym_COLON, anon_sym_PIPE, - [57520] = 4, - ACTIONS(4150), 1, + [57804] = 4, + ACTIONS(4168), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, + ACTIONS(3435), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4157), 2, + ACTIONS(4269), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57536] = 6, - ACTIONS(3872), 1, - anon_sym_COLON, - ACTIONS(4293), 1, - anon_sym_COMMA, - ACTIONS(4295), 1, - anon_sym_GT, - STATE(1907), 1, - sym_trait_bounds, - STATE(2091), 1, - aux_sym_type_parameters_repeat1, + [57820] = 4, + ACTIONS(4275), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57556] = 5, - ACTIONS(4297), 1, - anon_sym_RPAREN, - ACTIONS(4299), 1, + ACTIONS(2940), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3654), 2, anon_sym_COMMA, - STATE(2111), 1, - aux_sym_parameters_repeat1, + anon_sym_PIPE, + [57836] = 4, + ACTIONS(4296), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3413), 2, - anon_sym_COLON, + ACTIONS(2614), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3423), 2, + anon_sym_COMMA, anon_sym_PIPE, - [57574] = 4, - ACTIONS(4150), 1, + [57852] = 4, + ACTIONS(4091), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, + ACTIONS(3435), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4258), 2, + ACTIONS(4148), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57590] = 2, + [57868] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2871), 5, + ACTIONS(4299), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, - [57602] = 2, + anon_sym_COMMA, + [57880] = 4, + ACTIONS(2614), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2803), 5, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3423), 2, anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [57614] = 2, + anon_sym_PIPE, + ACTIONS(4296), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57896] = 5, + ACTIONS(3644), 1, + anon_sym_COLON, + ACTIONS(3646), 1, + anon_sym_BANG, + ACTIONS(3736), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3522), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [57914] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -119225,558 +119694,545 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57626] = 4, - ACTIONS(4255), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3413), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [57642] = 5, - ACTIONS(3632), 1, + [57926] = 5, + ACTIONS(3520), 1, + anon_sym_COLON_COLON, + ACTIONS(3644), 1, anon_sym_COLON, - ACTIONS(3634), 1, + ACTIONS(3646), 1, anon_sym_BANG, - ACTIONS(3726), 1, - anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 2, + ACTIONS(3522), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [57660] = 5, - ACTIONS(3528), 1, - anon_sym_COLON_COLON, - ACTIONS(3634), 1, - anon_sym_BANG, - ACTIONS(4303), 1, - anon_sym_COLON, + [57944] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [57678] = 5, - ACTIONS(3528), 1, - anon_sym_COLON_COLON, - ACTIONS(3632), 1, + ACTIONS(2872), 5, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(3634), 1, - anon_sym_BANG, + anon_sym_where, + anon_sym_EQ, + [57956] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [57696] = 4, - ACTIONS(4307), 1, + ACTIONS(2868), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [57968] = 4, + ACTIONS(4305), 1, anon_sym_as, - ACTIONS(4309), 1, + ACTIONS(4307), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4305), 3, + ACTIONS(4303), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [57712] = 3, + [57984] = 4, + ACTIONS(4305), 1, + anon_sym_as, + ACTIONS(4309), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3413), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2578), 3, - anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(4303), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - [57726] = 4, - ACTIONS(4307), 1, + [58000] = 4, + ACTIONS(4305), 1, anon_sym_as, ACTIONS(4311), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4305), 3, + ACTIONS(4303), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [57742] = 3, + [58016] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3628), 2, + ACTIONS(3423), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2981), 3, + ACTIONS(2614), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [57756] = 4, - ACTIONS(4307), 1, + [58030] = 4, + ACTIONS(4315), 1, anon_sym_as, - ACTIONS(4313), 1, + ACTIONS(4317), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4305), 3, + ACTIONS(4313), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [57772] = 2, + [58046] = 5, + ACTIONS(4319), 1, + anon_sym_RPAREN, + ACTIONS(4321), 1, + anon_sym_COMMA, + STATE(2079), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4315), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3423), 2, + anon_sym_COLON, + anon_sym_PIPE, + [58064] = 5, + ACTIONS(4323), 1, + anon_sym_RPAREN, + ACTIONS(4326), 1, anon_sym_COMMA, - [57784] = 2, + STATE(2079), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3423), 2, + anon_sym_COLON, + anon_sym_PIPE, + [58082] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4317), 5, + ACTIONS(4329), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57796] = 5, - ACTIONS(4319), 1, - anon_sym_RPAREN, - ACTIONS(4322), 1, - anon_sym_COMMA, - STATE(2074), 1, - aux_sym_parameters_repeat1, + [58094] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3413), 2, - anon_sym_COLON, - anon_sym_PIPE, - [57814] = 2, + ACTIONS(3953), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + [58106] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2867), 5, + ACTIONS(2997), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [57826] = 2, + [58118] = 6, + ACTIONS(3900), 1, + anon_sym_COLON, + ACTIONS(4331), 1, + anon_sym_COMMA, + ACTIONS(4333), 1, + anon_sym_GT, + STATE(1921), 1, + sym_trait_bounds, + STATE(2103), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58138] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2783), 5, + ACTIONS(3013), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [57838] = 4, - ACTIONS(3528), 1, + [58150] = 4, + ACTIONS(3520), 1, anon_sym_COLON_COLON, - ACTIONS(3634), 1, + ACTIONS(3646), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 2, + ACTIONS(3522), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [57853] = 5, - ACTIONS(2480), 1, + [58165] = 4, + ACTIONS(4335), 1, + anon_sym_COMMA, + STATE(1832), 1, + aux_sym_where_clause_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2824), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [58180] = 5, + ACTIONS(2473), 1, anon_sym_PLUS, - ACTIONS(4325), 1, + ACTIONS(4337), 1, anon_sym_COMMA, - ACTIONS(4327), 1, + ACTIONS(4339), 1, anon_sym_GT, - STATE(2105), 1, + STATE(2133), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57870] = 5, - ACTIONS(4053), 1, + [58197] = 5, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4325), 1, + ACTIONS(4337), 1, anon_sym_COMMA, - ACTIONS(4327), 1, + ACTIONS(4339), 1, anon_sym_GT, - STATE(2105), 1, + STATE(2133), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57887] = 5, - ACTIONS(3776), 1, - anon_sym_LBRACE, - ACTIONS(3778), 1, + [58214] = 5, + ACTIONS(3796), 1, anon_sym_where, - STATE(900), 1, - sym_field_declaration_list, - STATE(2188), 1, + ACTIONS(4061), 1, + anon_sym_LBRACE, + STATE(807), 1, + sym_enum_variant_list, + STATE(2195), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57904] = 5, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(3798), 1, - anon_sym_LBRACE, - STATE(861), 1, - sym_declaration_list, - STATE(2171), 1, - sym_where_clause, + [58231] = 5, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4288), 1, + anon_sym_RPAREN, + ACTIONS(4290), 1, + anon_sym_COMMA, + STATE(2127), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58248] = 4, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(4341), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57921] = 5, - ACTIONS(3778), 1, + STATE(1121), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [58263] = 5, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4179), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(893), 1, - sym_enum_variant_list, - STATE(2183), 1, + STATE(800), 1, + sym_declaration_list, + STATE(2188), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57938] = 5, - ACTIONS(4099), 1, + [58280] = 5, + ACTIONS(4083), 1, anon_sym_COMMA, - ACTIONS(4101), 1, + ACTIONS(4085), 1, anon_sym_GT, - ACTIONS(4329), 1, + ACTIONS(4343), 1, anon_sym_EQ, - STATE(1906), 1, + STATE(1919), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57955] = 4, - ACTIONS(4331), 1, - anon_sym_COMMA, - STATE(1823), 1, - aux_sym_where_clause_repeat1, + [58297] = 5, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3864), 1, + anon_sym_LBRACE, + STATE(258), 1, + sym_declaration_list, + STATE(2313), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2879), 2, - anon_sym_SEMI, + [58314] = 5, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3830), 1, anon_sym_LBRACE, - [57970] = 5, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4297), 1, - anon_sym_RPAREN, - ACTIONS(4299), 1, - anon_sym_COMMA, - STATE(2111), 1, - aux_sym_parameters_repeat1, + STATE(791), 1, + sym_declaration_list, + STATE(2183), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57987] = 4, + [58331] = 4, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4333), 1, + ACTIONS(4345), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1118), 2, + STATE(1095), 2, sym_if_expression, sym_block, - [58002] = 5, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(3798), 1, - anon_sym_LBRACE, - STATE(881), 1, - sym_declaration_list, - STATE(2176), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58019] = 5, - ACTIONS(4053), 1, + [58346] = 5, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4237), 1, + ACTIONS(4319), 1, anon_sym_RPAREN, - ACTIONS(4239), 1, + ACTIONS(4321), 1, anon_sym_COMMA, - STATE(2074), 1, + STATE(2079), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58036] = 5, - ACTIONS(3431), 1, - anon_sym_LPAREN, - ACTIONS(3780), 1, - anon_sym_LT, - STATE(1686), 1, - sym_parameters, - STATE(2260), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58053] = 5, - ACTIONS(3778), 1, + [58363] = 5, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3850), 1, + ACTIONS(3802), 1, anon_sym_LBRACE, - STATE(408), 1, - sym_declaration_list, - STATE(2299), 1, + STATE(813), 1, + sym_field_declaration_list, + STATE(2200), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58070] = 5, - ACTIONS(4335), 1, + [58380] = 5, + ACTIONS(4347), 1, anon_sym_LPAREN, - ACTIONS(4337), 1, + ACTIONS(4349), 1, anon_sym_LBRACE, - ACTIONS(4339), 1, + ACTIONS(4351), 1, anon_sym_LBRACK, - STATE(1898), 1, + STATE(1899), 1, sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58087] = 5, - ACTIONS(4113), 1, - anon_sym_LPAREN, - ACTIONS(4341), 1, - anon_sym_RBRACK, - ACTIONS(4343), 1, - anon_sym_EQ, - STATE(2431), 1, - sym_meta_arguments, + [58397] = 5, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3864), 1, + anon_sym_LBRACE, + STATE(324), 1, + sym_declaration_list, + STATE(2170), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58104] = 4, + [58414] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1069), 1, + ACTIONS(986), 1, sym_line_comment, - ACTIONS(4345), 1, + ACTIONS(4353), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4347), 3, + ACTIONS(4355), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [58119] = 5, - ACTIONS(4053), 1, + [58429] = 5, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4349), 1, + ACTIONS(4357), 1, anon_sym_RPAREN, - ACTIONS(4351), 1, + ACTIONS(4359), 1, anon_sym_COMMA, - STATE(2034), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(1911), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58136] = 5, - ACTIONS(762), 1, + [58446] = 5, + ACTIONS(760), 1, anon_sym_RPAREN, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4291), 1, + ACTIONS(4292), 1, anon_sym_COMMA, - STATE(2059), 1, + STATE(1942), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58153] = 5, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4353), 1, + [58463] = 5, + ACTIONS(762), 1, anon_sym_RPAREN, - ACTIONS(4355), 1, - anon_sym_COMMA, - STATE(1899), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58170] = 3, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4357), 3, - anon_sym_RPAREN, + ACTIONS(4294), 1, anon_sym_COMMA, - anon_sym_PIPE, - [58183] = 5, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(3431), 1, - anon_sym_LPAREN, - STATE(1347), 1, - sym_type_arguments, - STATE(1352), 1, - sym_parameters, + STATE(2072), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58200] = 5, - ACTIONS(764), 1, - anon_sym_RPAREN, - ACTIONS(4053), 1, + [58480] = 5, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4274), 1, + ACTIONS(4361), 1, + anon_sym_RPAREN, + ACTIONS(4363), 1, anon_sym_COMMA, - STATE(1962), 1, - aux_sym_parameters_repeat1, + STATE(2057), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58217] = 5, - ACTIONS(3778), 1, + [58497] = 5, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3798), 1, + ACTIONS(3802), 1, anon_sym_LBRACE, - STATE(1003), 1, - sym_declaration_list, - STATE(2219), 1, + STATE(901), 1, + sym_field_declaration_list, + STATE(2158), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58234] = 3, + [58514] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3413), 2, + ACTIONS(3423), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4359), 2, + ACTIONS(4365), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58247] = 5, - ACTIONS(3778), 1, + [58527] = 5, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3798), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(1030), 1, + STATE(865), 1, sym_declaration_list, - STATE(2224), 1, + STATE(2231), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58264] = 5, - ACTIONS(3676), 1, - anon_sym_PIPE, - ACTIONS(4361), 1, - anon_sym_SEMI, - ACTIONS(4363), 1, + [58544] = 5, + ACTIONS(3900), 1, anon_sym_COLON, - ACTIONS(4365), 1, + ACTIONS(4367), 1, + anon_sym_SEMI, + ACTIONS(4369), 1, anon_sym_EQ, + STATE(2545), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58281] = 5, - ACTIONS(3431), 1, + [58561] = 5, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3830), 1, + anon_sym_LBRACE, + STATE(894), 1, + sym_declaration_list, + STATE(2236), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58578] = 5, + ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3780), 1, + ACTIONS(3798), 1, anon_sym_LT, - STATE(1608), 1, + STATE(1631), 1, sym_parameters, - STATE(2257), 1, + STATE(2168), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58298] = 5, - ACTIONS(3776), 1, - anon_sym_LBRACE, - ACTIONS(3778), 1, + [58595] = 5, + ACTIONS(3796), 1, anon_sym_where, - STATE(878), 1, - sym_field_declaration_list, - STATE(2125), 1, + ACTIONS(3830), 1, + anon_sym_LBRACE, + STATE(915), 1, + sym_declaration_list, + STATE(2137), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58315] = 5, - ACTIONS(3872), 1, - anon_sym_COLON, - ACTIONS(4367), 1, - anon_sym_SEMI, - ACTIONS(4369), 1, - anon_sym_EQ, - STATE(2534), 1, - sym_trait_bounds, + [58612] = 5, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + STATE(1352), 1, + sym_type_arguments, + STATE(1362), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58332] = 5, - ACTIONS(3431), 1, + [58629] = 5, + ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3780), 1, + ACTIONS(3798), 1, anon_sym_LT, - STATE(1628), 1, + STATE(1698), 1, sym_parameters, - STATE(2192), 1, + STATE(2263), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58349] = 5, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(3798), 1, - anon_sym_LBRACE, - STATE(930), 1, - sym_declaration_list, - STATE(2150), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58366] = 5, + [58646] = 5, ACTIONS(4371), 1, anon_sym_LPAREN, ACTIONS(4373), 1, anon_sym_LBRACE, ACTIONS(4375), 1, anon_sym_LBRACK, - STATE(82), 1, + STATE(65), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58383] = 5, - ACTIONS(3676), 1, + [58663] = 5, + ACTIONS(3624), 1, anon_sym_PIPE, ACTIONS(4377), 1, anon_sym_SEMI, @@ -119787,256 +120243,254 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58400] = 5, + [58680] = 5, + ACTIONS(3624), 1, + anon_sym_PIPE, + ACTIONS(4383), 1, + anon_sym_SEMI, + ACTIONS(4385), 1, + anon_sym_COLON, + ACTIONS(4387), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58697] = 5, ACTIONS(2542), 1, anon_sym_LPAREN, - ACTIONS(3427), 1, + ACTIONS(3437), 1, anon_sym_LT2, - STATE(1025), 1, + STATE(949), 1, sym_parameters, - STATE(1347), 1, + STATE(1352), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58417] = 5, - ACTIONS(3778), 1, - anon_sym_where, + [58714] = 5, ACTIONS(3794), 1, anon_sym_LBRACE, - STATE(412), 1, + ACTIONS(3796), 1, + anon_sym_where, + STATE(414), 1, sym_field_declaration_list, - STATE(2154), 1, + STATE(2246), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58434] = 5, - ACTIONS(4253), 1, + [58731] = 5, + ACTIONS(4263), 1, anon_sym_PIPE, - ACTIONS(4383), 1, - anon_sym_RBRACK, - ACTIONS(4385), 1, + ACTIONS(4389), 1, + anon_sym_RPAREN, + ACTIONS(4391), 1, anon_sym_COMMA, - STATE(1870), 1, + STATE(1877), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58451] = 3, - ACTIONS(4253), 1, + [58748] = 5, + ACTIONS(4331), 1, + anon_sym_COMMA, + ACTIONS(4333), 1, + anon_sym_GT, + ACTIONS(4343), 1, + anon_sym_EQ, + STATE(2103), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58765] = 3, + ACTIONS(4263), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4387), 3, + ACTIONS(4393), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [58464] = 5, - ACTIONS(4253), 1, - anon_sym_PIPE, - ACTIONS(4389), 1, + [58778] = 5, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4395), 1, anon_sym_RPAREN, - ACTIONS(4391), 1, + ACTIONS(4397), 1, anon_sym_COMMA, - STATE(1869), 1, - aux_sym_tuple_pattern_repeat1, + STATE(2099), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58481] = 5, - ACTIONS(3778), 1, + [58795] = 5, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3850), 1, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(354), 1, + STATE(963), 1, sym_declaration_list, - STATE(2265), 1, + STATE(2258), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58498] = 5, - ACTIONS(3778), 1, + [58812] = 5, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3798), 1, + ACTIONS(4061), 1, anon_sym_LBRACE, - STATE(836), 1, - sym_declaration_list, - STATE(2246), 1, + STATE(1030), 1, + sym_enum_variant_list, + STATE(2203), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58515] = 4, - ACTIONS(4393), 1, + [58829] = 4, + ACTIONS(4399), 1, anon_sym_COMMA, - STATE(1792), 1, + STATE(1798), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4387), 2, + ACTIONS(4393), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [58530] = 5, - ACTIONS(4293), 1, - anon_sym_COMMA, - ACTIONS(4295), 1, - anon_sym_GT, - ACTIONS(4329), 1, - anon_sym_EQ, - STATE(2091), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58547] = 5, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4396), 1, - anon_sym_RPAREN, - ACTIONS(4398), 1, - anon_sym_COMMA, - STATE(2087), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58564] = 5, - ACTIONS(3778), 1, + [58844] = 5, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4187), 1, + ACTIONS(3864), 1, anon_sym_LBRACE, - STATE(418), 1, - sym_enum_variant_list, - STATE(2161), 1, + STATE(357), 1, + sym_declaration_list, + STATE(2284), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58581] = 5, - ACTIONS(3778), 1, + [58861] = 5, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4179), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(996), 1, + STATE(420), 1, sym_enum_variant_list, - STATE(2185), 1, + STATE(2164), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58598] = 5, - ACTIONS(3778), 1, + [58878] = 5, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4187), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(282), 1, + STATE(272), 1, sym_enum_variant_list, - STATE(2208), 1, + STATE(2221), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58615] = 5, - ACTIONS(3971), 1, + [58895] = 5, + ACTIONS(3997), 1, anon_sym_LPAREN, - ACTIONS(3973), 1, + ACTIONS(3999), 1, anon_sym_LBRACE, - ACTIONS(3975), 1, + ACTIONS(4001), 1, anon_sym_LBRACK, - STATE(1068), 1, + STATE(1096), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58632] = 4, - ACTIONS(4400), 1, + [58912] = 4, + ACTIONS(4402), 1, anon_sym_DQUOTE, - STATE(1827), 1, + STATE(1828), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4402), 2, + ACTIONS(4404), 2, sym__string_content, sym_escape_sequence, - [58647] = 4, - ACTIONS(4404), 1, + [58927] = 4, + ACTIONS(4406), 1, anon_sym_DQUOTE, - STATE(1802), 1, + STATE(1806), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4406), 2, + ACTIONS(4408), 2, sym__string_content, sym_escape_sequence, - [58662] = 5, - ACTIONS(4408), 1, - anon_sym_LPAREN, + [58942] = 5, ACTIONS(4410), 1, - anon_sym_LBRACE, + anon_sym_LPAREN, ACTIONS(4412), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_LBRACK, - STATE(1330), 1, + STATE(1333), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58679] = 4, - ACTIONS(4414), 1, + [58959] = 4, + ACTIONS(4416), 1, anon_sym_DQUOTE, - STATE(1827), 1, + STATE(1828), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4402), 2, + ACTIONS(4404), 2, sym__string_content, sym_escape_sequence, - [58694] = 5, - ACTIONS(4253), 1, + [58974] = 5, + ACTIONS(4263), 1, anon_sym_PIPE, - ACTIONS(4416), 1, - anon_sym_SEMI, ACTIONS(4418), 1, - anon_sym_COLON, + anon_sym_SEMI, ACTIONS(4420), 1, + anon_sym_COLON, + ACTIONS(4422), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58711] = 5, - ACTIONS(4408), 1, - anon_sym_LPAREN, + [58991] = 5, ACTIONS(4410), 1, - anon_sym_LBRACE, + anon_sym_LPAREN, ACTIONS(4412), 1, + anon_sym_LBRACE, + ACTIONS(4414), 1, anon_sym_LBRACK, - STATE(1327), 1, + STATE(1336), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58728] = 5, - ACTIONS(3872), 1, - anon_sym_COLON, - ACTIONS(4422), 1, - anon_sym_SEMI, - ACTIONS(4424), 1, - anon_sym_EQ, - STATE(2370), 1, - sym_trait_bounds, + [59008] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58745] = 4, - ACTIONS(3872), 1, + ACTIONS(4424), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [59021] = 4, + ACTIONS(3900), 1, anon_sym_COLON, - STATE(1907), 1, + STATE(1921), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, @@ -120044,8 +120498,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4426), 2, anon_sym_COMMA, anon_sym_GT, - [58760] = 3, - ACTIONS(4053), 1, + [59036] = 3, + ACTIONS(4075), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, @@ -120054,19 +120508,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [58773] = 5, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(3794), 1, + [59049] = 5, + ACTIONS(3997), 1, + anon_sym_LPAREN, + ACTIONS(3999), 1, anon_sym_LBRACE, - STATE(398), 1, - sym_field_declaration_list, - STATE(2287), 1, - sym_where_clause, + ACTIONS(4001), 1, + anon_sym_LBRACK, + STATE(1115), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58790] = 4, + [59066] = 4, ACTIONS(632), 1, anon_sym_LBRACE, ACTIONS(4430), 1, @@ -120074,25 +120528,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(238), 2, + STATE(226), 2, sym_if_expression, sym_block, - [58805] = 5, - ACTIONS(3971), 1, - anon_sym_LPAREN, - ACTIONS(3973), 1, - anon_sym_LBRACE, - ACTIONS(3975), 1, - anon_sym_LBRACK, - STATE(1089), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58822] = 4, + [59081] = 4, ACTIONS(4432), 1, anon_sym_DQUOTE, - STATE(1813), 1, + STATE(1803), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, @@ -120100,5972 +120542,6074 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4434), 2, sym__string_content, sym_escape_sequence, - [58837] = 5, + [59096] = 4, ACTIONS(4436), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACE, - ACTIONS(4440), 1, - anon_sym_LBRACK, - STATE(981), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58854] = 4, - ACTIONS(4442), 1, anon_sym_DQUOTE, - STATE(1827), 1, + STATE(1819), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4402), 2, + ACTIONS(4438), 2, sym__string_content, sym_escape_sequence, - [58869] = 5, - ACTIONS(4436), 1, + [59111] = 5, + ACTIONS(3900), 1, + anon_sym_COLON, + ACTIONS(4440), 1, + anon_sym_SEMI, + ACTIONS(4442), 1, + anon_sym_EQ, + STATE(2375), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59128] = 5, + ACTIONS(4444), 1, anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(4446), 1, anon_sym_LBRACE, - ACTIONS(4440), 1, + ACTIONS(4448), 1, anon_sym_LBRACK, - STATE(971), 1, + STATE(977), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58886] = 4, - ACTIONS(4444), 1, + [59145] = 5, + ACTIONS(3794), 1, + anon_sym_LBRACE, + ACTIONS(3796), 1, + anon_sym_where, + STATE(401), 1, + sym_field_declaration_list, + STATE(2304), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59162] = 4, + ACTIONS(4450), 1, anon_sym_DQUOTE, - STATE(1799), 1, + STATE(1828), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4446), 2, + ACTIONS(4404), 2, sym__string_content, sym_escape_sequence, - [58901] = 5, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(3850), 1, + [59177] = 5, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_LT, + STATE(1694), 1, + sym_parameters, + STATE(2267), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59194] = 5, + ACTIONS(4444), 1, + anon_sym_LPAREN, + ACTIONS(4446), 1, anon_sym_LBRACE, - STATE(426), 1, - sym_declaration_list, - STATE(2206), 1, - sym_where_clause, + ACTIONS(4448), 1, + anon_sym_LBRACK, + STATE(974), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58918] = 4, + [59211] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1069), 1, + ACTIONS(986), 1, sym_line_comment, - ACTIONS(4448), 1, + ACTIONS(4452), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4450), 3, + ACTIONS(4454), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [58933] = 5, - ACTIONS(3431), 1, + [59226] = 5, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4456), 1, + anon_sym_RPAREN, + ACTIONS(4458), 1, + anon_sym_COMMA, + STATE(2050), 1, + aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59243] = 5, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3864), 1, + anon_sym_LBRACE, + STATE(428), 1, + sym_declaration_list, + STATE(2209), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59260] = 5, + ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3780), 1, + ACTIONS(3798), 1, anon_sym_LT, - STATE(1688), 1, + STATE(1700), 1, sym_parameters, - STATE(2241), 1, + STATE(2264), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58950] = 4, - ACTIONS(3634), 1, + [59277] = 4, + ACTIONS(3646), 1, anon_sym_BANG, - ACTIONS(3726), 1, + ACTIONS(3736), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 2, + ACTIONS(3522), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [58965] = 5, - ACTIONS(3778), 1, + [59292] = 5, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3850), 1, + ACTIONS(3864), 1, anon_sym_LBRACE, - STATE(436), 1, + STATE(438), 1, sym_declaration_list, - STATE(2221), 1, + STATE(2220), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58982] = 3, + [59309] = 4, + ACTIONS(4460), 1, + anon_sym_DQUOTE, + STATE(1828), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3413), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4452), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58995] = 3, - ACTIONS(4454), 1, + ACTIONS(4462), 2, + sym__string_content, + sym_escape_sequence, + [59324] = 3, + ACTIONS(4465), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4456), 3, + ACTIONS(4467), 3, sym_self, sym_super, sym_crate, - [59008] = 4, - ACTIONS(4460), 1, - anon_sym_COMMA, - STATE(1823), 1, - aux_sym_where_clause_repeat1, + [59337] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4458), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [59023] = 5, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4463), 1, + ACTIONS(3423), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4469), 2, anon_sym_RPAREN, - ACTIONS(4465), 1, anon_sym_COMMA, - STATE(2051), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59040] = 4, - ACTIONS(4467), 1, - anon_sym_DQUOTE, - STATE(1841), 1, - aux_sym_string_literal_repeat1, + [59350] = 5, + ACTIONS(4263), 1, + anon_sym_PIPE, + ACTIONS(4471), 1, + anon_sym_RBRACK, + ACTIONS(4473), 1, + anon_sym_COMMA, + STATE(1878), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4469), 2, - sym__string_content, - sym_escape_sequence, - [59055] = 4, - ACTIONS(2303), 1, - anon_sym_POUND, - ACTIONS(4471), 1, - sym_identifier, + [59367] = 4, + ACTIONS(4477), 1, + anon_sym_COMMA, + STATE(1832), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1048), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [59070] = 4, - ACTIONS(4473), 1, + ACTIONS(4475), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [59382] = 4, + ACTIONS(4480), 1, anon_sym_DQUOTE, - STATE(1827), 1, + STATE(1849), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4475), 2, + ACTIONS(4482), 2, sym__string_content, - sym_escape_sequence, - [59085] = 4, - ACTIONS(4480), 1, - anon_sym_COMMA, - STATE(1758), 1, - aux_sym_where_clause_repeat1, + sym_escape_sequence, + [59397] = 3, + ACTIONS(4484), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4478), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [59100] = 4, - ACTIONS(3872), 1, + ACTIONS(3624), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [59410] = 4, + ACTIONS(3900), 1, anon_sym_COLON, - STATE(1907), 1, + STATE(1921), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4482), 2, + ACTIONS(4486), 2, anon_sym_COMMA, anon_sym_GT, - [59115] = 4, - ACTIONS(4159), 1, + [59425] = 4, + ACTIONS(4150), 1, anon_sym_COLON, - ACTIONS(4161), 1, + ACTIONS(4152), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, + ACTIONS(3435), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59130] = 3, - ACTIONS(4485), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3676), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [59143] = 5, - ACTIONS(4053), 1, + [59440] = 5, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4487), 1, - anon_sym_RPAREN, ACTIONS(4489), 1, + anon_sym_RPAREN, + ACTIONS(4491), 1, anon_sym_COMMA, - STATE(1928), 1, + STATE(1937), 1, aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59160] = 5, - ACTIONS(3431), 1, + [59457] = 5, + ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3780), 1, + ACTIONS(3798), 1, anon_sym_LT, - STATE(1637), 1, + STATE(1635), 1, sym_parameters, - STATE(2215), 1, + STATE(2230), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59177] = 5, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(3850), 1, - anon_sym_LBRACE, - STATE(339), 1, - sym_declaration_list, - STATE(2173), 1, - sym_where_clause, + [59474] = 4, + ACTIONS(4495), 1, + anon_sym_COMMA, + STATE(1758), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59194] = 5, - ACTIONS(3427), 1, + ACTIONS(4493), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [59489] = 5, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(3872), 1, + ACTIONS(3900), 1, anon_sym_COLON, - STATE(1347), 1, + STATE(1352), 1, sym_type_arguments, - STATE(2090), 1, + STATE(2100), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59211] = 5, - ACTIONS(3431), 1, + [59506] = 5, + ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3780), 1, + ACTIONS(3798), 1, anon_sym_LT, - STATE(1665), 1, + STATE(1610), 1, sym_parameters, - STATE(2205), 1, + STATE(2213), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59228] = 4, + [59523] = 5, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3864), 1, + anon_sym_LBRACE, + STATE(341), 1, + sym_declaration_list, + STATE(2193), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59540] = 4, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(4497), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(86), 2, + sym_if_expression, + sym_block, + [59555] = 4, + ACTIONS(3646), 1, + anon_sym_BANG, + ACTIONS(3738), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3522), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59570] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(1069), 1, + ACTIONS(986), 1, sym_line_comment, - ACTIONS(4491), 1, + ACTIONS(4499), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4493), 3, + ACTIONS(4501), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [59243] = 5, + [59585] = 5, + ACTIONS(2473), 1, + anon_sym_PLUS, + ACTIONS(4503), 1, + anon_sym_COMMA, + ACTIONS(4505), 1, + anon_sym_GT, + STATE(2005), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59602] = 5, ACTIONS(4371), 1, anon_sym_LPAREN, ACTIONS(4373), 1, anon_sym_LBRACE, ACTIONS(4375), 1, anon_sym_LBRACK, - STATE(73), 1, + STATE(64), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59260] = 5, - ACTIONS(3273), 1, + [59619] = 5, + ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(4495), 1, + ACTIONS(4507), 1, sym_identifier, - ACTIONS(4497), 1, + ACTIONS(4509), 1, anon_sym_STAR, - STATE(1967), 1, + STATE(1980), 1, sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59277] = 4, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(4499), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(74), 2, - sym_if_expression, - sym_block, - [59292] = 4, - ACTIONS(4501), 1, + [59636] = 4, + ACTIONS(4511), 1, anon_sym_DQUOTE, - STATE(1827), 1, + STATE(1828), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4402), 2, + ACTIONS(4404), 2, sym__string_content, sym_escape_sequence, - [59307] = 4, - ACTIONS(3634), 1, - anon_sym_BANG, - ACTIONS(3730), 1, - anon_sym_COLON_COLON, + [59651] = 5, + ACTIONS(4259), 1, + anon_sym_COLON, + ACTIONS(4513), 1, + anon_sym_COMMA, + ACTIONS(4515), 1, + anon_sym_PIPE, + STATE(1910), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59322] = 5, - ACTIONS(2480), 1, + [59668] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4517), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [59681] = 5, + ACTIONS(4075), 1, anon_sym_PLUS, ACTIONS(4503), 1, anon_sym_COMMA, ACTIONS(4505), 1, anon_sym_GT, - STATE(2000), 1, + STATE(2005), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59339] = 5, - ACTIONS(3273), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - sym_identifier, - ACTIONS(4109), 1, - anon_sym_STAR, - STATE(1976), 1, - sym_use_list, + [59698] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59356] = 5, - ACTIONS(4249), 1, - anon_sym_COLON, - ACTIONS(4507), 1, + ACTIONS(4519), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4509), 1, anon_sym_PIPE, - STATE(1912), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, + [59711] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(986), 1, sym_line_comment, - [59373] = 3, - ACTIONS(4053), 1, + ACTIONS(4521), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4523), 3, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59726] = 5, + ACTIONS(3305), 1, + anon_sym_LBRACE, + ACTIONS(4107), 1, + sym_identifier, + ACTIONS(4109), 1, + anon_sym_STAR, + STATE(1996), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4511), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + [59743] = 5, + ACTIONS(4263), 1, anon_sym_PIPE, - [59386] = 3, - ACTIONS(4053), 1, - anon_sym_PLUS, + ACTIONS(4525), 1, + anon_sym_SEMI, + ACTIONS(4527), 1, + anon_sym_COLON, + ACTIONS(4529), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4513), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [59399] = 4, - ACTIONS(4071), 1, + [59760] = 4, + ACTIONS(4089), 1, anon_sym_COLON, - ACTIONS(4161), 1, + ACTIONS(4152), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, + ACTIONS(3435), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59414] = 5, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4503), 1, - anon_sym_COMMA, - ACTIONS(4505), 1, - anon_sym_GT, - STATE(2000), 1, - aux_sym_type_arguments_repeat1, + [59775] = 3, + ACTIONS(4531), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59431] = 4, - ACTIONS(3), 1, + ACTIONS(4533), 3, + sym_self, + sym_super, + sym_crate, + [59788] = 5, + ACTIONS(4125), 1, + anon_sym_LPAREN, + ACTIONS(4535), 1, + anon_sym_RBRACK, + ACTIONS(4537), 1, + anon_sym_EQ, + STATE(2346), 1, + sym_meta_arguments, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(1069), 1, sym_line_comment, - ACTIONS(4515), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4517), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59446] = 4, - ACTIONS(3634), 1, + [59805] = 4, + ACTIONS(3646), 1, anon_sym_BANG, - ACTIONS(3636), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3530), 2, + ACTIONS(3522), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59461] = 5, - ACTIONS(4253), 1, + [59820] = 5, + ACTIONS(4257), 1, + anon_sym_RPAREN, + ACTIONS(4261), 1, + anon_sym_COMMA, + ACTIONS(4263), 1, anon_sym_PIPE, - ACTIONS(4519), 1, - anon_sym_SEMI, - ACTIONS(4521), 1, - anon_sym_COLON, - ACTIONS(4523), 1, - anon_sym_EQ, + STATE(2015), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59478] = 5, - ACTIONS(4247), 1, - anon_sym_RPAREN, - ACTIONS(4251), 1, + [59837] = 4, + ACTIONS(4539), 1, + anon_sym_RBRACE, + ACTIONS(4541), 1, anon_sym_COMMA, - ACTIONS(4253), 1, - anon_sym_PIPE, - STATE(2019), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1975), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59495] = 5, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(3850), 1, + [59851] = 4, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(322), 1, - sym_declaration_list, - STATE(2243), 1, - sym_where_clause, + ACTIONS(4075), 1, + anon_sym_PLUS, + STATE(1088), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59512] = 3, - ACTIONS(4525), 1, - anon_sym_in, + [59865] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4527), 3, - sym_self, - sym_super, - sym_crate, - [59525] = 4, - ACTIONS(4297), 1, - anon_sym_RPAREN, - ACTIONS(4299), 1, + ACTIONS(4543), 3, + anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_EQ, + [59875] = 4, + ACTIONS(4513), 1, anon_sym_COMMA, - STATE(2111), 1, - aux_sym_parameters_repeat1, + ACTIONS(4545), 1, + anon_sym_PIPE, + STATE(1910), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59539] = 4, - ACTIONS(3806), 1, - anon_sym_RBRACE, - ACTIONS(4529), 1, - anon_sym_COMMA, - STATE(1913), 1, - aux_sym_enum_variant_list_repeat2, + [59889] = 4, + ACTIONS(4547), 1, + anon_sym_EQ_GT, + ACTIONS(4549), 1, + anon_sym_AMP_AMP, + STATE(1932), 1, + aux_sym_let_chain_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59553] = 2, + [59903] = 4, + ACTIONS(4551), 1, + sym_identifier, + ACTIONS(4553), 1, + anon_sym_ref, + ACTIONS(4555), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4531), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [59563] = 4, - ACTIONS(4533), 1, + [59917] = 4, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(4535), 1, + ACTIONS(4559), 1, anon_sym_ref, - ACTIONS(4537), 1, + ACTIONS(4561), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59577] = 4, - ACTIONS(3778), 1, + [59931] = 4, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4539), 1, + ACTIONS(4563), 1, anon_sym_SEMI, - STATE(2442), 1, + STATE(2538), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59591] = 4, - ACTIONS(3273), 1, - anon_sym_LBRACE, - ACTIONS(4541), 1, - sym_identifier, - STATE(1889), 1, - sym_use_list, + [59945] = 4, + ACTIONS(4319), 1, + anon_sym_RPAREN, + ACTIONS(4321), 1, + anon_sym_COMMA, + STATE(2079), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59605] = 4, - ACTIONS(4543), 1, - sym_identifier, - ACTIONS(4545), 1, - anon_sym_ref, - ACTIONS(4547), 1, - sym_mutable_specifier, + [59959] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59619] = 4, - ACTIONS(4237), 1, - anon_sym_RPAREN, - ACTIONS(4239), 1, + ACTIONS(4565), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2074), 1, - aux_sym_parameters_repeat1, + [59969] = 4, + ACTIONS(3305), 1, + anon_sym_LBRACE, + ACTIONS(4567), 1, + sym_identifier, + STATE(1893), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59633] = 4, - ACTIONS(2480), 1, + [59983] = 4, + ACTIONS(2473), 1, anon_sym_PLUS, - ACTIONS(4549), 1, + ACTIONS(4569), 1, sym_mutable_specifier, - ACTIONS(4551), 1, + ACTIONS(4571), 1, sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59647] = 4, - ACTIONS(3780), 1, - anon_sym_LT, - ACTIONS(4553), 1, - anon_sym_EQ, - STATE(2527), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59661] = 4, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_GT, + [59997] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59675] = 4, - ACTIONS(3850), 1, - anon_sym_LBRACE, - ACTIONS(4559), 1, + ACTIONS(4475), 3, anon_sym_SEMI, - STATE(366), 1, - sym_declaration_list, + anon_sym_LBRACE, + anon_sym_COMMA, + [60007] = 4, + ACTIONS(3798), 1, + anon_sym_LT, + ACTIONS(4573), 1, + anon_sym_EQ, + STATE(2539), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59689] = 4, - ACTIONS(4061), 1, + [60021] = 4, + ACTIONS(4095), 1, anon_sym_LBRACE, - ACTIONS(4561), 1, + ACTIONS(4575), 1, anon_sym_SEMI, - STATE(466), 1, + STATE(468), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59703] = 4, - ACTIONS(2415), 1, + [60035] = 4, + ACTIONS(2417), 1, anon_sym_RPAREN, - ACTIONS(4563), 1, + ACTIONS(4577), 1, anon_sym_COMMA, - STATE(1792), 1, + STATE(1798), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59717] = 4, - ACTIONS(2345), 1, + [60049] = 4, + ACTIONS(2397), 1, anon_sym_RBRACK, - ACTIONS(4565), 1, + ACTIONS(4579), 1, anon_sym_COMMA, - STATE(1792), 1, + STATE(1798), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59731] = 3, - ACTIONS(4567), 1, - sym_identifier, + [60063] = 4, + ACTIONS(3864), 1, + anon_sym_LBRACE, + ACTIONS(4581), 1, + anon_sym_SEMI, + STATE(369), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4569), 2, - anon_sym_default, - anon_sym_union, - [59743] = 4, - ACTIONS(4053), 1, + [60077] = 4, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4571), 1, + ACTIONS(4583), 1, anon_sym_SEMI, - ACTIONS(4573), 1, + ACTIONS(4585), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59757] = 3, - ACTIONS(4575), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4577), 2, - anon_sym_default, - anon_sym_union, - [59769] = 4, - ACTIONS(4061), 1, + [60091] = 4, + ACTIONS(4095), 1, anon_sym_LBRACE, - ACTIONS(4579), 1, + ACTIONS(4587), 1, anon_sym_SEMI, - STATE(332), 1, + STATE(334), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59783] = 2, + [60105] = 4, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4589), 1, + anon_sym_as, + ACTIONS(4591), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4581), 3, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_EQ, - [59793] = 3, - ACTIONS(4097), 1, - anon_sym_COLON_COLON, + [60119] = 3, + ACTIONS(4593), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59805] = 4, - ACTIONS(4583), 1, + ACTIONS(4595), 2, + anon_sym_default, + anon_sym_union, + [60131] = 3, + ACTIONS(4597), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4599), 2, + anon_sym_default, + anon_sym_union, + [60143] = 4, + ACTIONS(4601), 1, anon_sym_RBRACE, - ACTIONS(4585), 1, + ACTIONS(4603), 1, anon_sym_COMMA, - STATE(1877), 1, + STATE(1885), 1, aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59819] = 2, + [60157] = 3, + ACTIONS(4115), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4588), 3, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60169] = 4, + ACTIONS(3276), 1, anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4606), 1, anon_sym_COMMA, - [59829] = 3, - ACTIONS(4592), 1, - anon_sym_COLON, + STATE(1887), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4590), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [59841] = 4, - ACTIONS(4594), 1, - anon_sym_RBRACE, - ACTIONS(4596), 1, + [60183] = 4, + ACTIONS(396), 1, + anon_sym_RPAREN, + ACTIONS(4609), 1, anon_sym_COMMA, - STATE(2003), 1, - aux_sym_struct_pattern_repeat1, + STATE(1887), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59855] = 2, + [60197] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4598), 3, + ACTIONS(4611), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [59865] = 4, - ACTIONS(4507), 1, - anon_sym_COMMA, - ACTIONS(4600), 1, - anon_sym_PIPE, - STATE(1912), 1, - aux_sym_closure_parameters_repeat1, + [60207] = 3, + ACTIONS(4615), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59879] = 4, - ACTIONS(4602), 1, - anon_sym_for, - ACTIONS(4604), 1, - anon_sym_loop, - ACTIONS(4606), 1, - anon_sym_while, + ACTIONS(4613), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [60219] = 4, + ACTIONS(4617), 1, + anon_sym_RBRACE, + ACTIONS(4619), 1, + anon_sym_COMMA, + STATE(2012), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59893] = 4, - ACTIONS(3293), 1, - anon_sym_RPAREN, - ACTIONS(4608), 1, - anon_sym_COMMA, - STATE(1884), 1, - aux_sym_arguments_repeat1, + [60233] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59907] = 4, - ACTIONS(404), 1, - anon_sym_RPAREN, - ACTIONS(4611), 1, - anon_sym_COMMA, - STATE(1884), 1, - aux_sym_arguments_repeat1, + ACTIONS(4621), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60243] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59921] = 4, - ACTIONS(4613), 1, + ACTIONS(4623), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [60253] = 4, + ACTIONS(4625), 1, anon_sym_RPAREN, - ACTIONS(4615), 1, + ACTIONS(4627), 1, anon_sym_COMMA, - STATE(2112), 1, + STATE(2097), 1, aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59935] = 4, - ACTIONS(4061), 1, + [60267] = 4, + ACTIONS(4095), 1, anon_sym_LBRACE, - ACTIONS(4617), 1, + ACTIONS(4629), 1, anon_sym_SEMI, - STATE(432), 1, + STATE(310), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59949] = 4, - ACTIONS(3427), 1, + [60281] = 4, + ACTIONS(4631), 1, + anon_sym_for, + ACTIONS(4633), 1, + anon_sym_loop, + ACTIONS(4635), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60295] = 4, + ACTIONS(2550), 1, anon_sym_LT2, - ACTIONS(4619), 1, + ACTIONS(4637), 1, + sym_identifier, + STATE(965), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60309] = 4, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(4639), 1, sym_identifier, - STATE(2481), 1, + STATE(2493), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59963] = 2, + [60323] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4621), 3, + ACTIONS(4641), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [60333] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4643), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [60343] = 4, + ACTIONS(4645), 1, anon_sym_RBRACE, + ACTIONS(4647), 1, anon_sym_COMMA, - [59973] = 4, + STATE(1901), 1, + aux_sym_use_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60357] = 4, ACTIONS(4503), 1, anon_sym_COMMA, ACTIONS(4505), 1, anon_sym_GT, - STATE(2000), 1, + STATE(2005), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59987] = 3, - ACTIONS(4150), 1, + [60371] = 3, + ACTIONS(4168), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, + ACTIONS(3435), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59999] = 4, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(4619), 1, - sym_identifier, - STATE(2471), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60013] = 4, - ACTIONS(4623), 1, - anon_sym_RBRACE, - ACTIONS(4625), 1, - anon_sym_COMMA, - STATE(1999), 1, - aux_sym_struct_pattern_repeat1, + [60383] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60027] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4627), 3, + ACTIONS(4650), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [60037] = 2, + [60393] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4629), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4652), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - [60047] = 4, - ACTIONS(4631), 1, + [60403] = 4, + ACTIONS(4654), 1, anon_sym_RBRACE, - ACTIONS(4633), 1, + ACTIONS(4656), 1, anon_sym_COMMA, - STATE(1960), 1, - aux_sym_use_list_repeat1, + STATE(2004), 1, + aux_sym_struct_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60417] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3353), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + [60427] = 4, + ACTIONS(4658), 1, + anon_sym_LBRACE, + ACTIONS(4660), 1, + anon_sym_AMP_AMP, + STATE(1908), 1, + aux_sym_let_chain_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60061] = 4, - ACTIONS(4635), 1, - anon_sym_RBRACE, - ACTIONS(4637), 1, - anon_sym_COMMA, - STATE(1897), 1, - aux_sym_use_list_repeat1, + [60441] = 4, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(4639), 1, + sym_identifier, + STATE(2483), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60075] = 2, + [60455] = 4, + ACTIONS(4513), 1, + anon_sym_COMMA, + ACTIONS(4663), 1, + anon_sym_PIPE, + STATE(2024), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4640), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [60085] = 4, - ACTIONS(2498), 1, + [60469] = 4, + ACTIONS(2510), 1, anon_sym_RPAREN, - ACTIONS(4642), 1, + ACTIONS(4665), 1, anon_sym_COMMA, - STATE(1987), 1, + STATE(1992), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60099] = 4, - ACTIONS(4644), 1, + [60483] = 4, + ACTIONS(4667), 1, anon_sym_COMMA, - ACTIONS(4646), 1, + ACTIONS(4669), 1, anon_sym_GT, - STATE(1981), 1, + STATE(1989), 1, aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60113] = 2, + [60497] = 4, + ACTIONS(4671), 1, + sym_identifier, + ACTIONS(4673), 1, + anon_sym_ref, + ACTIONS(4675), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60511] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4648), 3, + ACTIONS(4677), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [60123] = 2, + [60521] = 4, + ACTIONS(3846), 1, + anon_sym_GT, + ACTIONS(4679), 1, + anon_sym_COMMA, + STATE(1972), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4650), 3, - anon_sym_SEMI, + [60535] = 4, + ACTIONS(4681), 1, anon_sym_RBRACE, + ACTIONS(4683), 1, anon_sym_COMMA, - [60133] = 4, - ACTIONS(2550), 1, - anon_sym_LT2, - ACTIONS(4652), 1, - sym_identifier, - STATE(962), 1, - sym_type_arguments, + STATE(1916), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60147] = 4, - ACTIONS(4654), 1, - sym_identifier, - ACTIONS(4656), 1, - anon_sym_ref, - ACTIONS(4658), 1, - sym_mutable_specifier, + [60549] = 3, + ACTIONS(4688), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60161] = 4, - ACTIONS(3852), 1, - anon_sym_GT, - ACTIONS(4660), 1, + ACTIONS(4686), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1968), 1, - aux_sym_type_parameters_repeat1, + [60561] = 4, + ACTIONS(3836), 1, + anon_sym_RBRACE, + ACTIONS(4690), 1, + anon_sym_COMMA, + STATE(1916), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60175] = 4, - ACTIONS(3854), 1, + [60575] = 4, + ACTIONS(3838), 1, anon_sym_GT, - ACTIONS(4662), 1, + ACTIONS(4692), 1, anon_sym_COMMA, - STATE(1968), 1, + STATE(1972), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60189] = 2, + [60589] = 4, + ACTIONS(3864), 1, + anon_sym_LBRACE, + ACTIONS(4694), 1, + anon_sym_SEMI, + STATE(346), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4664), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [60199] = 4, - ACTIONS(4061), 1, - anon_sym_LBRACE, - ACTIONS(4666), 1, - anon_sym_SEMI, - STATE(410), 1, - sym_block, + [60603] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60213] = 4, - ACTIONS(4053), 1, + ACTIONS(4696), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [60613] = 4, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4668), 1, + ACTIONS(4698), 1, anon_sym_SEMI, - ACTIONS(4670), 1, + ACTIONS(4700), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60227] = 4, - ACTIONS(3850), 1, + [60627] = 4, + ACTIONS(4095), 1, anon_sym_LBRACE, - ACTIONS(4672), 1, + ACTIONS(4702), 1, anon_sym_SEMI, - STATE(459), 1, - sym_declaration_list, + STATE(409), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60241] = 4, - ACTIONS(3850), 1, + [60641] = 4, + ACTIONS(3864), 1, anon_sym_LBRACE, - ACTIONS(4674), 1, + ACTIONS(4704), 1, anon_sym_SEMI, - STATE(344), 1, + STATE(461), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60255] = 4, - ACTIONS(4507), 1, - anon_sym_COMMA, - ACTIONS(4676), 1, - anon_sym_PIPE, - STATE(2007), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60269] = 4, - ACTIONS(4678), 1, - anon_sym_RBRACE, - ACTIONS(4680), 1, - anon_sym_COMMA, - STATE(1913), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60283] = 4, - ACTIONS(4683), 1, + [60655] = 4, + ACTIONS(4706), 1, sym_identifier, - ACTIONS(4685), 1, + ACTIONS(4708), 1, anon_sym_ref, - ACTIONS(4687), 1, + ACTIONS(4710), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60297] = 4, - ACTIONS(4053), 1, + [60669] = 4, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4689), 1, + ACTIONS(4712), 1, anon_sym_SEMI, - ACTIONS(4691), 1, + ACTIONS(4714), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60311] = 4, - ACTIONS(4253), 1, - anon_sym_PIPE, - ACTIONS(4693), 1, - anon_sym_EQ_GT, - ACTIONS(4695), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60325] = 4, - ACTIONS(3508), 1, + [60683] = 4, + ACTIONS(3524), 1, anon_sym_COLON_COLON, - ACTIONS(3534), 1, + ACTIONS(3536), 1, anon_sym_COLON, - STATE(2090), 1, + STATE(2100), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60339] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4697), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60349] = 4, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4699), 1, - anon_sym_SEMI, - ACTIONS(4701), 1, - anon_sym_EQ, + [60697] = 4, + ACTIONS(4263), 1, + anon_sym_PIPE, + ACTIONS(4716), 1, + anon_sym_EQ_GT, + ACTIONS(4718), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60363] = 3, - ACTIONS(4705), 1, + [60711] = 3, + ACTIONS(4722), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4703), 2, + ACTIONS(4720), 2, anon_sym_RBRACE, anon_sym_COMMA, - [60375] = 4, - ACTIONS(4061), 1, + [60723] = 4, + ACTIONS(4095), 1, anon_sym_LBRACE, - ACTIONS(4707), 1, + ACTIONS(4724), 1, anon_sym_SEMI, STATE(404), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60389] = 4, - ACTIONS(4709), 1, + [60737] = 4, + ACTIONS(4726), 1, anon_sym_RBRACE, - ACTIONS(4711), 1, + ACTIONS(4728), 1, anon_sym_COMMA, - STATE(2010), 1, + STATE(2034), 1, aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60403] = 4, - ACTIONS(4713), 1, - anon_sym_RBRACE, - ACTIONS(4715), 1, - anon_sym_COMMA, - STATE(1927), 1, - aux_sym_field_declaration_list_repeat1, + [60751] = 4, + ACTIONS(4658), 1, + anon_sym_EQ_GT, + ACTIONS(4730), 1, + anon_sym_AMP_AMP, + STATE(1932), 1, + aux_sym_let_chain_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60417] = 3, - ACTIONS(4719), 1, - anon_sym_EQ, + [60765] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4717), 2, - anon_sym_RBRACE, + ACTIONS(4469), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [60429] = 4, - ACTIONS(3866), 1, + [60777] = 4, + ACTIONS(3852), 1, anon_sym_RBRACE, - ACTIONS(4721), 1, + ACTIONS(4733), 1, anon_sym_COMMA, - STATE(2077), 1, + STATE(2066), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60443] = 3, - ACTIONS(4053), 1, + [60791] = 4, + ACTIONS(4075), 1, anon_sym_PLUS, + ACTIONS(4735), 1, + anon_sym_SEMI, + ACTIONS(4737), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4723), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60455] = 4, - ACTIONS(3866), 1, + [60805] = 4, + ACTIONS(3852), 1, anon_sym_RBRACE, - ACTIONS(4721), 1, + ACTIONS(4733), 1, anon_sym_COMMA, - STATE(2076), 1, + STATE(2064), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60469] = 4, - ACTIONS(4725), 1, + [60819] = 4, + ACTIONS(4739), 1, anon_sym_RPAREN, - ACTIONS(4727), 1, + ACTIONS(4741), 1, anon_sym_COMMA, - STATE(2067), 1, + STATE(2055), 1, aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60483] = 4, - ACTIONS(3532), 1, + [60833] = 4, + ACTIONS(4469), 1, + anon_sym_RPAREN, + ACTIONS(4743), 1, + anon_sym_COMMA, + STATE(1938), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60847] = 3, + ACTIONS(3173), 1, anon_sym_COLON_COLON, - ACTIONS(3534), 1, - anon_sym_COLON, - STATE(2090), 1, - sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60497] = 4, - ACTIONS(3846), 1, - anon_sym_RBRACE, - ACTIONS(4729), 1, + ACTIONS(4269), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1913), 1, - aux_sym_enum_variant_list_repeat2, + [60859] = 4, + ACTIONS(3528), 1, + anon_sym_COLON_COLON, + ACTIONS(3536), 1, + anon_sym_COLON, + STATE(2100), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60511] = 4, - ACTIONS(3778), 1, + [60873] = 4, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4731), 1, + ACTIONS(4746), 1, anon_sym_SEMI, - STATE(2415), 1, + STATE(2440), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60525] = 2, + [60887] = 4, + ACTIONS(764), 1, + anon_sym_RPAREN, + ACTIONS(4748), 1, + anon_sym_COMMA, + STATE(1938), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4458), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [60535] = 4, - ACTIONS(4733), 1, + [60901] = 4, + ACTIONS(4750), 1, anon_sym_for, - ACTIONS(4735), 1, + ACTIONS(4752), 1, anon_sym_loop, - ACTIONS(4737), 1, + ACTIONS(4754), 1, anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60549] = 4, - ACTIONS(4061), 1, - anon_sym_LBRACE, - ACTIONS(4739), 1, + [60915] = 4, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4756), 1, anon_sym_SEMI, - STATE(389), 1, - sym_block, + ACTIONS(4758), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60563] = 3, - ACTIONS(4253), 1, - anon_sym_PIPE, + [60929] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4741), 2, - anon_sym_RBRACE, + ACTIONS(4760), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [60575] = 4, - ACTIONS(4743), 1, + [60941] = 4, + ACTIONS(4762), 1, anon_sym_RBRACE, - ACTIONS(4745), 1, + ACTIONS(4764), 1, anon_sym_COMMA, - STATE(2098), 1, + STATE(2104), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60589] = 4, - ACTIONS(3574), 1, + [60955] = 4, + ACTIONS(3580), 1, anon_sym_COLON_COLON, - ACTIONS(3927), 1, + ACTIONS(3907), 1, anon_sym_BANG, - ACTIONS(4747), 1, + ACTIONS(4766), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60603] = 4, - ACTIONS(4749), 1, + [60969] = 4, + ACTIONS(4768), 1, sym_identifier, - ACTIONS(4751), 1, + ACTIONS(4770), 1, anon_sym_await, - ACTIONS(4753), 1, + ACTIONS(4772), 1, sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60617] = 4, - ACTIONS(2550), 1, - anon_sym_LT2, - ACTIONS(4652), 1, - sym_identifier, - STATE(811), 1, - sym_type_arguments, + [60983] = 3, + ACTIONS(4263), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60631] = 4, - ACTIONS(4053), 1, + ACTIONS(4774), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [60995] = 4, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4755), 1, + ACTIONS(4776), 1, anon_sym_SEMI, - ACTIONS(4757), 1, + ACTIONS(4778), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60645] = 4, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4759), 1, + [61009] = 4, + ACTIONS(3864), 1, + anon_sym_LBRACE, + ACTIONS(4780), 1, anon_sym_SEMI, - ACTIONS(4761), 1, - anon_sym_EQ, + STATE(374), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60659] = 4, - ACTIONS(3850), 1, - anon_sym_LBRACE, - ACTIONS(4763), 1, + [61023] = 4, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4782), 1, anon_sym_SEMI, - STATE(374), 1, - sym_declaration_list, + ACTIONS(4784), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60673] = 3, - ACTIONS(4073), 1, + [61037] = 3, + ACTIONS(4091), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, + ACTIONS(3435), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [60685] = 4, - ACTIONS(3850), 1, - anon_sym_LBRACE, - ACTIONS(4765), 1, - anon_sym_SEMI, - STATE(465), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60699] = 2, + [61049] = 4, + ACTIONS(2550), 1, + anon_sym_LT2, + ACTIONS(4637), 1, + sym_identifier, + STATE(819), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2375), 3, + [61063] = 4, + ACTIONS(3864), 1, + anon_sym_LBRACE, + ACTIONS(4786), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [60709] = 3, - ACTIONS(4053), 1, - anon_sym_PLUS, + STATE(467), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4452), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60721] = 2, + [61077] = 4, + ACTIONS(4788), 1, + anon_sym_for, + ACTIONS(4790), 1, + anon_sym_loop, + ACTIONS(4792), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4767), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60731] = 4, - ACTIONS(614), 1, + [61091] = 4, + ACTIONS(620), 1, anon_sym_RBRACK, - ACTIONS(4769), 1, + ACTIONS(4794), 1, anon_sym_COMMA, - STATE(1952), 1, + STATE(1959), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60745] = 4, - ACTIONS(2560), 1, + [61105] = 4, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(4771), 1, + ACTIONS(4796), 1, anon_sym_COLON_COLON, - STATE(1129), 1, + STATE(1043), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60759] = 4, - ACTIONS(4773), 1, - anon_sym_for, - ACTIONS(4775), 1, - anon_sym_loop, - ACTIONS(4777), 1, - anon_sym_while, + [61119] = 4, + ACTIONS(3258), 1, + anon_sym_RBRACK, + ACTIONS(4798), 1, + anon_sym_COMMA, + STATE(1959), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60773] = 4, - ACTIONS(4452), 1, - anon_sym_RPAREN, - ACTIONS(4779), 1, - anon_sym_COMMA, - STATE(1951), 1, - aux_sym_parameters_repeat1, + [61133] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60787] = 4, - ACTIONS(3303), 1, - anon_sym_RBRACK, - ACTIONS(4782), 1, - anon_sym_COMMA, - STATE(1952), 1, - aux_sym_array_expression_repeat1, + ACTIONS(2377), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [61143] = 4, + ACTIONS(3864), 1, + anon_sym_LBRACE, + ACTIONS(4801), 1, + anon_sym_SEMI, + STATE(430), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60801] = 4, - ACTIONS(632), 1, + [61157] = 4, + ACTIONS(4095), 1, anon_sym_LBRACE, - ACTIONS(4785), 1, - anon_sym_move, - STATE(233), 1, + ACTIONS(4803), 1, + anon_sym_SEMI, + STATE(299), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60815] = 4, - ACTIONS(3850), 1, + [61171] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4805), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [61181] = 4, + ACTIONS(632), 1, anon_sym_LBRACE, - ACTIONS(4787), 1, - anon_sym_SEMI, - STATE(428), 1, - sym_declaration_list, + ACTIONS(4807), 1, + anon_sym_move, + STATE(239), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60829] = 4, - ACTIONS(4061), 1, + [61195] = 4, + ACTIONS(4095), 1, anon_sym_LBRACE, - ACTIONS(4789), 1, + ACTIONS(4809), 1, anon_sym_SEMI, - STATE(391), 1, + STATE(386), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60843] = 3, - ACTIONS(3171), 1, - anon_sym_COLON_COLON, + [61209] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4258), 2, - anon_sym_RPAREN, + ACTIONS(4811), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - [60855] = 4, - ACTIONS(3850), 1, + [61219] = 4, + ACTIONS(3864), 1, anon_sym_LBRACE, - ACTIONS(4791), 1, + ACTIONS(4813), 1, anon_sym_SEMI, - STATE(382), 1, + STATE(384), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60869] = 4, - ACTIONS(3780), 1, + [61233] = 4, + ACTIONS(3798), 1, anon_sym_LT, - ACTIONS(4793), 1, + ACTIONS(4815), 1, anon_sym_EQ, - STATE(2420), 1, + STATE(2457), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60883] = 2, + [61247] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4795), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4817), 2, anon_sym_COMMA, - [60893] = 4, - ACTIONS(3355), 1, - anon_sym_RBRACE, - ACTIONS(4797), 1, - anon_sym_COMMA, - STATE(1897), 1, - aux_sym_use_list_repeat1, + anon_sym_GT, + [61259] = 4, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(4819), 1, + sym_identifier, + STATE(2483), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60907] = 4, - ACTIONS(3427), 1, + [61273] = 4, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(4799), 1, + ACTIONS(4819), 1, sym_identifier, - STATE(2471), 1, + STATE(2493), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60921] = 4, - ACTIONS(768), 1, - anon_sym_RPAREN, - ACTIONS(4801), 1, + [61287] = 4, + ACTIONS(4426), 1, + anon_sym_GT, + ACTIONS(4821), 1, anon_sym_COMMA, - STATE(1951), 1, - aux_sym_parameters_repeat1, + STATE(1972), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60935] = 4, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(4799), 1, - sym_identifier, - STATE(2481), 1, - sym_type_arguments, + [61301] = 3, + ACTIONS(4826), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60949] = 2, + ACTIONS(4824), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [61313] = 3, + ACTIONS(4263), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4803), 3, - anon_sym_SEMI, + ACTIONS(4828), 2, anon_sym_RBRACE, anon_sym_COMMA, - [60959] = 3, - ACTIONS(4053), 1, - anon_sym_PLUS, + [61325] = 4, + ACTIONS(3367), 1, + anon_sym_RBRACE, + ACTIONS(4830), 1, + anon_sym_COMMA, + STATE(1901), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4805), 2, - anon_sym_COMMA, - anon_sym_GT, - [60971] = 2, + [61339] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4807), 3, + ACTIONS(4832), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [60981] = 2, + [61349] = 4, + ACTIONS(3209), 1, + anon_sym_EQ_GT, + ACTIONS(4549), 1, + anon_sym_AMP_AMP, + STATE(1866), 1, + aux_sym_let_chain_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4809), 3, + [61363] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4834), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [60991] = 4, - ACTIONS(4426), 1, - anon_sym_GT, - ACTIONS(4811), 1, - anon_sym_COMMA, - STATE(1968), 1, - aux_sym_type_parameters_repeat1, + [61373] = 3, + ACTIONS(4343), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61005] = 2, + ACTIONS(4426), 2, + anon_sym_COMMA, + anon_sym_GT, + [61385] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4814), 3, + ACTIONS(4836), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [61015] = 2, + [61395] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4816), 3, + ACTIONS(4838), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [61025] = 4, - ACTIONS(3427), 1, + [61405] = 4, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(4818), 1, + ACTIONS(4840), 1, sym_identifier, - STATE(2471), 1, + STATE(2483), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61039] = 4, - ACTIONS(3427), 1, + [61419] = 4, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(4818), 1, + ACTIONS(4840), 1, sym_identifier, - STATE(2481), 1, + STATE(2493), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61053] = 3, - ACTIONS(4329), 1, - anon_sym_EQ, + [61433] = 4, + ACTIONS(4842), 1, + anon_sym_RBRACE, + ACTIONS(4844), 1, + anon_sym_COMMA, + STATE(1984), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4426), 2, + [61447] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4847), 2, anon_sym_COMMA, anon_sym_GT, - [61065] = 4, - ACTIONS(2560), 1, - anon_sym_LBRACE, - ACTIONS(4820), 1, - anon_sym_COLON_COLON, - STATE(1129), 1, - sym_field_initializer_list, + [61459] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61079] = 4, - ACTIONS(4061), 1, + ACTIONS(4849), 2, + anon_sym_COMMA, + anon_sym_GT, + [61471] = 4, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(4822), 1, - anon_sym_SEMI, - STATE(296), 1, - sym_block, + ACTIONS(4851), 1, + anon_sym_COLON_COLON, + STATE(1043), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61093] = 2, + [61485] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4824), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4853), 2, anon_sym_COMMA, - [61103] = 3, - ACTIONS(4828), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4826), 2, - anon_sym_RBRACE, + anon_sym_GT, + [61497] = 4, + ACTIONS(4855), 1, anon_sym_COMMA, - [61115] = 3, - ACTIONS(4253), 1, - anon_sym_PIPE, + ACTIONS(4857), 1, + anon_sym_GT, + STATE(2011), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4830), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61127] = 4, - ACTIONS(3798), 1, + [61511] = 4, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4832), 1, + ACTIONS(4859), 1, anon_sym_SEMI, - STATE(887), 1, + STATE(996), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61141] = 3, - ACTIONS(4053), 1, - anon_sym_PLUS, + [61525] = 4, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(4857), 1, + anon_sym_GT, + STATE(2322), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4834), 2, - anon_sym_COMMA, - anon_sym_GT, - [61153] = 4, - ACTIONS(4836), 1, + [61539] = 4, + ACTIONS(4861), 1, + anon_sym_RPAREN, + ACTIONS(4863), 1, anon_sym_COMMA, - ACTIONS(4838), 1, - anon_sym_GT, - STATE(2022), 1, - aux_sym_for_lifetimes_repeat1, + STATE(1992), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61167] = 4, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(4838), 1, - anon_sym_GT, - STATE(2262), 1, - sym_lifetime, + [61553] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61181] = 4, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(4107), 1, - sym_identifier, - STATE(2481), 1, - sym_type_arguments, + ACTIONS(4861), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [61565] = 3, + ACTIONS(2473), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61195] = 4, - ACTIONS(4840), 1, - anon_sym_RBRACE, - ACTIONS(4842), 1, + ACTIONS(4853), 2, anon_sym_COMMA, - STATE(1984), 1, - aux_sym_struct_pattern_repeat1, + anon_sym_GT, + [61577] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61209] = 4, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(4845), 1, - sym_identifier, - STATE(2471), 1, - sym_type_arguments, + ACTIONS(4866), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [61587] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61223] = 4, - ACTIONS(3427), 1, + ACTIONS(4868), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [61597] = 4, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(4845), 1, + ACTIONS(4107), 1, sym_identifier, - STATE(2481), 1, + STATE(2493), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61237] = 4, - ACTIONS(4847), 1, - anon_sym_RPAREN, - ACTIONS(4849), 1, + [61611] = 4, + ACTIONS(4853), 1, + anon_sym_GT, + ACTIONS(4870), 1, anon_sym_COMMA, - STATE(1987), 1, - aux_sym_tuple_type_repeat1, + STATE(1998), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61251] = 3, - ACTIONS(4053), 1, - anon_sym_PLUS, + [61625] = 4, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(4873), 1, + sym_identifier, + STATE(2483), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4847), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61263] = 3, - ACTIONS(4053), 1, - anon_sym_PLUS, + [61639] = 4, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(4873), 1, + sym_identifier, + STATE(2493), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4852), 2, - anon_sym_COMMA, + [61653] = 4, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(4875), 1, anon_sym_GT, - [61275] = 3, - ACTIONS(4053), 1, - anon_sym_PLUS, + STATE(2322), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4854), 2, - anon_sym_COMMA, - anon_sym_GT, - [61287] = 4, + [61667] = 4, ACTIONS(2550), 1, anon_sym_LT2, - ACTIONS(4856), 1, + ACTIONS(4877), 1, sym_identifier, - STATE(1192), 1, + STATE(1196), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61301] = 4, - ACTIONS(3427), 1, + [61681] = 4, + ACTIONS(3437), 1, anon_sym_LT2, ACTIONS(4107), 1, sym_identifier, - STATE(2471), 1, + STATE(2483), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61315] = 4, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4858), 1, - anon_sym_SEMI, - ACTIONS(4860), 1, - anon_sym_EQ, + [61695] = 4, + ACTIONS(4023), 1, + anon_sym_RBRACE, + ACTIONS(4879), 1, + anon_sym_COMMA, + STATE(1984), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61329] = 4, - ACTIONS(4061), 1, - anon_sym_LBRACE, - ACTIONS(4862), 1, - anon_sym_SEMI, - STATE(361), 1, - sym_block, + [61709] = 4, + ACTIONS(900), 1, + anon_sym_GT, + ACTIONS(4881), 1, + anon_sym_COMMA, + STATE(1998), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61343] = 4, - ACTIONS(630), 1, + [61723] = 4, + ACTIONS(624), 1, anon_sym_RBRACK, - ACTIONS(3175), 1, + ACTIONS(3159), 1, anon_sym_COMMA, - STATE(1952), 1, + STATE(1959), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61357] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4864), 1, - anon_sym_move, - STATE(1054), 1, - sym_block, + [61737] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61371] = 4, + ACTIONS(4883), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [61747] = 4, ACTIONS(2550), 1, anon_sym_LT2, - ACTIONS(4856), 1, + ACTIONS(4877), 1, sym_identifier, - STATE(1189), 1, + STATE(1195), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61385] = 4, - ACTIONS(4866), 1, - anon_sym_RPAREN, - ACTIONS(4868), 1, - anon_sym_COMMA, - STATE(1998), 1, - aux_sym_meta_arguments_repeat1, + [61761] = 4, + ACTIONS(3209), 1, + anon_sym_LBRACE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + STATE(2132), 1, + aux_sym_let_chain_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61399] = 4, - ACTIONS(4017), 1, + [61775] = 4, + ACTIONS(4887), 1, anon_sym_RBRACE, - ACTIONS(4871), 1, + ACTIONS(4889), 1, anon_sym_COMMA, - STATE(1984), 1, - aux_sym_struct_pattern_repeat1, + STATE(1936), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61413] = 4, - ACTIONS(896), 1, + [61789] = 4, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4894), 1, anon_sym_GT, - ACTIONS(4873), 1, + STATE(2011), 1, + aux_sym_for_lifetimes_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61803] = 4, + ACTIONS(3995), 1, + anon_sym_RBRACE, + ACTIONS(4896), 1, anon_sym_COMMA, - STATE(2009), 1, - aux_sym_type_arguments_repeat1, + STATE(1984), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61427] = 3, - ACTIONS(4249), 1, + [61817] = 3, + ACTIONS(4900), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4875), 2, + ACTIONS(4898), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_PIPE, - [61439] = 3, - ACTIONS(2480), 1, + [61829] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4902), 1, + anon_sym_move, + STATE(1077), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61843] = 4, + ACTIONS(2383), 1, + anon_sym_RPAREN, + ACTIONS(4904), 1, + anon_sym_COMMA, + STATE(1798), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61857] = 3, + ACTIONS(4075), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4854), 2, + ACTIONS(4906), 2, anon_sym_COMMA, anon_sym_GT, - [61451] = 4, - ACTIONS(4003), 1, - anon_sym_RBRACE, - ACTIONS(4877), 1, + [61869] = 4, + ACTIONS(4095), 1, + anon_sym_LBRACE, + ACTIONS(4908), 1, + anon_sym_SEMI, + STATE(359), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61883] = 4, + ACTIONS(4910), 1, + anon_sym_RPAREN, + ACTIONS(4912), 1, anon_sym_COMMA, - STATE(1984), 1, - aux_sym_struct_pattern_repeat1, + STATE(2018), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61465] = 3, - ACTIONS(4881), 1, - anon_sym_COLON, + [61897] = 4, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(4915), 1, + sym_identifier, + STATE(2483), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4879), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61477] = 4, - ACTIONS(3427), 1, + [61911] = 4, + ACTIONS(3864), 1, + anon_sym_LBRACE, + ACTIONS(4917), 1, + anon_sym_SEMI, + STATE(295), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61925] = 4, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(4883), 1, + ACTIONS(4915), 1, sym_identifier, - STATE(2471), 1, + STATE(2493), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61491] = 4, - ACTIONS(3427), 1, + [61939] = 4, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(4883), 1, + ACTIONS(4919), 1, sym_identifier, - STATE(2481), 1, + STATE(2493), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61505] = 4, - ACTIONS(4875), 1, + [61953] = 3, + ACTIONS(4259), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4921), 2, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(4885), 1, + [61965] = 4, + ACTIONS(4921), 1, + anon_sym_PIPE, + ACTIONS(4923), 1, anon_sym_COMMA, - STATE(2007), 1, + STATE(2024), 1, aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61519] = 4, + [61979] = 4, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - STATE(1042), 1, + STATE(1059), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61533] = 4, - ACTIONS(4854), 1, - anon_sym_GT, - ACTIONS(4888), 1, - anon_sym_COMMA, - STATE(2009), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61547] = 4, - ACTIONS(3836), 1, - anon_sym_RBRACE, - ACTIONS(4891), 1, - anon_sym_COMMA, - STATE(1877), 1, - aux_sym_field_initializer_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61561] = 4, - ACTIONS(3427), 1, + [61993] = 4, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(4893), 1, + ACTIONS(4919), 1, sym_identifier, - STATE(2481), 1, + STATE(2483), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61575] = 2, + [62007] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4895), 3, + ACTIONS(4926), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [61585] = 4, - ACTIONS(3850), 1, - anon_sym_LBRACE, - ACTIONS(4897), 1, - anon_sym_SEMI, - STATE(330), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61599] = 3, - ACTIONS(4901), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4899), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61611] = 4, - ACTIONS(3427), 1, - anon_sym_LT2, - ACTIONS(4893), 1, - sym_identifier, - STATE(2471), 1, - sym_type_arguments, + [62017] = 4, + ACTIONS(4547), 1, + anon_sym_EQ_GT, + ACTIONS(4549), 1, + anon_sym_AMP_AMP, + STATE(1932), 1, + aux_sym_let_chain_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61625] = 4, - ACTIONS(3850), 1, + [62031] = 4, + ACTIONS(3864), 1, anon_sym_LBRACE, - ACTIONS(4903), 1, + ACTIONS(4928), 1, anon_sym_SEMI, - STATE(317), 1, + STATE(320), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61639] = 4, - ACTIONS(4079), 1, - anon_sym_LBRACE, - ACTIONS(4905), 1, - anon_sym_SEMI, - STATE(1021), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61653] = 4, - ACTIONS(4053), 1, + [62045] = 4, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4907), 1, + ACTIONS(4930), 1, anon_sym_SEMI, - ACTIONS(4909), 1, + ACTIONS(4932), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61667] = 4, - ACTIONS(2389), 1, - anon_sym_RPAREN, - ACTIONS(4911), 1, - anon_sym_COMMA, - STATE(1792), 1, - aux_sym_tuple_pattern_repeat1, + [62059] = 4, + ACTIONS(3864), 1, + anon_sym_LBRACE, + ACTIONS(4934), 1, + anon_sym_SEMI, + STATE(293), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61681] = 4, - ACTIONS(4293), 1, + [62073] = 4, + ACTIONS(4331), 1, anon_sym_COMMA, - ACTIONS(4295), 1, + ACTIONS(4333), 1, anon_sym_GT, - STATE(2091), 1, + STATE(2103), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61695] = 4, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(4913), 1, - anon_sym_GT, - STATE(2262), 1, - sym_lifetime, + [62087] = 4, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(4936), 1, + anon_sym_SEMI, + STATE(2406), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61709] = 4, - ACTIONS(4915), 1, + [62101] = 4, + ACTIONS(3788), 1, + anon_sym_RBRACE, + ACTIONS(4938), 1, anon_sym_COMMA, - ACTIONS(4918), 1, - anon_sym_GT, - STATE(2022), 1, - aux_sym_for_lifetimes_repeat1, + STATE(1885), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61723] = 3, - ACTIONS(4053), 1, - anon_sym_PLUS, + [62115] = 3, + ACTIONS(4942), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4920), 2, + ACTIONS(4940), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [61735] = 4, - ACTIONS(4079), 1, + [62127] = 4, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(4944), 1, anon_sym_SEMI, - STATE(998), 1, + STATE(990), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61749] = 3, - ACTIONS(4053), 1, - anon_sym_PLUS, + [62141] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4924), 2, + ACTIONS(4946), 3, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [61761] = 4, - ACTIONS(3798), 1, + [62151] = 4, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, + ACTIONS(4948), 1, anon_sym_SEMI, - STATE(1028), 1, + STATE(957), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61775] = 4, - ACTIONS(3850), 1, + [62165] = 4, + ACTIONS(3864), 1, anon_sym_LBRACE, - ACTIONS(4928), 1, + ACTIONS(4950), 1, anon_sym_SEMI, - STATE(293), 1, + STATE(317), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61789] = 4, - ACTIONS(3850), 1, + [62179] = 4, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, + ACTIONS(4952), 1, anon_sym_SEMI, - STATE(291), 1, - sym_declaration_list, + STATE(1006), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61803] = 4, - ACTIONS(4079), 1, + [62193] = 4, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(4932), 1, + ACTIONS(4954), 1, anon_sym_SEMI, - STATE(984), 1, + STATE(1015), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61817] = 4, - ACTIONS(3427), 1, + [62207] = 4, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(3748), 1, + ACTIONS(3742), 1, anon_sym_LBRACE, - STATE(1347), 1, + STATE(1352), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61831] = 4, - ACTIONS(4079), 1, - anon_sym_LBRACE, - ACTIONS(4934), 1, - anon_sym_SEMI, - STATE(959), 1, - sym_block, + [62221] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61845] = 4, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4936), 1, + ACTIONS(4956), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62233] = 4, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(4958), 1, anon_sym_SEMI, - ACTIONS(4938), 1, - anon_sym_EQ, + STATE(1023), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61859] = 4, - ACTIONS(3778), 1, + [62247] = 4, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4940), 1, + ACTIONS(4960), 1, anon_sym_SEMI, - STATE(2524), 1, + STATE(2522), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61873] = 4, - ACTIONS(4942), 1, - anon_sym_RPAREN, - ACTIONS(4944), 1, - anon_sym_COMMA, - STATE(2067), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [62261] = 4, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4962), 1, + anon_sym_SEMI, + ACTIONS(4964), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61887] = 4, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(4946), 1, + [62275] = 4, + ACTIONS(4095), 1, + anon_sym_LBRACE, + ACTIONS(4966), 1, anon_sym_SEMI, - STATE(2395), 1, - sym_where_clause, + STATE(390), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61901] = 4, - ACTIONS(4079), 1, + [62289] = 4, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(4948), 1, + ACTIONS(4968), 1, anon_sym_SEMI, - STATE(936), 1, + STATE(1032), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61915] = 4, - ACTIONS(3798), 1, + [62303] = 4, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4950), 1, + ACTIONS(4970), 1, anon_sym_SEMI, - STATE(928), 1, + STATE(987), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61929] = 4, - ACTIONS(3798), 1, + [62317] = 4, + ACTIONS(4972), 1, + anon_sym_RPAREN, + ACTIONS(4974), 1, + anon_sym_COMMA, + STATE(2055), 1, + aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62331] = 4, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4952), 1, + ACTIONS(4976), 1, anon_sym_SEMI, - STATE(917), 1, + STATE(1005), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61943] = 4, - ACTIONS(4079), 1, + [62345] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4978), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62357] = 4, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(4954), 1, + ACTIONS(4980), 1, anon_sym_SEMI, - STATE(904), 1, + STATE(985), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61957] = 2, + [62371] = 4, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(4982), 1, + anon_sym_SEMI, + STATE(2546), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4956), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [62385] = 4, + ACTIONS(4984), 1, + anon_sym_RPAREN, + ACTIONS(4986), 1, anon_sym_COMMA, - [61967] = 4, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(4958), 1, - anon_sym_SEMI, - STATE(2521), 1, - sym_where_clause, + STATE(2055), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61981] = 4, - ACTIONS(4079), 1, + [62399] = 4, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(4960), 1, + ACTIONS(4989), 1, anon_sym_SEMI, - STATE(851), 1, + STATE(973), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61995] = 3, - ACTIONS(4053), 1, + [62413] = 4, + ACTIONS(4991), 1, + anon_sym_RPAREN, + ACTIONS(4993), 1, + anon_sym_COMMA, + STATE(2055), 1, + aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62427] = 3, + ACTIONS(4075), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4962), 2, + ACTIONS(4995), 2, anon_sym_RPAREN, anon_sym_COMMA, - [62007] = 4, - ACTIONS(3850), 1, + [62439] = 4, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(4964), 1, + ACTIONS(4997), 1, anon_sym_SEMI, - STATE(288), 1, - sym_declaration_list, + STATE(953), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62021] = 4, - ACTIONS(4079), 1, - anon_sym_LBRACE, - ACTIONS(4966), 1, - anon_sym_SEMI, - STATE(822), 1, - sym_block, + [62453] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62035] = 4, - ACTIONS(3798), 1, + ACTIONS(4999), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62465] = 4, + ACTIONS(760), 1, + anon_sym_RPAREN, + ACTIONS(4292), 1, + anon_sym_COMMA, + STATE(1942), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62479] = 4, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4968), 1, + ACTIONS(5001), 1, anon_sym_SEMI, - STATE(817), 1, + STATE(886), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62049] = 4, - ACTIONS(3798), 1, + [62493] = 4, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4970), 1, + ACTIONS(5003), 1, anon_sym_SEMI, - STATE(804), 1, + STATE(948), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62063] = 4, - ACTIONS(3860), 1, + [62507] = 4, + ACTIONS(5005), 1, anon_sym_RBRACE, - ACTIONS(4972), 1, + ACTIONS(5007), 1, anon_sym_COMMA, - STATE(2076), 1, + STATE(2064), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62077] = 4, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(4974), 1, - anon_sym_SEMI, - ACTIONS(4976), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62091] = 4, - ACTIONS(3798), 1, + [62521] = 4, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4978), 1, + ACTIONS(5010), 1, anon_sym_SEMI, - STATE(826), 1, + STATE(936), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62105] = 4, - ACTIONS(4980), 1, - anon_sym_RPAREN, - ACTIONS(4982), 1, + [62535] = 4, + ACTIONS(3870), 1, + anon_sym_RBRACE, + ACTIONS(5012), 1, anon_sym_COMMA, - STATE(2067), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2064), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62119] = 4, - ACTIONS(764), 1, - anon_sym_RPAREN, - ACTIONS(4274), 1, + [62549] = 4, + ACTIONS(3822), 1, + anon_sym_RBRACE, + ACTIONS(5014), 1, anon_sym_COMMA, - STATE(1962), 1, - aux_sym_parameters_repeat1, + STATE(2064), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62133] = 4, - ACTIONS(4053), 1, + [62563] = 4, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4984), 1, + ACTIONS(5016), 1, anon_sym_SEMI, - ACTIONS(4986), 1, + ACTIONS(5018), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62147] = 3, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4988), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62159] = 4, - ACTIONS(3798), 1, + [62577] = 4, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4990), 1, + ACTIONS(5020), 1, anon_sym_SEMI, - STATE(796), 1, + STATE(924), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62173] = 4, - ACTIONS(3798), 1, + [62591] = 4, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(4992), 1, + ACTIONS(5022), 1, anon_sym_SEMI, - STATE(794), 1, + STATE(921), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62187] = 4, - ACTIONS(4079), 1, + [62605] = 4, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(4994), 1, + ACTIONS(5024), 1, anon_sym_SEMI, - STATE(782), 1, + STATE(914), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62201] = 3, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4996), 2, - anon_sym_COMMA, - anon_sym_GT, - [62213] = 4, - ACTIONS(760), 1, + [62619] = 4, + ACTIONS(766), 1, anon_sym_RPAREN, - ACTIONS(4998), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - STATE(1951), 1, + STATE(1938), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62227] = 3, - ACTIONS(4253), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5000), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62239] = 4, - ACTIONS(3826), 1, - anon_sym_RBRACE, - ACTIONS(5002), 1, - anon_sym_COMMA, - STATE(1913), 1, - aux_sym_enum_variant_list_repeat2, + [62633] = 4, + ACTIONS(3864), 1, + anon_sym_LBRACE, + ACTIONS(5028), 1, + anon_sym_SEMI, + STATE(288), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62253] = 4, - ACTIONS(3427), 1, + [62647] = 4, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(5004), 1, + ACTIONS(5030), 1, sym_identifier, - STATE(2481), 1, + STATE(2493), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62267] = 4, - ACTIONS(4061), 1, - anon_sym_LBRACE, - ACTIONS(5006), 1, - anon_sym_SEMI, - STATE(302), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62281] = 3, - ACTIONS(3171), 1, - anon_sym_COLON_COLON, + [62661] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5008), 2, - anon_sym_RPAREN, + ACTIONS(5032), 2, anon_sym_COMMA, - [62293] = 4, - ACTIONS(4053), 1, + anon_sym_GT, + [62673] = 4, + ACTIONS(3826), 1, + anon_sym_RBRACE, + ACTIONS(5034), 1, + anon_sym_COMMA, + STATE(1916), 1, + aux_sym_enum_variant_list_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62687] = 4, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(5010), 1, + ACTIONS(5036), 1, anon_sym_SEMI, - ACTIONS(5012), 1, + ACTIONS(5038), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62307] = 3, - ACTIONS(4161), 1, + [62701] = 3, + ACTIONS(4152), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3425), 2, + ACTIONS(3435), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [62319] = 4, - ACTIONS(5014), 1, + [62713] = 4, + ACTIONS(760), 1, anon_sym_RPAREN, - ACTIONS(5016), 1, + ACTIONS(4292), 1, anon_sym_COMMA, - STATE(2067), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(1938), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62333] = 4, - ACTIONS(392), 1, - anon_sym_RPAREN, - ACTIONS(3201), 1, - anon_sym_COMMA, - STATE(1884), 1, - aux_sym_arguments_repeat1, + [62727] = 3, + ACTIONS(4263), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62347] = 3, - ACTIONS(4053), 1, - anon_sym_PLUS, + ACTIONS(5040), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62739] = 4, + ACTIONS(4095), 1, + anon_sym_LBRACE, + ACTIONS(5042), 1, + anon_sym_SEMI, + STATE(301), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4359), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62359] = 4, - ACTIONS(5019), 1, + [62753] = 4, + ACTIONS(5044), 1, anon_sym_RBRACE, - ACTIONS(5021), 1, + ACTIONS(5046), 1, anon_sym_COMMA, - STATE(1857), 1, + STATE(2124), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62373] = 3, - ACTIONS(4053), 1, - anon_sym_PLUS, + [62767] = 3, + ACTIONS(3173), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5023), 2, - anon_sym_RBRACE, + ACTIONS(5048), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [62385] = 4, - ACTIONS(3778), 1, + [62779] = 4, + ACTIONS(3864), 1, + anon_sym_LBRACE, + ACTIONS(5050), 1, + anon_sym_SEMI, + STATE(281), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62793] = 4, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(5025), 1, + ACTIONS(5052), 1, anon_sym_SEMI, - STATE(2427), 1, + STATE(2476), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62399] = 4, - ACTIONS(4053), 1, + [62807] = 4, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(5027), 1, + ACTIONS(5054), 1, anon_sym_SEMI, - ACTIONS(5029), 1, + ACTIONS(5056), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62413] = 4, - ACTIONS(764), 1, - anon_sym_RPAREN, - ACTIONS(4274), 1, - anon_sym_COMMA, - STATE(1951), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62427] = 4, - ACTIONS(4079), 1, + [62821] = 4, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(5031), 1, + ACTIONS(5058), 1, anon_sym_SEMI, - STATE(1011), 1, + STATE(871), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62441] = 4, - ACTIONS(5033), 1, - anon_sym_RBRACE, - ACTIONS(5035), 1, - anon_sym_COMMA, - STATE(2076), 1, - aux_sym_field_declaration_list_repeat1, + [62835] = 4, + ACTIONS(3864), 1, + anon_sym_LBRACE, + ACTIONS(5060), 1, + anon_sym_SEMI, + STATE(269), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62455] = 4, - ACTIONS(3844), 1, - anon_sym_RBRACE, - ACTIONS(5038), 1, + [62849] = 4, + ACTIONS(4288), 1, + anon_sym_RPAREN, + ACTIONS(4290), 1, anon_sym_COMMA, - STATE(2076), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2127), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62469] = 4, - ACTIONS(3798), 1, - anon_sym_LBRACE, - ACTIONS(5040), 1, - anon_sym_SEMI, - STATE(982), 1, - sym_declaration_list, + [62863] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62483] = 4, - ACTIONS(3850), 1, - anon_sym_LBRACE, - ACTIONS(5042), 1, - anon_sym_SEMI, - STATE(278), 1, - sym_declaration_list, + ACTIONS(4365), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62875] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62497] = 4, - ACTIONS(4079), 1, + ACTIONS(5062), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [62885] = 4, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(5044), 1, + ACTIONS(5064), 1, anon_sym_SEMI, - STATE(791), 1, + STATE(852), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62511] = 4, - ACTIONS(3427), 1, + [62899] = 4, + ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(5004), 1, + ACTIONS(5030), 1, sym_identifier, - STATE(2471), 1, + STATE(2483), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62525] = 4, - ACTIONS(3850), 1, - anon_sym_LBRACE, - ACTIONS(5046), 1, - anon_sym_SEMI, - STATE(266), 1, - sym_declaration_list, + [62913] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62539] = 4, - ACTIONS(4325), 1, + ACTIONS(5066), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [62923] = 4, + ACTIONS(4337), 1, anon_sym_COMMA, - ACTIONS(4327), 1, + ACTIONS(4339), 1, anon_sym_GT, - STATE(2105), 1, + STATE(2133), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62553] = 4, - ACTIONS(3808), 1, - anon_sym_RBRACE, - ACTIONS(5048), 1, - anon_sym_COMMA, - STATE(2048), 1, - aux_sym_field_declaration_list_repeat1, + [62937] = 4, + ACTIONS(3830), 1, + anon_sym_LBRACE, + ACTIONS(5068), 1, + anon_sym_SEMI, + STATE(858), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62567] = 2, + [62951] = 4, + ACTIONS(3149), 1, + anon_sym_RPAREN, + ACTIONS(5070), 1, + anon_sym_COMMA, + STATE(2018), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5050), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62577] = 4, - ACTIONS(3808), 1, - anon_sym_RBRACE, - ACTIONS(5048), 1, - anon_sym_COMMA, - STATE(2076), 1, - aux_sym_field_declaration_list_repeat1, + [62965] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62591] = 4, - ACTIONS(2496), 1, + ACTIONS(5072), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [62975] = 4, + ACTIONS(2518), 1, anon_sym_RPAREN, - ACTIONS(5052), 1, + ACTIONS(5074), 1, anon_sym_COMMA, - STATE(1987), 1, + STATE(1992), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62605] = 2, + [62989] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5054), 3, + ACTIONS(5076), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, - [62615] = 4, - ACTIONS(3830), 1, + [62999] = 4, + ACTIONS(3784), 1, anon_sym_GT, - ACTIONS(5056), 1, + ACTIONS(5078), 1, anon_sym_COMMA, - STATE(1968), 1, + STATE(1972), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62629] = 2, + [63013] = 4, + ACTIONS(3868), 1, + anon_sym_RBRACE, + ACTIONS(5080), 1, + anon_sym_COMMA, + STATE(1918), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5058), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [62639] = 4, - ACTIONS(3814), 1, + [63027] = 4, + ACTIONS(3858), 1, anon_sym_GT, - ACTIONS(5060), 1, + ACTIONS(5082), 1, anon_sym_COMMA, - STATE(1968), 1, + STATE(1972), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62653] = 4, - ACTIONS(3834), 1, + [63041] = 4, + ACTIONS(3868), 1, anon_sym_RBRACE, - ACTIONS(5062), 1, + ACTIONS(5080), 1, anon_sym_COMMA, - STATE(1930), 1, + STATE(1916), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62667] = 2, + [63055] = 4, + ACTIONS(4095), 1, + anon_sym_LBRACE, + ACTIONS(5084), 1, + anon_sym_SEMI, + STATE(265), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5064), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [62677] = 4, - ACTIONS(3798), 1, + [63069] = 4, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(5066), 1, + ACTIONS(5086), 1, anon_sym_SEMI, - STATE(833), 1, + STATE(838), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62691] = 4, - ACTIONS(4053), 1, + [63083] = 4, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(5068), 1, + ACTIONS(5088), 1, anon_sym_SEMI, - ACTIONS(5070), 1, + ACTIONS(5090), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62705] = 4, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(5072), 1, - anon_sym_SEMI, - ACTIONS(5074), 1, - anon_sym_EQ, + [63097] = 4, + ACTIONS(4083), 1, + anon_sym_COMMA, + ACTIONS(4085), 1, + anon_sym_GT, + STATE(1919), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62719] = 4, - ACTIONS(4053), 1, + [63111] = 4, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(5076), 1, + ACTIONS(5092), 1, anon_sym_SEMI, - ACTIONS(5078), 1, + ACTIONS(5094), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62733] = 4, - ACTIONS(3834), 1, - anon_sym_RBRACE, - ACTIONS(5062), 1, - anon_sym_COMMA, - STATE(1913), 1, - aux_sym_enum_variant_list_repeat2, + [63125] = 3, + ACTIONS(5098), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62747] = 4, - ACTIONS(3798), 1, - anon_sym_LBRACE, - ACTIONS(5080), 1, - anon_sym_SEMI, - STATE(956), 1, - sym_declaration_list, + ACTIONS(5096), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63137] = 4, + ACTIONS(3840), 1, + anon_sym_RBRACE, + ACTIONS(5100), 1, + anon_sym_COMMA, + STATE(2067), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62761] = 2, + [63151] = 4, + ACTIONS(3840), 1, + anon_sym_RBRACE, + ACTIONS(5100), 1, + anon_sym_COMMA, + STATE(2064), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2385), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [62771] = 4, - ACTIONS(3798), 1, - anon_sym_LBRACE, - ACTIONS(5082), 1, + [63165] = 4, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(5102), 1, anon_sym_SEMI, - STATE(933), 1, - sym_declaration_list, + ACTIONS(5104), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62785] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4053), 1, + [63179] = 4, + ACTIONS(4075), 1, anon_sym_PLUS, - STATE(1115), 1, - sym_block, + ACTIONS(5106), 1, + anon_sym_SEMI, + ACTIONS(5108), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62799] = 4, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(5084), 1, + [63193] = 4, + ACTIONS(3830), 1, + anon_sym_LBRACE, + ACTIONS(5110), 1, anon_sym_SEMI, - ACTIONS(5086), 1, - anon_sym_RBRACK, + STATE(842), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62813] = 4, - ACTIONS(4053), 1, + [63207] = 4, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(5088), 1, + ACTIONS(5112), 1, anon_sym_SEMI, - ACTIONS(5090), 1, + ACTIONS(5114), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62827] = 4, - ACTIONS(904), 1, - anon_sym_GT, - ACTIONS(5092), 1, - anon_sym_COMMA, - STATE(2009), 1, - aux_sym_type_arguments_repeat1, + [63221] = 4, + ACTIONS(4547), 1, + anon_sym_LBRACE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + STATE(1908), 1, + aux_sym_let_chain_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62841] = 4, - ACTIONS(5094), 1, + [63235] = 4, + ACTIONS(5116), 1, anon_sym_RBRACE, - ACTIONS(5096), 1, + ACTIONS(5118), 1, anon_sym_COMMA, - STATE(2086), 1, + STATE(2112), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62855] = 4, - ACTIONS(4079), 1, + [63249] = 4, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(5098), 1, + ACTIONS(5120), 1, anon_sym_SEMI, - STATE(922), 1, - sym_block, + STATE(830), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62869] = 4, - ACTIONS(3778), 1, + [63263] = 4, + ACTIONS(3796), 1, anon_sym_where, - ACTIONS(5100), 1, + ACTIONS(5122), 1, anon_sym_SEMI, - STATE(2504), 1, + STATE(2506), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62883] = 4, - ACTIONS(4061), 1, + [63277] = 4, + ACTIONS(3830), 1, anon_sym_LBRACE, - ACTIONS(5102), 1, + ACTIONS(5124), 1, anon_sym_SEMI, - STATE(286), 1, - sym_block, + STATE(798), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62897] = 4, - ACTIONS(762), 1, - anon_sym_RPAREN, - ACTIONS(4291), 1, - anon_sym_COMMA, - STATE(2059), 1, - aux_sym_parameters_repeat1, + [63291] = 4, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(5126), 1, + anon_sym_SEMI, + STATE(2489), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62911] = 4, - ACTIONS(762), 1, + [63305] = 4, + ACTIONS(392), 1, anon_sym_RPAREN, - ACTIONS(4291), 1, + ACTIONS(3203), 1, anon_sym_COMMA, - STATE(1951), 1, - aux_sym_parameters_repeat1, + STATE(1887), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62925] = 4, - ACTIONS(3141), 1, - anon_sym_RPAREN, - ACTIONS(5104), 1, + [63319] = 4, + ACTIONS(3856), 1, + anon_sym_RBRACE, + ACTIONS(5128), 1, anon_sym_COMMA, - STATE(1998), 1, - aux_sym_meta_arguments_repeat1, + STATE(1916), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62939] = 4, - ACTIONS(3806), 1, + [63333] = 4, + ACTIONS(3856), 1, anon_sym_RBRACE, - ACTIONS(4529), 1, + ACTIONS(5128), 1, anon_sym_COMMA, - STATE(2061), 1, + STATE(2076), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62953] = 4, - ACTIONS(4061), 1, + [63347] = 4, + ACTIONS(4095), 1, anon_sym_LBRACE, - ACTIONS(5106), 1, + ACTIONS(5130), 1, anon_sym_SEMI, - STATE(263), 1, + STATE(282), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62967] = 4, - ACTIONS(3798), 1, - anon_sym_LBRACE, - ACTIONS(5108), 1, - anon_sym_SEMI, - STATE(870), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62981] = 4, - ACTIONS(4099), 1, + [63361] = 4, + ACTIONS(762), 1, + anon_sym_RPAREN, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(4101), 1, - anon_sym_GT, - STATE(1906), 1, - aux_sym_type_parameters_repeat1, + STATE(1938), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62995] = 4, - ACTIONS(3778), 1, - anon_sym_where, - ACTIONS(5110), 1, + [63375] = 4, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(5132), 1, anon_sym_SEMI, - STATE(2484), 1, - sym_where_clause, + ACTIONS(5134), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63009] = 3, - ACTIONS(5114), 1, - anon_sym_EQ, + [63389] = 4, + ACTIONS(762), 1, + anon_sym_RPAREN, + ACTIONS(4294), 1, + anon_sym_COMMA, + STATE(2072), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5112), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63021] = 3, - ACTIONS(5116), 1, - anon_sym_SEMI, - ACTIONS(5118), 1, - anon_sym_as, + [63403] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63032] = 3, - ACTIONS(5120), 1, + ACTIONS(2369), 3, anon_sym_SEMI, - ACTIONS(5122), 1, anon_sym_RPAREN, + anon_sym_RBRACE, + [63413] = 4, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(5136), 1, + anon_sym_SEMI, + STATE(824), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63043] = 2, + [63427] = 4, + ACTIONS(4547), 1, + anon_sym_LBRACE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + STATE(1908), 1, + aux_sym_let_chain_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5124), 2, - anon_sym_RPAREN, + [63441] = 4, + ACTIONS(898), 1, + anon_sym_GT, + ACTIONS(5138), 1, anon_sym_COMMA, - [63052] = 3, - ACTIONS(3794), 1, - anon_sym_LBRACE, - STATE(326), 1, - sym_field_declaration_list, + STATE(1998), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63063] = 3, - ACTIONS(4179), 1, - anon_sym_LBRACE, - STATE(892), 1, - sym_enum_variant_list, + [63455] = 3, + ACTIONS(5140), 1, + anon_sym_SEMI, + ACTIONS(5142), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63074] = 3, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(5126), 1, - anon_sym_SEMI, + [63466] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63085] = 3, - ACTIONS(3776), 1, + ACTIONS(4842), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63475] = 3, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1912), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63486] = 3, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(864), 1, - sym_field_declaration_list, + STATE(789), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63096] = 3, - ACTIONS(3776), 1, + [63497] = 3, + ACTIONS(3802), 1, anon_sym_LBRACE, - STATE(895), 1, + STATE(809), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63107] = 3, - ACTIONS(3798), 1, - anon_sym_LBRACE, - STATE(879), 1, - sym_declaration_list, + [63508] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63118] = 3, - ACTIONS(3776), 1, + ACTIONS(5144), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63517] = 3, + ACTIONS(3802), 1, anon_sym_LBRACE, - STATE(899), 1, + STATE(812), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63129] = 3, - ACTIONS(4253), 1, - anon_sym_PIPE, - ACTIONS(5128), 1, - anon_sym_EQ, + [63528] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63140] = 3, - ACTIONS(5130), 1, - sym_identifier, - ACTIONS(5132), 1, - sym_mutable_specifier, + ACTIONS(5146), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63537] = 3, + ACTIONS(5148), 1, + anon_sym_SEMI, + ACTIONS(5150), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63151] = 3, - ACTIONS(5134), 1, + [63548] = 3, + ACTIONS(5152), 1, anon_sym_SEMI, - ACTIONS(5136), 1, + ACTIONS(5154), 1, anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63162] = 3, + [63559] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1074), 1, + STATE(1084), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63173] = 3, - ACTIONS(5120), 1, + [63570] = 3, + ACTIONS(5148), 1, anon_sym_SEMI, - ACTIONS(5138), 1, - anon_sym_RBRACE, + ACTIONS(5156), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63184] = 3, - ACTIONS(5120), 1, + [63581] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(5158), 1, anon_sym_SEMI, - ACTIONS(5140), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63195] = 3, - ACTIONS(4253), 1, - anon_sym_PIPE, - ACTIONS(5142), 1, - anon_sym_in, + [63592] = 3, + ACTIONS(3830), 1, + anon_sym_LBRACE, + STATE(790), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63206] = 2, + [63603] = 3, + ACTIONS(5160), 1, + sym_identifier, + ACTIONS(5162), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2413), 2, - anon_sym_COMMA, - anon_sym_GT, - [63215] = 3, - ACTIONS(5120), 1, + [63614] = 3, + ACTIONS(5148), 1, anon_sym_SEMI, - ACTIONS(5144), 1, + ACTIONS(5164), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63226] = 3, - ACTIONS(4533), 1, - sym_identifier, - ACTIONS(4537), 1, - sym_mutable_specifier, + [63625] = 3, + ACTIONS(3794), 1, + anon_sym_LBRACE, + STATE(328), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63237] = 3, - ACTIONS(5120), 1, + [63636] = 3, + ACTIONS(5148), 1, anon_sym_SEMI, - ACTIONS(5146), 1, + ACTIONS(5166), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63248] = 3, - ACTIONS(5120), 1, - anon_sym_SEMI, + [63647] = 3, ACTIONS(5148), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63259] = 2, + anon_sym_SEMI, + ACTIONS(5168), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4678), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63268] = 3, - ACTIONS(3574), 1, - anon_sym_COLON_COLON, - ACTIONS(5150), 1, - anon_sym_RPAREN, + [63658] = 3, + ACTIONS(4551), 1, + sym_identifier, + ACTIONS(4555), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63279] = 3, - ACTIONS(5120), 1, + [63669] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(5170), 1, anon_sym_SEMI, - ACTIONS(5152), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63290] = 3, - ACTIONS(4253), 1, + [63680] = 3, + ACTIONS(4263), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(5172), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63301] = 3, - ACTIONS(3850), 1, - anon_sym_LBRACE, - STATE(255), 1, - sym_declaration_list, + [63691] = 3, + ACTIONS(4263), 1, + anon_sym_PIPE, + ACTIONS(5174), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63312] = 3, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(5156), 1, - anon_sym_SEMI, + [63702] = 3, + ACTIONS(4263), 1, + anon_sym_PIPE, + ACTIONS(5176), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63323] = 3, - ACTIONS(4253), 1, - anon_sym_PIPE, - ACTIONS(5158), 1, - anon_sym_in, + [63713] = 3, + ACTIONS(3802), 1, + anon_sym_LBRACE, + STATE(794), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63334] = 3, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(1900), 1, - sym_lifetime, + [63724] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63345] = 3, - ACTIONS(3798), 1, + ACTIONS(2343), 2, + anon_sym_COMMA, + anon_sym_GT, + [63733] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5178), 2, + sym_identifier, + sym_metavariable, + [63742] = 3, + ACTIONS(3802), 1, anon_sym_LBRACE, - STATE(858), 1, - sym_declaration_list, + STATE(788), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63356] = 3, - ACTIONS(3798), 1, + [63753] = 3, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(857), 1, + STATE(799), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63367] = 3, - ACTIONS(3776), 1, - anon_sym_LBRACE, - STATE(856), 1, - sym_field_declaration_list, + [63764] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(5180), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63378] = 3, - ACTIONS(4683), 1, - sym_identifier, - ACTIONS(4687), 1, - sym_mutable_specifier, + [63775] = 3, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(331), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63389] = 3, - ACTIONS(4253), 1, + [63786] = 3, + ACTIONS(4259), 1, + anon_sym_COLON, + ACTIONS(4263), 1, anon_sym_PIPE, - ACTIONS(5160), 1, - anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63400] = 3, - ACTIONS(3794), 1, + [63797] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(324), 1, - sym_field_declaration_list, + STATE(63), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63411] = 2, + [63808] = 3, + ACTIONS(5182), 1, + anon_sym_SEMI, + ACTIONS(5184), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5162), 2, - sym_identifier, - sym_metavariable, - [63420] = 3, - ACTIONS(3981), 1, - anon_sym_COLON_COLON, - ACTIONS(5164), 1, - anon_sym_RPAREN, + [63819] = 3, + ACTIONS(3441), 1, + anon_sym_LPAREN, + STATE(1639), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63431] = 3, + [63830] = 3, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(83), 1, + STATE(62), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63442] = 3, - ACTIONS(4249), 1, - anon_sym_COLON, - ACTIONS(4253), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63453] = 3, - ACTIONS(3985), 1, - anon_sym_COLON_COLON, - ACTIONS(5164), 1, - anon_sym_RPAREN, + [63841] = 3, + ACTIONS(3864), 1, + anon_sym_LBRACE, + STATE(260), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63464] = 3, - ACTIONS(3989), 1, + [63852] = 3, + ACTIONS(4013), 1, anon_sym_COLON_COLON, - ACTIONS(5164), 1, + ACTIONS(5186), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63475] = 3, - ACTIONS(4187), 1, - anon_sym_LBRACE, - STATE(329), 1, - sym_enum_variant_list, + [63863] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63486] = 3, - ACTIONS(5166), 1, - anon_sym_LBRACE, - ACTIONS(5168), 1, - anon_sym_AMP_AMP, + ACTIONS(5188), 2, + sym_identifier, + sym_metavariable, + [63872] = 3, + ACTIONS(4263), 1, + anon_sym_PIPE, + ACTIONS(5190), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63497] = 3, - ACTIONS(3850), 1, - anon_sym_LBRACE, - STATE(323), 1, - sym_declaration_list, + [63883] = 3, + ACTIONS(4263), 1, + anon_sym_PIPE, + ACTIONS(5192), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63508] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(84), 1, - sym_block, + [63894] = 3, + ACTIONS(4039), 1, + anon_sym_COLON_COLON, + ACTIONS(5186), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63519] = 3, - ACTIONS(5170), 1, - anon_sym_SEMI, - ACTIONS(5172), 1, - anon_sym_as, + [63905] = 3, + ACTIONS(4263), 1, + anon_sym_PIPE, + ACTIONS(5194), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63530] = 2, + [63916] = 3, + ACTIONS(5196), 1, + anon_sym_LBRACK, + ACTIONS(5198), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5174), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63539] = 2, + [63927] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5176), 2, + ACTIONS(5200), 2, sym_identifier, sym_metavariable, - [63548] = 3, - ACTIONS(2542), 1, - anon_sym_LPAREN, - STATE(837), 1, - sym_parameters, + [63936] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(5202), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63559] = 2, + [63947] = 3, + ACTIONS(4011), 1, + anon_sym_COLON_COLON, + ACTIONS(5186), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5178), 2, + [63958] = 3, + ACTIONS(3580), 1, + anon_sym_COLON_COLON, + ACTIONS(5204), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [63568] = 3, - ACTIONS(4253), 1, - anon_sym_PIPE, - ACTIONS(5180), 1, - anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63579] = 3, - ACTIONS(3798), 1, + [63969] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4601), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63978] = 3, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(969), 1, + STATE(850), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63590] = 3, - ACTIONS(4053), 1, + [63989] = 3, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(5182), 1, + ACTIONS(5206), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63601] = 3, - ACTIONS(3850), 1, - anon_sym_LBRACE, - STATE(265), 1, - sym_declaration_list, + [64000] = 3, + ACTIONS(5208), 1, + sym_identifier, + ACTIONS(5210), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63612] = 3, - ACTIONS(3431), 1, + [64011] = 3, + ACTIONS(2542), 1, anon_sym_LPAREN, - STATE(1357), 1, + STATE(832), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63623] = 2, + [64022] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5184), 2, - anon_sym_RBRACE, + ACTIONS(5212), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [63632] = 3, - ACTIONS(3798), 1, + [64031] = 3, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(999), 1, + STATE(862), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63643] = 3, - ACTIONS(3798), 1, + [64042] = 3, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(1000), 1, + STATE(864), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63654] = 3, - ACTIONS(5186), 1, - anon_sym_LBRACK, - ACTIONS(5188), 1, - anon_sym_BANG, + [64053] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63665] = 2, + ACTIONS(4365), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64062] = 3, + ACTIONS(2932), 1, + anon_sym_COLON, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5190), 2, - sym_identifier, - sym_metavariable, - [63674] = 3, - ACTIONS(3421), 1, - anon_sym_BANG, - ACTIONS(5192), 1, - anon_sym_COLON_COLON, + [64073] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63685] = 3, - ACTIONS(5194), 1, - sym_identifier, - ACTIONS(5196), 1, - sym_mutable_specifier, + ACTIONS(5214), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64082] = 3, + ACTIONS(3864), 1, + anon_sym_LBRACE, + STATE(268), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63696] = 3, - ACTIONS(2941), 1, - anon_sym_COLON, - ACTIONS(4053), 1, - anon_sym_PLUS, + [64093] = 3, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(5216), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63707] = 3, - ACTIONS(4179), 1, + [64104] = 3, + ACTIONS(4061), 1, anon_sym_LBRACE, - STATE(1014), 1, + STATE(876), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63718] = 2, + [64115] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4583), 2, + ACTIONS(4645), 2, anon_sym_RBRACE, anon_sym_COMMA, - [63727] = 3, - ACTIONS(4179), 1, - anon_sym_LBRACE, - STATE(784), 1, - sym_enum_variant_list, + [64124] = 3, + ACTIONS(3441), 1, + anon_sym_LPAREN, + STATE(1366), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63738] = 3, - ACTIONS(3776), 1, + [64135] = 3, + ACTIONS(3802), 1, anon_sym_LBRACE, - STATE(1022), 1, + STATE(885), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63749] = 3, - ACTIONS(4053), 1, + [64146] = 3, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(5198), 1, + ACTIONS(5218), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63760] = 3, - ACTIONS(3776), 1, + [64157] = 3, + ACTIONS(3802), 1, anon_sym_LBRACE, - STATE(1026), 1, + STATE(890), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63771] = 3, - ACTIONS(3798), 1, + [64168] = 3, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(1029), 1, + STATE(892), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63782] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4359), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63791] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5033), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63800] = 3, - ACTIONS(3431), 1, - anon_sym_LPAREN, - STATE(1642), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63811] = 3, - ACTIONS(2819), 1, + [64179] = 3, + ACTIONS(2768), 1, anon_sym_COLON, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63822] = 2, + [64190] = 3, + ACTIONS(4061), 1, + anon_sym_LBRACE, + STATE(866), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5200), 2, - sym_float_literal, - sym_integer_literal, - [63831] = 3, - ACTIONS(2977), 1, + [64201] = 3, + ACTIONS(2758), 1, anon_sym_COLON, - ACTIONS(4053), 1, + ACTIONS(4075), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63842] = 2, + [64212] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5202), 2, + ACTIONS(5220), 2, sym_identifier, sym_metavariable, - [63851] = 2, + [64221] = 3, + ACTIONS(3864), 1, + anon_sym_LBRACE, + STATE(342), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5204), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [63860] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(81), 1, - sym_block, + [64232] = 3, + ACTIONS(2960), 1, + anon_sym_COLON, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63871] = 3, - ACTIONS(3961), 1, - anon_sym_RBRACE, - ACTIONS(5120), 1, - anon_sym_SEMI, + [64243] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(75), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63882] = 2, + [64254] = 3, + ACTIONS(3864), 1, + anon_sym_LBRACE, + STATE(343), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4635), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63891] = 3, - ACTIONS(2953), 1, - anon_sym_COLON, - ACTIONS(4053), 1, - anon_sym_PLUS, + [64265] = 3, + ACTIONS(3864), 1, + anon_sym_LBRACE, + STATE(325), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63902] = 3, + [64276] = 3, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(67), 1, + STATE(59), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63913] = 3, - ACTIONS(3850), 1, - anon_sym_LBRACE, - STATE(340), 1, - sym_declaration_list, + [64287] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5222), 2, + sym_float_literal, + sym_integer_literal, + [64296] = 3, + ACTIONS(3441), 1, + anon_sym_LPAREN, + STATE(1701), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63924] = 3, - ACTIONS(3957), 1, + [64307] = 3, + ACTIONS(4045), 1, anon_sym_RBRACE, - ACTIONS(5120), 1, + ACTIONS(5148), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63935] = 3, - ACTIONS(3431), 1, - anon_sym_LPAREN, - STATE(1694), 1, - sym_parameters, + [64318] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63946] = 3, - ACTIONS(3850), 1, - anon_sym_LBRACE, - STATE(341), 1, - sym_declaration_list, + ACTIONS(4681), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64327] = 3, + ACTIONS(4057), 1, + anon_sym_COLON, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63957] = 3, - ACTIONS(3532), 1, - anon_sym_COLON_COLON, - ACTIONS(3634), 1, - anon_sym_BANG, + [64338] = 3, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(2322), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63968] = 3, - ACTIONS(4187), 1, - anon_sym_LBRACE, - STATE(477), 1, - sym_enum_variant_list, + [64349] = 3, + ACTIONS(4047), 1, + anon_sym_RBRACE, + ACTIONS(5148), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63979] = 3, - ACTIONS(5120), 1, + [64360] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(5224), 1, anon_sym_SEMI, - ACTIONS(5206), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63990] = 3, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(2262), 1, - sym_lifetime, + [64371] = 3, + ACTIONS(3864), 1, + anon_sym_LBRACE, + STATE(351), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64001] = 3, - ACTIONS(284), 1, + [64382] = 3, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(1106), 1, - sym_block, + STATE(479), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64012] = 3, + [64393] = 3, ACTIONS(3794), 1, anon_sym_LBRACE, - STATE(413), 1, + STATE(415), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64023] = 2, + [64404] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5208), 2, + ACTIONS(5226), 2, sym_identifier, sym_metavariable, - [64032] = 3, - ACTIONS(3431), 1, - anon_sym_LPAREN, - STATE(1359), 1, - sym_parameters, + [64413] = 3, + ACTIONS(3528), 1, + anon_sym_COLON_COLON, + ACTIONS(3646), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64043] = 3, - ACTIONS(3431), 1, - anon_sym_LPAREN, - STATE(1661), 1, - sym_parameters, + [64424] = 3, + ACTIONS(3794), 1, + anon_sym_LBRACE, + STATE(418), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64054] = 3, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(5210), 1, + [64435] = 3, + ACTIONS(5148), 1, anon_sym_SEMI, + ACTIONS(5228), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64065] = 3, - ACTIONS(15), 1, + [64446] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(43), 1, + STATE(1057), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64076] = 2, + [64457] = 3, + ACTIONS(5148), 1, + anon_sym_SEMI, + ACTIONS(5230), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64468] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4157), 2, + ACTIONS(4469), 2, anon_sym_RPAREN, anon_sym_COMMA, - [64085] = 3, - ACTIONS(3798), 1, + [64477] = 3, + ACTIONS(3441), 1, + anon_sym_LPAREN, + STATE(1665), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64488] = 3, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(819), 1, + STATE(950), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64096] = 3, - ACTIONS(5212), 1, - anon_sym_SEMI, - ACTIONS(5214), 1, - anon_sym_as, + [64499] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64107] = 3, - ACTIONS(3850), 1, - anon_sym_LBRACE, - STATE(350), 1, - sym_declaration_list, + ACTIONS(5005), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64508] = 3, + ACTIONS(3441), 1, + anon_sym_LPAREN, + STATE(1364), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64118] = 3, - ACTIONS(3872), 1, - anon_sym_COLON, - STATE(2090), 1, - sym_trait_bounds, + [64519] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(48), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64129] = 3, - ACTIONS(4053), 1, + [64530] = 3, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(5216), 1, + ACTIONS(5232), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64140] = 3, - ACTIONS(3798), 1, + [64541] = 3, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(834), 1, + STATE(961), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64151] = 3, - ACTIONS(3798), 1, + [64552] = 3, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(835), 1, + STATE(962), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64162] = 3, - ACTIONS(3574), 1, - anon_sym_COLON_COLON, - ACTIONS(5218), 1, - anon_sym_RPAREN, + [64563] = 3, + ACTIONS(3900), 1, + anon_sym_COLON, + STATE(2100), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64173] = 3, - ACTIONS(3989), 1, + [64574] = 3, + ACTIONS(3580), 1, anon_sym_COLON_COLON, - ACTIONS(5220), 1, + ACTIONS(5234), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64184] = 3, - ACTIONS(5222), 1, + [64585] = 3, + ACTIONS(5236), 1, + anon_sym_SEMI, + ACTIONS(5238), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64596] = 3, + ACTIONS(5240), 1, anon_sym_LBRACK, - ACTIONS(5224), 1, + ACTIONS(5242), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64195] = 3, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(5226), 1, + [64607] = 3, + ACTIONS(5148), 1, anon_sym_SEMI, + ACTIONS(5244), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64206] = 3, - ACTIONS(3981), 1, - anon_sym_COLON_COLON, - ACTIONS(5220), 1, + [64618] = 3, + ACTIONS(3441), 1, + anon_sym_LPAREN, + STATE(1373), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64629] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(88), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64640] = 3, + ACTIONS(4033), 1, anon_sym_RPAREN, + ACTIONS(5148), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64217] = 3, + [64651] = 3, ACTIONS(3794), 1, anon_sym_LBRACE, - STATE(416), 1, + STATE(326), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64228] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(75), 1, - sym_block, + [64662] = 3, + ACTIONS(4013), 1, + anon_sym_COLON_COLON, + ACTIONS(5246), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64239] = 3, - ACTIONS(4021), 1, + [64673] = 3, + ACTIONS(4039), 1, + anon_sym_COLON_COLON, + ACTIONS(5246), 1, anon_sym_RPAREN, - ACTIONS(5120), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64250] = 3, - ACTIONS(3963), 1, + [64684] = 3, + ACTIONS(4027), 1, anon_sym_RPAREN, - ACTIONS(5120), 1, + ACTIONS(5148), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64261] = 3, - ACTIONS(3431), 1, - anon_sym_LPAREN, - STATE(1368), 1, - sym_parameters, + [64695] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64272] = 3, - ACTIONS(3776), 1, + ACTIONS(5248), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64704] = 3, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(886), 1, - sym_field_declaration_list, + STATE(421), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64283] = 3, - ACTIONS(4023), 1, - anon_sym_RPAREN, - ACTIONS(5120), 1, - anon_sym_SEMI, + [64715] = 3, + ACTIONS(3802), 1, + anon_sym_LBRACE, + STATE(902), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64294] = 3, - ACTIONS(3985), 1, - anon_sym_COLON_COLON, - ACTIONS(5220), 1, + [64726] = 3, + ACTIONS(4025), 1, anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64305] = 3, - ACTIONS(3997), 1, - anon_sym_RBRACE, - ACTIONS(5120), 1, + ACTIONS(5148), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64316] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(88), 1, - sym_closure_parameters, + [64737] = 3, + ACTIONS(4706), 1, + sym_identifier, + ACTIONS(4710), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64327] = 3, - ACTIONS(3431), 1, - anon_sym_LPAREN, - STATE(1615), 1, - sym_parameters, + [64748] = 3, + ACTIONS(3864), 1, + anon_sym_LBRACE, + STATE(259), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64338] = 3, - ACTIONS(3999), 1, - anon_sym_COLON, - ACTIONS(4053), 1, - anon_sym_PLUS, + [64759] = 3, + ACTIONS(4055), 1, + anon_sym_RBRACE, + ACTIONS(5148), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64349] = 3, - ACTIONS(3850), 1, + [64770] = 3, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(256), 1, + STATE(916), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64360] = 3, - ACTIONS(3798), 1, + [64781] = 3, + ACTIONS(3830), 1, anon_sym_LBRACE, - STATE(948), 1, + STATE(1026), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64371] = 3, - ACTIONS(3776), 1, + [64792] = 3, + ACTIONS(3802), 1, anon_sym_LBRACE, - STATE(1009), 1, + STATE(922), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64382] = 3, + [64803] = 3, ACTIONS(3798), 1, - anon_sym_LBRACE, - STATE(947), 1, - sym_declaration_list, + anon_sym_LT, + STATE(740), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64393] = 2, + [64814] = 3, + ACTIONS(4011), 1, + anon_sym_COLON_COLON, + ACTIONS(5246), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5228), 2, - sym_identifier, - sym_metavariable, - [64402] = 2, + [64825] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(98), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5230), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64411] = 3, - ACTIONS(4187), 1, - anon_sym_LBRACE, - STATE(420), 1, - sym_enum_variant_list, + [64836] = 3, + ACTIONS(3441), 1, + anon_sym_LPAREN, + STATE(1626), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64422] = 3, - ACTIONS(3794), 1, - anon_sym_LBRACE, - STATE(440), 1, - sym_field_declaration_list, + [64847] = 3, + ACTIONS(3441), 1, + anon_sym_LPAREN, + STATE(1614), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64433] = 3, + [64858] = 3, ACTIONS(3794), 1, anon_sym_LBRACE, - STATE(311), 1, + STATE(441), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64444] = 3, - ACTIONS(3850), 1, - anon_sym_LBRACE, - STATE(316), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64455] = 3, - ACTIONS(5232), 1, - anon_sym_LT, - STATE(654), 1, - sym_type_parameters, + [64869] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64466] = 3, - ACTIONS(2542), 1, + ACTIONS(4148), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64878] = 3, + ACTIONS(3441), 1, anon_sym_LPAREN, - STATE(993), 1, + STATE(1634), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64477] = 3, - ACTIONS(3987), 1, - anon_sym_RPAREN, - ACTIONS(5120), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64488] = 3, + [64889] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(227), 1, + STATE(240), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64499] = 3, - ACTIONS(3431), 1, - anon_sym_LPAREN, - STATE(1621), 1, - sym_parameters, + [64900] = 3, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(284), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64510] = 3, + [64911] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(224), 1, + STATE(232), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64521] = 3, - ACTIONS(4187), 1, - anon_sym_LBRACE, - STATE(283), 1, - sym_enum_variant_list, + [64922] = 3, + ACTIONS(2542), 1, + anon_sym_LPAREN, + STATE(980), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64532] = 3, - ACTIONS(3431), 1, - anon_sym_LPAREN, - STATE(1624), 1, - sym_parameters, + [64933] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64543] = 3, + ACTIONS(5250), 2, + sym_identifier, + sym_metavariable, + [64942] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(225), 1, + STATE(245), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64554] = 2, + [64953] = 3, + ACTIONS(5252), 1, + anon_sym_LT, + STATE(681), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4918), 2, - anon_sym_COMMA, - anon_sym_GT, - [64563] = 3, - ACTIONS(3580), 1, + [64964] = 3, + ACTIONS(3574), 1, anon_sym_COLON_COLON, - ACTIONS(5234), 1, + ACTIONS(5254), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64574] = 3, + [64975] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(213), 1, + STATE(219), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64585] = 3, - ACTIONS(3850), 1, - anon_sym_LBRACE, - STATE(438), 1, - sym_declaration_list, + [64986] = 3, + ACTIONS(3569), 1, + anon_sym_COLON_COLON, + ACTIONS(5254), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64596] = 3, - ACTIONS(4253), 1, - anon_sym_PIPE, - ACTIONS(5236), 1, - anon_sym_EQ, + [64997] = 3, + ACTIONS(4059), 1, + anon_sym_RPAREN, + ACTIONS(5148), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64607] = 3, + [65008] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(230), 1, + STATE(237), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64618] = 3, - ACTIONS(3568), 1, - anon_sym_COLON_COLON, - ACTIONS(5234), 1, - anon_sym_BANG, + [65019] = 3, + ACTIONS(3794), 1, + anon_sym_LBRACE, + STATE(314), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64629] = 3, - ACTIONS(5238), 1, - anon_sym_BANG, - ACTIONS(5240), 1, - anon_sym_COLON_COLON, + [65030] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64640] = 3, - ACTIONS(3850), 1, - anon_sym_LBRACE, - STATE(437), 1, - sym_declaration_list, + ACTIONS(4910), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65039] = 3, + ACTIONS(4263), 1, + anon_sym_PIPE, + ACTIONS(5256), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64651] = 3, - ACTIONS(2718), 1, - anon_sym_COLON_COLON, - ACTIONS(3947), 1, + [65050] = 3, + ACTIONS(5258), 1, anon_sym_BANG, + ACTIONS(5260), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64662] = 3, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(5242), 1, - anon_sym_SEMI, + [65061] = 3, + ACTIONS(3864), 1, + anon_sym_LBRACE, + STATE(440), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64673] = 3, - ACTIONS(4253), 1, - anon_sym_PIPE, - ACTIONS(5244), 1, - anon_sym_in, + [65072] = 3, + ACTIONS(3864), 1, + anon_sym_LBRACE, + STATE(439), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65083] = 3, + ACTIONS(2690), 1, + anon_sym_COLON_COLON, + ACTIONS(3898), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64684] = 2, + [65094] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5246), 2, + ACTIONS(5262), 2, anon_sym_const, sym_mutable_specifier, - [64693] = 2, + [65103] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(5264), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4854), 2, - anon_sym_COMMA, - anon_sym_GT, - [64702] = 2, + [65114] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4452), 2, + ACTIONS(4269), 2, anon_sym_RPAREN, anon_sym_COMMA, - [64711] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5248), 2, - anon_sym_const, - sym_mutable_specifier, - [64720] = 3, - ACTIONS(4179), 1, + [65123] = 3, + ACTIONS(3794), 1, anon_sym_LBRACE, - STATE(994), 1, - sym_enum_variant_list, + STATE(400), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64731] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1045), 1, - sym_block, + [65134] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64742] = 3, - ACTIONS(5250), 1, - anon_sym_LPAREN, - ACTIONS(5252), 1, - anon_sym_LBRACE, + ACTIONS(4921), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [65143] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64753] = 3, + ACTIONS(5266), 2, + anon_sym_const, + sym_mutable_specifier, + [65152] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(240), 1, + STATE(234), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64764] = 3, - ACTIONS(5254), 1, - anon_sym_LPAREN, - ACTIONS(5256), 1, - anon_sym_LBRACE, + [65163] = 3, + ACTIONS(5268), 1, + sym_identifier, + ACTIONS(5270), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64775] = 3, + [65174] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1043), 1, + STATE(1107), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64786] = 2, + [65185] = 3, + ACTIONS(4263), 1, + anon_sym_PIPE, + ACTIONS(5272), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4875), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [64795] = 3, + [65196] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1053), 1, + STATE(1090), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64806] = 2, + [65207] = 3, + ACTIONS(3864), 1, + anon_sym_LBRACE, + STATE(356), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4866), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64815] = 3, - ACTIONS(3794), 1, + [65218] = 3, + ACTIONS(5274), 1, + anon_sym_LPAREN, + ACTIONS(5276), 1, anon_sym_LBRACE, - STATE(433), 1, - sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64826] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(93), 1, - sym_closure_parameters, + [65229] = 3, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5280), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64837] = 3, + [65240] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(236), 1, + STATE(228), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64848] = 3, - ACTIONS(284), 1, + [65251] = 3, + ACTIONS(4061), 1, anon_sym_LBRACE, - STATE(1071), 1, - sym_block, + STATE(1029), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64859] = 3, - ACTIONS(5258), 1, - sym_identifier, - ACTIONS(5260), 1, - sym_mutable_specifier, + [65262] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1102), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64870] = 3, - ACTIONS(2550), 1, - anon_sym_LT2, - STATE(1126), 1, - sym_type_arguments, + [65273] = 3, + ACTIONS(3794), 1, + anon_sym_LBRACE, + STATE(434), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64881] = 3, - ACTIONS(3780), 1, - anon_sym_LT, - STATE(727), 1, - sym_type_parameters, + [65284] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64892] = 3, - ACTIONS(4053), 1, - anon_sym_PLUS, - ACTIONS(5262), 1, + ACTIONS(4853), 2, + anon_sym_COMMA, anon_sym_GT, + [65293] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(91), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64903] = 3, - ACTIONS(874), 1, - anon_sym_LBRACE, - STATE(1428), 1, - sym_block, + [65304] = 3, + ACTIONS(2550), 1, + anon_sym_LT2, + STATE(1070), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64914] = 3, - ACTIONS(632), 1, + [65315] = 3, + ACTIONS(3864), 1, anon_sym_LBRACE, - STATE(237), 1, - sym_block, + STATE(429), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64925] = 3, - ACTIONS(5264), 1, + [65326] = 3, + ACTIONS(5282), 1, anon_sym_LPAREN, - ACTIONS(5266), 1, + ACTIONS(5284), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64936] = 3, - ACTIONS(3850), 1, + [65337] = 3, + ACTIONS(870), 1, anon_sym_LBRACE, - STATE(427), 1, - sym_declaration_list, + STATE(1453), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64947] = 3, - ACTIONS(3850), 1, + [65348] = 3, + ACTIONS(632), 1, anon_sym_LBRACE, - STATE(370), 1, - sym_declaration_list, + STATE(225), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64958] = 3, + [65359] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1083), 1, + STATE(1118), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64969] = 2, + [65370] = 3, + ACTIONS(3864), 1, + anon_sym_LBRACE, + STATE(365), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4258), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64978] = 3, - ACTIONS(4033), 1, - anon_sym_RBRACE, - ACTIONS(5120), 1, - anon_sym_SEMI, + [65381] = 3, + ACTIONS(4061), 1, + anon_sym_LBRACE, + STATE(806), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64989] = 3, - ACTIONS(5268), 1, + [65392] = 3, + ACTIONS(5286), 1, anon_sym_LPAREN, - ACTIONS(5270), 1, + ACTIONS(5288), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65000] = 3, - ACTIONS(5166), 1, - anon_sym_EQ_GT, - ACTIONS(5272), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65011] = 3, + [65403] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(777), 1, + STATE(775), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65022] = 2, + [65414] = 3, + ACTIONS(3965), 1, + anon_sym_RBRACE, + ACTIONS(5148), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65425] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5274), 2, + ACTIONS(5290), 2, anon_sym_const, sym_mutable_specifier, - [65031] = 3, + [65434] = 3, ACTIONS(2542), 1, anon_sym_LPAREN, - STATE(1008), 1, + STATE(982), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65042] = 3, - ACTIONS(3794), 1, - anon_sym_LBRACE, - STATE(394), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65053] = 2, + [65445] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(4426), 2, anon_sym_COMMA, anon_sym_GT, - [65062] = 2, + [65454] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1099), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4840), 2, - anon_sym_RBRACE, + [65465] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4894), 2, anon_sym_COMMA, - [65071] = 3, - ACTIONS(2560), 1, + anon_sym_GT, + [65474] = 3, + ACTIONS(2598), 1, anon_sym_LBRACE, - STATE(1129), 1, + STATE(1043), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65082] = 2, - ACTIONS(5276), 1, - anon_sym_EQ_GT, + [65485] = 2, + ACTIONS(5292), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65090] = 2, - ACTIONS(5120), 1, - anon_sym_SEMI, + [65493] = 2, + ACTIONS(4637), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65098] = 2, - ACTIONS(5278), 1, + [65501] = 2, + ACTIONS(5294), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65106] = 2, - ACTIONS(5280), 1, - anon_sym_RBRACK, + [65509] = 2, + ACTIONS(5296), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65114] = 2, - ACTIONS(5282), 1, - anon_sym_SEMI, + [65517] = 2, + ACTIONS(5298), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65122] = 2, - ACTIONS(5284), 1, - anon_sym_RBRACK, + [65525] = 2, + ACTIONS(4507), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65130] = 2, - ACTIONS(5286), 1, + [65533] = 2, + ACTIONS(5300), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65138] = 2, - ACTIONS(4495), 1, + [65541] = 2, + ACTIONS(5302), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65146] = 2, - ACTIONS(4709), 1, - anon_sym_RBRACE, + [65549] = 2, + ACTIONS(5304), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65154] = 2, - ACTIONS(2445), 1, - anon_sym_PLUS, + [65557] = 2, + ACTIONS(5306), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65162] = 2, - ACTIONS(3985), 1, + [65565] = 2, + ACTIONS(4013), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65170] = 2, - ACTIONS(5288), 1, + [65573] = 2, + ACTIONS(5308), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65178] = 2, - ACTIONS(5290), 1, - sym_identifier, + [65581] = 2, + ACTIONS(2445), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65186] = 2, - ACTIONS(4818), 1, + [65589] = 2, + ACTIONS(4840), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65194] = 2, - ACTIONS(5292), 1, + [65597] = 2, + ACTIONS(5310), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65202] = 2, - ACTIONS(4845), 1, + [65605] = 2, + ACTIONS(4873), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65210] = 2, - ACTIONS(5294), 1, + [65613] = 2, + ACTIONS(5312), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65218] = 2, - ACTIONS(4856), 1, + [65621] = 2, + ACTIONS(4877), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65226] = 2, - ACTIONS(5296), 1, + [65629] = 2, + ACTIONS(5314), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65234] = 2, - ACTIONS(3441), 1, + [65637] = 2, + ACTIONS(3475), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65242] = 2, - ACTIONS(5298), 1, + [65645] = 2, + ACTIONS(5316), 1, ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65250] = 2, - ACTIONS(5300), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65258] = 2, - ACTIONS(5302), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65266] = 2, - ACTIONS(5304), 1, + [65653] = 2, + ACTIONS(5318), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65274] = 2, - ACTIONS(5306), 1, + [65661] = 2, + ACTIONS(5320), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65282] = 2, - ACTIONS(5308), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65290] = 2, - ACTIONS(5310), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65298] = 2, - ACTIONS(4799), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65306] = 2, - ACTIONS(5312), 1, + [65669] = 2, + ACTIONS(5322), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65314] = 2, - ACTIONS(5314), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65322] = 2, - ACTIONS(5316), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65330] = 2, - ACTIONS(5318), 1, + [65677] = 2, + ACTIONS(4639), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65338] = 2, - ACTIONS(2809), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65346] = 2, - ACTIONS(4619), 1, + [65685] = 2, + ACTIONS(5324), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65354] = 2, - ACTIONS(5320), 1, + [65693] = 2, + ACTIONS(5326), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65362] = 2, - ACTIONS(5322), 1, + [65701] = 2, + ACTIONS(4819), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65370] = 2, - ACTIONS(5324), 1, + [65709] = 2, + ACTIONS(5328), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65378] = 2, - ACTIONS(5326), 1, - sym_identifier, + [65717] = 2, + ACTIONS(4591), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65386] = 2, - ACTIONS(5328), 1, + [65725] = 2, + ACTIONS(5330), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65394] = 2, - ACTIONS(5330), 1, + [65733] = 2, + ACTIONS(5332), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65402] = 2, - ACTIONS(5332), 1, - sym_identifier, + [65741] = 2, + ACTIONS(2762), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65410] = 2, + [65749] = 2, ACTIONS(5334), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65418] = 2, + [65757] = 2, ACTIONS(5336), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65426] = 2, + [65765] = 2, ACTIONS(5338), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65434] = 2, - ACTIONS(3203), 1, - anon_sym_COLON_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65442] = 2, + [65773] = 2, ACTIONS(5340), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65450] = 2, - ACTIONS(3493), 1, - anon_sym_COLON_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65458] = 2, + [65781] = 2, ACTIONS(5342), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65466] = 2, + [65789] = 2, ACTIONS(5344), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65474] = 2, + [65797] = 2, ACTIONS(5346), 1, - anon_sym_LBRACK, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65482] = 2, + [65805] = 2, ACTIONS(5348), 1, - anon_sym_RBRACK, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65490] = 2, + [65813] = 2, ACTIONS(5350), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65498] = 2, + [65821] = 2, ACTIONS(5352), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65506] = 2, + [65829] = 2, ACTIONS(5354), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65514] = 2, + [65837] = 2, + ACTIONS(3189), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65845] = 2, ACTIONS(5356), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65522] = 2, - ACTIONS(3171), 1, + [65853] = 2, + ACTIONS(3499), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65530] = 2, + [65861] = 2, ACTIONS(5358), 1, - anon_sym_COLON_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65538] = 2, - ACTIONS(4883), 1, + [65869] = 2, + ACTIONS(5360), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65546] = 2, - ACTIONS(5360), 1, - anon_sym_SEMI, + [65877] = 2, + ACTIONS(5362), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65554] = 2, - ACTIONS(4743), 1, - anon_sym_RBRACE, + [65885] = 2, + ACTIONS(624), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65562] = 2, - ACTIONS(5362), 1, - sym_identifier, + [65893] = 2, + ACTIONS(5364), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65570] = 2, - ACTIONS(5364), 1, - sym_identifier, + [65901] = 2, + ACTIONS(5366), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65578] = 2, - ACTIONS(374), 1, + [65909] = 2, + ACTIONS(5368), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65586] = 2, - ACTIONS(5366), 1, - anon_sym_fn, + [65917] = 2, + ACTIONS(5370), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65594] = 2, - ACTIONS(5368), 1, - anon_sym_COLON, + [65925] = 2, + ACTIONS(3173), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65602] = 2, - ACTIONS(4893), 1, - sym_identifier, + [65933] = 2, + ACTIONS(5372), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65610] = 2, - ACTIONS(5370), 1, + [65941] = 2, + ACTIONS(5374), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65618] = 2, - ACTIONS(3169), 1, - sym_identifier, + [65949] = 2, + ACTIONS(4762), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65626] = 2, - ACTIONS(5372), 1, + [65957] = 2, + ACTIONS(4915), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65634] = 2, - ACTIONS(5374), 1, + [65965] = 2, + ACTIONS(4919), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65642] = 2, + [65973] = 2, ACTIONS(5376), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65650] = 2, + [65981] = 2, ACTIONS(5378), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65658] = 2, + [65989] = 2, ACTIONS(5380), 1, - sym_identifier, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65666] = 2, + [65997] = 2, ACTIONS(5382), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65674] = 2, + [66005] = 2, ACTIONS(5384), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65682] = 2, - ACTIONS(5386), 1, - sym_identifier, + [66013] = 2, + ACTIONS(378), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65690] = 2, - ACTIONS(5388), 1, + [66021] = 2, + ACTIONS(3171), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65698] = 2, - ACTIONS(5390), 1, + [66029] = 2, + ACTIONS(5386), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65706] = 2, - ACTIONS(4033), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65714] = 2, - ACTIONS(5392), 1, - anon_sym_RBRACE, + [66037] = 2, + ACTIONS(5388), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65722] = 2, - ACTIONS(5394), 1, - anon_sym_RPAREN, + [66045] = 2, + ACTIONS(5390), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65730] = 2, - ACTIONS(3574), 1, - anon_sym_COLON_COLON, + [66053] = 2, + ACTIONS(5392), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65738] = 2, - ACTIONS(4389), 1, - anon_sym_RPAREN, + [66061] = 2, + ACTIONS(5394), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65746] = 2, + [66069] = 2, ACTIONS(5396), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65754] = 2, + [66077] = 2, ACTIONS(5398), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65762] = 2, + [66085] = 2, ACTIONS(5400), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65770] = 2, + [66093] = 2, ACTIONS(5402), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65778] = 2, - ACTIONS(2718), 1, - anon_sym_COLON_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65786] = 2, + [66101] = 2, ACTIONS(5404), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65794] = 2, - ACTIONS(5240), 1, - anon_sym_COLON_COLON, + [66109] = 2, + ACTIONS(5406), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65802] = 2, - ACTIONS(5406), 1, - sym_identifier, + [66117] = 2, + ACTIONS(5408), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65810] = 2, - ACTIONS(5408), 1, - anon_sym_fn, + [66125] = 2, + ACTIONS(3580), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65818] = 2, + [66133] = 2, ACTIONS(5410), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65826] = 2, + [66141] = 2, ACTIONS(5412), 1, - anon_sym_COLON, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65834] = 2, + [66149] = 2, ACTIONS(5414), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65842] = 2, - ACTIONS(4713), 1, - anon_sym_RBRACE, + [66157] = 2, + ACTIONS(5416), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65850] = 2, - ACTIONS(5416), 1, - sym_identifier, + [66165] = 2, + ACTIONS(5418), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65858] = 2, - ACTIONS(4107), 1, - sym_identifier, + [66173] = 2, + ACTIONS(5420), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65866] = 2, - ACTIONS(5418), 1, + [66181] = 2, + ACTIONS(2690), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66189] = 2, + ACTIONS(5422), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65874] = 2, - ACTIONS(5420), 1, - anon_sym_RPAREN, + [66197] = 2, + ACTIONS(5260), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65882] = 2, - ACTIONS(5422), 1, - anon_sym_fn, + [66205] = 2, + ACTIONS(3965), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65890] = 2, + [66213] = 2, ACTIONS(5424), 1, - sym_identifier, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65898] = 2, + [66221] = 2, ACTIONS(5426), 1, - sym_identifier, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66229] = 2, + ACTIONS(4887), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65906] = 2, + [66237] = 2, ACTIONS(5428), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65914] = 2, + [66245] = 2, ACTIONS(5430), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65922] = 2, + [66253] = 2, + ACTIONS(4389), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66261] = 2, ACTIONS(5432), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65930] = 2, + [66269] = 2, ACTIONS(5434), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65938] = 2, - ACTIONS(5436), 1, - anon_sym_COLON, + [66277] = 2, + ACTIONS(4107), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65946] = 2, - ACTIONS(5438), 1, - anon_sym_EQ, + [66285] = 2, + ACTIONS(5436), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65954] = 2, - ACTIONS(4237), 1, - anon_sym_RPAREN, + [66293] = 2, + ACTIONS(5438), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65962] = 2, + [66301] = 2, ACTIONS(5440), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65970] = 2, + [66309] = 2, ACTIONS(5442), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65978] = 2, - ACTIONS(5138), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65986] = 2, + [66317] = 2, ACTIONS(5444), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65994] = 2, + [66325] = 2, ACTIONS(5446), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66002] = 2, + [66333] = 2, ACTIONS(5448), 1, - anon_sym_SEMI, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66010] = 2, - ACTIONS(4383), 1, - anon_sym_RBRACK, + [66341] = 2, + ACTIONS(5450), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66018] = 2, - ACTIONS(5450), 1, - anon_sym_SEMI, + [66349] = 2, + ACTIONS(5452), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66026] = 2, - ACTIONS(5452), 1, - anon_sym_SEMI, + [66357] = 2, + ACTIONS(4319), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66034] = 2, + [66365] = 2, ACTIONS(5454), 1, - anon_sym_RBRACK, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66373] = 2, + ACTIONS(4055), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66042] = 2, + [66381] = 2, ACTIONS(5456), 1, - anon_sym_fn, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66050] = 2, + [66389] = 2, ACTIONS(5458), 1, - anon_sym_EQ_GT, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66058] = 2, + [66397] = 2, ACTIONS(5460), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66066] = 2, + [66405] = 2, ACTIONS(5462), 1, - sym_identifier, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66074] = 2, + [66413] = 2, ACTIONS(5464), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66082] = 2, + [66421] = 2, ACTIONS(5466), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66090] = 2, + [66429] = 2, ACTIONS(5468), 1, - sym_self, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66098] = 2, + [66437] = 2, ACTIONS(5470), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66106] = 2, + [66445] = 2, ACTIONS(5472), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66114] = 2, - ACTIONS(3997), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66122] = 2, + [66453] = 2, ACTIONS(5474), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66130] = 2, + [66461] = 2, ACTIONS(5476), 1, - anon_sym_COLON_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66138] = 2, + [66469] = 2, ACTIONS(5478), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66146] = 2, - ACTIONS(3957), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66154] = 2, - ACTIONS(4652), 1, - sym_identifier, + [66477] = 2, + ACTIONS(4471), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66162] = 2, + [66485] = 2, ACTIONS(5480), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66170] = 2, + [66493] = 2, ACTIONS(5482), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66178] = 2, + [66501] = 2, ACTIONS(5484), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66186] = 2, + [66509] = 2, ACTIONS(5486), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66194] = 2, + [66517] = 2, ACTIONS(5488), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66202] = 2, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66210] = 2, + [66525] = 2, ACTIONS(5490), 1, - anon_sym_SEMI, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66218] = 2, - ACTIONS(4631), 1, - anon_sym_RBRACE, + [66533] = 2, + ACTIONS(5492), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66226] = 2, - ACTIONS(5492), 1, + [66541] = 2, + ACTIONS(5494), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66234] = 2, - ACTIONS(4161), 1, - anon_sym_COLON_COLON, + [66549] = 2, + ACTIONS(5496), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66242] = 2, - ACTIONS(5494), 1, - anon_sym_RPAREN, + [66557] = 2, + ACTIONS(4047), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66250] = 2, - ACTIONS(5496), 1, - anon_sym_RBRACE, + [66565] = 2, + ACTIONS(3524), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66258] = 2, + [66573] = 2, ACTIONS(5498), 1, - anon_sym_SEMI, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66581] = 2, + ACTIONS(4152), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66266] = 2, + [66589] = 2, ACTIONS(5500), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66274] = 2, + [66597] = 2, ACTIONS(5502), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66282] = 2, - ACTIONS(4541), 1, - sym_identifier, + [66605] = 2, + ACTIONS(5504), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66290] = 2, - ACTIONS(3189), 1, + [66613] = 2, + ACTIONS(4045), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66621] = 2, + ACTIONS(5506), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66298] = 2, - ACTIONS(5504), 1, + [66629] = 2, + ACTIONS(5508), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66306] = 2, - ACTIONS(3961), 1, - anon_sym_SEMI, + [66637] = 2, + ACTIONS(3195), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66314] = 2, - ACTIONS(5506), 1, + [66645] = 2, + ACTIONS(5510), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66322] = 2, - ACTIONS(2480), 1, - anon_sym_PLUS, + [66653] = 2, + ACTIONS(4726), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66661] = 2, + ACTIONS(5512), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66330] = 2, - ACTIONS(4623), 1, + [66669] = 2, + ACTIONS(5514), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66677] = 2, + ACTIONS(5516), 1, + anon_sym_fn, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66685] = 2, + ACTIONS(5518), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66693] = 2, + ACTIONS(5044), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66338] = 2, - ACTIONS(5508), 1, + [66701] = 2, + ACTIONS(5520), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66346] = 2, - ACTIONS(5510), 1, - sym_identifier, + [66709] = 2, + ACTIONS(5148), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66354] = 2, - ACTIONS(2654), 1, - anon_sym_COLON_COLON, + [66717] = 2, + ACTIONS(5522), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66362] = 2, - ACTIONS(5512), 1, - anon_sym_fn, + [66725] = 2, + ACTIONS(2473), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66370] = 2, - ACTIONS(5019), 1, + [66733] = 2, + ACTIONS(4654), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66378] = 2, - ACTIONS(2720), 1, - anon_sym_COLON_COLON, + [66741] = 2, + ACTIONS(5030), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66386] = 2, - ACTIONS(5514), 1, + [66749] = 2, + ACTIONS(5524), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66757] = 2, + ACTIONS(2638), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66394] = 2, - ACTIONS(5516), 1, + [66765] = 2, + ACTIONS(5526), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66773] = 2, + ACTIONS(5528), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66402] = 2, - ACTIONS(4613), 1, - anon_sym_RPAREN, + [66781] = 2, + ACTIONS(2692), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66410] = 2, - ACTIONS(2393), 1, - anon_sym_EQ_GT, + [66789] = 2, + ACTIONS(5530), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66418] = 2, - ACTIONS(5518), 1, + [66797] = 2, + ACTIONS(5532), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66426] = 2, - ACTIONS(5520), 1, + [66805] = 2, + ACTIONS(5534), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66434] = 2, - ACTIONS(2714), 1, - anon_sym_COLON_COLON, + [66813] = 2, + ACTIONS(4539), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66442] = 2, - ACTIONS(5522), 1, - sym_identifier, + [66821] = 2, + ACTIONS(4625), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66450] = 2, - ACTIONS(5004), 1, + [66829] = 2, + ACTIONS(5536), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66458] = 2, - ACTIONS(5524), 1, + [66837] = 2, + ACTIONS(2708), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66845] = 2, + ACTIONS(2405), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66853] = 2, + ACTIONS(5538), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66466] = 2, - ACTIONS(5526), 1, + [66861] = 2, + ACTIONS(5540), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66474] = 2, - ACTIONS(5528), 1, + [66869] = 2, + ACTIONS(5542), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66482] = 2, - ACTIONS(4297), 1, + [66877] = 2, + ACTIONS(4288), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66490] = 2, - ACTIONS(4073), 1, + [66885] = 2, + ACTIONS(5544), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66893] = 2, + ACTIONS(4091), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66498] = 2, - ACTIONS(5530), 1, + [66901] = 2, + ACTIONS(5546), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66506] = 2, - ACTIONS(5532), 1, + [66909] = 2, + ACTIONS(5548), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66514] = 2, - ACTIONS(5534), 1, - anon_sym_EQ_GT, + [66917] = 2, + ACTIONS(5550), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66522] = 2, - ACTIONS(4150), 1, + [66925] = 2, + ACTIONS(4168), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66530] = 2, - ACTIONS(5536), 1, + [66933] = 2, + ACTIONS(5552), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66538] = 2, - ACTIONS(5538), 1, - sym_identifier, + [66941] = 2, + ACTIONS(5554), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66546] = 2, - ACTIONS(4097), 1, + [66949] = 2, + ACTIONS(4115), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66554] = 2, - ACTIONS(5540), 1, + [66957] = 2, + ACTIONS(5556), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66562] = 2, - ACTIONS(5542), 1, - anon_sym_COLON_COLON, + [66965] = 2, + ACTIONS(5558), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66570] = 2, - ACTIONS(5544), 1, - anon_sym_SEMI, + [66973] = 2, + ACTIONS(5560), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66578] = 2, - ACTIONS(5546), 1, - sym_identifier, + [66981] = 2, + ACTIONS(5562), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66586] = 2, - ACTIONS(4594), 1, + [66989] = 2, + ACTIONS(4617), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66594] = 2, - ACTIONS(5548), 1, + [66997] = 2, + ACTIONS(5564), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66602] = 2, - ACTIONS(5550), 1, + [67005] = 2, + ACTIONS(5566), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66610] = 2, - ACTIONS(5552), 1, + [67013] = 2, + ACTIONS(5568), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66618] = 2, - ACTIONS(5554), 1, - anon_sym_SEMI, + [67021] = 2, + ACTIONS(5116), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66626] = 2, - ACTIONS(5556), 1, - anon_sym_COLON, + [67029] = 2, + ACTIONS(5570), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66634] = 2, - ACTIONS(4557), 1, - anon_sym_GT, + [67037] = 2, + ACTIONS(5572), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66642] = 2, - ACTIONS(4247), 1, + [67045] = 2, + ACTIONS(4257), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66650] = 2, - ACTIONS(5558), 1, + [67053] = 2, + ACTIONS(5574), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66658] = 2, - ACTIONS(5560), 1, + [67061] = 2, + ACTIONS(5576), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66666] = 2, - ACTIONS(630), 1, - anon_sym_RBRACK, + [67069] = 2, + ACTIONS(5578), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66674] = 2, - ACTIONS(5562), 1, - anon_sym_RBRACE, + [67077] = 2, + ACTIONS(2421), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66682] = 2, - ACTIONS(5564), 1, - anon_sym_RBRACE, + [67085] = 2, + ACTIONS(5580), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66690] = 2, - ACTIONS(5566), 1, + [67093] = 2, + ACTIONS(5582), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66698] = 2, - ACTIONS(5568), 1, - anon_sym_COLON, + [67101] = 2, + ACTIONS(5584), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66706] = 2, - ACTIONS(5570), 1, - sym_identifier, + [67109] = 2, + ACTIONS(5586), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66714] = 2, - ACTIONS(5572), 1, + [67117] = 2, + ACTIONS(5588), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66722] = 2, - ACTIONS(2371), 1, - anon_sym_EQ_GT, + [67125] = 2, + ACTIONS(3528), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66730] = 2, - ACTIONS(5574), 1, - anon_sym_LBRACK, + [67133] = 2, + ACTIONS(5590), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66738] = 2, - ACTIONS(5576), 1, - anon_sym_LPAREN, + [67141] = 2, + ACTIONS(5592), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66746] = 2, - ACTIONS(5578), 1, + [67149] = 2, + ACTIONS(5594), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66754] = 2, - ACTIONS(5580), 1, - anon_sym_SEMI, + [67157] = 2, + ACTIONS(5596), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66762] = 2, - ACTIONS(5094), 1, - anon_sym_RBRACE, + [67165] = 2, + ACTIONS(5598), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66770] = 2, - ACTIONS(5582), 1, + [67173] = 2, + ACTIONS(5600), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66778] = 2, - ACTIONS(5584), 1, - anon_sym_SEMI, + [67181] = 2, + ACTIONS(5602), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66786] = 2, - ACTIONS(5586), 1, - anon_sym_COLON_COLON, + [67189] = 2, + ACTIONS(5604), 1, + anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66794] = 2, - ACTIONS(5588), 1, + [67197] = 2, + ACTIONS(5606), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66802] = 2, - ACTIONS(5590), 1, + [67205] = 2, + ACTIONS(5608), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66810] = 2, - ACTIONS(5148), 1, + [67213] = 2, + ACTIONS(5244), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66818] = 2, - ACTIONS(5592), 1, + [67221] = 2, + ACTIONS(5610), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66826] = 2, - ACTIONS(5594), 1, + [67229] = 2, + ACTIONS(5612), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66834] = 2, - ACTIONS(5596), 1, + [67237] = 2, + ACTIONS(5614), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66842] = 2, - ACTIONS(5598), 1, - anon_sym_SEMI, + [67245] = 2, + ACTIONS(5616), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66850] = 2, - ACTIONS(5600), 1, - sym_identifier, + [67253] = 2, + ACTIONS(5618), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66858] = 2, - ACTIONS(5602), 1, + [67261] = 2, + ACTIONS(5620), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66866] = 2, - ACTIONS(5604), 1, + [67269] = 2, + ACTIONS(5622), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66874] = 2, - ACTIONS(3465), 1, + [67277] = 2, + ACTIONS(3451), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66882] = 2, - ACTIONS(5146), 1, - anon_sym_SEMI, + [67285] = 2, + ACTIONS(5216), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66890] = 2, - ACTIONS(5606), 1, + [67293] = 2, + ACTIONS(5624), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66898] = 2, - ACTIONS(5608), 1, - anon_sym_LT, + [67301] = 2, + ACTIONS(5626), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66906] = 2, - ACTIONS(5144), 1, + [67309] = 2, + ACTIONS(5166), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66914] = 2, - ACTIONS(5610), 1, + [67317] = 2, + ACTIONS(5628), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66922] = 2, - ACTIONS(5612), 1, + [67325] = 2, + ACTIONS(5630), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66930] = 2, - ACTIONS(5614), 1, + [67333] = 2, + ACTIONS(5632), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66938] = 2, - ACTIONS(3532), 1, - anon_sym_COLON_COLON, + [67341] = 2, + ACTIONS(5164), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66946] = 2, - ACTIONS(5192), 1, - anon_sym_COLON_COLON, + [67349] = 2, + ACTIONS(5150), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66954] = 2, - ACTIONS(5616), 1, + [67357] = 2, + ACTIONS(5634), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66962] = 2, - ACTIONS(5618), 1, - anon_sym_RBRACK, + [67365] = 2, + ACTIONS(5636), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66970] = 2, - ACTIONS(5620), 1, + [67373] = 2, + ACTIONS(4567), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -126073,1916 +126617,1926 @@ static const uint16_t ts_small_parse_table[] = { }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(639)] = 0, - [SMALL_STATE(640)] = 129, - [SMALL_STATE(641)] = 258, - [SMALL_STATE(642)] = 387, - [SMALL_STATE(643)] = 516, - [SMALL_STATE(644)] = 645, - [SMALL_STATE(645)] = 774, - [SMALL_STATE(646)] = 903, - [SMALL_STATE(647)] = 1032, - [SMALL_STATE(648)] = 1161, - [SMALL_STATE(649)] = 1290, - [SMALL_STATE(650)] = 1419, - [SMALL_STATE(651)] = 1548, - [SMALL_STATE(652)] = 1677, - [SMALL_STATE(653)] = 1806, - [SMALL_STATE(654)] = 1935, - [SMALL_STATE(655)] = 2064, - [SMALL_STATE(656)] = 2193, - [SMALL_STATE(657)] = 2322, - [SMALL_STATE(658)] = 2453, - [SMALL_STATE(659)] = 2582, - [SMALL_STATE(660)] = 2711, - [SMALL_STATE(661)] = 2840, - [SMALL_STATE(662)] = 2969, - [SMALL_STATE(663)] = 3098, - [SMALL_STATE(664)] = 3227, - [SMALL_STATE(665)] = 3356, - [SMALL_STATE(666)] = 3485, - [SMALL_STATE(667)] = 3614, - [SMALL_STATE(668)] = 3743, - [SMALL_STATE(669)] = 3872, - [SMALL_STATE(670)] = 4001, - [SMALL_STATE(671)] = 4130, - [SMALL_STATE(672)] = 4259, - [SMALL_STATE(673)] = 4388, - [SMALL_STATE(674)] = 4517, - [SMALL_STATE(675)] = 4646, - [SMALL_STATE(676)] = 4775, - [SMALL_STATE(677)] = 4904, - [SMALL_STATE(678)] = 5033, - [SMALL_STATE(679)] = 5162, - [SMALL_STATE(680)] = 5291, - [SMALL_STATE(681)] = 5420, - [SMALL_STATE(682)] = 5549, - [SMALL_STATE(683)] = 5678, - [SMALL_STATE(684)] = 5807, - [SMALL_STATE(685)] = 5936, - [SMALL_STATE(686)] = 6065, - [SMALL_STATE(687)] = 6194, - [SMALL_STATE(688)] = 6323, - [SMALL_STATE(689)] = 6452, - [SMALL_STATE(690)] = 6581, - [SMALL_STATE(691)] = 6710, - [SMALL_STATE(692)] = 6839, - [SMALL_STATE(693)] = 6968, - [SMALL_STATE(694)] = 7097, - [SMALL_STATE(695)] = 7226, - [SMALL_STATE(696)] = 7355, - [SMALL_STATE(697)] = 7484, - [SMALL_STATE(698)] = 7613, - [SMALL_STATE(699)] = 7742, - [SMALL_STATE(700)] = 7871, - [SMALL_STATE(701)] = 8000, - [SMALL_STATE(702)] = 8129, - [SMALL_STATE(703)] = 8258, - [SMALL_STATE(704)] = 8387, - [SMALL_STATE(705)] = 8516, - [SMALL_STATE(706)] = 8645, - [SMALL_STATE(707)] = 8774, - [SMALL_STATE(708)] = 8903, - [SMALL_STATE(709)] = 9032, - [SMALL_STATE(710)] = 9161, - [SMALL_STATE(711)] = 9290, - [SMALL_STATE(712)] = 9419, - [SMALL_STATE(713)] = 9548, - [SMALL_STATE(714)] = 9677, - [SMALL_STATE(715)] = 9806, - [SMALL_STATE(716)] = 9935, - [SMALL_STATE(717)] = 10064, - [SMALL_STATE(718)] = 10193, - [SMALL_STATE(719)] = 10322, - [SMALL_STATE(720)] = 10451, - [SMALL_STATE(721)] = 10580, - [SMALL_STATE(722)] = 10709, - [SMALL_STATE(723)] = 10838, - [SMALL_STATE(724)] = 10967, - [SMALL_STATE(725)] = 11096, - [SMALL_STATE(726)] = 11225, - [SMALL_STATE(727)] = 11354, - [SMALL_STATE(728)] = 11483, - [SMALL_STATE(729)] = 11612, - [SMALL_STATE(730)] = 11683, - [SMALL_STATE(731)] = 11812, - [SMALL_STATE(732)] = 11941, - [SMALL_STATE(733)] = 12070, - [SMALL_STATE(734)] = 12199, - [SMALL_STATE(735)] = 12328, - [SMALL_STATE(736)] = 12457, - [SMALL_STATE(737)] = 12586, - [SMALL_STATE(738)] = 12715, - [SMALL_STATE(739)] = 12844, - [SMALL_STATE(740)] = 12973, - [SMALL_STATE(741)] = 13102, - [SMALL_STATE(742)] = 13231, - [SMALL_STATE(743)] = 13360, - [SMALL_STATE(744)] = 13489, - [SMALL_STATE(745)] = 13618, - [SMALL_STATE(746)] = 13747, - [SMALL_STATE(747)] = 13876, - [SMALL_STATE(748)] = 14005, - [SMALL_STATE(749)] = 14134, - [SMALL_STATE(750)] = 14200, - [SMALL_STATE(751)] = 14266, - [SMALL_STATE(752)] = 14332, - [SMALL_STATE(753)] = 14398, - [SMALL_STATE(754)] = 14460, - [SMALL_STATE(755)] = 14530, - [SMALL_STATE(756)] = 14597, - [SMALL_STATE(757)] = 14664, - [SMALL_STATE(758)] = 14720, - [SMALL_STATE(759)] = 14784, - [SMALL_STATE(760)] = 14848, - [SMALL_STATE(761)] = 14910, - [SMALL_STATE(762)] = 14966, - [SMALL_STATE(763)] = 15030, - [SMALL_STATE(764)] = 15090, - [SMALL_STATE(765)] = 15150, - [SMALL_STATE(766)] = 15210, - [SMALL_STATE(767)] = 15266, - [SMALL_STATE(768)] = 15326, - [SMALL_STATE(769)] = 15382, - [SMALL_STATE(770)] = 15446, - [SMALL_STATE(771)] = 15502, - [SMALL_STATE(772)] = 15559, - [SMALL_STATE(773)] = 15616, - [SMALL_STATE(774)] = 15673, - [SMALL_STATE(775)] = 15728, - [SMALL_STATE(776)] = 15785, - [SMALL_STATE(777)] = 15844, - [SMALL_STATE(778)] = 15903, - [SMALL_STATE(779)] = 15961, - [SMALL_STATE(780)] = 16015, - [SMALL_STATE(781)] = 16069, - [SMALL_STATE(782)] = 16123, - [SMALL_STATE(783)] = 16177, - [SMALL_STATE(784)] = 16231, - [SMALL_STATE(785)] = 16285, - [SMALL_STATE(786)] = 16339, - [SMALL_STATE(787)] = 16393, - [SMALL_STATE(788)] = 16447, - [SMALL_STATE(789)] = 16501, - [SMALL_STATE(790)] = 16555, - [SMALL_STATE(791)] = 16609, - [SMALL_STATE(792)] = 16663, - [SMALL_STATE(793)] = 16717, - [SMALL_STATE(794)] = 16771, - [SMALL_STATE(795)] = 16825, - [SMALL_STATE(796)] = 16879, - [SMALL_STATE(797)] = 16933, - [SMALL_STATE(798)] = 16987, - [SMALL_STATE(799)] = 17041, - [SMALL_STATE(800)] = 17095, - [SMALL_STATE(801)] = 17149, - [SMALL_STATE(802)] = 17203, - [SMALL_STATE(803)] = 17257, - [SMALL_STATE(804)] = 17311, - [SMALL_STATE(805)] = 17365, - [SMALL_STATE(806)] = 17419, - [SMALL_STATE(807)] = 17473, - [SMALL_STATE(808)] = 17527, - [SMALL_STATE(809)] = 17581, - [SMALL_STATE(810)] = 17635, - [SMALL_STATE(811)] = 17689, - [SMALL_STATE(812)] = 17745, - [SMALL_STATE(813)] = 17799, - [SMALL_STATE(814)] = 17853, - [SMALL_STATE(815)] = 17907, - [SMALL_STATE(816)] = 17961, - [SMALL_STATE(817)] = 18017, - [SMALL_STATE(818)] = 18071, - [SMALL_STATE(819)] = 18125, - [SMALL_STATE(820)] = 18179, - [SMALL_STATE(821)] = 18233, - [SMALL_STATE(822)] = 18287, - [SMALL_STATE(823)] = 18341, - [SMALL_STATE(824)] = 18395, - [SMALL_STATE(825)] = 18449, - [SMALL_STATE(826)] = 18503, - [SMALL_STATE(827)] = 18557, - [SMALL_STATE(828)] = 18611, - [SMALL_STATE(829)] = 18665, - [SMALL_STATE(830)] = 18719, - [SMALL_STATE(831)] = 18773, - [SMALL_STATE(832)] = 18827, - [SMALL_STATE(833)] = 18883, - [SMALL_STATE(834)] = 18937, - [SMALL_STATE(835)] = 18991, - [SMALL_STATE(836)] = 19045, - [SMALL_STATE(837)] = 19099, - [SMALL_STATE(838)] = 19155, - [SMALL_STATE(839)] = 19209, - [SMALL_STATE(840)] = 19263, - [SMALL_STATE(841)] = 19317, - [SMALL_STATE(842)] = 19371, - [SMALL_STATE(843)] = 19425, - [SMALL_STATE(844)] = 19479, - [SMALL_STATE(845)] = 19533, - [SMALL_STATE(846)] = 19587, - [SMALL_STATE(847)] = 19641, - [SMALL_STATE(848)] = 19695, - [SMALL_STATE(849)] = 19749, - [SMALL_STATE(850)] = 19803, - [SMALL_STATE(851)] = 19857, - [SMALL_STATE(852)] = 19911, - [SMALL_STATE(853)] = 19965, - [SMALL_STATE(854)] = 20019, - [SMALL_STATE(855)] = 20073, - [SMALL_STATE(856)] = 20127, - [SMALL_STATE(857)] = 20181, - [SMALL_STATE(858)] = 20235, - [SMALL_STATE(859)] = 20289, - [SMALL_STATE(860)] = 20343, - [SMALL_STATE(861)] = 20397, - [SMALL_STATE(862)] = 20451, - [SMALL_STATE(863)] = 20505, - [SMALL_STATE(864)] = 20559, - [SMALL_STATE(865)] = 20613, - [SMALL_STATE(866)] = 20667, - [SMALL_STATE(867)] = 20721, - [SMALL_STATE(868)] = 20775, - [SMALL_STATE(869)] = 20829, - [SMALL_STATE(870)] = 20885, - [SMALL_STATE(871)] = 20939, - [SMALL_STATE(872)] = 20993, - [SMALL_STATE(873)] = 21047, - [SMALL_STATE(874)] = 21101, - [SMALL_STATE(875)] = 21155, - [SMALL_STATE(876)] = 21209, - [SMALL_STATE(877)] = 21263, - [SMALL_STATE(878)] = 21319, - [SMALL_STATE(879)] = 21373, - [SMALL_STATE(880)] = 21427, - [SMALL_STATE(881)] = 21481, - [SMALL_STATE(882)] = 21535, - [SMALL_STATE(883)] = 21589, - [SMALL_STATE(884)] = 21643, - [SMALL_STATE(885)] = 21697, - [SMALL_STATE(886)] = 21751, - [SMALL_STATE(887)] = 21805, - [SMALL_STATE(888)] = 21859, - [SMALL_STATE(889)] = 21913, - [SMALL_STATE(890)] = 21967, - [SMALL_STATE(891)] = 22021, - [SMALL_STATE(892)] = 22075, - [SMALL_STATE(893)] = 22129, - [SMALL_STATE(894)] = 22183, - [SMALL_STATE(895)] = 22237, - [SMALL_STATE(896)] = 22291, - [SMALL_STATE(897)] = 22345, - [SMALL_STATE(898)] = 22399, - [SMALL_STATE(899)] = 22453, - [SMALL_STATE(900)] = 22507, - [SMALL_STATE(901)] = 22561, - [SMALL_STATE(902)] = 22615, - [SMALL_STATE(903)] = 22669, - [SMALL_STATE(904)] = 22723, - [SMALL_STATE(905)] = 22777, - [SMALL_STATE(906)] = 22831, - [SMALL_STATE(907)] = 22885, - [SMALL_STATE(908)] = 22939, - [SMALL_STATE(909)] = 22993, - [SMALL_STATE(910)] = 23047, - [SMALL_STATE(911)] = 23101, - [SMALL_STATE(912)] = 23155, - [SMALL_STATE(913)] = 23209, - [SMALL_STATE(914)] = 23263, - [SMALL_STATE(915)] = 23317, - [SMALL_STATE(916)] = 23375, - [SMALL_STATE(917)] = 23429, - [SMALL_STATE(918)] = 23483, - [SMALL_STATE(919)] = 23537, - [SMALL_STATE(920)] = 23591, - [SMALL_STATE(921)] = 23645, - [SMALL_STATE(922)] = 23699, - [SMALL_STATE(923)] = 23753, - [SMALL_STATE(924)] = 23807, - [SMALL_STATE(925)] = 23861, - [SMALL_STATE(926)] = 23915, - [SMALL_STATE(927)] = 23969, - [SMALL_STATE(928)] = 24023, - [SMALL_STATE(929)] = 24077, - [SMALL_STATE(930)] = 24131, - [SMALL_STATE(931)] = 24185, - [SMALL_STATE(932)] = 24239, - [SMALL_STATE(933)] = 24293, - [SMALL_STATE(934)] = 24347, - [SMALL_STATE(935)] = 24401, - [SMALL_STATE(936)] = 24455, - [SMALL_STATE(937)] = 24509, - [SMALL_STATE(938)] = 24563, - [SMALL_STATE(939)] = 24617, - [SMALL_STATE(940)] = 24671, - [SMALL_STATE(941)] = 24725, - [SMALL_STATE(942)] = 24779, - [SMALL_STATE(943)] = 24833, - [SMALL_STATE(944)] = 24887, - [SMALL_STATE(945)] = 24941, - [SMALL_STATE(946)] = 24995, - [SMALL_STATE(947)] = 25049, - [SMALL_STATE(948)] = 25103, - [SMALL_STATE(949)] = 25157, - [SMALL_STATE(950)] = 25211, - [SMALL_STATE(951)] = 25265, - [SMALL_STATE(952)] = 25319, - [SMALL_STATE(953)] = 25373, - [SMALL_STATE(954)] = 25427, - [SMALL_STATE(955)] = 25481, - [SMALL_STATE(956)] = 25535, - [SMALL_STATE(957)] = 25589, - [SMALL_STATE(958)] = 25643, - [SMALL_STATE(959)] = 25697, - [SMALL_STATE(960)] = 25751, - [SMALL_STATE(961)] = 25805, - [SMALL_STATE(962)] = 25859, - [SMALL_STATE(963)] = 25915, - [SMALL_STATE(964)] = 25969, - [SMALL_STATE(965)] = 26023, - [SMALL_STATE(966)] = 26077, - [SMALL_STATE(967)] = 26135, - [SMALL_STATE(968)] = 26189, - [SMALL_STATE(969)] = 26245, - [SMALL_STATE(970)] = 26299, - [SMALL_STATE(971)] = 26353, - [SMALL_STATE(972)] = 26407, - [SMALL_STATE(973)] = 26461, - [SMALL_STATE(974)] = 26515, - [SMALL_STATE(975)] = 26569, - [SMALL_STATE(976)] = 26623, - [SMALL_STATE(977)] = 26677, - [SMALL_STATE(978)] = 26731, - [SMALL_STATE(979)] = 26785, - [SMALL_STATE(980)] = 26839, - [SMALL_STATE(981)] = 26893, - [SMALL_STATE(982)] = 26947, - [SMALL_STATE(983)] = 27001, - [SMALL_STATE(984)] = 27055, - [SMALL_STATE(985)] = 27109, - [SMALL_STATE(986)] = 27163, - [SMALL_STATE(987)] = 27217, - [SMALL_STATE(988)] = 27273, - [SMALL_STATE(989)] = 27327, - [SMALL_STATE(990)] = 27381, - [SMALL_STATE(991)] = 27435, - [SMALL_STATE(992)] = 27489, - [SMALL_STATE(993)] = 27545, - [SMALL_STATE(994)] = 27601, - [SMALL_STATE(995)] = 27655, - [SMALL_STATE(996)] = 27709, - [SMALL_STATE(997)] = 27763, - [SMALL_STATE(998)] = 27817, - [SMALL_STATE(999)] = 27871, - [SMALL_STATE(1000)] = 27925, - [SMALL_STATE(1001)] = 27979, - [SMALL_STATE(1002)] = 28035, - [SMALL_STATE(1003)] = 28089, - [SMALL_STATE(1004)] = 28143, - [SMALL_STATE(1005)] = 28197, - [SMALL_STATE(1006)] = 28251, - [SMALL_STATE(1007)] = 28305, - [SMALL_STATE(1008)] = 28359, - [SMALL_STATE(1009)] = 28415, - [SMALL_STATE(1010)] = 28469, - [SMALL_STATE(1011)] = 28523, - [SMALL_STATE(1012)] = 28577, - [SMALL_STATE(1013)] = 28631, - [SMALL_STATE(1014)] = 28685, - [SMALL_STATE(1015)] = 28739, - [SMALL_STATE(1016)] = 28793, - [SMALL_STATE(1017)] = 28847, - [SMALL_STATE(1018)] = 28901, - [SMALL_STATE(1019)] = 28955, - [SMALL_STATE(1020)] = 29009, - [SMALL_STATE(1021)] = 29063, - [SMALL_STATE(1022)] = 29117, - [SMALL_STATE(1023)] = 29171, - [SMALL_STATE(1024)] = 29225, - [SMALL_STATE(1025)] = 29279, - [SMALL_STATE(1026)] = 29335, - [SMALL_STATE(1027)] = 29389, - [SMALL_STATE(1028)] = 29445, - [SMALL_STATE(1029)] = 29499, - [SMALL_STATE(1030)] = 29553, - [SMALL_STATE(1031)] = 29607, - [SMALL_STATE(1032)] = 29661, - [SMALL_STATE(1033)] = 29715, - [SMALL_STATE(1034)] = 29769, - [SMALL_STATE(1035)] = 29823, - [SMALL_STATE(1036)] = 29877, - [SMALL_STATE(1037)] = 29930, - [SMALL_STATE(1038)] = 29983, - [SMALL_STATE(1039)] = 30036, - [SMALL_STATE(1040)] = 30089, - [SMALL_STATE(1041)] = 30142, - [SMALL_STATE(1042)] = 30195, - [SMALL_STATE(1043)] = 30248, - [SMALL_STATE(1044)] = 30301, - [SMALL_STATE(1045)] = 30354, - [SMALL_STATE(1046)] = 30407, - [SMALL_STATE(1047)] = 30460, - [SMALL_STATE(1048)] = 30513, - [SMALL_STATE(1049)] = 30570, - [SMALL_STATE(1050)] = 30623, - [SMALL_STATE(1051)] = 30676, - [SMALL_STATE(1052)] = 30729, - [SMALL_STATE(1053)] = 30782, - [SMALL_STATE(1054)] = 30835, - [SMALL_STATE(1055)] = 30888, - [SMALL_STATE(1056)] = 30941, - [SMALL_STATE(1057)] = 30994, - [SMALL_STATE(1058)] = 31047, - [SMALL_STATE(1059)] = 31100, - [SMALL_STATE(1060)] = 31153, - [SMALL_STATE(1061)] = 31208, - [SMALL_STATE(1062)] = 31261, - [SMALL_STATE(1063)] = 31314, - [SMALL_STATE(1064)] = 31367, - [SMALL_STATE(1065)] = 31420, - [SMALL_STATE(1066)] = 31473, - [SMALL_STATE(1067)] = 31526, - [SMALL_STATE(1068)] = 31579, - [SMALL_STATE(1069)] = 31632, - [SMALL_STATE(1070)] = 31685, - [SMALL_STATE(1071)] = 31738, - [SMALL_STATE(1072)] = 31791, - [SMALL_STATE(1073)] = 31844, - [SMALL_STATE(1074)] = 31899, - [SMALL_STATE(1075)] = 31952, - [SMALL_STATE(1076)] = 32005, - [SMALL_STATE(1077)] = 32058, - [SMALL_STATE(1078)] = 32111, - [SMALL_STATE(1079)] = 32164, - [SMALL_STATE(1080)] = 32217, - [SMALL_STATE(1081)] = 32270, - [SMALL_STATE(1082)] = 32323, - [SMALL_STATE(1083)] = 32378, - [SMALL_STATE(1084)] = 32431, - [SMALL_STATE(1085)] = 32484, - [SMALL_STATE(1086)] = 32537, - [SMALL_STATE(1087)] = 32590, - [SMALL_STATE(1088)] = 32643, - [SMALL_STATE(1089)] = 32696, - [SMALL_STATE(1090)] = 32749, - [SMALL_STATE(1091)] = 32802, - [SMALL_STATE(1092)] = 32855, - [SMALL_STATE(1093)] = 32944, - [SMALL_STATE(1094)] = 32997, - [SMALL_STATE(1095)] = 33050, - [SMALL_STATE(1096)] = 33139, - [SMALL_STATE(1097)] = 33192, - [SMALL_STATE(1098)] = 33245, - [SMALL_STATE(1099)] = 33298, - [SMALL_STATE(1100)] = 33351, - [SMALL_STATE(1101)] = 33404, - [SMALL_STATE(1102)] = 33457, - [SMALL_STATE(1103)] = 33510, - [SMALL_STATE(1104)] = 33563, - [SMALL_STATE(1105)] = 33616, - [SMALL_STATE(1106)] = 33669, - [SMALL_STATE(1107)] = 33722, - [SMALL_STATE(1108)] = 33775, - [SMALL_STATE(1109)] = 33828, - [SMALL_STATE(1110)] = 33881, - [SMALL_STATE(1111)] = 33934, - [SMALL_STATE(1112)] = 33987, - [SMALL_STATE(1113)] = 34040, - [SMALL_STATE(1114)] = 34093, - [SMALL_STATE(1115)] = 34146, - [SMALL_STATE(1116)] = 34199, - [SMALL_STATE(1117)] = 34252, - [SMALL_STATE(1118)] = 34305, - [SMALL_STATE(1119)] = 34358, - [SMALL_STATE(1120)] = 34411, - [SMALL_STATE(1121)] = 34464, - [SMALL_STATE(1122)] = 34517, - [SMALL_STATE(1123)] = 34570, - [SMALL_STATE(1124)] = 34625, - [SMALL_STATE(1125)] = 34678, - [SMALL_STATE(1126)] = 34731, - [SMALL_STATE(1127)] = 34784, - [SMALL_STATE(1128)] = 34837, - [SMALL_STATE(1129)] = 34890, - [SMALL_STATE(1130)] = 34943, - [SMALL_STATE(1131)] = 34996, - [SMALL_STATE(1132)] = 35049, - [SMALL_STATE(1133)] = 35102, - [SMALL_STATE(1134)] = 35162, - [SMALL_STATE(1135)] = 35214, - [SMALL_STATE(1136)] = 35292, - [SMALL_STATE(1137)] = 35344, - [SMALL_STATE(1138)] = 35424, - [SMALL_STATE(1139)] = 35504, - [SMALL_STATE(1140)] = 35584, - [SMALL_STATE(1141)] = 35652, - [SMALL_STATE(1142)] = 35732, - [SMALL_STATE(1143)] = 35804, - [SMALL_STATE(1144)] = 35868, - [SMALL_STATE(1145)] = 35934, - [SMALL_STATE(1146)] = 36010, - [SMALL_STATE(1147)] = 36070, - [SMALL_STATE(1148)] = 36150, - [SMALL_STATE(1149)] = 36236, - [SMALL_STATE(1150)] = 36296, - [SMALL_STATE(1151)] = 36366, - [SMALL_STATE(1152)] = 36446, - [SMALL_STATE(1153)] = 36506, - [SMALL_STATE(1154)] = 36566, - [SMALL_STATE(1155)] = 36652, - [SMALL_STATE(1156)] = 36714, - [SMALL_STATE(1157)] = 36793, - [SMALL_STATE(1158)] = 36878, - [SMALL_STATE(1159)] = 36929, - [SMALL_STATE(1160)] = 37016, - [SMALL_STATE(1161)] = 37103, - [SMALL_STATE(1162)] = 37190, - [SMALL_STATE(1163)] = 37241, - [SMALL_STATE(1164)] = 37328, - [SMALL_STATE(1165)] = 37413, - [SMALL_STATE(1166)] = 37470, - [SMALL_STATE(1167)] = 37546, - [SMALL_STATE(1168)] = 37622, - [SMALL_STATE(1169)] = 37698, - [SMALL_STATE(1170)] = 37774, - [SMALL_STATE(1171)] = 37828, - [SMALL_STATE(1172)] = 37884, - [SMALL_STATE(1173)] = 37933, - [SMALL_STATE(1174)] = 37982, - [SMALL_STATE(1175)] = 38031, - [SMALL_STATE(1176)] = 38084, - [SMALL_STATE(1177)] = 38157, - [SMALL_STATE(1178)] = 38206, - [SMALL_STATE(1179)] = 38255, - [SMALL_STATE(1180)] = 38304, - [SMALL_STATE(1181)] = 38353, - [SMALL_STATE(1182)] = 38402, - [SMALL_STATE(1183)] = 38451, - [SMALL_STATE(1184)] = 38502, - [SMALL_STATE(1185)] = 38591, - [SMALL_STATE(1186)] = 38680, - [SMALL_STATE(1187)] = 38733, - [SMALL_STATE(1188)] = 38784, - [SMALL_STATE(1189)] = 38870, - [SMALL_STATE(1190)] = 38920, - [SMALL_STATE(1191)] = 38998, - [SMALL_STATE(1192)] = 39076, - [SMALL_STATE(1193)] = 39126, - [SMALL_STATE(1194)] = 39212, - [SMALL_STATE(1195)] = 39262, - [SMALL_STATE(1196)] = 39312, - [SMALL_STATE(1197)] = 39395, - [SMALL_STATE(1198)] = 39476, - [SMALL_STATE(1199)] = 39559, - [SMALL_STATE(1200)] = 39642, - [SMALL_STATE(1201)] = 39723, - [SMALL_STATE(1202)] = 39806, - [SMALL_STATE(1203)] = 39889, - [SMALL_STATE(1204)] = 39972, - [SMALL_STATE(1205)] = 40055, - [SMALL_STATE(1206)] = 40130, - [SMALL_STATE(1207)] = 40211, - [SMALL_STATE(1208)] = 40294, - [SMALL_STATE(1209)] = 40349, - [SMALL_STATE(1210)] = 40430, - [SMALL_STATE(1211)] = 40511, - [SMALL_STATE(1212)] = 40592, - [SMALL_STATE(1213)] = 40675, - [SMALL_STATE(1214)] = 40758, - [SMALL_STATE(1215)] = 40833, - [SMALL_STATE(1216)] = 40914, - [SMALL_STATE(1217)] = 40989, - [SMALL_STATE(1218)] = 41072, - [SMALL_STATE(1219)] = 41155, - [SMALL_STATE(1220)] = 41238, - [SMALL_STATE(1221)] = 41313, - [SMALL_STATE(1222)] = 41394, - [SMALL_STATE(1223)] = 41477, - [SMALL_STATE(1224)] = 41560, - [SMALL_STATE(1225)] = 41641, - [SMALL_STATE(1226)] = 41724, - [SMALL_STATE(1227)] = 41807, - [SMALL_STATE(1228)] = 41878, - [SMALL_STATE(1229)] = 41935, - [SMALL_STATE(1230)] = 42010, - [SMALL_STATE(1231)] = 42093, - [SMALL_STATE(1232)] = 42160, - [SMALL_STATE(1233)] = 42219, - [SMALL_STATE(1234)] = 42274, - [SMALL_STATE(1235)] = 42355, - [SMALL_STATE(1236)] = 42436, - [SMALL_STATE(1237)] = 42517, - [SMALL_STATE(1238)] = 42600, - [SMALL_STATE(1239)] = 42683, - [SMALL_STATE(1240)] = 42758, - [SMALL_STATE(1241)] = 42813, - [SMALL_STATE(1242)] = 42876, - [SMALL_STATE(1243)] = 42937, - [SMALL_STATE(1244)] = 43020, - [SMALL_STATE(1245)] = 43101, - [SMALL_STATE(1246)] = 43156, - [SMALL_STATE(1247)] = 43239, - [SMALL_STATE(1248)] = 43310, - [SMALL_STATE(1249)] = 43393, - [SMALL_STATE(1250)] = 43476, - [SMALL_STATE(1251)] = 43559, - [SMALL_STATE(1252)] = 43642, - [SMALL_STATE(1253)] = 43725, - [SMALL_STATE(1254)] = 43806, - [SMALL_STATE(1255)] = 43879, - [SMALL_STATE(1256)] = 43944, - [SMALL_STATE(1257)] = 44024, - [SMALL_STATE(1258)] = 44104, - [SMALL_STATE(1259)] = 44184, - [SMALL_STATE(1260)] = 44264, - [SMALL_STATE(1261)] = 44344, - [SMALL_STATE(1262)] = 44424, - [SMALL_STATE(1263)] = 44504, - [SMALL_STATE(1264)] = 44584, - [SMALL_STATE(1265)] = 44662, - [SMALL_STATE(1266)] = 44742, - [SMALL_STATE(1267)] = 44822, - [SMALL_STATE(1268)] = 44902, - [SMALL_STATE(1269)] = 44980, - [SMALL_STATE(1270)] = 45060, - [SMALL_STATE(1271)] = 45140, - [SMALL_STATE(1272)] = 45220, - [SMALL_STATE(1273)] = 45300, - [SMALL_STATE(1274)] = 45380, - [SMALL_STATE(1275)] = 45460, - [SMALL_STATE(1276)] = 45540, - [SMALL_STATE(1277)] = 45620, - [SMALL_STATE(1278)] = 45688, - [SMALL_STATE(1279)] = 45768, - [SMALL_STATE(1280)] = 45848, - [SMALL_STATE(1281)] = 45928, - [SMALL_STATE(1282)] = 46008, - [SMALL_STATE(1283)] = 46088, - [SMALL_STATE(1284)] = 46156, - [SMALL_STATE(1285)] = 46236, - [SMALL_STATE(1286)] = 46316, - [SMALL_STATE(1287)] = 46394, - [SMALL_STATE(1288)] = 46474, - [SMALL_STATE(1289)] = 46554, - [SMALL_STATE(1290)] = 46634, - [SMALL_STATE(1291)] = 46714, - [SMALL_STATE(1292)] = 46792, - [SMALL_STATE(1293)] = 46872, - [SMALL_STATE(1294)] = 46952, - [SMALL_STATE(1295)] = 47032, - [SMALL_STATE(1296)] = 47097, - [SMALL_STATE(1297)] = 47162, - [SMALL_STATE(1298)] = 47227, - [SMALL_STATE(1299)] = 47292, - [SMALL_STATE(1300)] = 47357, - [SMALL_STATE(1301)] = 47397, - [SMALL_STATE(1302)] = 47437, - [SMALL_STATE(1303)] = 47477, - [SMALL_STATE(1304)] = 47529, - [SMALL_STATE(1305)] = 47581, - [SMALL_STATE(1306)] = 47611, - [SMALL_STATE(1307)] = 47641, - [SMALL_STATE(1308)] = 47686, - [SMALL_STATE(1309)] = 47726, - [SMALL_STATE(1310)] = 47755, - [SMALL_STATE(1311)] = 47784, - [SMALL_STATE(1312)] = 47813, - [SMALL_STATE(1313)] = 47842, - [SMALL_STATE(1314)] = 47871, - [SMALL_STATE(1315)] = 47908, - [SMALL_STATE(1316)] = 47945, - [SMALL_STATE(1317)] = 47974, - [SMALL_STATE(1318)] = 48003, - [SMALL_STATE(1319)] = 48032, - [SMALL_STATE(1320)] = 48064, - [SMALL_STATE(1321)] = 48118, - [SMALL_STATE(1322)] = 48150, - [SMALL_STATE(1323)] = 48176, - [SMALL_STATE(1324)] = 48202, - [SMALL_STATE(1325)] = 48256, - [SMALL_STATE(1326)] = 48282, - [SMALL_STATE(1327)] = 48314, - [SMALL_STATE(1328)] = 48339, - [SMALL_STATE(1329)] = 48364, - [SMALL_STATE(1330)] = 48387, - [SMALL_STATE(1331)] = 48412, - [SMALL_STATE(1332)] = 48437, - [SMALL_STATE(1333)] = 48462, - [SMALL_STATE(1334)] = 48495, - [SMALL_STATE(1335)] = 48519, - [SMALL_STATE(1336)] = 48563, - [SMALL_STATE(1337)] = 48587, - [SMALL_STATE(1338)] = 48611, - [SMALL_STATE(1339)] = 48635, - [SMALL_STATE(1340)] = 48657, - [SMALL_STATE(1341)] = 48703, - [SMALL_STATE(1342)] = 48725, - [SMALL_STATE(1343)] = 48769, - [SMALL_STATE(1344)] = 48791, - [SMALL_STATE(1345)] = 48813, - [SMALL_STATE(1346)] = 48837, - [SMALL_STATE(1347)] = 48861, - [SMALL_STATE(1348)] = 48885, - [SMALL_STATE(1349)] = 48906, - [SMALL_STATE(1350)] = 48929, - [SMALL_STATE(1351)] = 48952, - [SMALL_STATE(1352)] = 48977, - [SMALL_STATE(1353)] = 49000, - [SMALL_STATE(1354)] = 49023, - [SMALL_STATE(1355)] = 49044, - [SMALL_STATE(1356)] = 49069, - [SMALL_STATE(1357)] = 49090, - [SMALL_STATE(1358)] = 49113, - [SMALL_STATE(1359)] = 49136, - [SMALL_STATE(1360)] = 49159, - [SMALL_STATE(1361)] = 49184, - [SMALL_STATE(1362)] = 49211, - [SMALL_STATE(1363)] = 49236, - [SMALL_STATE(1364)] = 49261, - [SMALL_STATE(1365)] = 49282, - [SMALL_STATE(1366)] = 49307, - [SMALL_STATE(1367)] = 49352, - [SMALL_STATE(1368)] = 49373, - [SMALL_STATE(1369)] = 49396, - [SMALL_STATE(1370)] = 49416, - [SMALL_STATE(1371)] = 49436, - [SMALL_STATE(1372)] = 49458, - [SMALL_STATE(1373)] = 49478, - [SMALL_STATE(1374)] = 49498, - [SMALL_STATE(1375)] = 49518, - [SMALL_STATE(1376)] = 49538, - [SMALL_STATE(1377)] = 49562, - [SMALL_STATE(1378)] = 49584, - [SMALL_STATE(1379)] = 49604, - [SMALL_STATE(1380)] = 49624, - [SMALL_STATE(1381)] = 49644, - [SMALL_STATE(1382)] = 49666, - [SMALL_STATE(1383)] = 49686, - [SMALL_STATE(1384)] = 49706, - [SMALL_STATE(1385)] = 49726, - [SMALL_STATE(1386)] = 49746, - [SMALL_STATE(1387)] = 49766, - [SMALL_STATE(1388)] = 49786, - [SMALL_STATE(1389)] = 49806, - [SMALL_STATE(1390)] = 49826, - [SMALL_STATE(1391)] = 49846, - [SMALL_STATE(1392)] = 49866, - [SMALL_STATE(1393)] = 49886, - [SMALL_STATE(1394)] = 49906, - [SMALL_STATE(1395)] = 49926, - [SMALL_STATE(1396)] = 49946, - [SMALL_STATE(1397)] = 49969, - [SMALL_STATE(1398)] = 49990, - [SMALL_STATE(1399)] = 50013, - [SMALL_STATE(1400)] = 50036, - [SMALL_STATE(1401)] = 50061, - [SMALL_STATE(1402)] = 50084, - [SMALL_STATE(1403)] = 50109, - [SMALL_STATE(1404)] = 50134, - [SMALL_STATE(1405)] = 50159, - [SMALL_STATE(1406)] = 50184, - [SMALL_STATE(1407)] = 50209, - [SMALL_STATE(1408)] = 50234, - [SMALL_STATE(1409)] = 50257, - [SMALL_STATE(1410)] = 50280, - [SMALL_STATE(1411)] = 50303, - [SMALL_STATE(1412)] = 50326, - [SMALL_STATE(1413)] = 50349, - [SMALL_STATE(1414)] = 50372, - [SMALL_STATE(1415)] = 50393, - [SMALL_STATE(1416)] = 50416, - [SMALL_STATE(1417)] = 50437, - [SMALL_STATE(1418)] = 50462, - [SMALL_STATE(1419)] = 50485, - [SMALL_STATE(1420)] = 50505, - [SMALL_STATE(1421)] = 50525, - [SMALL_STATE(1422)] = 50545, - [SMALL_STATE(1423)] = 50565, - [SMALL_STATE(1424)] = 50585, - [SMALL_STATE(1425)] = 50609, - [SMALL_STATE(1426)] = 50629, - [SMALL_STATE(1427)] = 50649, - [SMALL_STATE(1428)] = 50669, - [SMALL_STATE(1429)] = 50689, - [SMALL_STATE(1430)] = 50721, - [SMALL_STATE(1431)] = 50753, - [SMALL_STATE(1432)] = 50777, - [SMALL_STATE(1433)] = 50797, - [SMALL_STATE(1434)] = 50817, - [SMALL_STATE(1435)] = 50837, - [SMALL_STATE(1436)] = 50863, - [SMALL_STATE(1437)] = 50895, - [SMALL_STATE(1438)] = 50915, - [SMALL_STATE(1439)] = 50947, - [SMALL_STATE(1440)] = 50967, - [SMALL_STATE(1441)] = 50987, - [SMALL_STATE(1442)] = 51007, - [SMALL_STATE(1443)] = 51039, - [SMALL_STATE(1444)] = 51071, - [SMALL_STATE(1445)] = 51103, - [SMALL_STATE(1446)] = 51123, - [SMALL_STATE(1447)] = 51143, - [SMALL_STATE(1448)] = 51163, - [SMALL_STATE(1449)] = 51183, - [SMALL_STATE(1450)] = 51203, - [SMALL_STATE(1451)] = 51223, - [SMALL_STATE(1452)] = 51243, - [SMALL_STATE(1453)] = 51263, - [SMALL_STATE(1454)] = 51287, - [SMALL_STATE(1455)] = 51307, - [SMALL_STATE(1456)] = 51327, - [SMALL_STATE(1457)] = 51359, - [SMALL_STATE(1458)] = 51379, - [SMALL_STATE(1459)] = 51399, - [SMALL_STATE(1460)] = 51419, - [SMALL_STATE(1461)] = 51443, - [SMALL_STATE(1462)] = 51463, - [SMALL_STATE(1463)] = 51483, - [SMALL_STATE(1464)] = 51509, - [SMALL_STATE(1465)] = 51534, - [SMALL_STATE(1466)] = 51557, - [SMALL_STATE(1467)] = 51590, - [SMALL_STATE(1468)] = 51619, - [SMALL_STATE(1469)] = 51646, - [SMALL_STATE(1470)] = 51679, - [SMALL_STATE(1471)] = 51710, - [SMALL_STATE(1472)] = 51733, - [SMALL_STATE(1473)] = 51756, - [SMALL_STATE(1474)] = 51789, - [SMALL_STATE(1475)] = 51822, - [SMALL_STATE(1476)] = 51844, - [SMALL_STATE(1477)] = 51870, - [SMALL_STATE(1478)] = 51902, - [SMALL_STATE(1479)] = 51928, - [SMALL_STATE(1480)] = 51958, - [SMALL_STATE(1481)] = 51990, - [SMALL_STATE(1482)] = 52012, - [SMALL_STATE(1483)] = 52042, - [SMALL_STATE(1484)] = 52068, - [SMALL_STATE(1485)] = 52094, - [SMALL_STATE(1486)] = 52124, - [SMALL_STATE(1487)] = 52154, - [SMALL_STATE(1488)] = 52180, - [SMALL_STATE(1489)] = 52212, - [SMALL_STATE(1490)] = 52242, - [SMALL_STATE(1491)] = 52272, - [SMALL_STATE(1492)] = 52302, - [SMALL_STATE(1493)] = 52328, - [SMALL_STATE(1494)] = 52354, - [SMALL_STATE(1495)] = 52384, - [SMALL_STATE(1496)] = 52414, - [SMALL_STATE(1497)] = 52444, - [SMALL_STATE(1498)] = 52474, - [SMALL_STATE(1499)] = 52496, - [SMALL_STATE(1500)] = 52526, - [SMALL_STATE(1501)] = 52552, - [SMALL_STATE(1502)] = 52584, - [SMALL_STATE(1503)] = 52610, - [SMALL_STATE(1504)] = 52640, - [SMALL_STATE(1505)] = 52670, - [SMALL_STATE(1506)] = 52700, - [SMALL_STATE(1507)] = 52722, - [SMALL_STATE(1508)] = 52752, - [SMALL_STATE(1509)] = 52782, - [SMALL_STATE(1510)] = 52808, - [SMALL_STATE(1511)] = 52838, - [SMALL_STATE(1512)] = 52868, - [SMALL_STATE(1513)] = 52894, - [SMALL_STATE(1514)] = 52916, - [SMALL_STATE(1515)] = 52946, - [SMALL_STATE(1516)] = 52976, - [SMALL_STATE(1517)] = 52998, - [SMALL_STATE(1518)] = 53027, - [SMALL_STATE(1519)] = 53056, - [SMALL_STATE(1520)] = 53085, - [SMALL_STATE(1521)] = 53112, - [SMALL_STATE(1522)] = 53131, - [SMALL_STATE(1523)] = 53150, - [SMALL_STATE(1524)] = 53177, - [SMALL_STATE(1525)] = 53204, - [SMALL_STATE(1526)] = 53225, - [SMALL_STATE(1527)] = 53252, - [SMALL_STATE(1528)] = 53271, - [SMALL_STATE(1529)] = 53300, - [SMALL_STATE(1530)] = 53327, - [SMALL_STATE(1531)] = 53354, - [SMALL_STATE(1532)] = 53379, - [SMALL_STATE(1533)] = 53406, - [SMALL_STATE(1534)] = 53425, - [SMALL_STATE(1535)] = 53452, - [SMALL_STATE(1536)] = 53471, - [SMALL_STATE(1537)] = 53498, - [SMALL_STATE(1538)] = 53527, - [SMALL_STATE(1539)] = 53554, - [SMALL_STATE(1540)] = 53583, - [SMALL_STATE(1541)] = 53606, - [SMALL_STATE(1542)] = 53629, - [SMALL_STATE(1543)] = 53648, - [SMALL_STATE(1544)] = 53671, - [SMALL_STATE(1545)] = 53698, - [SMALL_STATE(1546)] = 53725, - [SMALL_STATE(1547)] = 53744, - [SMALL_STATE(1548)] = 53771, - [SMALL_STATE(1549)] = 53794, - [SMALL_STATE(1550)] = 53821, - [SMALL_STATE(1551)] = 53840, - [SMALL_STATE(1552)] = 53861, - [SMALL_STATE(1553)] = 53880, - [SMALL_STATE(1554)] = 53899, - [SMALL_STATE(1555)] = 53926, - [SMALL_STATE(1556)] = 53945, - [SMALL_STATE(1557)] = 53960, - [SMALL_STATE(1558)] = 53976, - [SMALL_STATE(1559)] = 54002, - [SMALL_STATE(1560)] = 54028, - [SMALL_STATE(1561)] = 54054, - [SMALL_STATE(1562)] = 54070, - [SMALL_STATE(1563)] = 54092, - [SMALL_STATE(1564)] = 54118, - [SMALL_STATE(1565)] = 54134, - [SMALL_STATE(1566)] = 54160, - [SMALL_STATE(1567)] = 54186, - [SMALL_STATE(1568)] = 54212, - [SMALL_STATE(1569)] = 54238, - [SMALL_STATE(1570)] = 54264, - [SMALL_STATE(1571)] = 54290, - [SMALL_STATE(1572)] = 54304, - [SMALL_STATE(1573)] = 54330, - [SMALL_STATE(1574)] = 54354, - [SMALL_STATE(1575)] = 54368, - [SMALL_STATE(1576)] = 54382, - [SMALL_STATE(1577)] = 54396, - [SMALL_STATE(1578)] = 54410, - [SMALL_STATE(1579)] = 54436, - [SMALL_STATE(1580)] = 54450, - [SMALL_STATE(1581)] = 54476, - [SMALL_STATE(1582)] = 54490, - [SMALL_STATE(1583)] = 54516, - [SMALL_STATE(1584)] = 54532, - [SMALL_STATE(1585)] = 54558, - [SMALL_STATE(1586)] = 54582, - [SMALL_STATE(1587)] = 54606, - [SMALL_STATE(1588)] = 54632, - [SMALL_STATE(1589)] = 54658, - [SMALL_STATE(1590)] = 54684, - [SMALL_STATE(1591)] = 54708, - [SMALL_STATE(1592)] = 54734, - [SMALL_STATE(1593)] = 54760, - [SMALL_STATE(1594)] = 54786, - [SMALL_STATE(1595)] = 54808, - [SMALL_STATE(1596)] = 54834, - [SMALL_STATE(1597)] = 54858, - [SMALL_STATE(1598)] = 54874, - [SMALL_STATE(1599)] = 54890, - [SMALL_STATE(1600)] = 54906, - [SMALL_STATE(1601)] = 54922, - [SMALL_STATE(1602)] = 54948, - [SMALL_STATE(1603)] = 54974, - [SMALL_STATE(1604)] = 54997, - [SMALL_STATE(1605)] = 55020, - [SMALL_STATE(1606)] = 55037, - [SMALL_STATE(1607)] = 55060, - [SMALL_STATE(1608)] = 55083, - [SMALL_STATE(1609)] = 55106, - [SMALL_STATE(1610)] = 55129, - [SMALL_STATE(1611)] = 55152, - [SMALL_STATE(1612)] = 55171, - [SMALL_STATE(1613)] = 55188, - [SMALL_STATE(1614)] = 55211, - [SMALL_STATE(1615)] = 55234, - [SMALL_STATE(1616)] = 55257, - [SMALL_STATE(1617)] = 55280, - [SMALL_STATE(1618)] = 55297, - [SMALL_STATE(1619)] = 55320, - [SMALL_STATE(1620)] = 55343, - [SMALL_STATE(1621)] = 55360, - [SMALL_STATE(1622)] = 55383, - [SMALL_STATE(1623)] = 55400, - [SMALL_STATE(1624)] = 55417, - [SMALL_STATE(1625)] = 55440, - [SMALL_STATE(1626)] = 55457, - [SMALL_STATE(1627)] = 55474, - [SMALL_STATE(1628)] = 55497, - [SMALL_STATE(1629)] = 55520, - [SMALL_STATE(1630)] = 55543, - [SMALL_STATE(1631)] = 55566, - [SMALL_STATE(1632)] = 55587, - [SMALL_STATE(1633)] = 55610, - [SMALL_STATE(1634)] = 55631, - [SMALL_STATE(1635)] = 55654, - [SMALL_STATE(1636)] = 55675, - [SMALL_STATE(1637)] = 55696, - [SMALL_STATE(1638)] = 55719, - [SMALL_STATE(1639)] = 55740, - [SMALL_STATE(1640)] = 55763, - [SMALL_STATE(1641)] = 55786, - [SMALL_STATE(1642)] = 55809, - [SMALL_STATE(1643)] = 55832, - [SMALL_STATE(1644)] = 55855, - [SMALL_STATE(1645)] = 55872, - [SMALL_STATE(1646)] = 55895, - [SMALL_STATE(1647)] = 55918, - [SMALL_STATE(1648)] = 55941, - [SMALL_STATE(1649)] = 55958, - [SMALL_STATE(1650)] = 55975, - [SMALL_STATE(1651)] = 55994, - [SMALL_STATE(1652)] = 56017, - [SMALL_STATE(1653)] = 56034, - [SMALL_STATE(1654)] = 56053, - [SMALL_STATE(1655)] = 56076, - [SMALL_STATE(1656)] = 56099, - [SMALL_STATE(1657)] = 56122, - [SMALL_STATE(1658)] = 56145, - [SMALL_STATE(1659)] = 56168, - [SMALL_STATE(1660)] = 56185, - [SMALL_STATE(1661)] = 56208, - [SMALL_STATE(1662)] = 56231, - [SMALL_STATE(1663)] = 56254, - [SMALL_STATE(1664)] = 56277, - [SMALL_STATE(1665)] = 56300, - [SMALL_STATE(1666)] = 56323, - [SMALL_STATE(1667)] = 56346, - [SMALL_STATE(1668)] = 56369, - [SMALL_STATE(1669)] = 56384, - [SMALL_STATE(1670)] = 56407, - [SMALL_STATE(1671)] = 56430, - [SMALL_STATE(1672)] = 56453, - [SMALL_STATE(1673)] = 56470, - [SMALL_STATE(1674)] = 56485, - [SMALL_STATE(1675)] = 56508, - [SMALL_STATE(1676)] = 56531, - [SMALL_STATE(1677)] = 56552, - [SMALL_STATE(1678)] = 56575, - [SMALL_STATE(1679)] = 56598, - [SMALL_STATE(1680)] = 56621, - [SMALL_STATE(1681)] = 56644, - [SMALL_STATE(1682)] = 56667, - [SMALL_STATE(1683)] = 56690, - [SMALL_STATE(1684)] = 56713, - [SMALL_STATE(1685)] = 56736, - [SMALL_STATE(1686)] = 56759, - [SMALL_STATE(1687)] = 56782, - [SMALL_STATE(1688)] = 56805, - [SMALL_STATE(1689)] = 56828, - [SMALL_STATE(1690)] = 56851, - [SMALL_STATE(1691)] = 56874, - [SMALL_STATE(1692)] = 56897, - [SMALL_STATE(1693)] = 56920, - [SMALL_STATE(1694)] = 56943, - [SMALL_STATE(1695)] = 56966, - [SMALL_STATE(1696)] = 56989, - [SMALL_STATE(1697)] = 57006, - [SMALL_STATE(1698)] = 57029, - [SMALL_STATE(1699)] = 57052, - [SMALL_STATE(1700)] = 57068, - [SMALL_STATE(1701)] = 57086, - [SMALL_STATE(1702)] = 57106, - [SMALL_STATE(1703)] = 57118, - [SMALL_STATE(1704)] = 57130, - [SMALL_STATE(1705)] = 57148, - [SMALL_STATE(1706)] = 57168, - [SMALL_STATE(1707)] = 57184, - [SMALL_STATE(1708)] = 57200, - [SMALL_STATE(1709)] = 57212, - [SMALL_STATE(1710)] = 57224, - [SMALL_STATE(1711)] = 57236, - [SMALL_STATE(1712)] = 57248, - [SMALL_STATE(1713)] = 57260, - [SMALL_STATE(1714)] = 57278, - [SMALL_STATE(1715)] = 57290, - [SMALL_STATE(1716)] = 57302, - [SMALL_STATE(1717)] = 57314, - [SMALL_STATE(1718)] = 57326, - [SMALL_STATE(1719)] = 57346, - [SMALL_STATE(1720)] = 57364, - [SMALL_STATE(1721)] = 57376, - [SMALL_STATE(1722)] = 57392, - [SMALL_STATE(1723)] = 57404, - [SMALL_STATE(1724)] = 57418, - [SMALL_STATE(1725)] = 57430, - [SMALL_STATE(1726)] = 57446, - [SMALL_STATE(1727)] = 57466, - [SMALL_STATE(1728)] = 57486, - [SMALL_STATE(1729)] = 57504, - [SMALL_STATE(1730)] = 57520, - [SMALL_STATE(1731)] = 57536, - [SMALL_STATE(1732)] = 57556, - [SMALL_STATE(1733)] = 57574, - [SMALL_STATE(1734)] = 57590, - [SMALL_STATE(1735)] = 57602, - [SMALL_STATE(1736)] = 57614, - [SMALL_STATE(1737)] = 57626, - [SMALL_STATE(1738)] = 57642, - [SMALL_STATE(1739)] = 57660, - [SMALL_STATE(1740)] = 57678, - [SMALL_STATE(1741)] = 57696, - [SMALL_STATE(1742)] = 57712, - [SMALL_STATE(1743)] = 57726, - [SMALL_STATE(1744)] = 57742, - [SMALL_STATE(1745)] = 57756, - [SMALL_STATE(1746)] = 57772, - [SMALL_STATE(1747)] = 57784, - [SMALL_STATE(1748)] = 57796, - [SMALL_STATE(1749)] = 57814, - [SMALL_STATE(1750)] = 57826, - [SMALL_STATE(1751)] = 57838, - [SMALL_STATE(1752)] = 57853, - [SMALL_STATE(1753)] = 57870, - [SMALL_STATE(1754)] = 57887, - [SMALL_STATE(1755)] = 57904, - [SMALL_STATE(1756)] = 57921, - [SMALL_STATE(1757)] = 57938, - [SMALL_STATE(1758)] = 57955, - [SMALL_STATE(1759)] = 57970, - [SMALL_STATE(1760)] = 57987, - [SMALL_STATE(1761)] = 58002, - [SMALL_STATE(1762)] = 58019, - [SMALL_STATE(1763)] = 58036, - [SMALL_STATE(1764)] = 58053, - [SMALL_STATE(1765)] = 58070, - [SMALL_STATE(1766)] = 58087, - [SMALL_STATE(1767)] = 58104, - [SMALL_STATE(1768)] = 58119, - [SMALL_STATE(1769)] = 58136, - [SMALL_STATE(1770)] = 58153, - [SMALL_STATE(1771)] = 58170, - [SMALL_STATE(1772)] = 58183, - [SMALL_STATE(1773)] = 58200, - [SMALL_STATE(1774)] = 58217, - [SMALL_STATE(1775)] = 58234, - [SMALL_STATE(1776)] = 58247, - [SMALL_STATE(1777)] = 58264, - [SMALL_STATE(1778)] = 58281, - [SMALL_STATE(1779)] = 58298, - [SMALL_STATE(1780)] = 58315, - [SMALL_STATE(1781)] = 58332, - [SMALL_STATE(1782)] = 58349, - [SMALL_STATE(1783)] = 58366, - [SMALL_STATE(1784)] = 58383, - [SMALL_STATE(1785)] = 58400, - [SMALL_STATE(1786)] = 58417, - [SMALL_STATE(1787)] = 58434, - [SMALL_STATE(1788)] = 58451, - [SMALL_STATE(1789)] = 58464, - [SMALL_STATE(1790)] = 58481, - [SMALL_STATE(1791)] = 58498, - [SMALL_STATE(1792)] = 58515, - [SMALL_STATE(1793)] = 58530, - [SMALL_STATE(1794)] = 58547, - [SMALL_STATE(1795)] = 58564, - [SMALL_STATE(1796)] = 58581, - [SMALL_STATE(1797)] = 58598, - [SMALL_STATE(1798)] = 58615, - [SMALL_STATE(1799)] = 58632, - [SMALL_STATE(1800)] = 58647, - [SMALL_STATE(1801)] = 58662, - [SMALL_STATE(1802)] = 58679, - [SMALL_STATE(1803)] = 58694, - [SMALL_STATE(1804)] = 58711, - [SMALL_STATE(1805)] = 58728, - [SMALL_STATE(1806)] = 58745, - [SMALL_STATE(1807)] = 58760, - [SMALL_STATE(1808)] = 58773, - [SMALL_STATE(1809)] = 58790, - [SMALL_STATE(1810)] = 58805, - [SMALL_STATE(1811)] = 58822, - [SMALL_STATE(1812)] = 58837, - [SMALL_STATE(1813)] = 58854, - [SMALL_STATE(1814)] = 58869, - [SMALL_STATE(1815)] = 58886, - [SMALL_STATE(1816)] = 58901, - [SMALL_STATE(1817)] = 58918, - [SMALL_STATE(1818)] = 58933, - [SMALL_STATE(1819)] = 58950, - [SMALL_STATE(1820)] = 58965, - [SMALL_STATE(1821)] = 58982, - [SMALL_STATE(1822)] = 58995, - [SMALL_STATE(1823)] = 59008, - [SMALL_STATE(1824)] = 59023, - [SMALL_STATE(1825)] = 59040, - [SMALL_STATE(1826)] = 59055, - [SMALL_STATE(1827)] = 59070, - [SMALL_STATE(1828)] = 59085, - [SMALL_STATE(1829)] = 59100, - [SMALL_STATE(1830)] = 59115, - [SMALL_STATE(1831)] = 59130, - [SMALL_STATE(1832)] = 59143, - [SMALL_STATE(1833)] = 59160, - [SMALL_STATE(1834)] = 59177, - [SMALL_STATE(1835)] = 59194, - [SMALL_STATE(1836)] = 59211, - [SMALL_STATE(1837)] = 59228, - [SMALL_STATE(1838)] = 59243, - [SMALL_STATE(1839)] = 59260, - [SMALL_STATE(1840)] = 59277, - [SMALL_STATE(1841)] = 59292, - [SMALL_STATE(1842)] = 59307, - [SMALL_STATE(1843)] = 59322, - [SMALL_STATE(1844)] = 59339, - [SMALL_STATE(1845)] = 59356, - [SMALL_STATE(1846)] = 59373, - [SMALL_STATE(1847)] = 59386, - [SMALL_STATE(1848)] = 59399, - [SMALL_STATE(1849)] = 59414, - [SMALL_STATE(1850)] = 59431, - [SMALL_STATE(1851)] = 59446, - [SMALL_STATE(1852)] = 59461, - [SMALL_STATE(1853)] = 59478, - [SMALL_STATE(1854)] = 59495, - [SMALL_STATE(1855)] = 59512, - [SMALL_STATE(1856)] = 59525, - [SMALL_STATE(1857)] = 59539, - [SMALL_STATE(1858)] = 59553, - [SMALL_STATE(1859)] = 59563, - [SMALL_STATE(1860)] = 59577, - [SMALL_STATE(1861)] = 59591, - [SMALL_STATE(1862)] = 59605, - [SMALL_STATE(1863)] = 59619, - [SMALL_STATE(1864)] = 59633, - [SMALL_STATE(1865)] = 59647, - [SMALL_STATE(1866)] = 59661, - [SMALL_STATE(1867)] = 59675, - [SMALL_STATE(1868)] = 59689, - [SMALL_STATE(1869)] = 59703, - [SMALL_STATE(1870)] = 59717, - [SMALL_STATE(1871)] = 59731, - [SMALL_STATE(1872)] = 59743, - [SMALL_STATE(1873)] = 59757, - [SMALL_STATE(1874)] = 59769, - [SMALL_STATE(1875)] = 59783, - [SMALL_STATE(1876)] = 59793, - [SMALL_STATE(1877)] = 59805, - [SMALL_STATE(1878)] = 59819, - [SMALL_STATE(1879)] = 59829, - [SMALL_STATE(1880)] = 59841, - [SMALL_STATE(1881)] = 59855, - [SMALL_STATE(1882)] = 59865, - [SMALL_STATE(1883)] = 59879, - [SMALL_STATE(1884)] = 59893, - [SMALL_STATE(1885)] = 59907, - [SMALL_STATE(1886)] = 59921, - [SMALL_STATE(1887)] = 59935, - [SMALL_STATE(1888)] = 59949, - [SMALL_STATE(1889)] = 59963, - [SMALL_STATE(1890)] = 59973, - [SMALL_STATE(1891)] = 59987, - [SMALL_STATE(1892)] = 59999, - [SMALL_STATE(1893)] = 60013, - [SMALL_STATE(1894)] = 60027, - [SMALL_STATE(1895)] = 60037, - [SMALL_STATE(1896)] = 60047, - [SMALL_STATE(1897)] = 60061, - [SMALL_STATE(1898)] = 60075, - [SMALL_STATE(1899)] = 60085, - [SMALL_STATE(1900)] = 60099, - [SMALL_STATE(1901)] = 60113, - [SMALL_STATE(1902)] = 60123, - [SMALL_STATE(1903)] = 60133, - [SMALL_STATE(1904)] = 60147, - [SMALL_STATE(1905)] = 60161, - [SMALL_STATE(1906)] = 60175, - [SMALL_STATE(1907)] = 60189, - [SMALL_STATE(1908)] = 60199, - [SMALL_STATE(1909)] = 60213, - [SMALL_STATE(1910)] = 60227, - [SMALL_STATE(1911)] = 60241, - [SMALL_STATE(1912)] = 60255, - [SMALL_STATE(1913)] = 60269, - [SMALL_STATE(1914)] = 60283, - [SMALL_STATE(1915)] = 60297, - [SMALL_STATE(1916)] = 60311, - [SMALL_STATE(1917)] = 60325, - [SMALL_STATE(1918)] = 60339, - [SMALL_STATE(1919)] = 60349, - [SMALL_STATE(1920)] = 60363, - [SMALL_STATE(1921)] = 60375, - [SMALL_STATE(1922)] = 60389, - [SMALL_STATE(1923)] = 60403, - [SMALL_STATE(1924)] = 60417, - [SMALL_STATE(1925)] = 60429, - [SMALL_STATE(1926)] = 60443, - [SMALL_STATE(1927)] = 60455, - [SMALL_STATE(1928)] = 60469, - [SMALL_STATE(1929)] = 60483, - [SMALL_STATE(1930)] = 60497, - [SMALL_STATE(1931)] = 60511, - [SMALL_STATE(1932)] = 60525, - [SMALL_STATE(1933)] = 60535, - [SMALL_STATE(1934)] = 60549, - [SMALL_STATE(1935)] = 60563, - [SMALL_STATE(1936)] = 60575, - [SMALL_STATE(1937)] = 60589, - [SMALL_STATE(1938)] = 60603, - [SMALL_STATE(1939)] = 60617, - [SMALL_STATE(1940)] = 60631, - [SMALL_STATE(1941)] = 60645, - [SMALL_STATE(1942)] = 60659, - [SMALL_STATE(1943)] = 60673, - [SMALL_STATE(1944)] = 60685, - [SMALL_STATE(1945)] = 60699, - [SMALL_STATE(1946)] = 60709, - [SMALL_STATE(1947)] = 60721, - [SMALL_STATE(1948)] = 60731, - [SMALL_STATE(1949)] = 60745, - [SMALL_STATE(1950)] = 60759, - [SMALL_STATE(1951)] = 60773, - [SMALL_STATE(1952)] = 60787, - [SMALL_STATE(1953)] = 60801, - [SMALL_STATE(1954)] = 60815, - [SMALL_STATE(1955)] = 60829, - [SMALL_STATE(1956)] = 60843, - [SMALL_STATE(1957)] = 60855, - [SMALL_STATE(1958)] = 60869, - [SMALL_STATE(1959)] = 60883, - [SMALL_STATE(1960)] = 60893, - [SMALL_STATE(1961)] = 60907, - [SMALL_STATE(1962)] = 60921, - [SMALL_STATE(1963)] = 60935, - [SMALL_STATE(1964)] = 60949, - [SMALL_STATE(1965)] = 60959, - [SMALL_STATE(1966)] = 60971, - [SMALL_STATE(1967)] = 60981, - [SMALL_STATE(1968)] = 60991, - [SMALL_STATE(1969)] = 61005, - [SMALL_STATE(1970)] = 61015, - [SMALL_STATE(1971)] = 61025, - [SMALL_STATE(1972)] = 61039, - [SMALL_STATE(1973)] = 61053, - [SMALL_STATE(1974)] = 61065, - [SMALL_STATE(1975)] = 61079, - [SMALL_STATE(1976)] = 61093, - [SMALL_STATE(1977)] = 61103, - [SMALL_STATE(1978)] = 61115, - [SMALL_STATE(1979)] = 61127, - [SMALL_STATE(1980)] = 61141, - [SMALL_STATE(1981)] = 61153, - [SMALL_STATE(1982)] = 61167, - [SMALL_STATE(1983)] = 61181, - [SMALL_STATE(1984)] = 61195, - [SMALL_STATE(1985)] = 61209, - [SMALL_STATE(1986)] = 61223, - [SMALL_STATE(1987)] = 61237, - [SMALL_STATE(1988)] = 61251, - [SMALL_STATE(1989)] = 61263, - [SMALL_STATE(1990)] = 61275, - [SMALL_STATE(1991)] = 61287, - [SMALL_STATE(1992)] = 61301, - [SMALL_STATE(1993)] = 61315, - [SMALL_STATE(1994)] = 61329, - [SMALL_STATE(1995)] = 61343, - [SMALL_STATE(1996)] = 61357, - [SMALL_STATE(1997)] = 61371, - [SMALL_STATE(1998)] = 61385, - [SMALL_STATE(1999)] = 61399, - [SMALL_STATE(2000)] = 61413, - [SMALL_STATE(2001)] = 61427, - [SMALL_STATE(2002)] = 61439, - [SMALL_STATE(2003)] = 61451, - [SMALL_STATE(2004)] = 61465, - [SMALL_STATE(2005)] = 61477, - [SMALL_STATE(2006)] = 61491, - [SMALL_STATE(2007)] = 61505, - [SMALL_STATE(2008)] = 61519, - [SMALL_STATE(2009)] = 61533, - [SMALL_STATE(2010)] = 61547, - [SMALL_STATE(2011)] = 61561, - [SMALL_STATE(2012)] = 61575, - [SMALL_STATE(2013)] = 61585, - [SMALL_STATE(2014)] = 61599, - [SMALL_STATE(2015)] = 61611, - [SMALL_STATE(2016)] = 61625, - [SMALL_STATE(2017)] = 61639, - [SMALL_STATE(2018)] = 61653, - [SMALL_STATE(2019)] = 61667, - [SMALL_STATE(2020)] = 61681, - [SMALL_STATE(2021)] = 61695, - [SMALL_STATE(2022)] = 61709, - [SMALL_STATE(2023)] = 61723, - [SMALL_STATE(2024)] = 61735, - [SMALL_STATE(2025)] = 61749, - [SMALL_STATE(2026)] = 61761, - [SMALL_STATE(2027)] = 61775, - [SMALL_STATE(2028)] = 61789, - [SMALL_STATE(2029)] = 61803, - [SMALL_STATE(2030)] = 61817, - [SMALL_STATE(2031)] = 61831, - [SMALL_STATE(2032)] = 61845, - [SMALL_STATE(2033)] = 61859, - [SMALL_STATE(2034)] = 61873, - [SMALL_STATE(2035)] = 61887, - [SMALL_STATE(2036)] = 61901, - [SMALL_STATE(2037)] = 61915, - [SMALL_STATE(2038)] = 61929, - [SMALL_STATE(2039)] = 61943, - [SMALL_STATE(2040)] = 61957, - [SMALL_STATE(2041)] = 61967, - [SMALL_STATE(2042)] = 61981, - [SMALL_STATE(2043)] = 61995, - [SMALL_STATE(2044)] = 62007, - [SMALL_STATE(2045)] = 62021, - [SMALL_STATE(2046)] = 62035, - [SMALL_STATE(2047)] = 62049, - [SMALL_STATE(2048)] = 62063, - [SMALL_STATE(2049)] = 62077, - [SMALL_STATE(2050)] = 62091, - [SMALL_STATE(2051)] = 62105, - [SMALL_STATE(2052)] = 62119, - [SMALL_STATE(2053)] = 62133, - [SMALL_STATE(2054)] = 62147, - [SMALL_STATE(2055)] = 62159, - [SMALL_STATE(2056)] = 62173, - [SMALL_STATE(2057)] = 62187, - [SMALL_STATE(2058)] = 62201, - [SMALL_STATE(2059)] = 62213, - [SMALL_STATE(2060)] = 62227, - [SMALL_STATE(2061)] = 62239, - [SMALL_STATE(2062)] = 62253, - [SMALL_STATE(2063)] = 62267, - [SMALL_STATE(2064)] = 62281, - [SMALL_STATE(2065)] = 62293, - [SMALL_STATE(2066)] = 62307, - [SMALL_STATE(2067)] = 62319, - [SMALL_STATE(2068)] = 62333, - [SMALL_STATE(2069)] = 62347, - [SMALL_STATE(2070)] = 62359, - [SMALL_STATE(2071)] = 62373, - [SMALL_STATE(2072)] = 62385, - [SMALL_STATE(2073)] = 62399, - [SMALL_STATE(2074)] = 62413, - [SMALL_STATE(2075)] = 62427, - [SMALL_STATE(2076)] = 62441, - [SMALL_STATE(2077)] = 62455, - [SMALL_STATE(2078)] = 62469, - [SMALL_STATE(2079)] = 62483, - [SMALL_STATE(2080)] = 62497, - [SMALL_STATE(2081)] = 62511, - [SMALL_STATE(2082)] = 62525, - [SMALL_STATE(2083)] = 62539, - [SMALL_STATE(2084)] = 62553, - [SMALL_STATE(2085)] = 62567, - [SMALL_STATE(2086)] = 62577, - [SMALL_STATE(2087)] = 62591, - [SMALL_STATE(2088)] = 62605, - [SMALL_STATE(2089)] = 62615, - [SMALL_STATE(2090)] = 62629, - [SMALL_STATE(2091)] = 62639, - [SMALL_STATE(2092)] = 62653, - [SMALL_STATE(2093)] = 62667, - [SMALL_STATE(2094)] = 62677, - [SMALL_STATE(2095)] = 62691, - [SMALL_STATE(2096)] = 62705, - [SMALL_STATE(2097)] = 62719, - [SMALL_STATE(2098)] = 62733, - [SMALL_STATE(2099)] = 62747, - [SMALL_STATE(2100)] = 62761, - [SMALL_STATE(2101)] = 62771, - [SMALL_STATE(2102)] = 62785, - [SMALL_STATE(2103)] = 62799, - [SMALL_STATE(2104)] = 62813, - [SMALL_STATE(2105)] = 62827, - [SMALL_STATE(2106)] = 62841, - [SMALL_STATE(2107)] = 62855, - [SMALL_STATE(2108)] = 62869, - [SMALL_STATE(2109)] = 62883, - [SMALL_STATE(2110)] = 62897, - [SMALL_STATE(2111)] = 62911, - [SMALL_STATE(2112)] = 62925, - [SMALL_STATE(2113)] = 62939, - [SMALL_STATE(2114)] = 62953, - [SMALL_STATE(2115)] = 62967, - [SMALL_STATE(2116)] = 62981, - [SMALL_STATE(2117)] = 62995, - [SMALL_STATE(2118)] = 63009, - [SMALL_STATE(2119)] = 63021, - [SMALL_STATE(2120)] = 63032, - [SMALL_STATE(2121)] = 63043, - [SMALL_STATE(2122)] = 63052, - [SMALL_STATE(2123)] = 63063, - [SMALL_STATE(2124)] = 63074, - [SMALL_STATE(2125)] = 63085, - [SMALL_STATE(2126)] = 63096, - [SMALL_STATE(2127)] = 63107, - [SMALL_STATE(2128)] = 63118, - [SMALL_STATE(2129)] = 63129, - [SMALL_STATE(2130)] = 63140, - [SMALL_STATE(2131)] = 63151, - [SMALL_STATE(2132)] = 63162, - [SMALL_STATE(2133)] = 63173, - [SMALL_STATE(2134)] = 63184, - [SMALL_STATE(2135)] = 63195, - [SMALL_STATE(2136)] = 63206, - [SMALL_STATE(2137)] = 63215, - [SMALL_STATE(2138)] = 63226, - [SMALL_STATE(2139)] = 63237, - [SMALL_STATE(2140)] = 63248, - [SMALL_STATE(2141)] = 63259, - [SMALL_STATE(2142)] = 63268, - [SMALL_STATE(2143)] = 63279, - [SMALL_STATE(2144)] = 63290, - [SMALL_STATE(2145)] = 63301, - [SMALL_STATE(2146)] = 63312, - [SMALL_STATE(2147)] = 63323, - [SMALL_STATE(2148)] = 63334, - [SMALL_STATE(2149)] = 63345, - [SMALL_STATE(2150)] = 63356, - [SMALL_STATE(2151)] = 63367, - [SMALL_STATE(2152)] = 63378, - [SMALL_STATE(2153)] = 63389, - [SMALL_STATE(2154)] = 63400, - [SMALL_STATE(2155)] = 63411, - [SMALL_STATE(2156)] = 63420, - [SMALL_STATE(2157)] = 63431, - [SMALL_STATE(2158)] = 63442, - [SMALL_STATE(2159)] = 63453, - [SMALL_STATE(2160)] = 63464, - [SMALL_STATE(2161)] = 63475, - [SMALL_STATE(2162)] = 63486, - [SMALL_STATE(2163)] = 63497, - [SMALL_STATE(2164)] = 63508, - [SMALL_STATE(2165)] = 63519, - [SMALL_STATE(2166)] = 63530, - [SMALL_STATE(2167)] = 63539, - [SMALL_STATE(2168)] = 63548, - [SMALL_STATE(2169)] = 63559, - [SMALL_STATE(2170)] = 63568, - [SMALL_STATE(2171)] = 63579, - [SMALL_STATE(2172)] = 63590, - [SMALL_STATE(2173)] = 63601, - [SMALL_STATE(2174)] = 63612, - [SMALL_STATE(2175)] = 63623, - [SMALL_STATE(2176)] = 63632, - [SMALL_STATE(2177)] = 63643, - [SMALL_STATE(2178)] = 63654, - [SMALL_STATE(2179)] = 63665, - [SMALL_STATE(2180)] = 63674, - [SMALL_STATE(2181)] = 63685, - [SMALL_STATE(2182)] = 63696, - [SMALL_STATE(2183)] = 63707, - [SMALL_STATE(2184)] = 63718, - [SMALL_STATE(2185)] = 63727, - [SMALL_STATE(2186)] = 63738, - [SMALL_STATE(2187)] = 63749, - [SMALL_STATE(2188)] = 63760, - [SMALL_STATE(2189)] = 63771, - [SMALL_STATE(2190)] = 63782, - [SMALL_STATE(2191)] = 63791, - [SMALL_STATE(2192)] = 63800, - [SMALL_STATE(2193)] = 63811, - [SMALL_STATE(2194)] = 63822, - [SMALL_STATE(2195)] = 63831, - [SMALL_STATE(2196)] = 63842, - [SMALL_STATE(2197)] = 63851, - [SMALL_STATE(2198)] = 63860, - [SMALL_STATE(2199)] = 63871, - [SMALL_STATE(2200)] = 63882, - [SMALL_STATE(2201)] = 63891, - [SMALL_STATE(2202)] = 63902, - [SMALL_STATE(2203)] = 63913, - [SMALL_STATE(2204)] = 63924, - [SMALL_STATE(2205)] = 63935, - [SMALL_STATE(2206)] = 63946, - [SMALL_STATE(2207)] = 63957, - [SMALL_STATE(2208)] = 63968, - [SMALL_STATE(2209)] = 63979, - [SMALL_STATE(2210)] = 63990, - [SMALL_STATE(2211)] = 64001, - [SMALL_STATE(2212)] = 64012, - [SMALL_STATE(2213)] = 64023, - [SMALL_STATE(2214)] = 64032, - [SMALL_STATE(2215)] = 64043, - [SMALL_STATE(2216)] = 64054, - [SMALL_STATE(2217)] = 64065, - [SMALL_STATE(2218)] = 64076, - [SMALL_STATE(2219)] = 64085, - [SMALL_STATE(2220)] = 64096, - [SMALL_STATE(2221)] = 64107, - [SMALL_STATE(2222)] = 64118, - [SMALL_STATE(2223)] = 64129, - [SMALL_STATE(2224)] = 64140, - [SMALL_STATE(2225)] = 64151, - [SMALL_STATE(2226)] = 64162, - [SMALL_STATE(2227)] = 64173, - [SMALL_STATE(2228)] = 64184, - [SMALL_STATE(2229)] = 64195, - [SMALL_STATE(2230)] = 64206, - [SMALL_STATE(2231)] = 64217, - [SMALL_STATE(2232)] = 64228, - [SMALL_STATE(2233)] = 64239, - [SMALL_STATE(2234)] = 64250, - [SMALL_STATE(2235)] = 64261, - [SMALL_STATE(2236)] = 64272, - [SMALL_STATE(2237)] = 64283, - [SMALL_STATE(2238)] = 64294, - [SMALL_STATE(2239)] = 64305, - [SMALL_STATE(2240)] = 64316, - [SMALL_STATE(2241)] = 64327, - [SMALL_STATE(2242)] = 64338, - [SMALL_STATE(2243)] = 64349, - [SMALL_STATE(2244)] = 64360, - [SMALL_STATE(2245)] = 64371, - [SMALL_STATE(2246)] = 64382, - [SMALL_STATE(2247)] = 64393, - [SMALL_STATE(2248)] = 64402, - [SMALL_STATE(2249)] = 64411, - [SMALL_STATE(2250)] = 64422, - [SMALL_STATE(2251)] = 64433, - [SMALL_STATE(2252)] = 64444, - [SMALL_STATE(2253)] = 64455, - [SMALL_STATE(2254)] = 64466, - [SMALL_STATE(2255)] = 64477, - [SMALL_STATE(2256)] = 64488, - [SMALL_STATE(2257)] = 64499, - [SMALL_STATE(2258)] = 64510, - [SMALL_STATE(2259)] = 64521, - [SMALL_STATE(2260)] = 64532, - [SMALL_STATE(2261)] = 64543, - [SMALL_STATE(2262)] = 64554, - [SMALL_STATE(2263)] = 64563, - [SMALL_STATE(2264)] = 64574, - [SMALL_STATE(2265)] = 64585, - [SMALL_STATE(2266)] = 64596, - [SMALL_STATE(2267)] = 64607, - [SMALL_STATE(2268)] = 64618, - [SMALL_STATE(2269)] = 64629, - [SMALL_STATE(2270)] = 64640, - [SMALL_STATE(2271)] = 64651, - [SMALL_STATE(2272)] = 64662, - [SMALL_STATE(2273)] = 64673, - [SMALL_STATE(2274)] = 64684, - [SMALL_STATE(2275)] = 64693, - [SMALL_STATE(2276)] = 64702, - [SMALL_STATE(2277)] = 64711, - [SMALL_STATE(2278)] = 64720, - [SMALL_STATE(2279)] = 64731, - [SMALL_STATE(2280)] = 64742, - [SMALL_STATE(2281)] = 64753, - [SMALL_STATE(2282)] = 64764, - [SMALL_STATE(2283)] = 64775, - [SMALL_STATE(2284)] = 64786, - [SMALL_STATE(2285)] = 64795, - [SMALL_STATE(2286)] = 64806, - [SMALL_STATE(2287)] = 64815, - [SMALL_STATE(2288)] = 64826, - [SMALL_STATE(2289)] = 64837, - [SMALL_STATE(2290)] = 64848, - [SMALL_STATE(2291)] = 64859, - [SMALL_STATE(2292)] = 64870, - [SMALL_STATE(2293)] = 64881, - [SMALL_STATE(2294)] = 64892, - [SMALL_STATE(2295)] = 64903, - [SMALL_STATE(2296)] = 64914, - [SMALL_STATE(2297)] = 64925, - [SMALL_STATE(2298)] = 64936, - [SMALL_STATE(2299)] = 64947, - [SMALL_STATE(2300)] = 64958, - [SMALL_STATE(2301)] = 64969, - [SMALL_STATE(2302)] = 64978, - [SMALL_STATE(2303)] = 64989, - [SMALL_STATE(2304)] = 65000, - [SMALL_STATE(2305)] = 65011, - [SMALL_STATE(2306)] = 65022, - [SMALL_STATE(2307)] = 65031, - [SMALL_STATE(2308)] = 65042, - [SMALL_STATE(2309)] = 65053, - [SMALL_STATE(2310)] = 65062, - [SMALL_STATE(2311)] = 65071, - [SMALL_STATE(2312)] = 65082, - [SMALL_STATE(2313)] = 65090, - [SMALL_STATE(2314)] = 65098, - [SMALL_STATE(2315)] = 65106, - [SMALL_STATE(2316)] = 65114, - [SMALL_STATE(2317)] = 65122, - [SMALL_STATE(2318)] = 65130, - [SMALL_STATE(2319)] = 65138, - [SMALL_STATE(2320)] = 65146, - [SMALL_STATE(2321)] = 65154, - [SMALL_STATE(2322)] = 65162, - [SMALL_STATE(2323)] = 65170, - [SMALL_STATE(2324)] = 65178, - [SMALL_STATE(2325)] = 65186, - [SMALL_STATE(2326)] = 65194, - [SMALL_STATE(2327)] = 65202, - [SMALL_STATE(2328)] = 65210, - [SMALL_STATE(2329)] = 65218, - [SMALL_STATE(2330)] = 65226, - [SMALL_STATE(2331)] = 65234, - [SMALL_STATE(2332)] = 65242, - [SMALL_STATE(2333)] = 65250, - [SMALL_STATE(2334)] = 65258, - [SMALL_STATE(2335)] = 65266, - [SMALL_STATE(2336)] = 65274, - [SMALL_STATE(2337)] = 65282, - [SMALL_STATE(2338)] = 65290, - [SMALL_STATE(2339)] = 65298, - [SMALL_STATE(2340)] = 65306, - [SMALL_STATE(2341)] = 65314, - [SMALL_STATE(2342)] = 65322, - [SMALL_STATE(2343)] = 65330, - [SMALL_STATE(2344)] = 65338, - [SMALL_STATE(2345)] = 65346, - [SMALL_STATE(2346)] = 65354, - [SMALL_STATE(2347)] = 65362, - [SMALL_STATE(2348)] = 65370, - [SMALL_STATE(2349)] = 65378, - [SMALL_STATE(2350)] = 65386, - [SMALL_STATE(2351)] = 65394, - [SMALL_STATE(2352)] = 65402, - [SMALL_STATE(2353)] = 65410, - [SMALL_STATE(2354)] = 65418, - [SMALL_STATE(2355)] = 65426, - [SMALL_STATE(2356)] = 65434, - [SMALL_STATE(2357)] = 65442, - [SMALL_STATE(2358)] = 65450, - [SMALL_STATE(2359)] = 65458, - [SMALL_STATE(2360)] = 65466, - [SMALL_STATE(2361)] = 65474, - [SMALL_STATE(2362)] = 65482, - [SMALL_STATE(2363)] = 65490, - [SMALL_STATE(2364)] = 65498, - [SMALL_STATE(2365)] = 65506, - [SMALL_STATE(2366)] = 65514, - [SMALL_STATE(2367)] = 65522, - [SMALL_STATE(2368)] = 65530, - [SMALL_STATE(2369)] = 65538, - [SMALL_STATE(2370)] = 65546, - [SMALL_STATE(2371)] = 65554, - [SMALL_STATE(2372)] = 65562, - [SMALL_STATE(2373)] = 65570, - [SMALL_STATE(2374)] = 65578, - [SMALL_STATE(2375)] = 65586, - [SMALL_STATE(2376)] = 65594, - [SMALL_STATE(2377)] = 65602, - [SMALL_STATE(2378)] = 65610, - [SMALL_STATE(2379)] = 65618, - [SMALL_STATE(2380)] = 65626, - [SMALL_STATE(2381)] = 65634, - [SMALL_STATE(2382)] = 65642, - [SMALL_STATE(2383)] = 65650, - [SMALL_STATE(2384)] = 65658, - [SMALL_STATE(2385)] = 65666, - [SMALL_STATE(2386)] = 65674, - [SMALL_STATE(2387)] = 65682, - [SMALL_STATE(2388)] = 65690, - [SMALL_STATE(2389)] = 65698, - [SMALL_STATE(2390)] = 65706, - [SMALL_STATE(2391)] = 65714, - [SMALL_STATE(2392)] = 65722, - [SMALL_STATE(2393)] = 65730, - [SMALL_STATE(2394)] = 65738, - [SMALL_STATE(2395)] = 65746, - [SMALL_STATE(2396)] = 65754, - [SMALL_STATE(2397)] = 65762, - [SMALL_STATE(2398)] = 65770, - [SMALL_STATE(2399)] = 65778, - [SMALL_STATE(2400)] = 65786, - [SMALL_STATE(2401)] = 65794, - [SMALL_STATE(2402)] = 65802, - [SMALL_STATE(2403)] = 65810, - [SMALL_STATE(2404)] = 65818, - [SMALL_STATE(2405)] = 65826, - [SMALL_STATE(2406)] = 65834, - [SMALL_STATE(2407)] = 65842, - [SMALL_STATE(2408)] = 65850, - [SMALL_STATE(2409)] = 65858, - [SMALL_STATE(2410)] = 65866, - [SMALL_STATE(2411)] = 65874, - [SMALL_STATE(2412)] = 65882, - [SMALL_STATE(2413)] = 65890, - [SMALL_STATE(2414)] = 65898, - [SMALL_STATE(2415)] = 65906, - [SMALL_STATE(2416)] = 65914, - [SMALL_STATE(2417)] = 65922, - [SMALL_STATE(2418)] = 65930, - [SMALL_STATE(2419)] = 65938, - [SMALL_STATE(2420)] = 65946, - [SMALL_STATE(2421)] = 65954, - [SMALL_STATE(2422)] = 65962, - [SMALL_STATE(2423)] = 65970, - [SMALL_STATE(2424)] = 65978, - [SMALL_STATE(2425)] = 65986, - [SMALL_STATE(2426)] = 65994, - [SMALL_STATE(2427)] = 66002, - [SMALL_STATE(2428)] = 66010, - [SMALL_STATE(2429)] = 66018, - [SMALL_STATE(2430)] = 66026, - [SMALL_STATE(2431)] = 66034, - [SMALL_STATE(2432)] = 66042, - [SMALL_STATE(2433)] = 66050, - [SMALL_STATE(2434)] = 66058, - [SMALL_STATE(2435)] = 66066, - [SMALL_STATE(2436)] = 66074, - [SMALL_STATE(2437)] = 66082, - [SMALL_STATE(2438)] = 66090, - [SMALL_STATE(2439)] = 66098, - [SMALL_STATE(2440)] = 66106, - [SMALL_STATE(2441)] = 66114, - [SMALL_STATE(2442)] = 66122, - [SMALL_STATE(2443)] = 66130, - [SMALL_STATE(2444)] = 66138, - [SMALL_STATE(2445)] = 66146, - [SMALL_STATE(2446)] = 66154, - [SMALL_STATE(2447)] = 66162, - [SMALL_STATE(2448)] = 66170, - [SMALL_STATE(2449)] = 66178, - [SMALL_STATE(2450)] = 66186, - [SMALL_STATE(2451)] = 66194, - [SMALL_STATE(2452)] = 66202, - [SMALL_STATE(2453)] = 66210, - [SMALL_STATE(2454)] = 66218, - [SMALL_STATE(2455)] = 66226, - [SMALL_STATE(2456)] = 66234, - [SMALL_STATE(2457)] = 66242, - [SMALL_STATE(2458)] = 66250, - [SMALL_STATE(2459)] = 66258, - [SMALL_STATE(2460)] = 66266, - [SMALL_STATE(2461)] = 66274, - [SMALL_STATE(2462)] = 66282, - [SMALL_STATE(2463)] = 66290, - [SMALL_STATE(2464)] = 66298, - [SMALL_STATE(2465)] = 66306, - [SMALL_STATE(2466)] = 66314, - [SMALL_STATE(2467)] = 66322, - [SMALL_STATE(2468)] = 66330, - [SMALL_STATE(2469)] = 66338, - [SMALL_STATE(2470)] = 66346, - [SMALL_STATE(2471)] = 66354, - [SMALL_STATE(2472)] = 66362, - [SMALL_STATE(2473)] = 66370, - [SMALL_STATE(2474)] = 66378, - [SMALL_STATE(2475)] = 66386, - [SMALL_STATE(2476)] = 66394, - [SMALL_STATE(2477)] = 66402, - [SMALL_STATE(2478)] = 66410, - [SMALL_STATE(2479)] = 66418, - [SMALL_STATE(2480)] = 66426, - [SMALL_STATE(2481)] = 66434, - [SMALL_STATE(2482)] = 66442, - [SMALL_STATE(2483)] = 66450, - [SMALL_STATE(2484)] = 66458, - [SMALL_STATE(2485)] = 66466, - [SMALL_STATE(2486)] = 66474, - [SMALL_STATE(2487)] = 66482, - [SMALL_STATE(2488)] = 66490, - [SMALL_STATE(2489)] = 66498, - [SMALL_STATE(2490)] = 66506, - [SMALL_STATE(2491)] = 66514, - [SMALL_STATE(2492)] = 66522, - [SMALL_STATE(2493)] = 66530, - [SMALL_STATE(2494)] = 66538, - [SMALL_STATE(2495)] = 66546, - [SMALL_STATE(2496)] = 66554, - [SMALL_STATE(2497)] = 66562, - [SMALL_STATE(2498)] = 66570, - [SMALL_STATE(2499)] = 66578, - [SMALL_STATE(2500)] = 66586, - [SMALL_STATE(2501)] = 66594, - [SMALL_STATE(2502)] = 66602, - [SMALL_STATE(2503)] = 66610, - [SMALL_STATE(2504)] = 66618, - [SMALL_STATE(2505)] = 66626, - [SMALL_STATE(2506)] = 66634, - [SMALL_STATE(2507)] = 66642, - [SMALL_STATE(2508)] = 66650, - [SMALL_STATE(2509)] = 66658, - [SMALL_STATE(2510)] = 66666, - [SMALL_STATE(2511)] = 66674, - [SMALL_STATE(2512)] = 66682, - [SMALL_STATE(2513)] = 66690, - [SMALL_STATE(2514)] = 66698, - [SMALL_STATE(2515)] = 66706, - [SMALL_STATE(2516)] = 66714, - [SMALL_STATE(2517)] = 66722, - [SMALL_STATE(2518)] = 66730, - [SMALL_STATE(2519)] = 66738, - [SMALL_STATE(2520)] = 66746, - [SMALL_STATE(2521)] = 66754, - [SMALL_STATE(2522)] = 66762, - [SMALL_STATE(2523)] = 66770, - [SMALL_STATE(2524)] = 66778, - [SMALL_STATE(2525)] = 66786, - [SMALL_STATE(2526)] = 66794, - [SMALL_STATE(2527)] = 66802, - [SMALL_STATE(2528)] = 66810, - [SMALL_STATE(2529)] = 66818, - [SMALL_STATE(2530)] = 66826, - [SMALL_STATE(2531)] = 66834, - [SMALL_STATE(2532)] = 66842, - [SMALL_STATE(2533)] = 66850, - [SMALL_STATE(2534)] = 66858, - [SMALL_STATE(2535)] = 66866, - [SMALL_STATE(2536)] = 66874, - [SMALL_STATE(2537)] = 66882, - [SMALL_STATE(2538)] = 66890, - [SMALL_STATE(2539)] = 66898, - [SMALL_STATE(2540)] = 66906, - [SMALL_STATE(2541)] = 66914, - [SMALL_STATE(2542)] = 66922, - [SMALL_STATE(2543)] = 66930, - [SMALL_STATE(2544)] = 66938, - [SMALL_STATE(2545)] = 66946, - [SMALL_STATE(2546)] = 66954, - [SMALL_STATE(2547)] = 66962, - [SMALL_STATE(2548)] = 66970, + [SMALL_STATE(641)] = 0, + [SMALL_STATE(642)] = 129, + [SMALL_STATE(643)] = 200, + [SMALL_STATE(644)] = 329, + [SMALL_STATE(645)] = 458, + [SMALL_STATE(646)] = 587, + [SMALL_STATE(647)] = 716, + [SMALL_STATE(648)] = 845, + [SMALL_STATE(649)] = 974, + [SMALL_STATE(650)] = 1103, + [SMALL_STATE(651)] = 1232, + [SMALL_STATE(652)] = 1361, + [SMALL_STATE(653)] = 1490, + [SMALL_STATE(654)] = 1619, + [SMALL_STATE(655)] = 1748, + [SMALL_STATE(656)] = 1877, + [SMALL_STATE(657)] = 2006, + [SMALL_STATE(658)] = 2135, + [SMALL_STATE(659)] = 2264, + [SMALL_STATE(660)] = 2393, + [SMALL_STATE(661)] = 2522, + [SMALL_STATE(662)] = 2651, + [SMALL_STATE(663)] = 2780, + [SMALL_STATE(664)] = 2909, + [SMALL_STATE(665)] = 3038, + [SMALL_STATE(666)] = 3167, + [SMALL_STATE(667)] = 3296, + [SMALL_STATE(668)] = 3425, + [SMALL_STATE(669)] = 3554, + [SMALL_STATE(670)] = 3683, + [SMALL_STATE(671)] = 3812, + [SMALL_STATE(672)] = 3941, + [SMALL_STATE(673)] = 4070, + [SMALL_STATE(674)] = 4199, + [SMALL_STATE(675)] = 4328, + [SMALL_STATE(676)] = 4457, + [SMALL_STATE(677)] = 4586, + [SMALL_STATE(678)] = 4715, + [SMALL_STATE(679)] = 4844, + [SMALL_STATE(680)] = 4973, + [SMALL_STATE(681)] = 5102, + [SMALL_STATE(682)] = 5231, + [SMALL_STATE(683)] = 5362, + [SMALL_STATE(684)] = 5491, + [SMALL_STATE(685)] = 5620, + [SMALL_STATE(686)] = 5749, + [SMALL_STATE(687)] = 5878, + [SMALL_STATE(688)] = 6007, + [SMALL_STATE(689)] = 6136, + [SMALL_STATE(690)] = 6265, + [SMALL_STATE(691)] = 6394, + [SMALL_STATE(692)] = 6523, + [SMALL_STATE(693)] = 6652, + [SMALL_STATE(694)] = 6781, + [SMALL_STATE(695)] = 6910, + [SMALL_STATE(696)] = 7039, + [SMALL_STATE(697)] = 7168, + [SMALL_STATE(698)] = 7297, + [SMALL_STATE(699)] = 7426, + [SMALL_STATE(700)] = 7555, + [SMALL_STATE(701)] = 7684, + [SMALL_STATE(702)] = 7813, + [SMALL_STATE(703)] = 7942, + [SMALL_STATE(704)] = 8071, + [SMALL_STATE(705)] = 8200, + [SMALL_STATE(706)] = 8329, + [SMALL_STATE(707)] = 8458, + [SMALL_STATE(708)] = 8587, + [SMALL_STATE(709)] = 8716, + [SMALL_STATE(710)] = 8845, + [SMALL_STATE(711)] = 8974, + [SMALL_STATE(712)] = 9103, + [SMALL_STATE(713)] = 9232, + [SMALL_STATE(714)] = 9361, + [SMALL_STATE(715)] = 9490, + [SMALL_STATE(716)] = 9619, + [SMALL_STATE(717)] = 9748, + [SMALL_STATE(718)] = 9877, + [SMALL_STATE(719)] = 10006, + [SMALL_STATE(720)] = 10135, + [SMALL_STATE(721)] = 10264, + [SMALL_STATE(722)] = 10393, + [SMALL_STATE(723)] = 10522, + [SMALL_STATE(724)] = 10651, + [SMALL_STATE(725)] = 10780, + [SMALL_STATE(726)] = 10909, + [SMALL_STATE(727)] = 11038, + [SMALL_STATE(728)] = 11167, + [SMALL_STATE(729)] = 11296, + [SMALL_STATE(730)] = 11425, + [SMALL_STATE(731)] = 11554, + [SMALL_STATE(732)] = 11683, + [SMALL_STATE(733)] = 11812, + [SMALL_STATE(734)] = 11941, + [SMALL_STATE(735)] = 12070, + [SMALL_STATE(736)] = 12199, + [SMALL_STATE(737)] = 12328, + [SMALL_STATE(738)] = 12457, + [SMALL_STATE(739)] = 12586, + [SMALL_STATE(740)] = 12715, + [SMALL_STATE(741)] = 12844, + [SMALL_STATE(742)] = 12973, + [SMALL_STATE(743)] = 13102, + [SMALL_STATE(744)] = 13231, + [SMALL_STATE(745)] = 13360, + [SMALL_STATE(746)] = 13489, + [SMALL_STATE(747)] = 13618, + [SMALL_STATE(748)] = 13747, + [SMALL_STATE(749)] = 13876, + [SMALL_STATE(750)] = 14005, + [SMALL_STATE(751)] = 14134, + [SMALL_STATE(752)] = 14200, + [SMALL_STATE(753)] = 14266, + [SMALL_STATE(754)] = 14332, + [SMALL_STATE(755)] = 14398, + [SMALL_STATE(756)] = 14460, + [SMALL_STATE(757)] = 14530, + [SMALL_STATE(758)] = 14597, + [SMALL_STATE(759)] = 14664, + [SMALL_STATE(760)] = 14724, + [SMALL_STATE(761)] = 14784, + [SMALL_STATE(762)] = 14848, + [SMALL_STATE(763)] = 14908, + [SMALL_STATE(764)] = 14970, + [SMALL_STATE(765)] = 15026, + [SMALL_STATE(766)] = 15090, + [SMALL_STATE(767)] = 15154, + [SMALL_STATE(768)] = 15210, + [SMALL_STATE(769)] = 15266, + [SMALL_STATE(770)] = 15326, + [SMALL_STATE(771)] = 15382, + [SMALL_STATE(772)] = 15438, + [SMALL_STATE(773)] = 15502, + [SMALL_STATE(774)] = 15561, + [SMALL_STATE(775)] = 15618, + [SMALL_STATE(776)] = 15677, + [SMALL_STATE(777)] = 15734, + [SMALL_STATE(778)] = 15789, + [SMALL_STATE(779)] = 15846, + [SMALL_STATE(780)] = 15903, + [SMALL_STATE(781)] = 15957, + [SMALL_STATE(782)] = 16011, + [SMALL_STATE(783)] = 16065, + [SMALL_STATE(784)] = 16119, + [SMALL_STATE(785)] = 16173, + [SMALL_STATE(786)] = 16231, + [SMALL_STATE(787)] = 16285, + [SMALL_STATE(788)] = 16339, + [SMALL_STATE(789)] = 16393, + [SMALL_STATE(790)] = 16447, + [SMALL_STATE(791)] = 16501, + [SMALL_STATE(792)] = 16555, + [SMALL_STATE(793)] = 16609, + [SMALL_STATE(794)] = 16663, + [SMALL_STATE(795)] = 16717, + [SMALL_STATE(796)] = 16771, + [SMALL_STATE(797)] = 16825, + [SMALL_STATE(798)] = 16879, + [SMALL_STATE(799)] = 16933, + [SMALL_STATE(800)] = 16987, + [SMALL_STATE(801)] = 17041, + [SMALL_STATE(802)] = 17095, + [SMALL_STATE(803)] = 17149, + [SMALL_STATE(804)] = 17203, + [SMALL_STATE(805)] = 17257, + [SMALL_STATE(806)] = 17311, + [SMALL_STATE(807)] = 17365, + [SMALL_STATE(808)] = 17419, + [SMALL_STATE(809)] = 17473, + [SMALL_STATE(810)] = 17527, + [SMALL_STATE(811)] = 17581, + [SMALL_STATE(812)] = 17635, + [SMALL_STATE(813)] = 17689, + [SMALL_STATE(814)] = 17743, + [SMALL_STATE(815)] = 17797, + [SMALL_STATE(816)] = 17851, + [SMALL_STATE(817)] = 17905, + [SMALL_STATE(818)] = 17959, + [SMALL_STATE(819)] = 18013, + [SMALL_STATE(820)] = 18069, + [SMALL_STATE(821)] = 18123, + [SMALL_STATE(822)] = 18177, + [SMALL_STATE(823)] = 18231, + [SMALL_STATE(824)] = 18285, + [SMALL_STATE(825)] = 18339, + [SMALL_STATE(826)] = 18393, + [SMALL_STATE(827)] = 18447, + [SMALL_STATE(828)] = 18501, + [SMALL_STATE(829)] = 18555, + [SMALL_STATE(830)] = 18609, + [SMALL_STATE(831)] = 18663, + [SMALL_STATE(832)] = 18717, + [SMALL_STATE(833)] = 18773, + [SMALL_STATE(834)] = 18827, + [SMALL_STATE(835)] = 18881, + [SMALL_STATE(836)] = 18935, + [SMALL_STATE(837)] = 18989, + [SMALL_STATE(838)] = 19045, + [SMALL_STATE(839)] = 19099, + [SMALL_STATE(840)] = 19153, + [SMALL_STATE(841)] = 19207, + [SMALL_STATE(842)] = 19261, + [SMALL_STATE(843)] = 19315, + [SMALL_STATE(844)] = 19369, + [SMALL_STATE(845)] = 19423, + [SMALL_STATE(846)] = 19477, + [SMALL_STATE(847)] = 19531, + [SMALL_STATE(848)] = 19589, + [SMALL_STATE(849)] = 19643, + [SMALL_STATE(850)] = 19697, + [SMALL_STATE(851)] = 19751, + [SMALL_STATE(852)] = 19805, + [SMALL_STATE(853)] = 19859, + [SMALL_STATE(854)] = 19913, + [SMALL_STATE(855)] = 19967, + [SMALL_STATE(856)] = 20021, + [SMALL_STATE(857)] = 20075, + [SMALL_STATE(858)] = 20129, + [SMALL_STATE(859)] = 20183, + [SMALL_STATE(860)] = 20237, + [SMALL_STATE(861)] = 20291, + [SMALL_STATE(862)] = 20345, + [SMALL_STATE(863)] = 20399, + [SMALL_STATE(864)] = 20453, + [SMALL_STATE(865)] = 20507, + [SMALL_STATE(866)] = 20561, + [SMALL_STATE(867)] = 20615, + [SMALL_STATE(868)] = 20669, + [SMALL_STATE(869)] = 20723, + [SMALL_STATE(870)] = 20777, + [SMALL_STATE(871)] = 20831, + [SMALL_STATE(872)] = 20885, + [SMALL_STATE(873)] = 20939, + [SMALL_STATE(874)] = 20993, + [SMALL_STATE(875)] = 21047, + [SMALL_STATE(876)] = 21101, + [SMALL_STATE(877)] = 21155, + [SMALL_STATE(878)] = 21209, + [SMALL_STATE(879)] = 21263, + [SMALL_STATE(880)] = 21317, + [SMALL_STATE(881)] = 21371, + [SMALL_STATE(882)] = 21425, + [SMALL_STATE(883)] = 21479, + [SMALL_STATE(884)] = 21537, + [SMALL_STATE(885)] = 21591, + [SMALL_STATE(886)] = 21645, + [SMALL_STATE(887)] = 21699, + [SMALL_STATE(888)] = 21753, + [SMALL_STATE(889)] = 21807, + [SMALL_STATE(890)] = 21861, + [SMALL_STATE(891)] = 21915, + [SMALL_STATE(892)] = 21969, + [SMALL_STATE(893)] = 22023, + [SMALL_STATE(894)] = 22077, + [SMALL_STATE(895)] = 22131, + [SMALL_STATE(896)] = 22185, + [SMALL_STATE(897)] = 22239, + [SMALL_STATE(898)] = 22293, + [SMALL_STATE(899)] = 22347, + [SMALL_STATE(900)] = 22401, + [SMALL_STATE(901)] = 22455, + [SMALL_STATE(902)] = 22509, + [SMALL_STATE(903)] = 22563, + [SMALL_STATE(904)] = 22617, + [SMALL_STATE(905)] = 22671, + [SMALL_STATE(906)] = 22725, + [SMALL_STATE(907)] = 22779, + [SMALL_STATE(908)] = 22833, + [SMALL_STATE(909)] = 22887, + [SMALL_STATE(910)] = 22941, + [SMALL_STATE(911)] = 22995, + [SMALL_STATE(912)] = 23049, + [SMALL_STATE(913)] = 23103, + [SMALL_STATE(914)] = 23157, + [SMALL_STATE(915)] = 23211, + [SMALL_STATE(916)] = 23265, + [SMALL_STATE(917)] = 23319, + [SMALL_STATE(918)] = 23373, + [SMALL_STATE(919)] = 23427, + [SMALL_STATE(920)] = 23481, + [SMALL_STATE(921)] = 23535, + [SMALL_STATE(922)] = 23589, + [SMALL_STATE(923)] = 23643, + [SMALL_STATE(924)] = 23697, + [SMALL_STATE(925)] = 23751, + [SMALL_STATE(926)] = 23805, + [SMALL_STATE(927)] = 23859, + [SMALL_STATE(928)] = 23913, + [SMALL_STATE(929)] = 23967, + [SMALL_STATE(930)] = 24021, + [SMALL_STATE(931)] = 24077, + [SMALL_STATE(932)] = 24131, + [SMALL_STATE(933)] = 24187, + [SMALL_STATE(934)] = 24243, + [SMALL_STATE(935)] = 24297, + [SMALL_STATE(936)] = 24351, + [SMALL_STATE(937)] = 24405, + [SMALL_STATE(938)] = 24459, + [SMALL_STATE(939)] = 24513, + [SMALL_STATE(940)] = 24567, + [SMALL_STATE(941)] = 24621, + [SMALL_STATE(942)] = 24675, + [SMALL_STATE(943)] = 24729, + [SMALL_STATE(944)] = 24783, + [SMALL_STATE(945)] = 24837, + [SMALL_STATE(946)] = 24891, + [SMALL_STATE(947)] = 24945, + [SMALL_STATE(948)] = 24999, + [SMALL_STATE(949)] = 25053, + [SMALL_STATE(950)] = 25109, + [SMALL_STATE(951)] = 25163, + [SMALL_STATE(952)] = 25217, + [SMALL_STATE(953)] = 25273, + [SMALL_STATE(954)] = 25327, + [SMALL_STATE(955)] = 25381, + [SMALL_STATE(956)] = 25435, + [SMALL_STATE(957)] = 25489, + [SMALL_STATE(958)] = 25543, + [SMALL_STATE(959)] = 25597, + [SMALL_STATE(960)] = 25651, + [SMALL_STATE(961)] = 25705, + [SMALL_STATE(962)] = 25759, + [SMALL_STATE(963)] = 25813, + [SMALL_STATE(964)] = 25867, + [SMALL_STATE(965)] = 25921, + [SMALL_STATE(966)] = 25977, + [SMALL_STATE(967)] = 26031, + [SMALL_STATE(968)] = 26085, + [SMALL_STATE(969)] = 26139, + [SMALL_STATE(970)] = 26193, + [SMALL_STATE(971)] = 26247, + [SMALL_STATE(972)] = 26301, + [SMALL_STATE(973)] = 26355, + [SMALL_STATE(974)] = 26409, + [SMALL_STATE(975)] = 26463, + [SMALL_STATE(976)] = 26517, + [SMALL_STATE(977)] = 26571, + [SMALL_STATE(978)] = 26625, + [SMALL_STATE(979)] = 26679, + [SMALL_STATE(980)] = 26733, + [SMALL_STATE(981)] = 26789, + [SMALL_STATE(982)] = 26843, + [SMALL_STATE(983)] = 26899, + [SMALL_STATE(984)] = 26955, + [SMALL_STATE(985)] = 27009, + [SMALL_STATE(986)] = 27063, + [SMALL_STATE(987)] = 27119, + [SMALL_STATE(988)] = 27173, + [SMALL_STATE(989)] = 27227, + [SMALL_STATE(990)] = 27283, + [SMALL_STATE(991)] = 27337, + [SMALL_STATE(992)] = 27391, + [SMALL_STATE(993)] = 27445, + [SMALL_STATE(994)] = 27501, + [SMALL_STATE(995)] = 27555, + [SMALL_STATE(996)] = 27609, + [SMALL_STATE(997)] = 27663, + [SMALL_STATE(998)] = 27717, + [SMALL_STATE(999)] = 27771, + [SMALL_STATE(1000)] = 27825, + [SMALL_STATE(1001)] = 27879, + [SMALL_STATE(1002)] = 27933, + [SMALL_STATE(1003)] = 27987, + [SMALL_STATE(1004)] = 28041, + [SMALL_STATE(1005)] = 28095, + [SMALL_STATE(1006)] = 28149, + [SMALL_STATE(1007)] = 28203, + [SMALL_STATE(1008)] = 28257, + [SMALL_STATE(1009)] = 28311, + [SMALL_STATE(1010)] = 28365, + [SMALL_STATE(1011)] = 28419, + [SMALL_STATE(1012)] = 28473, + [SMALL_STATE(1013)] = 28527, + [SMALL_STATE(1014)] = 28581, + [SMALL_STATE(1015)] = 28635, + [SMALL_STATE(1016)] = 28689, + [SMALL_STATE(1017)] = 28743, + [SMALL_STATE(1018)] = 28797, + [SMALL_STATE(1019)] = 28851, + [SMALL_STATE(1020)] = 28905, + [SMALL_STATE(1021)] = 28959, + [SMALL_STATE(1022)] = 29013, + [SMALL_STATE(1023)] = 29067, + [SMALL_STATE(1024)] = 29121, + [SMALL_STATE(1025)] = 29175, + [SMALL_STATE(1026)] = 29229, + [SMALL_STATE(1027)] = 29283, + [SMALL_STATE(1028)] = 29337, + [SMALL_STATE(1029)] = 29391, + [SMALL_STATE(1030)] = 29445, + [SMALL_STATE(1031)] = 29499, + [SMALL_STATE(1032)] = 29553, + [SMALL_STATE(1033)] = 29607, + [SMALL_STATE(1034)] = 29661, + [SMALL_STATE(1035)] = 29715, + [SMALL_STATE(1036)] = 29769, + [SMALL_STATE(1037)] = 29823, + [SMALL_STATE(1038)] = 29877, + [SMALL_STATE(1039)] = 29930, + [SMALL_STATE(1040)] = 29983, + [SMALL_STATE(1041)] = 30036, + [SMALL_STATE(1042)] = 30089, + [SMALL_STATE(1043)] = 30144, + [SMALL_STATE(1044)] = 30197, + [SMALL_STATE(1045)] = 30250, + [SMALL_STATE(1046)] = 30303, + [SMALL_STATE(1047)] = 30356, + [SMALL_STATE(1048)] = 30409, + [SMALL_STATE(1049)] = 30462, + [SMALL_STATE(1050)] = 30515, + [SMALL_STATE(1051)] = 30570, + [SMALL_STATE(1052)] = 30623, + [SMALL_STATE(1053)] = 30676, + [SMALL_STATE(1054)] = 30729, + [SMALL_STATE(1055)] = 30782, + [SMALL_STATE(1056)] = 30835, + [SMALL_STATE(1057)] = 30888, + [SMALL_STATE(1058)] = 30941, + [SMALL_STATE(1059)] = 30994, + [SMALL_STATE(1060)] = 31047, + [SMALL_STATE(1061)] = 31100, + [SMALL_STATE(1062)] = 31153, + [SMALL_STATE(1063)] = 31206, + [SMALL_STATE(1064)] = 31295, + [SMALL_STATE(1065)] = 31348, + [SMALL_STATE(1066)] = 31401, + [SMALL_STATE(1067)] = 31456, + [SMALL_STATE(1068)] = 31509, + [SMALL_STATE(1069)] = 31562, + [SMALL_STATE(1070)] = 31615, + [SMALL_STATE(1071)] = 31668, + [SMALL_STATE(1072)] = 31721, + [SMALL_STATE(1073)] = 31774, + [SMALL_STATE(1074)] = 31827, + [SMALL_STATE(1075)] = 31880, + [SMALL_STATE(1076)] = 31933, + [SMALL_STATE(1077)] = 31986, + [SMALL_STATE(1078)] = 32039, + [SMALL_STATE(1079)] = 32092, + [SMALL_STATE(1080)] = 32145, + [SMALL_STATE(1081)] = 32198, + [SMALL_STATE(1082)] = 32251, + [SMALL_STATE(1083)] = 32304, + [SMALL_STATE(1084)] = 32357, + [SMALL_STATE(1085)] = 32410, + [SMALL_STATE(1086)] = 32463, + [SMALL_STATE(1087)] = 32516, + [SMALL_STATE(1088)] = 32569, + [SMALL_STATE(1089)] = 32622, + [SMALL_STATE(1090)] = 32675, + [SMALL_STATE(1091)] = 32728, + [SMALL_STATE(1092)] = 32781, + [SMALL_STATE(1093)] = 32834, + [SMALL_STATE(1094)] = 32887, + [SMALL_STATE(1095)] = 32940, + [SMALL_STATE(1096)] = 32993, + [SMALL_STATE(1097)] = 33046, + [SMALL_STATE(1098)] = 33099, + [SMALL_STATE(1099)] = 33152, + [SMALL_STATE(1100)] = 33205, + [SMALL_STATE(1101)] = 33258, + [SMALL_STATE(1102)] = 33347, + [SMALL_STATE(1103)] = 33400, + [SMALL_STATE(1104)] = 33453, + [SMALL_STATE(1105)] = 33508, + [SMALL_STATE(1106)] = 33561, + [SMALL_STATE(1107)] = 33614, + [SMALL_STATE(1108)] = 33667, + [SMALL_STATE(1109)] = 33720, + [SMALL_STATE(1110)] = 33773, + [SMALL_STATE(1111)] = 33826, + [SMALL_STATE(1112)] = 33879, + [SMALL_STATE(1113)] = 33932, + [SMALL_STATE(1114)] = 33985, + [SMALL_STATE(1115)] = 34038, + [SMALL_STATE(1116)] = 34091, + [SMALL_STATE(1117)] = 34144, + [SMALL_STATE(1118)] = 34197, + [SMALL_STATE(1119)] = 34250, + [SMALL_STATE(1120)] = 34303, + [SMALL_STATE(1121)] = 34356, + [SMALL_STATE(1122)] = 34413, + [SMALL_STATE(1123)] = 34466, + [SMALL_STATE(1124)] = 34519, + [SMALL_STATE(1125)] = 34572, + [SMALL_STATE(1126)] = 34625, + [SMALL_STATE(1127)] = 34678, + [SMALL_STATE(1128)] = 34731, + [SMALL_STATE(1129)] = 34784, + [SMALL_STATE(1130)] = 34837, + [SMALL_STATE(1131)] = 34890, + [SMALL_STATE(1132)] = 34943, + [SMALL_STATE(1133)] = 34996, + [SMALL_STATE(1134)] = 35049, + [SMALL_STATE(1135)] = 35102, + [SMALL_STATE(1136)] = 35182, + [SMALL_STATE(1137)] = 35246, + [SMALL_STATE(1138)] = 35324, + [SMALL_STATE(1139)] = 35410, + [SMALL_STATE(1140)] = 35478, + [SMALL_STATE(1141)] = 35554, + [SMALL_STATE(1142)] = 35614, + [SMALL_STATE(1143)] = 35694, + [SMALL_STATE(1144)] = 35774, + [SMALL_STATE(1145)] = 35844, + [SMALL_STATE(1146)] = 35904, + [SMALL_STATE(1147)] = 35990, + [SMALL_STATE(1148)] = 36070, + [SMALL_STATE(1149)] = 36122, + [SMALL_STATE(1150)] = 36184, + [SMALL_STATE(1151)] = 36244, + [SMALL_STATE(1152)] = 36296, + [SMALL_STATE(1153)] = 36356, + [SMALL_STATE(1154)] = 36428, + [SMALL_STATE(1155)] = 36494, + [SMALL_STATE(1156)] = 36554, + [SMALL_STATE(1157)] = 36634, + [SMALL_STATE(1158)] = 36714, + [SMALL_STATE(1159)] = 36801, + [SMALL_STATE(1160)] = 36880, + [SMALL_STATE(1161)] = 36967, + [SMALL_STATE(1162)] = 37054, + [SMALL_STATE(1163)] = 37111, + [SMALL_STATE(1164)] = 37196, + [SMALL_STATE(1165)] = 37283, + [SMALL_STATE(1166)] = 37368, + [SMALL_STATE(1167)] = 37419, + [SMALL_STATE(1168)] = 37470, + [SMALL_STATE(1169)] = 37546, + [SMALL_STATE(1170)] = 37622, + [SMALL_STATE(1171)] = 37698, + [SMALL_STATE(1172)] = 37774, + [SMALL_STATE(1173)] = 37828, + [SMALL_STATE(1174)] = 37884, + [SMALL_STATE(1175)] = 37933, + [SMALL_STATE(1176)] = 37982, + [SMALL_STATE(1177)] = 38071, + [SMALL_STATE(1178)] = 38120, + [SMALL_STATE(1179)] = 38171, + [SMALL_STATE(1180)] = 38220, + [SMALL_STATE(1181)] = 38269, + [SMALL_STATE(1182)] = 38342, + [SMALL_STATE(1183)] = 38391, + [SMALL_STATE(1184)] = 38480, + [SMALL_STATE(1185)] = 38529, + [SMALL_STATE(1186)] = 38580, + [SMALL_STATE(1187)] = 38629, + [SMALL_STATE(1188)] = 38682, + [SMALL_STATE(1189)] = 38735, + [SMALL_STATE(1190)] = 38784, + [SMALL_STATE(1191)] = 38834, + [SMALL_STATE(1192)] = 38912, + [SMALL_STATE(1193)] = 38998, + [SMALL_STATE(1194)] = 39048, + [SMALL_STATE(1195)] = 39126, + [SMALL_STATE(1196)] = 39176, + [SMALL_STATE(1197)] = 39226, + [SMALL_STATE(1198)] = 39312, + [SMALL_STATE(1199)] = 39393, + [SMALL_STATE(1200)] = 39474, + [SMALL_STATE(1201)] = 39557, + [SMALL_STATE(1202)] = 39640, + [SMALL_STATE(1203)] = 39723, + [SMALL_STATE(1204)] = 39806, + [SMALL_STATE(1205)] = 39861, + [SMALL_STATE(1206)] = 39916, + [SMALL_STATE(1207)] = 39997, + [SMALL_STATE(1208)] = 40080, + [SMALL_STATE(1209)] = 40135, + [SMALL_STATE(1210)] = 40216, + [SMALL_STATE(1211)] = 40299, + [SMALL_STATE(1212)] = 40380, + [SMALL_STATE(1213)] = 40463, + [SMALL_STATE(1214)] = 40546, + [SMALL_STATE(1215)] = 40629, + [SMALL_STATE(1216)] = 40712, + [SMALL_STATE(1217)] = 40795, + [SMALL_STATE(1218)] = 40870, + [SMALL_STATE(1219)] = 40953, + [SMALL_STATE(1220)] = 41012, + [SMALL_STATE(1221)] = 41095, + [SMALL_STATE(1222)] = 41158, + [SMALL_STATE(1223)] = 41223, + [SMALL_STATE(1224)] = 41304, + [SMALL_STATE(1225)] = 41379, + [SMALL_STATE(1226)] = 41462, + [SMALL_STATE(1227)] = 41543, + [SMALL_STATE(1228)] = 41626, + [SMALL_STATE(1229)] = 41709, + [SMALL_STATE(1230)] = 41792, + [SMALL_STATE(1231)] = 41865, + [SMALL_STATE(1232)] = 41946, + [SMALL_STATE(1233)] = 42019, + [SMALL_STATE(1234)] = 42100, + [SMALL_STATE(1235)] = 42171, + [SMALL_STATE(1236)] = 42232, + [SMALL_STATE(1237)] = 42307, + [SMALL_STATE(1238)] = 42390, + [SMALL_STATE(1239)] = 42473, + [SMALL_STATE(1240)] = 42556, + [SMALL_STATE(1241)] = 42623, + [SMALL_STATE(1242)] = 42706, + [SMALL_STATE(1243)] = 42787, + [SMALL_STATE(1244)] = 42870, + [SMALL_STATE(1245)] = 42951, + [SMALL_STATE(1246)] = 43026, + [SMALL_STATE(1247)] = 43081, + [SMALL_STATE(1248)] = 43156, + [SMALL_STATE(1249)] = 43213, + [SMALL_STATE(1250)] = 43296, + [SMALL_STATE(1251)] = 43379, + [SMALL_STATE(1252)] = 43462, + [SMALL_STATE(1253)] = 43535, + [SMALL_STATE(1254)] = 43618, + [SMALL_STATE(1255)] = 43699, + [SMALL_STATE(1256)] = 43770, + [SMALL_STATE(1257)] = 43851, + [SMALL_STATE(1258)] = 43934, + [SMALL_STATE(1259)] = 44015, + [SMALL_STATE(1260)] = 44098, + [SMALL_STATE(1261)] = 44181, + [SMALL_STATE(1262)] = 44256, + [SMALL_STATE(1263)] = 44336, + [SMALL_STATE(1264)] = 44416, + [SMALL_STATE(1265)] = 44484, + [SMALL_STATE(1266)] = 44564, + [SMALL_STATE(1267)] = 44644, + [SMALL_STATE(1268)] = 44724, + [SMALL_STATE(1269)] = 44804, + [SMALL_STATE(1270)] = 44884, + [SMALL_STATE(1271)] = 44964, + [SMALL_STATE(1272)] = 45044, + [SMALL_STATE(1273)] = 45124, + [SMALL_STATE(1274)] = 45204, + [SMALL_STATE(1275)] = 45284, + [SMALL_STATE(1276)] = 45364, + [SMALL_STATE(1277)] = 45444, + [SMALL_STATE(1278)] = 45522, + [SMALL_STATE(1279)] = 45600, + [SMALL_STATE(1280)] = 45680, + [SMALL_STATE(1281)] = 45760, + [SMALL_STATE(1282)] = 45840, + [SMALL_STATE(1283)] = 45920, + [SMALL_STATE(1284)] = 46000, + [SMALL_STATE(1285)] = 46080, + [SMALL_STATE(1286)] = 46148, + [SMALL_STATE(1287)] = 46228, + [SMALL_STATE(1288)] = 46308, + [SMALL_STATE(1289)] = 46388, + [SMALL_STATE(1290)] = 46468, + [SMALL_STATE(1291)] = 46548, + [SMALL_STATE(1292)] = 46628, + [SMALL_STATE(1293)] = 46708, + [SMALL_STATE(1294)] = 46788, + [SMALL_STATE(1295)] = 46866, + [SMALL_STATE(1296)] = 46946, + [SMALL_STATE(1297)] = 47026, + [SMALL_STATE(1298)] = 47104, + [SMALL_STATE(1299)] = 47184, + [SMALL_STATE(1300)] = 47264, + [SMALL_STATE(1301)] = 47344, + [SMALL_STATE(1302)] = 47409, + [SMALL_STATE(1303)] = 47474, + [SMALL_STATE(1304)] = 47539, + [SMALL_STATE(1305)] = 47604, + [SMALL_STATE(1306)] = 47669, + [SMALL_STATE(1307)] = 47709, + [SMALL_STATE(1308)] = 47749, + [SMALL_STATE(1309)] = 47789, + [SMALL_STATE(1310)] = 47841, + [SMALL_STATE(1311)] = 47893, + [SMALL_STATE(1312)] = 47923, + [SMALL_STATE(1313)] = 47953, + [SMALL_STATE(1314)] = 47998, + [SMALL_STATE(1315)] = 48038, + [SMALL_STATE(1316)] = 48067, + [SMALL_STATE(1317)] = 48096, + [SMALL_STATE(1318)] = 48125, + [SMALL_STATE(1319)] = 48154, + [SMALL_STATE(1320)] = 48183, + [SMALL_STATE(1321)] = 48220, + [SMALL_STATE(1322)] = 48249, + [SMALL_STATE(1323)] = 48286, + [SMALL_STATE(1324)] = 48315, + [SMALL_STATE(1325)] = 48344, + [SMALL_STATE(1326)] = 48370, + [SMALL_STATE(1327)] = 48402, + [SMALL_STATE(1328)] = 48456, + [SMALL_STATE(1329)] = 48488, + [SMALL_STATE(1330)] = 48514, + [SMALL_STATE(1331)] = 48546, + [SMALL_STATE(1332)] = 48600, + [SMALL_STATE(1333)] = 48626, + [SMALL_STATE(1334)] = 48651, + [SMALL_STATE(1335)] = 48684, + [SMALL_STATE(1336)] = 48709, + [SMALL_STATE(1337)] = 48734, + [SMALL_STATE(1338)] = 48759, + [SMALL_STATE(1339)] = 48784, + [SMALL_STATE(1340)] = 48807, + [SMALL_STATE(1341)] = 48829, + [SMALL_STATE(1342)] = 48853, + [SMALL_STATE(1343)] = 48877, + [SMALL_STATE(1344)] = 48899, + [SMALL_STATE(1345)] = 48921, + [SMALL_STATE(1346)] = 48945, + [SMALL_STATE(1347)] = 48967, + [SMALL_STATE(1348)] = 48991, + [SMALL_STATE(1349)] = 49015, + [SMALL_STATE(1350)] = 49039, + [SMALL_STATE(1351)] = 49083, + [SMALL_STATE(1352)] = 49127, + [SMALL_STATE(1353)] = 49151, + [SMALL_STATE(1354)] = 49197, + [SMALL_STATE(1355)] = 49218, + [SMALL_STATE(1356)] = 49245, + [SMALL_STATE(1357)] = 49266, + [SMALL_STATE(1358)] = 49291, + [SMALL_STATE(1359)] = 49316, + [SMALL_STATE(1360)] = 49337, + [SMALL_STATE(1361)] = 49360, + [SMALL_STATE(1362)] = 49385, + [SMALL_STATE(1363)] = 49408, + [SMALL_STATE(1364)] = 49433, + [SMALL_STATE(1365)] = 49456, + [SMALL_STATE(1366)] = 49479, + [SMALL_STATE(1367)] = 49502, + [SMALL_STATE(1368)] = 49547, + [SMALL_STATE(1369)] = 49568, + [SMALL_STATE(1370)] = 49591, + [SMALL_STATE(1371)] = 49616, + [SMALL_STATE(1372)] = 49641, + [SMALL_STATE(1373)] = 49662, + [SMALL_STATE(1374)] = 49685, + [SMALL_STATE(1375)] = 49708, + [SMALL_STATE(1376)] = 49730, + [SMALL_STATE(1377)] = 49752, + [SMALL_STATE(1378)] = 49772, + [SMALL_STATE(1379)] = 49792, + [SMALL_STATE(1380)] = 49812, + [SMALL_STATE(1381)] = 49832, + [SMALL_STATE(1382)] = 49854, + [SMALL_STATE(1383)] = 49874, + [SMALL_STATE(1384)] = 49894, + [SMALL_STATE(1385)] = 49914, + [SMALL_STATE(1386)] = 49934, + [SMALL_STATE(1387)] = 49954, + [SMALL_STATE(1388)] = 49974, + [SMALL_STATE(1389)] = 49994, + [SMALL_STATE(1390)] = 50014, + [SMALL_STATE(1391)] = 50034, + [SMALL_STATE(1392)] = 50054, + [SMALL_STATE(1393)] = 50074, + [SMALL_STATE(1394)] = 50094, + [SMALL_STATE(1395)] = 50114, + [SMALL_STATE(1396)] = 50134, + [SMALL_STATE(1397)] = 50154, + [SMALL_STATE(1398)] = 50174, + [SMALL_STATE(1399)] = 50194, + [SMALL_STATE(1400)] = 50218, + [SMALL_STATE(1401)] = 50238, + [SMALL_STATE(1402)] = 50258, + [SMALL_STATE(1403)] = 50283, + [SMALL_STATE(1404)] = 50308, + [SMALL_STATE(1405)] = 50329, + [SMALL_STATE(1406)] = 50352, + [SMALL_STATE(1407)] = 50375, + [SMALL_STATE(1408)] = 50398, + [SMALL_STATE(1409)] = 50421, + [SMALL_STATE(1410)] = 50444, + [SMALL_STATE(1411)] = 50467, + [SMALL_STATE(1412)] = 50492, + [SMALL_STATE(1413)] = 50515, + [SMALL_STATE(1414)] = 50538, + [SMALL_STATE(1415)] = 50563, + [SMALL_STATE(1416)] = 50586, + [SMALL_STATE(1417)] = 50609, + [SMALL_STATE(1418)] = 50630, + [SMALL_STATE(1419)] = 50655, + [SMALL_STATE(1420)] = 50678, + [SMALL_STATE(1421)] = 50703, + [SMALL_STATE(1422)] = 50728, + [SMALL_STATE(1423)] = 50749, + [SMALL_STATE(1424)] = 50774, + [SMALL_STATE(1425)] = 50797, + [SMALL_STATE(1426)] = 50829, + [SMALL_STATE(1427)] = 50849, + [SMALL_STATE(1428)] = 50869, + [SMALL_STATE(1429)] = 50893, + [SMALL_STATE(1430)] = 50925, + [SMALL_STATE(1431)] = 50945, + [SMALL_STATE(1432)] = 50965, + [SMALL_STATE(1433)] = 50997, + [SMALL_STATE(1434)] = 51017, + [SMALL_STATE(1435)] = 51049, + [SMALL_STATE(1436)] = 51069, + [SMALL_STATE(1437)] = 51089, + [SMALL_STATE(1438)] = 51109, + [SMALL_STATE(1439)] = 51129, + [SMALL_STATE(1440)] = 51149, + [SMALL_STATE(1441)] = 51175, + [SMALL_STATE(1442)] = 51195, + [SMALL_STATE(1443)] = 51215, + [SMALL_STATE(1444)] = 51235, + [SMALL_STATE(1445)] = 51255, + [SMALL_STATE(1446)] = 51275, + [SMALL_STATE(1447)] = 51295, + [SMALL_STATE(1448)] = 51319, + [SMALL_STATE(1449)] = 51339, + [SMALL_STATE(1450)] = 51359, + [SMALL_STATE(1451)] = 51379, + [SMALL_STATE(1452)] = 51411, + [SMALL_STATE(1453)] = 51431, + [SMALL_STATE(1454)] = 51451, + [SMALL_STATE(1455)] = 51471, + [SMALL_STATE(1456)] = 51491, + [SMALL_STATE(1457)] = 51511, + [SMALL_STATE(1458)] = 51531, + [SMALL_STATE(1459)] = 51551, + [SMALL_STATE(1460)] = 51571, + [SMALL_STATE(1461)] = 51591, + [SMALL_STATE(1462)] = 51615, + [SMALL_STATE(1463)] = 51635, + [SMALL_STATE(1464)] = 51659, + [SMALL_STATE(1465)] = 51679, + [SMALL_STATE(1466)] = 51711, + [SMALL_STATE(1467)] = 51743, + [SMALL_STATE(1468)] = 51763, + [SMALL_STATE(1469)] = 51795, + [SMALL_STATE(1470)] = 51821, + [SMALL_STATE(1471)] = 51844, + [SMALL_STATE(1472)] = 51869, + [SMALL_STATE(1473)] = 51896, + [SMALL_STATE(1474)] = 51929, + [SMALL_STATE(1475)] = 51962, + [SMALL_STATE(1476)] = 51991, + [SMALL_STATE(1477)] = 52014, + [SMALL_STATE(1478)] = 52047, + [SMALL_STATE(1479)] = 52080, + [SMALL_STATE(1480)] = 52111, + [SMALL_STATE(1481)] = 52134, + [SMALL_STATE(1482)] = 52156, + [SMALL_STATE(1483)] = 52186, + [SMALL_STATE(1484)] = 52212, + [SMALL_STATE(1485)] = 52244, + [SMALL_STATE(1486)] = 52276, + [SMALL_STATE(1487)] = 52306, + [SMALL_STATE(1488)] = 52332, + [SMALL_STATE(1489)] = 52358, + [SMALL_STATE(1490)] = 52388, + [SMALL_STATE(1491)] = 52418, + [SMALL_STATE(1492)] = 52448, + [SMALL_STATE(1493)] = 52478, + [SMALL_STATE(1494)] = 52504, + [SMALL_STATE(1495)] = 52530, + [SMALL_STATE(1496)] = 52560, + [SMALL_STATE(1497)] = 52586, + [SMALL_STATE(1498)] = 52616, + [SMALL_STATE(1499)] = 52638, + [SMALL_STATE(1500)] = 52668, + [SMALL_STATE(1501)] = 52694, + [SMALL_STATE(1502)] = 52724, + [SMALL_STATE(1503)] = 52754, + [SMALL_STATE(1504)] = 52784, + [SMALL_STATE(1505)] = 52814, + [SMALL_STATE(1506)] = 52844, + [SMALL_STATE(1507)] = 52874, + [SMALL_STATE(1508)] = 52906, + [SMALL_STATE(1509)] = 52936, + [SMALL_STATE(1510)] = 52966, + [SMALL_STATE(1511)] = 52992, + [SMALL_STATE(1512)] = 53022, + [SMALL_STATE(1513)] = 53052, + [SMALL_STATE(1514)] = 53074, + [SMALL_STATE(1515)] = 53096, + [SMALL_STATE(1516)] = 53128, + [SMALL_STATE(1517)] = 53158, + [SMALL_STATE(1518)] = 53188, + [SMALL_STATE(1519)] = 53210, + [SMALL_STATE(1520)] = 53236, + [SMALL_STATE(1521)] = 53258, + [SMALL_STATE(1522)] = 53284, + [SMALL_STATE(1523)] = 53310, + [SMALL_STATE(1524)] = 53329, + [SMALL_STATE(1525)] = 53356, + [SMALL_STATE(1526)] = 53375, + [SMALL_STATE(1527)] = 53402, + [SMALL_STATE(1528)] = 53421, + [SMALL_STATE(1529)] = 53440, + [SMALL_STATE(1530)] = 53469, + [SMALL_STATE(1531)] = 53496, + [SMALL_STATE(1532)] = 53519, + [SMALL_STATE(1533)] = 53548, + [SMALL_STATE(1534)] = 53575, + [SMALL_STATE(1535)] = 53594, + [SMALL_STATE(1536)] = 53621, + [SMALL_STATE(1537)] = 53648, + [SMALL_STATE(1538)] = 53677, + [SMALL_STATE(1539)] = 53704, + [SMALL_STATE(1540)] = 53729, + [SMALL_STATE(1541)] = 53756, + [SMALL_STATE(1542)] = 53775, + [SMALL_STATE(1543)] = 53802, + [SMALL_STATE(1544)] = 53817, + [SMALL_STATE(1545)] = 53846, + [SMALL_STATE(1546)] = 53869, + [SMALL_STATE(1547)] = 53892, + [SMALL_STATE(1548)] = 53911, + [SMALL_STATE(1549)] = 53932, + [SMALL_STATE(1550)] = 53955, + [SMALL_STATE(1551)] = 53974, + [SMALL_STATE(1552)] = 53995, + [SMALL_STATE(1553)] = 54022, + [SMALL_STATE(1554)] = 54051, + [SMALL_STATE(1555)] = 54078, + [SMALL_STATE(1556)] = 54105, + [SMALL_STATE(1557)] = 54132, + [SMALL_STATE(1558)] = 54151, + [SMALL_STATE(1559)] = 54180, + [SMALL_STATE(1560)] = 54199, + [SMALL_STATE(1561)] = 54218, + [SMALL_STATE(1562)] = 54245, + [SMALL_STATE(1563)] = 54272, + [SMALL_STATE(1564)] = 54286, + [SMALL_STATE(1565)] = 54312, + [SMALL_STATE(1566)] = 54338, + [SMALL_STATE(1567)] = 54364, + [SMALL_STATE(1568)] = 54390, + [SMALL_STATE(1569)] = 54406, + [SMALL_STATE(1570)] = 54432, + [SMALL_STATE(1571)] = 54448, + [SMALL_STATE(1572)] = 54474, + [SMALL_STATE(1573)] = 54500, + [SMALL_STATE(1574)] = 54526, + [SMALL_STATE(1575)] = 54550, + [SMALL_STATE(1576)] = 54576, + [SMALL_STATE(1577)] = 54590, + [SMALL_STATE(1578)] = 54616, + [SMALL_STATE(1579)] = 54632, + [SMALL_STATE(1580)] = 54656, + [SMALL_STATE(1581)] = 54682, + [SMALL_STATE(1582)] = 54708, + [SMALL_STATE(1583)] = 54734, + [SMALL_STATE(1584)] = 54756, + [SMALL_STATE(1585)] = 54770, + [SMALL_STATE(1586)] = 54786, + [SMALL_STATE(1587)] = 54812, + [SMALL_STATE(1588)] = 54836, + [SMALL_STATE(1589)] = 54862, + [SMALL_STATE(1590)] = 54888, + [SMALL_STATE(1591)] = 54902, + [SMALL_STATE(1592)] = 54926, + [SMALL_STATE(1593)] = 54940, + [SMALL_STATE(1594)] = 54954, + [SMALL_STATE(1595)] = 54970, + [SMALL_STATE(1596)] = 54986, + [SMALL_STATE(1597)] = 55012, + [SMALL_STATE(1598)] = 55034, + [SMALL_STATE(1599)] = 55060, + [SMALL_STATE(1600)] = 55086, + [SMALL_STATE(1601)] = 55102, + [SMALL_STATE(1602)] = 55128, + [SMALL_STATE(1603)] = 55154, + [SMALL_STATE(1604)] = 55170, + [SMALL_STATE(1605)] = 55196, + [SMALL_STATE(1606)] = 55220, + [SMALL_STATE(1607)] = 55246, + [SMALL_STATE(1608)] = 55260, + [SMALL_STATE(1609)] = 55286, + [SMALL_STATE(1610)] = 55309, + [SMALL_STATE(1611)] = 55332, + [SMALL_STATE(1612)] = 55355, + [SMALL_STATE(1613)] = 55378, + [SMALL_STATE(1614)] = 55401, + [SMALL_STATE(1615)] = 55424, + [SMALL_STATE(1616)] = 55447, + [SMALL_STATE(1617)] = 55466, + [SMALL_STATE(1618)] = 55483, + [SMALL_STATE(1619)] = 55506, + [SMALL_STATE(1620)] = 55529, + [SMALL_STATE(1621)] = 55546, + [SMALL_STATE(1622)] = 55569, + [SMALL_STATE(1623)] = 55592, + [SMALL_STATE(1624)] = 55613, + [SMALL_STATE(1625)] = 55636, + [SMALL_STATE(1626)] = 55653, + [SMALL_STATE(1627)] = 55676, + [SMALL_STATE(1628)] = 55699, + [SMALL_STATE(1629)] = 55716, + [SMALL_STATE(1630)] = 55733, + [SMALL_STATE(1631)] = 55756, + [SMALL_STATE(1632)] = 55779, + [SMALL_STATE(1633)] = 55802, + [SMALL_STATE(1634)] = 55819, + [SMALL_STATE(1635)] = 55842, + [SMALL_STATE(1636)] = 55865, + [SMALL_STATE(1637)] = 55888, + [SMALL_STATE(1638)] = 55905, + [SMALL_STATE(1639)] = 55926, + [SMALL_STATE(1640)] = 55949, + [SMALL_STATE(1641)] = 55970, + [SMALL_STATE(1642)] = 55993, + [SMALL_STATE(1643)] = 56010, + [SMALL_STATE(1644)] = 56031, + [SMALL_STATE(1645)] = 56054, + [SMALL_STATE(1646)] = 56075, + [SMALL_STATE(1647)] = 56094, + [SMALL_STATE(1648)] = 56117, + [SMALL_STATE(1649)] = 56140, + [SMALL_STATE(1650)] = 56163, + [SMALL_STATE(1651)] = 56186, + [SMALL_STATE(1652)] = 56209, + [SMALL_STATE(1653)] = 56232, + [SMALL_STATE(1654)] = 56255, + [SMALL_STATE(1655)] = 56278, + [SMALL_STATE(1656)] = 56301, + [SMALL_STATE(1657)] = 56318, + [SMALL_STATE(1658)] = 56335, + [SMALL_STATE(1659)] = 56354, + [SMALL_STATE(1660)] = 56371, + [SMALL_STATE(1661)] = 56394, + [SMALL_STATE(1662)] = 56411, + [SMALL_STATE(1663)] = 56434, + [SMALL_STATE(1664)] = 56457, + [SMALL_STATE(1665)] = 56480, + [SMALL_STATE(1666)] = 56503, + [SMALL_STATE(1667)] = 56526, + [SMALL_STATE(1668)] = 56549, + [SMALL_STATE(1669)] = 56564, + [SMALL_STATE(1670)] = 56587, + [SMALL_STATE(1671)] = 56610, + [SMALL_STATE(1672)] = 56633, + [SMALL_STATE(1673)] = 56656, + [SMALL_STATE(1674)] = 56671, + [SMALL_STATE(1675)] = 56694, + [SMALL_STATE(1676)] = 56711, + [SMALL_STATE(1677)] = 56732, + [SMALL_STATE(1678)] = 56755, + [SMALL_STATE(1679)] = 56778, + [SMALL_STATE(1680)] = 56801, + [SMALL_STATE(1681)] = 56824, + [SMALL_STATE(1682)] = 56847, + [SMALL_STATE(1683)] = 56870, + [SMALL_STATE(1684)] = 56893, + [SMALL_STATE(1685)] = 56916, + [SMALL_STATE(1686)] = 56939, + [SMALL_STATE(1687)] = 56962, + [SMALL_STATE(1688)] = 56985, + [SMALL_STATE(1689)] = 57008, + [SMALL_STATE(1690)] = 57031, + [SMALL_STATE(1691)] = 57054, + [SMALL_STATE(1692)] = 57077, + [SMALL_STATE(1693)] = 57100, + [SMALL_STATE(1694)] = 57117, + [SMALL_STATE(1695)] = 57140, + [SMALL_STATE(1696)] = 57163, + [SMALL_STATE(1697)] = 57180, + [SMALL_STATE(1698)] = 57203, + [SMALL_STATE(1699)] = 57226, + [SMALL_STATE(1700)] = 57249, + [SMALL_STATE(1701)] = 57272, + [SMALL_STATE(1702)] = 57295, + [SMALL_STATE(1703)] = 57318, + [SMALL_STATE(1704)] = 57341, + [SMALL_STATE(1705)] = 57364, + [SMALL_STATE(1706)] = 57380, + [SMALL_STATE(1707)] = 57394, + [SMALL_STATE(1708)] = 57414, + [SMALL_STATE(1709)] = 57426, + [SMALL_STATE(1710)] = 57446, + [SMALL_STATE(1711)] = 57460, + [SMALL_STATE(1712)] = 57478, + [SMALL_STATE(1713)] = 57490, + [SMALL_STATE(1714)] = 57502, + [SMALL_STATE(1715)] = 57514, + [SMALL_STATE(1716)] = 57526, + [SMALL_STATE(1717)] = 57546, + [SMALL_STATE(1718)] = 57558, + [SMALL_STATE(1719)] = 57570, + [SMALL_STATE(1720)] = 57586, + [SMALL_STATE(1721)] = 57598, + [SMALL_STATE(1722)] = 57616, + [SMALL_STATE(1723)] = 57628, + [SMALL_STATE(1724)] = 57644, + [SMALL_STATE(1725)] = 57664, + [SMALL_STATE(1726)] = 57676, + [SMALL_STATE(1727)] = 57696, + [SMALL_STATE(1728)] = 57708, + [SMALL_STATE(1729)] = 57726, + [SMALL_STATE(1730)] = 57738, + [SMALL_STATE(1731)] = 57750, + [SMALL_STATE(1732)] = 57768, + [SMALL_STATE(1733)] = 57786, + [SMALL_STATE(1734)] = 57804, + [SMALL_STATE(1735)] = 57820, + [SMALL_STATE(1736)] = 57836, + [SMALL_STATE(1737)] = 57852, + [SMALL_STATE(1738)] = 57868, + [SMALL_STATE(1739)] = 57880, + [SMALL_STATE(1740)] = 57896, + [SMALL_STATE(1741)] = 57914, + [SMALL_STATE(1742)] = 57926, + [SMALL_STATE(1743)] = 57944, + [SMALL_STATE(1744)] = 57956, + [SMALL_STATE(1745)] = 57968, + [SMALL_STATE(1746)] = 57984, + [SMALL_STATE(1747)] = 58000, + [SMALL_STATE(1748)] = 58016, + [SMALL_STATE(1749)] = 58030, + [SMALL_STATE(1750)] = 58046, + [SMALL_STATE(1751)] = 58064, + [SMALL_STATE(1752)] = 58082, + [SMALL_STATE(1753)] = 58094, + [SMALL_STATE(1754)] = 58106, + [SMALL_STATE(1755)] = 58118, + [SMALL_STATE(1756)] = 58138, + [SMALL_STATE(1757)] = 58150, + [SMALL_STATE(1758)] = 58165, + [SMALL_STATE(1759)] = 58180, + [SMALL_STATE(1760)] = 58197, + [SMALL_STATE(1761)] = 58214, + [SMALL_STATE(1762)] = 58231, + [SMALL_STATE(1763)] = 58248, + [SMALL_STATE(1764)] = 58263, + [SMALL_STATE(1765)] = 58280, + [SMALL_STATE(1766)] = 58297, + [SMALL_STATE(1767)] = 58314, + [SMALL_STATE(1768)] = 58331, + [SMALL_STATE(1769)] = 58346, + [SMALL_STATE(1770)] = 58363, + [SMALL_STATE(1771)] = 58380, + [SMALL_STATE(1772)] = 58397, + [SMALL_STATE(1773)] = 58414, + [SMALL_STATE(1774)] = 58429, + [SMALL_STATE(1775)] = 58446, + [SMALL_STATE(1776)] = 58463, + [SMALL_STATE(1777)] = 58480, + [SMALL_STATE(1778)] = 58497, + [SMALL_STATE(1779)] = 58514, + [SMALL_STATE(1780)] = 58527, + [SMALL_STATE(1781)] = 58544, + [SMALL_STATE(1782)] = 58561, + [SMALL_STATE(1783)] = 58578, + [SMALL_STATE(1784)] = 58595, + [SMALL_STATE(1785)] = 58612, + [SMALL_STATE(1786)] = 58629, + [SMALL_STATE(1787)] = 58646, + [SMALL_STATE(1788)] = 58663, + [SMALL_STATE(1789)] = 58680, + [SMALL_STATE(1790)] = 58697, + [SMALL_STATE(1791)] = 58714, + [SMALL_STATE(1792)] = 58731, + [SMALL_STATE(1793)] = 58748, + [SMALL_STATE(1794)] = 58765, + [SMALL_STATE(1795)] = 58778, + [SMALL_STATE(1796)] = 58795, + [SMALL_STATE(1797)] = 58812, + [SMALL_STATE(1798)] = 58829, + [SMALL_STATE(1799)] = 58844, + [SMALL_STATE(1800)] = 58861, + [SMALL_STATE(1801)] = 58878, + [SMALL_STATE(1802)] = 58895, + [SMALL_STATE(1803)] = 58912, + [SMALL_STATE(1804)] = 58927, + [SMALL_STATE(1805)] = 58942, + [SMALL_STATE(1806)] = 58959, + [SMALL_STATE(1807)] = 58974, + [SMALL_STATE(1808)] = 58991, + [SMALL_STATE(1809)] = 59008, + [SMALL_STATE(1810)] = 59021, + [SMALL_STATE(1811)] = 59036, + [SMALL_STATE(1812)] = 59049, + [SMALL_STATE(1813)] = 59066, + [SMALL_STATE(1814)] = 59081, + [SMALL_STATE(1815)] = 59096, + [SMALL_STATE(1816)] = 59111, + [SMALL_STATE(1817)] = 59128, + [SMALL_STATE(1818)] = 59145, + [SMALL_STATE(1819)] = 59162, + [SMALL_STATE(1820)] = 59177, + [SMALL_STATE(1821)] = 59194, + [SMALL_STATE(1822)] = 59211, + [SMALL_STATE(1823)] = 59226, + [SMALL_STATE(1824)] = 59243, + [SMALL_STATE(1825)] = 59260, + [SMALL_STATE(1826)] = 59277, + [SMALL_STATE(1827)] = 59292, + [SMALL_STATE(1828)] = 59309, + [SMALL_STATE(1829)] = 59324, + [SMALL_STATE(1830)] = 59337, + [SMALL_STATE(1831)] = 59350, + [SMALL_STATE(1832)] = 59367, + [SMALL_STATE(1833)] = 59382, + [SMALL_STATE(1834)] = 59397, + [SMALL_STATE(1835)] = 59410, + [SMALL_STATE(1836)] = 59425, + [SMALL_STATE(1837)] = 59440, + [SMALL_STATE(1838)] = 59457, + [SMALL_STATE(1839)] = 59474, + [SMALL_STATE(1840)] = 59489, + [SMALL_STATE(1841)] = 59506, + [SMALL_STATE(1842)] = 59523, + [SMALL_STATE(1843)] = 59540, + [SMALL_STATE(1844)] = 59555, + [SMALL_STATE(1845)] = 59570, + [SMALL_STATE(1846)] = 59585, + [SMALL_STATE(1847)] = 59602, + [SMALL_STATE(1848)] = 59619, + [SMALL_STATE(1849)] = 59636, + [SMALL_STATE(1850)] = 59651, + [SMALL_STATE(1851)] = 59668, + [SMALL_STATE(1852)] = 59681, + [SMALL_STATE(1853)] = 59698, + [SMALL_STATE(1854)] = 59711, + [SMALL_STATE(1855)] = 59726, + [SMALL_STATE(1856)] = 59743, + [SMALL_STATE(1857)] = 59760, + [SMALL_STATE(1858)] = 59775, + [SMALL_STATE(1859)] = 59788, + [SMALL_STATE(1860)] = 59805, + [SMALL_STATE(1861)] = 59820, + [SMALL_STATE(1862)] = 59837, + [SMALL_STATE(1863)] = 59851, + [SMALL_STATE(1864)] = 59865, + [SMALL_STATE(1865)] = 59875, + [SMALL_STATE(1866)] = 59889, + [SMALL_STATE(1867)] = 59903, + [SMALL_STATE(1868)] = 59917, + [SMALL_STATE(1869)] = 59931, + [SMALL_STATE(1870)] = 59945, + [SMALL_STATE(1871)] = 59959, + [SMALL_STATE(1872)] = 59969, + [SMALL_STATE(1873)] = 59983, + [SMALL_STATE(1874)] = 59997, + [SMALL_STATE(1875)] = 60007, + [SMALL_STATE(1876)] = 60021, + [SMALL_STATE(1877)] = 60035, + [SMALL_STATE(1878)] = 60049, + [SMALL_STATE(1879)] = 60063, + [SMALL_STATE(1880)] = 60077, + [SMALL_STATE(1881)] = 60091, + [SMALL_STATE(1882)] = 60105, + [SMALL_STATE(1883)] = 60119, + [SMALL_STATE(1884)] = 60131, + [SMALL_STATE(1885)] = 60143, + [SMALL_STATE(1886)] = 60157, + [SMALL_STATE(1887)] = 60169, + [SMALL_STATE(1888)] = 60183, + [SMALL_STATE(1889)] = 60197, + [SMALL_STATE(1890)] = 60207, + [SMALL_STATE(1891)] = 60219, + [SMALL_STATE(1892)] = 60233, + [SMALL_STATE(1893)] = 60243, + [SMALL_STATE(1894)] = 60253, + [SMALL_STATE(1895)] = 60267, + [SMALL_STATE(1896)] = 60281, + [SMALL_STATE(1897)] = 60295, + [SMALL_STATE(1898)] = 60309, + [SMALL_STATE(1899)] = 60323, + [SMALL_STATE(1900)] = 60333, + [SMALL_STATE(1901)] = 60343, + [SMALL_STATE(1902)] = 60357, + [SMALL_STATE(1903)] = 60371, + [SMALL_STATE(1904)] = 60383, + [SMALL_STATE(1905)] = 60393, + [SMALL_STATE(1906)] = 60403, + [SMALL_STATE(1907)] = 60417, + [SMALL_STATE(1908)] = 60427, + [SMALL_STATE(1909)] = 60441, + [SMALL_STATE(1910)] = 60455, + [SMALL_STATE(1911)] = 60469, + [SMALL_STATE(1912)] = 60483, + [SMALL_STATE(1913)] = 60497, + [SMALL_STATE(1914)] = 60511, + [SMALL_STATE(1915)] = 60521, + [SMALL_STATE(1916)] = 60535, + [SMALL_STATE(1917)] = 60549, + [SMALL_STATE(1918)] = 60561, + [SMALL_STATE(1919)] = 60575, + [SMALL_STATE(1920)] = 60589, + [SMALL_STATE(1921)] = 60603, + [SMALL_STATE(1922)] = 60613, + [SMALL_STATE(1923)] = 60627, + [SMALL_STATE(1924)] = 60641, + [SMALL_STATE(1925)] = 60655, + [SMALL_STATE(1926)] = 60669, + [SMALL_STATE(1927)] = 60683, + [SMALL_STATE(1928)] = 60697, + [SMALL_STATE(1929)] = 60711, + [SMALL_STATE(1930)] = 60723, + [SMALL_STATE(1931)] = 60737, + [SMALL_STATE(1932)] = 60751, + [SMALL_STATE(1933)] = 60765, + [SMALL_STATE(1934)] = 60777, + [SMALL_STATE(1935)] = 60791, + [SMALL_STATE(1936)] = 60805, + [SMALL_STATE(1937)] = 60819, + [SMALL_STATE(1938)] = 60833, + [SMALL_STATE(1939)] = 60847, + [SMALL_STATE(1940)] = 60859, + [SMALL_STATE(1941)] = 60873, + [SMALL_STATE(1942)] = 60887, + [SMALL_STATE(1943)] = 60901, + [SMALL_STATE(1944)] = 60915, + [SMALL_STATE(1945)] = 60929, + [SMALL_STATE(1946)] = 60941, + [SMALL_STATE(1947)] = 60955, + [SMALL_STATE(1948)] = 60969, + [SMALL_STATE(1949)] = 60983, + [SMALL_STATE(1950)] = 60995, + [SMALL_STATE(1951)] = 61009, + [SMALL_STATE(1952)] = 61023, + [SMALL_STATE(1953)] = 61037, + [SMALL_STATE(1954)] = 61049, + [SMALL_STATE(1955)] = 61063, + [SMALL_STATE(1956)] = 61077, + [SMALL_STATE(1957)] = 61091, + [SMALL_STATE(1958)] = 61105, + [SMALL_STATE(1959)] = 61119, + [SMALL_STATE(1960)] = 61133, + [SMALL_STATE(1961)] = 61143, + [SMALL_STATE(1962)] = 61157, + [SMALL_STATE(1963)] = 61171, + [SMALL_STATE(1964)] = 61181, + [SMALL_STATE(1965)] = 61195, + [SMALL_STATE(1966)] = 61209, + [SMALL_STATE(1967)] = 61219, + [SMALL_STATE(1968)] = 61233, + [SMALL_STATE(1969)] = 61247, + [SMALL_STATE(1970)] = 61259, + [SMALL_STATE(1971)] = 61273, + [SMALL_STATE(1972)] = 61287, + [SMALL_STATE(1973)] = 61301, + [SMALL_STATE(1974)] = 61313, + [SMALL_STATE(1975)] = 61325, + [SMALL_STATE(1976)] = 61339, + [SMALL_STATE(1977)] = 61349, + [SMALL_STATE(1978)] = 61363, + [SMALL_STATE(1979)] = 61373, + [SMALL_STATE(1980)] = 61385, + [SMALL_STATE(1981)] = 61395, + [SMALL_STATE(1982)] = 61405, + [SMALL_STATE(1983)] = 61419, + [SMALL_STATE(1984)] = 61433, + [SMALL_STATE(1985)] = 61447, + [SMALL_STATE(1986)] = 61459, + [SMALL_STATE(1987)] = 61471, + [SMALL_STATE(1988)] = 61485, + [SMALL_STATE(1989)] = 61497, + [SMALL_STATE(1990)] = 61511, + [SMALL_STATE(1991)] = 61525, + [SMALL_STATE(1992)] = 61539, + [SMALL_STATE(1993)] = 61553, + [SMALL_STATE(1994)] = 61565, + [SMALL_STATE(1995)] = 61577, + [SMALL_STATE(1996)] = 61587, + [SMALL_STATE(1997)] = 61597, + [SMALL_STATE(1998)] = 61611, + [SMALL_STATE(1999)] = 61625, + [SMALL_STATE(2000)] = 61639, + [SMALL_STATE(2001)] = 61653, + [SMALL_STATE(2002)] = 61667, + [SMALL_STATE(2003)] = 61681, + [SMALL_STATE(2004)] = 61695, + [SMALL_STATE(2005)] = 61709, + [SMALL_STATE(2006)] = 61723, + [SMALL_STATE(2007)] = 61737, + [SMALL_STATE(2008)] = 61747, + [SMALL_STATE(2009)] = 61761, + [SMALL_STATE(2010)] = 61775, + [SMALL_STATE(2011)] = 61789, + [SMALL_STATE(2012)] = 61803, + [SMALL_STATE(2013)] = 61817, + [SMALL_STATE(2014)] = 61829, + [SMALL_STATE(2015)] = 61843, + [SMALL_STATE(2016)] = 61857, + [SMALL_STATE(2017)] = 61869, + [SMALL_STATE(2018)] = 61883, + [SMALL_STATE(2019)] = 61897, + [SMALL_STATE(2020)] = 61911, + [SMALL_STATE(2021)] = 61925, + [SMALL_STATE(2022)] = 61939, + [SMALL_STATE(2023)] = 61953, + [SMALL_STATE(2024)] = 61965, + [SMALL_STATE(2025)] = 61979, + [SMALL_STATE(2026)] = 61993, + [SMALL_STATE(2027)] = 62007, + [SMALL_STATE(2028)] = 62017, + [SMALL_STATE(2029)] = 62031, + [SMALL_STATE(2030)] = 62045, + [SMALL_STATE(2031)] = 62059, + [SMALL_STATE(2032)] = 62073, + [SMALL_STATE(2033)] = 62087, + [SMALL_STATE(2034)] = 62101, + [SMALL_STATE(2035)] = 62115, + [SMALL_STATE(2036)] = 62127, + [SMALL_STATE(2037)] = 62141, + [SMALL_STATE(2038)] = 62151, + [SMALL_STATE(2039)] = 62165, + [SMALL_STATE(2040)] = 62179, + [SMALL_STATE(2041)] = 62193, + [SMALL_STATE(2042)] = 62207, + [SMALL_STATE(2043)] = 62221, + [SMALL_STATE(2044)] = 62233, + [SMALL_STATE(2045)] = 62247, + [SMALL_STATE(2046)] = 62261, + [SMALL_STATE(2047)] = 62275, + [SMALL_STATE(2048)] = 62289, + [SMALL_STATE(2049)] = 62303, + [SMALL_STATE(2050)] = 62317, + [SMALL_STATE(2051)] = 62331, + [SMALL_STATE(2052)] = 62345, + [SMALL_STATE(2053)] = 62357, + [SMALL_STATE(2054)] = 62371, + [SMALL_STATE(2055)] = 62385, + [SMALL_STATE(2056)] = 62399, + [SMALL_STATE(2057)] = 62413, + [SMALL_STATE(2058)] = 62427, + [SMALL_STATE(2059)] = 62439, + [SMALL_STATE(2060)] = 62453, + [SMALL_STATE(2061)] = 62465, + [SMALL_STATE(2062)] = 62479, + [SMALL_STATE(2063)] = 62493, + [SMALL_STATE(2064)] = 62507, + [SMALL_STATE(2065)] = 62521, + [SMALL_STATE(2066)] = 62535, + [SMALL_STATE(2067)] = 62549, + [SMALL_STATE(2068)] = 62563, + [SMALL_STATE(2069)] = 62577, + [SMALL_STATE(2070)] = 62591, + [SMALL_STATE(2071)] = 62605, + [SMALL_STATE(2072)] = 62619, + [SMALL_STATE(2073)] = 62633, + [SMALL_STATE(2074)] = 62647, + [SMALL_STATE(2075)] = 62661, + [SMALL_STATE(2076)] = 62673, + [SMALL_STATE(2077)] = 62687, + [SMALL_STATE(2078)] = 62701, + [SMALL_STATE(2079)] = 62713, + [SMALL_STATE(2080)] = 62727, + [SMALL_STATE(2081)] = 62739, + [SMALL_STATE(2082)] = 62753, + [SMALL_STATE(2083)] = 62767, + [SMALL_STATE(2084)] = 62779, + [SMALL_STATE(2085)] = 62793, + [SMALL_STATE(2086)] = 62807, + [SMALL_STATE(2087)] = 62821, + [SMALL_STATE(2088)] = 62835, + [SMALL_STATE(2089)] = 62849, + [SMALL_STATE(2090)] = 62863, + [SMALL_STATE(2091)] = 62875, + [SMALL_STATE(2092)] = 62885, + [SMALL_STATE(2093)] = 62899, + [SMALL_STATE(2094)] = 62913, + [SMALL_STATE(2095)] = 62923, + [SMALL_STATE(2096)] = 62937, + [SMALL_STATE(2097)] = 62951, + [SMALL_STATE(2098)] = 62965, + [SMALL_STATE(2099)] = 62975, + [SMALL_STATE(2100)] = 62989, + [SMALL_STATE(2101)] = 62999, + [SMALL_STATE(2102)] = 63013, + [SMALL_STATE(2103)] = 63027, + [SMALL_STATE(2104)] = 63041, + [SMALL_STATE(2105)] = 63055, + [SMALL_STATE(2106)] = 63069, + [SMALL_STATE(2107)] = 63083, + [SMALL_STATE(2108)] = 63097, + [SMALL_STATE(2109)] = 63111, + [SMALL_STATE(2110)] = 63125, + [SMALL_STATE(2111)] = 63137, + [SMALL_STATE(2112)] = 63151, + [SMALL_STATE(2113)] = 63165, + [SMALL_STATE(2114)] = 63179, + [SMALL_STATE(2115)] = 63193, + [SMALL_STATE(2116)] = 63207, + [SMALL_STATE(2117)] = 63221, + [SMALL_STATE(2118)] = 63235, + [SMALL_STATE(2119)] = 63249, + [SMALL_STATE(2120)] = 63263, + [SMALL_STATE(2121)] = 63277, + [SMALL_STATE(2122)] = 63291, + [SMALL_STATE(2123)] = 63305, + [SMALL_STATE(2124)] = 63319, + [SMALL_STATE(2125)] = 63333, + [SMALL_STATE(2126)] = 63347, + [SMALL_STATE(2127)] = 63361, + [SMALL_STATE(2128)] = 63375, + [SMALL_STATE(2129)] = 63389, + [SMALL_STATE(2130)] = 63403, + [SMALL_STATE(2131)] = 63413, + [SMALL_STATE(2132)] = 63427, + [SMALL_STATE(2133)] = 63441, + [SMALL_STATE(2134)] = 63455, + [SMALL_STATE(2135)] = 63466, + [SMALL_STATE(2136)] = 63475, + [SMALL_STATE(2137)] = 63486, + [SMALL_STATE(2138)] = 63497, + [SMALL_STATE(2139)] = 63508, + [SMALL_STATE(2140)] = 63517, + [SMALL_STATE(2141)] = 63528, + [SMALL_STATE(2142)] = 63537, + [SMALL_STATE(2143)] = 63548, + [SMALL_STATE(2144)] = 63559, + [SMALL_STATE(2145)] = 63570, + [SMALL_STATE(2146)] = 63581, + [SMALL_STATE(2147)] = 63592, + [SMALL_STATE(2148)] = 63603, + [SMALL_STATE(2149)] = 63614, + [SMALL_STATE(2150)] = 63625, + [SMALL_STATE(2151)] = 63636, + [SMALL_STATE(2152)] = 63647, + [SMALL_STATE(2153)] = 63658, + [SMALL_STATE(2154)] = 63669, + [SMALL_STATE(2155)] = 63680, + [SMALL_STATE(2156)] = 63691, + [SMALL_STATE(2157)] = 63702, + [SMALL_STATE(2158)] = 63713, + [SMALL_STATE(2159)] = 63724, + [SMALL_STATE(2160)] = 63733, + [SMALL_STATE(2161)] = 63742, + [SMALL_STATE(2162)] = 63753, + [SMALL_STATE(2163)] = 63764, + [SMALL_STATE(2164)] = 63775, + [SMALL_STATE(2165)] = 63786, + [SMALL_STATE(2166)] = 63797, + [SMALL_STATE(2167)] = 63808, + [SMALL_STATE(2168)] = 63819, + [SMALL_STATE(2169)] = 63830, + [SMALL_STATE(2170)] = 63841, + [SMALL_STATE(2171)] = 63852, + [SMALL_STATE(2172)] = 63863, + [SMALL_STATE(2173)] = 63872, + [SMALL_STATE(2174)] = 63883, + [SMALL_STATE(2175)] = 63894, + [SMALL_STATE(2176)] = 63905, + [SMALL_STATE(2177)] = 63916, + [SMALL_STATE(2178)] = 63927, + [SMALL_STATE(2179)] = 63936, + [SMALL_STATE(2180)] = 63947, + [SMALL_STATE(2181)] = 63958, + [SMALL_STATE(2182)] = 63969, + [SMALL_STATE(2183)] = 63978, + [SMALL_STATE(2184)] = 63989, + [SMALL_STATE(2185)] = 64000, + [SMALL_STATE(2186)] = 64011, + [SMALL_STATE(2187)] = 64022, + [SMALL_STATE(2188)] = 64031, + [SMALL_STATE(2189)] = 64042, + [SMALL_STATE(2190)] = 64053, + [SMALL_STATE(2191)] = 64062, + [SMALL_STATE(2192)] = 64073, + [SMALL_STATE(2193)] = 64082, + [SMALL_STATE(2194)] = 64093, + [SMALL_STATE(2195)] = 64104, + [SMALL_STATE(2196)] = 64115, + [SMALL_STATE(2197)] = 64124, + [SMALL_STATE(2198)] = 64135, + [SMALL_STATE(2199)] = 64146, + [SMALL_STATE(2200)] = 64157, + [SMALL_STATE(2201)] = 64168, + [SMALL_STATE(2202)] = 64179, + [SMALL_STATE(2203)] = 64190, + [SMALL_STATE(2204)] = 64201, + [SMALL_STATE(2205)] = 64212, + [SMALL_STATE(2206)] = 64221, + [SMALL_STATE(2207)] = 64232, + [SMALL_STATE(2208)] = 64243, + [SMALL_STATE(2209)] = 64254, + [SMALL_STATE(2210)] = 64265, + [SMALL_STATE(2211)] = 64276, + [SMALL_STATE(2212)] = 64287, + [SMALL_STATE(2213)] = 64296, + [SMALL_STATE(2214)] = 64307, + [SMALL_STATE(2215)] = 64318, + [SMALL_STATE(2216)] = 64327, + [SMALL_STATE(2217)] = 64338, + [SMALL_STATE(2218)] = 64349, + [SMALL_STATE(2219)] = 64360, + [SMALL_STATE(2220)] = 64371, + [SMALL_STATE(2221)] = 64382, + [SMALL_STATE(2222)] = 64393, + [SMALL_STATE(2223)] = 64404, + [SMALL_STATE(2224)] = 64413, + [SMALL_STATE(2225)] = 64424, + [SMALL_STATE(2226)] = 64435, + [SMALL_STATE(2227)] = 64446, + [SMALL_STATE(2228)] = 64457, + [SMALL_STATE(2229)] = 64468, + [SMALL_STATE(2230)] = 64477, + [SMALL_STATE(2231)] = 64488, + [SMALL_STATE(2232)] = 64499, + [SMALL_STATE(2233)] = 64508, + [SMALL_STATE(2234)] = 64519, + [SMALL_STATE(2235)] = 64530, + [SMALL_STATE(2236)] = 64541, + [SMALL_STATE(2237)] = 64552, + [SMALL_STATE(2238)] = 64563, + [SMALL_STATE(2239)] = 64574, + [SMALL_STATE(2240)] = 64585, + [SMALL_STATE(2241)] = 64596, + [SMALL_STATE(2242)] = 64607, + [SMALL_STATE(2243)] = 64618, + [SMALL_STATE(2244)] = 64629, + [SMALL_STATE(2245)] = 64640, + [SMALL_STATE(2246)] = 64651, + [SMALL_STATE(2247)] = 64662, + [SMALL_STATE(2248)] = 64673, + [SMALL_STATE(2249)] = 64684, + [SMALL_STATE(2250)] = 64695, + [SMALL_STATE(2251)] = 64704, + [SMALL_STATE(2252)] = 64715, + [SMALL_STATE(2253)] = 64726, + [SMALL_STATE(2254)] = 64737, + [SMALL_STATE(2255)] = 64748, + [SMALL_STATE(2256)] = 64759, + [SMALL_STATE(2257)] = 64770, + [SMALL_STATE(2258)] = 64781, + [SMALL_STATE(2259)] = 64792, + [SMALL_STATE(2260)] = 64803, + [SMALL_STATE(2261)] = 64814, + [SMALL_STATE(2262)] = 64825, + [SMALL_STATE(2263)] = 64836, + [SMALL_STATE(2264)] = 64847, + [SMALL_STATE(2265)] = 64858, + [SMALL_STATE(2266)] = 64869, + [SMALL_STATE(2267)] = 64878, + [SMALL_STATE(2268)] = 64889, + [SMALL_STATE(2269)] = 64900, + [SMALL_STATE(2270)] = 64911, + [SMALL_STATE(2271)] = 64922, + [SMALL_STATE(2272)] = 64933, + [SMALL_STATE(2273)] = 64942, + [SMALL_STATE(2274)] = 64953, + [SMALL_STATE(2275)] = 64964, + [SMALL_STATE(2276)] = 64975, + [SMALL_STATE(2277)] = 64986, + [SMALL_STATE(2278)] = 64997, + [SMALL_STATE(2279)] = 65008, + [SMALL_STATE(2280)] = 65019, + [SMALL_STATE(2281)] = 65030, + [SMALL_STATE(2282)] = 65039, + [SMALL_STATE(2283)] = 65050, + [SMALL_STATE(2284)] = 65061, + [SMALL_STATE(2285)] = 65072, + [SMALL_STATE(2286)] = 65083, + [SMALL_STATE(2287)] = 65094, + [SMALL_STATE(2288)] = 65103, + [SMALL_STATE(2289)] = 65114, + [SMALL_STATE(2290)] = 65123, + [SMALL_STATE(2291)] = 65134, + [SMALL_STATE(2292)] = 65143, + [SMALL_STATE(2293)] = 65152, + [SMALL_STATE(2294)] = 65163, + [SMALL_STATE(2295)] = 65174, + [SMALL_STATE(2296)] = 65185, + [SMALL_STATE(2297)] = 65196, + [SMALL_STATE(2298)] = 65207, + [SMALL_STATE(2299)] = 65218, + [SMALL_STATE(2300)] = 65229, + [SMALL_STATE(2301)] = 65240, + [SMALL_STATE(2302)] = 65251, + [SMALL_STATE(2303)] = 65262, + [SMALL_STATE(2304)] = 65273, + [SMALL_STATE(2305)] = 65284, + [SMALL_STATE(2306)] = 65293, + [SMALL_STATE(2307)] = 65304, + [SMALL_STATE(2308)] = 65315, + [SMALL_STATE(2309)] = 65326, + [SMALL_STATE(2310)] = 65337, + [SMALL_STATE(2311)] = 65348, + [SMALL_STATE(2312)] = 65359, + [SMALL_STATE(2313)] = 65370, + [SMALL_STATE(2314)] = 65381, + [SMALL_STATE(2315)] = 65392, + [SMALL_STATE(2316)] = 65403, + [SMALL_STATE(2317)] = 65414, + [SMALL_STATE(2318)] = 65425, + [SMALL_STATE(2319)] = 65434, + [SMALL_STATE(2320)] = 65445, + [SMALL_STATE(2321)] = 65454, + [SMALL_STATE(2322)] = 65465, + [SMALL_STATE(2323)] = 65474, + [SMALL_STATE(2324)] = 65485, + [SMALL_STATE(2325)] = 65493, + [SMALL_STATE(2326)] = 65501, + [SMALL_STATE(2327)] = 65509, + [SMALL_STATE(2328)] = 65517, + [SMALL_STATE(2329)] = 65525, + [SMALL_STATE(2330)] = 65533, + [SMALL_STATE(2331)] = 65541, + [SMALL_STATE(2332)] = 65549, + [SMALL_STATE(2333)] = 65557, + [SMALL_STATE(2334)] = 65565, + [SMALL_STATE(2335)] = 65573, + [SMALL_STATE(2336)] = 65581, + [SMALL_STATE(2337)] = 65589, + [SMALL_STATE(2338)] = 65597, + [SMALL_STATE(2339)] = 65605, + [SMALL_STATE(2340)] = 65613, + [SMALL_STATE(2341)] = 65621, + [SMALL_STATE(2342)] = 65629, + [SMALL_STATE(2343)] = 65637, + [SMALL_STATE(2344)] = 65645, + [SMALL_STATE(2345)] = 65653, + [SMALL_STATE(2346)] = 65661, + [SMALL_STATE(2347)] = 65669, + [SMALL_STATE(2348)] = 65677, + [SMALL_STATE(2349)] = 65685, + [SMALL_STATE(2350)] = 65693, + [SMALL_STATE(2351)] = 65701, + [SMALL_STATE(2352)] = 65709, + [SMALL_STATE(2353)] = 65717, + [SMALL_STATE(2354)] = 65725, + [SMALL_STATE(2355)] = 65733, + [SMALL_STATE(2356)] = 65741, + [SMALL_STATE(2357)] = 65749, + [SMALL_STATE(2358)] = 65757, + [SMALL_STATE(2359)] = 65765, + [SMALL_STATE(2360)] = 65773, + [SMALL_STATE(2361)] = 65781, + [SMALL_STATE(2362)] = 65789, + [SMALL_STATE(2363)] = 65797, + [SMALL_STATE(2364)] = 65805, + [SMALL_STATE(2365)] = 65813, + [SMALL_STATE(2366)] = 65821, + [SMALL_STATE(2367)] = 65829, + [SMALL_STATE(2368)] = 65837, + [SMALL_STATE(2369)] = 65845, + [SMALL_STATE(2370)] = 65853, + [SMALL_STATE(2371)] = 65861, + [SMALL_STATE(2372)] = 65869, + [SMALL_STATE(2373)] = 65877, + [SMALL_STATE(2374)] = 65885, + [SMALL_STATE(2375)] = 65893, + [SMALL_STATE(2376)] = 65901, + [SMALL_STATE(2377)] = 65909, + [SMALL_STATE(2378)] = 65917, + [SMALL_STATE(2379)] = 65925, + [SMALL_STATE(2380)] = 65933, + [SMALL_STATE(2381)] = 65941, + [SMALL_STATE(2382)] = 65949, + [SMALL_STATE(2383)] = 65957, + [SMALL_STATE(2384)] = 65965, + [SMALL_STATE(2385)] = 65973, + [SMALL_STATE(2386)] = 65981, + [SMALL_STATE(2387)] = 65989, + [SMALL_STATE(2388)] = 65997, + [SMALL_STATE(2389)] = 66005, + [SMALL_STATE(2390)] = 66013, + [SMALL_STATE(2391)] = 66021, + [SMALL_STATE(2392)] = 66029, + [SMALL_STATE(2393)] = 66037, + [SMALL_STATE(2394)] = 66045, + [SMALL_STATE(2395)] = 66053, + [SMALL_STATE(2396)] = 66061, + [SMALL_STATE(2397)] = 66069, + [SMALL_STATE(2398)] = 66077, + [SMALL_STATE(2399)] = 66085, + [SMALL_STATE(2400)] = 66093, + [SMALL_STATE(2401)] = 66101, + [SMALL_STATE(2402)] = 66109, + [SMALL_STATE(2403)] = 66117, + [SMALL_STATE(2404)] = 66125, + [SMALL_STATE(2405)] = 66133, + [SMALL_STATE(2406)] = 66141, + [SMALL_STATE(2407)] = 66149, + [SMALL_STATE(2408)] = 66157, + [SMALL_STATE(2409)] = 66165, + [SMALL_STATE(2410)] = 66173, + [SMALL_STATE(2411)] = 66181, + [SMALL_STATE(2412)] = 66189, + [SMALL_STATE(2413)] = 66197, + [SMALL_STATE(2414)] = 66205, + [SMALL_STATE(2415)] = 66213, + [SMALL_STATE(2416)] = 66221, + [SMALL_STATE(2417)] = 66229, + [SMALL_STATE(2418)] = 66237, + [SMALL_STATE(2419)] = 66245, + [SMALL_STATE(2420)] = 66253, + [SMALL_STATE(2421)] = 66261, + [SMALL_STATE(2422)] = 66269, + [SMALL_STATE(2423)] = 66277, + [SMALL_STATE(2424)] = 66285, + [SMALL_STATE(2425)] = 66293, + [SMALL_STATE(2426)] = 66301, + [SMALL_STATE(2427)] = 66309, + [SMALL_STATE(2428)] = 66317, + [SMALL_STATE(2429)] = 66325, + [SMALL_STATE(2430)] = 66333, + [SMALL_STATE(2431)] = 66341, + [SMALL_STATE(2432)] = 66349, + [SMALL_STATE(2433)] = 66357, + [SMALL_STATE(2434)] = 66365, + [SMALL_STATE(2435)] = 66373, + [SMALL_STATE(2436)] = 66381, + [SMALL_STATE(2437)] = 66389, + [SMALL_STATE(2438)] = 66397, + [SMALL_STATE(2439)] = 66405, + [SMALL_STATE(2440)] = 66413, + [SMALL_STATE(2441)] = 66421, + [SMALL_STATE(2442)] = 66429, + [SMALL_STATE(2443)] = 66437, + [SMALL_STATE(2444)] = 66445, + [SMALL_STATE(2445)] = 66453, + [SMALL_STATE(2446)] = 66461, + [SMALL_STATE(2447)] = 66469, + [SMALL_STATE(2448)] = 66477, + [SMALL_STATE(2449)] = 66485, + [SMALL_STATE(2450)] = 66493, + [SMALL_STATE(2451)] = 66501, + [SMALL_STATE(2452)] = 66509, + [SMALL_STATE(2453)] = 66517, + [SMALL_STATE(2454)] = 66525, + [SMALL_STATE(2455)] = 66533, + [SMALL_STATE(2456)] = 66541, + [SMALL_STATE(2457)] = 66549, + [SMALL_STATE(2458)] = 66557, + [SMALL_STATE(2459)] = 66565, + [SMALL_STATE(2460)] = 66573, + [SMALL_STATE(2461)] = 66581, + [SMALL_STATE(2462)] = 66589, + [SMALL_STATE(2463)] = 66597, + [SMALL_STATE(2464)] = 66605, + [SMALL_STATE(2465)] = 66613, + [SMALL_STATE(2466)] = 66621, + [SMALL_STATE(2467)] = 66629, + [SMALL_STATE(2468)] = 66637, + [SMALL_STATE(2469)] = 66645, + [SMALL_STATE(2470)] = 66653, + [SMALL_STATE(2471)] = 66661, + [SMALL_STATE(2472)] = 66669, + [SMALL_STATE(2473)] = 66677, + [SMALL_STATE(2474)] = 66685, + [SMALL_STATE(2475)] = 66693, + [SMALL_STATE(2476)] = 66701, + [SMALL_STATE(2477)] = 66709, + [SMALL_STATE(2478)] = 66717, + [SMALL_STATE(2479)] = 66725, + [SMALL_STATE(2480)] = 66733, + [SMALL_STATE(2481)] = 66741, + [SMALL_STATE(2482)] = 66749, + [SMALL_STATE(2483)] = 66757, + [SMALL_STATE(2484)] = 66765, + [SMALL_STATE(2485)] = 66773, + [SMALL_STATE(2486)] = 66781, + [SMALL_STATE(2487)] = 66789, + [SMALL_STATE(2488)] = 66797, + [SMALL_STATE(2489)] = 66805, + [SMALL_STATE(2490)] = 66813, + [SMALL_STATE(2491)] = 66821, + [SMALL_STATE(2492)] = 66829, + [SMALL_STATE(2493)] = 66837, + [SMALL_STATE(2494)] = 66845, + [SMALL_STATE(2495)] = 66853, + [SMALL_STATE(2496)] = 66861, + [SMALL_STATE(2497)] = 66869, + [SMALL_STATE(2498)] = 66877, + [SMALL_STATE(2499)] = 66885, + [SMALL_STATE(2500)] = 66893, + [SMALL_STATE(2501)] = 66901, + [SMALL_STATE(2502)] = 66909, + [SMALL_STATE(2503)] = 66917, + [SMALL_STATE(2504)] = 66925, + [SMALL_STATE(2505)] = 66933, + [SMALL_STATE(2506)] = 66941, + [SMALL_STATE(2507)] = 66949, + [SMALL_STATE(2508)] = 66957, + [SMALL_STATE(2509)] = 66965, + [SMALL_STATE(2510)] = 66973, + [SMALL_STATE(2511)] = 66981, + [SMALL_STATE(2512)] = 66989, + [SMALL_STATE(2513)] = 66997, + [SMALL_STATE(2514)] = 67005, + [SMALL_STATE(2515)] = 67013, + [SMALL_STATE(2516)] = 67021, + [SMALL_STATE(2517)] = 67029, + [SMALL_STATE(2518)] = 67037, + [SMALL_STATE(2519)] = 67045, + [SMALL_STATE(2520)] = 67053, + [SMALL_STATE(2521)] = 67061, + [SMALL_STATE(2522)] = 67069, + [SMALL_STATE(2523)] = 67077, + [SMALL_STATE(2524)] = 67085, + [SMALL_STATE(2525)] = 67093, + [SMALL_STATE(2526)] = 67101, + [SMALL_STATE(2527)] = 67109, + [SMALL_STATE(2528)] = 67117, + [SMALL_STATE(2529)] = 67125, + [SMALL_STATE(2530)] = 67133, + [SMALL_STATE(2531)] = 67141, + [SMALL_STATE(2532)] = 67149, + [SMALL_STATE(2533)] = 67157, + [SMALL_STATE(2534)] = 67165, + [SMALL_STATE(2535)] = 67173, + [SMALL_STATE(2536)] = 67181, + [SMALL_STATE(2537)] = 67189, + [SMALL_STATE(2538)] = 67197, + [SMALL_STATE(2539)] = 67205, + [SMALL_STATE(2540)] = 67213, + [SMALL_STATE(2541)] = 67221, + [SMALL_STATE(2542)] = 67229, + [SMALL_STATE(2543)] = 67237, + [SMALL_STATE(2544)] = 67245, + [SMALL_STATE(2545)] = 67253, + [SMALL_STATE(2546)] = 67261, + [SMALL_STATE(2547)] = 67269, + [SMALL_STATE(2548)] = 67277, + [SMALL_STATE(2549)] = 67285, + [SMALL_STATE(2550)] = 67293, + [SMALL_STATE(2551)] = 67301, + [SMALL_STATE(2552)] = 67309, + [SMALL_STATE(2553)] = 67317, + [SMALL_STATE(2554)] = 67325, + [SMALL_STATE(2555)] = 67333, + [SMALL_STATE(2556)] = 67341, + [SMALL_STATE(2557)] = 67349, + [SMALL_STATE(2558)] = 67357, + [SMALL_STATE(2559)] = 67365, + [SMALL_STATE(2560)] = 67373, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -127990,2717 +128544,2723 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1153), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(439), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1873), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(37), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), - [124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(35), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(100), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1073), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2485), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1498), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1475), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(776), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(760), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2470), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2196), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(618), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(51), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(625), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(612), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2202), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(137), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2460), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1331), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1904), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2450), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2448), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2444), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1165), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1464), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1296), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(40), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2228), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1453), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(638), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2406), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(90), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(560), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2240), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1079), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1825), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1109), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1060), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2344), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1336), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1060), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1150), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(442), + [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1884), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(43), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3), + [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(33), + [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(130), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1104), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2497), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1518), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1481), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(773), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(763), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2482), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2205), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(621), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(40), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(628), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(589), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2208), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(181), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2472), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1335), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1913), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2462), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2460), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2456), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1162), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1471), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1301), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(36), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2241), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1463), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(631), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2418), + [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(96), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(561), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2262), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1053), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1833), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1048), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1042), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2356), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1345), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1042), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), - [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), + [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), - [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), - [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), - [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), - [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), - [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), - [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), - [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), - [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 58), - [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 58), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 98), - [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 98), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 215), - [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 215), - [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 90), - [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 90), - [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 133), - [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 133), - [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(758), - [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(37), - [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(3), - [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(35), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(100), - [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1073), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2485), - [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1996), - [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), - [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2285), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(776), - [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(778), - [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(616), - [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(48), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2279), - [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(179), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2283), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(47), - [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(638), - [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2406), - [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(90), - [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(24), - [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(560), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2240), - [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1079), - [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1825), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1109), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1060), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2344), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1060), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 19), + [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 19), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 94), + [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 94), + [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 28), + [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 28), + [428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), + [430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), + [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 137), + [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 137), + [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 32), + [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 32), + [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 35), + [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 35), + [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 14), + [446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 14), + [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), + [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 219), + [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 219), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), + [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), + [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), + [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(765), + [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(43), + [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(8), + [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(33), + [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(130), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1104), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2497), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2014), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2297), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(773), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(785), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(613), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(37), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2303), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(179), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(24), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2295), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(45), + [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(631), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2418), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(96), + [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(561), + [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2262), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1053), + [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1833), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1048), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1042), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2356), + [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1042), + [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 102), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 102), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 62), + [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 62), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 154), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 154), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 99), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 99), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2263), - [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(932), - [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1871), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2393), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1551), - [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1557), - [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1546), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2343), - [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2179), - [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(633), - [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(594), - [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2348), - [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1331), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1862), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2349), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2350), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2351), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1937), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1550), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1295), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2178), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1431), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(638), - [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2462), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2358), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1338), - [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2358), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(252), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(499), - [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(496), - [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(494), - [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2519), - [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(582), - [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1811), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(579), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(561), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 162), - [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 162), - [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 230), - [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 230), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 209), - [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 209), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 208), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 208), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 207), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 207), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 123), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 123), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 206), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 206), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 205), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 205), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 220), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 220), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 211), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 211), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 204), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 204), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 172), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 172), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 203), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 203), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 212), - [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 212), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 165), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 165), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 213), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 213), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 199), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 199), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 198), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 198), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 197), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 197), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 158), + [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 158), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 103), + [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 103), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(253), + [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(483), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), + [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(499), + [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(496), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2525), + [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(564), + [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1815), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(565), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(562), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2275), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(926), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1883), + [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2404), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1548), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1600), + [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1534), + [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2355), + [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2178), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(638), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(598), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2360), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1335), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1868), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2361), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2362), + [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2363), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1947), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1560), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1304), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2177), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1447), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(631), + [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2560), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2370), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1342), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2370), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 31), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 31), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 215), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 215), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 214), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 214), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 211), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 211), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 127), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 127), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 210), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 210), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 209), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 209), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 208), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 208), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 176), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 176), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 53), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 53), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 207), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 207), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 206), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 206), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 54), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 54), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 69), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 69), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 52), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 52), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 169), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 169), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 15), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 15), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 183), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 183), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 218), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 218), [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 182), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 182), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 214), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 214), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 194), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 194), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 193), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 193), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 191), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 191), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 147), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 147), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 190), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 190), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 145), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 145), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 187), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 187), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 186), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 186), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 185), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 185), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 185), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 185), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 217), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 217), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 51), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 51), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 70), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 70), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 23), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 23), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 186), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 186), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 71), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 71), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 198), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 198), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 74), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 74), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 197), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 197), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 195), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 195), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 151), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 151), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 149), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 149), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 189), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 189), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 191), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 191), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 141), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 141), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 221), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 221), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 190), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 190), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 189), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 189), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 223), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 223), [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 219), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 219), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 224), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 224), [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 182), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 182), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 198), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 198), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 222), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 222), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 200), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 200), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 180), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 180), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 179), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 179), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 177), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 177), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 176), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 176), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 168), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 168), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 175), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 175), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 168), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 168), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 168), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 168), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 223), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 223), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 156), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 156), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 174), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 174), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 173), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 173), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 172), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 172), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 170), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 170), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 224), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 224), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 225), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 225), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 167), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 167), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 162), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 162), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 161), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 161), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 160), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 160), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 186), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 186), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 5), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 5), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 242), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 242), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 49), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 49), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 15), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 15), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 51), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 51), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 202), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 202), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 52), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 52), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 204), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 204), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 227), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 227), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 184), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 184), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 183), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 183), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 182), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 182), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 181), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 181), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 172), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 172), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 179), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 179), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 172), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 172), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 127), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 127), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 79), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 79), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 172), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 172), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 228), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 228), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 160), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 160), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 178), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 178), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 132), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 132), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 177), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 177), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 176), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 176), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 174), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 174), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 209), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 209), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 173), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 173), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 172), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 172), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 171), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 171), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 170), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 170), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 169), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 169), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 168), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 168), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 122), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 122), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 165), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 165), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 164), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 164), [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 205), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 205), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 156), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 156), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 226), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 226), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 220), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 220), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 227), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 227), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 228), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 228), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 152), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 152), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 151), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 151), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 109), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 109), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 145), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 145), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 143), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 143), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 104), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 104), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 212), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 212), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 230), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 230), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 231), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 231), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 232), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 232), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 224), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 224), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 233), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 233), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 234), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 234), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 235), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 235), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 210), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 210), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 236), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 236), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 237), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 237), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 234), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 234), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 52), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 52), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 25), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 25), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 51), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 51), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 76), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 76), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 52), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 52), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 230), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 230), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 160), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 160), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 224), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 224), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 27), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 27), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 231), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 231), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 232), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 232), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 216), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 216), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 5), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 5), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 29), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 29), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 157), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 157), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 156), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 156), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 155), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 155), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 6), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 6), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 77), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 77), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 113), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 113), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 15), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 15), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 152), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 152), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 151), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 151), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 150), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 150), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 15), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 15), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 108), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 108), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 233), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 233), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 6), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 6), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 142), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 142), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 141), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 141), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 140), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 140), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 15), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 15), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 98), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 98), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 234), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 234), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 235), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 235), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 75), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 75), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 236), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 236), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 228), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 228), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 5), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 5), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 51), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 51), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 52), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 52), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 64), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 64), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 49), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 49), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 237), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 237), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 78), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 78), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 234), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 234), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 216), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 216), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 136), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 136), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 135), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 135), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 241), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 241), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 127), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 127), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 125), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 125), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 127), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 127), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 134), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 134), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 125), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 125), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 79), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 79), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 127), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 127), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 125), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 125), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 133), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 133), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 132), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 132), [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 238), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 238), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 127), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 127), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 126), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 126), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 125), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 125), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 124), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 124), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 64), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 64), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 123), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 123), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 122), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 122), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 97), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 97), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 121), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 121), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 120), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 120), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 119), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 119), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 97), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 97), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 118), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 118), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 97), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 97), [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 52), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 52), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 15), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 15), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 79), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 79), [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), - [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 99), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 99), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 110), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 110), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 107), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 107), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 105), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 105), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), - [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), - [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 96), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 96), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 5), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 5), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 86), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 86), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 103), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 103), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 116), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 116), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 114), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 114), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 49), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 49), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 113), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 113), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 111), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 111), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 69), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 69), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 79), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 79), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 90), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 90), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 100), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 100), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 53), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 53), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 99), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 99), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 40), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 40), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 98), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 98), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 91), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 91), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 79), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 79), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 79), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 79), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 92), + [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 92), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 49), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 49), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 97), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 97), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 5), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 5), [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(483), - [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(505), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 96), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 96), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(485), + [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(507), [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(506), - [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(510), - [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(483), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(595), - [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1800), - [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(608), - [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(485), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(536), + [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(508), + [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(509), + [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(485), + [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(599), + [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1804), + [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(600), + [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(487), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(523), [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(503), - [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(515), - [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2513), - [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(582), - [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1811), - [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(579), - [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(485), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1307), - [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(559), - [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(555), - [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1361), - [2099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2295), - [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1751), - [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2361), - [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(615), - [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(638), - [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2533), - [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1419), - [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(614), - [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(601), - [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1446), - [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2194), - [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1381), - [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1815), - [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1350), - [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2066), - [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2066), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(539), + [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(505), + [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2533), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(564), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1815), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(565), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(487), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1313), + [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(560), + [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(563), + [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1355), + [2099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2310), + [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1757), + [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2376), + [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(619), + [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(631), + [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2544), + [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1457), + [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(591), + [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(618), + [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1427), + [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2212), + [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1375), + [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1814), + [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1360), + [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2078), + [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2078), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 181), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 181), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2361), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 185), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 185), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2376), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 4), [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 108), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 108), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [2778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2502), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), - [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 149), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 149), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 144), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 144), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 142), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 142), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 134), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 134), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 154), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 154), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 154), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 111), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 111), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), - [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 106), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 106), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 103), - [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 103), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 100), - [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 100), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), - [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 99), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 99), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 99), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 192), - [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 192), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 127), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 184), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 183), - [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 124), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 154), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 216), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 171), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 99), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 135), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 99), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 124), - [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 31), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 3, .production_id = 31), - [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [3561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 4), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 21), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 21), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 21), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 21), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), + [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 41), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 41), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 22), + [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 22), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 37), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 37), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 36), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 36), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 22), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 22), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 42), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 37), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 6), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 13), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 38), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 48), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 38), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 47), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 47), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 46), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 46), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 112), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 112), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 73), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 73), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 72), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 72), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 39), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 17), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 17), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 20), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 20), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 26), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 26), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 154), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 154), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 64), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 64), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 9), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 9), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 64), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 64), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 63), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 63), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 158), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 158), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 158), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 130), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 130), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 115), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 115), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 103), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 103), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 103), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 44), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 44), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 65), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 65), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 138), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 138), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 93), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 93), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 110), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 110), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 23), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 23), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 65), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 65), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 146), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 146), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 107), + [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 107), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 104), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 104), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2514), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 148), + [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 148), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 95), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 95), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 153), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 153), + [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 65), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 65), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 196), + [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 196), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 43), + [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 43), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 34), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 11), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 43), + [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 43), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 7), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 7), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 33), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 33), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 45), + [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 45), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 117), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 117), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 33), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 128), + [3209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_let_chain, 1, .production_id = 3), REDUCE(sym__condition, 1, .dynamic_precedence = 1), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 131), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 158), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 220), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [3280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2, .production_id = 60), REDUCE(sym_binary_expression, 3, .production_id = 43), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 188), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 187), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 103), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 175), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 139), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 128), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 33), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2, .production_id = 60), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 3, .production_id = 33), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 103), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 4), REDUCE(sym__pattern, 1), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 36), REDUCE(sym_scoped_type_identifier, 3, .production_id = 37), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 55), + [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 55), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [3582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 41), REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), + [3585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 59), + [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 59), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 56), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 56), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), + [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 57), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 57), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 56), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 56), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 57), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 57), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 56), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 56), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), + [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 57), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 57), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), + [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 57), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 57), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), + [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 56), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 56), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1525), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1533), - [3902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(498), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(481), - [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(488), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(592), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1, .production_id = 1), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), + [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(611), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1551), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1547), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(501), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(490), + [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(493), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1, .production_id = 1), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 5), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 50), [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [4143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 103), - [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 195), - [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 195), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 103), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 157), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 221), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), - [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 157), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 221), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [4319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1364), - [4322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(188), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 1), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 69), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 56), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 56), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 199), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 65), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 64), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 23), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 23), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 199), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 161), + [4275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 225), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 64), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 107), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1), + [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 225), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 107), + [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1359), + [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(188), + [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 161), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(613), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(592), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 89), [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 88), [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1157), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1827), - [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [4482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 125), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 112), - [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__built_in_attr_path, 1, .production_id = 1), - [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [4585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1541), - [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), - [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(55), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1299), - [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), - [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1529), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 103), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 218), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(191), - [4782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(101), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), - [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 102), - [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), - [4811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1532), - [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), - [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), - [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [4842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1676), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(641), - [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 141), - [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), - [4868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1176), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(585), - [4888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(244), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2210), - [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 196), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 189), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 188), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 158), - [5016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 158), SHIFT_REPEAT(557), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 159), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [5035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1545), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditions, 1), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conditions, 3), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [5230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [5262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 81), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 80), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [5298] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [5454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 2, .production_id = 81), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 155), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1828), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1163), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 129), + [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 116), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 1), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__built_in_attr_path, 1, .production_id = 1), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_chain, 2, .production_id = 18), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [4603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1549), + [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(52), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 58), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 30), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 45), + [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), + [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1303), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2, .production_id = 61), + [4660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2, .production_id = 61), SHIFT_REPEAT(83), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 66), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [4683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1555), + [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 29), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 67), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2, .production_id = 61), SHIFT_REPEAT(72), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(193), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 107), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 222), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [4798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(103), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 106), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1533), + [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 143), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 144), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 80), + [4834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 81), + [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 82), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1676), + [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 105), + [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 145), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [4863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(690), + [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [4868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 83), + [4870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(246), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2217), + [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 101), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 96), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), + [4912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1181), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [4923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(584), + [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 200), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 23), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 162), + [4986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 162), SHIFT_REPEAT(558), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 64), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 163), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [5007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1530), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 193), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 192), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 66), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 67), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 9), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 87), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [5212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 85), + [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 84), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [5248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 84), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [5316] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 2, .production_id = 85), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [5416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 159), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 85), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), }; #ifdef __cplusplus From 16e2c736a16422ad1ca78622b898eda21dfb2232 Mon Sep 17 00:00:00 2001 From: Geoffry Song Date: Wed, 17 Aug 2022 22:18:32 +0000 Subject: [PATCH 3/5] Un-name the children of `let_chain` --- corpus/expressions.txt | 20 +- grammar.js | 4 +- src/grammar.json | 60 +- src/node-types.json | 29 +- src/parser.c | 85319 +++++++++++++++++++-------------------- 5 files changed, 42692 insertions(+), 42740 deletions(-) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 4bde5951..eb79ef2f 100644 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -563,13 +563,13 @@ if a && let b = || c || d && e {} (expression_statement (if_expression condition: (let_chain - condition: (let_condition + (let_condition pattern: (tuple_struct_pattern type: (identifier) (string_literal)) value: (identifier)) - condition: (identifier) - condition: (let_condition + (identifier) + (let_condition pattern: (tuple_pattern (identifier) (identifier)) @@ -578,8 +578,8 @@ if a && let b = || c || d && e {} (expression_statement (if_expression condition: (let_chain - condition: (identifier) - condition: (let_condition + (identifier) + (let_condition pattern: (identifier) value: (closure_expression parameters: (closure_parameters) @@ -590,8 +590,8 @@ if a && let b = || c || d && e {} (expression_statement (if_expression condition: (let_chain - condition: (identifier) - condition: (let_condition + (identifier) + (let_condition pattern: (identifier) value: (closure_expression parameters: (closure_parameters) @@ -725,13 +725,13 @@ let msg = match x { pattern: (match_pattern (identifier) condition: (let_chain - condition: (let_condition + (let_condition pattern: (tuple_struct_pattern type: (identifier) (identifier)) value: (identifier)) - condition: (identifier) - condition: (let_condition + (identifier) + (let_condition pattern: (tuple_struct_pattern type: (identifier) (identifier)) diff --git a/grammar.js b/grammar.js index c8eeb76f..335236f3 100644 --- a/grammar.js +++ b/grammar.js @@ -1180,10 +1180,10 @@ module.exports = grammar({ field('value', prec.left(PREC.and, $._expression)) ), - let_chain: $ => sepBy1('&&', field('condition', choice( + let_chain: $ => sepBy1('&&', choice( $.let_condition, prec.left(PREC.and, $._expression) - ))), + )), _condition: $ => choice( prec.dynamic(1, $._expression), diff --git a/src/grammar.json b/src/grammar.json index 6a3ad84d..a6d3f23e 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -6925,25 +6925,21 @@ "type": "SEQ", "members": [ { - "type": "FIELD", - "name": "condition", - "content": { - "type": "CHOICE", - "members": [ - { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "let_condition" + }, + { + "type": "PREC_LEFT", + "value": 3, + "content": { "type": "SYMBOL", - "name": "let_condition" - }, - { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "name": "_expression" } - ] - } + } + ] }, { "type": "REPEAT", @@ -6955,25 +6951,21 @@ "value": "&&" }, { - "type": "FIELD", - "name": "condition", - "content": { - "type": "CHOICE", - "members": [ - { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "let_condition" + }, + { + "type": "PREC_LEFT", + "value": 3, + "content": { "type": "SYMBOL", - "name": "let_condition" - }, - { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "name": "_expression" } - ] - } + } + ] } ] } diff --git a/src/node-types.json b/src/node-types.json index c5a44586..3f738e75 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2399,21 +2399,20 @@ { "type": "let_chain", "named": true, - "fields": { - "condition": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "let_condition", - "named": true - } - ] - } + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "let_condition", + "named": true + } + ] } }, { diff --git a/src/parser.c b/src/parser.c index a8e4a945..57866a1e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2561 +#define STATE_COUNT 2559 #define LARGE_STATE_COUNT 641 #define SYMBOL_COUNT 370 #define ALIAS_COUNT 3 @@ -14,7 +14,7 @@ #define EXTERNAL_TOKEN_COUNT 4 #define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 243 +#define PRODUCTION_ID_COUNT 239 enum { sym_identifier = 1, @@ -2708,886 +2708,872 @@ static const char * const ts_field_names[] = { static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [2] = {.index = 0, .length = 1}, - [3] = {.index = 1, .length = 1}, - [5] = {.index = 2, .length = 1}, + [4] = {.index = 1, .length = 1}, + [5] = {.index = 1, .length = 1}, [6] = {.index = 2, .length = 1}, - [7] = {.index = 3, .length = 1}, - [8] = {.index = 4, .length = 2}, - [9] = {.index = 4, .length = 2}, - [10] = {.index = 6, .length = 2}, - [11] = {.index = 8, .length = 2}, - [12] = {.index = 10, .length = 2}, - [13] = {.index = 10, .length = 2}, - [14] = {.index = 12, .length = 1}, - [15] = {.index = 13, .length = 2}, - [16] = {.index = 15, .length = 2}, - [17] = {.index = 15, .length = 2}, - [18] = {.index = 17, .length = 2}, - [19] = {.index = 19, .length = 2}, - [20] = {.index = 21, .length = 1}, - [21] = {.index = 22, .length = 1}, - [22] = {.index = 22, .length = 1}, - [23] = {.index = 23, .length = 1}, - [24] = {.index = 24, .length = 2}, - [25] = {.index = 26, .length = 2}, - [26] = {.index = 24, .length = 2}, - [27] = {.index = 28, .length = 1}, - [28] = {.index = 29, .length = 2}, - [29] = {.index = 13, .length = 2}, - [30] = {.index = 31, .length = 1}, + [7] = {.index = 3, .length = 2}, + [8] = {.index = 3, .length = 2}, + [9] = {.index = 5, .length = 2}, + [10] = {.index = 7, .length = 2}, + [11] = {.index = 9, .length = 2}, + [12] = {.index = 9, .length = 2}, + [13] = {.index = 11, .length = 1}, + [14] = {.index = 12, .length = 2}, + [15] = {.index = 14, .length = 2}, + [16] = {.index = 14, .length = 2}, + [17] = {.index = 16, .length = 2}, + [18] = {.index = 18, .length = 1}, + [19] = {.index = 19, .length = 1}, + [20] = {.index = 19, .length = 1}, + [21] = {.index = 20, .length = 1}, + [22] = {.index = 21, .length = 2}, + [23] = {.index = 23, .length = 2}, + [24] = {.index = 21, .length = 2}, + [25] = {.index = 25, .length = 1}, + [26] = {.index = 26, .length = 2}, + [27] = {.index = 12, .length = 2}, + [28] = {.index = 28, .length = 1}, + [29] = {.index = 29, .length = 1}, + [30] = {.index = 30, .length = 2}, [31] = {.index = 32, .length = 1}, [32] = {.index = 33, .length = 2}, - [33] = {.index = 35, .length = 1}, - [34] = {.index = 36, .length = 2}, - [35] = {.index = 12, .length = 1}, - [36] = {.index = 10, .length = 2}, - [37] = {.index = 10, .length = 2}, - [38] = {.index = 38, .length = 2}, - [39] = {.index = 40, .length = 2}, - [40] = {.index = 42, .length = 1}, - [41] = {.index = 10, .length = 2}, - [42] = {.index = 10, .length = 2}, - [43] = {.index = 43, .length = 3}, - [44] = {.index = 46, .length = 2}, - [45] = {.index = 48, .length = 2}, - [46] = {.index = 50, .length = 2}, - [47] = {.index = 50, .length = 2}, - [48] = {.index = 40, .length = 2}, - [49] = {.index = 2, .length = 1}, - [50] = {.index = 52, .length = 1}, - [51] = {.index = 53, .length = 2}, - [52] = {.index = 55, .length = 3}, - [53] = {.index = 58, .length = 2}, - [54] = {.index = 60, .length = 3}, - [56] = {.index = 63, .length = 1}, - [57] = {.index = 63, .length = 1}, - [58] = {.index = 52, .length = 1}, - [60] = {.index = 64, .length = 1}, - [61] = {.index = 65, .length = 2}, - [62] = {.index = 67, .length = 3}, - [63] = {.index = 70, .length = 1}, - [64] = {.index = 71, .length = 1}, - [66] = {.index = 72, .length = 2}, - [67] = {.index = 72, .length = 2}, - [68] = {.index = 74, .length = 1}, - [69] = {.index = 75, .length = 2}, - [70] = {.index = 77, .length = 3}, - [71] = {.index = 80, .length = 2}, - [72] = {.index = 82, .length = 2}, - [73] = {.index = 82, .length = 2}, - [74] = {.index = 84, .length = 1}, - [75] = {.index = 85, .length = 2}, - [76] = {.index = 87, .length = 3}, - [77] = {.index = 90, .length = 2}, - [78] = {.index = 92, .length = 2}, - [79] = {.index = 94, .length = 2}, - [80] = {.index = 96, .length = 2}, - [81] = {.index = 98, .length = 2}, - [82] = {.index = 96, .length = 2}, - [83] = {.index = 98, .length = 2}, - [84] = {.index = 100, .length = 1}, - [85] = {.index = 100, .length = 1}, - [86] = {.index = 101, .length = 1}, - [87] = {.index = 102, .length = 2}, - [88] = {.index = 104, .length = 2}, - [89] = {.index = 104, .length = 2}, - [90] = {.index = 94, .length = 2}, - [91] = {.index = 101, .length = 1}, - [92] = {.index = 106, .length = 1}, - [93] = {.index = 107, .length = 3}, - [94] = {.index = 110, .length = 1}, - [95] = {.index = 111, .length = 1}, - [96] = {.index = 112, .length = 2}, - [97] = {.index = 114, .length = 3}, - [98] = {.index = 117, .length = 3}, - [99] = {.index = 120, .length = 4}, - [100] = {.index = 124, .length = 3}, - [101] = {.index = 2, .length = 1}, - [102] = {.index = 127, .length = 3}, - [103] = {.index = 130, .length = 2}, - [104] = {.index = 132, .length = 2}, - [105] = {.index = 134, .length = 2}, - [106] = {.index = 134, .length = 2}, - [107] = {.index = 136, .length = 1}, - [108] = {.index = 137, .length = 2}, - [109] = {.index = 139, .length = 3}, - [110] = {.index = 142, .length = 3}, - [111] = {.index = 145, .length = 3}, - [112] = {.index = 148, .length = 1}, - [113] = {.index = 137, .length = 2}, - [114] = {.index = 139, .length = 3}, - [115] = {.index = 142, .length = 3}, - [116] = {.index = 149, .length = 2}, - [118] = {.index = 151, .length = 3}, - [119] = {.index = 154, .length = 4}, - [120] = {.index = 112, .length = 2}, - [121] = {.index = 158, .length = 3}, - [122] = {.index = 161, .length = 2}, - [123] = {.index = 163, .length = 3}, - [124] = {.index = 166, .length = 2}, - [125] = {.index = 168, .length = 2}, + [33] = {.index = 11, .length = 1}, + [34] = {.index = 9, .length = 2}, + [35] = {.index = 9, .length = 2}, + [36] = {.index = 35, .length = 2}, + [37] = {.index = 37, .length = 2}, + [38] = {.index = 39, .length = 1}, + [39] = {.index = 9, .length = 2}, + [40] = {.index = 9, .length = 2}, + [41] = {.index = 40, .length = 3}, + [42] = {.index = 43, .length = 2}, + [43] = {.index = 45, .length = 2}, + [44] = {.index = 47, .length = 2}, + [45] = {.index = 47, .length = 2}, + [46] = {.index = 37, .length = 2}, + [47] = {.index = 1, .length = 1}, + [48] = {.index = 49, .length = 1}, + [49] = {.index = 50, .length = 2}, + [50] = {.index = 52, .length = 3}, + [51] = {.index = 55, .length = 2}, + [52] = {.index = 57, .length = 3}, + [54] = {.index = 60, .length = 1}, + [55] = {.index = 60, .length = 1}, + [56] = {.index = 49, .length = 1}, + [58] = {.index = 61, .length = 3}, + [59] = {.index = 64, .length = 1}, + [60] = {.index = 65, .length = 1}, + [62] = {.index = 66, .length = 2}, + [63] = {.index = 66, .length = 2}, + [64] = {.index = 68, .length = 1}, + [65] = {.index = 69, .length = 2}, + [66] = {.index = 71, .length = 3}, + [67] = {.index = 74, .length = 2}, + [68] = {.index = 76, .length = 2}, + [69] = {.index = 76, .length = 2}, + [70] = {.index = 78, .length = 1}, + [71] = {.index = 79, .length = 2}, + [72] = {.index = 81, .length = 3}, + [73] = {.index = 84, .length = 2}, + [74] = {.index = 86, .length = 2}, + [75] = {.index = 88, .length = 2}, + [76] = {.index = 90, .length = 2}, + [77] = {.index = 92, .length = 2}, + [78] = {.index = 90, .length = 2}, + [79] = {.index = 92, .length = 2}, + [80] = {.index = 94, .length = 1}, + [81] = {.index = 94, .length = 1}, + [82] = {.index = 95, .length = 1}, + [83] = {.index = 96, .length = 2}, + [84] = {.index = 98, .length = 2}, + [85] = {.index = 98, .length = 2}, + [86] = {.index = 88, .length = 2}, + [87] = {.index = 95, .length = 1}, + [88] = {.index = 100, .length = 1}, + [89] = {.index = 101, .length = 3}, + [90] = {.index = 104, .length = 1}, + [91] = {.index = 105, .length = 1}, + [92] = {.index = 106, .length = 2}, + [93] = {.index = 108, .length = 3}, + [94] = {.index = 111, .length = 3}, + [95] = {.index = 114, .length = 4}, + [96] = {.index = 118, .length = 3}, + [97] = {.index = 1, .length = 1}, + [98] = {.index = 121, .length = 3}, + [99] = {.index = 124, .length = 2}, + [100] = {.index = 126, .length = 2}, + [101] = {.index = 128, .length = 2}, + [102] = {.index = 128, .length = 2}, + [103] = {.index = 130, .length = 1}, + [104] = {.index = 131, .length = 2}, + [105] = {.index = 133, .length = 3}, + [106] = {.index = 136, .length = 3}, + [107] = {.index = 139, .length = 3}, + [108] = {.index = 142, .length = 1}, + [109] = {.index = 131, .length = 2}, + [110] = {.index = 133, .length = 3}, + [111] = {.index = 136, .length = 3}, + [112] = {.index = 143, .length = 2}, + [114] = {.index = 145, .length = 3}, + [115] = {.index = 148, .length = 4}, + [116] = {.index = 106, .length = 2}, + [117] = {.index = 152, .length = 3}, + [118] = {.index = 155, .length = 2}, + [119] = {.index = 157, .length = 3}, + [120] = {.index = 160, .length = 2}, + [121] = {.index = 162, .length = 2}, + [122] = {.index = 164, .length = 3}, + [123] = {.index = 167, .length = 3}, + [124] = {.index = 32, .length = 1}, + [125] = {.index = 143, .length = 2}, [126] = {.index = 170, .length = 3}, - [127] = {.index = 173, .length = 3}, - [128] = {.index = 35, .length = 1}, - [129] = {.index = 149, .length = 2}, - [130] = {.index = 176, .length = 3}, - [131] = {.index = 179, .length = 2}, - [132] = {.index = 181, .length = 2}, - [133] = {.index = 183, .length = 3}, - [134] = {.index = 186, .length = 2}, - [135] = {.index = 188, .length = 2}, - [136] = {.index = 190, .length = 1}, - [137] = {.index = 191, .length = 2}, - [138] = {.index = 193, .length = 1}, - [139] = {.index = 179, .length = 2}, - [140] = {.index = 194, .length = 4}, - [141] = {.index = 198, .length = 3}, - [142] = {.index = 201, .length = 4}, - [143] = {.index = 101, .length = 1}, - [144] = {.index = 205, .length = 2}, - [145] = {.index = 207, .length = 2}, - [146] = {.index = 209, .length = 2}, - [147] = {.index = 211, .length = 3}, - [148] = {.index = 214, .length = 2}, - [149] = {.index = 216, .length = 3}, - [150] = {.index = 219, .length = 4}, - [151] = {.index = 216, .length = 3}, - [152] = {.index = 219, .length = 4}, - [153] = {.index = 223, .length = 3}, - [154] = {.index = 223, .length = 3}, - [155] = {.index = 211, .length = 3}, - [156] = {.index = 226, .length = 2}, - [157] = {.index = 228, .length = 2}, - [158] = {.index = 230, .length = 2}, - [159] = {.index = 232, .length = 1}, - [160] = {.index = 233, .length = 2}, - [161] = {.index = 235, .length = 2}, - [162] = {.index = 237, .length = 2}, - [163] = {.index = 207, .length = 2}, - [164] = {.index = 239, .length = 4}, - [165] = {.index = 243, .length = 3}, - [166] = {.index = 246, .length = 2}, + [127] = {.index = 173, .length = 2}, + [128] = {.index = 175, .length = 2}, + [129] = {.index = 177, .length = 3}, + [130] = {.index = 180, .length = 2}, + [131] = {.index = 182, .length = 2}, + [132] = {.index = 184, .length = 1}, + [133] = {.index = 185, .length = 2}, + [134] = {.index = 187, .length = 1}, + [135] = {.index = 173, .length = 2}, + [136] = {.index = 188, .length = 4}, + [137] = {.index = 192, .length = 3}, + [138] = {.index = 195, .length = 4}, + [139] = {.index = 95, .length = 1}, + [140] = {.index = 199, .length = 2}, + [141] = {.index = 201, .length = 2}, + [142] = {.index = 203, .length = 2}, + [143] = {.index = 205, .length = 3}, + [144] = {.index = 208, .length = 2}, + [145] = {.index = 210, .length = 3}, + [146] = {.index = 213, .length = 4}, + [147] = {.index = 210, .length = 3}, + [148] = {.index = 213, .length = 4}, + [149] = {.index = 217, .length = 3}, + [150] = {.index = 217, .length = 3}, + [151] = {.index = 205, .length = 3}, + [152] = {.index = 220, .length = 2}, + [153] = {.index = 222, .length = 2}, + [154] = {.index = 224, .length = 2}, + [155] = {.index = 226, .length = 1}, + [156] = {.index = 227, .length = 2}, + [157] = {.index = 229, .length = 2}, + [158] = {.index = 231, .length = 2}, + [159] = {.index = 201, .length = 2}, + [160] = {.index = 233, .length = 4}, + [161] = {.index = 237, .length = 3}, + [162] = {.index = 240, .length = 2}, + [163] = {.index = 242, .length = 3}, + [164] = {.index = 245, .length = 3}, + [165] = {.index = 240, .length = 2}, + [166] = {.index = 242, .length = 3}, [167] = {.index = 248, .length = 3}, [168] = {.index = 251, .length = 3}, - [169] = {.index = 246, .length = 2}, - [170] = {.index = 248, .length = 3}, - [171] = {.index = 254, .length = 3}, - [172] = {.index = 257, .length = 3}, - [173] = {.index = 260, .length = 4}, - [174] = {.index = 264, .length = 2}, - [175] = {.index = 266, .length = 2}, - [176] = {.index = 268, .length = 3}, - [177] = {.index = 271, .length = 4}, - [178] = {.index = 275, .length = 3}, - [179] = {.index = 233, .length = 2}, - [180] = {.index = 278, .length = 2}, - [181] = {.index = 280, .length = 3}, - [182] = {.index = 283, .length = 3}, - [183] = {.index = 286, .length = 2}, - [184] = {.index = 288, .length = 3}, - [185] = {.index = 207, .length = 2}, - [186] = {.index = 291, .length = 3}, - [187] = {.index = 294, .length = 3}, - [188] = {.index = 266, .length = 2}, - [189] = {.index = 297, .length = 4}, - [190] = {.index = 301, .length = 5}, - [191] = {.index = 306, .length = 4}, - [192] = {.index = 310, .length = 2}, - [193] = {.index = 312, .length = 3}, - [194] = {.index = 315, .length = 4}, - [195] = {.index = 315, .length = 4}, - [196] = {.index = 319, .length = 2}, - [197] = {.index = 321, .length = 3}, - [198] = {.index = 324, .length = 2}, - [199] = {.index = 326, .length = 2}, - [200] = {.index = 112, .length = 2}, - [201] = {.index = 328, .length = 3}, - [202] = {.index = 331, .length = 3}, - [203] = {.index = 334, .length = 4}, - [204] = {.index = 331, .length = 3}, - [205] = {.index = 334, .length = 4}, - [206] = {.index = 328, .length = 3}, - [207] = {.index = 338, .length = 4}, - [208] = {.index = 342, .length = 4}, - [209] = {.index = 346, .length = 3}, - [210] = {.index = 349, .length = 4}, - [211] = {.index = 353, .length = 3}, - [212] = {.index = 356, .length = 3}, - [213] = {.index = 359, .length = 3}, - [214] = {.index = 362, .length = 4}, - [215] = {.index = 366, .length = 2}, - [216] = {.index = 368, .length = 3}, - [217] = {.index = 371, .length = 4}, - [218] = {.index = 375, .length = 3}, - [219] = {.index = 378, .length = 3}, - [220] = {.index = 381, .length = 3}, - [221] = {.index = 384, .length = 5}, - [222] = {.index = 389, .length = 2}, - [223] = {.index = 391, .length = 3}, - [224] = {.index = 394, .length = 3}, - [225] = {.index = 397, .length = 2}, - [226] = {.index = 399, .length = 4}, - [227] = {.index = 399, .length = 4}, - [228] = {.index = 403, .length = 4}, - [229] = {.index = 407, .length = 5}, - [230] = {.index = 412, .length = 4}, - [231] = {.index = 416, .length = 2}, - [232] = {.index = 418, .length = 4}, - [233] = {.index = 422, .length = 4}, - [234] = {.index = 426, .length = 3}, - [235] = {.index = 429, .length = 4}, - [236] = {.index = 433, .length = 3}, - [237] = {.index = 436, .length = 5}, - [238] = {.index = 441, .length = 4}, - [239] = {.index = 445, .length = 5}, - [240] = {.index = 450, .length = 4}, - [241] = {.index = 454, .length = 3}, - [242] = {.index = 457, .length = 5}, + [169] = {.index = 254, .length = 4}, + [170] = {.index = 258, .length = 2}, + [171] = {.index = 260, .length = 2}, + [172] = {.index = 262, .length = 3}, + [173] = {.index = 265, .length = 4}, + [174] = {.index = 269, .length = 3}, + [175] = {.index = 227, .length = 2}, + [176] = {.index = 272, .length = 2}, + [177] = {.index = 274, .length = 3}, + [178] = {.index = 277, .length = 3}, + [179] = {.index = 280, .length = 2}, + [180] = {.index = 282, .length = 3}, + [181] = {.index = 201, .length = 2}, + [182] = {.index = 285, .length = 3}, + [183] = {.index = 288, .length = 3}, + [184] = {.index = 260, .length = 2}, + [185] = {.index = 291, .length = 4}, + [186] = {.index = 295, .length = 5}, + [187] = {.index = 300, .length = 4}, + [188] = {.index = 304, .length = 2}, + [189] = {.index = 306, .length = 3}, + [190] = {.index = 309, .length = 4}, + [191] = {.index = 309, .length = 4}, + [192] = {.index = 313, .length = 2}, + [193] = {.index = 315, .length = 3}, + [194] = {.index = 318, .length = 2}, + [195] = {.index = 320, .length = 2}, + [196] = {.index = 106, .length = 2}, + [197] = {.index = 322, .length = 3}, + [198] = {.index = 325, .length = 3}, + [199] = {.index = 328, .length = 4}, + [200] = {.index = 325, .length = 3}, + [201] = {.index = 328, .length = 4}, + [202] = {.index = 322, .length = 3}, + [203] = {.index = 332, .length = 4}, + [204] = {.index = 336, .length = 4}, + [205] = {.index = 340, .length = 3}, + [206] = {.index = 343, .length = 4}, + [207] = {.index = 347, .length = 3}, + [208] = {.index = 350, .length = 3}, + [209] = {.index = 353, .length = 3}, + [210] = {.index = 356, .length = 4}, + [211] = {.index = 360, .length = 2}, + [212] = {.index = 362, .length = 3}, + [213] = {.index = 365, .length = 4}, + [214] = {.index = 369, .length = 3}, + [215] = {.index = 372, .length = 3}, + [216] = {.index = 375, .length = 3}, + [217] = {.index = 378, .length = 5}, + [218] = {.index = 383, .length = 2}, + [219] = {.index = 385, .length = 3}, + [220] = {.index = 388, .length = 3}, + [221] = {.index = 391, .length = 2}, + [222] = {.index = 393, .length = 4}, + [223] = {.index = 393, .length = 4}, + [224] = {.index = 397, .length = 4}, + [225] = {.index = 401, .length = 5}, + [226] = {.index = 406, .length = 4}, + [227] = {.index = 410, .length = 2}, + [228] = {.index = 412, .length = 4}, + [229] = {.index = 416, .length = 4}, + [230] = {.index = 420, .length = 3}, + [231] = {.index = 423, .length = 4}, + [232] = {.index = 427, .length = 3}, + [233] = {.index = 430, .length = 5}, + [234] = {.index = 435, .length = 4}, + [235] = {.index = 439, .length = 5}, + [236] = {.index = 444, .length = 4}, + [237] = {.index = 448, .length = 3}, + [238] = {.index = 451, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { [0] = {field_body, 1}, [1] = - {field_condition, 0}, - [2] = {field_name, 1}, - [3] = + [2] = {field_value, 1}, - [4] = + [3] = {field_body, 1}, {field_name, 0}, - [6] = + [5] = {field_arguments, 1}, {field_function, 0}, - [8] = + [7] = {field_body, 1}, {field_parameters, 0}, - [10] = + [9] = {field_name, 2}, {field_path, 0}, - [12] = + [11] = {field_macro, 0}, - [13] = + [12] = {field_body, 2}, {field_name, 1}, - [15] = + [14] = {field_type, 0}, {field_type_arguments, 1}, - [17] = - {field_condition, 0}, - {field_condition, 1, .inherited = true}, - [19] = + [16] = {field_condition, 1}, {field_consequence, 2}, - [21] = + [18] = {field_parameters, 1}, - [22] = + [19] = {field_trait, 1}, - [23] = + [20] = {field_type, 1}, - [24] = + [21] = {field_parameters, 1}, {field_trait, 0}, - [26] = + [23] = {field_body, 2}, {field_type, 1}, - [28] = + [25] = {field_pattern, 1}, - [29] = + [26] = {field_body, 2}, {field_value, 1}, - [31] = + [28] = {field_list, 1}, - [32] = + [29] = {field_argument, 1}, - [33] = + [30] = {field_body, 2}, {field_condition, 1}, - [35] = + [32] = {field_value, 2}, - [36] = + [33] = {field_body, 2}, {field_parameters, 1}, - [38] = + [35] = {field_function, 0}, {field_type_arguments, 2}, - [40] = + [37] = {field_type, 0}, {field_type_arguments, 2}, - [42] = + [39] = {field_body, 2}, - [43] = + [40] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [46] = + [43] = {field_type, 2}, {field_value, 0}, - [48] = + [45] = {field_left, 0}, {field_right, 2}, - [50] = + [47] = {field_field, 2}, {field_value, 0}, - [52] = + [49] = {field_name, 0}, - [53] = + [50] = {field_body, 3}, {field_name, 1}, - [55] = + [52] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [58] = + [55] = {field_name, 1}, {field_parameters, 2}, - [60] = + [57] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, - [63] = + [60] = {field_type, 0}, - [64] = - {field_condition, 1}, - [65] = - {field_condition, 0, .inherited = true}, - {field_condition, 1, .inherited = true}, - [67] = + [61] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [70] = + [64] = {field_element, 1}, - [71] = + [65] = {field_type, 2}, - [72] = + [66] = {field_bounds, 1}, {field_left, 0}, - [74] = + [68] = {field_parameters, 2}, - [75] = + [69] = {field_type, 2}, {field_type_parameters, 1}, - [77] = + [71] = {field_body, 3}, {field_type, 2}, {field_type_parameters, 1}, - [80] = + [74] = {field_body, 3}, {field_type, 1}, - [82] = + [76] = {field_parameters, 2}, {field_trait, 1}, - [84] = + [78] = {field_pattern, 2}, - [85] = + [79] = {field_name, 1}, {field_type_parameters, 2}, - [87] = + [81] = {field_body, 3}, {field_bounds, 2}, {field_name, 1}, - [90] = + [84] = {field_bounds, 2}, {field_name, 1}, - [92] = + [86] = {field_body, 3}, {field_type, 2}, - [94] = + [88] = {field_body, 3}, {field_name, 2}, - [96] = + [90] = {field_alias, 2}, {field_path, 0}, - [98] = + [92] = {field_list, 2}, {field_path, 0}, - [100] = + [94] = {field_arguments, 1}, - [101] = + [95] = {field_name, 2}, - [102] = + [96] = {field_alias, 2}, {field_type, 0}, - [104] = + [98] = {field_pattern, 0}, {field_type, 2}, - [106] = + [100] = {field_argument, 2}, - [107] = + [101] = {field_body, 3}, {field_parameters, 0}, {field_return_type, 2}, - [110] = + [104] = {field_body, 3}, - [111] = + [105] = {field_length, 3}, - [112] = + [106] = {field_name, 1}, {field_type, 3}, - [114] = + [108] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [117] = + [111] = {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [120] = + [114] = {field_body, 4}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [124] = + [118] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, - [127] = + [121] = {field_body, 4}, {field_pattern, 1}, {field_value, 3}, - [130] = + [124] = {field_pattern, 1}, {field_value, 3}, - [132] = + [126] = {field_parameters, 1}, {field_return_type, 3}, - [134] = + [128] = {field_default_type, 2}, {field_name, 0}, - [136] = + [130] = {field_type, 3}, - [137] = + [131] = {field_trait, 1}, {field_type, 3}, - [139] = + [133] = {field_body, 4}, {field_trait, 1}, {field_type, 3}, - [142] = + [136] = {field_parameters, 1}, {field_return_type, 3}, {field_trait, 0}, - [145] = + [139] = {field_body, 4}, {field_type, 2}, {field_type_parameters, 1}, - [148] = + [142] = {field_parameters, 3}, - [149] = + [143] = {field_pattern, 1}, {field_type, 3}, - [151] = + [145] = {field_body, 4}, {field_bounds, 2}, {field_name, 1}, - [154] = + [148] = {field_body, 4}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [158] = + [152] = {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [161] = + [155] = {field_type, 3}, {field_type_parameters, 2}, - [163] = + [157] = {field_body, 4}, {field_type, 3}, {field_type_parameters, 2}, - [166] = + [160] = {field_body, 4}, {field_type, 2}, - [168] = + [162] = {field_body, 4}, {field_name, 2}, - [170] = + [164] = {field_body, 4}, {field_bounds, 3}, {field_name, 2}, - [173] = + [167] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [176] = + [170] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3}, - [179] = + [173] = {field_name, 0}, {field_value, 2}, - [181] = + [175] = {field_name, 2}, {field_parameters, 3}, - [183] = + [177] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [186] = + [180] = {field_name, 2}, {field_type_parameters, 3}, - [188] = + [182] = {field_body, 4}, {field_name, 3}, - [190] = + [184] = {field_name, 3}, - [191] = + [185] = {field_body, 4}, {field_condition, 3}, - [193] = + [187] = {field_length, 4}, - [194] = + [188] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [198] = + [192] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [201] = + [195] = {field_body, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [205] = + [199] = {field_name, 0}, {field_pattern, 2}, - [207] = + [201] = {field_name, 0}, {field_type, 2}, - [209] = + [203] = {field_element, 1}, {field_length, 3}, - [211] = + [205] = {field_body, 5}, {field_trait, 1}, {field_type, 3}, - [214] = + [208] = {field_parameters, 2}, {field_return_type, 4}, - [216] = + [210] = {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [219] = + [213] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [223] = + [217] = {field_parameters, 2}, {field_return_type, 4}, {field_trait, 1}, - [226] = + [220] = {field_pattern, 2}, {field_type, 4}, - [228] = + [222] = {field_pattern, 2}, {field_value, 4}, - [230] = + [224] = {field_pattern, 0}, {field_value, 2}, - [232] = + [226] = {field_condition, 2}, - [233] = + [227] = {field_name, 2}, {field_type, 4}, - [235] = + [229] = {field_type, 1}, {field_type, 2, .inherited = true}, - [237] = + [231] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [239] = + [233] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [243] = + [237] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [246] = + [240] = {field_trait, 2}, {field_type, 4}, - [248] = + [242] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [251] = + [245] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [254] = + [248] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [257] = + [251] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [260] = + [254] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [264] = + [258] = {field_alias, 4}, {field_name, 2}, - [266] = + [260] = {field_name, 1}, {field_value, 3}, - [268] = + [262] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [271] = + [265] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [275] = + [269] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [278] = + [272] = {field_body, 5}, {field_name, 3}, - [280] = + [274] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [283] = + [277] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [286] = + [280] = {field_name, 3}, {field_parameters, 4}, - [288] = + [282] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [291] = + [285] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [294] = + [288] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [297] = + [291] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [301] = + [295] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [306] = + [300] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [310] = + [304] = {field_name, 1}, {field_pattern, 3}, - [312] = + [306] = {field_name, 0}, {field_type, 3}, {field_type_arguments, 1}, - [315] = + [309] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [319] = + [313] = {field_parameters, 3}, {field_return_type, 5}, - [321] = + [315] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [324] = + [318] = {field_name, 3}, {field_type, 5}, - [326] = + [320] = {field_type, 2}, {field_type, 3, .inherited = true}, - [328] = + [322] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [331] = + [325] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [334] = + [328] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [338] = + [332] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [342] = + [336] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [346] = + [340] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [349] = + [343] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [353] = + [347] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [356] = + [350] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [359] = + [353] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [362] = + [356] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [366] = + [360] = {field_alias, 5}, {field_name, 3}, - [368] = + [362] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [371] = + [365] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [375] = + [369] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [378] = + [372] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [381] = + [375] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [384] = + [378] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [389] = + [383] = {field_name, 2}, {field_pattern, 4}, - [391] = + [385] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [394] = + [388] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [397] = + [391] = {field_type, 3}, {field_type, 4, .inherited = true}, - [399] = + [393] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [403] = + [397] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [407] = + [401] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [412] = + [406] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [416] = + [410] = {field_name, 4}, {field_type, 6}, - [418] = + [412] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [422] = + [416] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [426] = + [420] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [429] = + [423] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [433] = + [427] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [436] = + [430] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [441] = + [435] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [445] = + [439] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [450] = + [444] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [454] = + [448] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [457] = + [451] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, @@ -3600,271 +3586,271 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = { [0] = sym_identifier, }, - [4] = { + [3] = { [0] = alias_sym_type_identifier, }, - [6] = { + [5] = { [1] = alias_sym_type_identifier, }, - [8] = { + [7] = { [0] = alias_sym_type_identifier, }, - [12] = { + [11] = { [0] = sym_identifier, }, - [13] = { + [12] = { [0] = sym_identifier, [2] = alias_sym_type_identifier, }, - [14] = { + [13] = { [0] = sym_identifier, }, - [15] = { + [14] = { [1] = alias_sym_type_identifier, }, - [16] = { + [15] = { [0] = alias_sym_type_identifier, }, - [21] = { + [19] = { [1] = alias_sym_type_identifier, }, - [24] = { + [22] = { [0] = alias_sym_type_identifier, }, - [37] = { + [35] = { [2] = alias_sym_type_identifier, }, - [39] = { + [37] = { [0] = alias_sym_type_identifier, }, - [41] = { + [39] = { [0] = sym_generic_type, }, - [42] = { + [40] = { [0] = sym_generic_type, [2] = alias_sym_type_identifier, }, - [47] = { + [45] = { [2] = alias_sym_field_identifier, }, - [49] = { + [47] = { [1] = sym_identifier, }, - [51] = { + [49] = { [1] = alias_sym_type_identifier, }, - [52] = { + [50] = { [1] = alias_sym_type_identifier, }, - [55] = { + [53] = { [0] = sym_identifier, [2] = sym_identifier, }, - [57] = { + [55] = { [0] = alias_sym_type_identifier, }, - [58] = { + [56] = { [0] = alias_sym_shorthand_field_identifier, }, - [59] = { + [57] = { [2] = sym_identifier, }, - [65] = { + [61] = { [1] = alias_sym_type_identifier, }, - [66] = { + [62] = { [0] = alias_sym_type_identifier, }, - [72] = { + [68] = { [1] = alias_sym_type_identifier, }, - [75] = { + [71] = { [1] = alias_sym_type_identifier, }, - [76] = { + [72] = { [1] = alias_sym_type_identifier, }, - [77] = { + [73] = { [1] = alias_sym_type_identifier, }, - [79] = { + [75] = { [2] = alias_sym_type_identifier, }, - [80] = { + [76] = { [0] = sym_identifier, }, - [81] = { + [77] = { [0] = sym_identifier, }, - [84] = { + [80] = { [0] = sym_identifier, }, - [88] = { + [84] = { [0] = sym_identifier, }, - [91] = { + [87] = { [2] = alias_sym_type_identifier, }, - [97] = { + [93] = { [1] = alias_sym_type_identifier, }, - [101] = { + [97] = { [1] = alias_sym_shorthand_field_identifier, }, - [105] = { + [101] = { [0] = alias_sym_type_identifier, }, - [108] = { + [104] = { [1] = alias_sym_type_identifier, }, - [109] = { + [105] = { [1] = alias_sym_type_identifier, }, - [110] = { + [106] = { [0] = alias_sym_type_identifier, }, - [117] = { + [113] = { [3] = sym_identifier, }, - [118] = { + [114] = { [1] = alias_sym_type_identifier, }, - [119] = { + [115] = { [1] = alias_sym_type_identifier, }, - [120] = { + [116] = { [1] = alias_sym_type_identifier, }, - [121] = { + [117] = { [1] = alias_sym_type_identifier, }, - [125] = { + [121] = { [2] = alias_sym_type_identifier, }, - [126] = { + [122] = { [2] = alias_sym_type_identifier, }, - [127] = { + [123] = { [2] = alias_sym_type_identifier, }, - [128] = { + [124] = { [0] = sym_identifier, }, - [129] = { + [125] = { [1] = sym_identifier, }, - [131] = { + [127] = { [0] = alias_sym_field_identifier, }, - [134] = { + [130] = { [2] = alias_sym_type_identifier, }, - [135] = { + [131] = { [3] = alias_sym_type_identifier, }, - [143] = { + [139] = { [2] = alias_sym_shorthand_field_identifier, }, - [144] = { + [140] = { [0] = alias_sym_field_identifier, }, - [145] = { + [141] = { [0] = alias_sym_type_identifier, }, - [147] = { + [143] = { [1] = alias_sym_type_identifier, }, - [149] = { + [145] = { [2] = alias_sym_type_identifier, }, - [150] = { + [146] = { [2] = alias_sym_type_identifier, }, - [153] = { + [149] = { [1] = alias_sym_type_identifier, }, - [163] = { + [159] = { [0] = alias_sym_field_identifier, }, - [164] = { + [160] = { [1] = alias_sym_type_identifier, }, - [165] = { + [161] = { [1] = alias_sym_type_identifier, }, - [166] = { + [162] = { [2] = alias_sym_type_identifier, }, - [167] = { + [163] = { [2] = alias_sym_type_identifier, }, - [171] = { + [167] = { [2] = alias_sym_type_identifier, }, - [172] = { + [168] = { [2] = alias_sym_type_identifier, }, - [173] = { + [169] = { [2] = alias_sym_type_identifier, }, - [175] = { + [171] = { [1] = alias_sym_field_identifier, }, - [179] = { + [175] = { [2] = alias_sym_type_identifier, }, - [180] = { + [176] = { [3] = alias_sym_type_identifier, }, - [181] = { + [177] = { [3] = alias_sym_type_identifier, }, - [182] = { + [178] = { [3] = alias_sym_type_identifier, }, - [192] = { + [188] = { [1] = alias_sym_field_identifier, }, - [193] = { + [189] = { [0] = alias_sym_type_identifier, }, - [194] = { + [190] = { [2] = alias_sym_type_identifier, }, - [200] = { + [196] = { [1] = alias_sym_field_identifier, }, - [201] = { + [197] = { [2] = alias_sym_type_identifier, }, - [202] = { + [198] = { [3] = alias_sym_type_identifier, }, - [203] = { + [199] = { [3] = alias_sym_type_identifier, }, - [207] = { + [203] = { [2] = alias_sym_type_identifier, }, - [211] = { + [207] = { [2] = alias_sym_type_identifier, }, - [212] = { + [208] = { [3] = alias_sym_type_identifier, }, - [213] = { + [209] = { [3] = alias_sym_type_identifier, }, - [214] = { + [210] = { [3] = alias_sym_type_identifier, }, - [222] = { + [218] = { [2] = alias_sym_field_identifier, }, - [226] = { + [222] = { [3] = alias_sym_type_identifier, }, - [232] = { + [228] = { [3] = alias_sym_type_identifier, }, }; @@ -13407,23 +13393,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [44] = {.lex_state = 5, .external_lex_state = 2}, [45] = {.lex_state = 5, .external_lex_state = 2}, [46] = {.lex_state = 5, .external_lex_state = 2}, - [47] = {.lex_state = 5, .external_lex_state = 2}, - [48] = {.lex_state = 57, .external_lex_state = 2}, + [47] = {.lex_state = 57, .external_lex_state = 2}, + [48] = {.lex_state = 5, .external_lex_state = 2}, [49] = {.lex_state = 5, .external_lex_state = 2}, [50] = {.lex_state = 5, .external_lex_state = 2}, [51] = {.lex_state = 57, .external_lex_state = 2}, [52] = {.lex_state = 5, .external_lex_state = 2}, - [53] = {.lex_state = 5, .external_lex_state = 2}, + [53] = {.lex_state = 57, .external_lex_state = 2}, [54] = {.lex_state = 5, .external_lex_state = 2}, - [55] = {.lex_state = 57, .external_lex_state = 2}, + [55] = {.lex_state = 5, .external_lex_state = 2}, [56] = {.lex_state = 57, .external_lex_state = 2}, [57] = {.lex_state = 5, .external_lex_state = 2}, - [58] = {.lex_state = 5, .external_lex_state = 2}, + [58] = {.lex_state = 57, .external_lex_state = 2}, [59] = {.lex_state = 57, .external_lex_state = 2}, [60] = {.lex_state = 57, .external_lex_state = 2}, [61] = {.lex_state = 57, .external_lex_state = 2}, [62] = {.lex_state = 57, .external_lex_state = 2}, - [63] = {.lex_state = 57, .external_lex_state = 2}, + [63] = {.lex_state = 5, .external_lex_state = 2}, [64] = {.lex_state = 57, .external_lex_state = 2}, [65] = {.lex_state = 57, .external_lex_state = 2}, [66] = {.lex_state = 57, .external_lex_state = 2}, @@ -13578,8 +13564,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [215] = {.lex_state = 4, .external_lex_state = 3}, [216] = {.lex_state = 4, .external_lex_state = 3}, [217] = {.lex_state = 4, .external_lex_state = 3}, - [218] = {.lex_state = 4, .external_lex_state = 3}, - [219] = {.lex_state = 1, .external_lex_state = 2}, + [218] = {.lex_state = 1, .external_lex_state = 2}, + [219] = {.lex_state = 4, .external_lex_state = 3}, [220] = {.lex_state = 4, .external_lex_state = 3}, [221] = {.lex_state = 1, .external_lex_state = 2}, [222] = {.lex_state = 1, .external_lex_state = 2}, @@ -13589,22 +13575,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [226] = {.lex_state = 1, .external_lex_state = 2}, [227] = {.lex_state = 1, .external_lex_state = 2}, [228] = {.lex_state = 1, .external_lex_state = 2}, - [229] = {.lex_state = 5, .external_lex_state = 2}, - [230] = {.lex_state = 1, .external_lex_state = 2}, + [229] = {.lex_state = 1, .external_lex_state = 2}, + [230] = {.lex_state = 5, .external_lex_state = 2}, [231] = {.lex_state = 1, .external_lex_state = 2}, [232] = {.lex_state = 1, .external_lex_state = 2}, - [233] = {.lex_state = 5, .external_lex_state = 2}, + [233] = {.lex_state = 1, .external_lex_state = 2}, [234] = {.lex_state = 1, .external_lex_state = 2}, [235] = {.lex_state = 1, .external_lex_state = 2}, [236] = {.lex_state = 1, .external_lex_state = 2}, [237] = {.lex_state = 1, .external_lex_state = 2}, - [238] = {.lex_state = 5, .external_lex_state = 2}, - [239] = {.lex_state = 1, .external_lex_state = 2}, - [240] = {.lex_state = 1, .external_lex_state = 2}, - [241] = {.lex_state = 5, .external_lex_state = 2}, + [238] = {.lex_state = 1, .external_lex_state = 2}, + [239] = {.lex_state = 5, .external_lex_state = 2}, + [240] = {.lex_state = 5, .external_lex_state = 2}, + [241] = {.lex_state = 1, .external_lex_state = 2}, [242] = {.lex_state = 1, .external_lex_state = 2}, [243] = {.lex_state = 1, .external_lex_state = 2}, - [244] = {.lex_state = 1, .external_lex_state = 2}, + [244] = {.lex_state = 5, .external_lex_state = 2}, [245] = {.lex_state = 1, .external_lex_state = 2}, [246] = {.lex_state = 5, .external_lex_state = 2}, [247] = {.lex_state = 5, .external_lex_state = 2}, @@ -13612,8 +13598,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [249] = {.lex_state = 14, .external_lex_state = 3}, [250] = {.lex_state = 14, .external_lex_state = 3}, [251] = {.lex_state = 14, .external_lex_state = 3}, - [252] = {.lex_state = 14, .external_lex_state = 3}, - [253] = {.lex_state = 11, .external_lex_state = 2}, + [252] = {.lex_state = 11, .external_lex_state = 2}, + [253] = {.lex_state = 14, .external_lex_state = 3}, [254] = {.lex_state = 14, .external_lex_state = 3}, [255] = {.lex_state = 58, .external_lex_state = 2}, [256] = {.lex_state = 58, .external_lex_state = 2}, @@ -13725,8 +13711,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [362] = {.lex_state = 58, .external_lex_state = 2}, [363] = {.lex_state = 58, .external_lex_state = 2}, [364] = {.lex_state = 58, .external_lex_state = 2}, - [365] = {.lex_state = 58, .external_lex_state = 2}, - [366] = {.lex_state = 5, .external_lex_state = 2}, + [365] = {.lex_state = 5, .external_lex_state = 2}, + [366] = {.lex_state = 58, .external_lex_state = 2}, [367] = {.lex_state = 58, .external_lex_state = 2}, [368] = {.lex_state = 58, .external_lex_state = 2}, [369] = {.lex_state = 58, .external_lex_state = 2}, @@ -13863,10 +13849,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [500] = {.lex_state = 11, .external_lex_state = 2}, [501] = {.lex_state = 11, .external_lex_state = 2}, [502] = {.lex_state = 5, .external_lex_state = 2}, - [503] = {.lex_state = 12, .external_lex_state = 2}, - [504] = {.lex_state = 12, .external_lex_state = 2}, - [505] = {.lex_state = 11, .external_lex_state = 2}, - [506] = {.lex_state = 11, .external_lex_state = 2}, + [503] = {.lex_state = 11, .external_lex_state = 2}, + [504] = {.lex_state = 11, .external_lex_state = 2}, + [505] = {.lex_state = 12, .external_lex_state = 2}, + [506] = {.lex_state = 12, .external_lex_state = 2}, [507] = {.lex_state = 12, .external_lex_state = 2}, [508] = {.lex_state = 12, .external_lex_state = 2}, [509] = {.lex_state = 12, .external_lex_state = 2}, @@ -13882,24 +13868,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [519] = {.lex_state = 12, .external_lex_state = 2}, [520] = {.lex_state = 12, .external_lex_state = 2}, [521] = {.lex_state = 12, .external_lex_state = 2}, - [522] = {.lex_state = 12, .external_lex_state = 2}, + [522] = {.lex_state = 11, .external_lex_state = 2}, [523] = {.lex_state = 11, .external_lex_state = 2}, [524] = {.lex_state = 11, .external_lex_state = 2}, - [525] = {.lex_state = 11, .external_lex_state = 2}, - [526] = {.lex_state = 12, .external_lex_state = 2}, - [527] = {.lex_state = 11, .external_lex_state = 2}, - [528] = {.lex_state = 12, .external_lex_state = 2}, + [525] = {.lex_state = 12, .external_lex_state = 2}, + [526] = {.lex_state = 11, .external_lex_state = 2}, + [527] = {.lex_state = 12, .external_lex_state = 2}, + [528] = {.lex_state = 11, .external_lex_state = 2}, [529] = {.lex_state = 11, .external_lex_state = 2}, [530] = {.lex_state = 12, .external_lex_state = 2}, [531] = {.lex_state = 12, .external_lex_state = 2}, [532] = {.lex_state = 12, .external_lex_state = 2}, [533] = {.lex_state = 12, .external_lex_state = 2}, - [534] = {.lex_state = 12, .external_lex_state = 2}, + [534] = {.lex_state = 11, .external_lex_state = 2}, [535] = {.lex_state = 12, .external_lex_state = 2}, [536] = {.lex_state = 12, .external_lex_state = 2}, [537] = {.lex_state = 12, .external_lex_state = 2}, - [538] = {.lex_state = 11, .external_lex_state = 2}, - [539] = {.lex_state = 11, .external_lex_state = 2}, + [538] = {.lex_state = 12, .external_lex_state = 2}, + [539] = {.lex_state = 12, .external_lex_state = 2}, [540] = {.lex_state = 11, .external_lex_state = 2}, [541] = {.lex_state = 11, .external_lex_state = 2}, [542] = {.lex_state = 11, .external_lex_state = 2}, @@ -13918,16 +13904,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [555] = {.lex_state = 4, .external_lex_state = 3}, [556] = {.lex_state = 4, .external_lex_state = 3}, [557] = {.lex_state = 5, .external_lex_state = 2}, - [558] = {.lex_state = 4, .external_lex_state = 3}, + [558] = {.lex_state = 5, .external_lex_state = 2}, [559] = {.lex_state = 4, .external_lex_state = 3}, [560] = {.lex_state = 5, .external_lex_state = 2}, - [561] = {.lex_state = 5, .external_lex_state = 2}, - [562] = {.lex_state = 10, .external_lex_state = 2}, - [563] = {.lex_state = 5, .external_lex_state = 2}, + [561] = {.lex_state = 4, .external_lex_state = 3}, + [562] = {.lex_state = 5, .external_lex_state = 2}, + [563] = {.lex_state = 10, .external_lex_state = 2}, [564] = {.lex_state = 11, .external_lex_state = 2}, - [565] = {.lex_state = 11, .external_lex_state = 2}, - [566] = {.lex_state = 5, .external_lex_state = 2}, - [567] = {.lex_state = 11, .external_lex_state = 2}, + [565] = {.lex_state = 5, .external_lex_state = 2}, + [566] = {.lex_state = 11, .external_lex_state = 2}, + [567] = {.lex_state = 5, .external_lex_state = 2}, [568] = {.lex_state = 11, .external_lex_state = 2}, [569] = {.lex_state = 11, .external_lex_state = 2}, [570] = {.lex_state = 11, .external_lex_state = 2}, @@ -13936,57 +13922,57 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [573] = {.lex_state = 11, .external_lex_state = 2}, [574] = {.lex_state = 11, .external_lex_state = 2}, [575] = {.lex_state = 5, .external_lex_state = 2}, - [576] = {.lex_state = 5, .external_lex_state = 2}, + [576] = {.lex_state = 11, .external_lex_state = 2}, [577] = {.lex_state = 5, .external_lex_state = 2}, - [578] = {.lex_state = 11, .external_lex_state = 2}, + [578] = {.lex_state = 5, .external_lex_state = 2}, [579] = {.lex_state = 11, .external_lex_state = 2}, - [580] = {.lex_state = 5, .external_lex_state = 2}, + [580] = {.lex_state = 11, .external_lex_state = 2}, [581] = {.lex_state = 11, .external_lex_state = 2}, [582] = {.lex_state = 11, .external_lex_state = 2}, - [583] = {.lex_state = 11, .external_lex_state = 2}, - [584] = {.lex_state = 5, .external_lex_state = 2}, - [585] = {.lex_state = 4, .external_lex_state = 3}, - [586] = {.lex_state = 5, .external_lex_state = 2}, - [587] = {.lex_state = 11, .external_lex_state = 2}, - [588] = {.lex_state = 4, .external_lex_state = 3}, + [583] = {.lex_state = 5, .external_lex_state = 2}, + [584] = {.lex_state = 11, .external_lex_state = 2}, + [585] = {.lex_state = 5, .external_lex_state = 2}, + [586] = {.lex_state = 11, .external_lex_state = 2}, + [587] = {.lex_state = 4, .external_lex_state = 3}, + [588] = {.lex_state = 5, .external_lex_state = 2}, [589] = {.lex_state = 5, .external_lex_state = 2}, - [590] = {.lex_state = 5, .external_lex_state = 2}, + [590] = {.lex_state = 12, .external_lex_state = 2}, [591] = {.lex_state = 5, .external_lex_state = 2}, - [592] = {.lex_state = 5, .external_lex_state = 2}, - [593] = {.lex_state = 12, .external_lex_state = 2}, - [594] = {.lex_state = 5, .external_lex_state = 2}, + [592] = {.lex_state = 4, .external_lex_state = 3}, + [593] = {.lex_state = 4, .external_lex_state = 3}, + [594] = {.lex_state = 4, .external_lex_state = 3}, [595] = {.lex_state = 5, .external_lex_state = 2}, - [596] = {.lex_state = 5, .external_lex_state = 2}, + [596] = {.lex_state = 12, .external_lex_state = 2}, [597] = {.lex_state = 5, .external_lex_state = 2}, [598] = {.lex_state = 5, .external_lex_state = 2}, - [599] = {.lex_state = 12, .external_lex_state = 2}, + [599] = {.lex_state = 5, .external_lex_state = 2}, [600] = {.lex_state = 12, .external_lex_state = 2}, - [601] = {.lex_state = 12, .external_lex_state = 2}, + [601] = {.lex_state = 5, .external_lex_state = 2}, [602] = {.lex_state = 5, .external_lex_state = 2}, - [603] = {.lex_state = 12, .external_lex_state = 2}, - [604] = {.lex_state = 12, .external_lex_state = 2}, + [603] = {.lex_state = 5, .external_lex_state = 2}, + [604] = {.lex_state = 5, .external_lex_state = 2}, [605] = {.lex_state = 5, .external_lex_state = 2}, [606] = {.lex_state = 5, .external_lex_state = 2}, [607] = {.lex_state = 5, .external_lex_state = 2}, - [608] = {.lex_state = 5, .external_lex_state = 2}, - [609] = {.lex_state = 4, .external_lex_state = 3}, - [610] = {.lex_state = 5, .external_lex_state = 2}, - [611] = {.lex_state = 4, .external_lex_state = 3}, + [608] = {.lex_state = 12, .external_lex_state = 2}, + [609] = {.lex_state = 5, .external_lex_state = 2}, + [610] = {.lex_state = 12, .external_lex_state = 2}, + [611] = {.lex_state = 5, .external_lex_state = 2}, [612] = {.lex_state = 5, .external_lex_state = 2}, [613] = {.lex_state = 5, .external_lex_state = 2}, - [614] = {.lex_state = 5, .external_lex_state = 2}, + [614] = {.lex_state = 12, .external_lex_state = 2}, [615] = {.lex_state = 5, .external_lex_state = 2}, [616] = {.lex_state = 5, .external_lex_state = 2}, - [617] = {.lex_state = 4, .external_lex_state = 3}, + [617] = {.lex_state = 5, .external_lex_state = 2}, [618] = {.lex_state = 5, .external_lex_state = 2}, - [619] = {.lex_state = 5, .external_lex_state = 2}, + [619] = {.lex_state = 4, .external_lex_state = 3}, [620] = {.lex_state = 5, .external_lex_state = 2}, [621] = {.lex_state = 5, .external_lex_state = 2}, - [622] = {.lex_state = 4, .external_lex_state = 3}, + [622] = {.lex_state = 5, .external_lex_state = 2}, [623] = {.lex_state = 4, .external_lex_state = 3}, [624] = {.lex_state = 4, .external_lex_state = 3}, [625] = {.lex_state = 4, .external_lex_state = 3}, - [626] = {.lex_state = 5, .external_lex_state = 2}, + [626] = {.lex_state = 4, .external_lex_state = 3}, [627] = {.lex_state = 4, .external_lex_state = 3}, [628] = {.lex_state = 4, .external_lex_state = 3}, [629] = {.lex_state = 4, .external_lex_state = 3}, @@ -14002,7 +13988,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [639] = {.lex_state = 4, .external_lex_state = 3}, [640] = {.lex_state = 4, .external_lex_state = 3}, [641] = {.lex_state = 4, .external_lex_state = 3}, - [642] = {.lex_state = 5, .external_lex_state = 2}, + [642] = {.lex_state = 4, .external_lex_state = 3}, [643] = {.lex_state = 4, .external_lex_state = 3}, [644] = {.lex_state = 4, .external_lex_state = 3}, [645] = {.lex_state = 4, .external_lex_state = 3}, @@ -14098,7 +14084,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [735] = {.lex_state = 4, .external_lex_state = 3}, [736] = {.lex_state = 4, .external_lex_state = 3}, [737] = {.lex_state = 4, .external_lex_state = 3}, - [738] = {.lex_state = 4, .external_lex_state = 3}, + [738] = {.lex_state = 5, .external_lex_state = 2}, [739] = {.lex_state = 4, .external_lex_state = 3}, [740] = {.lex_state = 4, .external_lex_state = 3}, [741] = {.lex_state = 4, .external_lex_state = 3}, @@ -14119,20 +14105,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [756] = {.lex_state = 3, .external_lex_state = 3}, [757] = {.lex_state = 3, .external_lex_state = 3}, [758] = {.lex_state = 3, .external_lex_state = 3}, - [759] = {.lex_state = 3, .external_lex_state = 3}, - [760] = {.lex_state = 3, .external_lex_state = 3}, + [759] = {.lex_state = 14, .external_lex_state = 3}, + [760] = {.lex_state = 2, .external_lex_state = 3}, [761] = {.lex_state = 3, .external_lex_state = 3}, - [762] = {.lex_state = 3, .external_lex_state = 3}, - [763] = {.lex_state = 2, .external_lex_state = 3}, - [764] = {.lex_state = 14, .external_lex_state = 3}, - [765] = {.lex_state = 2, .external_lex_state = 3}, - [766] = {.lex_state = 3, .external_lex_state = 3}, - [767] = {.lex_state = 14, .external_lex_state = 3}, - [768] = {.lex_state = 14, .external_lex_state = 3}, + [762] = {.lex_state = 14, .external_lex_state = 3}, + [763] = {.lex_state = 3, .external_lex_state = 3}, + [764] = {.lex_state = 3, .external_lex_state = 3}, + [765] = {.lex_state = 3, .external_lex_state = 3}, + [766] = {.lex_state = 14, .external_lex_state = 3}, + [767] = {.lex_state = 3, .external_lex_state = 3}, + [768] = {.lex_state = 3, .external_lex_state = 3}, [769] = {.lex_state = 3, .external_lex_state = 3}, [770] = {.lex_state = 14, .external_lex_state = 3}, - [771] = {.lex_state = 14, .external_lex_state = 3}, - [772] = {.lex_state = 3, .external_lex_state = 3}, + [771] = {.lex_state = 2, .external_lex_state = 3}, + [772] = {.lex_state = 14, .external_lex_state = 3}, [773] = {.lex_state = 2, .external_lex_state = 3}, [774] = {.lex_state = 2, .external_lex_state = 3}, [775] = {.lex_state = 2, .external_lex_state = 3}, @@ -14145,12 +14131,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [782] = {.lex_state = 14, .external_lex_state = 3}, [783] = {.lex_state = 14, .external_lex_state = 3}, [784] = {.lex_state = 14, .external_lex_state = 3}, - [785] = {.lex_state = 2, .external_lex_state = 3}, + [785] = {.lex_state = 14, .external_lex_state = 3}, [786] = {.lex_state = 14, .external_lex_state = 3}, [787] = {.lex_state = 14, .external_lex_state = 3}, [788] = {.lex_state = 14, .external_lex_state = 3}, - [789] = {.lex_state = 14, .external_lex_state = 3}, - [790] = {.lex_state = 14, .external_lex_state = 3}, + [789] = {.lex_state = 2, .external_lex_state = 3}, + [790] = {.lex_state = 9, .external_lex_state = 3}, [791] = {.lex_state = 14, .external_lex_state = 3}, [792] = {.lex_state = 14, .external_lex_state = 3}, [793] = {.lex_state = 14, .external_lex_state = 3}, @@ -14161,8 +14147,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [798] = {.lex_state = 14, .external_lex_state = 3}, [799] = {.lex_state = 14, .external_lex_state = 3}, [800] = {.lex_state = 14, .external_lex_state = 3}, - [801] = {.lex_state = 14, .external_lex_state = 3}, - [802] = {.lex_state = 9, .external_lex_state = 3}, + [801] = {.lex_state = 2, .external_lex_state = 3}, + [802] = {.lex_state = 2, .external_lex_state = 3}, [803] = {.lex_state = 14, .external_lex_state = 3}, [804] = {.lex_state = 14, .external_lex_state = 3}, [805] = {.lex_state = 14, .external_lex_state = 3}, @@ -14176,39 +14162,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [813] = {.lex_state = 14, .external_lex_state = 3}, [814] = {.lex_state = 14, .external_lex_state = 3}, [815] = {.lex_state = 14, .external_lex_state = 3}, - [816] = {.lex_state = 14, .external_lex_state = 3}, - [817] = {.lex_state = 14, .external_lex_state = 3}, - [818] = {.lex_state = 14, .external_lex_state = 3}, - [819] = {.lex_state = 2, .external_lex_state = 3}, - [820] = {.lex_state = 2, .external_lex_state = 3}, + [816] = {.lex_state = 2, .external_lex_state = 3}, + [817] = {.lex_state = 2, .external_lex_state = 3}, + [818] = {.lex_state = 2, .external_lex_state = 3}, + [819] = {.lex_state = 14, .external_lex_state = 3}, + [820] = {.lex_state = 14, .external_lex_state = 3}, [821] = {.lex_state = 2, .external_lex_state = 3}, - [822] = {.lex_state = 2, .external_lex_state = 3}, + [822] = {.lex_state = 14, .external_lex_state = 3}, [823] = {.lex_state = 14, .external_lex_state = 3}, [824] = {.lex_state = 14, .external_lex_state = 3}, [825] = {.lex_state = 14, .external_lex_state = 3}, [826] = {.lex_state = 14, .external_lex_state = 3}, [827] = {.lex_state = 14, .external_lex_state = 3}, [828] = {.lex_state = 2, .external_lex_state = 3}, - [829] = {.lex_state = 14, .external_lex_state = 3}, + [829] = {.lex_state = 2, .external_lex_state = 3}, [830] = {.lex_state = 14, .external_lex_state = 3}, [831] = {.lex_state = 14, .external_lex_state = 3}, - [832] = {.lex_state = 2, .external_lex_state = 3}, + [832] = {.lex_state = 14, .external_lex_state = 3}, [833] = {.lex_state = 14, .external_lex_state = 3}, [834] = {.lex_state = 14, .external_lex_state = 3}, [835] = {.lex_state = 14, .external_lex_state = 3}, [836] = {.lex_state = 14, .external_lex_state = 3}, - [837] = {.lex_state = 2, .external_lex_state = 3}, + [837] = {.lex_state = 14, .external_lex_state = 3}, [838] = {.lex_state = 14, .external_lex_state = 3}, - [839] = {.lex_state = 14, .external_lex_state = 3}, - [840] = {.lex_state = 14, .external_lex_state = 3}, + [839] = {.lex_state = 2, .external_lex_state = 3}, + [840] = {.lex_state = 2, .external_lex_state = 3}, [841] = {.lex_state = 14, .external_lex_state = 3}, - [842] = {.lex_state = 14, .external_lex_state = 3}, + [842] = {.lex_state = 2, .external_lex_state = 3}, [843] = {.lex_state = 14, .external_lex_state = 3}, [844] = {.lex_state = 14, .external_lex_state = 3}, [845] = {.lex_state = 14, .external_lex_state = 3}, [846] = {.lex_state = 14, .external_lex_state = 3}, - [847] = {.lex_state = 2, .external_lex_state = 3}, - [848] = {.lex_state = 2, .external_lex_state = 3}, + [847] = {.lex_state = 14, .external_lex_state = 3}, + [848] = {.lex_state = 14, .external_lex_state = 3}, [849] = {.lex_state = 14, .external_lex_state = 3}, [850] = {.lex_state = 14, .external_lex_state = 3}, [851] = {.lex_state = 14, .external_lex_state = 3}, @@ -14223,7 +14209,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [860] = {.lex_state = 14, .external_lex_state = 3}, [861] = {.lex_state = 14, .external_lex_state = 3}, [862] = {.lex_state = 14, .external_lex_state = 3}, - [863] = {.lex_state = 2, .external_lex_state = 3}, + [863] = {.lex_state = 14, .external_lex_state = 3}, [864] = {.lex_state = 14, .external_lex_state = 3}, [865] = {.lex_state = 14, .external_lex_state = 3}, [866] = {.lex_state = 14, .external_lex_state = 3}, @@ -14234,18 +14220,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [871] = {.lex_state = 14, .external_lex_state = 3}, [872] = {.lex_state = 14, .external_lex_state = 3}, [873] = {.lex_state = 14, .external_lex_state = 3}, - [874] = {.lex_state = 14, .external_lex_state = 3}, + [874] = {.lex_state = 2, .external_lex_state = 3}, [875] = {.lex_state = 14, .external_lex_state = 3}, [876] = {.lex_state = 14, .external_lex_state = 3}, [877] = {.lex_state = 14, .external_lex_state = 3}, - [878] = {.lex_state = 14, .external_lex_state = 3}, + [878] = {.lex_state = 2, .external_lex_state = 3}, [879] = {.lex_state = 14, .external_lex_state = 3}, [880] = {.lex_state = 14, .external_lex_state = 3}, [881] = {.lex_state = 14, .external_lex_state = 3}, [882] = {.lex_state = 14, .external_lex_state = 3}, - [883] = {.lex_state = 2, .external_lex_state = 3}, + [883] = {.lex_state = 14, .external_lex_state = 3}, [884] = {.lex_state = 14, .external_lex_state = 3}, - [885] = {.lex_state = 14, .external_lex_state = 3}, + [885] = {.lex_state = 2, .external_lex_state = 3}, [886] = {.lex_state = 14, .external_lex_state = 3}, [887] = {.lex_state = 14, .external_lex_state = 3}, [888] = {.lex_state = 14, .external_lex_state = 3}, @@ -14268,21 +14254,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [905] = {.lex_state = 14, .external_lex_state = 3}, [906] = {.lex_state = 14, .external_lex_state = 3}, [907] = {.lex_state = 14, .external_lex_state = 3}, - [908] = {.lex_state = 2, .external_lex_state = 3}, - [909] = {.lex_state = 14, .external_lex_state = 3}, + [908] = {.lex_state = 14, .external_lex_state = 3}, + [909] = {.lex_state = 2, .external_lex_state = 3}, [910] = {.lex_state = 14, .external_lex_state = 3}, [911] = {.lex_state = 14, .external_lex_state = 3}, [912] = {.lex_state = 14, .external_lex_state = 3}, - [913] = {.lex_state = 3, .external_lex_state = 3}, + [913] = {.lex_state = 14, .external_lex_state = 3}, [914] = {.lex_state = 14, .external_lex_state = 3}, - [915] = {.lex_state = 14, .external_lex_state = 3}, - [916] = {.lex_state = 14, .external_lex_state = 3}, - [917] = {.lex_state = 14, .external_lex_state = 3}, - [918] = {.lex_state = 2, .external_lex_state = 3}, + [915] = {.lex_state = 2, .external_lex_state = 3}, + [916] = {.lex_state = 2, .external_lex_state = 3}, + [917] = {.lex_state = 2, .external_lex_state = 3}, + [918] = {.lex_state = 14, .external_lex_state = 3}, [919] = {.lex_state = 14, .external_lex_state = 3}, [920] = {.lex_state = 14, .external_lex_state = 3}, [921] = {.lex_state = 14, .external_lex_state = 3}, - [922] = {.lex_state = 14, .external_lex_state = 3}, + [922] = {.lex_state = 2, .external_lex_state = 3}, [923] = {.lex_state = 14, .external_lex_state = 3}, [924] = {.lex_state = 14, .external_lex_state = 3}, [925] = {.lex_state = 14, .external_lex_state = 3}, @@ -14290,13 +14276,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [927] = {.lex_state = 14, .external_lex_state = 3}, [928] = {.lex_state = 14, .external_lex_state = 3}, [929] = {.lex_state = 2, .external_lex_state = 3}, - [930] = {.lex_state = 2, .external_lex_state = 3}, + [930] = {.lex_state = 14, .external_lex_state = 3}, [931] = {.lex_state = 14, .external_lex_state = 3}, - [932] = {.lex_state = 2, .external_lex_state = 3}, - [933] = {.lex_state = 2, .external_lex_state = 3}, + [932] = {.lex_state = 14, .external_lex_state = 3}, + [933] = {.lex_state = 14, .external_lex_state = 3}, [934] = {.lex_state = 14, .external_lex_state = 3}, [935] = {.lex_state = 14, .external_lex_state = 3}, - [936] = {.lex_state = 14, .external_lex_state = 3}, + [936] = {.lex_state = 2, .external_lex_state = 3}, [937] = {.lex_state = 14, .external_lex_state = 3}, [938] = {.lex_state = 14, .external_lex_state = 3}, [939] = {.lex_state = 14, .external_lex_state = 3}, @@ -14309,10 +14295,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [946] = {.lex_state = 14, .external_lex_state = 3}, [947] = {.lex_state = 14, .external_lex_state = 3}, [948] = {.lex_state = 14, .external_lex_state = 3}, - [949] = {.lex_state = 2, .external_lex_state = 3}, + [949] = {.lex_state = 14, .external_lex_state = 3}, [950] = {.lex_state = 14, .external_lex_state = 3}, [951] = {.lex_state = 14, .external_lex_state = 3}, - [952] = {.lex_state = 2, .external_lex_state = 3}, + [952] = {.lex_state = 14, .external_lex_state = 3}, [953] = {.lex_state = 14, .external_lex_state = 3}, [954] = {.lex_state = 14, .external_lex_state = 3}, [955] = {.lex_state = 14, .external_lex_state = 3}, @@ -14326,37 +14312,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [963] = {.lex_state = 14, .external_lex_state = 3}, [964] = {.lex_state = 14, .external_lex_state = 3}, [965] = {.lex_state = 2, .external_lex_state = 3}, - [966] = {.lex_state = 14, .external_lex_state = 3}, - [967] = {.lex_state = 14, .external_lex_state = 3}, + [966] = {.lex_state = 2, .external_lex_state = 3}, + [967] = {.lex_state = 2, .external_lex_state = 3}, [968] = {.lex_state = 14, .external_lex_state = 3}, - [969] = {.lex_state = 2, .external_lex_state = 3}, + [969] = {.lex_state = 14, .external_lex_state = 3}, [970] = {.lex_state = 14, .external_lex_state = 3}, [971] = {.lex_state = 14, .external_lex_state = 3}, [972] = {.lex_state = 14, .external_lex_state = 3}, [973] = {.lex_state = 14, .external_lex_state = 3}, [974] = {.lex_state = 14, .external_lex_state = 3}, [975] = {.lex_state = 14, .external_lex_state = 3}, - [976] = {.lex_state = 2, .external_lex_state = 3}, + [976] = {.lex_state = 14, .external_lex_state = 3}, [977] = {.lex_state = 14, .external_lex_state = 3}, - [978] = {.lex_state = 2, .external_lex_state = 3}, + [978] = {.lex_state = 14, .external_lex_state = 3}, [979] = {.lex_state = 14, .external_lex_state = 3}, - [980] = {.lex_state = 2, .external_lex_state = 3}, - [981] = {.lex_state = 2, .external_lex_state = 3}, - [982] = {.lex_state = 2, .external_lex_state = 3}, - [983] = {.lex_state = 2, .external_lex_state = 3}, + [980] = {.lex_state = 14, .external_lex_state = 3}, + [981] = {.lex_state = 14, .external_lex_state = 3}, + [982] = {.lex_state = 14, .external_lex_state = 3}, + [983] = {.lex_state = 14, .external_lex_state = 3}, [984] = {.lex_state = 14, .external_lex_state = 3}, [985] = {.lex_state = 14, .external_lex_state = 3}, - [986] = {.lex_state = 2, .external_lex_state = 3}, - [987] = {.lex_state = 14, .external_lex_state = 3}, + [986] = {.lex_state = 14, .external_lex_state = 3}, + [987] = {.lex_state = 2, .external_lex_state = 3}, [988] = {.lex_state = 14, .external_lex_state = 3}, - [989] = {.lex_state = 2, .external_lex_state = 3}, + [989] = {.lex_state = 14, .external_lex_state = 3}, [990] = {.lex_state = 14, .external_lex_state = 3}, - [991] = {.lex_state = 14, .external_lex_state = 3}, - [992] = {.lex_state = 14, .external_lex_state = 3}, - [993] = {.lex_state = 2, .external_lex_state = 3}, + [991] = {.lex_state = 2, .external_lex_state = 3}, + [992] = {.lex_state = 2, .external_lex_state = 3}, + [993] = {.lex_state = 14, .external_lex_state = 3}, [994] = {.lex_state = 14, .external_lex_state = 3}, [995] = {.lex_state = 14, .external_lex_state = 3}, - [996] = {.lex_state = 14, .external_lex_state = 3}, + [996] = {.lex_state = 2, .external_lex_state = 3}, [997] = {.lex_state = 14, .external_lex_state = 3}, [998] = {.lex_state = 14, .external_lex_state = 3}, [999] = {.lex_state = 14, .external_lex_state = 3}, @@ -14369,7 +14355,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1006] = {.lex_state = 14, .external_lex_state = 3}, [1007] = {.lex_state = 14, .external_lex_state = 3}, [1008] = {.lex_state = 14, .external_lex_state = 3}, - [1009] = {.lex_state = 14, .external_lex_state = 3}, + [1009] = {.lex_state = 2, .external_lex_state = 3}, [1010] = {.lex_state = 14, .external_lex_state = 3}, [1011] = {.lex_state = 14, .external_lex_state = 3}, [1012] = {.lex_state = 14, .external_lex_state = 3}, @@ -14378,14 +14364,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1015] = {.lex_state = 14, .external_lex_state = 3}, [1016] = {.lex_state = 14, .external_lex_state = 3}, [1017] = {.lex_state = 14, .external_lex_state = 3}, - [1018] = {.lex_state = 14, .external_lex_state = 3}, + [1018] = {.lex_state = 2, .external_lex_state = 3}, [1019] = {.lex_state = 14, .external_lex_state = 3}, [1020] = {.lex_state = 14, .external_lex_state = 3}, - [1021] = {.lex_state = 2, .external_lex_state = 3}, - [1022] = {.lex_state = 14, .external_lex_state = 3}, + [1021] = {.lex_state = 14, .external_lex_state = 3}, + [1022] = {.lex_state = 2, .external_lex_state = 3}, [1023] = {.lex_state = 14, .external_lex_state = 3}, [1024] = {.lex_state = 14, .external_lex_state = 3}, - [1025] = {.lex_state = 14, .external_lex_state = 3}, + [1025] = {.lex_state = 2, .external_lex_state = 3}, [1026] = {.lex_state = 14, .external_lex_state = 3}, [1027] = {.lex_state = 14, .external_lex_state = 3}, [1028] = {.lex_state = 14, .external_lex_state = 3}, @@ -14394,9 +14380,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1031] = {.lex_state = 14, .external_lex_state = 3}, [1032] = {.lex_state = 14, .external_lex_state = 3}, [1033] = {.lex_state = 14, .external_lex_state = 3}, - [1034] = {.lex_state = 2, .external_lex_state = 3}, + [1034] = {.lex_state = 14, .external_lex_state = 3}, [1035] = {.lex_state = 14, .external_lex_state = 3}, - [1036] = {.lex_state = 14, .external_lex_state = 3}, + [1036] = {.lex_state = 3, .external_lex_state = 3}, [1037] = {.lex_state = 14, .external_lex_state = 3}, [1038] = {.lex_state = 2, .external_lex_state = 3}, [1039] = {.lex_state = 2, .external_lex_state = 3}, @@ -14405,12 +14391,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1042] = {.lex_state = 2, .external_lex_state = 3}, [1043] = {.lex_state = 2, .external_lex_state = 3}, [1044] = {.lex_state = 2, .external_lex_state = 3}, - [1045] = {.lex_state = 2, .external_lex_state = 3}, + [1045] = {.lex_state = 4, .external_lex_state = 3}, [1046] = {.lex_state = 2, .external_lex_state = 3}, [1047] = {.lex_state = 2, .external_lex_state = 3}, [1048] = {.lex_state = 2, .external_lex_state = 3}, [1049] = {.lex_state = 2, .external_lex_state = 3}, - [1050] = {.lex_state = 5, .external_lex_state = 2}, + [1050] = {.lex_state = 2, .external_lex_state = 3}, [1051] = {.lex_state = 2, .external_lex_state = 3}, [1052] = {.lex_state = 2, .external_lex_state = 3}, [1053] = {.lex_state = 2, .external_lex_state = 3}, @@ -14420,48 +14406,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1057] = {.lex_state = 2, .external_lex_state = 3}, [1058] = {.lex_state = 2, .external_lex_state = 3}, [1059] = {.lex_state = 2, .external_lex_state = 3}, - [1060] = {.lex_state = 2, .external_lex_state = 3}, + [1060] = {.lex_state = 4, .external_lex_state = 3}, [1061] = {.lex_state = 2, .external_lex_state = 3}, [1062] = {.lex_state = 2, .external_lex_state = 3}, - [1063] = {.lex_state = 4, .external_lex_state = 3}, + [1063] = {.lex_state = 2, .external_lex_state = 3}, [1064] = {.lex_state = 2, .external_lex_state = 3}, [1065] = {.lex_state = 2, .external_lex_state = 3}, - [1066] = {.lex_state = 5, .external_lex_state = 2}, + [1066] = {.lex_state = 2, .external_lex_state = 3}, [1067] = {.lex_state = 2, .external_lex_state = 3}, [1068] = {.lex_state = 2, .external_lex_state = 3}, [1069] = {.lex_state = 2, .external_lex_state = 3}, [1070] = {.lex_state = 2, .external_lex_state = 3}, - [1071] = {.lex_state = 2, .external_lex_state = 3}, + [1071] = {.lex_state = 4, .external_lex_state = 3}, [1072] = {.lex_state = 2, .external_lex_state = 3}, - [1073] = {.lex_state = 2, .external_lex_state = 3}, + [1073] = {.lex_state = 4, .external_lex_state = 3}, [1074] = {.lex_state = 2, .external_lex_state = 3}, [1075] = {.lex_state = 2, .external_lex_state = 3}, - [1076] = {.lex_state = 4, .external_lex_state = 3}, + [1076] = {.lex_state = 2, .external_lex_state = 3}, [1077] = {.lex_state = 2, .external_lex_state = 3}, - [1078] = {.lex_state = 4, .external_lex_state = 3}, + [1078] = {.lex_state = 2, .external_lex_state = 3}, [1079] = {.lex_state = 2, .external_lex_state = 3}, [1080] = {.lex_state = 2, .external_lex_state = 3}, [1081] = {.lex_state = 2, .external_lex_state = 3}, [1082] = {.lex_state = 2, .external_lex_state = 3}, [1083] = {.lex_state = 2, .external_lex_state = 3}, - [1084] = {.lex_state = 2, .external_lex_state = 3}, + [1084] = {.lex_state = 4, .external_lex_state = 3}, [1085] = {.lex_state = 2, .external_lex_state = 3}, - [1086] = {.lex_state = 2, .external_lex_state = 3}, + [1086] = {.lex_state = 4, .external_lex_state = 3}, [1087] = {.lex_state = 2, .external_lex_state = 3}, [1088] = {.lex_state = 2, .external_lex_state = 3}, [1089] = {.lex_state = 2, .external_lex_state = 3}, - [1090] = {.lex_state = 2, .external_lex_state = 3}, + [1090] = {.lex_state = 5, .external_lex_state = 2}, [1091] = {.lex_state = 2, .external_lex_state = 3}, [1092] = {.lex_state = 2, .external_lex_state = 3}, - [1093] = {.lex_state = 2, .external_lex_state = 3}, + [1093] = {.lex_state = 4, .external_lex_state = 3}, [1094] = {.lex_state = 2, .external_lex_state = 3}, [1095] = {.lex_state = 2, .external_lex_state = 3}, [1096] = {.lex_state = 2, .external_lex_state = 3}, [1097] = {.lex_state = 2, .external_lex_state = 3}, [1098] = {.lex_state = 2, .external_lex_state = 3}, [1099] = {.lex_state = 2, .external_lex_state = 3}, - [1100] = {.lex_state = 2, .external_lex_state = 3}, - [1101] = {.lex_state = 4, .external_lex_state = 3}, + [1100] = {.lex_state = 4, .external_lex_state = 3}, + [1101] = {.lex_state = 2, .external_lex_state = 3}, [1102] = {.lex_state = 2, .external_lex_state = 3}, [1103] = {.lex_state = 2, .external_lex_state = 3}, [1104] = {.lex_state = 2, .external_lex_state = 3}, @@ -14471,7 +14457,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1108] = {.lex_state = 2, .external_lex_state = 3}, [1109] = {.lex_state = 2, .external_lex_state = 3}, [1110] = {.lex_state = 2, .external_lex_state = 3}, - [1111] = {.lex_state = 4, .external_lex_state = 3}, + [1111] = {.lex_state = 2, .external_lex_state = 3}, [1112] = {.lex_state = 2, .external_lex_state = 3}, [1113] = {.lex_state = 2, .external_lex_state = 3}, [1114] = {.lex_state = 2, .external_lex_state = 3}, @@ -14481,37 +14467,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1118] = {.lex_state = 2, .external_lex_state = 3}, [1119] = {.lex_state = 2, .external_lex_state = 3}, [1120] = {.lex_state = 2, .external_lex_state = 3}, - [1121] = {.lex_state = 4, .external_lex_state = 3}, + [1121] = {.lex_state = 2, .external_lex_state = 3}, [1122] = {.lex_state = 2, .external_lex_state = 3}, [1123] = {.lex_state = 2, .external_lex_state = 3}, [1124] = {.lex_state = 2, .external_lex_state = 3}, [1125] = {.lex_state = 2, .external_lex_state = 3}, [1126] = {.lex_state = 2, .external_lex_state = 3}, - [1127] = {.lex_state = 4, .external_lex_state = 3}, - [1128] = {.lex_state = 4, .external_lex_state = 3}, + [1127] = {.lex_state = 5, .external_lex_state = 2}, + [1128] = {.lex_state = 2, .external_lex_state = 3}, [1129] = {.lex_state = 2, .external_lex_state = 3}, - [1130] = {.lex_state = 2, .external_lex_state = 3}, + [1130] = {.lex_state = 4, .external_lex_state = 3}, [1131] = {.lex_state = 2, .external_lex_state = 3}, - [1132] = {.lex_state = 4, .external_lex_state = 3}, + [1132] = {.lex_state = 2, .external_lex_state = 3}, [1133] = {.lex_state = 2, .external_lex_state = 3}, [1134] = {.lex_state = 2, .external_lex_state = 3}, [1135] = {.lex_state = 2, .external_lex_state = 3}, [1136] = {.lex_state = 2, .external_lex_state = 3}, [1137] = {.lex_state = 2, .external_lex_state = 3}, - [1138] = {.lex_state = 2, .external_lex_state = 3}, + [1138] = {.lex_state = 5, .external_lex_state = 2}, [1139] = {.lex_state = 2, .external_lex_state = 3}, [1140] = {.lex_state = 2, .external_lex_state = 3}, [1141] = {.lex_state = 2, .external_lex_state = 3}, - [1142] = {.lex_state = 2, .external_lex_state = 3}, + [1142] = {.lex_state = 5, .external_lex_state = 2}, [1143] = {.lex_state = 2, .external_lex_state = 3}, [1144] = {.lex_state = 2, .external_lex_state = 3}, [1145] = {.lex_state = 2, .external_lex_state = 3}, [1146] = {.lex_state = 2, .external_lex_state = 3}, [1147] = {.lex_state = 2, .external_lex_state = 3}, - [1148] = {.lex_state = 5, .external_lex_state = 2}, + [1148] = {.lex_state = 2, .external_lex_state = 3}, [1149] = {.lex_state = 2, .external_lex_state = 3}, [1150] = {.lex_state = 2, .external_lex_state = 3}, - [1151] = {.lex_state = 5, .external_lex_state = 2}, + [1151] = {.lex_state = 2, .external_lex_state = 3}, [1152] = {.lex_state = 2, .external_lex_state = 3}, [1153] = {.lex_state = 2, .external_lex_state = 3}, [1154] = {.lex_state = 2, .external_lex_state = 3}, @@ -14519,14 +14505,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1156] = {.lex_state = 2, .external_lex_state = 3}, [1157] = {.lex_state = 2, .external_lex_state = 3}, [1158] = {.lex_state = 4, .external_lex_state = 3}, - [1159] = {.lex_state = 5, .external_lex_state = 2}, + [1159] = {.lex_state = 4, .external_lex_state = 3}, [1160] = {.lex_state = 4, .external_lex_state = 3}, [1161] = {.lex_state = 4, .external_lex_state = 3}, - [1162] = {.lex_state = 2, .external_lex_state = 3}, + [1162] = {.lex_state = 4, .external_lex_state = 3}, [1163] = {.lex_state = 4, .external_lex_state = 3}, [1164] = {.lex_state = 4, .external_lex_state = 3}, - [1165] = {.lex_state = 4, .external_lex_state = 3}, - [1166] = {.lex_state = 4, .external_lex_state = 3}, + [1165] = {.lex_state = 2, .external_lex_state = 3}, + [1166] = {.lex_state = 5, .external_lex_state = 2}, [1167] = {.lex_state = 4, .external_lex_state = 3}, [1168] = {.lex_state = 5, .external_lex_state = 2}, [1169] = {.lex_state = 5, .external_lex_state = 2}, @@ -14534,27 +14520,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1171] = {.lex_state = 5, .external_lex_state = 2}, [1172] = {.lex_state = 2, .external_lex_state = 3}, [1173] = {.lex_state = 2, .external_lex_state = 3}, - [1174] = {.lex_state = 4, .external_lex_state = 3}, + [1174] = {.lex_state = 2, .external_lex_state = 3}, [1175] = {.lex_state = 4, .external_lex_state = 3}, - [1176] = {.lex_state = 2, .external_lex_state = 3}, + [1176] = {.lex_state = 4, .external_lex_state = 3}, [1177] = {.lex_state = 4, .external_lex_state = 3}, - [1178] = {.lex_state = 4, .external_lex_state = 3}, + [1178] = {.lex_state = 2, .external_lex_state = 3}, [1179] = {.lex_state = 2, .external_lex_state = 3}, - [1180] = {.lex_state = 4, .external_lex_state = 3}, - [1181] = {.lex_state = 5, .external_lex_state = 2}, - [1182] = {.lex_state = 2, .external_lex_state = 3}, + [1180] = {.lex_state = 2, .external_lex_state = 3}, + [1181] = {.lex_state = 4, .external_lex_state = 3}, + [1182] = {.lex_state = 4, .external_lex_state = 3}, [1183] = {.lex_state = 2, .external_lex_state = 3}, - [1184] = {.lex_state = 4, .external_lex_state = 3}, + [1184] = {.lex_state = 2, .external_lex_state = 3}, [1185] = {.lex_state = 4, .external_lex_state = 3}, - [1186] = {.lex_state = 2, .external_lex_state = 3}, + [1186] = {.lex_state = 4, .external_lex_state = 3}, [1187] = {.lex_state = 2, .external_lex_state = 3}, - [1188] = {.lex_state = 2, .external_lex_state = 3}, + [1188] = {.lex_state = 5, .external_lex_state = 2}, [1189] = {.lex_state = 2, .external_lex_state = 3}, [1190] = {.lex_state = 2, .external_lex_state = 3}, [1191] = {.lex_state = 4, .external_lex_state = 3}, [1192] = {.lex_state = 2, .external_lex_state = 3}, - [1193] = {.lex_state = 2, .external_lex_state = 3}, - [1194] = {.lex_state = 4, .external_lex_state = 3}, + [1193] = {.lex_state = 4, .external_lex_state = 3}, + [1194] = {.lex_state = 2, .external_lex_state = 3}, [1195] = {.lex_state = 2, .external_lex_state = 3}, [1196] = {.lex_state = 2, .external_lex_state = 3}, [1197] = {.lex_state = 2, .external_lex_state = 3}, @@ -14600,7 +14586,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1237] = {.lex_state = 2, .external_lex_state = 3}, [1238] = {.lex_state = 2, .external_lex_state = 3}, [1239] = {.lex_state = 2, .external_lex_state = 3}, - [1240] = {.lex_state = 2, .external_lex_state = 3}, + [1240] = {.lex_state = 4, .external_lex_state = 3}, [1241] = {.lex_state = 2, .external_lex_state = 3}, [1242] = {.lex_state = 2, .external_lex_state = 3}, [1243] = {.lex_state = 2, .external_lex_state = 3}, @@ -14615,7 +14601,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1252] = {.lex_state = 2, .external_lex_state = 3}, [1253] = {.lex_state = 2, .external_lex_state = 3}, [1254] = {.lex_state = 2, .external_lex_state = 3}, - [1255] = {.lex_state = 4, .external_lex_state = 3}, + [1255] = {.lex_state = 2, .external_lex_state = 3}, [1256] = {.lex_state = 2, .external_lex_state = 3}, [1257] = {.lex_state = 2, .external_lex_state = 3}, [1258] = {.lex_state = 2, .external_lex_state = 3}, @@ -14624,7 +14610,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1261] = {.lex_state = 2, .external_lex_state = 3}, [1262] = {.lex_state = 2, .external_lex_state = 3}, [1263] = {.lex_state = 2, .external_lex_state = 3}, - [1264] = {.lex_state = 4, .external_lex_state = 3}, + [1264] = {.lex_state = 2, .external_lex_state = 3}, [1265] = {.lex_state = 2, .external_lex_state = 3}, [1266] = {.lex_state = 2, .external_lex_state = 3}, [1267] = {.lex_state = 2, .external_lex_state = 3}, @@ -14645,7 +14631,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1282] = {.lex_state = 2, .external_lex_state = 3}, [1283] = {.lex_state = 2, .external_lex_state = 3}, [1284] = {.lex_state = 2, .external_lex_state = 3}, - [1285] = {.lex_state = 4, .external_lex_state = 3}, + [1285] = {.lex_state = 2, .external_lex_state = 3}, [1286] = {.lex_state = 2, .external_lex_state = 3}, [1287] = {.lex_state = 2, .external_lex_state = 3}, [1288] = {.lex_state = 2, .external_lex_state = 3}, @@ -14653,14 +14639,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1290] = {.lex_state = 2, .external_lex_state = 3}, [1291] = {.lex_state = 2, .external_lex_state = 3}, [1292] = {.lex_state = 2, .external_lex_state = 3}, - [1293] = {.lex_state = 2, .external_lex_state = 3}, + [1293] = {.lex_state = 4, .external_lex_state = 3}, [1294] = {.lex_state = 2, .external_lex_state = 3}, [1295] = {.lex_state = 2, .external_lex_state = 3}, [1296] = {.lex_state = 2, .external_lex_state = 3}, [1297] = {.lex_state = 2, .external_lex_state = 3}, [1298] = {.lex_state = 2, .external_lex_state = 3}, [1299] = {.lex_state = 2, .external_lex_state = 3}, - [1300] = {.lex_state = 2, .external_lex_state = 3}, + [1300] = {.lex_state = 4, .external_lex_state = 3}, [1301] = {.lex_state = 4, .external_lex_state = 3}, [1302] = {.lex_state = 4, .external_lex_state = 3}, [1303] = {.lex_state = 4, .external_lex_state = 3}, @@ -14687,61 +14673,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1324] = {.lex_state = 8, .external_lex_state = 3}, [1325] = {.lex_state = 4, .external_lex_state = 3}, [1326] = {.lex_state = 18, .external_lex_state = 3}, - [1327] = {.lex_state = 4, .external_lex_state = 3}, - [1328] = {.lex_state = 18, .external_lex_state = 3}, + [1327] = {.lex_state = 18, .external_lex_state = 3}, + [1328] = {.lex_state = 4, .external_lex_state = 3}, [1329] = {.lex_state = 4, .external_lex_state = 3}, [1330] = {.lex_state = 18, .external_lex_state = 3}, [1331] = {.lex_state = 4, .external_lex_state = 3}, [1332] = {.lex_state = 4, .external_lex_state = 3}, [1333] = {.lex_state = 18, .external_lex_state = 3}, - [1334] = {.lex_state = 4, .external_lex_state = 3}, + [1334] = {.lex_state = 18, .external_lex_state = 3}, [1335] = {.lex_state = 4, .external_lex_state = 3}, [1336] = {.lex_state = 18, .external_lex_state = 3}, - [1337] = {.lex_state = 18, .external_lex_state = 3}, + [1337] = {.lex_state = 4, .external_lex_state = 3}, [1338] = {.lex_state = 18, .external_lex_state = 3}, [1339] = {.lex_state = 18, .external_lex_state = 3}, [1340] = {.lex_state = 4, .external_lex_state = 3}, [1341] = {.lex_state = 4, .external_lex_state = 3}, [1342] = {.lex_state = 4, .external_lex_state = 3}, - [1343] = {.lex_state = 4, .external_lex_state = 3}, - [1344] = {.lex_state = 4, .external_lex_state = 3}, - [1345] = {.lex_state = 4, .external_lex_state = 3}, - [1346] = {.lex_state = 18, .external_lex_state = 3}, + [1343] = {.lex_state = 8, .external_lex_state = 3}, + [1344] = {.lex_state = 8, .external_lex_state = 3}, + [1345] = {.lex_state = 18, .external_lex_state = 3}, + [1346] = {.lex_state = 4, .external_lex_state = 3}, [1347] = {.lex_state = 4, .external_lex_state = 3}, - [1348] = {.lex_state = 4, .external_lex_state = 3}, + [1348] = {.lex_state = 8, .external_lex_state = 3}, [1349] = {.lex_state = 4, .external_lex_state = 3}, - [1350] = {.lex_state = 8, .external_lex_state = 3}, - [1351] = {.lex_state = 8, .external_lex_state = 3}, + [1350] = {.lex_state = 4, .external_lex_state = 3}, + [1351] = {.lex_state = 4, .external_lex_state = 3}, [1352] = {.lex_state = 4, .external_lex_state = 3}, - [1353] = {.lex_state = 8, .external_lex_state = 3}, + [1353] = {.lex_state = 4, .external_lex_state = 3}, [1354] = {.lex_state = 18, .external_lex_state = 3}, - [1355] = {.lex_state = 4, .external_lex_state = 3}, + [1355] = {.lex_state = 18, .external_lex_state = 3}, [1356] = {.lex_state = 18, .external_lex_state = 3}, [1357] = {.lex_state = 4, .external_lex_state = 3}, - [1358] = {.lex_state = 4, .external_lex_state = 3}, - [1359] = {.lex_state = 18, .external_lex_state = 3}, - [1360] = {.lex_state = 18, .external_lex_state = 3}, - [1361] = {.lex_state = 4, .external_lex_state = 3}, - [1362] = {.lex_state = 18, .external_lex_state = 3}, + [1358] = {.lex_state = 18, .external_lex_state = 3}, + [1359] = {.lex_state = 4, .external_lex_state = 3}, + [1360] = {.lex_state = 8, .external_lex_state = 3}, + [1361] = {.lex_state = 18, .external_lex_state = 3}, + [1362] = {.lex_state = 4, .external_lex_state = 3}, [1363] = {.lex_state = 4, .external_lex_state = 3}, [1364] = {.lex_state = 18, .external_lex_state = 3}, - [1365] = {.lex_state = 18, .external_lex_state = 3}, - [1366] = {.lex_state = 18, .external_lex_state = 3}, - [1367] = {.lex_state = 8, .external_lex_state = 3}, + [1365] = {.lex_state = 4, .external_lex_state = 3}, + [1366] = {.lex_state = 4, .external_lex_state = 3}, + [1367] = {.lex_state = 4, .external_lex_state = 3}, [1368] = {.lex_state = 18, .external_lex_state = 3}, [1369] = {.lex_state = 18, .external_lex_state = 3}, - [1370] = {.lex_state = 4, .external_lex_state = 3}, - [1371] = {.lex_state = 4, .external_lex_state = 3}, + [1370] = {.lex_state = 18, .external_lex_state = 3}, + [1371] = {.lex_state = 18, .external_lex_state = 3}, [1372] = {.lex_state = 18, .external_lex_state = 3}, [1373] = {.lex_state = 18, .external_lex_state = 3}, [1374] = {.lex_state = 18, .external_lex_state = 3}, [1375] = {.lex_state = 18, .external_lex_state = 3}, [1376] = {.lex_state = 18, .external_lex_state = 3}, - [1377] = {.lex_state = 18, .external_lex_state = 3}, + [1377] = {.lex_state = 4, .external_lex_state = 3}, [1378] = {.lex_state = 18, .external_lex_state = 3}, [1379] = {.lex_state = 18, .external_lex_state = 3}, [1380] = {.lex_state = 18, .external_lex_state = 3}, - [1381] = {.lex_state = 4, .external_lex_state = 3}, + [1381] = {.lex_state = 18, .external_lex_state = 3}, [1382] = {.lex_state = 18, .external_lex_state = 3}, [1383] = {.lex_state = 18, .external_lex_state = 3}, [1384] = {.lex_state = 18, .external_lex_state = 3}, @@ -14764,135 +14750,135 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1401] = {.lex_state = 18, .external_lex_state = 3}, [1402] = {.lex_state = 8, .external_lex_state = 3}, [1403] = {.lex_state = 8, .external_lex_state = 3}, - [1404] = {.lex_state = 18, .external_lex_state = 3}, + [1404] = {.lex_state = 4, .external_lex_state = 3}, [1405] = {.lex_state = 4, .external_lex_state = 3}, - [1406] = {.lex_state = 8, .external_lex_state = 3}, - [1407] = {.lex_state = 4, .external_lex_state = 3}, - [1408] = {.lex_state = 8, .external_lex_state = 3}, + [1406] = {.lex_state = 18, .external_lex_state = 3}, + [1407] = {.lex_state = 18, .external_lex_state = 3}, + [1408] = {.lex_state = 4, .external_lex_state = 3}, [1409] = {.lex_state = 4, .external_lex_state = 3}, - [1410] = {.lex_state = 4, .external_lex_state = 3}, - [1411] = {.lex_state = 8, .external_lex_state = 3}, - [1412] = {.lex_state = 8, .external_lex_state = 3}, + [1410] = {.lex_state = 18, .external_lex_state = 3}, + [1411] = {.lex_state = 4, .external_lex_state = 3}, + [1412] = {.lex_state = 4, .external_lex_state = 3}, [1413] = {.lex_state = 4, .external_lex_state = 3}, - [1414] = {.lex_state = 8, .external_lex_state = 3}, - [1415] = {.lex_state = 4, .external_lex_state = 3}, - [1416] = {.lex_state = 4, .external_lex_state = 3}, - [1417] = {.lex_state = 18, .external_lex_state = 3}, + [1414] = {.lex_state = 4, .external_lex_state = 3}, + [1415] = {.lex_state = 8, .external_lex_state = 3}, + [1416] = {.lex_state = 8, .external_lex_state = 3}, + [1417] = {.lex_state = 8, .external_lex_state = 3}, [1418] = {.lex_state = 8, .external_lex_state = 3}, - [1419] = {.lex_state = 4, .external_lex_state = 3}, + [1419] = {.lex_state = 8, .external_lex_state = 3}, [1420] = {.lex_state = 8, .external_lex_state = 3}, [1421] = {.lex_state = 8, .external_lex_state = 3}, - [1422] = {.lex_state = 18, .external_lex_state = 3}, + [1422] = {.lex_state = 8, .external_lex_state = 3}, [1423] = {.lex_state = 8, .external_lex_state = 3}, [1424] = {.lex_state = 8, .external_lex_state = 3}, - [1425] = {.lex_state = 8, .external_lex_state = 3}, - [1426] = {.lex_state = 18, .external_lex_state = 3}, - [1427] = {.lex_state = 18, .external_lex_state = 3}, - [1428] = {.lex_state = 13, .external_lex_state = 3}, - [1429] = {.lex_state = 8, .external_lex_state = 3}, - [1430] = {.lex_state = 18, .external_lex_state = 3}, - [1431] = {.lex_state = 18, .external_lex_state = 3}, - [1432] = {.lex_state = 8, .external_lex_state = 3}, - [1433] = {.lex_state = 18, .external_lex_state = 3}, - [1434] = {.lex_state = 8, .external_lex_state = 3}, + [1425] = {.lex_state = 18, .external_lex_state = 3}, + [1426] = {.lex_state = 13, .external_lex_state = 3}, + [1427] = {.lex_state = 4, .external_lex_state = 3}, + [1428] = {.lex_state = 18, .external_lex_state = 3}, + [1429] = {.lex_state = 18, .external_lex_state = 3}, + [1430] = {.lex_state = 8, .external_lex_state = 3}, + [1431] = {.lex_state = 8, .external_lex_state = 3}, + [1432] = {.lex_state = 18, .external_lex_state = 3}, + [1433] = {.lex_state = 8, .external_lex_state = 3}, + [1434] = {.lex_state = 18, .external_lex_state = 3}, [1435] = {.lex_state = 18, .external_lex_state = 3}, - [1436] = {.lex_state = 18, .external_lex_state = 3}, - [1437] = {.lex_state = 18, .external_lex_state = 3}, + [1436] = {.lex_state = 8, .external_lex_state = 3}, + [1437] = {.lex_state = 13, .external_lex_state = 3}, [1438] = {.lex_state = 18, .external_lex_state = 3}, [1439] = {.lex_state = 18, .external_lex_state = 3}, [1440] = {.lex_state = 4, .external_lex_state = 3}, [1441] = {.lex_state = 18, .external_lex_state = 3}, [1442] = {.lex_state = 18, .external_lex_state = 3}, [1443] = {.lex_state = 18, .external_lex_state = 3}, - [1444] = {.lex_state = 18, .external_lex_state = 3}, + [1444] = {.lex_state = 8, .external_lex_state = 3}, [1445] = {.lex_state = 18, .external_lex_state = 3}, [1446] = {.lex_state = 18, .external_lex_state = 3}, - [1447] = {.lex_state = 13, .external_lex_state = 3}, - [1448] = {.lex_state = 18, .external_lex_state = 3}, + [1447] = {.lex_state = 18, .external_lex_state = 3}, + [1448] = {.lex_state = 8, .external_lex_state = 3}, [1449] = {.lex_state = 18, .external_lex_state = 3}, [1450] = {.lex_state = 18, .external_lex_state = 3}, [1451] = {.lex_state = 8, .external_lex_state = 3}, [1452] = {.lex_state = 18, .external_lex_state = 3}, - [1453] = {.lex_state = 18, .external_lex_state = 3}, + [1453] = {.lex_state = 13, .external_lex_state = 3}, [1454] = {.lex_state = 18, .external_lex_state = 3}, [1455] = {.lex_state = 18, .external_lex_state = 3}, [1456] = {.lex_state = 18, .external_lex_state = 3}, [1457] = {.lex_state = 18, .external_lex_state = 3}, [1458] = {.lex_state = 18, .external_lex_state = 3}, - [1459] = {.lex_state = 18, .external_lex_state = 3}, + [1459] = {.lex_state = 8, .external_lex_state = 3}, [1460] = {.lex_state = 18, .external_lex_state = 3}, [1461] = {.lex_state = 13, .external_lex_state = 3}, [1462] = {.lex_state = 18, .external_lex_state = 3}, - [1463] = {.lex_state = 13, .external_lex_state = 3}, + [1463] = {.lex_state = 18, .external_lex_state = 3}, [1464] = {.lex_state = 18, .external_lex_state = 3}, - [1465] = {.lex_state = 8, .external_lex_state = 3}, - [1466] = {.lex_state = 8, .external_lex_state = 3}, + [1465] = {.lex_state = 18, .external_lex_state = 3}, + [1466] = {.lex_state = 18, .external_lex_state = 3}, [1467] = {.lex_state = 18, .external_lex_state = 3}, - [1468] = {.lex_state = 8, .external_lex_state = 3}, - [1469] = {.lex_state = 4, .external_lex_state = 3}, - [1470] = {.lex_state = 4, .external_lex_state = 3}, + [1468] = {.lex_state = 18, .external_lex_state = 3}, + [1469] = {.lex_state = 18, .external_lex_state = 3}, + [1470] = {.lex_state = 8, .external_lex_state = 3}, [1471] = {.lex_state = 4, .external_lex_state = 3}, - [1472] = {.lex_state = 18, .external_lex_state = 3}, + [1472] = {.lex_state = 4, .external_lex_state = 3}, [1473] = {.lex_state = 4, .external_lex_state = 3}, - [1474] = {.lex_state = 4, .external_lex_state = 3}, - [1475] = {.lex_state = 15, .external_lex_state = 3}, + [1474] = {.lex_state = 15, .external_lex_state = 3}, + [1475] = {.lex_state = 4, .external_lex_state = 3}, [1476] = {.lex_state = 4, .external_lex_state = 3}, [1477] = {.lex_state = 4, .external_lex_state = 3}, - [1478] = {.lex_state = 4, .external_lex_state = 3}, - [1479] = {.lex_state = 8, .external_lex_state = 3}, + [1478] = {.lex_state = 18, .external_lex_state = 3}, + [1479] = {.lex_state = 4, .external_lex_state = 3}, [1480] = {.lex_state = 4, .external_lex_state = 3}, [1481] = {.lex_state = 4, .external_lex_state = 3}, [1482] = {.lex_state = 4, .external_lex_state = 3}, - [1483] = {.lex_state = 15, .external_lex_state = 3}, + [1483] = {.lex_state = 4, .external_lex_state = 3}, [1484] = {.lex_state = 4, .external_lex_state = 3}, - [1485] = {.lex_state = 4, .external_lex_state = 3}, + [1485] = {.lex_state = 18, .external_lex_state = 3}, [1486] = {.lex_state = 4, .external_lex_state = 3}, - [1487] = {.lex_state = 18, .external_lex_state = 3}, - [1488] = {.lex_state = 15, .external_lex_state = 3}, + [1487] = {.lex_state = 4, .external_lex_state = 3}, + [1488] = {.lex_state = 4, .external_lex_state = 3}, [1489] = {.lex_state = 4, .external_lex_state = 3}, [1490] = {.lex_state = 4, .external_lex_state = 3}, [1491] = {.lex_state = 4, .external_lex_state = 3}, [1492] = {.lex_state = 4, .external_lex_state = 3}, - [1493] = {.lex_state = 18, .external_lex_state = 3}, + [1493] = {.lex_state = 15, .external_lex_state = 3}, [1494] = {.lex_state = 18, .external_lex_state = 3}, [1495] = {.lex_state = 4, .external_lex_state = 3}, - [1496] = {.lex_state = 18, .external_lex_state = 3}, - [1497] = {.lex_state = 4, .external_lex_state = 3}, + [1496] = {.lex_state = 4, .external_lex_state = 3}, + [1497] = {.lex_state = 18, .external_lex_state = 3}, [1498] = {.lex_state = 4, .external_lex_state = 3}, [1499] = {.lex_state = 4, .external_lex_state = 3}, - [1500] = {.lex_state = 18, .external_lex_state = 3}, + [1500] = {.lex_state = 4, .external_lex_state = 3}, [1501] = {.lex_state = 4, .external_lex_state = 3}, - [1502] = {.lex_state = 4, .external_lex_state = 3}, + [1502] = {.lex_state = 15, .external_lex_state = 3}, [1503] = {.lex_state = 4, .external_lex_state = 3}, - [1504] = {.lex_state = 4, .external_lex_state = 3}, + [1504] = {.lex_state = 18, .external_lex_state = 3}, [1505] = {.lex_state = 4, .external_lex_state = 3}, [1506] = {.lex_state = 4, .external_lex_state = 3}, [1507] = {.lex_state = 4, .external_lex_state = 3}, [1508] = {.lex_state = 4, .external_lex_state = 3}, [1509] = {.lex_state = 4, .external_lex_state = 3}, - [1510] = {.lex_state = 18, .external_lex_state = 3}, + [1510] = {.lex_state = 4, .external_lex_state = 3}, [1511] = {.lex_state = 4, .external_lex_state = 3}, [1512] = {.lex_state = 4, .external_lex_state = 3}, [1513] = {.lex_state = 4, .external_lex_state = 3}, [1514] = {.lex_state = 4, .external_lex_state = 3}, [1515] = {.lex_state = 4, .external_lex_state = 3}, - [1516] = {.lex_state = 4, .external_lex_state = 3}, - [1517] = {.lex_state = 4, .external_lex_state = 3}, + [1516] = {.lex_state = 18, .external_lex_state = 3}, + [1517] = {.lex_state = 18, .external_lex_state = 3}, [1518] = {.lex_state = 4, .external_lex_state = 3}, [1519] = {.lex_state = 18, .external_lex_state = 3}, - [1520] = {.lex_state = 4, .external_lex_state = 3}, + [1520] = {.lex_state = 18, .external_lex_state = 3}, [1521] = {.lex_state = 4, .external_lex_state = 3}, - [1522] = {.lex_state = 18, .external_lex_state = 3}, - [1523] = {.lex_state = 4, .external_lex_state = 3}, + [1522] = {.lex_state = 4, .external_lex_state = 3}, + [1523] = {.lex_state = 15, .external_lex_state = 3}, [1524] = {.lex_state = 4, .external_lex_state = 3}, [1525] = {.lex_state = 4, .external_lex_state = 3}, - [1526] = {.lex_state = 15, .external_lex_state = 3}, + [1526] = {.lex_state = 4, .external_lex_state = 3}, [1527] = {.lex_state = 4, .external_lex_state = 3}, [1528] = {.lex_state = 4, .external_lex_state = 3}, - [1529] = {.lex_state = 15, .external_lex_state = 3}, + [1529] = {.lex_state = 4, .external_lex_state = 3}, [1530] = {.lex_state = 4, .external_lex_state = 3}, [1531] = {.lex_state = 4, .external_lex_state = 3}, - [1532] = {.lex_state = 15, .external_lex_state = 3}, + [1532] = {.lex_state = 0, .external_lex_state = 3}, [1533] = {.lex_state = 4, .external_lex_state = 3}, [1534] = {.lex_state = 4, .external_lex_state = 3}, [1535] = {.lex_state = 4, .external_lex_state = 3}, @@ -14904,858 +14890,858 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1541] = {.lex_state = 4, .external_lex_state = 3}, [1542] = {.lex_state = 4, .external_lex_state = 3}, [1543] = {.lex_state = 4, .external_lex_state = 3}, - [1544] = {.lex_state = 15, .external_lex_state = 3}, + [1544] = {.lex_state = 13, .external_lex_state = 3}, [1545] = {.lex_state = 4, .external_lex_state = 3}, - [1546] = {.lex_state = 4, .external_lex_state = 3}, - [1547] = {.lex_state = 13, .external_lex_state = 3}, + [1546] = {.lex_state = 15, .external_lex_state = 3}, + [1547] = {.lex_state = 4, .external_lex_state = 3}, [1548] = {.lex_state = 4, .external_lex_state = 3}, [1549] = {.lex_state = 15, .external_lex_state = 3}, [1550] = {.lex_state = 4, .external_lex_state = 3}, - [1551] = {.lex_state = 4, .external_lex_state = 3}, + [1551] = {.lex_state = 15, .external_lex_state = 3}, [1552] = {.lex_state = 4, .external_lex_state = 3}, - [1553] = {.lex_state = 15, .external_lex_state = 3}, + [1553] = {.lex_state = 4, .external_lex_state = 3}, [1554] = {.lex_state = 4, .external_lex_state = 3}, - [1555] = {.lex_state = 4, .external_lex_state = 3}, - [1556] = {.lex_state = 15, .external_lex_state = 3}, - [1557] = {.lex_state = 4, .external_lex_state = 3}, + [1555] = {.lex_state = 15, .external_lex_state = 3}, + [1556] = {.lex_state = 4, .external_lex_state = 3}, + [1557] = {.lex_state = 15, .external_lex_state = 3}, [1558] = {.lex_state = 15, .external_lex_state = 3}, [1559] = {.lex_state = 4, .external_lex_state = 3}, - [1560] = {.lex_state = 4, .external_lex_state = 3}, - [1561] = {.lex_state = 0, .external_lex_state = 3}, + [1560] = {.lex_state = 15, .external_lex_state = 3}, + [1561] = {.lex_state = 4, .external_lex_state = 3}, [1562] = {.lex_state = 4, .external_lex_state = 3}, - [1563] = {.lex_state = 4, .external_lex_state = 3}, - [1564] = {.lex_state = 0, .external_lex_state = 3}, - [1565] = {.lex_state = 0, .external_lex_state = 3}, + [1563] = {.lex_state = 0, .external_lex_state = 3}, + [1564] = {.lex_state = 15, .external_lex_state = 3}, + [1565] = {.lex_state = 4, .external_lex_state = 3}, [1566] = {.lex_state = 0, .external_lex_state = 3}, [1567] = {.lex_state = 0, .external_lex_state = 3}, [1568] = {.lex_state = 4, .external_lex_state = 3}, - [1569] = {.lex_state = 4, .external_lex_state = 3}, - [1570] = {.lex_state = 4, .external_lex_state = 3}, - [1571] = {.lex_state = 4, .external_lex_state = 3}, + [1569] = {.lex_state = 0, .external_lex_state = 3}, + [1570] = {.lex_state = 0, .external_lex_state = 3}, + [1571] = {.lex_state = 0, .external_lex_state = 3}, [1572] = {.lex_state = 0, .external_lex_state = 3}, [1573] = {.lex_state = 0, .external_lex_state = 3}, - [1574] = {.lex_state = 15, .external_lex_state = 3}, + [1574] = {.lex_state = 0, .external_lex_state = 3}, [1575] = {.lex_state = 0, .external_lex_state = 3}, - [1576] = {.lex_state = 4, .external_lex_state = 3}, - [1577] = {.lex_state = 0, .external_lex_state = 3}, + [1576] = {.lex_state = 0, .external_lex_state = 3}, + [1577] = {.lex_state = 4, .external_lex_state = 3}, [1578] = {.lex_state = 4, .external_lex_state = 3}, [1579] = {.lex_state = 15, .external_lex_state = 3}, [1580] = {.lex_state = 0, .external_lex_state = 3}, [1581] = {.lex_state = 0, .external_lex_state = 3}, - [1582] = {.lex_state = 0, .external_lex_state = 3}, - [1583] = {.lex_state = 0, .external_lex_state = 3}, - [1584] = {.lex_state = 4, .external_lex_state = 3}, - [1585] = {.lex_state = 4, .external_lex_state = 3}, + [1582] = {.lex_state = 4, .external_lex_state = 3}, + [1583] = {.lex_state = 4, .external_lex_state = 3}, + [1584] = {.lex_state = 0, .external_lex_state = 3}, + [1585] = {.lex_state = 0, .external_lex_state = 3}, [1586] = {.lex_state = 0, .external_lex_state = 3}, - [1587] = {.lex_state = 15, .external_lex_state = 3}, - [1588] = {.lex_state = 0, .external_lex_state = 3}, - [1589] = {.lex_state = 0, .external_lex_state = 3}, + [1587] = {.lex_state = 4, .external_lex_state = 3}, + [1588] = {.lex_state = 4, .external_lex_state = 3}, + [1589] = {.lex_state = 4, .external_lex_state = 3}, [1590] = {.lex_state = 4, .external_lex_state = 3}, - [1591] = {.lex_state = 15, .external_lex_state = 3}, + [1591] = {.lex_state = 4, .external_lex_state = 3}, [1592] = {.lex_state = 4, .external_lex_state = 3}, - [1593] = {.lex_state = 4, .external_lex_state = 3}, + [1593] = {.lex_state = 0, .external_lex_state = 3}, [1594] = {.lex_state = 4, .external_lex_state = 3}, - [1595] = {.lex_state = 4, .external_lex_state = 3}, - [1596] = {.lex_state = 0, .external_lex_state = 3}, + [1595] = {.lex_state = 15, .external_lex_state = 3}, + [1596] = {.lex_state = 4, .external_lex_state = 3}, [1597] = {.lex_state = 0, .external_lex_state = 3}, - [1598] = {.lex_state = 0, .external_lex_state = 3}, - [1599] = {.lex_state = 4, .external_lex_state = 3}, - [1600] = {.lex_state = 4, .external_lex_state = 3}, - [1601] = {.lex_state = 0, .external_lex_state = 3}, + [1598] = {.lex_state = 4, .external_lex_state = 3}, + [1599] = {.lex_state = 0, .external_lex_state = 3}, + [1600] = {.lex_state = 15, .external_lex_state = 3}, + [1601] = {.lex_state = 4, .external_lex_state = 3}, [1602] = {.lex_state = 0, .external_lex_state = 3}, - [1603] = {.lex_state = 4, .external_lex_state = 3}, + [1603] = {.lex_state = 0, .external_lex_state = 3}, [1604] = {.lex_state = 4, .external_lex_state = 3}, [1605] = {.lex_state = 4, .external_lex_state = 3}, - [1606] = {.lex_state = 0, .external_lex_state = 3}, - [1607] = {.lex_state = 4, .external_lex_state = 3}, - [1608] = {.lex_state = 0, .external_lex_state = 3}, - [1609] = {.lex_state = 4, .external_lex_state = 3}, - [1610] = {.lex_state = 4, .external_lex_state = 3}, - [1611] = {.lex_state = 13, .external_lex_state = 3}, - [1612] = {.lex_state = 4, .external_lex_state = 3}, + [1606] = {.lex_state = 4, .external_lex_state = 3}, + [1607] = {.lex_state = 0, .external_lex_state = 3}, + [1608] = {.lex_state = 4, .external_lex_state = 3}, + [1609] = {.lex_state = 18, .external_lex_state = 3}, + [1610] = {.lex_state = 9, .external_lex_state = 3}, + [1611] = {.lex_state = 9, .external_lex_state = 3}, + [1612] = {.lex_state = 9, .external_lex_state = 3}, [1613] = {.lex_state = 4, .external_lex_state = 3}, [1614] = {.lex_state = 4, .external_lex_state = 3}, - [1615] = {.lex_state = 18, .external_lex_state = 3}, - [1616] = {.lex_state = 0, .external_lex_state = 3}, + [1615] = {.lex_state = 4, .external_lex_state = 3}, + [1616] = {.lex_state = 13, .external_lex_state = 3}, [1617] = {.lex_state = 4, .external_lex_state = 3}, [1618] = {.lex_state = 4, .external_lex_state = 3}, [1619] = {.lex_state = 9, .external_lex_state = 3}, [1620] = {.lex_state = 4, .external_lex_state = 3}, - [1621] = {.lex_state = 4, .external_lex_state = 3}, + [1621] = {.lex_state = 18, .external_lex_state = 3}, [1622] = {.lex_state = 4, .external_lex_state = 3}, - [1623] = {.lex_state = 4, .external_lex_state = 3}, - [1624] = {.lex_state = 4, .external_lex_state = 3}, + [1623] = {.lex_state = 0, .external_lex_state = 3}, + [1624] = {.lex_state = 0, .external_lex_state = 3}, [1625] = {.lex_state = 4, .external_lex_state = 3}, - [1626] = {.lex_state = 4, .external_lex_state = 3}, + [1626] = {.lex_state = 0, .external_lex_state = 3}, [1627] = {.lex_state = 4, .external_lex_state = 3}, [1628] = {.lex_state = 4, .external_lex_state = 3}, - [1629] = {.lex_state = 4, .external_lex_state = 3}, - [1630] = {.lex_state = 18, .external_lex_state = 3}, + [1629] = {.lex_state = 0, .external_lex_state = 3}, + [1630] = {.lex_state = 0, .external_lex_state = 3}, [1631] = {.lex_state = 4, .external_lex_state = 3}, - [1632] = {.lex_state = 9, .external_lex_state = 3}, - [1633] = {.lex_state = 4, .external_lex_state = 3}, + [1632] = {.lex_state = 4, .external_lex_state = 3}, + [1633] = {.lex_state = 18, .external_lex_state = 3}, [1634] = {.lex_state = 4, .external_lex_state = 3}, - [1635] = {.lex_state = 4, .external_lex_state = 3}, - [1636] = {.lex_state = 18, .external_lex_state = 3}, - [1637] = {.lex_state = 4, .external_lex_state = 3}, - [1638] = {.lex_state = 0, .external_lex_state = 3}, + [1635] = {.lex_state = 58, .external_lex_state = 3}, + [1636] = {.lex_state = 4, .external_lex_state = 3}, + [1637] = {.lex_state = 58, .external_lex_state = 3}, + [1638] = {.lex_state = 4, .external_lex_state = 3}, [1639] = {.lex_state = 4, .external_lex_state = 3}, - [1640] = {.lex_state = 0, .external_lex_state = 3}, - [1641] = {.lex_state = 4, .external_lex_state = 3}, - [1642] = {.lex_state = 18, .external_lex_state = 3}, - [1643] = {.lex_state = 0, .external_lex_state = 3}, - [1644] = {.lex_state = 18, .external_lex_state = 3}, - [1645] = {.lex_state = 0, .external_lex_state = 3}, - [1646] = {.lex_state = 0, .external_lex_state = 3}, + [1640] = {.lex_state = 4, .external_lex_state = 3}, + [1641] = {.lex_state = 18, .external_lex_state = 3}, + [1642] = {.lex_state = 0, .external_lex_state = 3}, + [1643] = {.lex_state = 4, .external_lex_state = 3}, + [1644] = {.lex_state = 4, .external_lex_state = 3}, + [1645] = {.lex_state = 4, .external_lex_state = 3}, + [1646] = {.lex_state = 4, .external_lex_state = 3}, [1647] = {.lex_state = 4, .external_lex_state = 3}, [1648] = {.lex_state = 4, .external_lex_state = 3}, [1649] = {.lex_state = 4, .external_lex_state = 3}, [1650] = {.lex_state = 4, .external_lex_state = 3}, [1651] = {.lex_state = 4, .external_lex_state = 3}, [1652] = {.lex_state = 4, .external_lex_state = 3}, - [1653] = {.lex_state = 18, .external_lex_state = 3}, + [1653] = {.lex_state = 4, .external_lex_state = 3}, [1654] = {.lex_state = 4, .external_lex_state = 3}, [1655] = {.lex_state = 4, .external_lex_state = 3}, - [1656] = {.lex_state = 58, .external_lex_state = 3}, + [1656] = {.lex_state = 4, .external_lex_state = 3}, [1657] = {.lex_state = 4, .external_lex_state = 3}, - [1658] = {.lex_state = 0, .external_lex_state = 3}, - [1659] = {.lex_state = 4, .external_lex_state = 3}, - [1660] = {.lex_state = 4, .external_lex_state = 3}, - [1661] = {.lex_state = 58, .external_lex_state = 3}, + [1658] = {.lex_state = 4, .external_lex_state = 3}, + [1659] = {.lex_state = 18, .external_lex_state = 3}, + [1660] = {.lex_state = 18, .external_lex_state = 3}, + [1661] = {.lex_state = 4, .external_lex_state = 3}, [1662] = {.lex_state = 4, .external_lex_state = 3}, [1663] = {.lex_state = 4, .external_lex_state = 3}, [1664] = {.lex_state = 4, .external_lex_state = 3}, [1665] = {.lex_state = 4, .external_lex_state = 3}, - [1666] = {.lex_state = 9, .external_lex_state = 3}, + [1666] = {.lex_state = 4, .external_lex_state = 3}, [1667] = {.lex_state = 4, .external_lex_state = 3}, [1668] = {.lex_state = 18, .external_lex_state = 3}, [1669] = {.lex_state = 4, .external_lex_state = 3}, - [1670] = {.lex_state = 9, .external_lex_state = 3}, - [1671] = {.lex_state = 18, .external_lex_state = 3}, - [1672] = {.lex_state = 9, .external_lex_state = 3}, - [1673] = {.lex_state = 18, .external_lex_state = 3}, + [1670] = {.lex_state = 4, .external_lex_state = 3}, + [1671] = {.lex_state = 0, .external_lex_state = 3}, + [1672] = {.lex_state = 4, .external_lex_state = 3}, + [1673] = {.lex_state = 4, .external_lex_state = 3}, [1674] = {.lex_state = 4, .external_lex_state = 3}, [1675] = {.lex_state = 4, .external_lex_state = 3}, - [1676] = {.lex_state = 15, .external_lex_state = 3}, - [1677] = {.lex_state = 4, .external_lex_state = 3}, - [1678] = {.lex_state = 9, .external_lex_state = 3}, + [1676] = {.lex_state = 4, .external_lex_state = 3}, + [1677] = {.lex_state = 18, .external_lex_state = 3}, + [1678] = {.lex_state = 4, .external_lex_state = 3}, [1679] = {.lex_state = 4, .external_lex_state = 3}, [1680] = {.lex_state = 4, .external_lex_state = 3}, [1681] = {.lex_state = 4, .external_lex_state = 3}, [1682] = {.lex_state = 4, .external_lex_state = 3}, [1683] = {.lex_state = 4, .external_lex_state = 3}, - [1684] = {.lex_state = 4, .external_lex_state = 3}, + [1684] = {.lex_state = 13, .external_lex_state = 3}, [1685] = {.lex_state = 4, .external_lex_state = 3}, [1686] = {.lex_state = 4, .external_lex_state = 3}, [1687] = {.lex_state = 4, .external_lex_state = 3}, [1688] = {.lex_state = 4, .external_lex_state = 3}, [1689] = {.lex_state = 4, .external_lex_state = 3}, - [1690] = {.lex_state = 13, .external_lex_state = 3}, - [1691] = {.lex_state = 4, .external_lex_state = 3}, - [1692] = {.lex_state = 4, .external_lex_state = 3}, + [1690] = {.lex_state = 4, .external_lex_state = 3}, + [1691] = {.lex_state = 18, .external_lex_state = 3}, + [1692] = {.lex_state = 9, .external_lex_state = 3}, [1693] = {.lex_state = 4, .external_lex_state = 3}, - [1694] = {.lex_state = 4, .external_lex_state = 3}, + [1694] = {.lex_state = 9, .external_lex_state = 3}, [1695] = {.lex_state = 4, .external_lex_state = 3}, - [1696] = {.lex_state = 18, .external_lex_state = 3}, + [1696] = {.lex_state = 4, .external_lex_state = 3}, [1697] = {.lex_state = 4, .external_lex_state = 3}, [1698] = {.lex_state = 4, .external_lex_state = 3}, [1699] = {.lex_state = 4, .external_lex_state = 3}, [1700] = {.lex_state = 4, .external_lex_state = 3}, - [1701] = {.lex_state = 4, .external_lex_state = 3}, + [1701] = {.lex_state = 18, .external_lex_state = 3}, [1702] = {.lex_state = 4, .external_lex_state = 3}, - [1703] = {.lex_state = 4, .external_lex_state = 3}, + [1703] = {.lex_state = 15, .external_lex_state = 3}, [1704] = {.lex_state = 4, .external_lex_state = 3}, - [1705] = {.lex_state = 0, .external_lex_state = 3}, + [1705] = {.lex_state = 4, .external_lex_state = 3}, [1706] = {.lex_state = 18, .external_lex_state = 3}, - [1707] = {.lex_state = 0, .external_lex_state = 3}, - [1708] = {.lex_state = 4, .external_lex_state = 3}, - [1709] = {.lex_state = 18, .external_lex_state = 3}, - [1710] = {.lex_state = 58, .external_lex_state = 3}, - [1711] = {.lex_state = 18, .external_lex_state = 3}, - [1712] = {.lex_state = 9, .external_lex_state = 3}, - [1713] = {.lex_state = 9, .external_lex_state = 3}, + [1707] = {.lex_state = 9, .external_lex_state = 3}, + [1708] = {.lex_state = 18, .external_lex_state = 3}, + [1709] = {.lex_state = 4, .external_lex_state = 3}, + [1710] = {.lex_state = 18, .external_lex_state = 3}, + [1711] = {.lex_state = 0, .external_lex_state = 3}, + [1712] = {.lex_state = 18, .external_lex_state = 3}, + [1713] = {.lex_state = 4, .external_lex_state = 3}, [1714] = {.lex_state = 4, .external_lex_state = 3}, [1715] = {.lex_state = 4, .external_lex_state = 3}, - [1716] = {.lex_state = 18, .external_lex_state = 3}, + [1716] = {.lex_state = 4, .external_lex_state = 3}, [1717] = {.lex_state = 4, .external_lex_state = 3}, [1718] = {.lex_state = 4, .external_lex_state = 3}, - [1719] = {.lex_state = 0, .external_lex_state = 3}, - [1720] = {.lex_state = 4, .external_lex_state = 3}, + [1719] = {.lex_state = 4, .external_lex_state = 3}, + [1720] = {.lex_state = 58, .external_lex_state = 3}, [1721] = {.lex_state = 4, .external_lex_state = 3}, [1722] = {.lex_state = 4, .external_lex_state = 3}, - [1723] = {.lex_state = 18, .external_lex_state = 3}, + [1723] = {.lex_state = 58, .external_lex_state = 3}, [1724] = {.lex_state = 0, .external_lex_state = 3}, - [1725] = {.lex_state = 4, .external_lex_state = 3}, - [1726] = {.lex_state = 0, .external_lex_state = 3}, - [1727] = {.lex_state = 4, .external_lex_state = 3}, + [1725] = {.lex_state = 18, .external_lex_state = 3}, + [1726] = {.lex_state = 18, .external_lex_state = 3}, + [1727] = {.lex_state = 0, .external_lex_state = 3}, [1728] = {.lex_state = 4, .external_lex_state = 3}, - [1729] = {.lex_state = 4, .external_lex_state = 3}, + [1729] = {.lex_state = 58, .external_lex_state = 3}, [1730] = {.lex_state = 4, .external_lex_state = 3}, - [1731] = {.lex_state = 18, .external_lex_state = 3}, - [1732] = {.lex_state = 18, .external_lex_state = 3}, - [1733] = {.lex_state = 18, .external_lex_state = 3}, + [1731] = {.lex_state = 4, .external_lex_state = 3}, + [1732] = {.lex_state = 4, .external_lex_state = 3}, + [1733] = {.lex_state = 0, .external_lex_state = 3}, [1734] = {.lex_state = 0, .external_lex_state = 3}, - [1735] = {.lex_state = 58, .external_lex_state = 3}, - [1736] = {.lex_state = 58, .external_lex_state = 3}, + [1735] = {.lex_state = 4, .external_lex_state = 3}, + [1736] = {.lex_state = 9, .external_lex_state = 3}, [1737] = {.lex_state = 0, .external_lex_state = 3}, [1738] = {.lex_state = 4, .external_lex_state = 3}, [1739] = {.lex_state = 18, .external_lex_state = 3}, [1740] = {.lex_state = 4, .external_lex_state = 3}, - [1741] = {.lex_state = 4, .external_lex_state = 3}, - [1742] = {.lex_state = 4, .external_lex_state = 3}, - [1743] = {.lex_state = 9, .external_lex_state = 3}, + [1741] = {.lex_state = 0, .external_lex_state = 3}, + [1742] = {.lex_state = 18, .external_lex_state = 3}, + [1743] = {.lex_state = 18, .external_lex_state = 3}, [1744] = {.lex_state = 9, .external_lex_state = 3}, - [1745] = {.lex_state = 4, .external_lex_state = 3}, - [1746] = {.lex_state = 4, .external_lex_state = 3}, + [1745] = {.lex_state = 9, .external_lex_state = 3}, + [1746] = {.lex_state = 9, .external_lex_state = 3}, [1747] = {.lex_state = 4, .external_lex_state = 3}, - [1748] = {.lex_state = 18, .external_lex_state = 3}, - [1749] = {.lex_state = 4, .external_lex_state = 3}, - [1750] = {.lex_state = 18, .external_lex_state = 3}, - [1751] = {.lex_state = 18, .external_lex_state = 3}, - [1752] = {.lex_state = 4, .external_lex_state = 3}, - [1753] = {.lex_state = 0, .external_lex_state = 3}, - [1754] = {.lex_state = 9, .external_lex_state = 3}, + [1748] = {.lex_state = 0, .external_lex_state = 3}, + [1749] = {.lex_state = 18, .external_lex_state = 3}, + [1750] = {.lex_state = 4, .external_lex_state = 3}, + [1751] = {.lex_state = 4, .external_lex_state = 3}, + [1752] = {.lex_state = 9, .external_lex_state = 3}, + [1753] = {.lex_state = 18, .external_lex_state = 3}, + [1754] = {.lex_state = 4, .external_lex_state = 3}, [1755] = {.lex_state = 18, .external_lex_state = 3}, - [1756] = {.lex_state = 9, .external_lex_state = 3}, - [1757] = {.lex_state = 4, .external_lex_state = 3}, - [1758] = {.lex_state = 0, .external_lex_state = 3}, - [1759] = {.lex_state = 58, .external_lex_state = 3}, - [1760] = {.lex_state = 58, .external_lex_state = 3}, - [1761] = {.lex_state = 4, .external_lex_state = 3}, + [1756] = {.lex_state = 18, .external_lex_state = 3}, + [1757] = {.lex_state = 58, .external_lex_state = 3}, + [1758] = {.lex_state = 4, .external_lex_state = 3}, + [1759] = {.lex_state = 4, .external_lex_state = 3}, + [1760] = {.lex_state = 18, .external_lex_state = 3}, + [1761] = {.lex_state = 19, .external_lex_state = 3}, [1762] = {.lex_state = 58, .external_lex_state = 3}, - [1763] = {.lex_state = 4, .external_lex_state = 3}, + [1763] = {.lex_state = 58, .external_lex_state = 3}, [1764] = {.lex_state = 4, .external_lex_state = 3}, - [1765] = {.lex_state = 58, .external_lex_state = 3}, - [1766] = {.lex_state = 4, .external_lex_state = 3}, - [1767] = {.lex_state = 4, .external_lex_state = 3}, - [1768] = {.lex_state = 4, .external_lex_state = 3}, - [1769] = {.lex_state = 58, .external_lex_state = 3}, + [1765] = {.lex_state = 4, .external_lex_state = 3}, + [1766] = {.lex_state = 18, .external_lex_state = 3}, + [1767] = {.lex_state = 0, .external_lex_state = 3}, + [1768] = {.lex_state = 58, .external_lex_state = 3}, + [1769] = {.lex_state = 18, .external_lex_state = 3}, [1770] = {.lex_state = 4, .external_lex_state = 3}, - [1771] = {.lex_state = 0, .external_lex_state = 3}, - [1772] = {.lex_state = 4, .external_lex_state = 3}, - [1773] = {.lex_state = 19, .external_lex_state = 3}, - [1774] = {.lex_state = 58, .external_lex_state = 3}, - [1775] = {.lex_state = 58, .external_lex_state = 3}, + [1771] = {.lex_state = 58, .external_lex_state = 3}, + [1772] = {.lex_state = 58, .external_lex_state = 3}, + [1773] = {.lex_state = 58, .external_lex_state = 3}, + [1774] = {.lex_state = 4, .external_lex_state = 3}, + [1775] = {.lex_state = 4, .external_lex_state = 4}, [1776] = {.lex_state = 58, .external_lex_state = 3}, [1777] = {.lex_state = 58, .external_lex_state = 3}, - [1778] = {.lex_state = 4, .external_lex_state = 3}, - [1779] = {.lex_state = 18, .external_lex_state = 3}, - [1780] = {.lex_state = 4, .external_lex_state = 3}, - [1781] = {.lex_state = 9, .external_lex_state = 3}, - [1782] = {.lex_state = 4, .external_lex_state = 3}, - [1783] = {.lex_state = 58, .external_lex_state = 3}, - [1784] = {.lex_state = 4, .external_lex_state = 3}, + [1778] = {.lex_state = 18, .external_lex_state = 3}, + [1779] = {.lex_state = 4, .external_lex_state = 3}, + [1780] = {.lex_state = 0, .external_lex_state = 3}, + [1781] = {.lex_state = 4, .external_lex_state = 3}, + [1782] = {.lex_state = 9, .external_lex_state = 3}, + [1783] = {.lex_state = 4, .external_lex_state = 3}, + [1784] = {.lex_state = 4, .external_lex_state = 4}, [1785] = {.lex_state = 0, .external_lex_state = 3}, - [1786] = {.lex_state = 58, .external_lex_state = 3}, - [1787] = {.lex_state = 0, .external_lex_state = 3}, - [1788] = {.lex_state = 18, .external_lex_state = 3}, - [1789] = {.lex_state = 18, .external_lex_state = 3}, + [1786] = {.lex_state = 0, .external_lex_state = 3}, + [1787] = {.lex_state = 19, .external_lex_state = 3}, + [1788] = {.lex_state = 4, .external_lex_state = 4}, + [1789] = {.lex_state = 19, .external_lex_state = 3}, [1790] = {.lex_state = 0, .external_lex_state = 3}, - [1791] = {.lex_state = 4, .external_lex_state = 3}, - [1792] = {.lex_state = 58, .external_lex_state = 3}, + [1791] = {.lex_state = 0, .external_lex_state = 3}, + [1792] = {.lex_state = 4, .external_lex_state = 4}, [1793] = {.lex_state = 58, .external_lex_state = 3}, - [1794] = {.lex_state = 58, .external_lex_state = 3}, + [1794] = {.lex_state = 4, .external_lex_state = 3}, [1795] = {.lex_state = 58, .external_lex_state = 3}, - [1796] = {.lex_state = 4, .external_lex_state = 3}, + [1796] = {.lex_state = 58, .external_lex_state = 3}, [1797] = {.lex_state = 4, .external_lex_state = 3}, - [1798] = {.lex_state = 0, .external_lex_state = 3}, - [1799] = {.lex_state = 4, .external_lex_state = 3}, - [1800] = {.lex_state = 4, .external_lex_state = 3}, + [1798] = {.lex_state = 4, .external_lex_state = 3}, + [1799] = {.lex_state = 0, .external_lex_state = 3}, + [1800] = {.lex_state = 0, .external_lex_state = 3}, [1801] = {.lex_state = 4, .external_lex_state = 3}, - [1802] = {.lex_state = 0, .external_lex_state = 3}, - [1803] = {.lex_state = 4, .external_lex_state = 4}, + [1802] = {.lex_state = 58, .external_lex_state = 3}, + [1803] = {.lex_state = 58, .external_lex_state = 3}, [1804] = {.lex_state = 4, .external_lex_state = 4}, [1805] = {.lex_state = 0, .external_lex_state = 3}, - [1806] = {.lex_state = 4, .external_lex_state = 4}, - [1807] = {.lex_state = 18, .external_lex_state = 3}, + [1806] = {.lex_state = 4, .external_lex_state = 3}, + [1807] = {.lex_state = 4, .external_lex_state = 3}, [1808] = {.lex_state = 0, .external_lex_state = 3}, [1809] = {.lex_state = 58, .external_lex_state = 3}, - [1810] = {.lex_state = 18, .external_lex_state = 3}, - [1811] = {.lex_state = 58, .external_lex_state = 3}, - [1812] = {.lex_state = 0, .external_lex_state = 3}, - [1813] = {.lex_state = 4, .external_lex_state = 3}, - [1814] = {.lex_state = 4, .external_lex_state = 4}, - [1815] = {.lex_state = 4, .external_lex_state = 4}, - [1816] = {.lex_state = 9, .external_lex_state = 3}, - [1817] = {.lex_state = 0, .external_lex_state = 3}, - [1818] = {.lex_state = 4, .external_lex_state = 3}, - [1819] = {.lex_state = 4, .external_lex_state = 4}, - [1820] = {.lex_state = 58, .external_lex_state = 3}, - [1821] = {.lex_state = 0, .external_lex_state = 3}, - [1822] = {.lex_state = 19, .external_lex_state = 3}, - [1823] = {.lex_state = 58, .external_lex_state = 3}, - [1824] = {.lex_state = 4, .external_lex_state = 3}, - [1825] = {.lex_state = 58, .external_lex_state = 3}, - [1826] = {.lex_state = 4, .external_lex_state = 3}, - [1827] = {.lex_state = 4, .external_lex_state = 3}, - [1828] = {.lex_state = 4, .external_lex_state = 4}, - [1829] = {.lex_state = 4, .external_lex_state = 3}, + [1810] = {.lex_state = 4, .external_lex_state = 4}, + [1811] = {.lex_state = 4, .external_lex_state = 3}, + [1812] = {.lex_state = 4, .external_lex_state = 3}, + [1813] = {.lex_state = 18, .external_lex_state = 3}, + [1814] = {.lex_state = 9, .external_lex_state = 3}, + [1815] = {.lex_state = 58, .external_lex_state = 3}, + [1816] = {.lex_state = 18, .external_lex_state = 3}, + [1817] = {.lex_state = 4, .external_lex_state = 3}, + [1818] = {.lex_state = 58, .external_lex_state = 3}, + [1819] = {.lex_state = 19, .external_lex_state = 3}, + [1820] = {.lex_state = 0, .external_lex_state = 3}, + [1821] = {.lex_state = 58, .external_lex_state = 3}, + [1822] = {.lex_state = 4, .external_lex_state = 4}, + [1823] = {.lex_state = 4, .external_lex_state = 3}, + [1824] = {.lex_state = 0, .external_lex_state = 3}, + [1825] = {.lex_state = 4, .external_lex_state = 3}, + [1826] = {.lex_state = 4, .external_lex_state = 4}, + [1827] = {.lex_state = 18, .external_lex_state = 3}, + [1828] = {.lex_state = 0, .external_lex_state = 3}, + [1829] = {.lex_state = 58, .external_lex_state = 3}, [1830] = {.lex_state = 18, .external_lex_state = 3}, - [1831] = {.lex_state = 58, .external_lex_state = 3}, - [1832] = {.lex_state = 0, .external_lex_state = 3}, - [1833] = {.lex_state = 4, .external_lex_state = 4}, - [1834] = {.lex_state = 18, .external_lex_state = 3}, - [1835] = {.lex_state = 18, .external_lex_state = 3}, + [1831] = {.lex_state = 0, .external_lex_state = 3}, + [1832] = {.lex_state = 4, .external_lex_state = 3}, + [1833] = {.lex_state = 4, .external_lex_state = 3}, + [1834] = {.lex_state = 58, .external_lex_state = 3}, + [1835] = {.lex_state = 0, .external_lex_state = 3}, [1836] = {.lex_state = 0, .external_lex_state = 3}, - [1837] = {.lex_state = 58, .external_lex_state = 3}, - [1838] = {.lex_state = 58, .external_lex_state = 3}, - [1839] = {.lex_state = 0, .external_lex_state = 3}, - [1840] = {.lex_state = 18, .external_lex_state = 3}, - [1841] = {.lex_state = 58, .external_lex_state = 3}, + [1837] = {.lex_state = 4, .external_lex_state = 3}, + [1838] = {.lex_state = 4, .external_lex_state = 3}, + [1839] = {.lex_state = 4, .external_lex_state = 4}, + [1840] = {.lex_state = 4, .external_lex_state = 3}, + [1841] = {.lex_state = 0, .external_lex_state = 3}, [1842] = {.lex_state = 4, .external_lex_state = 3}, - [1843] = {.lex_state = 4, .external_lex_state = 3}, - [1844] = {.lex_state = 4, .external_lex_state = 3}, - [1845] = {.lex_state = 19, .external_lex_state = 3}, - [1846] = {.lex_state = 58, .external_lex_state = 3}, - [1847] = {.lex_state = 0, .external_lex_state = 3}, - [1848] = {.lex_state = 4, .external_lex_state = 3}, - [1849] = {.lex_state = 4, .external_lex_state = 4}, - [1850] = {.lex_state = 18, .external_lex_state = 3}, - [1851] = {.lex_state = 58, .external_lex_state = 3}, + [1843] = {.lex_state = 58, .external_lex_state = 3}, + [1844] = {.lex_state = 58, .external_lex_state = 3}, + [1845] = {.lex_state = 58, .external_lex_state = 3}, + [1846] = {.lex_state = 4, .external_lex_state = 3}, + [1847] = {.lex_state = 58, .external_lex_state = 3}, + [1848] = {.lex_state = 58, .external_lex_state = 3}, + [1849] = {.lex_state = 58, .external_lex_state = 3}, + [1850] = {.lex_state = 4, .external_lex_state = 3}, + [1851] = {.lex_state = 4, .external_lex_state = 3}, [1852] = {.lex_state = 58, .external_lex_state = 3}, - [1853] = {.lex_state = 58, .external_lex_state = 3}, - [1854] = {.lex_state = 19, .external_lex_state = 3}, - [1855] = {.lex_state = 4, .external_lex_state = 3}, + [1853] = {.lex_state = 18, .external_lex_state = 3}, + [1854] = {.lex_state = 4, .external_lex_state = 3}, + [1855] = {.lex_state = 18, .external_lex_state = 3}, [1856] = {.lex_state = 18, .external_lex_state = 3}, - [1857] = {.lex_state = 0, .external_lex_state = 3}, + [1857] = {.lex_state = 58, .external_lex_state = 3}, [1858] = {.lex_state = 4, .external_lex_state = 3}, - [1859] = {.lex_state = 0, .external_lex_state = 3}, + [1859] = {.lex_state = 58, .external_lex_state = 3}, [1860] = {.lex_state = 4, .external_lex_state = 3}, - [1861] = {.lex_state = 58, .external_lex_state = 3}, - [1862] = {.lex_state = 0, .external_lex_state = 3}, - [1863] = {.lex_state = 58, .external_lex_state = 3}, + [1861] = {.lex_state = 0, .external_lex_state = 3}, + [1862] = {.lex_state = 4, .external_lex_state = 3}, + [1863] = {.lex_state = 0, .external_lex_state = 3}, [1864] = {.lex_state = 0, .external_lex_state = 3}, - [1865] = {.lex_state = 58, .external_lex_state = 3}, - [1866] = {.lex_state = 0, .external_lex_state = 3}, + [1865] = {.lex_state = 0, .external_lex_state = 3}, + [1866] = {.lex_state = 3, .external_lex_state = 3}, [1867] = {.lex_state = 4, .external_lex_state = 3}, - [1868] = {.lex_state = 4, .external_lex_state = 3}, - [1869] = {.lex_state = 4, .external_lex_state = 3}, + [1868] = {.lex_state = 3, .external_lex_state = 3}, + [1869] = {.lex_state = 0, .external_lex_state = 3}, [1870] = {.lex_state = 0, .external_lex_state = 3}, [1871] = {.lex_state = 0, .external_lex_state = 3}, - [1872] = {.lex_state = 4, .external_lex_state = 3}, - [1873] = {.lex_state = 4, .external_lex_state = 3}, + [1872] = {.lex_state = 0, .external_lex_state = 3}, + [1873] = {.lex_state = 0, .external_lex_state = 3}, [1874] = {.lex_state = 0, .external_lex_state = 3}, - [1875] = {.lex_state = 58, .external_lex_state = 3}, + [1875] = {.lex_state = 3, .external_lex_state = 3}, [1876] = {.lex_state = 0, .external_lex_state = 3}, - [1877] = {.lex_state = 0, .external_lex_state = 3}, - [1878] = {.lex_state = 0, .external_lex_state = 3}, - [1879] = {.lex_state = 0, .external_lex_state = 3}, - [1880] = {.lex_state = 58, .external_lex_state = 3}, + [1877] = {.lex_state = 58, .external_lex_state = 3}, + [1878] = {.lex_state = 3, .external_lex_state = 3}, + [1879] = {.lex_state = 58, .external_lex_state = 3}, + [1880] = {.lex_state = 0, .external_lex_state = 3}, [1881] = {.lex_state = 0, .external_lex_state = 3}, - [1882] = {.lex_state = 4, .external_lex_state = 3}, - [1883] = {.lex_state = 4, .external_lex_state = 3}, - [1884] = {.lex_state = 4, .external_lex_state = 3}, + [1882] = {.lex_state = 0, .external_lex_state = 3}, + [1883] = {.lex_state = 0, .external_lex_state = 3}, + [1884] = {.lex_state = 0, .external_lex_state = 3}, [1885] = {.lex_state = 0, .external_lex_state = 3}, [1886] = {.lex_state = 0, .external_lex_state = 3}, [1887] = {.lex_state = 0, .external_lex_state = 3}, - [1888] = {.lex_state = 0, .external_lex_state = 3}, - [1889] = {.lex_state = 58, .external_lex_state = 3}, - [1890] = {.lex_state = 9, .external_lex_state = 3}, + [1888] = {.lex_state = 58, .external_lex_state = 3}, + [1889] = {.lex_state = 0, .external_lex_state = 3}, + [1890] = {.lex_state = 0, .external_lex_state = 3}, [1891] = {.lex_state = 0, .external_lex_state = 3}, - [1892] = {.lex_state = 58, .external_lex_state = 3}, + [1892] = {.lex_state = 0, .external_lex_state = 3}, [1893] = {.lex_state = 0, .external_lex_state = 3}, [1894] = {.lex_state = 0, .external_lex_state = 3}, - [1895] = {.lex_state = 0, .external_lex_state = 3}, - [1896] = {.lex_state = 4, .external_lex_state = 3}, - [1897] = {.lex_state = 3, .external_lex_state = 3}, - [1898] = {.lex_state = 3, .external_lex_state = 3}, + [1895] = {.lex_state = 3, .external_lex_state = 3}, + [1896] = {.lex_state = 0, .external_lex_state = 3}, + [1897] = {.lex_state = 0, .external_lex_state = 3}, + [1898] = {.lex_state = 0, .external_lex_state = 3}, [1899] = {.lex_state = 0, .external_lex_state = 3}, - [1900] = {.lex_state = 0, .external_lex_state = 3}, - [1901] = {.lex_state = 0, .external_lex_state = 3}, - [1902] = {.lex_state = 58, .external_lex_state = 3}, + [1900] = {.lex_state = 3, .external_lex_state = 3}, + [1901] = {.lex_state = 3, .external_lex_state = 3}, + [1902] = {.lex_state = 3, .external_lex_state = 3}, [1903] = {.lex_state = 0, .external_lex_state = 3}, - [1904] = {.lex_state = 58, .external_lex_state = 3}, + [1904] = {.lex_state = 0, .external_lex_state = 3}, [1905] = {.lex_state = 0, .external_lex_state = 3}, [1906] = {.lex_state = 0, .external_lex_state = 3}, [1907] = {.lex_state = 0, .external_lex_state = 3}, - [1908] = {.lex_state = 0, .external_lex_state = 3}, - [1909] = {.lex_state = 3, .external_lex_state = 3}, - [1910] = {.lex_state = 58, .external_lex_state = 3}, - [1911] = {.lex_state = 0, .external_lex_state = 3}, - [1912] = {.lex_state = 58, .external_lex_state = 3}, - [1913] = {.lex_state = 4, .external_lex_state = 3}, - [1914] = {.lex_state = 58, .external_lex_state = 3}, - [1915] = {.lex_state = 58, .external_lex_state = 3}, + [1908] = {.lex_state = 58, .external_lex_state = 3}, + [1909] = {.lex_state = 0, .external_lex_state = 3}, + [1910] = {.lex_state = 0, .external_lex_state = 3}, + [1911] = {.lex_state = 4, .external_lex_state = 3}, + [1912] = {.lex_state = 0, .external_lex_state = 3}, + [1913] = {.lex_state = 0, .external_lex_state = 3}, + [1914] = {.lex_state = 4, .external_lex_state = 3}, + [1915] = {.lex_state = 0, .external_lex_state = 3}, [1916] = {.lex_state = 0, .external_lex_state = 3}, [1917] = {.lex_state = 0, .external_lex_state = 3}, - [1918] = {.lex_state = 0, .external_lex_state = 3}, - [1919] = {.lex_state = 58, .external_lex_state = 3}, - [1920] = {.lex_state = 0, .external_lex_state = 3}, + [1918] = {.lex_state = 58, .external_lex_state = 3}, + [1919] = {.lex_state = 4, .external_lex_state = 3}, + [1920] = {.lex_state = 9, .external_lex_state = 3}, [1921] = {.lex_state = 58, .external_lex_state = 3}, - [1922] = {.lex_state = 58, .external_lex_state = 3}, - [1923] = {.lex_state = 0, .external_lex_state = 3}, - [1924] = {.lex_state = 0, .external_lex_state = 3}, - [1925] = {.lex_state = 4, .external_lex_state = 3}, - [1926] = {.lex_state = 58, .external_lex_state = 3}, + [1922] = {.lex_state = 0, .external_lex_state = 3}, + [1923] = {.lex_state = 58, .external_lex_state = 3}, + [1924] = {.lex_state = 3, .external_lex_state = 3}, + [1925] = {.lex_state = 3, .external_lex_state = 3}, + [1926] = {.lex_state = 9, .external_lex_state = 3}, [1927] = {.lex_state = 0, .external_lex_state = 3}, - [1928] = {.lex_state = 4, .external_lex_state = 3}, - [1929] = {.lex_state = 9, .external_lex_state = 3}, - [1930] = {.lex_state = 0, .external_lex_state = 3}, - [1931] = {.lex_state = 0, .external_lex_state = 3}, + [1928] = {.lex_state = 18, .external_lex_state = 3}, + [1929] = {.lex_state = 58, .external_lex_state = 3}, + [1930] = {.lex_state = 58, .external_lex_state = 3}, + [1931] = {.lex_state = 58, .external_lex_state = 3}, [1932] = {.lex_state = 0, .external_lex_state = 3}, [1933] = {.lex_state = 58, .external_lex_state = 3}, [1934] = {.lex_state = 0, .external_lex_state = 3}, - [1935] = {.lex_state = 58, .external_lex_state = 3}, - [1936] = {.lex_state = 0, .external_lex_state = 3}, - [1937] = {.lex_state = 0, .external_lex_state = 3}, - [1938] = {.lex_state = 0, .external_lex_state = 3}, - [1939] = {.lex_state = 0, .external_lex_state = 3}, + [1935] = {.lex_state = 0, .external_lex_state = 3}, + [1936] = {.lex_state = 58, .external_lex_state = 3}, + [1937] = {.lex_state = 4, .external_lex_state = 3}, + [1938] = {.lex_state = 58, .external_lex_state = 3}, + [1939] = {.lex_state = 58, .external_lex_state = 3}, [1940] = {.lex_state = 0, .external_lex_state = 3}, - [1941] = {.lex_state = 4, .external_lex_state = 3}, - [1942] = {.lex_state = 0, .external_lex_state = 3}, - [1943] = {.lex_state = 4, .external_lex_state = 3}, - [1944] = {.lex_state = 58, .external_lex_state = 3}, - [1945] = {.lex_state = 58, .external_lex_state = 3}, - [1946] = {.lex_state = 0, .external_lex_state = 3}, - [1947] = {.lex_state = 4, .external_lex_state = 3}, - [1948] = {.lex_state = 4, .external_lex_state = 3}, + [1941] = {.lex_state = 0, .external_lex_state = 3}, + [1942] = {.lex_state = 58, .external_lex_state = 3}, + [1943] = {.lex_state = 0, .external_lex_state = 3}, + [1944] = {.lex_state = 4, .external_lex_state = 3}, + [1945] = {.lex_state = 4, .external_lex_state = 3}, + [1946] = {.lex_state = 9, .external_lex_state = 3}, + [1947] = {.lex_state = 58, .external_lex_state = 3}, + [1948] = {.lex_state = 0, .external_lex_state = 3}, [1949] = {.lex_state = 58, .external_lex_state = 3}, - [1950] = {.lex_state = 58, .external_lex_state = 3}, - [1951] = {.lex_state = 0, .external_lex_state = 3}, - [1952] = {.lex_state = 58, .external_lex_state = 3}, - [1953] = {.lex_state = 0, .external_lex_state = 3}, - [1954] = {.lex_state = 3, .external_lex_state = 3}, + [1950] = {.lex_state = 0, .external_lex_state = 3}, + [1951] = {.lex_state = 4, .external_lex_state = 3}, + [1952] = {.lex_state = 0, .external_lex_state = 3}, + [1953] = {.lex_state = 58, .external_lex_state = 3}, + [1954] = {.lex_state = 0, .external_lex_state = 3}, [1955] = {.lex_state = 0, .external_lex_state = 3}, - [1956] = {.lex_state = 4, .external_lex_state = 3}, + [1956] = {.lex_state = 0, .external_lex_state = 3}, [1957] = {.lex_state = 0, .external_lex_state = 3}, - [1958] = {.lex_state = 0, .external_lex_state = 3}, + [1958] = {.lex_state = 58, .external_lex_state = 3}, [1959] = {.lex_state = 0, .external_lex_state = 3}, [1960] = {.lex_state = 0, .external_lex_state = 3}, - [1961] = {.lex_state = 0, .external_lex_state = 3}, - [1962] = {.lex_state = 0, .external_lex_state = 3}, + [1961] = {.lex_state = 58, .external_lex_state = 3}, + [1962] = {.lex_state = 4, .external_lex_state = 3}, [1963] = {.lex_state = 58, .external_lex_state = 3}, - [1964] = {.lex_state = 4, .external_lex_state = 3}, + [1964] = {.lex_state = 0, .external_lex_state = 3}, [1965] = {.lex_state = 0, .external_lex_state = 3}, - [1966] = {.lex_state = 0, .external_lex_state = 3}, - [1967] = {.lex_state = 0, .external_lex_state = 3}, - [1968] = {.lex_state = 58, .external_lex_state = 3}, - [1969] = {.lex_state = 58, .external_lex_state = 3}, - [1970] = {.lex_state = 3, .external_lex_state = 3}, - [1971] = {.lex_state = 3, .external_lex_state = 3}, - [1972] = {.lex_state = 58, .external_lex_state = 3}, - [1973] = {.lex_state = 9, .external_lex_state = 3}, + [1966] = {.lex_state = 58, .external_lex_state = 3}, + [1967] = {.lex_state = 58, .external_lex_state = 3}, + [1968] = {.lex_state = 0, .external_lex_state = 3}, + [1969] = {.lex_state = 0, .external_lex_state = 3}, + [1970] = {.lex_state = 58, .external_lex_state = 3}, + [1971] = {.lex_state = 0, .external_lex_state = 3}, + [1972] = {.lex_state = 0, .external_lex_state = 3}, + [1973] = {.lex_state = 0, .external_lex_state = 3}, [1974] = {.lex_state = 58, .external_lex_state = 3}, [1975] = {.lex_state = 0, .external_lex_state = 3}, [1976] = {.lex_state = 0, .external_lex_state = 3}, [1977] = {.lex_state = 0, .external_lex_state = 3}, [1978] = {.lex_state = 0, .external_lex_state = 3}, - [1979] = {.lex_state = 58, .external_lex_state = 3}, + [1979] = {.lex_state = 4, .external_lex_state = 3}, [1980] = {.lex_state = 0, .external_lex_state = 3}, - [1981] = {.lex_state = 0, .external_lex_state = 3}, - [1982] = {.lex_state = 3, .external_lex_state = 3}, - [1983] = {.lex_state = 3, .external_lex_state = 3}, + [1981] = {.lex_state = 58, .external_lex_state = 3}, + [1982] = {.lex_state = 0, .external_lex_state = 3}, + [1983] = {.lex_state = 0, .external_lex_state = 3}, [1984] = {.lex_state = 0, .external_lex_state = 3}, - [1985] = {.lex_state = 58, .external_lex_state = 3}, + [1985] = {.lex_state = 0, .external_lex_state = 3}, [1986] = {.lex_state = 58, .external_lex_state = 3}, - [1987] = {.lex_state = 0, .external_lex_state = 3}, - [1988] = {.lex_state = 58, .external_lex_state = 3}, + [1987] = {.lex_state = 58, .external_lex_state = 3}, + [1988] = {.lex_state = 0, .external_lex_state = 3}, [1989] = {.lex_state = 58, .external_lex_state = 3}, - [1990] = {.lex_state = 0, .external_lex_state = 3}, - [1991] = {.lex_state = 4, .external_lex_state = 3}, - [1992] = {.lex_state = 0, .external_lex_state = 3}, + [1990] = {.lex_state = 4, .external_lex_state = 3}, + [1991] = {.lex_state = 0, .external_lex_state = 3}, + [1992] = {.lex_state = 58, .external_lex_state = 3}, [1993] = {.lex_state = 58, .external_lex_state = 3}, - [1994] = {.lex_state = 58, .external_lex_state = 3}, + [1994] = {.lex_state = 0, .external_lex_state = 3}, [1995] = {.lex_state = 0, .external_lex_state = 3}, - [1996] = {.lex_state = 0, .external_lex_state = 3}, - [1997] = {.lex_state = 3, .external_lex_state = 3}, + [1996] = {.lex_state = 58, .external_lex_state = 3}, + [1997] = {.lex_state = 0, .external_lex_state = 3}, [1998] = {.lex_state = 58, .external_lex_state = 3}, - [1999] = {.lex_state = 3, .external_lex_state = 3}, + [1999] = {.lex_state = 0, .external_lex_state = 3}, [2000] = {.lex_state = 3, .external_lex_state = 3}, - [2001] = {.lex_state = 4, .external_lex_state = 3}, - [2002] = {.lex_state = 3, .external_lex_state = 3}, - [2003] = {.lex_state = 3, .external_lex_state = 3}, + [2001] = {.lex_state = 58, .external_lex_state = 3}, + [2002] = {.lex_state = 58, .external_lex_state = 3}, + [2003] = {.lex_state = 0, .external_lex_state = 3}, [2004] = {.lex_state = 0, .external_lex_state = 3}, - [2005] = {.lex_state = 58, .external_lex_state = 3}, - [2006] = {.lex_state = 0, .external_lex_state = 3}, + [2005] = {.lex_state = 0, .external_lex_state = 3}, + [2006] = {.lex_state = 3, .external_lex_state = 3}, [2007] = {.lex_state = 0, .external_lex_state = 3}, - [2008] = {.lex_state = 3, .external_lex_state = 3}, - [2009] = {.lex_state = 0, .external_lex_state = 3}, + [2008] = {.lex_state = 58, .external_lex_state = 3}, + [2009] = {.lex_state = 58, .external_lex_state = 3}, [2010] = {.lex_state = 0, .external_lex_state = 3}, - [2011] = {.lex_state = 58, .external_lex_state = 3}, - [2012] = {.lex_state = 0, .external_lex_state = 3}, - [2013] = {.lex_state = 9, .external_lex_state = 3}, - [2014] = {.lex_state = 4, .external_lex_state = 3}, + [2011] = {.lex_state = 0, .external_lex_state = 3}, + [2012] = {.lex_state = 9, .external_lex_state = 3}, + [2013] = {.lex_state = 0, .external_lex_state = 3}, + [2014] = {.lex_state = 0, .external_lex_state = 3}, [2015] = {.lex_state = 0, .external_lex_state = 3}, - [2016] = {.lex_state = 58, .external_lex_state = 3}, + [2016] = {.lex_state = 0, .external_lex_state = 3}, [2017] = {.lex_state = 0, .external_lex_state = 3}, [2018] = {.lex_state = 0, .external_lex_state = 3}, - [2019] = {.lex_state = 3, .external_lex_state = 3}, - [2020] = {.lex_state = 0, .external_lex_state = 3}, - [2021] = {.lex_state = 3, .external_lex_state = 3}, + [2019] = {.lex_state = 0, .external_lex_state = 3}, + [2020] = {.lex_state = 3, .external_lex_state = 3}, + [2021] = {.lex_state = 0, .external_lex_state = 3}, [2022] = {.lex_state = 3, .external_lex_state = 3}, - [2023] = {.lex_state = 18, .external_lex_state = 3}, - [2024] = {.lex_state = 58, .external_lex_state = 3}, - [2025] = {.lex_state = 58, .external_lex_state = 3}, - [2026] = {.lex_state = 3, .external_lex_state = 3}, + [2023] = {.lex_state = 0, .external_lex_state = 3}, + [2024] = {.lex_state = 3, .external_lex_state = 3}, + [2025] = {.lex_state = 0, .external_lex_state = 3}, + [2026] = {.lex_state = 0, .external_lex_state = 3}, [2027] = {.lex_state = 0, .external_lex_state = 3}, - [2028] = {.lex_state = 0, .external_lex_state = 3}, - [2029] = {.lex_state = 0, .external_lex_state = 3}, + [2028] = {.lex_state = 58, .external_lex_state = 3}, + [2029] = {.lex_state = 58, .external_lex_state = 3}, [2030] = {.lex_state = 58, .external_lex_state = 3}, [2031] = {.lex_state = 0, .external_lex_state = 3}, - [2032] = {.lex_state = 58, .external_lex_state = 3}, - [2033] = {.lex_state = 4, .external_lex_state = 3}, - [2034] = {.lex_state = 0, .external_lex_state = 3}, - [2035] = {.lex_state = 9, .external_lex_state = 3}, + [2032] = {.lex_state = 0, .external_lex_state = 3}, + [2033] = {.lex_state = 0, .external_lex_state = 3}, + [2034] = {.lex_state = 3, .external_lex_state = 3}, + [2035] = {.lex_state = 58, .external_lex_state = 3}, [2036] = {.lex_state = 0, .external_lex_state = 3}, - [2037] = {.lex_state = 0, .external_lex_state = 3}, - [2038] = {.lex_state = 0, .external_lex_state = 3}, + [2037] = {.lex_state = 58, .external_lex_state = 3}, + [2038] = {.lex_state = 58, .external_lex_state = 3}, [2039] = {.lex_state = 0, .external_lex_state = 3}, [2040] = {.lex_state = 0, .external_lex_state = 3}, - [2041] = {.lex_state = 0, .external_lex_state = 3}, - [2042] = {.lex_state = 0, .external_lex_state = 3}, - [2043] = {.lex_state = 58, .external_lex_state = 3}, + [2041] = {.lex_state = 58, .external_lex_state = 3}, + [2042] = {.lex_state = 4, .external_lex_state = 3}, + [2043] = {.lex_state = 4, .external_lex_state = 3}, [2044] = {.lex_state = 0, .external_lex_state = 3}, - [2045] = {.lex_state = 4, .external_lex_state = 3}, + [2045] = {.lex_state = 0, .external_lex_state = 3}, [2046] = {.lex_state = 58, .external_lex_state = 3}, [2047] = {.lex_state = 0, .external_lex_state = 3}, [2048] = {.lex_state = 0, .external_lex_state = 3}, [2049] = {.lex_state = 0, .external_lex_state = 3}, [2050] = {.lex_state = 0, .external_lex_state = 3}, - [2051] = {.lex_state = 0, .external_lex_state = 3}, - [2052] = {.lex_state = 58, .external_lex_state = 3}, + [2051] = {.lex_state = 4, .external_lex_state = 3}, + [2052] = {.lex_state = 9, .external_lex_state = 3}, [2053] = {.lex_state = 0, .external_lex_state = 3}, - [2054] = {.lex_state = 4, .external_lex_state = 3}, + [2054] = {.lex_state = 58, .external_lex_state = 3}, [2055] = {.lex_state = 0, .external_lex_state = 3}, [2056] = {.lex_state = 0, .external_lex_state = 3}, [2057] = {.lex_state = 0, .external_lex_state = 3}, [2058] = {.lex_state = 58, .external_lex_state = 3}, [2059] = {.lex_state = 0, .external_lex_state = 3}, - [2060] = {.lex_state = 58, .external_lex_state = 3}, + [2060] = {.lex_state = 0, .external_lex_state = 3}, [2061] = {.lex_state = 0, .external_lex_state = 3}, - [2062] = {.lex_state = 0, .external_lex_state = 3}, + [2062] = {.lex_state = 4, .external_lex_state = 3}, [2063] = {.lex_state = 0, .external_lex_state = 3}, - [2064] = {.lex_state = 0, .external_lex_state = 3}, + [2064] = {.lex_state = 4, .external_lex_state = 3}, [2065] = {.lex_state = 0, .external_lex_state = 3}, - [2066] = {.lex_state = 0, .external_lex_state = 3}, + [2066] = {.lex_state = 58, .external_lex_state = 3}, [2067] = {.lex_state = 0, .external_lex_state = 3}, - [2068] = {.lex_state = 58, .external_lex_state = 3}, - [2069] = {.lex_state = 0, .external_lex_state = 3}, - [2070] = {.lex_state = 0, .external_lex_state = 3}, + [2068] = {.lex_state = 0, .external_lex_state = 3}, + [2069] = {.lex_state = 58, .external_lex_state = 3}, + [2070] = {.lex_state = 58, .external_lex_state = 3}, [2071] = {.lex_state = 0, .external_lex_state = 3}, - [2072] = {.lex_state = 0, .external_lex_state = 3}, + [2072] = {.lex_state = 4, .external_lex_state = 3}, [2073] = {.lex_state = 0, .external_lex_state = 3}, [2074] = {.lex_state = 3, .external_lex_state = 3}, [2075] = {.lex_state = 58, .external_lex_state = 3}, [2076] = {.lex_state = 0, .external_lex_state = 3}, - [2077] = {.lex_state = 58, .external_lex_state = 3}, + [2077] = {.lex_state = 4, .external_lex_state = 3}, [2078] = {.lex_state = 0, .external_lex_state = 3}, - [2079] = {.lex_state = 0, .external_lex_state = 3}, - [2080] = {.lex_state = 58, .external_lex_state = 3}, - [2081] = {.lex_state = 0, .external_lex_state = 3}, - [2082] = {.lex_state = 0, .external_lex_state = 3}, + [2079] = {.lex_state = 58, .external_lex_state = 3}, + [2080] = {.lex_state = 0, .external_lex_state = 3}, + [2081] = {.lex_state = 58, .external_lex_state = 3}, + [2082] = {.lex_state = 58, .external_lex_state = 3}, [2083] = {.lex_state = 0, .external_lex_state = 3}, [2084] = {.lex_state = 0, .external_lex_state = 3}, - [2085] = {.lex_state = 4, .external_lex_state = 3}, - [2086] = {.lex_state = 58, .external_lex_state = 3}, + [2085] = {.lex_state = 58, .external_lex_state = 3}, + [2086] = {.lex_state = 0, .external_lex_state = 3}, [2087] = {.lex_state = 0, .external_lex_state = 3}, [2088] = {.lex_state = 0, .external_lex_state = 3}, [2089] = {.lex_state = 0, .external_lex_state = 3}, - [2090] = {.lex_state = 58, .external_lex_state = 3}, + [2090] = {.lex_state = 0, .external_lex_state = 3}, [2091] = {.lex_state = 0, .external_lex_state = 3}, - [2092] = {.lex_state = 0, .external_lex_state = 3}, - [2093] = {.lex_state = 3, .external_lex_state = 3}, - [2094] = {.lex_state = 0, .external_lex_state = 3}, - [2095] = {.lex_state = 58, .external_lex_state = 3}, + [2092] = {.lex_state = 4, .external_lex_state = 3}, + [2093] = {.lex_state = 58, .external_lex_state = 3}, + [2094] = {.lex_state = 58, .external_lex_state = 3}, + [2095] = {.lex_state = 4, .external_lex_state = 3}, [2096] = {.lex_state = 0, .external_lex_state = 3}, [2097] = {.lex_state = 0, .external_lex_state = 3}, [2098] = {.lex_state = 0, .external_lex_state = 3}, - [2099] = {.lex_state = 0, .external_lex_state = 3}, + [2099] = {.lex_state = 58, .external_lex_state = 3}, [2100] = {.lex_state = 0, .external_lex_state = 3}, [2101] = {.lex_state = 58, .external_lex_state = 3}, [2102] = {.lex_state = 0, .external_lex_state = 3}, [2103] = {.lex_state = 58, .external_lex_state = 3}, [2104] = {.lex_state = 0, .external_lex_state = 3}, - [2105] = {.lex_state = 0, .external_lex_state = 3}, - [2106] = {.lex_state = 0, .external_lex_state = 3}, + [2105] = {.lex_state = 3, .external_lex_state = 3}, + [2106] = {.lex_state = 3, .external_lex_state = 3}, [2107] = {.lex_state = 58, .external_lex_state = 3}, - [2108] = {.lex_state = 58, .external_lex_state = 3}, - [2109] = {.lex_state = 58, .external_lex_state = 3}, + [2108] = {.lex_state = 0, .external_lex_state = 3}, + [2109] = {.lex_state = 3, .external_lex_state = 3}, [2110] = {.lex_state = 0, .external_lex_state = 3}, [2111] = {.lex_state = 0, .external_lex_state = 3}, [2112] = {.lex_state = 0, .external_lex_state = 3}, [2113] = {.lex_state = 58, .external_lex_state = 3}, [2114] = {.lex_state = 58, .external_lex_state = 3}, - [2115] = {.lex_state = 0, .external_lex_state = 3}, - [2116] = {.lex_state = 58, .external_lex_state = 3}, + [2115] = {.lex_state = 58, .external_lex_state = 3}, + [2116] = {.lex_state = 0, .external_lex_state = 3}, [2117] = {.lex_state = 0, .external_lex_state = 3}, - [2118] = {.lex_state = 0, .external_lex_state = 3}, - [2119] = {.lex_state = 0, .external_lex_state = 3}, - [2120] = {.lex_state = 4, .external_lex_state = 3}, + [2118] = {.lex_state = 4, .external_lex_state = 3}, + [2119] = {.lex_state = 58, .external_lex_state = 3}, + [2120] = {.lex_state = 0, .external_lex_state = 3}, [2121] = {.lex_state = 0, .external_lex_state = 3}, [2122] = {.lex_state = 4, .external_lex_state = 3}, [2123] = {.lex_state = 0, .external_lex_state = 3}, [2124] = {.lex_state = 0, .external_lex_state = 3}, [2125] = {.lex_state = 0, .external_lex_state = 3}, - [2126] = {.lex_state = 0, .external_lex_state = 3}, + [2126] = {.lex_state = 4, .external_lex_state = 3}, [2127] = {.lex_state = 0, .external_lex_state = 3}, - [2128] = {.lex_state = 58, .external_lex_state = 3}, - [2129] = {.lex_state = 0, .external_lex_state = 3}, - [2130] = {.lex_state = 0, .external_lex_state = 3}, + [2128] = {.lex_state = 4, .external_lex_state = 3}, + [2129] = {.lex_state = 4, .external_lex_state = 3}, + [2130] = {.lex_state = 4, .external_lex_state = 3}, [2131] = {.lex_state = 0, .external_lex_state = 3}, [2132] = {.lex_state = 0, .external_lex_state = 3}, - [2133] = {.lex_state = 58, .external_lex_state = 3}, - [2134] = {.lex_state = 4, .external_lex_state = 3}, + [2133] = {.lex_state = 0, .external_lex_state = 3}, + [2134] = {.lex_state = 0, .external_lex_state = 3}, [2135] = {.lex_state = 0, .external_lex_state = 3}, - [2136] = {.lex_state = 4, .external_lex_state = 3}, + [2136] = {.lex_state = 0, .external_lex_state = 3}, [2137] = {.lex_state = 0, .external_lex_state = 3}, [2138] = {.lex_state = 0, .external_lex_state = 3}, [2139] = {.lex_state = 0, .external_lex_state = 3}, [2140] = {.lex_state = 0, .external_lex_state = 3}, - [2141] = {.lex_state = 0, .external_lex_state = 3}, + [2141] = {.lex_state = 4, .external_lex_state = 3}, [2142] = {.lex_state = 0, .external_lex_state = 3}, - [2143] = {.lex_state = 4, .external_lex_state = 3}, - [2144] = {.lex_state = 0, .external_lex_state = 3}, + [2143] = {.lex_state = 0, .external_lex_state = 3}, + [2144] = {.lex_state = 4, .external_lex_state = 3}, [2145] = {.lex_state = 0, .external_lex_state = 3}, - [2146] = {.lex_state = 58, .external_lex_state = 3}, + [2146] = {.lex_state = 4, .external_lex_state = 3}, [2147] = {.lex_state = 0, .external_lex_state = 3}, [2148] = {.lex_state = 4, .external_lex_state = 3}, [2149] = {.lex_state = 0, .external_lex_state = 3}, [2150] = {.lex_state = 0, .external_lex_state = 3}, - [2151] = {.lex_state = 0, .external_lex_state = 3}, + [2151] = {.lex_state = 58, .external_lex_state = 3}, [2152] = {.lex_state = 0, .external_lex_state = 3}, - [2153] = {.lex_state = 4, .external_lex_state = 3}, - [2154] = {.lex_state = 58, .external_lex_state = 3}, + [2153] = {.lex_state = 0, .external_lex_state = 3}, + [2154] = {.lex_state = 4, .external_lex_state = 3}, [2155] = {.lex_state = 4, .external_lex_state = 3}, - [2156] = {.lex_state = 4, .external_lex_state = 3}, + [2156] = {.lex_state = 0, .external_lex_state = 3}, [2157] = {.lex_state = 4, .external_lex_state = 3}, - [2158] = {.lex_state = 0, .external_lex_state = 3}, - [2159] = {.lex_state = 58, .external_lex_state = 3}, - [2160] = {.lex_state = 4, .external_lex_state = 3}, + [2158] = {.lex_state = 4, .external_lex_state = 3}, + [2159] = {.lex_state = 0, .external_lex_state = 3}, + [2160] = {.lex_state = 0, .external_lex_state = 3}, [2161] = {.lex_state = 0, .external_lex_state = 3}, [2162] = {.lex_state = 0, .external_lex_state = 3}, - [2163] = {.lex_state = 58, .external_lex_state = 3}, + [2163] = {.lex_state = 18, .external_lex_state = 3}, [2164] = {.lex_state = 0, .external_lex_state = 3}, - [2165] = {.lex_state = 18, .external_lex_state = 3}, + [2165] = {.lex_state = 4, .external_lex_state = 3}, [2166] = {.lex_state = 0, .external_lex_state = 3}, [2167] = {.lex_state = 4, .external_lex_state = 3}, [2168] = {.lex_state = 0, .external_lex_state = 3}, - [2169] = {.lex_state = 0, .external_lex_state = 3}, - [2170] = {.lex_state = 0, .external_lex_state = 3}, + [2169] = {.lex_state = 58, .external_lex_state = 3}, + [2170] = {.lex_state = 0, .external_lex_state = 5}, [2171] = {.lex_state = 0, .external_lex_state = 3}, [2172] = {.lex_state = 4, .external_lex_state = 3}, - [2173] = {.lex_state = 58, .external_lex_state = 3}, + [2173] = {.lex_state = 0, .external_lex_state = 3}, [2174] = {.lex_state = 4, .external_lex_state = 3}, - [2175] = {.lex_state = 0, .external_lex_state = 3}, - [2176] = {.lex_state = 4, .external_lex_state = 3}, + [2175] = {.lex_state = 4, .external_lex_state = 3}, + [2176] = {.lex_state = 0, .external_lex_state = 3}, [2177] = {.lex_state = 58, .external_lex_state = 3}, - [2178] = {.lex_state = 4, .external_lex_state = 3}, - [2179] = {.lex_state = 58, .external_lex_state = 3}, + [2178] = {.lex_state = 0, .external_lex_state = 3}, + [2179] = {.lex_state = 0, .external_lex_state = 3}, [2180] = {.lex_state = 0, .external_lex_state = 3}, [2181] = {.lex_state = 0, .external_lex_state = 3}, - [2182] = {.lex_state = 0, .external_lex_state = 3}, - [2183] = {.lex_state = 0, .external_lex_state = 3}, - [2184] = {.lex_state = 58, .external_lex_state = 3}, - [2185] = {.lex_state = 4, .external_lex_state = 3}, + [2182] = {.lex_state = 58, .external_lex_state = 3}, + [2183] = {.lex_state = 4, .external_lex_state = 3}, + [2184] = {.lex_state = 0, .external_lex_state = 3}, + [2185] = {.lex_state = 0, .external_lex_state = 3}, [2186] = {.lex_state = 0, .external_lex_state = 3}, [2187] = {.lex_state = 0, .external_lex_state = 3}, - [2188] = {.lex_state = 0, .external_lex_state = 3}, + [2188] = {.lex_state = 4, .external_lex_state = 3}, [2189] = {.lex_state = 0, .external_lex_state = 3}, - [2190] = {.lex_state = 0, .external_lex_state = 3}, - [2191] = {.lex_state = 18, .external_lex_state = 3}, - [2192] = {.lex_state = 0, .external_lex_state = 3}, + [2190] = {.lex_state = 58, .external_lex_state = 3}, + [2191] = {.lex_state = 4, .external_lex_state = 3}, + [2192] = {.lex_state = 4, .external_lex_state = 3}, [2193] = {.lex_state = 0, .external_lex_state = 3}, - [2194] = {.lex_state = 58, .external_lex_state = 3}, + [2194] = {.lex_state = 0, .external_lex_state = 3}, [2195] = {.lex_state = 0, .external_lex_state = 3}, [2196] = {.lex_state = 0, .external_lex_state = 3}, - [2197] = {.lex_state = 0, .external_lex_state = 3}, + [2197] = {.lex_state = 58, .external_lex_state = 3}, [2198] = {.lex_state = 0, .external_lex_state = 3}, - [2199] = {.lex_state = 58, .external_lex_state = 3}, + [2199] = {.lex_state = 0, .external_lex_state = 3}, [2200] = {.lex_state = 0, .external_lex_state = 3}, - [2201] = {.lex_state = 0, .external_lex_state = 3}, - [2202] = {.lex_state = 18, .external_lex_state = 3}, + [2201] = {.lex_state = 4, .external_lex_state = 3}, + [2202] = {.lex_state = 0, .external_lex_state = 3}, [2203] = {.lex_state = 0, .external_lex_state = 3}, - [2204] = {.lex_state = 18, .external_lex_state = 3}, - [2205] = {.lex_state = 4, .external_lex_state = 3}, + [2204] = {.lex_state = 0, .external_lex_state = 3}, + [2205] = {.lex_state = 0, .external_lex_state = 3}, [2206] = {.lex_state = 0, .external_lex_state = 3}, - [2207] = {.lex_state = 18, .external_lex_state = 3}, + [2207] = {.lex_state = 0, .external_lex_state = 3}, [2208] = {.lex_state = 0, .external_lex_state = 3}, - [2209] = {.lex_state = 0, .external_lex_state = 3}, - [2210] = {.lex_state = 0, .external_lex_state = 3}, - [2211] = {.lex_state = 0, .external_lex_state = 3}, - [2212] = {.lex_state = 0, .external_lex_state = 5}, + [2209] = {.lex_state = 4, .external_lex_state = 3}, + [2210] = {.lex_state = 4, .external_lex_state = 3}, + [2211] = {.lex_state = 58, .external_lex_state = 3}, + [2212] = {.lex_state = 0, .external_lex_state = 3}, [2213] = {.lex_state = 0, .external_lex_state = 3}, [2214] = {.lex_state = 0, .external_lex_state = 3}, [2215] = {.lex_state = 0, .external_lex_state = 3}, - [2216] = {.lex_state = 18, .external_lex_state = 3}, - [2217] = {.lex_state = 4, .external_lex_state = 3}, - [2218] = {.lex_state = 0, .external_lex_state = 3}, - [2219] = {.lex_state = 58, .external_lex_state = 3}, + [2216] = {.lex_state = 0, .external_lex_state = 3}, + [2217] = {.lex_state = 0, .external_lex_state = 3}, + [2218] = {.lex_state = 4, .external_lex_state = 3}, + [2219] = {.lex_state = 0, .external_lex_state = 3}, [2220] = {.lex_state = 0, .external_lex_state = 3}, [2221] = {.lex_state = 0, .external_lex_state = 3}, [2222] = {.lex_state = 0, .external_lex_state = 3}, - [2223] = {.lex_state = 4, .external_lex_state = 3}, - [2224] = {.lex_state = 58, .external_lex_state = 3}, - [2225] = {.lex_state = 0, .external_lex_state = 3}, + [2223] = {.lex_state = 0, .external_lex_state = 3}, + [2224] = {.lex_state = 0, .external_lex_state = 3}, + [2225] = {.lex_state = 9, .external_lex_state = 3}, [2226] = {.lex_state = 0, .external_lex_state = 3}, - [2227] = {.lex_state = 0, .external_lex_state = 3}, - [2228] = {.lex_state = 0, .external_lex_state = 3}, + [2227] = {.lex_state = 58, .external_lex_state = 3}, + [2228] = {.lex_state = 58, .external_lex_state = 3}, [2229] = {.lex_state = 0, .external_lex_state = 3}, [2230] = {.lex_state = 0, .external_lex_state = 3}, [2231] = {.lex_state = 0, .external_lex_state = 3}, [2232] = {.lex_state = 0, .external_lex_state = 3}, - [2233] = {.lex_state = 0, .external_lex_state = 3}, + [2233] = {.lex_state = 58, .external_lex_state = 3}, [2234] = {.lex_state = 0, .external_lex_state = 3}, - [2235] = {.lex_state = 58, .external_lex_state = 3}, + [2235] = {.lex_state = 0, .external_lex_state = 3}, [2236] = {.lex_state = 0, .external_lex_state = 3}, [2237] = {.lex_state = 0, .external_lex_state = 3}, - [2238] = {.lex_state = 9, .external_lex_state = 3}, - [2239] = {.lex_state = 0, .external_lex_state = 3}, - [2240] = {.lex_state = 4, .external_lex_state = 3}, - [2241] = {.lex_state = 58, .external_lex_state = 3}, + [2238] = {.lex_state = 0, .external_lex_state = 3}, + [2239] = {.lex_state = 58, .external_lex_state = 3}, + [2240] = {.lex_state = 0, .external_lex_state = 3}, + [2241] = {.lex_state = 0, .external_lex_state = 3}, [2242] = {.lex_state = 0, .external_lex_state = 3}, [2243] = {.lex_state = 0, .external_lex_state = 3}, [2244] = {.lex_state = 0, .external_lex_state = 3}, - [2245] = {.lex_state = 0, .external_lex_state = 3}, - [2246] = {.lex_state = 0, .external_lex_state = 3}, + [2245] = {.lex_state = 58, .external_lex_state = 3}, + [2246] = {.lex_state = 58, .external_lex_state = 3}, [2247] = {.lex_state = 0, .external_lex_state = 3}, [2248] = {.lex_state = 0, .external_lex_state = 3}, - [2249] = {.lex_state = 0, .external_lex_state = 3}, + [2249] = {.lex_state = 4, .external_lex_state = 3}, [2250] = {.lex_state = 0, .external_lex_state = 3}, [2251] = {.lex_state = 0, .external_lex_state = 3}, [2252] = {.lex_state = 0, .external_lex_state = 3}, - [2253] = {.lex_state = 0, .external_lex_state = 3}, - [2254] = {.lex_state = 4, .external_lex_state = 3}, + [2253] = {.lex_state = 58, .external_lex_state = 3}, + [2254] = {.lex_state = 0, .external_lex_state = 3}, [2255] = {.lex_state = 0, .external_lex_state = 3}, [2256] = {.lex_state = 0, .external_lex_state = 3}, [2257] = {.lex_state = 0, .external_lex_state = 3}, - [2258] = {.lex_state = 0, .external_lex_state = 3}, + [2258] = {.lex_state = 58, .external_lex_state = 3}, [2259] = {.lex_state = 0, .external_lex_state = 3}, - [2260] = {.lex_state = 58, .external_lex_state = 3}, + [2260] = {.lex_state = 0, .external_lex_state = 3}, [2261] = {.lex_state = 0, .external_lex_state = 3}, [2262] = {.lex_state = 58, .external_lex_state = 3}, [2263] = {.lex_state = 0, .external_lex_state = 3}, - [2264] = {.lex_state = 0, .external_lex_state = 3}, - [2265] = {.lex_state = 0, .external_lex_state = 3}, + [2264] = {.lex_state = 4, .external_lex_state = 3}, + [2265] = {.lex_state = 4, .external_lex_state = 3}, [2266] = {.lex_state = 0, .external_lex_state = 3}, [2267] = {.lex_state = 0, .external_lex_state = 3}, [2268] = {.lex_state = 0, .external_lex_state = 3}, [2269] = {.lex_state = 0, .external_lex_state = 3}, - [2270] = {.lex_state = 0, .external_lex_state = 3}, + [2270] = {.lex_state = 58, .external_lex_state = 3}, [2271] = {.lex_state = 0, .external_lex_state = 3}, - [2272] = {.lex_state = 4, .external_lex_state = 3}, + [2272] = {.lex_state = 58, .external_lex_state = 3}, [2273] = {.lex_state = 0, .external_lex_state = 3}, - [2274] = {.lex_state = 58, .external_lex_state = 3}, - [2275] = {.lex_state = 58, .external_lex_state = 3}, + [2274] = {.lex_state = 0, .external_lex_state = 3}, + [2275] = {.lex_state = 0, .external_lex_state = 3}, [2276] = {.lex_state = 0, .external_lex_state = 3}, - [2277] = {.lex_state = 58, .external_lex_state = 3}, - [2278] = {.lex_state = 0, .external_lex_state = 3}, - [2279] = {.lex_state = 0, .external_lex_state = 3}, + [2277] = {.lex_state = 0, .external_lex_state = 3}, + [2278] = {.lex_state = 18, .external_lex_state = 3}, + [2279] = {.lex_state = 58, .external_lex_state = 3}, [2280] = {.lex_state = 0, .external_lex_state = 3}, - [2281] = {.lex_state = 0, .external_lex_state = 3}, - [2282] = {.lex_state = 58, .external_lex_state = 3}, - [2283] = {.lex_state = 58, .external_lex_state = 3}, + [2281] = {.lex_state = 58, .external_lex_state = 3}, + [2282] = {.lex_state = 0, .external_lex_state = 3}, + [2283] = {.lex_state = 0, .external_lex_state = 3}, [2284] = {.lex_state = 0, .external_lex_state = 3}, - [2285] = {.lex_state = 0, .external_lex_state = 3}, - [2286] = {.lex_state = 58, .external_lex_state = 3}, + [2285] = {.lex_state = 58, .external_lex_state = 3}, + [2286] = {.lex_state = 0, .external_lex_state = 3}, [2287] = {.lex_state = 4, .external_lex_state = 3}, - [2288] = {.lex_state = 58, .external_lex_state = 3}, - [2289] = {.lex_state = 0, .external_lex_state = 3}, - [2290] = {.lex_state = 0, .external_lex_state = 3}, - [2291] = {.lex_state = 58, .external_lex_state = 3}, - [2292] = {.lex_state = 4, .external_lex_state = 3}, + [2288] = {.lex_state = 0, .external_lex_state = 3}, + [2289] = {.lex_state = 58, .external_lex_state = 3}, + [2290] = {.lex_state = 58, .external_lex_state = 3}, + [2291] = {.lex_state = 0, .external_lex_state = 3}, + [2292] = {.lex_state = 0, .external_lex_state = 3}, [2293] = {.lex_state = 0, .external_lex_state = 3}, - [2294] = {.lex_state = 4, .external_lex_state = 3}, + [2294] = {.lex_state = 0, .external_lex_state = 3}, [2295] = {.lex_state = 0, .external_lex_state = 3}, - [2296] = {.lex_state = 4, .external_lex_state = 3}, + [2296] = {.lex_state = 58, .external_lex_state = 3}, [2297] = {.lex_state = 0, .external_lex_state = 3}, [2298] = {.lex_state = 0, .external_lex_state = 3}, [2299] = {.lex_state = 0, .external_lex_state = 3}, - [2300] = {.lex_state = 0, .external_lex_state = 3}, + [2300] = {.lex_state = 58, .external_lex_state = 3}, [2301] = {.lex_state = 0, .external_lex_state = 3}, [2302] = {.lex_state = 0, .external_lex_state = 3}, - [2303] = {.lex_state = 0, .external_lex_state = 3}, + [2303] = {.lex_state = 4, .external_lex_state = 3}, [2304] = {.lex_state = 0, .external_lex_state = 3}, - [2305] = {.lex_state = 58, .external_lex_state = 3}, - [2306] = {.lex_state = 58, .external_lex_state = 3}, + [2305] = {.lex_state = 0, .external_lex_state = 3}, + [2306] = {.lex_state = 0, .external_lex_state = 3}, [2307] = {.lex_state = 0, .external_lex_state = 3}, - [2308] = {.lex_state = 0, .external_lex_state = 3}, - [2309] = {.lex_state = 0, .external_lex_state = 3}, + [2308] = {.lex_state = 18, .external_lex_state = 3}, + [2309] = {.lex_state = 58, .external_lex_state = 3}, [2310] = {.lex_state = 0, .external_lex_state = 3}, [2311] = {.lex_state = 0, .external_lex_state = 3}, - [2312] = {.lex_state = 0, .external_lex_state = 3}, + [2312] = {.lex_state = 58, .external_lex_state = 3}, [2313] = {.lex_state = 0, .external_lex_state = 3}, [2314] = {.lex_state = 0, .external_lex_state = 3}, [2315] = {.lex_state = 0, .external_lex_state = 3}, - [2316] = {.lex_state = 0, .external_lex_state = 3}, - [2317] = {.lex_state = 0, .external_lex_state = 3}, - [2318] = {.lex_state = 4, .external_lex_state = 3}, + [2316] = {.lex_state = 58, .external_lex_state = 3}, + [2317] = {.lex_state = 18, .external_lex_state = 3}, + [2318] = {.lex_state = 18, .external_lex_state = 3}, [2319] = {.lex_state = 0, .external_lex_state = 3}, - [2320] = {.lex_state = 58, .external_lex_state = 3}, + [2320] = {.lex_state = 18, .external_lex_state = 3}, [2321] = {.lex_state = 0, .external_lex_state = 3}, - [2322] = {.lex_state = 58, .external_lex_state = 3}, + [2322] = {.lex_state = 9, .external_lex_state = 3}, [2323] = {.lex_state = 0, .external_lex_state = 3}, - [2324] = {.lex_state = 0, .external_lex_state = 3}, - [2325] = {.lex_state = 4, .external_lex_state = 3}, - [2326] = {.lex_state = 0, .external_lex_state = 3}, - [2327] = {.lex_state = 4, .external_lex_state = 3}, - [2328] = {.lex_state = 0, .external_lex_state = 3}, - [2329] = {.lex_state = 4, .external_lex_state = 3}, + [2324] = {.lex_state = 4, .external_lex_state = 3}, + [2325] = {.lex_state = 0, .external_lex_state = 3}, + [2326] = {.lex_state = 4, .external_lex_state = 3}, + [2327] = {.lex_state = 0, .external_lex_state = 3}, + [2328] = {.lex_state = 4, .external_lex_state = 3}, + [2329] = {.lex_state = 0, .external_lex_state = 3}, [2330] = {.lex_state = 4, .external_lex_state = 3}, [2331] = {.lex_state = 4, .external_lex_state = 3}, [2332] = {.lex_state = 0, .external_lex_state = 3}, - [2333] = {.lex_state = 9, .external_lex_state = 3}, + [2333] = {.lex_state = 4, .external_lex_state = 3}, [2334] = {.lex_state = 0, .external_lex_state = 3}, [2335] = {.lex_state = 4, .external_lex_state = 3}, - [2336] = {.lex_state = 58, .external_lex_state = 3}, - [2337] = {.lex_state = 4, .external_lex_state = 3}, - [2338] = {.lex_state = 4, .external_lex_state = 3}, - [2339] = {.lex_state = 4, .external_lex_state = 3}, + [2336] = {.lex_state = 4, .external_lex_state = 3}, + [2337] = {.lex_state = 0, .external_lex_state = 3}, + [2338] = {.lex_state = 0, .external_lex_state = 3}, + [2339] = {.lex_state = 0, .external_lex_state = 3}, [2340] = {.lex_state = 0, .external_lex_state = 3}, [2341] = {.lex_state = 4, .external_lex_state = 3}, - [2342] = {.lex_state = 4, .external_lex_state = 3}, - [2343] = {.lex_state = 4, .external_lex_state = 3}, - [2344] = {.lex_state = 0, .external_lex_state = 3}, + [2342] = {.lex_state = 0, .external_lex_state = 3}, + [2343] = {.lex_state = 9, .external_lex_state = 3}, + [2344] = {.lex_state = 58, .external_lex_state = 3}, [2345] = {.lex_state = 4, .external_lex_state = 3}, - [2346] = {.lex_state = 0, .external_lex_state = 3}, + [2346] = {.lex_state = 58, .external_lex_state = 3}, [2347] = {.lex_state = 4, .external_lex_state = 3}, - [2348] = {.lex_state = 4, .external_lex_state = 3}, + [2348] = {.lex_state = 0, .external_lex_state = 3}, [2349] = {.lex_state = 4, .external_lex_state = 3}, [2350] = {.lex_state = 4, .external_lex_state = 3}, - [2351] = {.lex_state = 4, .external_lex_state = 3}, + [2351] = {.lex_state = 0, .external_lex_state = 3}, [2352] = {.lex_state = 4, .external_lex_state = 3}, - [2353] = {.lex_state = 58, .external_lex_state = 3}, - [2354] = {.lex_state = 4, .external_lex_state = 3}, + [2353] = {.lex_state = 4, .external_lex_state = 3}, + [2354] = {.lex_state = 0, .external_lex_state = 3}, [2355] = {.lex_state = 4, .external_lex_state = 3}, [2356] = {.lex_state = 0, .external_lex_state = 3}, [2357] = {.lex_state = 4, .external_lex_state = 3}, [2358] = {.lex_state = 4, .external_lex_state = 3}, - [2359] = {.lex_state = 0, .external_lex_state = 3}, + [2359] = {.lex_state = 4, .external_lex_state = 3}, [2360] = {.lex_state = 4, .external_lex_state = 3}, [2361] = {.lex_state = 4, .external_lex_state = 3}, [2362] = {.lex_state = 4, .external_lex_state = 3}, - [2363] = {.lex_state = 4, .external_lex_state = 3}, - [2364] = {.lex_state = 0, .external_lex_state = 3}, + [2363] = {.lex_state = 0, .external_lex_state = 3}, + [2364] = {.lex_state = 4, .external_lex_state = 3}, [2365] = {.lex_state = 0, .external_lex_state = 3}, - [2366] = {.lex_state = 4, .external_lex_state = 3}, + [2366] = {.lex_state = 0, .external_lex_state = 3}, [2367] = {.lex_state = 0, .external_lex_state = 3}, [2368] = {.lex_state = 0, .external_lex_state = 3}, [2369] = {.lex_state = 4, .external_lex_state = 3}, - [2370] = {.lex_state = 0, .external_lex_state = 3}, + [2370] = {.lex_state = 4, .external_lex_state = 3}, [2371] = {.lex_state = 0, .external_lex_state = 3}, - [2372] = {.lex_state = 4, .external_lex_state = 3}, + [2372] = {.lex_state = 0, .external_lex_state = 3}, [2373] = {.lex_state = 0, .external_lex_state = 3}, [2374] = {.lex_state = 0, .external_lex_state = 3}, - [2375] = {.lex_state = 0, .external_lex_state = 3}, + [2375] = {.lex_state = 4, .external_lex_state = 3}, [2376] = {.lex_state = 0, .external_lex_state = 3}, [2377] = {.lex_state = 0, .external_lex_state = 3}, - [2378] = {.lex_state = 4, .external_lex_state = 3}, + [2378] = {.lex_state = 0, .external_lex_state = 3}, [2379] = {.lex_state = 0, .external_lex_state = 3}, [2380] = {.lex_state = 0, .external_lex_state = 3}, - [2381] = {.lex_state = 4, .external_lex_state = 3}, - [2382] = {.lex_state = 0, .external_lex_state = 3}, + [2381] = {.lex_state = 0, .external_lex_state = 3}, + [2382] = {.lex_state = 4, .external_lex_state = 3}, [2383] = {.lex_state = 4, .external_lex_state = 3}, - [2384] = {.lex_state = 4, .external_lex_state = 3}, - [2385] = {.lex_state = 9, .external_lex_state = 3}, + [2384] = {.lex_state = 0, .external_lex_state = 3}, + [2385] = {.lex_state = 4, .external_lex_state = 3}, [2386] = {.lex_state = 4, .external_lex_state = 3}, - [2387] = {.lex_state = 4, .external_lex_state = 3}, - [2388] = {.lex_state = 4, .external_lex_state = 3}, - [2389] = {.lex_state = 4, .external_lex_state = 3}, - [2390] = {.lex_state = 0, .external_lex_state = 3}, + [2387] = {.lex_state = 9, .external_lex_state = 3}, + [2388] = {.lex_state = 0, .external_lex_state = 3}, + [2389] = {.lex_state = 0, .external_lex_state = 3}, + [2390] = {.lex_state = 4, .external_lex_state = 3}, [2391] = {.lex_state = 4, .external_lex_state = 3}, [2392] = {.lex_state = 4, .external_lex_state = 3}, - [2393] = {.lex_state = 4, .external_lex_state = 3}, + [2393] = {.lex_state = 0, .external_lex_state = 3}, [2394] = {.lex_state = 4, .external_lex_state = 3}, - [2395] = {.lex_state = 4, .external_lex_state = 3}, + [2395] = {.lex_state = 0, .external_lex_state = 3}, [2396] = {.lex_state = 4, .external_lex_state = 3}, [2397] = {.lex_state = 4, .external_lex_state = 3}, [2398] = {.lex_state = 4, .external_lex_state = 3}, @@ -15763,21 +15749,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2400] = {.lex_state = 4, .external_lex_state = 3}, [2401] = {.lex_state = 4, .external_lex_state = 3}, [2402] = {.lex_state = 0, .external_lex_state = 3}, - [2403] = {.lex_state = 0, .external_lex_state = 3}, + [2403] = {.lex_state = 9, .external_lex_state = 3}, [2404] = {.lex_state = 0, .external_lex_state = 3}, [2405] = {.lex_state = 4, .external_lex_state = 3}, - [2406] = {.lex_state = 0, .external_lex_state = 3}, + [2406] = {.lex_state = 4, .external_lex_state = 3}, [2407] = {.lex_state = 0, .external_lex_state = 3}, - [2408] = {.lex_state = 0, .external_lex_state = 3}, - [2409] = {.lex_state = 9, .external_lex_state = 3}, - [2410] = {.lex_state = 0, .external_lex_state = 3}, + [2408] = {.lex_state = 4, .external_lex_state = 3}, + [2409] = {.lex_state = 0, .external_lex_state = 3}, + [2410] = {.lex_state = 4, .external_lex_state = 3}, [2411] = {.lex_state = 0, .external_lex_state = 3}, [2412] = {.lex_state = 4, .external_lex_state = 3}, - [2413] = {.lex_state = 0, .external_lex_state = 3}, - [2414] = {.lex_state = 0, .external_lex_state = 3}, - [2415] = {.lex_state = 4, .external_lex_state = 3}, - [2416] = {.lex_state = 9, .external_lex_state = 3}, - [2417] = {.lex_state = 0, .external_lex_state = 3}, + [2413] = {.lex_state = 4, .external_lex_state = 3}, + [2414] = {.lex_state = 9, .external_lex_state = 3}, + [2415] = {.lex_state = 0, .external_lex_state = 3}, + [2416] = {.lex_state = 4, .external_lex_state = 3}, + [2417] = {.lex_state = 4, .external_lex_state = 3}, [2418] = {.lex_state = 4, .external_lex_state = 3}, [2419] = {.lex_state = 0, .external_lex_state = 3}, [2420] = {.lex_state = 0, .external_lex_state = 3}, @@ -15785,142 +15771,140 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2422] = {.lex_state = 0, .external_lex_state = 3}, [2423] = {.lex_state = 4, .external_lex_state = 3}, [2424] = {.lex_state = 4, .external_lex_state = 3}, - [2425] = {.lex_state = 4, .external_lex_state = 3}, - [2426] = {.lex_state = 4, .external_lex_state = 3}, - [2427] = {.lex_state = 4, .external_lex_state = 3}, + [2425] = {.lex_state = 58, .external_lex_state = 3}, + [2426] = {.lex_state = 0, .external_lex_state = 3}, + [2427] = {.lex_state = 9, .external_lex_state = 3}, [2428] = {.lex_state = 0, .external_lex_state = 3}, - [2429] = {.lex_state = 9, .external_lex_state = 3}, - [2430] = {.lex_state = 0, .external_lex_state = 3}, - [2431] = {.lex_state = 4, .external_lex_state = 3}, + [2429] = {.lex_state = 0, .external_lex_state = 3}, + [2430] = {.lex_state = 4, .external_lex_state = 3}, + [2431] = {.lex_state = 0, .external_lex_state = 3}, [2432] = {.lex_state = 4, .external_lex_state = 3}, - [2433] = {.lex_state = 0, .external_lex_state = 3}, - [2434] = {.lex_state = 4, .external_lex_state = 3}, - [2435] = {.lex_state = 0, .external_lex_state = 3}, - [2436] = {.lex_state = 0, .external_lex_state = 3}, + [2433] = {.lex_state = 4, .external_lex_state = 3}, + [2434] = {.lex_state = 0, .external_lex_state = 3}, + [2435] = {.lex_state = 4, .external_lex_state = 3}, + [2436] = {.lex_state = 4, .external_lex_state = 3}, [2437] = {.lex_state = 0, .external_lex_state = 3}, - [2438] = {.lex_state = 4, .external_lex_state = 3}, - [2439] = {.lex_state = 4, .external_lex_state = 3}, + [2438] = {.lex_state = 0, .external_lex_state = 3}, + [2439] = {.lex_state = 0, .external_lex_state = 3}, [2440] = {.lex_state = 0, .external_lex_state = 3}, [2441] = {.lex_state = 0, .external_lex_state = 3}, [2442] = {.lex_state = 4, .external_lex_state = 3}, - [2443] = {.lex_state = 0, .external_lex_state = 3}, - [2444] = {.lex_state = 0, .external_lex_state = 3}, - [2445] = {.lex_state = 4, .external_lex_state = 3}, - [2446] = {.lex_state = 4, .external_lex_state = 3}, + [2443] = {.lex_state = 4, .external_lex_state = 3}, + [2444] = {.lex_state = 4, .external_lex_state = 3}, + [2445] = {.lex_state = 9, .external_lex_state = 3}, + [2446] = {.lex_state = 0, .external_lex_state = 3}, [2447] = {.lex_state = 4, .external_lex_state = 3}, [2448] = {.lex_state = 0, .external_lex_state = 3}, [2449] = {.lex_state = 4, .external_lex_state = 3}, - [2450] = {.lex_state = 0, .external_lex_state = 3}, - [2451] = {.lex_state = 9, .external_lex_state = 3}, + [2450] = {.lex_state = 9, .external_lex_state = 3}, + [2451] = {.lex_state = 4, .external_lex_state = 3}, [2452] = {.lex_state = 4, .external_lex_state = 3}, [2453] = {.lex_state = 4, .external_lex_state = 3}, - [2454] = {.lex_state = 0, .external_lex_state = 3}, + [2454] = {.lex_state = 4, .external_lex_state = 3}, [2455] = {.lex_state = 0, .external_lex_state = 3}, [2456] = {.lex_state = 4, .external_lex_state = 3}, - [2457] = {.lex_state = 0, .external_lex_state = 3}, - [2458] = {.lex_state = 0, .external_lex_state = 3}, + [2457] = {.lex_state = 4, .external_lex_state = 3}, + [2458] = {.lex_state = 4, .external_lex_state = 3}, [2459] = {.lex_state = 0, .external_lex_state = 3}, [2460] = {.lex_state = 4, .external_lex_state = 3}, [2461] = {.lex_state = 0, .external_lex_state = 3}, [2462] = {.lex_state = 4, .external_lex_state = 3}, - [2463] = {.lex_state = 9, .external_lex_state = 3}, + [2463] = {.lex_state = 0, .external_lex_state = 3}, [2464] = {.lex_state = 0, .external_lex_state = 3}, - [2465] = {.lex_state = 0, .external_lex_state = 3}, + [2465] = {.lex_state = 4, .external_lex_state = 3}, [2466] = {.lex_state = 0, .external_lex_state = 3}, - [2467] = {.lex_state = 4, .external_lex_state = 3}, + [2467] = {.lex_state = 0, .external_lex_state = 3}, [2468] = {.lex_state = 0, .external_lex_state = 3}, - [2469] = {.lex_state = 0, .external_lex_state = 3}, - [2470] = {.lex_state = 0, .external_lex_state = 3}, - [2471] = {.lex_state = 9, .external_lex_state = 3}, - [2472] = {.lex_state = 4, .external_lex_state = 3}, - [2473] = {.lex_state = 4, .external_lex_state = 3}, + [2469] = {.lex_state = 9, .external_lex_state = 3}, + [2470] = {.lex_state = 4, .external_lex_state = 3}, + [2471] = {.lex_state = 0, .external_lex_state = 3}, + [2472] = {.lex_state = 0, .external_lex_state = 3}, + [2473] = {.lex_state = 0, .external_lex_state = 3}, [2474] = {.lex_state = 0, .external_lex_state = 3}, - [2475] = {.lex_state = 0, .external_lex_state = 3}, + [2475] = {.lex_state = 4, .external_lex_state = 3}, [2476] = {.lex_state = 0, .external_lex_state = 3}, - [2477] = {.lex_state = 0, .external_lex_state = 3}, - [2478] = {.lex_state = 9, .external_lex_state = 3}, - [2479] = {.lex_state = 58, .external_lex_state = 3}, - [2480] = {.lex_state = 0, .external_lex_state = 3}, - [2481] = {.lex_state = 4, .external_lex_state = 3}, - [2482] = {.lex_state = 4, .external_lex_state = 3}, - [2483] = {.lex_state = 0, .external_lex_state = 3}, + [2477] = {.lex_state = 4, .external_lex_state = 3}, + [2478] = {.lex_state = 0, .external_lex_state = 3}, + [2479] = {.lex_state = 0, .external_lex_state = 3}, + [2480] = {.lex_state = 4, .external_lex_state = 3}, + [2481] = {.lex_state = 0, .external_lex_state = 3}, + [2482] = {.lex_state = 0, .external_lex_state = 3}, + [2483] = {.lex_state = 4, .external_lex_state = 3}, [2484] = {.lex_state = 0, .external_lex_state = 3}, - [2485] = {.lex_state = 4, .external_lex_state = 3}, - [2486] = {.lex_state = 0, .external_lex_state = 3}, + [2485] = {.lex_state = 0, .external_lex_state = 3}, + [2486] = {.lex_state = 4, .external_lex_state = 3}, [2487] = {.lex_state = 0, .external_lex_state = 3}, - [2488] = {.lex_state = 4, .external_lex_state = 3}, - [2489] = {.lex_state = 0, .external_lex_state = 3}, + [2488] = {.lex_state = 0, .external_lex_state = 3}, + [2489] = {.lex_state = 4, .external_lex_state = 3}, [2490] = {.lex_state = 0, .external_lex_state = 3}, [2491] = {.lex_state = 0, .external_lex_state = 3}, - [2492] = {.lex_state = 4, .external_lex_state = 3}, + [2492] = {.lex_state = 0, .external_lex_state = 3}, [2493] = {.lex_state = 0, .external_lex_state = 3}, [2494] = {.lex_state = 0, .external_lex_state = 3}, - [2495] = {.lex_state = 0, .external_lex_state = 3}, - [2496] = {.lex_state = 4, .external_lex_state = 3}, - [2497] = {.lex_state = 4, .external_lex_state = 3}, + [2495] = {.lex_state = 4, .external_lex_state = 3}, + [2496] = {.lex_state = 0, .external_lex_state = 3}, + [2497] = {.lex_state = 0, .external_lex_state = 3}, [2498] = {.lex_state = 0, .external_lex_state = 3}, [2499] = {.lex_state = 0, .external_lex_state = 3}, - [2500] = {.lex_state = 0, .external_lex_state = 3}, + [2500] = {.lex_state = 4, .external_lex_state = 3}, [2501] = {.lex_state = 0, .external_lex_state = 3}, - [2502] = {.lex_state = 4, .external_lex_state = 3}, + [2502] = {.lex_state = 0, .external_lex_state = 3}, [2503] = {.lex_state = 0, .external_lex_state = 3}, - [2504] = {.lex_state = 0, .external_lex_state = 3}, + [2504] = {.lex_state = 58, .external_lex_state = 3}, [2505] = {.lex_state = 0, .external_lex_state = 3}, [2506] = {.lex_state = 0, .external_lex_state = 3}, [2507] = {.lex_state = 0, .external_lex_state = 3}, [2508] = {.lex_state = 0, .external_lex_state = 3}, - [2509] = {.lex_state = 4, .external_lex_state = 3}, - [2510] = {.lex_state = 4, .external_lex_state = 3}, - [2511] = {.lex_state = 0, .external_lex_state = 3}, + [2509] = {.lex_state = 0, .external_lex_state = 3}, + [2510] = {.lex_state = 0, .external_lex_state = 3}, + [2511] = {.lex_state = 9, .external_lex_state = 3}, [2512] = {.lex_state = 0, .external_lex_state = 3}, [2513] = {.lex_state = 9, .external_lex_state = 3}, [2514] = {.lex_state = 0, .external_lex_state = 3}, - [2515] = {.lex_state = 9, .external_lex_state = 3}, - [2516] = {.lex_state = 0, .external_lex_state = 3}, + [2515] = {.lex_state = 0, .external_lex_state = 3}, + [2516] = {.lex_state = 4, .external_lex_state = 3}, [2517] = {.lex_state = 0, .external_lex_state = 3}, - [2518] = {.lex_state = 4, .external_lex_state = 3}, + [2518] = {.lex_state = 9, .external_lex_state = 3}, [2519] = {.lex_state = 0, .external_lex_state = 3}, - [2520] = {.lex_state = 9, .external_lex_state = 3}, + [2520] = {.lex_state = 0, .external_lex_state = 3}, [2521] = {.lex_state = 0, .external_lex_state = 3}, - [2522] = {.lex_state = 0, .external_lex_state = 3}, - [2523] = {.lex_state = 0, .external_lex_state = 3}, + [2522] = {.lex_state = 4, .external_lex_state = 3}, + [2523] = {.lex_state = 4, .external_lex_state = 3}, [2524] = {.lex_state = 4, .external_lex_state = 3}, - [2525] = {.lex_state = 0, .external_lex_state = 3}, - [2526] = {.lex_state = 0, .external_lex_state = 3}, + [2525] = {.lex_state = 4, .external_lex_state = 3}, + [2526] = {.lex_state = 9, .external_lex_state = 3}, [2527] = {.lex_state = 0, .external_lex_state = 3}, - [2528] = {.lex_state = 9, .external_lex_state = 3}, - [2529] = {.lex_state = 0, .external_lex_state = 3}, - [2530] = {.lex_state = 0, .external_lex_state = 3}, - [2531] = {.lex_state = 0, .external_lex_state = 3}, - [2532] = {.lex_state = 9, .external_lex_state = 3}, - [2533] = {.lex_state = 0, .external_lex_state = 3}, - [2534] = {.lex_state = 4, .external_lex_state = 3}, - [2535] = {.lex_state = 9, .external_lex_state = 3}, - [2536] = {.lex_state = 9, .external_lex_state = 3}, - [2537] = {.lex_state = 58, .external_lex_state = 3}, + [2528] = {.lex_state = 4, .external_lex_state = 3}, + [2529] = {.lex_state = 4, .external_lex_state = 3}, + [2530] = {.lex_state = 9, .external_lex_state = 3}, + [2531] = {.lex_state = 4, .external_lex_state = 3}, + [2532] = {.lex_state = 0, .external_lex_state = 3}, + [2533] = {.lex_state = 9, .external_lex_state = 3}, + [2534] = {.lex_state = 0, .external_lex_state = 3}, + [2535] = {.lex_state = 4, .external_lex_state = 3}, + [2536] = {.lex_state = 4, .external_lex_state = 3}, + [2537] = {.lex_state = 0, .external_lex_state = 3}, [2538] = {.lex_state = 0, .external_lex_state = 3}, - [2539] = {.lex_state = 0, .external_lex_state = 3}, - [2540] = {.lex_state = 0, .external_lex_state = 3}, - [2541] = {.lex_state = 9, .external_lex_state = 3}, - [2542] = {.lex_state = 9, .external_lex_state = 3}, + [2539] = {.lex_state = 9, .external_lex_state = 3}, + [2540] = {.lex_state = 9, .external_lex_state = 3}, + [2541] = {.lex_state = 0, .external_lex_state = 3}, + [2542] = {.lex_state = 4, .external_lex_state = 3}, [2543] = {.lex_state = 0, .external_lex_state = 3}, - [2544] = {.lex_state = 4, .external_lex_state = 3}, - [2545] = {.lex_state = 0, .external_lex_state = 3}, - [2546] = {.lex_state = 0, .external_lex_state = 3}, + [2544] = {.lex_state = 9, .external_lex_state = 3}, + [2545] = {.lex_state = 4, .external_lex_state = 3}, + [2546] = {.lex_state = 4, .external_lex_state = 3}, [2547] = {.lex_state = 0, .external_lex_state = 3}, [2548] = {.lex_state = 4, .external_lex_state = 3}, [2549] = {.lex_state = 0, .external_lex_state = 3}, - [2550] = {.lex_state = 4, .external_lex_state = 3}, + [2550] = {.lex_state = 0, .external_lex_state = 3}, [2551] = {.lex_state = 4, .external_lex_state = 3}, - [2552] = {.lex_state = 0, .external_lex_state = 3}, + [2552] = {.lex_state = 4, .external_lex_state = 3}, [2553] = {.lex_state = 4, .external_lex_state = 3}, - [2554] = {.lex_state = 4, .external_lex_state = 3}, - [2555] = {.lex_state = 4, .external_lex_state = 3}, - [2556] = {.lex_state = 0, .external_lex_state = 3}, + [2554] = {.lex_state = 0, .external_lex_state = 3}, + [2555] = {.lex_state = 0, .external_lex_state = 3}, + [2556] = {.lex_state = 4, .external_lex_state = 3}, [2557] = {.lex_state = 0, .external_lex_state = 3}, - [2558] = {.lex_state = 4, .external_lex_state = 3}, - [2559] = {.lex_state = 0, .external_lex_state = 3}, - [2560] = {.lex_state = 4, .external_lex_state = 3}, + [2558] = {.lex_state = 0, .external_lex_state = 3}, }; enum { @@ -16147,78 +16131,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(2344), - [sym__statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_macro_definition] = STATE(15), - [sym_attribute_item] = STATE(15), - [sym_inner_attribute_item] = STATE(15), - [sym_mod_item] = STATE(15), - [sym_foreign_mod_item] = STATE(15), - [sym_struct_item] = STATE(15), - [sym_union_item] = STATE(15), - [sym_enum_item] = STATE(15), - [sym_extern_crate_declaration] = STATE(15), - [sym_const_item] = STATE(15), - [sym_static_item] = STATE(15), - [sym_type_item] = STATE(15), - [sym_function_item] = STATE(15), - [sym_function_signature_item] = STATE(15), - [sym_function_modifiers] = STATE(2343), - [sym_impl_item] = STATE(15), - [sym_trait_item] = STATE(15), - [sym_associated_type] = STATE(15), - [sym_let_declaration] = STATE(15), - [sym_use_declaration] = STATE(15), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1331), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1273), + [sym_source_file] = STATE(2342), + [sym__statement] = STATE(2), + [sym_empty_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym_macro_definition] = STATE(2), + [sym_attribute_item] = STATE(2), + [sym_inner_attribute_item] = STATE(2), + [sym_mod_item] = STATE(2), + [sym_foreign_mod_item] = STATE(2), + [sym_struct_item] = STATE(2), + [sym_union_item] = STATE(2), + [sym_enum_item] = STATE(2), + [sym_extern_crate_declaration] = STATE(2), + [sym_const_item] = STATE(2), + [sym_static_item] = STATE(2), + [sym_type_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_function_modifiers] = STATE(2341), + [sym_impl_item] = STATE(2), + [sym_trait_item] = STATE(2), + [sym_associated_type] = STATE(2), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1328), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1271), [sym_macro_invocation] = STATE(76), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), + [sym_scoped_identifier] = STATE(1173), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), [sym_if_expression] = STATE(79), [sym_match_expression] = STATE(79), [sym_while_expression] = STATE(79), [sym_loop_expression] = STATE(79), [sym_for_expression] = STATE(79), [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(847), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2451), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), + [sym_loop_label] = STATE(2322), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), [sym_unsafe_block] = STATE(79), [sym_async_block] = STATE(79), [sym_block] = STATE(79), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -16295,83 +16279,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [sym__statement] = STATE(11), - [sym_empty_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_macro_definition] = STATE(11), - [sym_attribute_item] = STATE(11), - [sym_inner_attribute_item] = STATE(11), - [sym_mod_item] = STATE(11), - [sym_foreign_mod_item] = STATE(11), - [sym_struct_item] = STATE(11), - [sym_union_item] = STATE(11), - [sym_enum_item] = STATE(11), - [sym_extern_crate_declaration] = STATE(11), - [sym_const_item] = STATE(11), - [sym_static_item] = STATE(11), - [sym_type_item] = STATE(11), - [sym_function_item] = STATE(11), - [sym_function_signature_item] = STATE(11), - [sym_function_modifiers] = STATE(2343), - [sym_impl_item] = STATE(11), - [sym_trait_item] = STATE(11), - [sym_associated_type] = STATE(11), - [sym_let_declaration] = STATE(11), - [sym_use_declaration] = STATE(11), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1331), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1210), + [sym__statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_macro_definition] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_foreign_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_union_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_extern_crate_declaration] = STATE(7), + [sym_const_item] = STATE(7), + [sym_static_item] = STATE(7), + [sym_type_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function_modifiers] = STATE(2341), + [sym_impl_item] = STATE(7), + [sym_trait_item] = STATE(7), + [sym_associated_type] = STATE(7), + [sym_let_declaration] = STATE(7), + [sym_use_declaration] = STATE(7), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1328), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1271), [sym_macro_invocation] = STATE(76), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), + [sym_scoped_identifier] = STATE(1173), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), [sym_if_expression] = STATE(79), [sym_match_expression] = STATE(79), [sym_while_expression] = STATE(79), [sym_loop_expression] = STATE(79), [sym_for_expression] = STATE(79), [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(847), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2451), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), + [sym_loop_label] = STATE(2322), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), [sym_unsafe_block] = STATE(79), [sym_async_block] = STATE(79), [sym_block] = STATE(79), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [ts_builtin_sym_end] = ACTIONS(105), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(105), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -16442,77 +16426,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [3] = { - [sym__statement] = STATE(2), - [sym_empty_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_macro_definition] = STATE(2), - [sym_attribute_item] = STATE(2), - [sym_inner_attribute_item] = STATE(2), - [sym_mod_item] = STATE(2), - [sym_foreign_mod_item] = STATE(2), - [sym_struct_item] = STATE(2), - [sym_union_item] = STATE(2), - [sym_enum_item] = STATE(2), - [sym_extern_crate_declaration] = STATE(2), - [sym_const_item] = STATE(2), - [sym_static_item] = STATE(2), - [sym_type_item] = STATE(2), - [sym_function_item] = STATE(2), - [sym_function_signature_item] = STATE(2), - [sym_function_modifiers] = STATE(2343), - [sym_impl_item] = STATE(2), - [sym_trait_item] = STATE(2), - [sym_associated_type] = STATE(2), - [sym_let_declaration] = STATE(2), - [sym_use_declaration] = STATE(2), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1331), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1251), + [sym__statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_macro_definition] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_foreign_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_union_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_extern_crate_declaration] = STATE(8), + [sym_const_item] = STATE(8), + [sym_static_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function_modifiers] = STATE(2341), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1328), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1257), [sym_macro_invocation] = STATE(76), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), + [sym_scoped_identifier] = STATE(1173), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), [sym_if_expression] = STATE(79), [sym_match_expression] = STATE(79), [sym_while_expression] = STATE(79), [sym_loop_expression] = STATE(79), [sym_for_expression] = STATE(79), [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(847), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2451), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), + [sym_loop_label] = STATE(2322), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), [sym_unsafe_block] = STATE(79), [sym_async_block] = STATE(79), [sym_block] = STATE(79), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16606,60 +16590,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(5), [sym_function_item] = STATE(5), [sym_function_signature_item] = STATE(5), - [sym_function_modifiers] = STATE(2343), + [sym_function_modifiers] = STATE(2341), [sym_impl_item] = STATE(5), [sym_trait_item] = STATE(5), [sym_associated_type] = STATE(5), [sym_let_declaration] = STATE(5), [sym_use_declaration] = STATE(5), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1331), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1260), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1328), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1201), [sym_macro_invocation] = STATE(76), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), + [sym_scoped_identifier] = STATE(1173), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), [sym_if_expression] = STATE(79), [sym_match_expression] = STATE(79), [sym_while_expression] = STATE(79), [sym_loop_expression] = STATE(79), [sym_for_expression] = STATE(79), [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(847), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2451), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), + [sym_loop_label] = STATE(2322), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), [sym_unsafe_block] = STATE(79), [sym_async_block] = STATE(79), [sym_block] = STATE(79), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16736,77 +16720,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [5] = { - [sym__statement] = STATE(11), - [sym_empty_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_macro_definition] = STATE(11), - [sym_attribute_item] = STATE(11), - [sym_inner_attribute_item] = STATE(11), - [sym_mod_item] = STATE(11), - [sym_foreign_mod_item] = STATE(11), - [sym_struct_item] = STATE(11), - [sym_union_item] = STATE(11), - [sym_enum_item] = STATE(11), - [sym_extern_crate_declaration] = STATE(11), - [sym_const_item] = STATE(11), - [sym_static_item] = STATE(11), - [sym_type_item] = STATE(11), - [sym_function_item] = STATE(11), - [sym_function_signature_item] = STATE(11), - [sym_function_modifiers] = STATE(2343), - [sym_impl_item] = STATE(11), - [sym_trait_item] = STATE(11), - [sym_associated_type] = STATE(11), - [sym_let_declaration] = STATE(11), - [sym_use_declaration] = STATE(11), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1331), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1241), + [sym__statement] = STATE(6), + [sym_empty_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_macro_definition] = STATE(6), + [sym_attribute_item] = STATE(6), + [sym_inner_attribute_item] = STATE(6), + [sym_mod_item] = STATE(6), + [sym_foreign_mod_item] = STATE(6), + [sym_struct_item] = STATE(6), + [sym_union_item] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_extern_crate_declaration] = STATE(6), + [sym_const_item] = STATE(6), + [sym_static_item] = STATE(6), + [sym_type_item] = STATE(6), + [sym_function_item] = STATE(6), + [sym_function_signature_item] = STATE(6), + [sym_function_modifiers] = STATE(2341), + [sym_impl_item] = STATE(6), + [sym_trait_item] = STATE(6), + [sym_associated_type] = STATE(6), + [sym_let_declaration] = STATE(6), + [sym_use_declaration] = STATE(6), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1328), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1202), [sym_macro_invocation] = STATE(76), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), + [sym_scoped_identifier] = STATE(1173), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), [sym_if_expression] = STATE(79), [sym_match_expression] = STATE(79), [sym_while_expression] = STATE(79), [sym_loop_expression] = STATE(79), [sym_for_expression] = STATE(79), [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(847), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2451), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), + [sym_loop_label] = STATE(2322), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), [sym_unsafe_block] = STATE(79), [sym_async_block] = STATE(79), [sym_block] = STATE(79), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -16883,83 +16867,377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [6] = { - [sym__statement] = STATE(11), - [sym_empty_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_macro_definition] = STATE(11), - [sym_attribute_item] = STATE(11), - [sym_inner_attribute_item] = STATE(11), - [sym_mod_item] = STATE(11), - [sym_foreign_mod_item] = STATE(11), - [sym_struct_item] = STATE(11), - [sym_union_item] = STATE(11), - [sym_enum_item] = STATE(11), - [sym_extern_crate_declaration] = STATE(11), - [sym_const_item] = STATE(11), - [sym_static_item] = STATE(11), - [sym_type_item] = STATE(11), - [sym_function_item] = STATE(11), - [sym_function_signature_item] = STATE(11), - [sym_function_modifiers] = STATE(2343), - [sym_impl_item] = STATE(11), - [sym_trait_item] = STATE(11), - [sym_associated_type] = STATE(11), - [sym_let_declaration] = STATE(11), - [sym_use_declaration] = STATE(11), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1331), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1229), + [sym__statement] = STATE(6), + [sym_empty_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_macro_definition] = STATE(6), + [sym_attribute_item] = STATE(6), + [sym_inner_attribute_item] = STATE(6), + [sym_mod_item] = STATE(6), + [sym_foreign_mod_item] = STATE(6), + [sym_struct_item] = STATE(6), + [sym_union_item] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_extern_crate_declaration] = STATE(6), + [sym_const_item] = STATE(6), + [sym_static_item] = STATE(6), + [sym_type_item] = STATE(6), + [sym_function_item] = STATE(6), + [sym_function_signature_item] = STATE(6), + [sym_function_modifiers] = STATE(2341), + [sym_impl_item] = STATE(6), + [sym_trait_item] = STATE(6), + [sym_associated_type] = STATE(6), + [sym_let_declaration] = STATE(6), + [sym_use_declaration] = STATE(6), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1328), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1271), + [sym_macro_invocation] = STATE(95), + [sym_scoped_identifier] = STATE(1173), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2322), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(116), + [anon_sym_macro_rules_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(128), + [anon_sym_LBRACK] = ACTIONS(130), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_u8] = ACTIONS(136), + [anon_sym_i8] = ACTIONS(136), + [anon_sym_u16] = ACTIONS(136), + [anon_sym_i16] = ACTIONS(136), + [anon_sym_u32] = ACTIONS(136), + [anon_sym_i32] = ACTIONS(136), + [anon_sym_u64] = ACTIONS(136), + [anon_sym_i64] = ACTIONS(136), + [anon_sym_u128] = ACTIONS(136), + [anon_sym_i128] = ACTIONS(136), + [anon_sym_isize] = ACTIONS(136), + [anon_sym_usize] = ACTIONS(136), + [anon_sym_f32] = ACTIONS(136), + [anon_sym_f64] = ACTIONS(136), + [anon_sym_bool] = ACTIONS(136), + [anon_sym_str] = ACTIONS(136), + [anon_sym_char] = ACTIONS(136), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_async] = ACTIONS(142), + [anon_sym_break] = ACTIONS(145), + [anon_sym_const] = ACTIONS(148), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_default] = ACTIONS(154), + [anon_sym_enum] = ACTIONS(157), + [anon_sym_fn] = ACTIONS(160), + [anon_sym_for] = ACTIONS(163), + [anon_sym_if] = ACTIONS(166), + [anon_sym_impl] = ACTIONS(169), + [anon_sym_let] = ACTIONS(172), + [anon_sym_loop] = ACTIONS(175), + [anon_sym_match] = ACTIONS(178), + [anon_sym_mod] = ACTIONS(181), + [anon_sym_pub] = ACTIONS(184), + [anon_sym_return] = ACTIONS(187), + [anon_sym_static] = ACTIONS(190), + [anon_sym_struct] = ACTIONS(193), + [anon_sym_trait] = ACTIONS(196), + [anon_sym_type] = ACTIONS(199), + [anon_sym_union] = ACTIONS(202), + [anon_sym_unsafe] = ACTIONS(205), + [anon_sym_use] = ACTIONS(208), + [anon_sym_while] = ACTIONS(211), + [anon_sym_POUND] = ACTIONS(214), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(220), + [anon_sym_COLON_COLON] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(226), + [anon_sym_DOT_DOT] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(232), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_move] = ACTIONS(238), + [sym_integer_literal] = ACTIONS(241), + [aux_sym_string_literal_token1] = ACTIONS(244), + [sym_char_literal] = ACTIONS(241), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(250), + [sym_super] = ACTIONS(253), + [sym_crate] = ACTIONS(256), + [sym_metavariable] = ACTIONS(259), + [sym_raw_string_literal] = ACTIONS(241), + [sym_float_literal] = ACTIONS(241), + [sym_block_comment] = ACTIONS(3), + }, + [7] = { + [sym__statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_macro_definition] = STATE(7), + [sym_attribute_item] = STATE(7), + [sym_inner_attribute_item] = STATE(7), + [sym_mod_item] = STATE(7), + [sym_foreign_mod_item] = STATE(7), + [sym_struct_item] = STATE(7), + [sym_union_item] = STATE(7), + [sym_enum_item] = STATE(7), + [sym_extern_crate_declaration] = STATE(7), + [sym_const_item] = STATE(7), + [sym_static_item] = STATE(7), + [sym_type_item] = STATE(7), + [sym_function_item] = STATE(7), + [sym_function_signature_item] = STATE(7), + [sym_function_modifiers] = STATE(2341), + [sym_impl_item] = STATE(7), + [sym_trait_item] = STATE(7), + [sym_associated_type] = STATE(7), + [sym_let_declaration] = STATE(7), + [sym_use_declaration] = STATE(7), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1328), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1271), [sym_macro_invocation] = STATE(76), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), + [sym_scoped_identifier] = STATE(1173), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), [sym_if_expression] = STATE(79), [sym_match_expression] = STATE(79), [sym_while_expression] = STATE(79), [sym_loop_expression] = STATE(79), [sym_for_expression] = STATE(79), [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(847), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2451), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), + [sym_loop_label] = STATE(2322), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), [sym_unsafe_block] = STATE(79), [sym_async_block] = STATE(79), [sym_block] = STATE(79), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [ts_builtin_sym_end] = ACTIONS(128), + [sym_identifier] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(116), + [anon_sym_macro_rules_BANG] = ACTIONS(119), + [anon_sym_LPAREN] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(130), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_u8] = ACTIONS(136), + [anon_sym_i8] = ACTIONS(136), + [anon_sym_u16] = ACTIONS(136), + [anon_sym_i16] = ACTIONS(136), + [anon_sym_u32] = ACTIONS(136), + [anon_sym_i32] = ACTIONS(136), + [anon_sym_u64] = ACTIONS(136), + [anon_sym_i64] = ACTIONS(136), + [anon_sym_u128] = ACTIONS(136), + [anon_sym_i128] = ACTIONS(136), + [anon_sym_isize] = ACTIONS(136), + [anon_sym_usize] = ACTIONS(136), + [anon_sym_f32] = ACTIONS(136), + [anon_sym_f64] = ACTIONS(136), + [anon_sym_bool] = ACTIONS(136), + [anon_sym_str] = ACTIONS(136), + [anon_sym_char] = ACTIONS(136), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_async] = ACTIONS(142), + [anon_sym_break] = ACTIONS(145), + [anon_sym_const] = ACTIONS(148), + [anon_sym_continue] = ACTIONS(151), + [anon_sym_default] = ACTIONS(154), + [anon_sym_enum] = ACTIONS(157), + [anon_sym_fn] = ACTIONS(160), + [anon_sym_for] = ACTIONS(163), + [anon_sym_if] = ACTIONS(166), + [anon_sym_impl] = ACTIONS(169), + [anon_sym_let] = ACTIONS(172), + [anon_sym_loop] = ACTIONS(175), + [anon_sym_match] = ACTIONS(178), + [anon_sym_mod] = ACTIONS(181), + [anon_sym_pub] = ACTIONS(184), + [anon_sym_return] = ACTIONS(187), + [anon_sym_static] = ACTIONS(190), + [anon_sym_struct] = ACTIONS(193), + [anon_sym_trait] = ACTIONS(196), + [anon_sym_type] = ACTIONS(199), + [anon_sym_union] = ACTIONS(202), + [anon_sym_unsafe] = ACTIONS(205), + [anon_sym_use] = ACTIONS(208), + [anon_sym_while] = ACTIONS(211), + [anon_sym_POUND] = ACTIONS(214), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(220), + [anon_sym_COLON_COLON] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(226), + [anon_sym_DOT_DOT] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(232), + [anon_sym_yield] = ACTIONS(235), + [anon_sym_move] = ACTIONS(238), + [sym_integer_literal] = ACTIONS(241), + [aux_sym_string_literal_token1] = ACTIONS(244), + [sym_char_literal] = ACTIONS(241), + [anon_sym_true] = ACTIONS(247), + [anon_sym_false] = ACTIONS(247), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(250), + [sym_super] = ACTIONS(253), + [sym_crate] = ACTIONS(256), + [sym_metavariable] = ACTIONS(259), + [sym_raw_string_literal] = ACTIONS(241), + [sym_float_literal] = ACTIONS(241), + [sym_block_comment] = ACTIONS(3), + }, + [8] = { + [sym__statement] = STATE(6), + [sym_empty_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_macro_definition] = STATE(6), + [sym_attribute_item] = STATE(6), + [sym_inner_attribute_item] = STATE(6), + [sym_mod_item] = STATE(6), + [sym_foreign_mod_item] = STATE(6), + [sym_struct_item] = STATE(6), + [sym_union_item] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_extern_crate_declaration] = STATE(6), + [sym_const_item] = STATE(6), + [sym_static_item] = STATE(6), + [sym_type_item] = STATE(6), + [sym_function_item] = STATE(6), + [sym_function_signature_item] = STATE(6), + [sym_function_modifiers] = STATE(2341), + [sym_impl_item] = STATE(6), + [sym_trait_item] = STATE(6), + [sym_associated_type] = STATE(6), + [sym_let_declaration] = STATE(6), + [sym_use_declaration] = STATE(6), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1328), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1252), + [sym_macro_invocation] = STATE(76), + [sym_scoped_identifier] = STATE(1173), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(79), + [sym_match_expression] = STATE(79), + [sym_while_expression] = STATE(79), + [sym_loop_expression] = STATE(79), + [sym_for_expression] = STATE(79), + [sym_const_block] = STATE(79), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2322), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(79), + [sym_async_block] = STATE(79), + [sym_block] = STATE(79), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(113), + [anon_sym_RBRACE] = ACTIONS(262), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -17029,154 +17307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [7] = { - [sym__statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_macro_definition] = STATE(7), - [sym_attribute_item] = STATE(7), - [sym_inner_attribute_item] = STATE(7), - [sym_mod_item] = STATE(7), - [sym_foreign_mod_item] = STATE(7), - [sym_struct_item] = STATE(7), - [sym_union_item] = STATE(7), - [sym_enum_item] = STATE(7), - [sym_extern_crate_declaration] = STATE(7), - [sym_const_item] = STATE(7), - [sym_static_item] = STATE(7), - [sym_type_item] = STATE(7), - [sym_function_item] = STATE(7), - [sym_function_signature_item] = STATE(7), - [sym_function_modifiers] = STATE(2343), - [sym_impl_item] = STATE(7), - [sym_trait_item] = STATE(7), - [sym_associated_type] = STATE(7), - [sym_let_declaration] = STATE(7), - [sym_use_declaration] = STATE(7), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1331), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1273), - [sym_macro_invocation] = STATE(76), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(847), - [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2451), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [ts_builtin_sym_end] = ACTIONS(115), - [sym_identifier] = ACTIONS(117), - [anon_sym_SEMI] = ACTIONS(120), - [anon_sym_macro_rules_BANG] = ACTIONS(123), - [anon_sym_LPAREN] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(132), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_u8] = ACTIONS(138), - [anon_sym_i8] = ACTIONS(138), - [anon_sym_u16] = ACTIONS(138), - [anon_sym_i16] = ACTIONS(138), - [anon_sym_u32] = ACTIONS(138), - [anon_sym_i32] = ACTIONS(138), - [anon_sym_u64] = ACTIONS(138), - [anon_sym_i64] = ACTIONS(138), - [anon_sym_u128] = ACTIONS(138), - [anon_sym_i128] = ACTIONS(138), - [anon_sym_isize] = ACTIONS(138), - [anon_sym_usize] = ACTIONS(138), - [anon_sym_f32] = ACTIONS(138), - [anon_sym_f64] = ACTIONS(138), - [anon_sym_bool] = ACTIONS(138), - [anon_sym_str] = ACTIONS(138), - [anon_sym_char] = ACTIONS(138), - [anon_sym_SQUOTE] = ACTIONS(141), - [anon_sym_async] = ACTIONS(144), - [anon_sym_break] = ACTIONS(147), - [anon_sym_const] = ACTIONS(150), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_default] = ACTIONS(156), - [anon_sym_enum] = ACTIONS(159), - [anon_sym_fn] = ACTIONS(162), - [anon_sym_for] = ACTIONS(165), - [anon_sym_if] = ACTIONS(168), - [anon_sym_impl] = ACTIONS(171), - [anon_sym_let] = ACTIONS(174), - [anon_sym_loop] = ACTIONS(177), - [anon_sym_match] = ACTIONS(180), - [anon_sym_mod] = ACTIONS(183), - [anon_sym_pub] = ACTIONS(186), - [anon_sym_return] = ACTIONS(189), - [anon_sym_static] = ACTIONS(192), - [anon_sym_struct] = ACTIONS(195), - [anon_sym_trait] = ACTIONS(198), - [anon_sym_type] = ACTIONS(201), - [anon_sym_union] = ACTIONS(204), - [anon_sym_unsafe] = ACTIONS(207), - [anon_sym_use] = ACTIONS(210), - [anon_sym_while] = ACTIONS(213), - [anon_sym_POUND] = ACTIONS(216), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_LT] = ACTIONS(222), - [anon_sym_COLON_COLON] = ACTIONS(225), - [anon_sym_AMP] = ACTIONS(228), - [anon_sym_DOT_DOT] = ACTIONS(231), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(234), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_move] = ACTIONS(240), - [sym_integer_literal] = ACTIONS(243), - [aux_sym_string_literal_token1] = ACTIONS(246), - [sym_char_literal] = ACTIONS(243), - [anon_sym_true] = ACTIONS(249), - [anon_sym_false] = ACTIONS(249), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(252), - [sym_super] = ACTIONS(255), - [sym_crate] = ACTIONS(258), - [sym_metavariable] = ACTIONS(261), - [sym_raw_string_literal] = ACTIONS(243), - [sym_float_literal] = ACTIONS(243), - [sym_block_comment] = ACTIONS(3), - }, - [8] = { + [9] = { [sym__statement] = STATE(6), [sym_empty_statement] = STATE(6), [sym_expression_statement] = STATE(6), @@ -17194,60 +17325,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(6), [sym_function_item] = STATE(6), [sym_function_signature_item] = STATE(6), - [sym_function_modifiers] = STATE(2343), + [sym_function_modifiers] = STATE(2341), [sym_impl_item] = STATE(6), [sym_trait_item] = STATE(6), [sym_associated_type] = STATE(6), [sym_let_declaration] = STATE(6), [sym_use_declaration] = STATE(6), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1331), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1249), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1328), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1208), [sym_macro_invocation] = STATE(76), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), + [sym_scoped_identifier] = STATE(1173), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), [sym_if_expression] = STATE(79), [sym_match_expression] = STATE(79), [sym_while_expression] = STATE(79), [sym_loop_expression] = STATE(79), [sym_for_expression] = STATE(79), [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(847), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2451), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), + [sym_loop_label] = STATE(2322), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), [sym_unsafe_block] = STATE(79), [sym_async_block] = STATE(79), [sym_block] = STATE(79), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17323,78 +17454,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [9] = { - [sym__statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_macro_definition] = STATE(10), - [sym_attribute_item] = STATE(10), - [sym_inner_attribute_item] = STATE(10), - [sym_mod_item] = STATE(10), - [sym_foreign_mod_item] = STATE(10), - [sym_struct_item] = STATE(10), - [sym_union_item] = STATE(10), - [sym_enum_item] = STATE(10), - [sym_extern_crate_declaration] = STATE(10), - [sym_const_item] = STATE(10), - [sym_static_item] = STATE(10), - [sym_type_item] = STATE(10), - [sym_function_item] = STATE(10), - [sym_function_signature_item] = STATE(10), - [sym_function_modifiers] = STATE(2343), - [sym_impl_item] = STATE(10), - [sym_trait_item] = STATE(10), - [sym_associated_type] = STATE(10), - [sym_let_declaration] = STATE(10), - [sym_use_declaration] = STATE(10), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1331), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1220), + [10] = { + [sym__statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_macro_definition] = STATE(9), + [sym_attribute_item] = STATE(9), + [sym_inner_attribute_item] = STATE(9), + [sym_mod_item] = STATE(9), + [sym_foreign_mod_item] = STATE(9), + [sym_struct_item] = STATE(9), + [sym_union_item] = STATE(9), + [sym_enum_item] = STATE(9), + [sym_extern_crate_declaration] = STATE(9), + [sym_const_item] = STATE(9), + [sym_static_item] = STATE(9), + [sym_type_item] = STATE(9), + [sym_function_item] = STATE(9), + [sym_function_signature_item] = STATE(9), + [sym_function_modifiers] = STATE(2341), + [sym_impl_item] = STATE(9), + [sym_trait_item] = STATE(9), + [sym_associated_type] = STATE(9), + [sym_let_declaration] = STATE(9), + [sym_use_declaration] = STATE(9), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1328), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1229), [sym_macro_invocation] = STATE(76), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), + [sym_scoped_identifier] = STATE(1173), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), [sym_if_expression] = STATE(79), [sym_match_expression] = STATE(79), [sym_while_expression] = STATE(79), [sym_loop_expression] = STATE(79), [sym_for_expression] = STATE(79), [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(847), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2451), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), + [sym_loop_label] = STATE(2322), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), [sym_unsafe_block] = STATE(79), [sym_async_block] = STATE(79), [sym_block] = STATE(79), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17470,78 +17601,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [10] = { - [sym__statement] = STATE(11), - [sym_empty_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_macro_definition] = STATE(11), - [sym_attribute_item] = STATE(11), - [sym_inner_attribute_item] = STATE(11), - [sym_mod_item] = STATE(11), - [sym_foreign_mod_item] = STATE(11), - [sym_struct_item] = STATE(11), - [sym_union_item] = STATE(11), - [sym_enum_item] = STATE(11), - [sym_extern_crate_declaration] = STATE(11), - [sym_const_item] = STATE(11), - [sym_static_item] = STATE(11), - [sym_type_item] = STATE(11), - [sym_function_item] = STATE(11), - [sym_function_signature_item] = STATE(11), - [sym_function_modifiers] = STATE(2343), - [sym_impl_item] = STATE(11), - [sym_trait_item] = STATE(11), - [sym_associated_type] = STATE(11), - [sym_let_declaration] = STATE(11), - [sym_use_declaration] = STATE(11), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1331), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1213), + [11] = { + [sym__statement] = STATE(6), + [sym_empty_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_macro_definition] = STATE(6), + [sym_attribute_item] = STATE(6), + [sym_inner_attribute_item] = STATE(6), + [sym_mod_item] = STATE(6), + [sym_foreign_mod_item] = STATE(6), + [sym_struct_item] = STATE(6), + [sym_union_item] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_extern_crate_declaration] = STATE(6), + [sym_const_item] = STATE(6), + [sym_static_item] = STATE(6), + [sym_type_item] = STATE(6), + [sym_function_item] = STATE(6), + [sym_function_signature_item] = STATE(6), + [sym_function_modifiers] = STATE(2341), + [sym_impl_item] = STATE(6), + [sym_trait_item] = STATE(6), + [sym_associated_type] = STATE(6), + [sym_let_declaration] = STATE(6), + [sym_use_declaration] = STATE(6), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1328), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1255), [sym_macro_invocation] = STATE(76), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), + [sym_scoped_identifier] = STATE(1173), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), [sym_if_expression] = STATE(79), [sym_match_expression] = STATE(79), [sym_while_expression] = STATE(79), [sym_loop_expression] = STATE(79), [sym_for_expression] = STATE(79), [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(847), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2451), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), + [sym_loop_label] = STATE(2322), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), [sym_unsafe_block] = STATE(79), [sym_async_block] = STATE(79), [sym_block] = STATE(79), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17617,153 +17748,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [11] = { - [sym__statement] = STATE(11), - [sym_empty_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_macro_definition] = STATE(11), - [sym_attribute_item] = STATE(11), - [sym_inner_attribute_item] = STATE(11), - [sym_mod_item] = STATE(11), - [sym_foreign_mod_item] = STATE(11), - [sym_struct_item] = STATE(11), - [sym_union_item] = STATE(11), - [sym_enum_item] = STATE(11), - [sym_extern_crate_declaration] = STATE(11), - [sym_const_item] = STATE(11), - [sym_static_item] = STATE(11), - [sym_type_item] = STATE(11), - [sym_function_item] = STATE(11), - [sym_function_signature_item] = STATE(11), - [sym_function_modifiers] = STATE(2343), - [sym_impl_item] = STATE(11), - [sym_trait_item] = STATE(11), - [sym_associated_type] = STATE(11), - [sym_let_declaration] = STATE(11), - [sym_use_declaration] = STATE(11), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1331), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1273), - [sym_macro_invocation] = STATE(95), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(79), - [sym_match_expression] = STATE(79), - [sym_while_expression] = STATE(79), - [sym_loop_expression] = STATE(79), - [sym_for_expression] = STATE(79), - [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(847), - [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2451), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(79), - [sym_async_block] = STATE(79), - [sym_block] = STATE(79), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(117), - [anon_sym_SEMI] = ACTIONS(120), - [anon_sym_macro_rules_BANG] = ACTIONS(123), - [anon_sym_LPAREN] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_RBRACE] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(132), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_u8] = ACTIONS(138), - [anon_sym_i8] = ACTIONS(138), - [anon_sym_u16] = ACTIONS(138), - [anon_sym_i16] = ACTIONS(138), - [anon_sym_u32] = ACTIONS(138), - [anon_sym_i32] = ACTIONS(138), - [anon_sym_u64] = ACTIONS(138), - [anon_sym_i64] = ACTIONS(138), - [anon_sym_u128] = ACTIONS(138), - [anon_sym_i128] = ACTIONS(138), - [anon_sym_isize] = ACTIONS(138), - [anon_sym_usize] = ACTIONS(138), - [anon_sym_f32] = ACTIONS(138), - [anon_sym_f64] = ACTIONS(138), - [anon_sym_bool] = ACTIONS(138), - [anon_sym_str] = ACTIONS(138), - [anon_sym_char] = ACTIONS(138), - [anon_sym_SQUOTE] = ACTIONS(141), - [anon_sym_async] = ACTIONS(144), - [anon_sym_break] = ACTIONS(147), - [anon_sym_const] = ACTIONS(150), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_default] = ACTIONS(156), - [anon_sym_enum] = ACTIONS(159), - [anon_sym_fn] = ACTIONS(162), - [anon_sym_for] = ACTIONS(165), - [anon_sym_if] = ACTIONS(168), - [anon_sym_impl] = ACTIONS(171), - [anon_sym_let] = ACTIONS(174), - [anon_sym_loop] = ACTIONS(177), - [anon_sym_match] = ACTIONS(180), - [anon_sym_mod] = ACTIONS(183), - [anon_sym_pub] = ACTIONS(186), - [anon_sym_return] = ACTIONS(189), - [anon_sym_static] = ACTIONS(192), - [anon_sym_struct] = ACTIONS(195), - [anon_sym_trait] = ACTIONS(198), - [anon_sym_type] = ACTIONS(201), - [anon_sym_union] = ACTIONS(204), - [anon_sym_unsafe] = ACTIONS(207), - [anon_sym_use] = ACTIONS(210), - [anon_sym_while] = ACTIONS(213), - [anon_sym_POUND] = ACTIONS(216), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_LT] = ACTIONS(222), - [anon_sym_COLON_COLON] = ACTIONS(225), - [anon_sym_AMP] = ACTIONS(228), - [anon_sym_DOT_DOT] = ACTIONS(231), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(234), - [anon_sym_yield] = ACTIONS(237), - [anon_sym_move] = ACTIONS(240), - [sym_integer_literal] = ACTIONS(243), - [aux_sym_string_literal_token1] = ACTIONS(246), - [sym_char_literal] = ACTIONS(243), - [anon_sym_true] = ACTIONS(249), - [anon_sym_false] = ACTIONS(249), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(252), - [sym_super] = ACTIONS(255), - [sym_crate] = ACTIONS(258), - [sym_metavariable] = ACTIONS(261), - [sym_raw_string_literal] = ACTIONS(243), - [sym_float_literal] = ACTIONS(243), - [sym_block_comment] = ACTIONS(3), - }, [12] = { [sym__statement] = STATE(13), [sym_empty_statement] = STATE(13), @@ -17782,60 +17766,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(13), [sym_function_item] = STATE(13), [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2343), + [sym_function_modifiers] = STATE(2341), [sym_impl_item] = STATE(13), [sym_trait_item] = STATE(13), [sym_associated_type] = STATE(13), [sym_let_declaration] = STATE(13), [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1331), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1227), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1328), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1207), [sym_macro_invocation] = STATE(76), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), + [sym_scoped_identifier] = STATE(1173), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), [sym_if_expression] = STATE(79), [sym_match_expression] = STATE(79), [sym_while_expression] = STATE(79), [sym_loop_expression] = STATE(79), [sym_for_expression] = STATE(79), [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(847), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2451), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), + [sym_loop_label] = STATE(2322), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), [sym_unsafe_block] = STATE(79), [sym_async_block] = STATE(79), [sym_block] = STATE(79), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17912,77 +17896,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [13] = { - [sym__statement] = STATE(11), - [sym_empty_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_macro_definition] = STATE(11), - [sym_attribute_item] = STATE(11), - [sym_inner_attribute_item] = STATE(11), - [sym_mod_item] = STATE(11), - [sym_foreign_mod_item] = STATE(11), - [sym_struct_item] = STATE(11), - [sym_union_item] = STATE(11), - [sym_enum_item] = STATE(11), - [sym_extern_crate_declaration] = STATE(11), - [sym_const_item] = STATE(11), - [sym_static_item] = STATE(11), - [sym_type_item] = STATE(11), - [sym_function_item] = STATE(11), - [sym_function_signature_item] = STATE(11), - [sym_function_modifiers] = STATE(2343), - [sym_impl_item] = STATE(11), - [sym_trait_item] = STATE(11), - [sym_associated_type] = STATE(11), - [sym_let_declaration] = STATE(11), - [sym_use_declaration] = STATE(11), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1331), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1257), + [sym__statement] = STATE(6), + [sym_empty_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_macro_definition] = STATE(6), + [sym_attribute_item] = STATE(6), + [sym_inner_attribute_item] = STATE(6), + [sym_mod_item] = STATE(6), + [sym_foreign_mod_item] = STATE(6), + [sym_struct_item] = STATE(6), + [sym_union_item] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_extern_crate_declaration] = STATE(6), + [sym_const_item] = STATE(6), + [sym_static_item] = STATE(6), + [sym_type_item] = STATE(6), + [sym_function_item] = STATE(6), + [sym_function_signature_item] = STATE(6), + [sym_function_modifiers] = STATE(2341), + [sym_impl_item] = STATE(6), + [sym_trait_item] = STATE(6), + [sym_associated_type] = STATE(6), + [sym_let_declaration] = STATE(6), + [sym_use_declaration] = STATE(6), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1328), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1209), [sym_macro_invocation] = STATE(76), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), + [sym_scoped_identifier] = STATE(1173), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), [sym_if_expression] = STATE(79), [sym_match_expression] = STATE(79), [sym_while_expression] = STATE(79), [sym_loop_expression] = STATE(79), [sym_for_expression] = STATE(79), [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(847), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2451), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), + [sym_loop_label] = STATE(2322), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), [sym_unsafe_block] = STATE(79), [sym_async_block] = STATE(79), [sym_block] = STATE(79), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -18059,77 +18043,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [14] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(2343), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1331), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1203), + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2341), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1328), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1247), [sym_macro_invocation] = STATE(76), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), + [sym_scoped_identifier] = STATE(1173), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), [sym_if_expression] = STATE(79), [sym_match_expression] = STATE(79), [sym_while_expression] = STATE(79), [sym_loop_expression] = STATE(79), [sym_for_expression] = STATE(79), [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(847), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2451), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), + [sym_loop_label] = STATE(2322), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), [sym_unsafe_block] = STATE(79), [sym_async_block] = STATE(79), [sym_block] = STATE(79), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -18206,83 +18190,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [15] = { - [sym__statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_macro_definition] = STATE(7), - [sym_attribute_item] = STATE(7), - [sym_inner_attribute_item] = STATE(7), - [sym_mod_item] = STATE(7), - [sym_foreign_mod_item] = STATE(7), - [sym_struct_item] = STATE(7), - [sym_union_item] = STATE(7), - [sym_enum_item] = STATE(7), - [sym_extern_crate_declaration] = STATE(7), - [sym_const_item] = STATE(7), - [sym_static_item] = STATE(7), - [sym_type_item] = STATE(7), - [sym_function_item] = STATE(7), - [sym_function_signature_item] = STATE(7), - [sym_function_modifiers] = STATE(2343), - [sym_impl_item] = STATE(7), - [sym_trait_item] = STATE(7), - [sym_associated_type] = STATE(7), - [sym_let_declaration] = STATE(7), - [sym_use_declaration] = STATE(7), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1331), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1273), + [sym__statement] = STATE(6), + [sym_empty_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_macro_definition] = STATE(6), + [sym_attribute_item] = STATE(6), + [sym_inner_attribute_item] = STATE(6), + [sym_mod_item] = STATE(6), + [sym_foreign_mod_item] = STATE(6), + [sym_struct_item] = STATE(6), + [sym_union_item] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_extern_crate_declaration] = STATE(6), + [sym_const_item] = STATE(6), + [sym_static_item] = STATE(6), + [sym_type_item] = STATE(6), + [sym_function_item] = STATE(6), + [sym_function_signature_item] = STATE(6), + [sym_function_modifiers] = STATE(2341), + [sym_impl_item] = STATE(6), + [sym_trait_item] = STATE(6), + [sym_associated_type] = STATE(6), + [sym_let_declaration] = STATE(6), + [sym_use_declaration] = STATE(6), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1328), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1242), [sym_macro_invocation] = STATE(76), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), + [sym_scoped_identifier] = STATE(1173), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), [sym_if_expression] = STATE(79), [sym_match_expression] = STATE(79), [sym_while_expression] = STATE(79), [sym_loop_expression] = STATE(79), [sym_for_expression] = STATE(79), [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(847), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2451), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), + [sym_loop_label] = STATE(2322), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), [sym_unsafe_block] = STATE(79), [sym_async_block] = STATE(79), [sym_block] = STATE(79), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [ts_builtin_sym_end] = ACTIONS(276), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -18370,60 +18354,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(11), [sym_function_item] = STATE(11), [sym_function_signature_item] = STATE(11), - [sym_function_modifiers] = STATE(2343), + [sym_function_modifiers] = STATE(2341), [sym_impl_item] = STATE(11), [sym_trait_item] = STATE(11), [sym_associated_type] = STATE(11), [sym_let_declaration] = STATE(11), [sym_use_declaration] = STATE(11), - [sym_extern_modifier] = STATE(1514), - [sym_visibility_modifier] = STATE(1331), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1201), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1328), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1250), [sym_macro_invocation] = STATE(76), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), + [sym_scoped_identifier] = STATE(1173), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), [sym_if_expression] = STATE(79), [sym_match_expression] = STATE(79), [sym_while_expression] = STATE(79), [sym_loop_expression] = STATE(79), [sym_for_expression] = STATE(79), [sym_const_block] = STATE(79), - [sym_closure_expression] = STATE(847), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2451), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), + [sym_loop_label] = STATE(2322), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), [sym_unsafe_block] = STATE(79), [sym_async_block] = STATE(79), [sym_block] = STATE(79), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -18500,50 +18484,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1156), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1154), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(282), [anon_sym_LPAREN] = ACTIONS(282), @@ -18640,50 +18624,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1142), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1139), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), [sym_loop_label] = STATE(17), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(310), [anon_sym_LPAREN] = ACTIONS(310), @@ -18779,50 +18763,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1135), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1156), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(13), @@ -18918,50 +18902,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1075), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1039), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(328), [anon_sym_LPAREN] = ACTIONS(13), @@ -19057,50 +19041,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1075), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1098), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [sym_identifier] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(332), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_RBRACE] = ACTIONS(332), + [anon_sym_EQ_GT] = ACTIONS(332), + [anon_sym_LBRACK] = ACTIONS(332), + [anon_sym_RBRACK] = ACTIONS(332), + [anon_sym_PLUS] = ACTIONS(334), + [anon_sym_STAR] = ACTIONS(334), + [anon_sym_QMARK] = ACTIONS(332), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(334), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(308), + [anon_sym_EQ] = ACTIONS(334), + [anon_sym_COMMA] = ACTIONS(332), + [anon_sym_LT] = ACTIONS(334), + [anon_sym_GT] = ACTIONS(334), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT] = ACTIONS(334), + [anon_sym_DOT_DOT_EQ] = ACTIONS(332), + [anon_sym_DASH] = ACTIONS(334), + [anon_sym_AMP_AMP] = ACTIONS(332), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_CARET] = ACTIONS(334), + [anon_sym_EQ_EQ] = ACTIONS(332), + [anon_sym_BANG_EQ] = ACTIONS(332), + [anon_sym_LT_EQ] = ACTIONS(332), + [anon_sym_GT_EQ] = ACTIONS(332), + [anon_sym_LT_LT] = ACTIONS(334), + [anon_sym_GT_GT] = ACTIONS(334), + [anon_sym_SLASH] = ACTIONS(334), + [anon_sym_PERCENT] = ACTIONS(334), + [anon_sym_PLUS_EQ] = ACTIONS(332), + [anon_sym_DASH_EQ] = ACTIONS(332), + [anon_sym_STAR_EQ] = ACTIONS(332), + [anon_sym_SLASH_EQ] = ACTIONS(332), + [anon_sym_PERCENT_EQ] = ACTIONS(332), + [anon_sym_AMP_EQ] = ACTIONS(332), + [anon_sym_PIPE_EQ] = ACTIONS(332), + [anon_sym_CARET_EQ] = ACTIONS(332), + [anon_sym_LT_LT_EQ] = ACTIONS(332), + [anon_sym_GT_GT_EQ] = ACTIONS(332), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(334), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [22] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1039), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(328), [anon_sym_LPAREN] = ACTIONS(328), @@ -19195,63 +19318,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [22] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1080), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [23] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1140), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(332), + [anon_sym_SEMI] = ACTIONS(336), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(332), + [anon_sym_RPAREN] = ACTIONS(336), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(332), - [anon_sym_EQ_GT] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(332), - [anon_sym_RBRACK] = ACTIONS(332), - [anon_sym_PLUS] = ACTIONS(334), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_QMARK] = ACTIONS(332), + [anon_sym_RBRACE] = ACTIONS(336), + [anon_sym_EQ_GT] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(308), + [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -19270,7 +19393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(334), + [anon_sym_as] = ACTIONS(338), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -19285,41 +19408,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(334), - [anon_sym_COMMA] = ACTIONS(332), - [anon_sym_LT] = ACTIONS(334), - [anon_sym_GT] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_COMMA] = ACTIONS(336), + [anon_sym_LT] = ACTIONS(320), + [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(334), - [anon_sym_DOT_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(334), - [anon_sym_DOT_DOT_EQ] = ACTIONS(332), - [anon_sym_DASH] = ACTIONS(334), - [anon_sym_AMP_AMP] = ACTIONS(332), - [anon_sym_PIPE_PIPE] = ACTIONS(332), - [anon_sym_PIPE] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(332), - [anon_sym_BANG_EQ] = ACTIONS(332), - [anon_sym_LT_EQ] = ACTIONS(332), - [anon_sym_GT_EQ] = ACTIONS(332), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(334), - [anon_sym_SLASH] = ACTIONS(334), - [anon_sym_PERCENT] = ACTIONS(334), - [anon_sym_PLUS_EQ] = ACTIONS(332), - [anon_sym_DASH_EQ] = ACTIONS(332), - [anon_sym_STAR_EQ] = ACTIONS(332), - [anon_sym_SLASH_EQ] = ACTIONS(332), - [anon_sym_PERCENT_EQ] = ACTIONS(332), - [anon_sym_AMP_EQ] = ACTIONS(332), - [anon_sym_PIPE_EQ] = ACTIONS(332), - [anon_sym_CARET_EQ] = ACTIONS(332), - [anon_sym_LT_LT_EQ] = ACTIONS(332), - [anon_sym_GT_GT_EQ] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT] = ACTIONS(324), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_PIPE] = ACTIONS(326), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(334), + [anon_sym_DOT] = ACTIONS(338), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -19334,51 +19457,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [23] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1080), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [24] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1098), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(332), [anon_sym_LPAREN] = ACTIONS(332), @@ -19473,190 +19596,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [24] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1143), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), - [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(336), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(336), - [anon_sym_EQ_GT] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(336), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(336), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(338), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_COMMA] = ACTIONS(336), - [anon_sym_LT] = ACTIONS(320), - [anon_sym_GT] = ACTIONS(338), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(324), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_PERCENT] = ACTIONS(338), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(338), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, [25] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1261), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1230), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(282), [anon_sym_LBRACE] = ACTIONS(282), @@ -19747,50 +19731,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1080), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1098), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(332), @@ -19880,50 +19864,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1075), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1215), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(350), + [anon_sym_QMARK] = ACTIONS(316), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(318), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(320), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(326), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [anon_sym_DOT] = ACTIONS(318), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [28] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1039), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(328), [anon_sym_LBRACE] = ACTIONS(328), @@ -20012,51 +20129,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [28] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1080), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [29] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1098), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(332), [anon_sym_LBRACE] = ACTIONS(332), @@ -20145,51 +20262,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [29] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1245), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [30] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1198), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), [sym_loop_label] = STATE(25), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(310), [anon_sym_LBRACE] = ACTIONS(310), @@ -20278,184 +20395,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [30] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1224), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(318), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(316), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(318), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(318), - [anon_sym_LT] = ACTIONS(320), - [anon_sym_GT] = ACTIONS(318), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(316), - [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(316), - [anon_sym_PIPE_PIPE] = ACTIONS(316), - [anon_sym_PIPE] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(318), - [anon_sym_EQ_EQ] = ACTIONS(316), - [anon_sym_BANG_EQ] = ACTIONS(316), - [anon_sym_LT_EQ] = ACTIONS(316), - [anon_sym_GT_EQ] = ACTIONS(316), - [anon_sym_LT_LT] = ACTIONS(318), - [anon_sym_GT_GT] = ACTIONS(318), - [anon_sym_SLASH] = ACTIONS(318), - [anon_sym_PERCENT] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(316), - [anon_sym_DASH_EQ] = ACTIONS(316), - [anon_sym_STAR_EQ] = ACTIONS(316), - [anon_sym_SLASH_EQ] = ACTIONS(316), - [anon_sym_PERCENT_EQ] = ACTIONS(316), - [anon_sym_AMP_EQ] = ACTIONS(316), - [anon_sym_PIPE_EQ] = ACTIONS(316), - [anon_sym_CARET_EQ] = ACTIONS(316), - [anon_sym_LT_LT_EQ] = ACTIONS(316), - [anon_sym_GT_GT_EQ] = ACTIONS(316), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(318), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, [31] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1075), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1039), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(328), @@ -20545,50 +20529,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1236), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1225), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -20678,57 +20662,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym_attribute_item] = STATE(35), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1183), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_attribute_item] = STATE(57), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1197), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_enum_variant_list_repeat1] = STATE(35), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_enum_variant_list_repeat1] = STATE(57), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(368), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(368), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -20787,57 +20771,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym_attribute_item] = STATE(54), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1192), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_attribute_item] = STATE(622), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1184), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_enum_variant_list_repeat1] = STATE(54), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_enum_variant_list_repeat1] = STATE(622), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(374), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(374), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -20896,52 +20880,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym_attribute_item] = STATE(626), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1176), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_attribute_item] = STATE(34), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1179), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_enum_variant_list_repeat1] = STATE(626), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_enum_variant_list_repeat1] = STATE(34), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21005,53 +20989,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_let_condition] = STATE(2009), - [sym_let_chain] = STATE(2166), - [sym__condition] = STATE(2166), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1206), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2007), + [sym_let_chain] = STATE(2145), + [sym__condition] = STATE(2145), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21113,53 +21097,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [37] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_let_condition] = STATE(2009), - [sym_let_chain] = STATE(2316), - [sym__condition] = STATE(2316), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1206), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2007), + [sym_let_chain] = STATE(2250), + [sym__condition] = STATE(2250), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21221,53 +21205,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [38] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_let_condition] = STATE(2009), - [sym_let_chain] = STATE(2144), - [sym__condition] = STATE(2144), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1206), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2007), + [sym_let_chain] = STATE(2142), + [sym__condition] = STATE(2142), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21329,55 +21313,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [39] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1243), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_let_condition] = STATE(1977), - [sym_let_chain] = STATE(2408), - [sym__condition] = STATE(2408), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_attribute_item] = STATE(54), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1258), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_enum_variant_list_repeat1] = STATE(54), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(390), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -21406,13 +21390,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(390), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), + [anon_sym_POUND] = ACTIONS(370), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -21437,163 +21421,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [40] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_let_condition] = STATE(2009), - [sym_let_chain] = STATE(2234), - [sym__condition] = STATE(2234), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(384), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [41] = { - [sym_attribute_item] = STATE(57), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1226), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1239), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(1975), + [sym_let_chain] = STATE(2437), + [sym__condition] = STATE(2437), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_enum_variant_list_repeat1] = STATE(57), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(392), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [41] = { + [sym_attribute_item] = STATE(55), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_enum_variant_list_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(394), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -21653,53 +21637,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [42] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_let_condition] = STATE(2009), - [sym_let_chain] = STATE(2276), - [sym__condition] = STATE(2276), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1206), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2007), + [sym_let_chain] = STATE(2288), + [sym__condition] = STATE(2288), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21761,161 +21745,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [43] = { - [sym_attribute_item] = STATE(53), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1207), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), - [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_enum_variant_list_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1206), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2007), + [sym_let_chain] = STATE(2168), + [sym__condition] = STATE(2168), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(394), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [44] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_let_condition] = STATE(2009), - [sym_let_chain] = STATE(2279), - [sym__condition] = STATE(2279), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1206), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2007), + [sym_let_chain] = STATE(2274), + [sym__condition] = STATE(2274), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21977,53 +21961,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [45] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_let_condition] = STATE(2009), - [sym_let_chain] = STATE(2321), - [sym__condition] = STATE(2321), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1206), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2007), + [sym_let_chain] = STATE(2231), + [sym__condition] = STATE(2231), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22085,52 +22069,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [46] = { - [sym_attribute_item] = STATE(57), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1226), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_attribute_item] = STATE(55), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_enum_variant_list_repeat1] = STATE(57), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_enum_variant_list_repeat1] = STATE(55), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(396), @@ -22193,114 +22177,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [47] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_let_condition] = STATE(2009), - [sym_let_chain] = STATE(2169), - [sym__condition] = STATE(2169), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(384), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [48] = { [sym_else_clause] = STATE(82), [ts_builtin_sym_end] = ACTIONS(398), [sym_identifier] = ACTIONS(400), @@ -22408,54 +22284,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(398), [sym_block_comment] = ACTIONS(3), }, + [48] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1206), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2007), + [sym_let_chain] = STATE(2277), + [sym__condition] = STATE(2277), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(384), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, [49] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_let_condition] = STATE(2009), - [sym_let_chain] = STATE(2301), - [sym__condition] = STATE(2301), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1206), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2007), + [sym_let_chain] = STATE(2299), + [sym__condition] = STATE(2299), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22517,52 +22501,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [50] = { - [sym_attribute_item] = STATE(57), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1226), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_attribute_item] = STATE(55), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_enum_variant_list_repeat1] = STATE(57), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_enum_variant_list_repeat1] = STATE(55), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(404), @@ -22732,52 +22716,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [52] = { - [sym_attribute_item] = STATE(57), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1226), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_attribute_item] = STATE(55), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_enum_variant_list_repeat1] = STATE(57), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_enum_variant_list_repeat1] = STATE(55), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22839,52 +22823,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [53] = { - [sym_attribute_item] = STATE(626), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1267), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [ts_builtin_sym_end] = ACTIONS(410), + [sym_identifier] = ACTIONS(412), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_macro_rules_BANG] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_LBRACK] = ACTIONS(410), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_QMARK] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(412), + [anon_sym_as] = ACTIONS(412), + [anon_sym_async] = ACTIONS(412), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(412), + [anon_sym_continue] = ACTIONS(412), + [anon_sym_default] = ACTIONS(412), + [anon_sym_enum] = ACTIONS(412), + [anon_sym_fn] = ACTIONS(412), + [anon_sym_for] = ACTIONS(412), + [anon_sym_if] = ACTIONS(412), + [anon_sym_impl] = ACTIONS(412), + [anon_sym_let] = ACTIONS(412), + [anon_sym_loop] = ACTIONS(412), + [anon_sym_match] = ACTIONS(412), + [anon_sym_mod] = ACTIONS(412), + [anon_sym_pub] = ACTIONS(412), + [anon_sym_return] = ACTIONS(412), + [anon_sym_static] = ACTIONS(412), + [anon_sym_struct] = ACTIONS(412), + [anon_sym_trait] = ACTIONS(412), + [anon_sym_type] = ACTIONS(412), + [anon_sym_union] = ACTIONS(412), + [anon_sym_unsafe] = ACTIONS(412), + [anon_sym_use] = ACTIONS(412), + [anon_sym_while] = ACTIONS(412), + [anon_sym_POUND] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(412), + [anon_sym_EQ] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(412), + [anon_sym_GT] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_AMP] = ACTIONS(412), + [anon_sym_DOT_DOT_DOT] = ACTIONS(410), + [anon_sym_DOT_DOT] = ACTIONS(412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_AMP_AMP] = ACTIONS(410), + [anon_sym_PIPE_PIPE] = ACTIONS(410), + [anon_sym_PIPE] = ACTIONS(412), + [anon_sym_CARET] = ACTIONS(412), + [anon_sym_EQ_EQ] = ACTIONS(410), + [anon_sym_BANG_EQ] = ACTIONS(410), + [anon_sym_LT_EQ] = ACTIONS(410), + [anon_sym_GT_EQ] = ACTIONS(410), + [anon_sym_LT_LT] = ACTIONS(412), + [anon_sym_GT_GT] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(412), + [anon_sym_PERCENT] = ACTIONS(412), + [anon_sym_PLUS_EQ] = ACTIONS(410), + [anon_sym_DASH_EQ] = ACTIONS(410), + [anon_sym_STAR_EQ] = ACTIONS(410), + [anon_sym_SLASH_EQ] = ACTIONS(410), + [anon_sym_PERCENT_EQ] = ACTIONS(410), + [anon_sym_AMP_EQ] = ACTIONS(410), + [anon_sym_PIPE_EQ] = ACTIONS(410), + [anon_sym_CARET_EQ] = ACTIONS(410), + [anon_sym_LT_LT_EQ] = ACTIONS(410), + [anon_sym_GT_GT_EQ] = ACTIONS(410), + [anon_sym_yield] = ACTIONS(412), + [anon_sym_else] = ACTIONS(412), + [anon_sym_move] = ACTIONS(412), + [anon_sym_DOT] = ACTIONS(412), + [sym_integer_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(410), + [sym_char_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(412), + [sym_super] = ACTIONS(412), + [sym_crate] = ACTIONS(412), + [sym_metavariable] = ACTIONS(410), + [sym_raw_string_literal] = ACTIONS(410), + [sym_float_literal] = ACTIONS(410), + [sym_block_comment] = ACTIONS(3), + }, + [54] = { + [sym_attribute_item] = STATE(622), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1289), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_enum_variant_list_repeat1] = STATE(626), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_enum_variant_list_repeat1] = STATE(622), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22945,53 +23036,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [54] = { - [sym_attribute_item] = STATE(626), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1197), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [55] = { + [sym_attribute_item] = STATE(622), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1241), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_enum_variant_list_repeat1] = STATE(626), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_enum_variant_list_repeat1] = STATE(622), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23052,113 +23143,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [55] = { - [ts_builtin_sym_end] = ACTIONS(410), - [sym_identifier] = ACTIONS(412), - [anon_sym_SEMI] = ACTIONS(410), - [anon_sym_macro_rules_BANG] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(410), - [anon_sym_RBRACE] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(410), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(412), - [anon_sym_QMARK] = ACTIONS(410), - [anon_sym_u8] = ACTIONS(412), - [anon_sym_i8] = ACTIONS(412), - [anon_sym_u16] = ACTIONS(412), - [anon_sym_i16] = ACTIONS(412), - [anon_sym_u32] = ACTIONS(412), - [anon_sym_i32] = ACTIONS(412), - [anon_sym_u64] = ACTIONS(412), - [anon_sym_i64] = ACTIONS(412), - [anon_sym_u128] = ACTIONS(412), - [anon_sym_i128] = ACTIONS(412), - [anon_sym_isize] = ACTIONS(412), - [anon_sym_usize] = ACTIONS(412), - [anon_sym_f32] = ACTIONS(412), - [anon_sym_f64] = ACTIONS(412), - [anon_sym_bool] = ACTIONS(412), - [anon_sym_str] = ACTIONS(412), - [anon_sym_char] = ACTIONS(412), - [anon_sym_SQUOTE] = ACTIONS(412), - [anon_sym_as] = ACTIONS(412), - [anon_sym_async] = ACTIONS(412), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(412), - [anon_sym_default] = ACTIONS(412), - [anon_sym_enum] = ACTIONS(412), - [anon_sym_fn] = ACTIONS(412), - [anon_sym_for] = ACTIONS(412), - [anon_sym_if] = ACTIONS(412), - [anon_sym_impl] = ACTIONS(412), - [anon_sym_let] = ACTIONS(412), - [anon_sym_loop] = ACTIONS(412), - [anon_sym_match] = ACTIONS(412), - [anon_sym_mod] = ACTIONS(412), - [anon_sym_pub] = ACTIONS(412), - [anon_sym_return] = ACTIONS(412), - [anon_sym_static] = ACTIONS(412), - [anon_sym_struct] = ACTIONS(412), - [anon_sym_trait] = ACTIONS(412), - [anon_sym_type] = ACTIONS(412), - [anon_sym_union] = ACTIONS(412), - [anon_sym_unsafe] = ACTIONS(412), - [anon_sym_use] = ACTIONS(412), - [anon_sym_while] = ACTIONS(412), - [anon_sym_POUND] = ACTIONS(410), - [anon_sym_BANG] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_extern] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(412), - [anon_sym_GT] = ACTIONS(412), - [anon_sym_COLON_COLON] = ACTIONS(410), - [anon_sym_AMP] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(410), - [anon_sym_DOT_DOT] = ACTIONS(412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(410), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_AMP_AMP] = ACTIONS(410), - [anon_sym_PIPE_PIPE] = ACTIONS(410), - [anon_sym_PIPE] = ACTIONS(412), - [anon_sym_CARET] = ACTIONS(412), - [anon_sym_EQ_EQ] = ACTIONS(410), - [anon_sym_BANG_EQ] = ACTIONS(410), - [anon_sym_LT_EQ] = ACTIONS(410), - [anon_sym_GT_EQ] = ACTIONS(410), - [anon_sym_LT_LT] = ACTIONS(412), - [anon_sym_GT_GT] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_PLUS_EQ] = ACTIONS(410), - [anon_sym_DASH_EQ] = ACTIONS(410), - [anon_sym_STAR_EQ] = ACTIONS(410), - [anon_sym_SLASH_EQ] = ACTIONS(410), - [anon_sym_PERCENT_EQ] = ACTIONS(410), - [anon_sym_AMP_EQ] = ACTIONS(410), - [anon_sym_PIPE_EQ] = ACTIONS(410), - [anon_sym_CARET_EQ] = ACTIONS(410), - [anon_sym_LT_LT_EQ] = ACTIONS(410), - [anon_sym_GT_GT_EQ] = ACTIONS(410), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_else] = ACTIONS(412), - [anon_sym_move] = ACTIONS(412), - [anon_sym_DOT] = ACTIONS(412), - [sym_integer_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(410), - [sym_char_literal] = ACTIONS(410), - [anon_sym_true] = ACTIONS(412), - [anon_sym_false] = ACTIONS(412), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(412), - [sym_super] = ACTIONS(412), - [sym_crate] = ACTIONS(412), - [sym_metavariable] = ACTIONS(410), - [sym_raw_string_literal] = ACTIONS(410), - [sym_float_literal] = ACTIONS(410), - [sym_block_comment] = ACTIONS(3), - }, [56] = { [ts_builtin_sym_end] = ACTIONS(414), [sym_identifier] = ACTIONS(416), @@ -23267,52 +23251,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [57] = { - [sym_attribute_item] = STATE(626), - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1258), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_attribute_item] = STATE(622), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1190), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_enum_variant_list_repeat1] = STATE(626), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_enum_variant_list_repeat1] = STATE(622), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23374,54 +23358,584 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [58] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1253), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [ts_builtin_sym_end] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [anon_sym_SEMI] = ACTIONS(418), + [anon_sym_macro_rules_BANG] = ACTIONS(418), + [anon_sym_LPAREN] = ACTIONS(418), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_PLUS] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(418), + [anon_sym_u8] = ACTIONS(420), + [anon_sym_i8] = ACTIONS(420), + [anon_sym_u16] = ACTIONS(420), + [anon_sym_i16] = ACTIONS(420), + [anon_sym_u32] = ACTIONS(420), + [anon_sym_i32] = ACTIONS(420), + [anon_sym_u64] = ACTIONS(420), + [anon_sym_i64] = ACTIONS(420), + [anon_sym_u128] = ACTIONS(420), + [anon_sym_i128] = ACTIONS(420), + [anon_sym_isize] = ACTIONS(420), + [anon_sym_usize] = ACTIONS(420), + [anon_sym_f32] = ACTIONS(420), + [anon_sym_f64] = ACTIONS(420), + [anon_sym_bool] = ACTIONS(420), + [anon_sym_str] = ACTIONS(420), + [anon_sym_char] = ACTIONS(420), + [anon_sym_SQUOTE] = ACTIONS(420), + [anon_sym_as] = ACTIONS(420), + [anon_sym_async] = ACTIONS(420), + [anon_sym_break] = ACTIONS(420), + [anon_sym_const] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(420), + [anon_sym_default] = ACTIONS(420), + [anon_sym_enum] = ACTIONS(420), + [anon_sym_fn] = ACTIONS(420), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(420), + [anon_sym_impl] = ACTIONS(420), + [anon_sym_let] = ACTIONS(420), + [anon_sym_loop] = ACTIONS(420), + [anon_sym_match] = ACTIONS(420), + [anon_sym_mod] = ACTIONS(420), + [anon_sym_pub] = ACTIONS(420), + [anon_sym_return] = ACTIONS(420), + [anon_sym_static] = ACTIONS(420), + [anon_sym_struct] = ACTIONS(420), + [anon_sym_trait] = ACTIONS(420), + [anon_sym_type] = ACTIONS(420), + [anon_sym_union] = ACTIONS(420), + [anon_sym_unsafe] = ACTIONS(420), + [anon_sym_use] = ACTIONS(420), + [anon_sym_while] = ACTIONS(420), + [anon_sym_POUND] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(420), + [anon_sym_EQ] = ACTIONS(420), + [anon_sym_extern] = ACTIONS(420), + [anon_sym_LT] = ACTIONS(420), + [anon_sym_GT] = ACTIONS(420), + [anon_sym_COLON_COLON] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [anon_sym_DOT_DOT] = ACTIONS(420), + [anon_sym_DOT_DOT_EQ] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(420), + [anon_sym_AMP_AMP] = ACTIONS(418), + [anon_sym_PIPE_PIPE] = ACTIONS(418), + [anon_sym_PIPE] = ACTIONS(420), + [anon_sym_CARET] = ACTIONS(420), + [anon_sym_EQ_EQ] = ACTIONS(418), + [anon_sym_BANG_EQ] = ACTIONS(418), + [anon_sym_LT_EQ] = ACTIONS(418), + [anon_sym_GT_EQ] = ACTIONS(418), + [anon_sym_LT_LT] = ACTIONS(420), + [anon_sym_GT_GT] = ACTIONS(420), + [anon_sym_SLASH] = ACTIONS(420), + [anon_sym_PERCENT] = ACTIONS(420), + [anon_sym_PLUS_EQ] = ACTIONS(418), + [anon_sym_DASH_EQ] = ACTIONS(418), + [anon_sym_STAR_EQ] = ACTIONS(418), + [anon_sym_SLASH_EQ] = ACTIONS(418), + [anon_sym_PERCENT_EQ] = ACTIONS(418), + [anon_sym_AMP_EQ] = ACTIONS(418), + [anon_sym_PIPE_EQ] = ACTIONS(418), + [anon_sym_CARET_EQ] = ACTIONS(418), + [anon_sym_LT_LT_EQ] = ACTIONS(418), + [anon_sym_GT_GT_EQ] = ACTIONS(418), + [anon_sym_yield] = ACTIONS(420), + [anon_sym_move] = ACTIONS(420), + [anon_sym_DOT] = ACTIONS(420), + [sym_integer_literal] = ACTIONS(418), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_char_literal] = ACTIONS(418), + [anon_sym_true] = ACTIONS(420), + [anon_sym_false] = ACTIONS(420), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(420), + [sym_super] = ACTIONS(420), + [sym_crate] = ACTIONS(420), + [sym_metavariable] = ACTIONS(418), + [sym_raw_string_literal] = ACTIONS(418), + [sym_float_literal] = ACTIONS(418), + [sym_block_comment] = ACTIONS(3), + }, + [59] = { + [ts_builtin_sym_end] = ACTIONS(422), + [sym_identifier] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym_macro_rules_BANG] = ACTIONS(422), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LBRACE] = ACTIONS(422), + [anon_sym_RBRACE] = ACTIONS(422), + [anon_sym_LBRACK] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(424), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_u8] = ACTIONS(424), + [anon_sym_i8] = ACTIONS(424), + [anon_sym_u16] = ACTIONS(424), + [anon_sym_i16] = ACTIONS(424), + [anon_sym_u32] = ACTIONS(424), + [anon_sym_i32] = ACTIONS(424), + [anon_sym_u64] = ACTIONS(424), + [anon_sym_i64] = ACTIONS(424), + [anon_sym_u128] = ACTIONS(424), + [anon_sym_i128] = ACTIONS(424), + [anon_sym_isize] = ACTIONS(424), + [anon_sym_usize] = ACTIONS(424), + [anon_sym_f32] = ACTIONS(424), + [anon_sym_f64] = ACTIONS(424), + [anon_sym_bool] = ACTIONS(424), + [anon_sym_str] = ACTIONS(424), + [anon_sym_char] = ACTIONS(424), + [anon_sym_SQUOTE] = ACTIONS(424), + [anon_sym_as] = ACTIONS(424), + [anon_sym_async] = ACTIONS(424), + [anon_sym_break] = ACTIONS(424), + [anon_sym_const] = ACTIONS(424), + [anon_sym_continue] = ACTIONS(424), + [anon_sym_default] = ACTIONS(424), + [anon_sym_enum] = ACTIONS(424), + [anon_sym_fn] = ACTIONS(424), + [anon_sym_for] = ACTIONS(424), + [anon_sym_if] = ACTIONS(424), + [anon_sym_impl] = ACTIONS(424), + [anon_sym_let] = ACTIONS(424), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(424), + [anon_sym_mod] = ACTIONS(424), + [anon_sym_pub] = ACTIONS(424), + [anon_sym_return] = ACTIONS(424), + [anon_sym_static] = ACTIONS(424), + [anon_sym_struct] = ACTIONS(424), + [anon_sym_trait] = ACTIONS(424), + [anon_sym_type] = ACTIONS(424), + [anon_sym_union] = ACTIONS(424), + [anon_sym_unsafe] = ACTIONS(424), + [anon_sym_use] = ACTIONS(424), + [anon_sym_while] = ACTIONS(424), + [anon_sym_POUND] = ACTIONS(422), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(424), + [anon_sym_extern] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(424), + [anon_sym_GT] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(422), + [anon_sym_AMP] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(422), + [anon_sym_DOT_DOT] = ACTIONS(424), + [anon_sym_DOT_DOT_EQ] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(424), + [anon_sym_AMP_AMP] = ACTIONS(422), + [anon_sym_PIPE_PIPE] = ACTIONS(422), + [anon_sym_PIPE] = ACTIONS(424), + [anon_sym_CARET] = ACTIONS(424), + [anon_sym_EQ_EQ] = ACTIONS(422), + [anon_sym_BANG_EQ] = ACTIONS(422), + [anon_sym_LT_EQ] = ACTIONS(422), + [anon_sym_GT_EQ] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(424), + [anon_sym_GT_GT] = ACTIONS(424), + [anon_sym_SLASH] = ACTIONS(424), + [anon_sym_PERCENT] = ACTIONS(424), + [anon_sym_PLUS_EQ] = ACTIONS(422), + [anon_sym_DASH_EQ] = ACTIONS(422), + [anon_sym_STAR_EQ] = ACTIONS(422), + [anon_sym_SLASH_EQ] = ACTIONS(422), + [anon_sym_PERCENT_EQ] = ACTIONS(422), + [anon_sym_AMP_EQ] = ACTIONS(422), + [anon_sym_PIPE_EQ] = ACTIONS(422), + [anon_sym_CARET_EQ] = ACTIONS(422), + [anon_sym_LT_LT_EQ] = ACTIONS(422), + [anon_sym_GT_GT_EQ] = ACTIONS(422), + [anon_sym_yield] = ACTIONS(424), + [anon_sym_move] = ACTIONS(424), + [anon_sym_DOT] = ACTIONS(424), + [sym_integer_literal] = ACTIONS(422), + [aux_sym_string_literal_token1] = ACTIONS(422), + [sym_char_literal] = ACTIONS(422), + [anon_sym_true] = ACTIONS(424), + [anon_sym_false] = ACTIONS(424), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(424), + [sym_crate] = ACTIONS(424), + [sym_metavariable] = ACTIONS(422), + [sym_raw_string_literal] = ACTIONS(422), + [sym_float_literal] = ACTIONS(422), + [sym_block_comment] = ACTIONS(3), + }, + [60] = { + [ts_builtin_sym_end] = ACTIONS(426), + [sym_identifier] = ACTIONS(428), + [anon_sym_SEMI] = ACTIONS(426), + [anon_sym_macro_rules_BANG] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(426), + [anon_sym_RBRACE] = ACTIONS(426), + [anon_sym_LBRACK] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(428), + [anon_sym_STAR] = ACTIONS(428), + [anon_sym_QMARK] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(428), + [anon_sym_i8] = ACTIONS(428), + [anon_sym_u16] = ACTIONS(428), + [anon_sym_i16] = ACTIONS(428), + [anon_sym_u32] = ACTIONS(428), + [anon_sym_i32] = ACTIONS(428), + [anon_sym_u64] = ACTIONS(428), + [anon_sym_i64] = ACTIONS(428), + [anon_sym_u128] = ACTIONS(428), + [anon_sym_i128] = ACTIONS(428), + [anon_sym_isize] = ACTIONS(428), + [anon_sym_usize] = ACTIONS(428), + [anon_sym_f32] = ACTIONS(428), + [anon_sym_f64] = ACTIONS(428), + [anon_sym_bool] = ACTIONS(428), + [anon_sym_str] = ACTIONS(428), + [anon_sym_char] = ACTIONS(428), + [anon_sym_SQUOTE] = ACTIONS(428), + [anon_sym_as] = ACTIONS(428), + [anon_sym_async] = ACTIONS(428), + [anon_sym_break] = ACTIONS(428), + [anon_sym_const] = ACTIONS(428), + [anon_sym_continue] = ACTIONS(428), + [anon_sym_default] = ACTIONS(428), + [anon_sym_enum] = ACTIONS(428), + [anon_sym_fn] = ACTIONS(428), + [anon_sym_for] = ACTIONS(428), + [anon_sym_if] = ACTIONS(428), + [anon_sym_impl] = ACTIONS(428), + [anon_sym_let] = ACTIONS(428), + [anon_sym_loop] = ACTIONS(428), + [anon_sym_match] = ACTIONS(428), + [anon_sym_mod] = ACTIONS(428), + [anon_sym_pub] = ACTIONS(428), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(428), + [anon_sym_struct] = ACTIONS(428), + [anon_sym_trait] = ACTIONS(428), + [anon_sym_type] = ACTIONS(428), + [anon_sym_union] = ACTIONS(428), + [anon_sym_unsafe] = ACTIONS(428), + [anon_sym_use] = ACTIONS(428), + [anon_sym_while] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(426), + [anon_sym_BANG] = ACTIONS(428), + [anon_sym_EQ] = ACTIONS(428), + [anon_sym_extern] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(428), + [anon_sym_COLON_COLON] = ACTIONS(426), + [anon_sym_AMP] = ACTIONS(428), + [anon_sym_DOT_DOT_DOT] = ACTIONS(426), + [anon_sym_DOT_DOT] = ACTIONS(428), + [anon_sym_DOT_DOT_EQ] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(428), + [anon_sym_AMP_AMP] = ACTIONS(426), + [anon_sym_PIPE_PIPE] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(428), + [anon_sym_CARET] = ACTIONS(428), + [anon_sym_EQ_EQ] = ACTIONS(426), + [anon_sym_BANG_EQ] = ACTIONS(426), + [anon_sym_LT_EQ] = ACTIONS(426), + [anon_sym_GT_EQ] = ACTIONS(426), + [anon_sym_LT_LT] = ACTIONS(428), + [anon_sym_GT_GT] = ACTIONS(428), + [anon_sym_SLASH] = ACTIONS(428), + [anon_sym_PERCENT] = ACTIONS(428), + [anon_sym_PLUS_EQ] = ACTIONS(426), + [anon_sym_DASH_EQ] = ACTIONS(426), + [anon_sym_STAR_EQ] = ACTIONS(426), + [anon_sym_SLASH_EQ] = ACTIONS(426), + [anon_sym_PERCENT_EQ] = ACTIONS(426), + [anon_sym_AMP_EQ] = ACTIONS(426), + [anon_sym_PIPE_EQ] = ACTIONS(426), + [anon_sym_CARET_EQ] = ACTIONS(426), + [anon_sym_LT_LT_EQ] = ACTIONS(426), + [anon_sym_GT_GT_EQ] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(428), + [anon_sym_move] = ACTIONS(428), + [anon_sym_DOT] = ACTIONS(428), + [sym_integer_literal] = ACTIONS(426), + [aux_sym_string_literal_token1] = ACTIONS(426), + [sym_char_literal] = ACTIONS(426), + [anon_sym_true] = ACTIONS(428), + [anon_sym_false] = ACTIONS(428), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(428), + [sym_super] = ACTIONS(428), + [sym_crate] = ACTIONS(428), + [sym_metavariable] = ACTIONS(426), + [sym_raw_string_literal] = ACTIONS(426), + [sym_float_literal] = ACTIONS(426), + [sym_block_comment] = ACTIONS(3), + }, + [61] = { + [ts_builtin_sym_end] = ACTIONS(430), + [sym_identifier] = ACTIONS(432), + [anon_sym_SEMI] = ACTIONS(430), + [anon_sym_macro_rules_BANG] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_RBRACE] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(430), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_QMARK] = ACTIONS(430), + [anon_sym_u8] = ACTIONS(432), + [anon_sym_i8] = ACTIONS(432), + [anon_sym_u16] = ACTIONS(432), + [anon_sym_i16] = ACTIONS(432), + [anon_sym_u32] = ACTIONS(432), + [anon_sym_i32] = ACTIONS(432), + [anon_sym_u64] = ACTIONS(432), + [anon_sym_i64] = ACTIONS(432), + [anon_sym_u128] = ACTIONS(432), + [anon_sym_i128] = ACTIONS(432), + [anon_sym_isize] = ACTIONS(432), + [anon_sym_usize] = ACTIONS(432), + [anon_sym_f32] = ACTIONS(432), + [anon_sym_f64] = ACTIONS(432), + [anon_sym_bool] = ACTIONS(432), + [anon_sym_str] = ACTIONS(432), + [anon_sym_char] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(432), + [anon_sym_as] = ACTIONS(432), + [anon_sym_async] = ACTIONS(432), + [anon_sym_break] = ACTIONS(432), + [anon_sym_const] = ACTIONS(432), + [anon_sym_continue] = ACTIONS(432), + [anon_sym_default] = ACTIONS(432), + [anon_sym_enum] = ACTIONS(432), + [anon_sym_fn] = ACTIONS(432), + [anon_sym_for] = ACTIONS(432), + [anon_sym_if] = ACTIONS(432), + [anon_sym_impl] = ACTIONS(432), + [anon_sym_let] = ACTIONS(432), + [anon_sym_loop] = ACTIONS(432), + [anon_sym_match] = ACTIONS(432), + [anon_sym_mod] = ACTIONS(432), + [anon_sym_pub] = ACTIONS(432), + [anon_sym_return] = ACTIONS(432), + [anon_sym_static] = ACTIONS(432), + [anon_sym_struct] = ACTIONS(432), + [anon_sym_trait] = ACTIONS(432), + [anon_sym_type] = ACTIONS(432), + [anon_sym_union] = ACTIONS(432), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_use] = ACTIONS(432), + [anon_sym_while] = ACTIONS(432), + [anon_sym_POUND] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_EQ] = ACTIONS(432), + [anon_sym_extern] = ACTIONS(432), + [anon_sym_LT] = ACTIONS(432), + [anon_sym_GT] = ACTIONS(432), + [anon_sym_COLON_COLON] = ACTIONS(430), + [anon_sym_AMP] = ACTIONS(432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(430), + [anon_sym_DOT_DOT] = ACTIONS(432), + [anon_sym_DOT_DOT_EQ] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(430), + [anon_sym_PIPE_PIPE] = ACTIONS(430), + [anon_sym_PIPE] = ACTIONS(432), + [anon_sym_CARET] = ACTIONS(432), + [anon_sym_EQ_EQ] = ACTIONS(430), + [anon_sym_BANG_EQ] = ACTIONS(430), + [anon_sym_LT_EQ] = ACTIONS(430), + [anon_sym_GT_EQ] = ACTIONS(430), + [anon_sym_LT_LT] = ACTIONS(432), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_PERCENT] = ACTIONS(432), + [anon_sym_PLUS_EQ] = ACTIONS(430), + [anon_sym_DASH_EQ] = ACTIONS(430), + [anon_sym_STAR_EQ] = ACTIONS(430), + [anon_sym_SLASH_EQ] = ACTIONS(430), + [anon_sym_PERCENT_EQ] = ACTIONS(430), + [anon_sym_AMP_EQ] = ACTIONS(430), + [anon_sym_PIPE_EQ] = ACTIONS(430), + [anon_sym_CARET_EQ] = ACTIONS(430), + [anon_sym_LT_LT_EQ] = ACTIONS(430), + [anon_sym_GT_GT_EQ] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_move] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(432), + [sym_integer_literal] = ACTIONS(430), + [aux_sym_string_literal_token1] = ACTIONS(430), + [sym_char_literal] = ACTIONS(430), + [anon_sym_true] = ACTIONS(432), + [anon_sym_false] = ACTIONS(432), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(432), + [sym_super] = ACTIONS(432), + [sym_crate] = ACTIONS(432), + [sym_metavariable] = ACTIONS(430), + [sym_raw_string_literal] = ACTIONS(430), + [sym_float_literal] = ACTIONS(430), + [sym_block_comment] = ACTIONS(3), + }, + [62] = { + [ts_builtin_sym_end] = ACTIONS(434), + [sym_identifier] = ACTIONS(436), + [anon_sym_SEMI] = ACTIONS(434), + [anon_sym_macro_rules_BANG] = ACTIONS(434), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_RBRACE] = ACTIONS(434), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_PLUS] = ACTIONS(436), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_QMARK] = ACTIONS(434), + [anon_sym_u8] = ACTIONS(436), + [anon_sym_i8] = ACTIONS(436), + [anon_sym_u16] = ACTIONS(436), + [anon_sym_i16] = ACTIONS(436), + [anon_sym_u32] = ACTIONS(436), + [anon_sym_i32] = ACTIONS(436), + [anon_sym_u64] = ACTIONS(436), + [anon_sym_i64] = ACTIONS(436), + [anon_sym_u128] = ACTIONS(436), + [anon_sym_i128] = ACTIONS(436), + [anon_sym_isize] = ACTIONS(436), + [anon_sym_usize] = ACTIONS(436), + [anon_sym_f32] = ACTIONS(436), + [anon_sym_f64] = ACTIONS(436), + [anon_sym_bool] = ACTIONS(436), + [anon_sym_str] = ACTIONS(436), + [anon_sym_char] = ACTIONS(436), + [anon_sym_SQUOTE] = ACTIONS(436), + [anon_sym_as] = ACTIONS(436), + [anon_sym_async] = ACTIONS(436), + [anon_sym_break] = ACTIONS(436), + [anon_sym_const] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(436), + [anon_sym_default] = ACTIONS(436), + [anon_sym_enum] = ACTIONS(436), + [anon_sym_fn] = ACTIONS(436), + [anon_sym_for] = ACTIONS(436), + [anon_sym_if] = ACTIONS(436), + [anon_sym_impl] = ACTIONS(436), + [anon_sym_let] = ACTIONS(436), + [anon_sym_loop] = ACTIONS(436), + [anon_sym_match] = ACTIONS(436), + [anon_sym_mod] = ACTIONS(436), + [anon_sym_pub] = ACTIONS(436), + [anon_sym_return] = ACTIONS(436), + [anon_sym_static] = ACTIONS(436), + [anon_sym_struct] = ACTIONS(436), + [anon_sym_trait] = ACTIONS(436), + [anon_sym_type] = ACTIONS(436), + [anon_sym_union] = ACTIONS(436), + [anon_sym_unsafe] = ACTIONS(436), + [anon_sym_use] = ACTIONS(436), + [anon_sym_while] = ACTIONS(436), + [anon_sym_POUND] = ACTIONS(434), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_EQ] = ACTIONS(436), + [anon_sym_extern] = ACTIONS(436), + [anon_sym_LT] = ACTIONS(436), + [anon_sym_GT] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(434), + [anon_sym_AMP] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(434), + [anon_sym_DOT_DOT] = ACTIONS(436), + [anon_sym_DOT_DOT_EQ] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(436), + [anon_sym_AMP_AMP] = ACTIONS(434), + [anon_sym_PIPE_PIPE] = ACTIONS(434), + [anon_sym_PIPE] = ACTIONS(436), + [anon_sym_CARET] = ACTIONS(436), + [anon_sym_EQ_EQ] = ACTIONS(434), + [anon_sym_BANG_EQ] = ACTIONS(434), + [anon_sym_LT_EQ] = ACTIONS(434), + [anon_sym_GT_EQ] = ACTIONS(434), + [anon_sym_LT_LT] = ACTIONS(436), + [anon_sym_GT_GT] = ACTIONS(436), + [anon_sym_SLASH] = ACTIONS(436), + [anon_sym_PERCENT] = ACTIONS(436), + [anon_sym_PLUS_EQ] = ACTIONS(434), + [anon_sym_DASH_EQ] = ACTIONS(434), + [anon_sym_STAR_EQ] = ACTIONS(434), + [anon_sym_SLASH_EQ] = ACTIONS(434), + [anon_sym_PERCENT_EQ] = ACTIONS(434), + [anon_sym_AMP_EQ] = ACTIONS(434), + [anon_sym_PIPE_EQ] = ACTIONS(434), + [anon_sym_CARET_EQ] = ACTIONS(434), + [anon_sym_LT_LT_EQ] = ACTIONS(434), + [anon_sym_GT_GT_EQ] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(436), + [anon_sym_DOT] = ACTIONS(436), + [sym_integer_literal] = ACTIONS(434), + [aux_sym_string_literal_token1] = ACTIONS(434), + [sym_char_literal] = ACTIONS(434), + [anon_sym_true] = ACTIONS(436), + [anon_sym_false] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(436), + [sym_super] = ACTIONS(436), + [sym_crate] = ACTIONS(436), + [sym_metavariable] = ACTIONS(434), + [sym_raw_string_literal] = ACTIONS(434), + [sym_float_literal] = ACTIONS(434), + [sym_block_comment] = ACTIONS(3), + }, + [63] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1222), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_tuple_expression_repeat1] = STATE(77), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_tuple_expression_repeat1] = STATE(81), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(418), + [anon_sym_RPAREN] = ACTIONS(438), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -23479,536 +23993,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [59] = { - [ts_builtin_sym_end] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(420), - [anon_sym_macro_rules_BANG] = ACTIONS(420), - [anon_sym_LPAREN] = ACTIONS(420), - [anon_sym_LBRACE] = ACTIONS(420), - [anon_sym_RBRACE] = ACTIONS(420), - [anon_sym_LBRACK] = ACTIONS(420), - [anon_sym_PLUS] = ACTIONS(422), - [anon_sym_STAR] = ACTIONS(422), - [anon_sym_QMARK] = ACTIONS(420), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_isize] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_f32] = ACTIONS(422), - [anon_sym_f64] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_str] = ACTIONS(422), - [anon_sym_char] = ACTIONS(422), - [anon_sym_SQUOTE] = ACTIONS(422), - [anon_sym_as] = ACTIONS(422), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(422), - [anon_sym_const] = ACTIONS(422), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_default] = ACTIONS(422), - [anon_sym_enum] = ACTIONS(422), - [anon_sym_fn] = ACTIONS(422), - [anon_sym_for] = ACTIONS(422), - [anon_sym_if] = ACTIONS(422), - [anon_sym_impl] = ACTIONS(422), - [anon_sym_let] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(422), - [anon_sym_match] = ACTIONS(422), - [anon_sym_mod] = ACTIONS(422), - [anon_sym_pub] = ACTIONS(422), - [anon_sym_return] = ACTIONS(422), - [anon_sym_static] = ACTIONS(422), - [anon_sym_struct] = ACTIONS(422), - [anon_sym_trait] = ACTIONS(422), - [anon_sym_type] = ACTIONS(422), - [anon_sym_union] = ACTIONS(422), - [anon_sym_unsafe] = ACTIONS(422), - [anon_sym_use] = ACTIONS(422), - [anon_sym_while] = ACTIONS(422), - [anon_sym_POUND] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_EQ] = ACTIONS(422), - [anon_sym_extern] = ACTIONS(422), - [anon_sym_LT] = ACTIONS(422), - [anon_sym_GT] = ACTIONS(422), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_AMP] = ACTIONS(422), - [anon_sym_DOT_DOT_DOT] = ACTIONS(420), - [anon_sym_DOT_DOT] = ACTIONS(422), - [anon_sym_DOT_DOT_EQ] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(422), - [anon_sym_CARET] = ACTIONS(422), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_BANG_EQ] = ACTIONS(420), - [anon_sym_LT_EQ] = ACTIONS(420), - [anon_sym_GT_EQ] = ACTIONS(420), - [anon_sym_LT_LT] = ACTIONS(422), - [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_SLASH] = ACTIONS(422), - [anon_sym_PERCENT] = ACTIONS(422), - [anon_sym_PLUS_EQ] = ACTIONS(420), - [anon_sym_DASH_EQ] = ACTIONS(420), - [anon_sym_STAR_EQ] = ACTIONS(420), - [anon_sym_SLASH_EQ] = ACTIONS(420), - [anon_sym_PERCENT_EQ] = ACTIONS(420), - [anon_sym_AMP_EQ] = ACTIONS(420), - [anon_sym_PIPE_EQ] = ACTIONS(420), - [anon_sym_CARET_EQ] = ACTIONS(420), - [anon_sym_LT_LT_EQ] = ACTIONS(420), - [anon_sym_GT_GT_EQ] = ACTIONS(420), - [anon_sym_yield] = ACTIONS(422), - [anon_sym_move] = ACTIONS(422), - [anon_sym_DOT] = ACTIONS(422), - [sym_integer_literal] = ACTIONS(420), - [aux_sym_string_literal_token1] = ACTIONS(420), - [sym_char_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(422), - [sym_super] = ACTIONS(422), - [sym_crate] = ACTIONS(422), - [sym_metavariable] = ACTIONS(420), - [sym_raw_string_literal] = ACTIONS(420), - [sym_float_literal] = ACTIONS(420), - [sym_block_comment] = ACTIONS(3), - }, - [60] = { - [ts_builtin_sym_end] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_macro_rules_BANG] = ACTIONS(424), - [anon_sym_LPAREN] = ACTIONS(424), - [anon_sym_LBRACE] = ACTIONS(424), - [anon_sym_RBRACE] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(426), - [anon_sym_STAR] = ACTIONS(426), - [anon_sym_QMARK] = ACTIONS(424), - [anon_sym_u8] = ACTIONS(426), - [anon_sym_i8] = ACTIONS(426), - [anon_sym_u16] = ACTIONS(426), - [anon_sym_i16] = ACTIONS(426), - [anon_sym_u32] = ACTIONS(426), - [anon_sym_i32] = ACTIONS(426), - [anon_sym_u64] = ACTIONS(426), - [anon_sym_i64] = ACTIONS(426), - [anon_sym_u128] = ACTIONS(426), - [anon_sym_i128] = ACTIONS(426), - [anon_sym_isize] = ACTIONS(426), - [anon_sym_usize] = ACTIONS(426), - [anon_sym_f32] = ACTIONS(426), - [anon_sym_f64] = ACTIONS(426), - [anon_sym_bool] = ACTIONS(426), - [anon_sym_str] = ACTIONS(426), - [anon_sym_char] = ACTIONS(426), - [anon_sym_SQUOTE] = ACTIONS(426), - [anon_sym_as] = ACTIONS(426), - [anon_sym_async] = ACTIONS(426), - [anon_sym_break] = ACTIONS(426), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(426), - [anon_sym_default] = ACTIONS(426), - [anon_sym_enum] = ACTIONS(426), - [anon_sym_fn] = ACTIONS(426), - [anon_sym_for] = ACTIONS(426), - [anon_sym_if] = ACTIONS(426), - [anon_sym_impl] = ACTIONS(426), - [anon_sym_let] = ACTIONS(426), - [anon_sym_loop] = ACTIONS(426), - [anon_sym_match] = ACTIONS(426), - [anon_sym_mod] = ACTIONS(426), - [anon_sym_pub] = ACTIONS(426), - [anon_sym_return] = ACTIONS(426), - [anon_sym_static] = ACTIONS(426), - [anon_sym_struct] = ACTIONS(426), - [anon_sym_trait] = ACTIONS(426), - [anon_sym_type] = ACTIONS(426), - [anon_sym_union] = ACTIONS(426), - [anon_sym_unsafe] = ACTIONS(426), - [anon_sym_use] = ACTIONS(426), - [anon_sym_while] = ACTIONS(426), - [anon_sym_POUND] = ACTIONS(424), - [anon_sym_BANG] = ACTIONS(426), - [anon_sym_EQ] = ACTIONS(426), - [anon_sym_extern] = ACTIONS(426), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_GT] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(424), - [anon_sym_AMP] = ACTIONS(426), - [anon_sym_DOT_DOT_DOT] = ACTIONS(424), - [anon_sym_DOT_DOT] = ACTIONS(426), - [anon_sym_DOT_DOT_EQ] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_AMP_AMP] = ACTIONS(424), - [anon_sym_PIPE_PIPE] = ACTIONS(424), - [anon_sym_PIPE] = ACTIONS(426), - [anon_sym_CARET] = ACTIONS(426), - [anon_sym_EQ_EQ] = ACTIONS(424), - [anon_sym_BANG_EQ] = ACTIONS(424), - [anon_sym_LT_EQ] = ACTIONS(424), - [anon_sym_GT_EQ] = ACTIONS(424), - [anon_sym_LT_LT] = ACTIONS(426), - [anon_sym_GT_GT] = ACTIONS(426), - [anon_sym_SLASH] = ACTIONS(426), - [anon_sym_PERCENT] = ACTIONS(426), - [anon_sym_PLUS_EQ] = ACTIONS(424), - [anon_sym_DASH_EQ] = ACTIONS(424), - [anon_sym_STAR_EQ] = ACTIONS(424), - [anon_sym_SLASH_EQ] = ACTIONS(424), - [anon_sym_PERCENT_EQ] = ACTIONS(424), - [anon_sym_AMP_EQ] = ACTIONS(424), - [anon_sym_PIPE_EQ] = ACTIONS(424), - [anon_sym_CARET_EQ] = ACTIONS(424), - [anon_sym_LT_LT_EQ] = ACTIONS(424), - [anon_sym_GT_GT_EQ] = ACTIONS(424), - [anon_sym_yield] = ACTIONS(426), - [anon_sym_move] = ACTIONS(426), - [anon_sym_DOT] = ACTIONS(426), - [sym_integer_literal] = ACTIONS(424), - [aux_sym_string_literal_token1] = ACTIONS(424), - [sym_char_literal] = ACTIONS(424), - [anon_sym_true] = ACTIONS(426), - [anon_sym_false] = ACTIONS(426), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_crate] = ACTIONS(426), - [sym_metavariable] = ACTIONS(424), - [sym_raw_string_literal] = ACTIONS(424), - [sym_float_literal] = ACTIONS(424), - [sym_block_comment] = ACTIONS(3), - }, - [61] = { - [ts_builtin_sym_end] = ACTIONS(428), - [sym_identifier] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(428), - [anon_sym_macro_rules_BANG] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_RBRACE] = ACTIONS(428), - [anon_sym_LBRACK] = ACTIONS(428), - [anon_sym_PLUS] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(430), - [anon_sym_QMARK] = ACTIONS(428), - [anon_sym_u8] = ACTIONS(430), - [anon_sym_i8] = ACTIONS(430), - [anon_sym_u16] = ACTIONS(430), - [anon_sym_i16] = ACTIONS(430), - [anon_sym_u32] = ACTIONS(430), - [anon_sym_i32] = ACTIONS(430), - [anon_sym_u64] = ACTIONS(430), - [anon_sym_i64] = ACTIONS(430), - [anon_sym_u128] = ACTIONS(430), - [anon_sym_i128] = ACTIONS(430), - [anon_sym_isize] = ACTIONS(430), - [anon_sym_usize] = ACTIONS(430), - [anon_sym_f32] = ACTIONS(430), - [anon_sym_f64] = ACTIONS(430), - [anon_sym_bool] = ACTIONS(430), - [anon_sym_str] = ACTIONS(430), - [anon_sym_char] = ACTIONS(430), - [anon_sym_SQUOTE] = ACTIONS(430), - [anon_sym_as] = ACTIONS(430), - [anon_sym_async] = ACTIONS(430), - [anon_sym_break] = ACTIONS(430), - [anon_sym_const] = ACTIONS(430), - [anon_sym_continue] = ACTIONS(430), - [anon_sym_default] = ACTIONS(430), - [anon_sym_enum] = ACTIONS(430), - [anon_sym_fn] = ACTIONS(430), - [anon_sym_for] = ACTIONS(430), - [anon_sym_if] = ACTIONS(430), - [anon_sym_impl] = ACTIONS(430), - [anon_sym_let] = ACTIONS(430), - [anon_sym_loop] = ACTIONS(430), - [anon_sym_match] = ACTIONS(430), - [anon_sym_mod] = ACTIONS(430), - [anon_sym_pub] = ACTIONS(430), - [anon_sym_return] = ACTIONS(430), - [anon_sym_static] = ACTIONS(430), - [anon_sym_struct] = ACTIONS(430), - [anon_sym_trait] = ACTIONS(430), - [anon_sym_type] = ACTIONS(430), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(430), - [anon_sym_use] = ACTIONS(430), - [anon_sym_while] = ACTIONS(430), - [anon_sym_POUND] = ACTIONS(428), - [anon_sym_BANG] = ACTIONS(430), - [anon_sym_EQ] = ACTIONS(430), - [anon_sym_extern] = ACTIONS(430), - [anon_sym_LT] = ACTIONS(430), - [anon_sym_GT] = ACTIONS(430), - [anon_sym_COLON_COLON] = ACTIONS(428), - [anon_sym_AMP] = ACTIONS(430), - [anon_sym_DOT_DOT_DOT] = ACTIONS(428), - [anon_sym_DOT_DOT] = ACTIONS(430), - [anon_sym_DOT_DOT_EQ] = ACTIONS(428), - [anon_sym_DASH] = ACTIONS(430), - [anon_sym_AMP_AMP] = ACTIONS(428), - [anon_sym_PIPE_PIPE] = ACTIONS(428), - [anon_sym_PIPE] = ACTIONS(430), - [anon_sym_CARET] = ACTIONS(430), - [anon_sym_EQ_EQ] = ACTIONS(428), - [anon_sym_BANG_EQ] = ACTIONS(428), - [anon_sym_LT_EQ] = ACTIONS(428), - [anon_sym_GT_EQ] = ACTIONS(428), - [anon_sym_LT_LT] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(430), - [anon_sym_SLASH] = ACTIONS(430), - [anon_sym_PERCENT] = ACTIONS(430), - [anon_sym_PLUS_EQ] = ACTIONS(428), - [anon_sym_DASH_EQ] = ACTIONS(428), - [anon_sym_STAR_EQ] = ACTIONS(428), - [anon_sym_SLASH_EQ] = ACTIONS(428), - [anon_sym_PERCENT_EQ] = ACTIONS(428), - [anon_sym_AMP_EQ] = ACTIONS(428), - [anon_sym_PIPE_EQ] = ACTIONS(428), - [anon_sym_CARET_EQ] = ACTIONS(428), - [anon_sym_LT_LT_EQ] = ACTIONS(428), - [anon_sym_GT_GT_EQ] = ACTIONS(428), - [anon_sym_yield] = ACTIONS(430), - [anon_sym_move] = ACTIONS(430), - [anon_sym_DOT] = ACTIONS(430), - [sym_integer_literal] = ACTIONS(428), - [aux_sym_string_literal_token1] = ACTIONS(428), - [sym_char_literal] = ACTIONS(428), - [anon_sym_true] = ACTIONS(430), - [anon_sym_false] = ACTIONS(430), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(430), - [sym_super] = ACTIONS(430), - [sym_crate] = ACTIONS(430), - [sym_metavariable] = ACTIONS(428), - [sym_raw_string_literal] = ACTIONS(428), - [sym_float_literal] = ACTIONS(428), - [sym_block_comment] = ACTIONS(3), - }, - [62] = { - [ts_builtin_sym_end] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [anon_sym_SEMI] = ACTIONS(432), - [anon_sym_macro_rules_BANG] = ACTIONS(432), - [anon_sym_LPAREN] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(432), - [anon_sym_RBRACE] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_STAR] = ACTIONS(434), - [anon_sym_QMARK] = ACTIONS(432), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_isize] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_f32] = ACTIONS(434), - [anon_sym_f64] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_str] = ACTIONS(434), - [anon_sym_char] = ACTIONS(434), - [anon_sym_SQUOTE] = ACTIONS(434), - [anon_sym_as] = ACTIONS(434), - [anon_sym_async] = ACTIONS(434), - [anon_sym_break] = ACTIONS(434), - [anon_sym_const] = ACTIONS(434), - [anon_sym_continue] = ACTIONS(434), - [anon_sym_default] = ACTIONS(434), - [anon_sym_enum] = ACTIONS(434), - [anon_sym_fn] = ACTIONS(434), - [anon_sym_for] = ACTIONS(434), - [anon_sym_if] = ACTIONS(434), - [anon_sym_impl] = ACTIONS(434), - [anon_sym_let] = ACTIONS(434), - [anon_sym_loop] = ACTIONS(434), - [anon_sym_match] = ACTIONS(434), - [anon_sym_mod] = ACTIONS(434), - [anon_sym_pub] = ACTIONS(434), - [anon_sym_return] = ACTIONS(434), - [anon_sym_static] = ACTIONS(434), - [anon_sym_struct] = ACTIONS(434), - [anon_sym_trait] = ACTIONS(434), - [anon_sym_type] = ACTIONS(434), - [anon_sym_union] = ACTIONS(434), - [anon_sym_unsafe] = ACTIONS(434), - [anon_sym_use] = ACTIONS(434), - [anon_sym_while] = ACTIONS(434), - [anon_sym_POUND] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_EQ] = ACTIONS(434), - [anon_sym_extern] = ACTIONS(434), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(434), - [anon_sym_DOT_DOT_DOT] = ACTIONS(432), - [anon_sym_DOT_DOT] = ACTIONS(434), - [anon_sym_DOT_DOT_EQ] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_AMP_AMP] = ACTIONS(432), - [anon_sym_PIPE_PIPE] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(434), - [anon_sym_CARET] = ACTIONS(434), - [anon_sym_EQ_EQ] = ACTIONS(432), - [anon_sym_BANG_EQ] = ACTIONS(432), - [anon_sym_LT_EQ] = ACTIONS(432), - [anon_sym_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(434), - [anon_sym_GT_GT] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(434), - [anon_sym_PERCENT] = ACTIONS(434), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), - [anon_sym_move] = ACTIONS(434), - [anon_sym_DOT] = ACTIONS(434), - [sym_integer_literal] = ACTIONS(432), - [aux_sym_string_literal_token1] = ACTIONS(432), - [sym_char_literal] = ACTIONS(432), - [anon_sym_true] = ACTIONS(434), - [anon_sym_false] = ACTIONS(434), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(434), - [sym_super] = ACTIONS(434), - [sym_crate] = ACTIONS(434), - [sym_metavariable] = ACTIONS(432), - [sym_raw_string_literal] = ACTIONS(432), - [sym_float_literal] = ACTIONS(432), - [sym_block_comment] = ACTIONS(3), - }, - [63] = { - [ts_builtin_sym_end] = ACTIONS(436), - [sym_identifier] = ACTIONS(438), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym_macro_rules_BANG] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_STAR] = ACTIONS(438), - [anon_sym_QMARK] = ACTIONS(436), - [anon_sym_u8] = ACTIONS(438), - [anon_sym_i8] = ACTIONS(438), - [anon_sym_u16] = ACTIONS(438), - [anon_sym_i16] = ACTIONS(438), - [anon_sym_u32] = ACTIONS(438), - [anon_sym_i32] = ACTIONS(438), - [anon_sym_u64] = ACTIONS(438), - [anon_sym_i64] = ACTIONS(438), - [anon_sym_u128] = ACTIONS(438), - [anon_sym_i128] = ACTIONS(438), - [anon_sym_isize] = ACTIONS(438), - [anon_sym_usize] = ACTIONS(438), - [anon_sym_f32] = ACTIONS(438), - [anon_sym_f64] = ACTIONS(438), - [anon_sym_bool] = ACTIONS(438), - [anon_sym_str] = ACTIONS(438), - [anon_sym_char] = ACTIONS(438), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_as] = ACTIONS(438), - [anon_sym_async] = ACTIONS(438), - [anon_sym_break] = ACTIONS(438), - [anon_sym_const] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(438), - [anon_sym_default] = ACTIONS(438), - [anon_sym_enum] = ACTIONS(438), - [anon_sym_fn] = ACTIONS(438), - [anon_sym_for] = ACTIONS(438), - [anon_sym_if] = ACTIONS(438), - [anon_sym_impl] = ACTIONS(438), - [anon_sym_let] = ACTIONS(438), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(438), - [anon_sym_mod] = ACTIONS(438), - [anon_sym_pub] = ACTIONS(438), - [anon_sym_return] = ACTIONS(438), - [anon_sym_static] = ACTIONS(438), - [anon_sym_struct] = ACTIONS(438), - [anon_sym_trait] = ACTIONS(438), - [anon_sym_type] = ACTIONS(438), - [anon_sym_union] = ACTIONS(438), - [anon_sym_unsafe] = ACTIONS(438), - [anon_sym_use] = ACTIONS(438), - [anon_sym_while] = ACTIONS(438), - [anon_sym_POUND] = ACTIONS(436), - [anon_sym_BANG] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(438), - [anon_sym_extern] = ACTIONS(438), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_GT] = ACTIONS(438), - [anon_sym_COLON_COLON] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [anon_sym_DOT_DOT] = ACTIONS(438), - [anon_sym_DOT_DOT_EQ] = ACTIONS(436), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_AMP_AMP] = ACTIONS(436), - [anon_sym_PIPE_PIPE] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(438), - [anon_sym_CARET] = ACTIONS(438), - [anon_sym_EQ_EQ] = ACTIONS(436), - [anon_sym_BANG_EQ] = ACTIONS(436), - [anon_sym_LT_EQ] = ACTIONS(436), - [anon_sym_GT_EQ] = ACTIONS(436), - [anon_sym_LT_LT] = ACTIONS(438), - [anon_sym_GT_GT] = ACTIONS(438), - [anon_sym_SLASH] = ACTIONS(438), - [anon_sym_PERCENT] = ACTIONS(438), - [anon_sym_PLUS_EQ] = ACTIONS(436), - [anon_sym_DASH_EQ] = ACTIONS(436), - [anon_sym_STAR_EQ] = ACTIONS(436), - [anon_sym_SLASH_EQ] = ACTIONS(436), - [anon_sym_PERCENT_EQ] = ACTIONS(436), - [anon_sym_AMP_EQ] = ACTIONS(436), - [anon_sym_PIPE_EQ] = ACTIONS(436), - [anon_sym_CARET_EQ] = ACTIONS(436), - [anon_sym_LT_LT_EQ] = ACTIONS(436), - [anon_sym_GT_GT_EQ] = ACTIONS(436), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_move] = ACTIONS(438), - [anon_sym_DOT] = ACTIONS(438), - [sym_integer_literal] = ACTIONS(436), - [aux_sym_string_literal_token1] = ACTIONS(436), - [sym_char_literal] = ACTIONS(436), - [anon_sym_true] = ACTIONS(438), - [anon_sym_false] = ACTIONS(438), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(438), - [sym_super] = ACTIONS(438), - [sym_crate] = ACTIONS(438), - [sym_metavariable] = ACTIONS(436), - [sym_raw_string_literal] = ACTIONS(436), - [sym_float_literal] = ACTIONS(436), - [sym_block_comment] = ACTIONS(3), - }, [64] = { [ts_builtin_sym_end] = ACTIONS(440), [sym_identifier] = ACTIONS(442), @@ -24434,50 +24418,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [68] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1239), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1243), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [aux_sym_tuple_expression_repeat1] = STATE(77), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), @@ -24752,51 +24736,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [71] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1230), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_let_condition] = STATE(1907), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1220), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2023), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24827,7 +24811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(390), + [anon_sym_let] = ACTIONS(392), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), @@ -24858,51 +24842,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [72] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1278), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_let_condition] = STATE(1907), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1290), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2023), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24933,7 +24917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(390), + [anon_sym_let] = ACTIONS(392), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), @@ -25388,50 +25372,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [77] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1288), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1262), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [aux_sym_tuple_expression_repeat1] = STATE(77), [sym_identifier] = ACTIONS(488), [anon_sym_LPAREN] = ACTIONS(491), @@ -25494,54 +25478,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [78] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1253), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1223), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [aux_sym_tuple_expression_repeat1] = STATE(68), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(418), + [anon_sym_RPAREN] = ACTIONS(586), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -25600,75 +25584,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [79] = { - [ts_builtin_sym_end] = ACTIONS(586), - [sym_identifier] = ACTIONS(588), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_macro_rules_BANG] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_RBRACE] = ACTIONS(586), - [anon_sym_LBRACK] = ACTIONS(586), + [ts_builtin_sym_end] = ACTIONS(588), + [sym_identifier] = ACTIONS(590), + [anon_sym_SEMI] = ACTIONS(588), + [anon_sym_macro_rules_BANG] = ACTIONS(588), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_RBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(588), [anon_sym_PLUS] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(588), + [anon_sym_STAR] = ACTIONS(590), [anon_sym_QMARK] = ACTIONS(484), - [anon_sym_u8] = ACTIONS(588), - [anon_sym_i8] = ACTIONS(588), - [anon_sym_u16] = ACTIONS(588), - [anon_sym_i16] = ACTIONS(588), - [anon_sym_u32] = ACTIONS(588), - [anon_sym_i32] = ACTIONS(588), - [anon_sym_u64] = ACTIONS(588), - [anon_sym_i64] = ACTIONS(588), - [anon_sym_u128] = ACTIONS(588), - [anon_sym_i128] = ACTIONS(588), - [anon_sym_isize] = ACTIONS(588), - [anon_sym_usize] = ACTIONS(588), - [anon_sym_f32] = ACTIONS(588), - [anon_sym_f64] = ACTIONS(588), - [anon_sym_bool] = ACTIONS(588), - [anon_sym_str] = ACTIONS(588), - [anon_sym_char] = ACTIONS(588), - [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_u8] = ACTIONS(590), + [anon_sym_i8] = ACTIONS(590), + [anon_sym_u16] = ACTIONS(590), + [anon_sym_i16] = ACTIONS(590), + [anon_sym_u32] = ACTIONS(590), + [anon_sym_i32] = ACTIONS(590), + [anon_sym_u64] = ACTIONS(590), + [anon_sym_i64] = ACTIONS(590), + [anon_sym_u128] = ACTIONS(590), + [anon_sym_i128] = ACTIONS(590), + [anon_sym_isize] = ACTIONS(590), + [anon_sym_usize] = ACTIONS(590), + [anon_sym_f32] = ACTIONS(590), + [anon_sym_f64] = ACTIONS(590), + [anon_sym_bool] = ACTIONS(590), + [anon_sym_str] = ACTIONS(590), + [anon_sym_char] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(590), [anon_sym_as] = ACTIONS(486), - [anon_sym_async] = ACTIONS(588), - [anon_sym_break] = ACTIONS(588), - [anon_sym_const] = ACTIONS(588), - [anon_sym_continue] = ACTIONS(588), - [anon_sym_default] = ACTIONS(588), - [anon_sym_enum] = ACTIONS(588), - [anon_sym_fn] = ACTIONS(588), - [anon_sym_for] = ACTIONS(588), - [anon_sym_if] = ACTIONS(588), - [anon_sym_impl] = ACTIONS(588), - [anon_sym_let] = ACTIONS(588), - [anon_sym_loop] = ACTIONS(588), - [anon_sym_match] = ACTIONS(588), - [anon_sym_mod] = ACTIONS(588), - [anon_sym_pub] = ACTIONS(588), - [anon_sym_return] = ACTIONS(588), - [anon_sym_static] = ACTIONS(588), - [anon_sym_struct] = ACTIONS(588), - [anon_sym_trait] = ACTIONS(588), - [anon_sym_type] = ACTIONS(588), - [anon_sym_union] = ACTIONS(588), - [anon_sym_unsafe] = ACTIONS(588), - [anon_sym_use] = ACTIONS(588), - [anon_sym_while] = ACTIONS(588), - [anon_sym_POUND] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(588), + [anon_sym_async] = ACTIONS(590), + [anon_sym_break] = ACTIONS(590), + [anon_sym_const] = ACTIONS(590), + [anon_sym_continue] = ACTIONS(590), + [anon_sym_default] = ACTIONS(590), + [anon_sym_enum] = ACTIONS(590), + [anon_sym_fn] = ACTIONS(590), + [anon_sym_for] = ACTIONS(590), + [anon_sym_if] = ACTIONS(590), + [anon_sym_impl] = ACTIONS(590), + [anon_sym_let] = ACTIONS(590), + [anon_sym_loop] = ACTIONS(590), + [anon_sym_match] = ACTIONS(590), + [anon_sym_mod] = ACTIONS(590), + [anon_sym_pub] = ACTIONS(590), + [anon_sym_return] = ACTIONS(590), + [anon_sym_static] = ACTIONS(590), + [anon_sym_struct] = ACTIONS(590), + [anon_sym_trait] = ACTIONS(590), + [anon_sym_type] = ACTIONS(590), + [anon_sym_union] = ACTIONS(590), + [anon_sym_unsafe] = ACTIONS(590), + [anon_sym_use] = ACTIONS(590), + [anon_sym_while] = ACTIONS(590), + [anon_sym_POUND] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(590), [anon_sym_EQ] = ACTIONS(486), - [anon_sym_extern] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(588), + [anon_sym_extern] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(590), [anon_sym_GT] = ACTIONS(486), - [anon_sym_COLON_COLON] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(588), + [anon_sym_COLON_COLON] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(590), [anon_sym_DOT_DOT_DOT] = ACTIONS(484), - [anon_sym_DOT_DOT] = ACTIONS(588), + [anon_sym_DOT_DOT] = ACTIONS(590), [anon_sym_DOT_DOT_EQ] = ACTIONS(484), - [anon_sym_DASH] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(590), [anon_sym_AMP_AMP] = ACTIONS(484), [anon_sym_PIPE_PIPE] = ACTIONS(484), - [anon_sym_PIPE] = ACTIONS(588), + [anon_sym_PIPE] = ACTIONS(590), [anon_sym_CARET] = ACTIONS(486), [anon_sym_EQ_EQ] = ACTIONS(484), [anon_sym_BANG_EQ] = ACTIONS(484), @@ -25688,178 +25672,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(484), [anon_sym_LT_LT_EQ] = ACTIONS(484), [anon_sym_GT_GT_EQ] = ACTIONS(484), - [anon_sym_yield] = ACTIONS(588), - [anon_sym_move] = ACTIONS(588), + [anon_sym_yield] = ACTIONS(590), + [anon_sym_move] = ACTIONS(590), [anon_sym_DOT] = ACTIONS(486), - [sym_integer_literal] = ACTIONS(586), - [aux_sym_string_literal_token1] = ACTIONS(586), - [sym_char_literal] = ACTIONS(586), - [anon_sym_true] = ACTIONS(588), - [anon_sym_false] = ACTIONS(588), + [sym_integer_literal] = ACTIONS(588), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(588), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(588), - [sym_super] = ACTIONS(588), - [sym_crate] = ACTIONS(588), - [sym_metavariable] = ACTIONS(586), - [sym_raw_string_literal] = ACTIONS(586), - [sym_float_literal] = ACTIONS(586), + [sym_self] = ACTIONS(590), + [sym_super] = ACTIONS(590), + [sym_crate] = ACTIONS(590), + [sym_metavariable] = ACTIONS(588), + [sym_raw_string_literal] = ACTIONS(588), + [sym_float_literal] = ACTIONS(588), [sym_block_comment] = ACTIONS(3), }, [80] = { - [ts_builtin_sym_end] = ACTIONS(590), - [sym_identifier] = ACTIONS(592), - [anon_sym_SEMI] = ACTIONS(590), - [anon_sym_macro_rules_BANG] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(590), - [anon_sym_RBRACE] = ACTIONS(590), - [anon_sym_LBRACK] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_STAR] = ACTIONS(592), - [anon_sym_QMARK] = ACTIONS(590), - [anon_sym_u8] = ACTIONS(592), - [anon_sym_i8] = ACTIONS(592), - [anon_sym_u16] = ACTIONS(592), - [anon_sym_i16] = ACTIONS(592), - [anon_sym_u32] = ACTIONS(592), - [anon_sym_i32] = ACTIONS(592), - [anon_sym_u64] = ACTIONS(592), - [anon_sym_i64] = ACTIONS(592), - [anon_sym_u128] = ACTIONS(592), - [anon_sym_i128] = ACTIONS(592), - [anon_sym_isize] = ACTIONS(592), - [anon_sym_usize] = ACTIONS(592), - [anon_sym_f32] = ACTIONS(592), - [anon_sym_f64] = ACTIONS(592), - [anon_sym_bool] = ACTIONS(592), - [anon_sym_str] = ACTIONS(592), - [anon_sym_char] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_as] = ACTIONS(592), - [anon_sym_async] = ACTIONS(592), - [anon_sym_break] = ACTIONS(592), - [anon_sym_const] = ACTIONS(592), - [anon_sym_continue] = ACTIONS(592), - [anon_sym_default] = ACTIONS(592), - [anon_sym_enum] = ACTIONS(592), - [anon_sym_fn] = ACTIONS(592), - [anon_sym_for] = ACTIONS(592), - [anon_sym_if] = ACTIONS(592), - [anon_sym_impl] = ACTIONS(592), - [anon_sym_let] = ACTIONS(592), - [anon_sym_loop] = ACTIONS(592), - [anon_sym_match] = ACTIONS(592), - [anon_sym_mod] = ACTIONS(592), - [anon_sym_pub] = ACTIONS(592), - [anon_sym_return] = ACTIONS(592), - [anon_sym_static] = ACTIONS(592), - [anon_sym_struct] = ACTIONS(592), - [anon_sym_trait] = ACTIONS(592), - [anon_sym_type] = ACTIONS(592), - [anon_sym_union] = ACTIONS(592), - [anon_sym_unsafe] = ACTIONS(592), - [anon_sym_use] = ACTIONS(592), - [anon_sym_while] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(592), - [anon_sym_extern] = ACTIONS(592), - [anon_sym_LT] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(590), - [anon_sym_AMP] = ACTIONS(592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(590), - [anon_sym_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_AMP_AMP] = ACTIONS(590), - [anon_sym_PIPE_PIPE] = ACTIONS(590), - [anon_sym_PIPE] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_EQ_EQ] = ACTIONS(590), - [anon_sym_BANG_EQ] = ACTIONS(590), - [anon_sym_LT_EQ] = ACTIONS(590), - [anon_sym_GT_EQ] = ACTIONS(590), - [anon_sym_LT_LT] = ACTIONS(592), - [anon_sym_GT_GT] = ACTIONS(592), - [anon_sym_SLASH] = ACTIONS(592), - [anon_sym_PERCENT] = ACTIONS(592), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_STAR_EQ] = ACTIONS(590), - [anon_sym_SLASH_EQ] = ACTIONS(590), - [anon_sym_PERCENT_EQ] = ACTIONS(590), - [anon_sym_AMP_EQ] = ACTIONS(590), - [anon_sym_PIPE_EQ] = ACTIONS(590), - [anon_sym_CARET_EQ] = ACTIONS(590), - [anon_sym_LT_LT_EQ] = ACTIONS(590), - [anon_sym_GT_GT_EQ] = ACTIONS(590), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_move] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(592), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(590), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(592), - [anon_sym_false] = ACTIONS(592), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(592), - [sym_super] = ACTIONS(592), - [sym_crate] = ACTIONS(592), - [sym_metavariable] = ACTIONS(590), - [sym_raw_string_literal] = ACTIONS(590), - [sym_float_literal] = ACTIONS(590), + [ts_builtin_sym_end] = ACTIONS(592), + [sym_identifier] = ACTIONS(594), + [anon_sym_SEMI] = ACTIONS(592), + [anon_sym_macro_rules_BANG] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(592), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_RBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_PLUS] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(594), + [anon_sym_QMARK] = ACTIONS(592), + [anon_sym_u8] = ACTIONS(594), + [anon_sym_i8] = ACTIONS(594), + [anon_sym_u16] = ACTIONS(594), + [anon_sym_i16] = ACTIONS(594), + [anon_sym_u32] = ACTIONS(594), + [anon_sym_i32] = ACTIONS(594), + [anon_sym_u64] = ACTIONS(594), + [anon_sym_i64] = ACTIONS(594), + [anon_sym_u128] = ACTIONS(594), + [anon_sym_i128] = ACTIONS(594), + [anon_sym_isize] = ACTIONS(594), + [anon_sym_usize] = ACTIONS(594), + [anon_sym_f32] = ACTIONS(594), + [anon_sym_f64] = ACTIONS(594), + [anon_sym_bool] = ACTIONS(594), + [anon_sym_str] = ACTIONS(594), + [anon_sym_char] = ACTIONS(594), + [anon_sym_SQUOTE] = ACTIONS(594), + [anon_sym_as] = ACTIONS(594), + [anon_sym_async] = ACTIONS(594), + [anon_sym_break] = ACTIONS(594), + [anon_sym_const] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(594), + [anon_sym_default] = ACTIONS(594), + [anon_sym_enum] = ACTIONS(594), + [anon_sym_fn] = ACTIONS(594), + [anon_sym_for] = ACTIONS(594), + [anon_sym_if] = ACTIONS(594), + [anon_sym_impl] = ACTIONS(594), + [anon_sym_let] = ACTIONS(594), + [anon_sym_loop] = ACTIONS(594), + [anon_sym_match] = ACTIONS(594), + [anon_sym_mod] = ACTIONS(594), + [anon_sym_pub] = ACTIONS(594), + [anon_sym_return] = ACTIONS(594), + [anon_sym_static] = ACTIONS(594), + [anon_sym_struct] = ACTIONS(594), + [anon_sym_trait] = ACTIONS(594), + [anon_sym_type] = ACTIONS(594), + [anon_sym_union] = ACTIONS(594), + [anon_sym_unsafe] = ACTIONS(594), + [anon_sym_use] = ACTIONS(594), + [anon_sym_while] = ACTIONS(594), + [anon_sym_POUND] = ACTIONS(592), + [anon_sym_BANG] = ACTIONS(594), + [anon_sym_EQ] = ACTIONS(594), + [anon_sym_extern] = ACTIONS(594), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_GT] = ACTIONS(594), + [anon_sym_COLON_COLON] = ACTIONS(592), + [anon_sym_AMP] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(592), + [anon_sym_DOT_DOT] = ACTIONS(594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(592), + [anon_sym_PIPE_PIPE] = ACTIONS(592), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_CARET] = ACTIONS(594), + [anon_sym_EQ_EQ] = ACTIONS(592), + [anon_sym_BANG_EQ] = ACTIONS(592), + [anon_sym_LT_EQ] = ACTIONS(592), + [anon_sym_GT_EQ] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(594), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_SLASH] = ACTIONS(594), + [anon_sym_PERCENT] = ACTIONS(594), + [anon_sym_PLUS_EQ] = ACTIONS(592), + [anon_sym_DASH_EQ] = ACTIONS(592), + [anon_sym_STAR_EQ] = ACTIONS(592), + [anon_sym_SLASH_EQ] = ACTIONS(592), + [anon_sym_PERCENT_EQ] = ACTIONS(592), + [anon_sym_AMP_EQ] = ACTIONS(592), + [anon_sym_PIPE_EQ] = ACTIONS(592), + [anon_sym_CARET_EQ] = ACTIONS(592), + [anon_sym_LT_LT_EQ] = ACTIONS(592), + [anon_sym_GT_GT_EQ] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_move] = ACTIONS(594), + [anon_sym_DOT] = ACTIONS(594), + [sym_integer_literal] = ACTIONS(592), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(592), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(594), + [sym_super] = ACTIONS(594), + [sym_crate] = ACTIONS(594), + [sym_metavariable] = ACTIONS(592), + [sym_raw_string_literal] = ACTIONS(592), + [sym_float_literal] = ACTIONS(592), [sym_block_comment] = ACTIONS(3), }, [81] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1225), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1223), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [aux_sym_tuple_expression_repeat1] = STATE(58), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [aux_sym_tuple_expression_repeat1] = STATE(77), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(586), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -26024,51 +26008,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [83] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1277), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_let_condition] = STATE(1907), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1292), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2023), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26130,51 +26114,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [84] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1252), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_let_condition] = STATE(1907), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_let_condition] = STATE(2023), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26660,50 +26644,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [89] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1146), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1137), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26765,50 +26749,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [90] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1209), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1211), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26870,50 +26854,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [91] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1254), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1204), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -26975,50 +26959,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [92] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1256), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27080,50 +27064,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [93] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1209), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1211), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27185,50 +27169,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [94] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1209), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1211), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27395,50 +27379,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [96] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1152), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1147), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27500,50 +27484,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [97] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1204), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1221), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27605,50 +27589,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [98] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1138), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1151), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27710,50 +27694,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [99] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1153), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1149), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27814,50 +27798,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [100] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1080), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1261), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -27918,50 +27902,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [101] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1211), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1264), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28022,50 +28006,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [102] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1296), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1244), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28126,50 +28110,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [103] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1209), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1263), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28230,53 +28214,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [104] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1237), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(243), - [sym_match_expression] = STATE(243), - [sym_while_expression] = STATE(243), - [sym_loop_expression] = STATE(243), - [sym_for_expression] = STATE(243), - [sym_const_block] = STATE(243), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1211), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2542), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(243), - [sym_async_block] = STATE(243), - [sym_block] = STATE(243), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -28297,19 +28281,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(634), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(636), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(638), - [anon_sym_if] = ACTIONS(640), - [anon_sym_loop] = ACTIONS(642), - [anon_sym_match] = ACTIONS(644), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(646), - [anon_sym_while] = ACTIONS(648), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -28334,50 +28318,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [105] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1262), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1276), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28438,53 +28422,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [106] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1283), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1227), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(243), + [sym_match_expression] = STATE(243), + [sym_while_expression] = STATE(243), + [sym_loop_expression] = STATE(243), + [sym_for_expression] = STATE(243), + [sym_const_block] = STATE(243), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2540), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(243), + [sym_async_block] = STATE(243), + [sym_block] = STATE(243), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(632), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -28505,19 +28489,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(634), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(636), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(638), + [anon_sym_if] = ACTIONS(640), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(644), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -28542,50 +28526,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [107] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1244), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28646,50 +28630,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [108] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1282), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1231), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28750,50 +28734,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [109] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1281), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1294), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28854,50 +28838,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [110] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1231), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1283), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28958,53 +28942,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [111] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1286), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(230), - [sym_match_expression] = STATE(230), - [sym_while_expression] = STATE(230), - [sym_loop_expression] = STATE(230), - [sym_for_expression] = STATE(230), - [sym_const_block] = STATE(230), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1213), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2542), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(230), - [sym_async_block] = STATE(230), - [sym_block] = STATE(230), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -29025,19 +29009,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(634), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(636), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(638), - [anon_sym_if] = ACTIONS(640), - [anon_sym_loop] = ACTIONS(642), - [anon_sym_match] = ACTIONS(644), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(646), - [anon_sym_while] = ACTIONS(648), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -29062,50 +29046,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [112] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1233), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29166,50 +29150,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [113] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1147), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1217), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29250,7 +29234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(466), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29270,50 +29254,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [114] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1296), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(229), + [sym_match_expression] = STATE(229), + [sym_while_expression] = STATE(229), + [sym_loop_expression] = STATE(229), + [sym_for_expression] = STATE(229), + [sym_const_block] = STATE(229), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2540), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(229), + [sym_async_block] = STATE(229), + [sym_block] = STATE(229), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(634), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(636), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(638), + [anon_sym_if] = ACTIONS(640), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(644), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [115] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1251), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29373,51 +29461,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [115] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [116] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29477,51 +29565,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [116] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1136), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [117] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1135), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29581,51 +29669,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [117] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1139), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [118] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1143), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29685,51 +29773,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [118] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1290), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [119] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1297), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29789,51 +29877,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [119] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), + [120] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), [sym__expression] = STATE(1144), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29893,51 +29981,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [120] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1214), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(230), - [sym_match_expression] = STATE(230), - [sym_while_expression] = STATE(230), - [sym_loop_expression] = STATE(230), - [sym_for_expression] = STATE(230), - [sym_const_block] = STATE(230), - [sym_closure_expression] = STATE(847), + [121] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(229), + [sym_match_expression] = STATE(229), + [sym_while_expression] = STATE(229), + [sym_loop_expression] = STATE(229), + [sym_for_expression] = STATE(229), + [sym_const_block] = STATE(229), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2542), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(230), - [sym_async_block] = STATE(230), - [sym_block] = STATE(230), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2540), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(229), + [sym_async_block] = STATE(229), + [sym_block] = STATE(229), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(632), @@ -29997,51 +30085,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [121] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1250), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [122] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1232), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30101,51 +30189,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [122] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1275), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [123] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1265), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30205,51 +30293,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [123] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1137), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [124] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1145), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30309,51 +30397,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [124] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1246), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [125] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1248), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30413,51 +30501,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [125] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1140), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [126] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1146), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30517,51 +30605,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [126] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1080), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [127] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1148), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30602,7 +30690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(466), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30621,51 +30709,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [127] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1154), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [128] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1098), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30706,7 +30794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(466), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30725,51 +30813,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [128] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1206), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [129] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1253), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30829,155 +30917,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [129] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1279), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [130] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1141), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [130] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1145), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), - [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31038,50 +31022,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [131] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1080), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1098), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31142,50 +31126,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [132] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1157), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1150), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31246,50 +31230,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [133] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1242), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1246), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31350,50 +31334,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [134] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1289), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1282), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31454,50 +31438,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [135] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1299), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1153), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31538,7 +31522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(466), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31558,53 +31542,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [136] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1268), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(243), - [sym_match_expression] = STATE(243), - [sym_while_expression] = STATE(243), - [sym_loop_expression] = STATE(243), - [sym_for_expression] = STATE(243), - [sym_const_block] = STATE(243), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1267), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2542), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(243), - [sym_async_block] = STATE(243), - [sym_block] = STATE(243), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -31625,19 +31609,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(634), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(636), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(638), - [anon_sym_if] = ACTIONS(640), - [anon_sym_loop] = ACTIONS(642), - [anon_sym_match] = ACTIONS(644), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(646), - [anon_sym_while] = ACTIONS(648), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -31662,50 +31646,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [137] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1141), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1155), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31766,50 +31750,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [138] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1149), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1152), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31870,50 +31854,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [139] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1295), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1285), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31974,154 +31958,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [140] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1202), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [141] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1265), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1268), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32181,158 +32061,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [142] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1218), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [143] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1223), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [141] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1281), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(243), + [sym_match_expression] = STATE(243), + [sym_while_expression] = STATE(243), + [sym_loop_expression] = STATE(243), + [sym_for_expression] = STATE(243), + [sym_const_block] = STATE(243), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2540), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(243), + [sym_async_block] = STATE(243), + [sym_block] = STATE(243), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(632), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -32353,19 +32129,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(634), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(636), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(638), + [anon_sym_if] = ACTIONS(640), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(644), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [142] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1249), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [143] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -32390,50 +32374,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [144] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1228), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1214), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32494,50 +32478,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [145] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1278), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32598,50 +32582,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [146] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1271), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32702,50 +32686,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [147] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1276), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32806,50 +32790,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [148] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1259), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1299), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [149] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1098), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32909,51 +32997,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [149] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1298), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [150] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1274), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33013,51 +33101,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [150] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1292), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [151] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1287), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33117,51 +33205,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [151] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1270), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [152] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1254), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [153] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1286), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33221,259 +33413,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [152] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1280), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [154] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1298), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [153] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1198), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), - [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [154] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1199), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), - [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33534,50 +33518,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [155] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1293), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1233), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33638,50 +33622,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [156] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1266), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1234), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33742,50 +33726,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [157] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1263), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1270), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33846,50 +33830,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [158] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1297), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1275), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33950,50 +33934,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [159] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), [sym__expression] = STATE(1284), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34054,50 +34038,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [160] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1274), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1266), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34158,50 +34142,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [161] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1228), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34262,50 +34246,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [162] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1219), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1199), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34366,50 +34350,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [163] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1294), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1238), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34450,7 +34434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(600), [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), @@ -34470,154 +34454,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [164] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1221), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [sym_identifier] = ACTIONS(340), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1157), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(600), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [165] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1222), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1256), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34678,50 +34662,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [166] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1232), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1260), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34782,50 +34766,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [167] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1234), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1236), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34886,154 +34870,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [168] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1215), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [169] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1080), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1295), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [169] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1098), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35094,50 +35078,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [170] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1235), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1224), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35198,50 +35182,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [171] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1240), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1210), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35302,50 +35286,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [172] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1247), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1203), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35406,50 +35390,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [173] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1208), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1245), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35510,50 +35494,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [174] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1248), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1205), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35614,154 +35598,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [175] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1155), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), - [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [176] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1205), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1237), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35822,258 +35806,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [177] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1287), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), - [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [178] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1300), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), - [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [179] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1238), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1218), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [178] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1219), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [179] = { + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1886), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(1183), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(92), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -36134,50 +36118,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [180] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1987), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(883), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1280), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), [sym_closure_parameters] = STATE(89), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -36238,153 +36222,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [181] = { - [sym_bracketed_type] = STATE(2334), - [sym_generic_function] = STATE(847), - [sym_generic_type_with_turbofish] = STATE(1958), - [sym__expression_except_range] = STATE(847), - [sym__expression] = STATE(1216), - [sym_macro_invocation] = STATE(847), - [sym_scoped_identifier] = STATE(1188), - [sym_scoped_type_identifier_in_expression_position] = STATE(2323), - [sym_range_expression] = STATE(1085), - [sym_unary_expression] = STATE(847), - [sym_try_expression] = STATE(847), - [sym_reference_expression] = STATE(847), - [sym_binary_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_compound_assignment_expr] = STATE(847), - [sym_type_cast_expression] = STATE(847), - [sym_return_expression] = STATE(847), - [sym_yield_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_array_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_tuple_expression] = STATE(847), - [sym_unit_expression] = STATE(847), - [sym_struct_expression] = STATE(847), - [sym_if_expression] = STATE(847), - [sym_match_expression] = STATE(847), - [sym_while_expression] = STATE(847), - [sym_loop_expression] = STATE(847), - [sym_for_expression] = STATE(847), - [sym_const_block] = STATE(847), - [sym_closure_expression] = STATE(847), - [sym_closure_parameters] = STATE(92), - [sym_loop_label] = STATE(2513), - [sym_break_expression] = STATE(847), - [sym_continue_expression] = STATE(847), - [sym_index_expression] = STATE(847), - [sym_await_expression] = STATE(847), - [sym_field_expression] = STATE(837), - [sym_unsafe_block] = STATE(847), - [sym_async_block] = STATE(847), - [sym_block] = STATE(847), - [sym__literal] = STATE(847), - [sym_string_literal] = STATE(1053), - [sym_boolean_literal] = STATE(1053), - [sym_identifier] = ACTIONS(340), + [sym_bracketed_type] = STATE(2332), + [sym_generic_function] = STATE(915), + [sym_generic_type_with_turbofish] = STATE(1883), + [sym__expression_except_range] = STATE(915), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(915), + [sym_scoped_identifier] = STATE(966), + [sym_scoped_type_identifier_in_expression_position] = STATE(2319), + [sym_range_expression] = STATE(1080), + [sym_unary_expression] = STATE(915), + [sym_try_expression] = STATE(915), + [sym_reference_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_compound_assignment_expr] = STATE(915), + [sym_type_cast_expression] = STATE(915), + [sym_return_expression] = STATE(915), + [sym_yield_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_array_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_tuple_expression] = STATE(915), + [sym_unit_expression] = STATE(915), + [sym_struct_expression] = STATE(915), + [sym_if_expression] = STATE(915), + [sym_match_expression] = STATE(915), + [sym_while_expression] = STATE(915), + [sym_loop_expression] = STATE(915), + [sym_for_expression] = STATE(915), + [sym_const_block] = STATE(915), + [sym_closure_expression] = STATE(915), + [sym_closure_parameters] = STATE(89), + [sym_loop_label] = STATE(2511), + [sym_break_expression] = STATE(915), + [sym_continue_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_await_expression] = STATE(915), + [sym_field_expression] = STATE(874), + [sym_unsafe_block] = STATE(915), + [sym_async_block] = STATE(915), + [sym_block] = STATE(915), + [sym__literal] = STATE(915), + [sym_string_literal] = STATE(1046), + [sym_boolean_literal] = STATE(1046), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [182] = { [sym_attribute_item] = STATE(194), - [sym_function_modifiers] = STATE(2473), - [sym_self_parameter] = STATE(1870), - [sym_variadic_parameter] = STATE(1870), - [sym_parameter] = STATE(1870), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1769), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(1873), + [sym_function_modifiers] = STATE(2352), + [sym_self_parameter] = STATE(2124), + [sym_variadic_parameter] = STATE(2124), + [sym_parameter] = STATE(2124), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1834), + [sym_bracketed_type] = STATE(2502), + [sym_lifetime] = STATE(2095), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2505), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2503), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1739), - [sym_scoped_identifier] = STATE(1521), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1515), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1725), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_RPAREN] = ACTIONS(654), @@ -36446,48 +36430,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [183] = { [sym_attribute_item] = STATE(196), - [sym_function_modifiers] = STATE(2473), - [sym_self_parameter] = STATE(2089), - [sym_variadic_parameter] = STATE(2089), - [sym_parameter] = STATE(2089), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1762), - [sym_bracketed_type] = STATE(2500), - [sym_lifetime] = STATE(1873), + [sym_function_modifiers] = STATE(2352), + [sym_self_parameter] = STATE(2087), + [sym_variadic_parameter] = STATE(2087), + [sym_parameter] = STATE(2087), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1771), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2095), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2501), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2499), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1748), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(716), [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_RPAREN] = ACTIONS(720), @@ -36549,48 +36533,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [184] = { [sym_attribute_item] = STATE(194), - [sym_function_modifiers] = STATE(2473), - [sym_self_parameter] = STATE(1870), - [sym_variadic_parameter] = STATE(1870), - [sym_parameter] = STATE(1870), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1769), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(1873), + [sym_function_modifiers] = STATE(2352), + [sym_self_parameter] = STATE(2124), + [sym_variadic_parameter] = STATE(2124), + [sym_parameter] = STATE(2124), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1834), + [sym_bracketed_type] = STATE(2502), + [sym_lifetime] = STATE(2095), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2505), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2503), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1739), - [sym_scoped_identifier] = STATE(1521), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1515), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1725), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_RPAREN] = ACTIONS(742), @@ -36652,48 +36636,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [185] = { [sym_attribute_item] = STATE(194), - [sym_function_modifiers] = STATE(2473), - [sym_self_parameter] = STATE(1870), - [sym_variadic_parameter] = STATE(1870), - [sym_parameter] = STATE(1870), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1769), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(1873), + [sym_function_modifiers] = STATE(2352), + [sym_self_parameter] = STATE(2124), + [sym_variadic_parameter] = STATE(2124), + [sym_parameter] = STATE(2124), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1834), + [sym_bracketed_type] = STATE(2502), + [sym_lifetime] = STATE(2095), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2505), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2503), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1739), - [sym_scoped_identifier] = STATE(1521), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1716), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1515), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1725), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_RPAREN] = ACTIONS(746), @@ -36755,48 +36739,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [186] = { [sym_attribute_item] = STATE(194), - [sym_function_modifiers] = STATE(2473), - [sym_self_parameter] = STATE(1870), - [sym_variadic_parameter] = STATE(1870), - [sym_parameter] = STATE(1870), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1769), - [sym_bracketed_type] = STATE(2500), - [sym_lifetime] = STATE(1873), + [sym_function_modifiers] = STATE(2352), + [sym_self_parameter] = STATE(2124), + [sym_variadic_parameter] = STATE(2124), + [sym_parameter] = STATE(2124), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1834), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2095), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2501), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2499), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1748), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(716), [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_RPAREN] = ACTIONS(750), @@ -36858,48 +36842,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [187] = { [sym_attribute_item] = STATE(195), - [sym_function_modifiers] = STATE(2473), - [sym_self_parameter] = STATE(2229), - [sym_variadic_parameter] = STATE(2229), - [sym_parameter] = STATE(2229), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1933), - [sym_bracketed_type] = STATE(2500), - [sym_lifetime] = STATE(1873), + [sym_function_modifiers] = STATE(2352), + [sym_self_parameter] = STATE(2273), + [sym_variadic_parameter] = STATE(2273), + [sym_parameter] = STATE(2273), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1908), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2095), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2501), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2499), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1748), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(716), [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_RPAREN] = ACTIONS(756), @@ -36960,48 +36944,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [188] = { [sym_attribute_item] = STATE(195), - [sym_function_modifiers] = STATE(2473), - [sym_self_parameter] = STATE(2229), - [sym_variadic_parameter] = STATE(2229), - [sym_parameter] = STATE(2229), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1933), - [sym_bracketed_type] = STATE(2500), - [sym_lifetime] = STATE(1873), + [sym_function_modifiers] = STATE(2352), + [sym_self_parameter] = STATE(2273), + [sym_variadic_parameter] = STATE(2273), + [sym_parameter] = STATE(2273), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1908), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2095), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2501), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2499), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1748), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(716), [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_RPAREN] = ACTIONS(760), @@ -37062,48 +37046,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [189] = { [sym_attribute_item] = STATE(195), - [sym_function_modifiers] = STATE(2473), - [sym_self_parameter] = STATE(2229), - [sym_variadic_parameter] = STATE(2229), - [sym_parameter] = STATE(2229), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1933), - [sym_bracketed_type] = STATE(2500), - [sym_lifetime] = STATE(1873), + [sym_function_modifiers] = STATE(2352), + [sym_self_parameter] = STATE(2273), + [sym_variadic_parameter] = STATE(2273), + [sym_parameter] = STATE(2273), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1908), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2095), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2501), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2499), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1748), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(716), [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_RPAREN] = ACTIONS(762), @@ -37164,48 +37148,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [190] = { [sym_attribute_item] = STATE(195), - [sym_function_modifiers] = STATE(2473), - [sym_self_parameter] = STATE(2229), - [sym_variadic_parameter] = STATE(2229), - [sym_parameter] = STATE(2229), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1933), - [sym_bracketed_type] = STATE(2500), - [sym_lifetime] = STATE(1873), + [sym_function_modifiers] = STATE(2352), + [sym_self_parameter] = STATE(2273), + [sym_variadic_parameter] = STATE(2273), + [sym_parameter] = STATE(2273), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1908), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2095), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2501), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2499), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1748), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(716), [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_RPAREN] = ACTIONS(764), @@ -37266,48 +37250,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [191] = { [sym_attribute_item] = STATE(195), - [sym_function_modifiers] = STATE(2473), - [sym_self_parameter] = STATE(2229), - [sym_variadic_parameter] = STATE(2229), - [sym_parameter] = STATE(2229), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1933), - [sym_bracketed_type] = STATE(2500), - [sym_lifetime] = STATE(1873), + [sym_function_modifiers] = STATE(2352), + [sym_self_parameter] = STATE(2273), + [sym_variadic_parameter] = STATE(2273), + [sym_parameter] = STATE(2273), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1908), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2095), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2501), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2499), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1748), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(716), [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_RPAREN] = ACTIONS(766), @@ -37368,48 +37352,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [192] = { [sym_attribute_item] = STATE(195), - [sym_function_modifiers] = STATE(2473), - [sym_self_parameter] = STATE(2229), - [sym_variadic_parameter] = STATE(2229), - [sym_parameter] = STATE(2229), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1933), - [sym_bracketed_type] = STATE(2500), - [sym_lifetime] = STATE(1873), + [sym_function_modifiers] = STATE(2352), + [sym_self_parameter] = STATE(2273), + [sym_variadic_parameter] = STATE(2273), + [sym_parameter] = STATE(2273), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1908), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2095), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2501), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2499), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1748), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(716), [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_RPAREN] = ACTIONS(768), @@ -37470,48 +37454,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [193] = { [sym_attribute_item] = STATE(195), - [sym_function_modifiers] = STATE(2473), - [sym_self_parameter] = STATE(2229), - [sym_variadic_parameter] = STATE(2229), - [sym_parameter] = STATE(2229), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1933), - [sym_bracketed_type] = STATE(2500), - [sym_lifetime] = STATE(1873), + [sym_function_modifiers] = STATE(2352), + [sym_self_parameter] = STATE(2273), + [sym_variadic_parameter] = STATE(2273), + [sym_parameter] = STATE(2273), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1908), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2095), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2501), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2499), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1748), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(716), [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_LBRACK] = ACTIONS(656), @@ -37570,48 +37554,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [194] = { - [sym_function_modifiers] = STATE(2473), + [sym_function_modifiers] = STATE(2352), [sym_self_parameter] = STATE(2061), [sym_variadic_parameter] = STATE(2061), [sym_parameter] = STATE(2061), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1775), - [sym_bracketed_type] = STATE(2500), - [sym_lifetime] = STATE(1873), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1768), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2095), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2501), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2499), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1748), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(716), [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_LBRACK] = ACTIONS(656), @@ -37669,48 +37653,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [195] = { - [sym_function_modifiers] = STATE(2473), - [sym_self_parameter] = STATE(2190), - [sym_variadic_parameter] = STATE(2190), - [sym_parameter] = STATE(2190), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(2090), - [sym_bracketed_type] = STATE(2500), - [sym_lifetime] = STATE(1873), + [sym_function_modifiers] = STATE(2352), + [sym_self_parameter] = STATE(2184), + [sym_variadic_parameter] = STATE(2184), + [sym_parameter] = STATE(2184), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(2029), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2095), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2501), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2499), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1748), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(716), [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_LBRACK] = ACTIONS(656), @@ -37768,48 +37752,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [196] = { - [sym_function_modifiers] = STATE(2473), - [sym_self_parameter] = STATE(2129), - [sym_variadic_parameter] = STATE(2129), - [sym_parameter] = STATE(2129), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1776), - [sym_bracketed_type] = STATE(2500), - [sym_lifetime] = STATE(1873), + [sym_function_modifiers] = STATE(2352), + [sym_self_parameter] = STATE(2112), + [sym_variadic_parameter] = STATE(2112), + [sym_parameter] = STATE(2112), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1815), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2095), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2501), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2499), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1748), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2165), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2163), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(716), [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_LBRACK] = ACTIONS(656), @@ -37867,45 +37851,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [197] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(2128), - [sym_bracketed_type] = STATE(2507), - [sym_lifetime] = STATE(2479), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(2002), + [sym_bracketed_type] = STATE(2505), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2508), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2506), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1736), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1831), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1720), + [sym_scoped_identifier] = STATE(1556), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1859), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(776), [anon_sym_LPAREN] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(656), @@ -37964,45 +37948,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [198] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1774), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(2479), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1796), + [sym_bracketed_type] = STATE(2502), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2505), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2503), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1739), - [sym_scoped_identifier] = STATE(1521), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1792), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1515), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1852), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_RPAREN] = ACTIONS(804), @@ -38061,45 +38045,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [199] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1774), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(2479), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1796), + [sym_bracketed_type] = STATE(2502), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2505), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2503), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1739), - [sym_scoped_identifier] = STATE(1521), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1792), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1515), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1852), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_RPAREN] = ACTIONS(814), @@ -38158,45 +38142,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [200] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1774), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(2479), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1796), + [sym_bracketed_type] = STATE(2502), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2505), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2503), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1739), - [sym_scoped_identifier] = STATE(1521), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1792), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1515), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1852), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_RPAREN] = ACTIONS(816), @@ -38351,45 +38335,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [202] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1377), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(2479), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1393), + [sym_bracketed_type] = STATE(2505), + [sym_lifetime] = STATE(626), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2506), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1720), + [sym_scoped_identifier] = STATE(1556), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1455), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(782), + [anon_sym_i8] = ACTIONS(782), + [anon_sym_u16] = ACTIONS(782), + [anon_sym_i16] = ACTIONS(782), + [anon_sym_u32] = ACTIONS(782), + [anon_sym_i32] = ACTIONS(782), + [anon_sym_u64] = ACTIONS(782), + [anon_sym_i64] = ACTIONS(782), + [anon_sym_u128] = ACTIONS(782), + [anon_sym_i128] = ACTIONS(782), + [anon_sym_isize] = ACTIONS(782), + [anon_sym_usize] = ACTIONS(782), + [anon_sym_f32] = ACTIONS(782), + [anon_sym_f64] = ACTIONS(782), + [anon_sym_bool] = ACTIONS(782), + [anon_sym_str] = ACTIONS(782), + [anon_sym_char] = ACTIONS(782), + [anon_sym_SQUOTE] = ACTIONS(822), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(784), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(786), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(790), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(824), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(800), + [sym_super] = ACTIONS(800), + [sym_crate] = ACTIONS(800), + [sym_metavariable] = ACTIONS(802), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [203] = { + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1383), + [sym_bracketed_type] = STATE(2502), + [sym_lifetime] = STATE(2346), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2505), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2503), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1739), - [sym_scoped_identifier] = STATE(1521), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1454), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1515), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1447), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_LBRACK] = ACTIONS(656), @@ -38437,7 +38516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(822), + [sym_self] = ACTIONS(826), [sym_super] = ACTIONS(712), [sym_crate] = ACTIONS(712), [sym_metavariable] = ACTIONS(714), @@ -38445,46 +38524,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [203] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1377), - [sym_bracketed_type] = STATE(2500), - [sym_lifetime] = STATE(2479), + [204] = { + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1393), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(624), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2501), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2499), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1748), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1454), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1455), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(716), [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_LBRACK] = ACTIONS(656), @@ -38506,14 +38585,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(722), [anon_sym_str] = ACTIONS(722), [anon_sym_char] = ACTIONS(722), - [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_SQUOTE] = ACTIONS(822), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(824), + [anon_sym_default] = ACTIONS(828), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(826), + [anon_sym_union] = ACTIONS(830), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), @@ -38521,9 +38600,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(730), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(832), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(796), + [sym_mutable_specifier] = ACTIONS(834), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -38532,7 +38611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(830), + [sym_self] = ACTIONS(836), [sym_super] = ACTIONS(738), [sym_crate] = ACTIONS(738), [sym_metavariable] = ACTIONS(740), @@ -38540,141 +38619,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [204] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1400), - [sym_bracketed_type] = STATE(2507), - [sym_lifetime] = STATE(625), - [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), - [sym_function_type] = STATE(1395), - [sym_tuple_type] = STATE(1395), - [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2508), - [sym_bounded_type] = STATE(1395), - [sym_reference_type] = STATE(1395), - [sym_pointer_type] = STATE(1395), - [sym_empty_type] = STATE(1395), - [sym_abstract_type] = STATE(1395), - [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1736), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1436), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(778), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(782), - [anon_sym_i8] = ACTIONS(782), - [anon_sym_u16] = ACTIONS(782), - [anon_sym_i16] = ACTIONS(782), - [anon_sym_u32] = ACTIONS(782), - [anon_sym_i32] = ACTIONS(782), - [anon_sym_u64] = ACTIONS(782), - [anon_sym_i64] = ACTIONS(782), - [anon_sym_u128] = ACTIONS(782), - [anon_sym_i128] = ACTIONS(782), - [anon_sym_isize] = ACTIONS(782), - [anon_sym_usize] = ACTIONS(782), - [anon_sym_f32] = ACTIONS(782), - [anon_sym_f64] = ACTIONS(782), - [anon_sym_bool] = ACTIONS(782), - [anon_sym_str] = ACTIONS(782), - [anon_sym_char] = ACTIONS(782), - [anon_sym_SQUOTE] = ACTIONS(832), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(784), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(786), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(790), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(794), - [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(834), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(800), - [sym_super] = ACTIONS(800), - [sym_crate] = ACTIONS(800), - [sym_metavariable] = ACTIONS(802), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, [205] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1377), - [sym_bracketed_type] = STATE(2507), - [sym_lifetime] = STATE(2479), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1383), + [sym_bracketed_type] = STATE(2505), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2508), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2506), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1736), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1454), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1720), + [sym_scoped_identifier] = STATE(1556), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1447), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(776), [anon_sym_LPAREN] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(656), @@ -38731,84 +38715,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [206] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1400), - [sym_bracketed_type] = STATE(2500), - [sym_lifetime] = STATE(624), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1383), + [sym_bracketed_type] = STATE(2502), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2501), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2503), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1748), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1436), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(716), - [anon_sym_LPAREN] = ACTIONS(718), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1515), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1447), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(722), - [anon_sym_i8] = ACTIONS(722), - [anon_sym_u16] = ACTIONS(722), - [anon_sym_i16] = ACTIONS(722), - [anon_sym_u32] = ACTIONS(722), - [anon_sym_i32] = ACTIONS(722), - [anon_sym_u64] = ACTIONS(722), - [anon_sym_i64] = ACTIONS(722), - [anon_sym_u128] = ACTIONS(722), - [anon_sym_i128] = ACTIONS(722), - [anon_sym_isize] = ACTIONS(722), - [anon_sym_usize] = ACTIONS(722), - [anon_sym_f32] = ACTIONS(722), - [anon_sym_f64] = ACTIONS(722), - [anon_sym_bool] = ACTIONS(722), - [anon_sym_str] = ACTIONS(722), - [anon_sym_char] = ACTIONS(722), - [anon_sym_SQUOTE] = ACTIONS(832), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(824), + [anon_sym_default] = ACTIONS(806), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(826), + [anon_sym_union] = ACTIONS(808), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(688), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(812), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(836), + [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -38817,54 +38801,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(838), - [sym_super] = ACTIONS(738), - [sym_crate] = ACTIONS(738), - [sym_metavariable] = ACTIONS(740), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [207] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1400), - [sym_bracketed_type] = STATE(2504), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1393), + [sym_bracketed_type] = STATE(2502), [sym_lifetime] = STATE(624), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2505), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2503), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1739), - [sym_scoped_identifier] = STATE(1521), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1436), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1515), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1455), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_LBRACK] = ACTIONS(656), @@ -38886,7 +38870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(660), [anon_sym_str] = ACTIONS(660), [anon_sym_char] = ACTIONS(660), - [anon_sym_SQUOTE] = ACTIONS(832), + [anon_sym_SQUOTE] = ACTIONS(822), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), [anon_sym_default] = ACTIONS(806), @@ -38903,7 +38887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(792), [anon_sym_AMP] = ACTIONS(812), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(840), + [sym_mutable_specifier] = ACTIONS(838), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -38912,7 +38896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(842), + [sym_self] = ACTIONS(840), [sym_super] = ACTIONS(712), [sym_crate] = ACTIONS(712), [sym_metavariable] = ACTIONS(714), @@ -38921,84 +38905,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [208] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1400), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(625), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1383), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2505), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2499), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1739), - [sym_scoped_identifier] = STATE(1521), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1436), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1447), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), - [anon_sym_SQUOTE] = ACTIONS(832), + [anon_sym_u8] = ACTIONS(722), + [anon_sym_i8] = ACTIONS(722), + [anon_sym_u16] = ACTIONS(722), + [anon_sym_i16] = ACTIONS(722), + [anon_sym_u32] = ACTIONS(722), + [anon_sym_i32] = ACTIONS(722), + [anon_sym_u64] = ACTIONS(722), + [anon_sym_i64] = ACTIONS(722), + [anon_sym_u128] = ACTIONS(722), + [anon_sym_i128] = ACTIONS(722), + [anon_sym_isize] = ACTIONS(722), + [anon_sym_usize] = ACTIONS(722), + [anon_sym_f32] = ACTIONS(722), + [anon_sym_f64] = ACTIONS(722), + [anon_sym_bool] = ACTIONS(722), + [anon_sym_str] = ACTIONS(722), + [anon_sym_char] = ACTIONS(722), + [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(806), + [anon_sym_default] = ACTIONS(828), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(808), + [anon_sym_union] = ACTIONS(830), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(730), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(812), + [anon_sym_AMP] = ACTIONS(832), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(844), + [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -39007,54 +38991,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(712), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(842), + [sym_super] = ACTIONS(738), + [sym_crate] = ACTIONS(738), + [sym_metavariable] = ACTIONS(740), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [209] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1377), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(2479), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1393), + [sym_bracketed_type] = STATE(2502), + [sym_lifetime] = STATE(626), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2505), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2503), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1739), - [sym_scoped_identifier] = STATE(1521), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1454), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1515), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1455), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_LBRACK] = ACTIONS(656), @@ -39076,7 +39060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(660), [anon_sym_str] = ACTIONS(660), [anon_sym_char] = ACTIONS(660), - [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_SQUOTE] = ACTIONS(822), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), [anon_sym_default] = ACTIONS(806), @@ -39093,7 +39077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__] = ACTIONS(792), [anon_sym_AMP] = ACTIONS(812), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(796), + [sym_mutable_specifier] = ACTIONS(844), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -39111,45 +39095,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [210] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1400), - [sym_bracketed_type] = STATE(2500), - [sym_lifetime] = STATE(625), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1383), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2501), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2499), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1748), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1436), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1447), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(716), [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_LBRACK] = ACTIONS(656), @@ -39171,14 +39155,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(722), [anon_sym_str] = ACTIONS(722), [anon_sym_char] = ACTIONS(722), - [anon_sym_SQUOTE] = ACTIONS(832), + [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(824), + [anon_sym_default] = ACTIONS(828), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(826), + [anon_sym_union] = ACTIONS(830), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), @@ -39186,9 +39170,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(730), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(832), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(846), + [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -39206,45 +39190,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [211] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1377), - [sym_bracketed_type] = STATE(2500), - [sym_lifetime] = STATE(2479), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1393), + [sym_bracketed_type] = STATE(2498), + [sym_lifetime] = STATE(626), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2501), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2499), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1748), - [sym_scoped_identifier] = STATE(1605), - [sym_scoped_type_identifier] = STATE(1472), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1454), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_macro_invocation] = STATE(1742), + [sym_scoped_identifier] = STATE(1598), + [sym_scoped_type_identifier] = STATE(1478), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1455), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(716), [anon_sym_LPAREN] = ACTIONS(718), [anon_sym_LBRACK] = ACTIONS(656), @@ -39266,14 +39250,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(722), [anon_sym_str] = ACTIONS(722), [anon_sym_char] = ACTIONS(722), - [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_SQUOTE] = ACTIONS(822), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(824), + [anon_sym_default] = ACTIONS(828), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(826), + [anon_sym_union] = ACTIONS(830), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), @@ -39281,9 +39265,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(730), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(832), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(796), + [sym_mutable_specifier] = ACTIONS(846), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -39301,29 +39285,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [212] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1441), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1452), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), [sym_identifier] = ACTIONS(848), [anon_sym_LPAREN] = ACTIONS(850), [anon_sym_LBRACE] = ACTIONS(850), @@ -39388,13 +39372,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [213] = { - [sym__attr] = STATE(2527), - [sym_custom_attr] = STATE(2527), - [sym_built_in_attr] = STATE(2527), - [sym__built_in_attr_path] = STATE(1859), - [sym_bracketed_type] = STATE(2334), - [sym_generic_type_with_turbofish] = STATE(2530), - [sym_scoped_identifier] = STATE(1598), + [sym__attr] = STATE(2338), + [sym_custom_attr] = STATE(2338), + [sym_built_in_attr] = STATE(2338), + [sym__built_in_attr_path] = STATE(1799), + [sym_bracketed_type] = STATE(2332), + [sym_generic_type_with_turbofish] = STATE(2555), + [sym_scoped_identifier] = STATE(1573), [sym_identifier] = ACTIONS(852), [anon_sym_path] = ACTIONS(854), [anon_sym_u8] = ACTIONS(856), @@ -39470,13 +39454,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [214] = { - [sym__attr] = STATE(2547), - [sym_custom_attr] = STATE(2547), - [sym_built_in_attr] = STATE(2547), - [sym__built_in_attr_path] = STATE(1859), - [sym_bracketed_type] = STATE(2334), - [sym_generic_type_with_turbofish] = STATE(2530), - [sym_scoped_identifier] = STATE(1598), + [sym__attr] = STATE(2473), + [sym_custom_attr] = STATE(2473), + [sym_built_in_attr] = STATE(2473), + [sym__built_in_attr_path] = STATE(1799), + [sym_bracketed_type] = STATE(2332), + [sym_generic_type_with_turbofish] = STATE(2555), + [sym_scoped_identifier] = STATE(1573), [sym_identifier] = ACTIONS(852), [anon_sym_path] = ACTIONS(854), [anon_sym_u8] = ACTIONS(856), @@ -39552,13 +39536,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [215] = { - [sym__attr] = STATE(2359), - [sym_custom_attr] = STATE(2359), - [sym_built_in_attr] = STATE(2359), - [sym__built_in_attr_path] = STATE(1859), - [sym_bracketed_type] = STATE(2334), - [sym_generic_type_with_turbofish] = STATE(2530), - [sym_scoped_identifier] = STATE(1598), + [sym__attr] = STATE(2557), + [sym_custom_attr] = STATE(2557), + [sym_built_in_attr] = STATE(2557), + [sym__built_in_attr_path] = STATE(1799), + [sym_bracketed_type] = STATE(2332), + [sym_generic_type_with_turbofish] = STATE(2555), + [sym_scoped_identifier] = STATE(1573), [sym_identifier] = ACTIONS(852), [anon_sym_path] = ACTIONS(854), [anon_sym_u8] = ACTIONS(856), @@ -39634,13 +39618,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [216] = { - [sym__attr] = STATE(2340), - [sym_custom_attr] = STATE(2340), - [sym_built_in_attr] = STATE(2340), - [sym__built_in_attr_path] = STATE(1859), - [sym_bracketed_type] = STATE(2334), - [sym_generic_type_with_turbofish] = STATE(2530), - [sym_scoped_identifier] = STATE(1598), + [sym__attr] = STATE(2380), + [sym_custom_attr] = STATE(2380), + [sym_built_in_attr] = STATE(2380), + [sym__built_in_attr_path] = STATE(1799), + [sym_bracketed_type] = STATE(2332), + [sym_generic_type_with_turbofish] = STATE(2555), + [sym_scoped_identifier] = STATE(1573), [sym_identifier] = ACTIONS(852), [anon_sym_path] = ACTIONS(854), [anon_sym_u8] = ACTIONS(856), @@ -39716,13 +39700,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [217] = { - [sym__attr] = STATE(2377), - [sym_custom_attr] = STATE(2377), - [sym_built_in_attr] = STATE(2377), - [sym__built_in_attr_path] = STATE(1859), - [sym_bracketed_type] = STATE(2334), - [sym_generic_type_with_turbofish] = STATE(2530), - [sym_scoped_identifier] = STATE(1598), + [sym__attr] = STATE(2323), + [sym_custom_attr] = STATE(2323), + [sym_built_in_attr] = STATE(2323), + [sym__built_in_attr_path] = STATE(1799), + [sym_bracketed_type] = STATE(2332), + [sym_generic_type_with_turbofish] = STATE(2555), + [sym_scoped_identifier] = STATE(1573), [sym_identifier] = ACTIONS(852), [anon_sym_path] = ACTIONS(854), [anon_sym_u8] = ACTIONS(856), @@ -39798,89 +39782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [218] = { - [sym__attr] = STATE(2436), - [sym_custom_attr] = STATE(2436), - [sym_built_in_attr] = STATE(2436), - [sym__built_in_attr_path] = STATE(1859), - [sym_bracketed_type] = STATE(2334), - [sym_generic_type_with_turbofish] = STATE(2530), - [sym_scoped_identifier] = STATE(1598), - [sym_identifier] = ACTIONS(852), - [anon_sym_path] = ACTIONS(854), - [anon_sym_u8] = ACTIONS(856), - [anon_sym_i8] = ACTIONS(856), - [anon_sym_u16] = ACTIONS(856), - [anon_sym_i16] = ACTIONS(856), - [anon_sym_u32] = ACTIONS(856), - [anon_sym_i32] = ACTIONS(856), - [anon_sym_u64] = ACTIONS(856), - [anon_sym_i64] = ACTIONS(856), - [anon_sym_u128] = ACTIONS(856), - [anon_sym_i128] = ACTIONS(856), - [anon_sym_isize] = ACTIONS(856), - [anon_sym_usize] = ACTIONS(856), - [anon_sym_f32] = ACTIONS(856), - [anon_sym_f64] = ACTIONS(856), - [anon_sym_bool] = ACTIONS(856), - [anon_sym_str] = ACTIONS(856), - [anon_sym_char] = ACTIONS(856), - [anon_sym_default] = ACTIONS(856), - [anon_sym_union] = ACTIONS(856), - [anon_sym_cfg] = ACTIONS(854), - [anon_sym_cfg_attr] = ACTIONS(854), - [anon_sym_test] = ACTIONS(854), - [anon_sym_ignore] = ACTIONS(854), - [anon_sym_should_panic] = ACTIONS(854), - [anon_sym_derive] = ACTIONS(854), - [anon_sym_automatically_derived] = ACTIONS(854), - [anon_sym_macro_export] = ACTIONS(854), - [anon_sym_macro_use] = ACTIONS(854), - [anon_sym_proc_macro] = ACTIONS(854), - [anon_sym_proc_macro_derive] = ACTIONS(854), - [anon_sym_proc_macro_attribute] = ACTIONS(854), - [anon_sym_allow] = ACTIONS(854), - [anon_sym_warn] = ACTIONS(854), - [anon_sym_deny] = ACTIONS(854), - [anon_sym_forbid] = ACTIONS(854), - [anon_sym_deprecated] = ACTIONS(854), - [anon_sym_must_use] = ACTIONS(854), - [anon_sym_link] = ACTIONS(854), - [anon_sym_link_name] = ACTIONS(854), - [anon_sym_no_link] = ACTIONS(854), - [anon_sym_repr] = ACTIONS(854), - [anon_sym_crate_type] = ACTIONS(854), - [anon_sym_no_main] = ACTIONS(854), - [anon_sym_export_name] = ACTIONS(854), - [anon_sym_link_section] = ACTIONS(854), - [anon_sym_no_mangle] = ACTIONS(854), - [anon_sym_used] = ACTIONS(854), - [anon_sym_crate_name] = ACTIONS(854), - [anon_sym_inline] = ACTIONS(854), - [anon_sym_cold] = ACTIONS(854), - [anon_sym_no_builtins] = ACTIONS(854), - [anon_sym_target_feature] = ACTIONS(854), - [anon_sym_track_caller] = ACTIONS(854), - [anon_sym_doc] = ACTIONS(854), - [anon_sym_no_std] = ACTIONS(854), - [anon_sym_no_implicit_prelude] = ACTIONS(854), - [anon_sym_recursion_limit] = ACTIONS(854), - [anon_sym_type_length_limit] = ACTIONS(854), - [anon_sym_panic_handler] = ACTIONS(854), - [anon_sym_global_allocator] = ACTIONS(854), - [anon_sym_windows_subsystem] = ACTIONS(854), - [anon_sym_feature] = ACTIONS(854), - [anon_sym_non_exhaustive] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(858), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(860), - [sym_super] = ACTIONS(860), - [sym_crate] = ACTIONS(860), - [sym_metavariable] = ACTIONS(862), - [sym_block_comment] = ACTIONS(3), - }, - [219] = { - [sym_else_clause] = STATE(236), + [sym_else_clause] = STATE(235), [sym_identifier] = ACTIONS(400), [anon_sym_LPAREN] = ACTIONS(398), [anon_sym_RBRACE] = ACTIONS(398), @@ -39961,14 +39863,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(398), [sym_block_comment] = ACTIONS(3), }, + [219] = { + [sym__attr] = STATE(2356), + [sym_custom_attr] = STATE(2356), + [sym_built_in_attr] = STATE(2356), + [sym__built_in_attr_path] = STATE(1799), + [sym_bracketed_type] = STATE(2332), + [sym_generic_type_with_turbofish] = STATE(2555), + [sym_scoped_identifier] = STATE(1573), + [sym_identifier] = ACTIONS(852), + [anon_sym_path] = ACTIONS(854), + [anon_sym_u8] = ACTIONS(856), + [anon_sym_i8] = ACTIONS(856), + [anon_sym_u16] = ACTIONS(856), + [anon_sym_i16] = ACTIONS(856), + [anon_sym_u32] = ACTIONS(856), + [anon_sym_i32] = ACTIONS(856), + [anon_sym_u64] = ACTIONS(856), + [anon_sym_i64] = ACTIONS(856), + [anon_sym_u128] = ACTIONS(856), + [anon_sym_i128] = ACTIONS(856), + [anon_sym_isize] = ACTIONS(856), + [anon_sym_usize] = ACTIONS(856), + [anon_sym_f32] = ACTIONS(856), + [anon_sym_f64] = ACTIONS(856), + [anon_sym_bool] = ACTIONS(856), + [anon_sym_str] = ACTIONS(856), + [anon_sym_char] = ACTIONS(856), + [anon_sym_default] = ACTIONS(856), + [anon_sym_union] = ACTIONS(856), + [anon_sym_cfg] = ACTIONS(854), + [anon_sym_cfg_attr] = ACTIONS(854), + [anon_sym_test] = ACTIONS(854), + [anon_sym_ignore] = ACTIONS(854), + [anon_sym_should_panic] = ACTIONS(854), + [anon_sym_derive] = ACTIONS(854), + [anon_sym_automatically_derived] = ACTIONS(854), + [anon_sym_macro_export] = ACTIONS(854), + [anon_sym_macro_use] = ACTIONS(854), + [anon_sym_proc_macro] = ACTIONS(854), + [anon_sym_proc_macro_derive] = ACTIONS(854), + [anon_sym_proc_macro_attribute] = ACTIONS(854), + [anon_sym_allow] = ACTIONS(854), + [anon_sym_warn] = ACTIONS(854), + [anon_sym_deny] = ACTIONS(854), + [anon_sym_forbid] = ACTIONS(854), + [anon_sym_deprecated] = ACTIONS(854), + [anon_sym_must_use] = ACTIONS(854), + [anon_sym_link] = ACTIONS(854), + [anon_sym_link_name] = ACTIONS(854), + [anon_sym_no_link] = ACTIONS(854), + [anon_sym_repr] = ACTIONS(854), + [anon_sym_crate_type] = ACTIONS(854), + [anon_sym_no_main] = ACTIONS(854), + [anon_sym_export_name] = ACTIONS(854), + [anon_sym_link_section] = ACTIONS(854), + [anon_sym_no_mangle] = ACTIONS(854), + [anon_sym_used] = ACTIONS(854), + [anon_sym_crate_name] = ACTIONS(854), + [anon_sym_inline] = ACTIONS(854), + [anon_sym_cold] = ACTIONS(854), + [anon_sym_no_builtins] = ACTIONS(854), + [anon_sym_target_feature] = ACTIONS(854), + [anon_sym_track_caller] = ACTIONS(854), + [anon_sym_doc] = ACTIONS(854), + [anon_sym_no_std] = ACTIONS(854), + [anon_sym_no_implicit_prelude] = ACTIONS(854), + [anon_sym_recursion_limit] = ACTIONS(854), + [anon_sym_type_length_limit] = ACTIONS(854), + [anon_sym_panic_handler] = ACTIONS(854), + [anon_sym_global_allocator] = ACTIONS(854), + [anon_sym_windows_subsystem] = ACTIONS(854), + [anon_sym_feature] = ACTIONS(854), + [anon_sym_non_exhaustive] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(858), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_crate] = ACTIONS(860), + [sym_metavariable] = ACTIONS(862), + [sym_block_comment] = ACTIONS(3), + }, [220] = { - [sym__attr] = STATE(2326), - [sym_custom_attr] = STATE(2326), - [sym_built_in_attr] = STATE(2326), - [sym__built_in_attr_path] = STATE(1859), - [sym_bracketed_type] = STATE(2334), - [sym_generic_type_with_turbofish] = STATE(2530), - [sym_scoped_identifier] = STATE(1598), + [sym__attr] = STATE(2351), + [sym_custom_attr] = STATE(2351), + [sym_built_in_attr] = STATE(2351), + [sym__built_in_attr_path] = STATE(1799), + [sym_bracketed_type] = STATE(2332), + [sym_generic_type_with_turbofish] = STATE(2555), + [sym_scoped_identifier] = STATE(1573), [sym_identifier] = ACTIONS(852), [anon_sym_path] = ACTIONS(854), [anon_sym_u8] = ACTIONS(856), @@ -40287,6 +40271,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [224] = { + [sym_identifier] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_RBRACE] = ACTIONS(434), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_PLUS] = ACTIONS(436), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_QMARK] = ACTIONS(434), + [anon_sym_u8] = ACTIONS(436), + [anon_sym_i8] = ACTIONS(436), + [anon_sym_u16] = ACTIONS(436), + [anon_sym_i16] = ACTIONS(436), + [anon_sym_u32] = ACTIONS(436), + [anon_sym_i32] = ACTIONS(436), + [anon_sym_u64] = ACTIONS(436), + [anon_sym_i64] = ACTIONS(436), + [anon_sym_u128] = ACTIONS(436), + [anon_sym_i128] = ACTIONS(436), + [anon_sym_isize] = ACTIONS(436), + [anon_sym_usize] = ACTIONS(436), + [anon_sym_f32] = ACTIONS(436), + [anon_sym_f64] = ACTIONS(436), + [anon_sym_bool] = ACTIONS(436), + [anon_sym_str] = ACTIONS(436), + [anon_sym_char] = ACTIONS(436), + [anon_sym_as] = ACTIONS(436), + [anon_sym_const] = ACTIONS(436), + [anon_sym_default] = ACTIONS(436), + [anon_sym_union] = ACTIONS(436), + [anon_sym_POUND] = ACTIONS(434), + [anon_sym_EQ] = ACTIONS(436), + [anon_sym_COMMA] = ACTIONS(434), + [anon_sym_ref] = ACTIONS(436), + [anon_sym_LT] = ACTIONS(436), + [anon_sym_GT] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(434), + [anon_sym__] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(434), + [sym_mutable_specifier] = ACTIONS(436), + [anon_sym_DOT_DOT] = ACTIONS(436), + [anon_sym_DOT_DOT_EQ] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(436), + [anon_sym_AMP_AMP] = ACTIONS(434), + [anon_sym_PIPE_PIPE] = ACTIONS(434), + [anon_sym_PIPE] = ACTIONS(436), + [anon_sym_CARET] = ACTIONS(436), + [anon_sym_EQ_EQ] = ACTIONS(434), + [anon_sym_BANG_EQ] = ACTIONS(434), + [anon_sym_LT_EQ] = ACTIONS(434), + [anon_sym_GT_EQ] = ACTIONS(434), + [anon_sym_LT_LT] = ACTIONS(436), + [anon_sym_GT_GT] = ACTIONS(436), + [anon_sym_SLASH] = ACTIONS(436), + [anon_sym_PERCENT] = ACTIONS(436), + [anon_sym_PLUS_EQ] = ACTIONS(434), + [anon_sym_DASH_EQ] = ACTIONS(434), + [anon_sym_STAR_EQ] = ACTIONS(434), + [anon_sym_SLASH_EQ] = ACTIONS(434), + [anon_sym_PERCENT_EQ] = ACTIONS(434), + [anon_sym_AMP_EQ] = ACTIONS(434), + [anon_sym_PIPE_EQ] = ACTIONS(434), + [anon_sym_CARET_EQ] = ACTIONS(434), + [anon_sym_LT_LT_EQ] = ACTIONS(434), + [anon_sym_GT_GT_EQ] = ACTIONS(434), + [anon_sym_DOT] = ACTIONS(436), + [sym_integer_literal] = ACTIONS(434), + [aux_sym_string_literal_token1] = ACTIONS(434), + [sym_char_literal] = ACTIONS(434), + [anon_sym_true] = ACTIONS(436), + [anon_sym_false] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(436), + [sym_super] = ACTIONS(436), + [sym_crate] = ACTIONS(436), + [sym_metavariable] = ACTIONS(434), + [sym_raw_string_literal] = ACTIONS(434), + [sym_float_literal] = ACTIONS(434), + [sym_block_comment] = ACTIONS(3), + }, + [225] = { + [sym_identifier] = ACTIONS(478), + [anon_sym_LPAREN] = ACTIONS(476), + [anon_sym_RBRACE] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(478), + [anon_sym_QMARK] = ACTIONS(476), + [anon_sym_u8] = ACTIONS(478), + [anon_sym_i8] = ACTIONS(478), + [anon_sym_u16] = ACTIONS(478), + [anon_sym_i16] = ACTIONS(478), + [anon_sym_u32] = ACTIONS(478), + [anon_sym_i32] = ACTIONS(478), + [anon_sym_u64] = ACTIONS(478), + [anon_sym_i64] = ACTIONS(478), + [anon_sym_u128] = ACTIONS(478), + [anon_sym_i128] = ACTIONS(478), + [anon_sym_isize] = ACTIONS(478), + [anon_sym_usize] = ACTIONS(478), + [anon_sym_f32] = ACTIONS(478), + [anon_sym_f64] = ACTIONS(478), + [anon_sym_bool] = ACTIONS(478), + [anon_sym_str] = ACTIONS(478), + [anon_sym_char] = ACTIONS(478), + [anon_sym_as] = ACTIONS(478), + [anon_sym_const] = ACTIONS(478), + [anon_sym_default] = ACTIONS(478), + [anon_sym_union] = ACTIONS(478), + [anon_sym_POUND] = ACTIONS(476), + [anon_sym_EQ] = ACTIONS(478), + [anon_sym_COMMA] = ACTIONS(476), + [anon_sym_ref] = ACTIONS(478), + [anon_sym_LT] = ACTIONS(478), + [anon_sym_GT] = ACTIONS(478), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym__] = ACTIONS(478), + [anon_sym_AMP] = ACTIONS(478), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_mutable_specifier] = ACTIONS(478), + [anon_sym_DOT_DOT] = ACTIONS(478), + [anon_sym_DOT_DOT_EQ] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(478), + [anon_sym_AMP_AMP] = ACTIONS(476), + [anon_sym_PIPE_PIPE] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(478), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_EQ_EQ] = ACTIONS(476), + [anon_sym_BANG_EQ] = ACTIONS(476), + [anon_sym_LT_EQ] = ACTIONS(476), + [anon_sym_GT_EQ] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(478), + [anon_sym_SLASH] = ACTIONS(478), + [anon_sym_PERCENT] = ACTIONS(478), + [anon_sym_PLUS_EQ] = ACTIONS(476), + [anon_sym_DASH_EQ] = ACTIONS(476), + [anon_sym_STAR_EQ] = ACTIONS(476), + [anon_sym_SLASH_EQ] = ACTIONS(476), + [anon_sym_PERCENT_EQ] = ACTIONS(476), + [anon_sym_AMP_EQ] = ACTIONS(476), + [anon_sym_PIPE_EQ] = ACTIONS(476), + [anon_sym_CARET_EQ] = ACTIONS(476), + [anon_sym_LT_LT_EQ] = ACTIONS(476), + [anon_sym_GT_GT_EQ] = ACTIONS(476), + [anon_sym_DOT] = ACTIONS(478), + [sym_integer_literal] = ACTIONS(476), + [aux_sym_string_literal_token1] = ACTIONS(476), + [sym_char_literal] = ACTIONS(476), + [anon_sym_true] = ACTIONS(478), + [anon_sym_false] = ACTIONS(478), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(478), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(476), + [sym_raw_string_literal] = ACTIONS(476), + [sym_float_literal] = ACTIONS(476), + [sym_block_comment] = ACTIONS(3), + }, + [226] = { + [sym_identifier] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(612), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(610), + [anon_sym_u8] = ACTIONS(612), + [anon_sym_i8] = ACTIONS(612), + [anon_sym_u16] = ACTIONS(612), + [anon_sym_i16] = ACTIONS(612), + [anon_sym_u32] = ACTIONS(612), + [anon_sym_i32] = ACTIONS(612), + [anon_sym_u64] = ACTIONS(612), + [anon_sym_i64] = ACTIONS(612), + [anon_sym_u128] = ACTIONS(612), + [anon_sym_i128] = ACTIONS(612), + [anon_sym_isize] = ACTIONS(612), + [anon_sym_usize] = ACTIONS(612), + [anon_sym_f32] = ACTIONS(612), + [anon_sym_f64] = ACTIONS(612), + [anon_sym_bool] = ACTIONS(612), + [anon_sym_str] = ACTIONS(612), + [anon_sym_char] = ACTIONS(612), + [anon_sym_as] = ACTIONS(612), + [anon_sym_const] = ACTIONS(612), + [anon_sym_default] = ACTIONS(612), + [anon_sym_union] = ACTIONS(612), + [anon_sym_POUND] = ACTIONS(610), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_COMMA] = ACTIONS(610), + [anon_sym_ref] = ACTIONS(612), + [anon_sym_LT] = ACTIONS(612), + [anon_sym_GT] = ACTIONS(612), + [anon_sym_COLON_COLON] = ACTIONS(610), + [anon_sym__] = ACTIONS(612), + [anon_sym_AMP] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(610), + [sym_mutable_specifier] = ACTIONS(612), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DOT_DOT_EQ] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(612), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_PIPE_PIPE] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_CARET] = ACTIONS(612), + [anon_sym_EQ_EQ] = ACTIONS(610), + [anon_sym_BANG_EQ] = ACTIONS(610), + [anon_sym_LT_EQ] = ACTIONS(610), + [anon_sym_GT_EQ] = ACTIONS(610), + [anon_sym_LT_LT] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(612), + [anon_sym_SLASH] = ACTIONS(612), + [anon_sym_PERCENT] = ACTIONS(612), + [anon_sym_PLUS_EQ] = ACTIONS(610), + [anon_sym_DASH_EQ] = ACTIONS(610), + [anon_sym_STAR_EQ] = ACTIONS(610), + [anon_sym_SLASH_EQ] = ACTIONS(610), + [anon_sym_PERCENT_EQ] = ACTIONS(610), + [anon_sym_AMP_EQ] = ACTIONS(610), + [anon_sym_PIPE_EQ] = ACTIONS(610), + [anon_sym_CARET_EQ] = ACTIONS(610), + [anon_sym_LT_LT_EQ] = ACTIONS(610), + [anon_sym_GT_GT_EQ] = ACTIONS(610), + [anon_sym_DOT] = ACTIONS(612), + [sym_integer_literal] = ACTIONS(610), + [aux_sym_string_literal_token1] = ACTIONS(610), + [sym_char_literal] = ACTIONS(610), + [anon_sym_true] = ACTIONS(612), + [anon_sym_false] = ACTIONS(612), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(612), + [sym_super] = ACTIONS(612), + [sym_crate] = ACTIONS(612), + [sym_metavariable] = ACTIONS(610), + [sym_raw_string_literal] = ACTIONS(610), + [sym_float_literal] = ACTIONS(610), + [sym_block_comment] = ACTIONS(3), + }, + [227] = { + [sym_identifier] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(452), + [anon_sym_RBRACE] = ACTIONS(452), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_PLUS] = ACTIONS(454), + [anon_sym_STAR] = ACTIONS(454), + [anon_sym_QMARK] = ACTIONS(452), + [anon_sym_u8] = ACTIONS(454), + [anon_sym_i8] = ACTIONS(454), + [anon_sym_u16] = ACTIONS(454), + [anon_sym_i16] = ACTIONS(454), + [anon_sym_u32] = ACTIONS(454), + [anon_sym_i32] = ACTIONS(454), + [anon_sym_u64] = ACTIONS(454), + [anon_sym_i64] = ACTIONS(454), + [anon_sym_u128] = ACTIONS(454), + [anon_sym_i128] = ACTIONS(454), + [anon_sym_isize] = ACTIONS(454), + [anon_sym_usize] = ACTIONS(454), + [anon_sym_f32] = ACTIONS(454), + [anon_sym_f64] = ACTIONS(454), + [anon_sym_bool] = ACTIONS(454), + [anon_sym_str] = ACTIONS(454), + [anon_sym_char] = ACTIONS(454), + [anon_sym_as] = ACTIONS(454), + [anon_sym_const] = ACTIONS(454), + [anon_sym_default] = ACTIONS(454), + [anon_sym_union] = ACTIONS(454), + [anon_sym_POUND] = ACTIONS(452), + [anon_sym_EQ] = ACTIONS(454), + [anon_sym_COMMA] = ACTIONS(452), + [anon_sym_ref] = ACTIONS(454), + [anon_sym_LT] = ACTIONS(454), + [anon_sym_GT] = ACTIONS(454), + [anon_sym_COLON_COLON] = ACTIONS(452), + [anon_sym__] = ACTIONS(454), + [anon_sym_AMP] = ACTIONS(454), + [anon_sym_DOT_DOT_DOT] = ACTIONS(452), + [sym_mutable_specifier] = ACTIONS(454), + [anon_sym_DOT_DOT] = ACTIONS(454), + [anon_sym_DOT_DOT_EQ] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(454), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE_PIPE] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(454), + [anon_sym_EQ_EQ] = ACTIONS(452), + [anon_sym_BANG_EQ] = ACTIONS(452), + [anon_sym_LT_EQ] = ACTIONS(452), + [anon_sym_GT_EQ] = ACTIONS(452), + [anon_sym_LT_LT] = ACTIONS(454), + [anon_sym_GT_GT] = ACTIONS(454), + [anon_sym_SLASH] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(454), + [anon_sym_PLUS_EQ] = ACTIONS(452), + [anon_sym_DASH_EQ] = ACTIONS(452), + [anon_sym_STAR_EQ] = ACTIONS(452), + [anon_sym_SLASH_EQ] = ACTIONS(452), + [anon_sym_PERCENT_EQ] = ACTIONS(452), + [anon_sym_AMP_EQ] = ACTIONS(452), + [anon_sym_PIPE_EQ] = ACTIONS(452), + [anon_sym_CARET_EQ] = ACTIONS(452), + [anon_sym_LT_LT_EQ] = ACTIONS(452), + [anon_sym_GT_GT_EQ] = ACTIONS(452), + [anon_sym_DOT] = ACTIONS(454), + [sym_integer_literal] = ACTIONS(452), + [aux_sym_string_literal_token1] = ACTIONS(452), + [sym_char_literal] = ACTIONS(452), + [anon_sym_true] = ACTIONS(454), + [anon_sym_false] = ACTIONS(454), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(454), + [sym_super] = ACTIONS(454), + [sym_crate] = ACTIONS(454), + [sym_metavariable] = ACTIONS(452), + [sym_raw_string_literal] = ACTIONS(452), + [sym_float_literal] = ACTIONS(452), + [sym_block_comment] = ACTIONS(3), + }, + [228] = { [sym_identifier] = ACTIONS(604), [anon_sym_LPAREN] = ACTIONS(602), [anon_sym_RBRACE] = ACTIONS(602), @@ -40366,172 +40670,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(602), [sym_block_comment] = ACTIONS(3), }, - [225] = { - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(462), - [anon_sym_RBRACE] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(462), - [anon_sym_PLUS] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(462), - [anon_sym_u8] = ACTIONS(464), - [anon_sym_i8] = ACTIONS(464), - [anon_sym_u16] = ACTIONS(464), - [anon_sym_i16] = ACTIONS(464), - [anon_sym_u32] = ACTIONS(464), - [anon_sym_i32] = ACTIONS(464), - [anon_sym_u64] = ACTIONS(464), - [anon_sym_i64] = ACTIONS(464), - [anon_sym_u128] = ACTIONS(464), - [anon_sym_i128] = ACTIONS(464), - [anon_sym_isize] = ACTIONS(464), - [anon_sym_usize] = ACTIONS(464), - [anon_sym_f32] = ACTIONS(464), - [anon_sym_f64] = ACTIONS(464), - [anon_sym_bool] = ACTIONS(464), - [anon_sym_str] = ACTIONS(464), - [anon_sym_char] = ACTIONS(464), - [anon_sym_as] = ACTIONS(464), - [anon_sym_const] = ACTIONS(464), - [anon_sym_default] = ACTIONS(464), - [anon_sym_union] = ACTIONS(464), - [anon_sym_POUND] = ACTIONS(462), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(462), - [anon_sym_ref] = ACTIONS(464), - [anon_sym_LT] = ACTIONS(464), - [anon_sym_GT] = ACTIONS(464), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym__] = ACTIONS(464), - [anon_sym_AMP] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(462), - [sym_mutable_specifier] = ACTIONS(464), - [anon_sym_DOT_DOT] = ACTIONS(464), - [anon_sym_DOT_DOT_EQ] = ACTIONS(462), - [anon_sym_DASH] = ACTIONS(464), - [anon_sym_AMP_AMP] = ACTIONS(462), - [anon_sym_PIPE_PIPE] = ACTIONS(462), - [anon_sym_PIPE] = ACTIONS(464), - [anon_sym_CARET] = ACTIONS(464), - [anon_sym_EQ_EQ] = ACTIONS(462), - [anon_sym_BANG_EQ] = ACTIONS(462), - [anon_sym_LT_EQ] = ACTIONS(462), - [anon_sym_GT_EQ] = ACTIONS(462), - [anon_sym_LT_LT] = ACTIONS(464), - [anon_sym_GT_GT] = ACTIONS(464), - [anon_sym_SLASH] = ACTIONS(464), - [anon_sym_PERCENT] = ACTIONS(464), - [anon_sym_PLUS_EQ] = ACTIONS(462), - [anon_sym_DASH_EQ] = ACTIONS(462), - [anon_sym_STAR_EQ] = ACTIONS(462), - [anon_sym_SLASH_EQ] = ACTIONS(462), - [anon_sym_PERCENT_EQ] = ACTIONS(462), - [anon_sym_AMP_EQ] = ACTIONS(462), - [anon_sym_PIPE_EQ] = ACTIONS(462), - [anon_sym_CARET_EQ] = ACTIONS(462), - [anon_sym_LT_LT_EQ] = ACTIONS(462), - [anon_sym_GT_GT_EQ] = ACTIONS(462), - [anon_sym_DOT] = ACTIONS(464), - [sym_integer_literal] = ACTIONS(462), - [aux_sym_string_literal_token1] = ACTIONS(462), - [sym_char_literal] = ACTIONS(462), - [anon_sym_true] = ACTIONS(464), - [anon_sym_false] = ACTIONS(464), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(464), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(462), - [sym_raw_string_literal] = ACTIONS(462), - [sym_float_literal] = ACTIONS(462), - [sym_block_comment] = ACTIONS(3), - }, - [226] = { - [sym_identifier] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_RBRACE] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(608), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_QMARK] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(608), - [anon_sym_i8] = ACTIONS(608), - [anon_sym_u16] = ACTIONS(608), - [anon_sym_i16] = ACTIONS(608), - [anon_sym_u32] = ACTIONS(608), - [anon_sym_i32] = ACTIONS(608), - [anon_sym_u64] = ACTIONS(608), - [anon_sym_i64] = ACTIONS(608), - [anon_sym_u128] = ACTIONS(608), - [anon_sym_i128] = ACTIONS(608), - [anon_sym_isize] = ACTIONS(608), - [anon_sym_usize] = ACTIONS(608), - [anon_sym_f32] = ACTIONS(608), - [anon_sym_f64] = ACTIONS(608), - [anon_sym_bool] = ACTIONS(608), - [anon_sym_str] = ACTIONS(608), - [anon_sym_char] = ACTIONS(608), - [anon_sym_as] = ACTIONS(608), - [anon_sym_const] = ACTIONS(608), - [anon_sym_default] = ACTIONS(608), - [anon_sym_union] = ACTIONS(608), - [anon_sym_POUND] = ACTIONS(606), - [anon_sym_EQ] = ACTIONS(608), - [anon_sym_COMMA] = ACTIONS(606), - [anon_sym_ref] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(608), - [anon_sym_GT] = ACTIONS(608), - [anon_sym_COLON_COLON] = ACTIONS(606), - [anon_sym__] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_mutable_specifier] = ACTIONS(608), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DOT_DOT_EQ] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(608), - [anon_sym_AMP_AMP] = ACTIONS(606), - [anon_sym_PIPE_PIPE] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_CARET] = ACTIONS(608), - [anon_sym_EQ_EQ] = ACTIONS(606), - [anon_sym_BANG_EQ] = ACTIONS(606), - [anon_sym_LT_EQ] = ACTIONS(606), - [anon_sym_GT_EQ] = ACTIONS(606), - [anon_sym_LT_LT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(608), - [anon_sym_SLASH] = ACTIONS(608), - [anon_sym_PERCENT] = ACTIONS(608), - [anon_sym_PLUS_EQ] = ACTIONS(606), - [anon_sym_DASH_EQ] = ACTIONS(606), - [anon_sym_STAR_EQ] = ACTIONS(606), - [anon_sym_SLASH_EQ] = ACTIONS(606), - [anon_sym_PERCENT_EQ] = ACTIONS(606), - [anon_sym_AMP_EQ] = ACTIONS(606), - [anon_sym_PIPE_EQ] = ACTIONS(606), - [anon_sym_CARET_EQ] = ACTIONS(606), - [anon_sym_LT_LT_EQ] = ACTIONS(606), - [anon_sym_GT_GT_EQ] = ACTIONS(606), - [anon_sym_DOT] = ACTIONS(608), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(606), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(608), - [anon_sym_false] = ACTIONS(608), + [229] = { + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RBRACE] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(486), + [anon_sym_STAR] = ACTIONS(486), + [anon_sym_QMARK] = ACTIONS(484), + [anon_sym_u8] = ACTIONS(866), + [anon_sym_i8] = ACTIONS(866), + [anon_sym_u16] = ACTIONS(866), + [anon_sym_i16] = ACTIONS(866), + [anon_sym_u32] = ACTIONS(866), + [anon_sym_i32] = ACTIONS(866), + [anon_sym_u64] = ACTIONS(866), + [anon_sym_i64] = ACTIONS(866), + [anon_sym_u128] = ACTIONS(866), + [anon_sym_i128] = ACTIONS(866), + [anon_sym_isize] = ACTIONS(866), + [anon_sym_usize] = ACTIONS(866), + [anon_sym_f32] = ACTIONS(866), + [anon_sym_f64] = ACTIONS(866), + [anon_sym_bool] = ACTIONS(866), + [anon_sym_str] = ACTIONS(866), + [anon_sym_char] = ACTIONS(866), + [anon_sym_as] = ACTIONS(486), + [anon_sym_const] = ACTIONS(866), + [anon_sym_default] = ACTIONS(866), + [anon_sym_union] = ACTIONS(866), + [anon_sym_POUND] = ACTIONS(868), + [anon_sym_EQ] = ACTIONS(486), + [anon_sym_COMMA] = ACTIONS(484), + [anon_sym_ref] = ACTIONS(866), + [anon_sym_LT] = ACTIONS(866), + [anon_sym_GT] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(868), + [anon_sym__] = ACTIONS(866), + [anon_sym_AMP] = ACTIONS(866), + [anon_sym_DOT_DOT_DOT] = ACTIONS(484), + [sym_mutable_specifier] = ACTIONS(866), + [anon_sym_DOT_DOT] = ACTIONS(866), + [anon_sym_DOT_DOT_EQ] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(866), + [anon_sym_AMP_AMP] = ACTIONS(484), + [anon_sym_PIPE_PIPE] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_CARET] = ACTIONS(486), + [anon_sym_EQ_EQ] = ACTIONS(484), + [anon_sym_BANG_EQ] = ACTIONS(484), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_LT_LT] = ACTIONS(486), + [anon_sym_GT_GT] = ACTIONS(486), + [anon_sym_SLASH] = ACTIONS(486), + [anon_sym_PERCENT] = ACTIONS(486), + [anon_sym_PLUS_EQ] = ACTIONS(484), + [anon_sym_DASH_EQ] = ACTIONS(484), + [anon_sym_STAR_EQ] = ACTIONS(484), + [anon_sym_SLASH_EQ] = ACTIONS(484), + [anon_sym_PERCENT_EQ] = ACTIONS(484), + [anon_sym_AMP_EQ] = ACTIONS(484), + [anon_sym_PIPE_EQ] = ACTIONS(484), + [anon_sym_CARET_EQ] = ACTIONS(484), + [anon_sym_LT_LT_EQ] = ACTIONS(484), + [anon_sym_GT_GT_EQ] = ACTIONS(484), + [anon_sym_DOT] = ACTIONS(486), + [sym_integer_literal] = ACTIONS(868), + [aux_sym_string_literal_token1] = ACTIONS(868), + [sym_char_literal] = ACTIONS(868), + [anon_sym_true] = ACTIONS(866), + [anon_sym_false] = ACTIONS(866), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(608), - [sym_super] = ACTIONS(608), - [sym_crate] = ACTIONS(608), - [sym_metavariable] = ACTIONS(606), - [sym_raw_string_literal] = ACTIONS(606), - [sym_float_literal] = ACTIONS(606), + [sym_self] = ACTIONS(866), + [sym_super] = ACTIONS(866), + [sym_crate] = ACTIONS(866), + [sym_metavariable] = ACTIONS(868), + [sym_raw_string_literal] = ACTIONS(868), + [sym_float_literal] = ACTIONS(868), [sym_block_comment] = ACTIONS(3), }, - [227] = { - [sym_identifier] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(458), - [anon_sym_RBRACE] = ACTIONS(458), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(460), + [230] = { + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1929), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(1931), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), + [sym_bounded_type] = STATE(1395), + [sym_type_binding] = STATE(2246), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [sym_block] = STATE(2246), + [sym__literal] = STATE(2246), + [sym_string_literal] = STATE(2312), + [sym_boolean_literal] = STATE(2312), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(890), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(890), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_raw_string_literal] = ACTIONS(890), + [sym_float_literal] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [231] = { + [sym_identifier] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(592), + [anon_sym_RBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_PLUS] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(594), + [anon_sym_QMARK] = ACTIONS(592), + [anon_sym_u8] = ACTIONS(594), + [anon_sym_i8] = ACTIONS(594), + [anon_sym_u16] = ACTIONS(594), + [anon_sym_i16] = ACTIONS(594), + [anon_sym_u32] = ACTIONS(594), + [anon_sym_i32] = ACTIONS(594), + [anon_sym_u64] = ACTIONS(594), + [anon_sym_i64] = ACTIONS(594), + [anon_sym_u128] = ACTIONS(594), + [anon_sym_i128] = ACTIONS(594), + [anon_sym_isize] = ACTIONS(594), + [anon_sym_usize] = ACTIONS(594), + [anon_sym_f32] = ACTIONS(594), + [anon_sym_f64] = ACTIONS(594), + [anon_sym_bool] = ACTIONS(594), + [anon_sym_str] = ACTIONS(594), + [anon_sym_char] = ACTIONS(594), + [anon_sym_as] = ACTIONS(594), + [anon_sym_const] = ACTIONS(594), + [anon_sym_default] = ACTIONS(594), + [anon_sym_union] = ACTIONS(594), + [anon_sym_POUND] = ACTIONS(592), + [anon_sym_EQ] = ACTIONS(594), + [anon_sym_COMMA] = ACTIONS(592), + [anon_sym_ref] = ACTIONS(594), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_GT] = ACTIONS(594), + [anon_sym_COLON_COLON] = ACTIONS(592), + [anon_sym__] = ACTIONS(594), + [anon_sym_AMP] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(592), + [sym_mutable_specifier] = ACTIONS(594), + [anon_sym_DOT_DOT] = ACTIONS(594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(592), + [anon_sym_PIPE_PIPE] = ACTIONS(592), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_CARET] = ACTIONS(594), + [anon_sym_EQ_EQ] = ACTIONS(592), + [anon_sym_BANG_EQ] = ACTIONS(592), + [anon_sym_LT_EQ] = ACTIONS(592), + [anon_sym_GT_EQ] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(594), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_SLASH] = ACTIONS(594), + [anon_sym_PERCENT] = ACTIONS(594), + [anon_sym_PLUS_EQ] = ACTIONS(592), + [anon_sym_DASH_EQ] = ACTIONS(592), + [anon_sym_STAR_EQ] = ACTIONS(592), + [anon_sym_SLASH_EQ] = ACTIONS(592), + [anon_sym_PERCENT_EQ] = ACTIONS(592), + [anon_sym_AMP_EQ] = ACTIONS(592), + [anon_sym_PIPE_EQ] = ACTIONS(592), + [anon_sym_CARET_EQ] = ACTIONS(592), + [anon_sym_LT_LT_EQ] = ACTIONS(592), + [anon_sym_GT_GT_EQ] = ACTIONS(592), + [anon_sym_DOT] = ACTIONS(594), + [sym_integer_literal] = ACTIONS(592), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(592), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(594), + [sym_super] = ACTIONS(594), + [sym_crate] = ACTIONS(594), + [sym_metavariable] = ACTIONS(592), + [sym_raw_string_literal] = ACTIONS(592), + [sym_float_literal] = ACTIONS(592), + [sym_block_comment] = ACTIONS(3), + }, + [232] = { + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(458), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(460), [anon_sym_STAR] = ACTIONS(460), [anon_sym_QMARK] = ACTIONS(458), [anon_sym_u8] = ACTIONS(460), @@ -40606,567 +40990,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(458), [sym_block_comment] = ACTIONS(3), }, - [228] = { - [sym_identifier] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(432), - [anon_sym_RBRACE] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_STAR] = ACTIONS(434), - [anon_sym_QMARK] = ACTIONS(432), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_isize] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_f32] = ACTIONS(434), - [anon_sym_f64] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_str] = ACTIONS(434), - [anon_sym_char] = ACTIONS(434), - [anon_sym_as] = ACTIONS(434), - [anon_sym_const] = ACTIONS(434), - [anon_sym_default] = ACTIONS(434), - [anon_sym_union] = ACTIONS(434), - [anon_sym_POUND] = ACTIONS(432), - [anon_sym_EQ] = ACTIONS(434), - [anon_sym_COMMA] = ACTIONS(432), - [anon_sym_ref] = ACTIONS(434), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym__] = ACTIONS(434), - [anon_sym_AMP] = ACTIONS(434), - [anon_sym_DOT_DOT_DOT] = ACTIONS(432), - [sym_mutable_specifier] = ACTIONS(434), - [anon_sym_DOT_DOT] = ACTIONS(434), - [anon_sym_DOT_DOT_EQ] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_AMP_AMP] = ACTIONS(432), - [anon_sym_PIPE_PIPE] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(434), - [anon_sym_CARET] = ACTIONS(434), - [anon_sym_EQ_EQ] = ACTIONS(432), - [anon_sym_BANG_EQ] = ACTIONS(432), - [anon_sym_LT_EQ] = ACTIONS(432), - [anon_sym_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(434), - [anon_sym_GT_GT] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(434), - [anon_sym_PERCENT] = ACTIONS(434), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_DOT] = ACTIONS(434), - [sym_integer_literal] = ACTIONS(432), - [aux_sym_string_literal_token1] = ACTIONS(432), - [sym_char_literal] = ACTIONS(432), - [anon_sym_true] = ACTIONS(434), - [anon_sym_false] = ACTIONS(434), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(434), - [sym_super] = ACTIONS(434), - [sym_crate] = ACTIONS(434), - [sym_metavariable] = ACTIONS(432), - [sym_raw_string_literal] = ACTIONS(432), - [sym_float_literal] = ACTIONS(432), - [sym_block_comment] = ACTIONS(3), - }, - [229] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1988), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(1994), - [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), - [sym_function_type] = STATE(1395), - [sym_tuple_type] = STATE(1395), - [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), - [sym_bounded_type] = STATE(1395), - [sym_type_binding] = STATE(2305), - [sym_reference_type] = STATE(1395), - [sym_pointer_type] = STATE(1395), - [sym_empty_type] = STATE(1395), - [sym_abstract_type] = STATE(1395), - [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [sym_block] = STATE(2305), - [sym__literal] = STATE(2305), - [sym_string_literal] = STATE(2159), - [sym_boolean_literal] = STATE(2159), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(870), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(886), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(886), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), - [sym_raw_string_literal] = ACTIONS(886), - [sym_float_literal] = ACTIONS(886), - [sym_block_comment] = ACTIONS(3), - }, - [230] = { - [sym_identifier] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(484), - [anon_sym_LBRACK] = ACTIONS(894), - [anon_sym_PLUS] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(486), - [anon_sym_QMARK] = ACTIONS(484), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_as] = ACTIONS(486), - [anon_sym_const] = ACTIONS(892), - [anon_sym_default] = ACTIONS(892), - [anon_sym_union] = ACTIONS(892), - [anon_sym_POUND] = ACTIONS(894), - [anon_sym_EQ] = ACTIONS(486), - [anon_sym_COMMA] = ACTIONS(484), - [anon_sym_ref] = ACTIONS(892), - [anon_sym_LT] = ACTIONS(892), - [anon_sym_GT] = ACTIONS(486), - [anon_sym_COLON_COLON] = ACTIONS(894), - [anon_sym__] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(484), - [sym_mutable_specifier] = ACTIONS(892), - [anon_sym_DOT_DOT] = ACTIONS(892), - [anon_sym_DOT_DOT_EQ] = ACTIONS(484), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_AMP_AMP] = ACTIONS(484), - [anon_sym_PIPE_PIPE] = ACTIONS(484), - [anon_sym_PIPE] = ACTIONS(486), - [anon_sym_CARET] = ACTIONS(486), - [anon_sym_EQ_EQ] = ACTIONS(484), - [anon_sym_BANG_EQ] = ACTIONS(484), - [anon_sym_LT_EQ] = ACTIONS(484), - [anon_sym_GT_EQ] = ACTIONS(484), - [anon_sym_LT_LT] = ACTIONS(486), - [anon_sym_GT_GT] = ACTIONS(486), - [anon_sym_SLASH] = ACTIONS(486), - [anon_sym_PERCENT] = ACTIONS(486), - [anon_sym_PLUS_EQ] = ACTIONS(484), - [anon_sym_DASH_EQ] = ACTIONS(484), - [anon_sym_STAR_EQ] = ACTIONS(484), - [anon_sym_SLASH_EQ] = ACTIONS(484), - [anon_sym_PERCENT_EQ] = ACTIONS(484), - [anon_sym_AMP_EQ] = ACTIONS(484), - [anon_sym_PIPE_EQ] = ACTIONS(484), - [anon_sym_CARET_EQ] = ACTIONS(484), - [anon_sym_LT_LT_EQ] = ACTIONS(484), - [anon_sym_GT_GT_EQ] = ACTIONS(484), - [anon_sym_DOT] = ACTIONS(486), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(894), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(892), - [anon_sym_false] = ACTIONS(892), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [231] = { - [sym_identifier] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(452), - [anon_sym_RBRACE] = ACTIONS(452), - [anon_sym_LBRACK] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_QMARK] = ACTIONS(452), - [anon_sym_u8] = ACTIONS(454), - [anon_sym_i8] = ACTIONS(454), - [anon_sym_u16] = ACTIONS(454), - [anon_sym_i16] = ACTIONS(454), - [anon_sym_u32] = ACTIONS(454), - [anon_sym_i32] = ACTIONS(454), - [anon_sym_u64] = ACTIONS(454), - [anon_sym_i64] = ACTIONS(454), - [anon_sym_u128] = ACTIONS(454), - [anon_sym_i128] = ACTIONS(454), - [anon_sym_isize] = ACTIONS(454), - [anon_sym_usize] = ACTIONS(454), - [anon_sym_f32] = ACTIONS(454), - [anon_sym_f64] = ACTIONS(454), - [anon_sym_bool] = ACTIONS(454), - [anon_sym_str] = ACTIONS(454), - [anon_sym_char] = ACTIONS(454), - [anon_sym_as] = ACTIONS(454), - [anon_sym_const] = ACTIONS(454), - [anon_sym_default] = ACTIONS(454), - [anon_sym_union] = ACTIONS(454), - [anon_sym_POUND] = ACTIONS(452), - [anon_sym_EQ] = ACTIONS(454), - [anon_sym_COMMA] = ACTIONS(452), - [anon_sym_ref] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(454), - [anon_sym_GT] = ACTIONS(454), - [anon_sym_COLON_COLON] = ACTIONS(452), - [anon_sym__] = ACTIONS(454), - [anon_sym_AMP] = ACTIONS(454), - [anon_sym_DOT_DOT_DOT] = ACTIONS(452), - [sym_mutable_specifier] = ACTIONS(454), - [anon_sym_DOT_DOT] = ACTIONS(454), - [anon_sym_DOT_DOT_EQ] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(454), - [anon_sym_AMP_AMP] = ACTIONS(452), - [anon_sym_PIPE_PIPE] = ACTIONS(452), - [anon_sym_PIPE] = ACTIONS(454), - [anon_sym_CARET] = ACTIONS(454), - [anon_sym_EQ_EQ] = ACTIONS(452), - [anon_sym_BANG_EQ] = ACTIONS(452), - [anon_sym_LT_EQ] = ACTIONS(452), - [anon_sym_GT_EQ] = ACTIONS(452), - [anon_sym_LT_LT] = ACTIONS(454), - [anon_sym_GT_GT] = ACTIONS(454), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PERCENT] = ACTIONS(454), - [anon_sym_PLUS_EQ] = ACTIONS(452), - [anon_sym_DASH_EQ] = ACTIONS(452), - [anon_sym_STAR_EQ] = ACTIONS(452), - [anon_sym_SLASH_EQ] = ACTIONS(452), - [anon_sym_PERCENT_EQ] = ACTIONS(452), - [anon_sym_AMP_EQ] = ACTIONS(452), - [anon_sym_PIPE_EQ] = ACTIONS(452), - [anon_sym_CARET_EQ] = ACTIONS(452), - [anon_sym_LT_LT_EQ] = ACTIONS(452), - [anon_sym_GT_GT_EQ] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(452), - [aux_sym_string_literal_token1] = ACTIONS(452), - [sym_char_literal] = ACTIONS(452), - [anon_sym_true] = ACTIONS(454), - [anon_sym_false] = ACTIONS(454), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(454), - [sym_super] = ACTIONS(454), - [sym_crate] = ACTIONS(454), - [sym_metavariable] = ACTIONS(452), - [sym_raw_string_literal] = ACTIONS(452), - [sym_float_literal] = ACTIONS(452), - [sym_block_comment] = ACTIONS(3), - }, - [232] = { - [sym_identifier] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(428), - [anon_sym_RBRACE] = ACTIONS(428), - [anon_sym_LBRACK] = ACTIONS(428), - [anon_sym_PLUS] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(430), - [anon_sym_QMARK] = ACTIONS(428), - [anon_sym_u8] = ACTIONS(430), - [anon_sym_i8] = ACTIONS(430), - [anon_sym_u16] = ACTIONS(430), - [anon_sym_i16] = ACTIONS(430), - [anon_sym_u32] = ACTIONS(430), - [anon_sym_i32] = ACTIONS(430), - [anon_sym_u64] = ACTIONS(430), - [anon_sym_i64] = ACTIONS(430), - [anon_sym_u128] = ACTIONS(430), - [anon_sym_i128] = ACTIONS(430), - [anon_sym_isize] = ACTIONS(430), - [anon_sym_usize] = ACTIONS(430), - [anon_sym_f32] = ACTIONS(430), - [anon_sym_f64] = ACTIONS(430), - [anon_sym_bool] = ACTIONS(430), - [anon_sym_str] = ACTIONS(430), - [anon_sym_char] = ACTIONS(430), - [anon_sym_as] = ACTIONS(430), - [anon_sym_const] = ACTIONS(430), - [anon_sym_default] = ACTIONS(430), - [anon_sym_union] = ACTIONS(430), - [anon_sym_POUND] = ACTIONS(428), - [anon_sym_EQ] = ACTIONS(430), - [anon_sym_COMMA] = ACTIONS(428), - [anon_sym_ref] = ACTIONS(430), - [anon_sym_LT] = ACTIONS(430), - [anon_sym_GT] = ACTIONS(430), - [anon_sym_COLON_COLON] = ACTIONS(428), - [anon_sym__] = ACTIONS(430), - [anon_sym_AMP] = ACTIONS(430), - [anon_sym_DOT_DOT_DOT] = ACTIONS(428), - [sym_mutable_specifier] = ACTIONS(430), - [anon_sym_DOT_DOT] = ACTIONS(430), - [anon_sym_DOT_DOT_EQ] = ACTIONS(428), - [anon_sym_DASH] = ACTIONS(430), - [anon_sym_AMP_AMP] = ACTIONS(428), - [anon_sym_PIPE_PIPE] = ACTIONS(428), - [anon_sym_PIPE] = ACTIONS(430), - [anon_sym_CARET] = ACTIONS(430), - [anon_sym_EQ_EQ] = ACTIONS(428), - [anon_sym_BANG_EQ] = ACTIONS(428), - [anon_sym_LT_EQ] = ACTIONS(428), - [anon_sym_GT_EQ] = ACTIONS(428), - [anon_sym_LT_LT] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(430), - [anon_sym_SLASH] = ACTIONS(430), - [anon_sym_PERCENT] = ACTIONS(430), - [anon_sym_PLUS_EQ] = ACTIONS(428), - [anon_sym_DASH_EQ] = ACTIONS(428), - [anon_sym_STAR_EQ] = ACTIONS(428), - [anon_sym_SLASH_EQ] = ACTIONS(428), - [anon_sym_PERCENT_EQ] = ACTIONS(428), - [anon_sym_AMP_EQ] = ACTIONS(428), - [anon_sym_PIPE_EQ] = ACTIONS(428), - [anon_sym_CARET_EQ] = ACTIONS(428), - [anon_sym_LT_LT_EQ] = ACTIONS(428), - [anon_sym_GT_GT_EQ] = ACTIONS(428), - [anon_sym_DOT] = ACTIONS(430), - [sym_integer_literal] = ACTIONS(428), - [aux_sym_string_literal_token1] = ACTIONS(428), - [sym_char_literal] = ACTIONS(428), - [anon_sym_true] = ACTIONS(430), - [anon_sym_false] = ACTIONS(430), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(430), - [sym_super] = ACTIONS(430), - [sym_crate] = ACTIONS(430), - [sym_metavariable] = ACTIONS(428), - [sym_raw_string_literal] = ACTIONS(428), - [sym_float_literal] = ACTIONS(428), - [sym_block_comment] = ACTIONS(3), - }, [233] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1988), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(1994), - [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), - [sym_function_type] = STATE(1395), - [sym_tuple_type] = STATE(1395), - [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), - [sym_bounded_type] = STATE(1395), - [sym_type_binding] = STATE(2305), - [sym_reference_type] = STATE(1395), - [sym_pointer_type] = STATE(1395), - [sym_empty_type] = STATE(1395), - [sym_abstract_type] = STATE(1395), - [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [sym_block] = STATE(2305), - [sym__literal] = STATE(2305), - [sym_string_literal] = STATE(2159), - [sym_boolean_literal] = STATE(2159), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(870), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(896), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(886), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(886), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), - [sym_raw_string_literal] = ACTIONS(886), - [sym_float_literal] = ACTIONS(886), + [sym_identifier] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(430), + [anon_sym_RBRACE] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(430), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_QMARK] = ACTIONS(430), + [anon_sym_u8] = ACTIONS(432), + [anon_sym_i8] = ACTIONS(432), + [anon_sym_u16] = ACTIONS(432), + [anon_sym_i16] = ACTIONS(432), + [anon_sym_u32] = ACTIONS(432), + [anon_sym_i32] = ACTIONS(432), + [anon_sym_u64] = ACTIONS(432), + [anon_sym_i64] = ACTIONS(432), + [anon_sym_u128] = ACTIONS(432), + [anon_sym_i128] = ACTIONS(432), + [anon_sym_isize] = ACTIONS(432), + [anon_sym_usize] = ACTIONS(432), + [anon_sym_f32] = ACTIONS(432), + [anon_sym_f64] = ACTIONS(432), + [anon_sym_bool] = ACTIONS(432), + [anon_sym_str] = ACTIONS(432), + [anon_sym_char] = ACTIONS(432), + [anon_sym_as] = ACTIONS(432), + [anon_sym_const] = ACTIONS(432), + [anon_sym_default] = ACTIONS(432), + [anon_sym_union] = ACTIONS(432), + [anon_sym_POUND] = ACTIONS(430), + [anon_sym_EQ] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(430), + [anon_sym_ref] = ACTIONS(432), + [anon_sym_LT] = ACTIONS(432), + [anon_sym_GT] = ACTIONS(432), + [anon_sym_COLON_COLON] = ACTIONS(430), + [anon_sym__] = ACTIONS(432), + [anon_sym_AMP] = ACTIONS(432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(430), + [sym_mutable_specifier] = ACTIONS(432), + [anon_sym_DOT_DOT] = ACTIONS(432), + [anon_sym_DOT_DOT_EQ] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(430), + [anon_sym_PIPE_PIPE] = ACTIONS(430), + [anon_sym_PIPE] = ACTIONS(432), + [anon_sym_CARET] = ACTIONS(432), + [anon_sym_EQ_EQ] = ACTIONS(430), + [anon_sym_BANG_EQ] = ACTIONS(430), + [anon_sym_LT_EQ] = ACTIONS(430), + [anon_sym_GT_EQ] = ACTIONS(430), + [anon_sym_LT_LT] = ACTIONS(432), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_PERCENT] = ACTIONS(432), + [anon_sym_PLUS_EQ] = ACTIONS(430), + [anon_sym_DASH_EQ] = ACTIONS(430), + [anon_sym_STAR_EQ] = ACTIONS(430), + [anon_sym_SLASH_EQ] = ACTIONS(430), + [anon_sym_PERCENT_EQ] = ACTIONS(430), + [anon_sym_AMP_EQ] = ACTIONS(430), + [anon_sym_PIPE_EQ] = ACTIONS(430), + [anon_sym_CARET_EQ] = ACTIONS(430), + [anon_sym_LT_LT_EQ] = ACTIONS(430), + [anon_sym_GT_GT_EQ] = ACTIONS(430), + [anon_sym_DOT] = ACTIONS(432), + [sym_integer_literal] = ACTIONS(430), + [aux_sym_string_literal_token1] = ACTIONS(430), + [sym_char_literal] = ACTIONS(430), + [anon_sym_true] = ACTIONS(432), + [anon_sym_false] = ACTIONS(432), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(432), + [sym_super] = ACTIONS(432), + [sym_crate] = ACTIONS(432), + [sym_metavariable] = ACTIONS(430), + [sym_raw_string_literal] = ACTIONS(430), + [sym_float_literal] = ACTIONS(430), [sym_block_comment] = ACTIONS(3), }, [234] = { - [sym_identifier] = ACTIONS(422), - [anon_sym_LPAREN] = ACTIONS(420), - [anon_sym_RBRACE] = ACTIONS(420), - [anon_sym_LBRACK] = ACTIONS(420), - [anon_sym_PLUS] = ACTIONS(422), - [anon_sym_STAR] = ACTIONS(422), - [anon_sym_QMARK] = ACTIONS(420), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_isize] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_f32] = ACTIONS(422), - [anon_sym_f64] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_str] = ACTIONS(422), - [anon_sym_char] = ACTIONS(422), - [anon_sym_as] = ACTIONS(422), - [anon_sym_const] = ACTIONS(422), - [anon_sym_default] = ACTIONS(422), - [anon_sym_union] = ACTIONS(422), - [anon_sym_POUND] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(422), - [anon_sym_COMMA] = ACTIONS(420), - [anon_sym_ref] = ACTIONS(422), - [anon_sym_LT] = ACTIONS(422), - [anon_sym_GT] = ACTIONS(422), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym__] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(422), - [anon_sym_DOT_DOT_DOT] = ACTIONS(420), - [sym_mutable_specifier] = ACTIONS(422), - [anon_sym_DOT_DOT] = ACTIONS(422), - [anon_sym_DOT_DOT_EQ] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(422), - [anon_sym_CARET] = ACTIONS(422), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_BANG_EQ] = ACTIONS(420), - [anon_sym_LT_EQ] = ACTIONS(420), - [anon_sym_GT_EQ] = ACTIONS(420), - [anon_sym_LT_LT] = ACTIONS(422), - [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_SLASH] = ACTIONS(422), - [anon_sym_PERCENT] = ACTIONS(422), - [anon_sym_PLUS_EQ] = ACTIONS(420), - [anon_sym_DASH_EQ] = ACTIONS(420), - [anon_sym_STAR_EQ] = ACTIONS(420), - [anon_sym_SLASH_EQ] = ACTIONS(420), - [anon_sym_PERCENT_EQ] = ACTIONS(420), - [anon_sym_AMP_EQ] = ACTIONS(420), - [anon_sym_PIPE_EQ] = ACTIONS(420), - [anon_sym_CARET_EQ] = ACTIONS(420), - [anon_sym_LT_LT_EQ] = ACTIONS(420), - [anon_sym_GT_GT_EQ] = ACTIONS(420), - [anon_sym_DOT] = ACTIONS(422), - [sym_integer_literal] = ACTIONS(420), - [aux_sym_string_literal_token1] = ACTIONS(420), - [sym_char_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(422), - [sym_super] = ACTIONS(422), - [sym_crate] = ACTIONS(422), - [sym_metavariable] = ACTIONS(420), - [sym_raw_string_literal] = ACTIONS(420), - [sym_float_literal] = ACTIONS(420), - [sym_block_comment] = ACTIONS(3), - }, - [235] = { [sym_identifier] = ACTIONS(470), [anon_sym_LPAREN] = ACTIONS(468), [anon_sym_RBRACE] = ACTIONS(468), @@ -41246,7 +41150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(468), [sym_block_comment] = ACTIONS(3), }, - [236] = { + [235] = { [sym_identifier] = ACTIONS(598), [anon_sym_LPAREN] = ACTIONS(596), [anon_sym_RBRACE] = ACTIONS(596), @@ -41326,167 +41230,407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(596), [sym_block_comment] = ACTIONS(3), }, + [236] = { + [sym_identifier] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(418), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_PLUS] = ACTIONS(420), + [anon_sym_STAR] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(418), + [anon_sym_u8] = ACTIONS(420), + [anon_sym_i8] = ACTIONS(420), + [anon_sym_u16] = ACTIONS(420), + [anon_sym_i16] = ACTIONS(420), + [anon_sym_u32] = ACTIONS(420), + [anon_sym_i32] = ACTIONS(420), + [anon_sym_u64] = ACTIONS(420), + [anon_sym_i64] = ACTIONS(420), + [anon_sym_u128] = ACTIONS(420), + [anon_sym_i128] = ACTIONS(420), + [anon_sym_isize] = ACTIONS(420), + [anon_sym_usize] = ACTIONS(420), + [anon_sym_f32] = ACTIONS(420), + [anon_sym_f64] = ACTIONS(420), + [anon_sym_bool] = ACTIONS(420), + [anon_sym_str] = ACTIONS(420), + [anon_sym_char] = ACTIONS(420), + [anon_sym_as] = ACTIONS(420), + [anon_sym_const] = ACTIONS(420), + [anon_sym_default] = ACTIONS(420), + [anon_sym_union] = ACTIONS(420), + [anon_sym_POUND] = ACTIONS(418), + [anon_sym_EQ] = ACTIONS(420), + [anon_sym_COMMA] = ACTIONS(418), + [anon_sym_ref] = ACTIONS(420), + [anon_sym_LT] = ACTIONS(420), + [anon_sym_GT] = ACTIONS(420), + [anon_sym_COLON_COLON] = ACTIONS(418), + [anon_sym__] = ACTIONS(420), + [anon_sym_AMP] = ACTIONS(420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_mutable_specifier] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(420), + [anon_sym_DOT_DOT_EQ] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(420), + [anon_sym_AMP_AMP] = ACTIONS(418), + [anon_sym_PIPE_PIPE] = ACTIONS(418), + [anon_sym_PIPE] = ACTIONS(420), + [anon_sym_CARET] = ACTIONS(420), + [anon_sym_EQ_EQ] = ACTIONS(418), + [anon_sym_BANG_EQ] = ACTIONS(418), + [anon_sym_LT_EQ] = ACTIONS(418), + [anon_sym_GT_EQ] = ACTIONS(418), + [anon_sym_LT_LT] = ACTIONS(420), + [anon_sym_GT_GT] = ACTIONS(420), + [anon_sym_SLASH] = ACTIONS(420), + [anon_sym_PERCENT] = ACTIONS(420), + [anon_sym_PLUS_EQ] = ACTIONS(418), + [anon_sym_DASH_EQ] = ACTIONS(418), + [anon_sym_STAR_EQ] = ACTIONS(418), + [anon_sym_SLASH_EQ] = ACTIONS(418), + [anon_sym_PERCENT_EQ] = ACTIONS(418), + [anon_sym_AMP_EQ] = ACTIONS(418), + [anon_sym_PIPE_EQ] = ACTIONS(418), + [anon_sym_CARET_EQ] = ACTIONS(418), + [anon_sym_LT_LT_EQ] = ACTIONS(418), + [anon_sym_GT_GT_EQ] = ACTIONS(418), + [anon_sym_DOT] = ACTIONS(420), + [sym_integer_literal] = ACTIONS(418), + [aux_sym_string_literal_token1] = ACTIONS(418), + [sym_char_literal] = ACTIONS(418), + [anon_sym_true] = ACTIONS(420), + [anon_sym_false] = ACTIONS(420), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(420), + [sym_super] = ACTIONS(420), + [sym_crate] = ACTIONS(420), + [sym_metavariable] = ACTIONS(418), + [sym_raw_string_literal] = ACTIONS(418), + [sym_float_literal] = ACTIONS(418), + [sym_block_comment] = ACTIONS(3), + }, [237] = { - [sym_identifier] = ACTIONS(438), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_STAR] = ACTIONS(438), - [anon_sym_QMARK] = ACTIONS(436), - [anon_sym_u8] = ACTIONS(438), - [anon_sym_i8] = ACTIONS(438), - [anon_sym_u16] = ACTIONS(438), - [anon_sym_i16] = ACTIONS(438), - [anon_sym_u32] = ACTIONS(438), - [anon_sym_i32] = ACTIONS(438), - [anon_sym_u64] = ACTIONS(438), - [anon_sym_i64] = ACTIONS(438), - [anon_sym_u128] = ACTIONS(438), - [anon_sym_i128] = ACTIONS(438), - [anon_sym_isize] = ACTIONS(438), - [anon_sym_usize] = ACTIONS(438), - [anon_sym_f32] = ACTIONS(438), - [anon_sym_f64] = ACTIONS(438), - [anon_sym_bool] = ACTIONS(438), - [anon_sym_str] = ACTIONS(438), - [anon_sym_char] = ACTIONS(438), - [anon_sym_as] = ACTIONS(438), - [anon_sym_const] = ACTIONS(438), - [anon_sym_default] = ACTIONS(438), - [anon_sym_union] = ACTIONS(438), - [anon_sym_POUND] = ACTIONS(436), - [anon_sym_EQ] = ACTIONS(438), - [anon_sym_COMMA] = ACTIONS(436), - [anon_sym_ref] = ACTIONS(438), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_GT] = ACTIONS(438), - [anon_sym_COLON_COLON] = ACTIONS(436), - [anon_sym__] = ACTIONS(438), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_mutable_specifier] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(438), - [anon_sym_DOT_DOT_EQ] = ACTIONS(436), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_AMP_AMP] = ACTIONS(436), - [anon_sym_PIPE_PIPE] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(438), - [anon_sym_CARET] = ACTIONS(438), - [anon_sym_EQ_EQ] = ACTIONS(436), - [anon_sym_BANG_EQ] = ACTIONS(436), - [anon_sym_LT_EQ] = ACTIONS(436), - [anon_sym_GT_EQ] = ACTIONS(436), - [anon_sym_LT_LT] = ACTIONS(438), - [anon_sym_GT_GT] = ACTIONS(438), - [anon_sym_SLASH] = ACTIONS(438), - [anon_sym_PERCENT] = ACTIONS(438), - [anon_sym_PLUS_EQ] = ACTIONS(436), - [anon_sym_DASH_EQ] = ACTIONS(436), - [anon_sym_STAR_EQ] = ACTIONS(436), - [anon_sym_SLASH_EQ] = ACTIONS(436), - [anon_sym_PERCENT_EQ] = ACTIONS(436), - [anon_sym_AMP_EQ] = ACTIONS(436), - [anon_sym_PIPE_EQ] = ACTIONS(436), - [anon_sym_CARET_EQ] = ACTIONS(436), - [anon_sym_LT_LT_EQ] = ACTIONS(436), - [anon_sym_GT_GT_EQ] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(438), - [sym_integer_literal] = ACTIONS(436), - [aux_sym_string_literal_token1] = ACTIONS(436), - [sym_char_literal] = ACTIONS(436), - [anon_sym_true] = ACTIONS(438), - [anon_sym_false] = ACTIONS(438), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(438), - [sym_super] = ACTIONS(438), - [sym_crate] = ACTIONS(438), - [sym_metavariable] = ACTIONS(436), - [sym_raw_string_literal] = ACTIONS(436), - [sym_float_literal] = ACTIONS(436), + [sym_identifier] = ACTIONS(428), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_RBRACE] = ACTIONS(426), + [anon_sym_LBRACK] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(428), + [anon_sym_STAR] = ACTIONS(428), + [anon_sym_QMARK] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(428), + [anon_sym_i8] = ACTIONS(428), + [anon_sym_u16] = ACTIONS(428), + [anon_sym_i16] = ACTIONS(428), + [anon_sym_u32] = ACTIONS(428), + [anon_sym_i32] = ACTIONS(428), + [anon_sym_u64] = ACTIONS(428), + [anon_sym_i64] = ACTIONS(428), + [anon_sym_u128] = ACTIONS(428), + [anon_sym_i128] = ACTIONS(428), + [anon_sym_isize] = ACTIONS(428), + [anon_sym_usize] = ACTIONS(428), + [anon_sym_f32] = ACTIONS(428), + [anon_sym_f64] = ACTIONS(428), + [anon_sym_bool] = ACTIONS(428), + [anon_sym_str] = ACTIONS(428), + [anon_sym_char] = ACTIONS(428), + [anon_sym_as] = ACTIONS(428), + [anon_sym_const] = ACTIONS(428), + [anon_sym_default] = ACTIONS(428), + [anon_sym_union] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(428), + [anon_sym_COMMA] = ACTIONS(426), + [anon_sym_ref] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(428), + [anon_sym_COLON_COLON] = ACTIONS(426), + [anon_sym__] = ACTIONS(428), + [anon_sym_AMP] = ACTIONS(428), + [anon_sym_DOT_DOT_DOT] = ACTIONS(426), + [sym_mutable_specifier] = ACTIONS(428), + [anon_sym_DOT_DOT] = ACTIONS(428), + [anon_sym_DOT_DOT_EQ] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(428), + [anon_sym_AMP_AMP] = ACTIONS(426), + [anon_sym_PIPE_PIPE] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(428), + [anon_sym_CARET] = ACTIONS(428), + [anon_sym_EQ_EQ] = ACTIONS(426), + [anon_sym_BANG_EQ] = ACTIONS(426), + [anon_sym_LT_EQ] = ACTIONS(426), + [anon_sym_GT_EQ] = ACTIONS(426), + [anon_sym_LT_LT] = ACTIONS(428), + [anon_sym_GT_GT] = ACTIONS(428), + [anon_sym_SLASH] = ACTIONS(428), + [anon_sym_PERCENT] = ACTIONS(428), + [anon_sym_PLUS_EQ] = ACTIONS(426), + [anon_sym_DASH_EQ] = ACTIONS(426), + [anon_sym_STAR_EQ] = ACTIONS(426), + [anon_sym_SLASH_EQ] = ACTIONS(426), + [anon_sym_PERCENT_EQ] = ACTIONS(426), + [anon_sym_AMP_EQ] = ACTIONS(426), + [anon_sym_PIPE_EQ] = ACTIONS(426), + [anon_sym_CARET_EQ] = ACTIONS(426), + [anon_sym_LT_LT_EQ] = ACTIONS(426), + [anon_sym_GT_GT_EQ] = ACTIONS(426), + [anon_sym_DOT] = ACTIONS(428), + [sym_integer_literal] = ACTIONS(426), + [aux_sym_string_literal_token1] = ACTIONS(426), + [sym_char_literal] = ACTIONS(426), + [anon_sym_true] = ACTIONS(428), + [anon_sym_false] = ACTIONS(428), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(428), + [sym_super] = ACTIONS(428), + [sym_crate] = ACTIONS(428), + [sym_metavariable] = ACTIONS(426), + [sym_raw_string_literal] = ACTIONS(426), + [sym_float_literal] = ACTIONS(426), [sym_block_comment] = ACTIONS(3), }, [238] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1988), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(1994), + [sym_identifier] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(614), + [anon_sym_RBRACE] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_STAR] = ACTIONS(616), + [anon_sym_QMARK] = ACTIONS(614), + [anon_sym_u8] = ACTIONS(616), + [anon_sym_i8] = ACTIONS(616), + [anon_sym_u16] = ACTIONS(616), + [anon_sym_i16] = ACTIONS(616), + [anon_sym_u32] = ACTIONS(616), + [anon_sym_i32] = ACTIONS(616), + [anon_sym_u64] = ACTIONS(616), + [anon_sym_i64] = ACTIONS(616), + [anon_sym_u128] = ACTIONS(616), + [anon_sym_i128] = ACTIONS(616), + [anon_sym_isize] = ACTIONS(616), + [anon_sym_usize] = ACTIONS(616), + [anon_sym_f32] = ACTIONS(616), + [anon_sym_f64] = ACTIONS(616), + [anon_sym_bool] = ACTIONS(616), + [anon_sym_str] = ACTIONS(616), + [anon_sym_char] = ACTIONS(616), + [anon_sym_as] = ACTIONS(616), + [anon_sym_const] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_union] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(614), + [anon_sym_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(614), + [anon_sym_ref] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(614), + [anon_sym__] = ACTIONS(616), + [anon_sym_AMP] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(614), + [sym_mutable_specifier] = ACTIONS(616), + [anon_sym_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_AMP_AMP] = ACTIONS(614), + [anon_sym_PIPE_PIPE] = ACTIONS(614), + [anon_sym_PIPE] = ACTIONS(616), + [anon_sym_CARET] = ACTIONS(616), + [anon_sym_EQ_EQ] = ACTIONS(614), + [anon_sym_BANG_EQ] = ACTIONS(614), + [anon_sym_LT_EQ] = ACTIONS(614), + [anon_sym_GT_EQ] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(616), + [anon_sym_GT_GT] = ACTIONS(616), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PERCENT] = ACTIONS(616), + [anon_sym_PLUS_EQ] = ACTIONS(614), + [anon_sym_DASH_EQ] = ACTIONS(614), + [anon_sym_STAR_EQ] = ACTIONS(614), + [anon_sym_SLASH_EQ] = ACTIONS(614), + [anon_sym_PERCENT_EQ] = ACTIONS(614), + [anon_sym_AMP_EQ] = ACTIONS(614), + [anon_sym_PIPE_EQ] = ACTIONS(614), + [anon_sym_CARET_EQ] = ACTIONS(614), + [anon_sym_LT_LT_EQ] = ACTIONS(614), + [anon_sym_GT_GT_EQ] = ACTIONS(614), + [anon_sym_DOT] = ACTIONS(616), + [sym_integer_literal] = ACTIONS(614), + [aux_sym_string_literal_token1] = ACTIONS(614), + [sym_char_literal] = ACTIONS(614), + [anon_sym_true] = ACTIONS(616), + [anon_sym_false] = ACTIONS(616), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(616), + [sym_super] = ACTIONS(616), + [sym_crate] = ACTIONS(616), + [sym_metavariable] = ACTIONS(614), + [sym_raw_string_literal] = ACTIONS(614), + [sym_float_literal] = ACTIONS(614), + [sym_block_comment] = ACTIONS(3), + }, + [239] = { + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1929), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(1931), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), - [sym_type_binding] = STATE(2305), + [sym_type_binding] = STATE(2246), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [sym_block] = STATE(2305), - [sym__literal] = STATE(2305), - [sym_string_literal] = STATE(2159), - [sym_boolean_literal] = STATE(2159), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(870), - [anon_sym_LBRACK] = ACTIONS(872), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [sym_block] = STATE(2246), + [sym__literal] = STATE(2246), + [sym_string_literal] = STATE(2312), + [sym_boolean_literal] = STATE(2312), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(896), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(890), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(890), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_raw_string_literal] = ACTIONS(890), + [sym_float_literal] = ACTIONS(890), + [sym_block_comment] = ACTIONS(3), + }, + [240] = { + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1929), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(1931), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), + [sym_bounded_type] = STATE(1395), + [sym_type_binding] = STATE(2246), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [sym_block] = STATE(2246), + [sym__literal] = STATE(2246), + [sym_string_literal] = STATE(2312), + [sym_boolean_literal] = STATE(2312), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), [anon_sym_GT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(886), + [sym_integer_literal] = ACTIONS(890), [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(886), + [sym_char_literal] = ACTIONS(890), [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), - [sym_raw_string_literal] = ACTIONS(886), - [sym_float_literal] = ACTIONS(886), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_raw_string_literal] = ACTIONS(890), + [sym_float_literal] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, - [239] = { + [241] = { [sym_identifier] = ACTIONS(450), [anon_sym_LPAREN] = ACTIONS(448), [anon_sym_RBRACE] = ACTIONS(448), @@ -41566,289 +41710,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(448), [sym_block_comment] = ACTIONS(3), }, - [240] = { - [sym_identifier] = ACTIONS(478), - [anon_sym_LPAREN] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(478), - [anon_sym_QMARK] = ACTIONS(476), - [anon_sym_u8] = ACTIONS(478), - [anon_sym_i8] = ACTIONS(478), - [anon_sym_u16] = ACTIONS(478), - [anon_sym_i16] = ACTIONS(478), - [anon_sym_u32] = ACTIONS(478), - [anon_sym_i32] = ACTIONS(478), - [anon_sym_u64] = ACTIONS(478), - [anon_sym_i64] = ACTIONS(478), - [anon_sym_u128] = ACTIONS(478), - [anon_sym_i128] = ACTIONS(478), - [anon_sym_isize] = ACTIONS(478), - [anon_sym_usize] = ACTIONS(478), - [anon_sym_f32] = ACTIONS(478), - [anon_sym_f64] = ACTIONS(478), - [anon_sym_bool] = ACTIONS(478), - [anon_sym_str] = ACTIONS(478), - [anon_sym_char] = ACTIONS(478), - [anon_sym_as] = ACTIONS(478), - [anon_sym_const] = ACTIONS(478), - [anon_sym_default] = ACTIONS(478), - [anon_sym_union] = ACTIONS(478), - [anon_sym_POUND] = ACTIONS(476), - [anon_sym_EQ] = ACTIONS(478), - [anon_sym_COMMA] = ACTIONS(476), - [anon_sym_ref] = ACTIONS(478), - [anon_sym_LT] = ACTIONS(478), - [anon_sym_GT] = ACTIONS(478), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym__] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(476), - [sym_mutable_specifier] = ACTIONS(478), - [anon_sym_DOT_DOT] = ACTIONS(478), - [anon_sym_DOT_DOT_EQ] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(476), - [anon_sym_PIPE_PIPE] = ACTIONS(476), - [anon_sym_PIPE] = ACTIONS(478), - [anon_sym_CARET] = ACTIONS(478), - [anon_sym_EQ_EQ] = ACTIONS(476), - [anon_sym_BANG_EQ] = ACTIONS(476), - [anon_sym_LT_EQ] = ACTIONS(476), - [anon_sym_GT_EQ] = ACTIONS(476), - [anon_sym_LT_LT] = ACTIONS(478), - [anon_sym_GT_GT] = ACTIONS(478), - [anon_sym_SLASH] = ACTIONS(478), - [anon_sym_PERCENT] = ACTIONS(478), - [anon_sym_PLUS_EQ] = ACTIONS(476), - [anon_sym_DASH_EQ] = ACTIONS(476), - [anon_sym_STAR_EQ] = ACTIONS(476), - [anon_sym_SLASH_EQ] = ACTIONS(476), - [anon_sym_PERCENT_EQ] = ACTIONS(476), - [anon_sym_AMP_EQ] = ACTIONS(476), - [anon_sym_PIPE_EQ] = ACTIONS(476), - [anon_sym_CARET_EQ] = ACTIONS(476), - [anon_sym_LT_LT_EQ] = ACTIONS(476), - [anon_sym_GT_GT_EQ] = ACTIONS(476), - [anon_sym_DOT] = ACTIONS(478), - [sym_integer_literal] = ACTIONS(476), - [aux_sym_string_literal_token1] = ACTIONS(476), - [sym_char_literal] = ACTIONS(476), - [anon_sym_true] = ACTIONS(478), - [anon_sym_false] = ACTIONS(478), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(478), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(476), - [sym_raw_string_literal] = ACTIONS(476), - [sym_float_literal] = ACTIONS(476), - [sym_block_comment] = ACTIONS(3), - }, - [241] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1988), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(1994), - [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), - [sym_function_type] = STATE(1395), - [sym_tuple_type] = STATE(1395), - [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), - [sym_bounded_type] = STATE(1395), - [sym_type_binding] = STATE(2305), - [sym_reference_type] = STATE(1395), - [sym_pointer_type] = STATE(1395), - [sym_empty_type] = STATE(1395), - [sym_abstract_type] = STATE(1395), - [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [sym_block] = STATE(2305), - [sym__literal] = STATE(2305), - [sym_string_literal] = STATE(2159), - [sym_boolean_literal] = STATE(2159), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(870), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(900), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(886), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(886), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), - [sym_raw_string_literal] = ACTIONS(886), - [sym_float_literal] = ACTIONS(886), - [sym_block_comment] = ACTIONS(3), - }, [242] = { - [sym_identifier] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_RBRACE] = ACTIONS(590), - [anon_sym_LBRACK] = ACTIONS(590), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_STAR] = ACTIONS(592), - [anon_sym_QMARK] = ACTIONS(590), - [anon_sym_u8] = ACTIONS(592), - [anon_sym_i8] = ACTIONS(592), - [anon_sym_u16] = ACTIONS(592), - [anon_sym_i16] = ACTIONS(592), - [anon_sym_u32] = ACTIONS(592), - [anon_sym_i32] = ACTIONS(592), - [anon_sym_u64] = ACTIONS(592), - [anon_sym_i64] = ACTIONS(592), - [anon_sym_u128] = ACTIONS(592), - [anon_sym_i128] = ACTIONS(592), - [anon_sym_isize] = ACTIONS(592), - [anon_sym_usize] = ACTIONS(592), - [anon_sym_f32] = ACTIONS(592), - [anon_sym_f64] = ACTIONS(592), - [anon_sym_bool] = ACTIONS(592), - [anon_sym_str] = ACTIONS(592), - [anon_sym_char] = ACTIONS(592), - [anon_sym_as] = ACTIONS(592), - [anon_sym_const] = ACTIONS(592), - [anon_sym_default] = ACTIONS(592), - [anon_sym_union] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(590), - [anon_sym_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(590), - [anon_sym_ref] = ACTIONS(592), - [anon_sym_LT] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(590), - [anon_sym__] = ACTIONS(592), - [anon_sym_AMP] = ACTIONS(592), - [anon_sym_DOT_DOT_DOT] = ACTIONS(590), - [sym_mutable_specifier] = ACTIONS(592), - [anon_sym_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_AMP_AMP] = ACTIONS(590), - [anon_sym_PIPE_PIPE] = ACTIONS(590), - [anon_sym_PIPE] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym_EQ_EQ] = ACTIONS(590), - [anon_sym_BANG_EQ] = ACTIONS(590), - [anon_sym_LT_EQ] = ACTIONS(590), - [anon_sym_GT_EQ] = ACTIONS(590), - [anon_sym_LT_LT] = ACTIONS(592), - [anon_sym_GT_GT] = ACTIONS(592), - [anon_sym_SLASH] = ACTIONS(592), - [anon_sym_PERCENT] = ACTIONS(592), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_STAR_EQ] = ACTIONS(590), - [anon_sym_SLASH_EQ] = ACTIONS(590), - [anon_sym_PERCENT_EQ] = ACTIONS(590), - [anon_sym_AMP_EQ] = ACTIONS(590), - [anon_sym_PIPE_EQ] = ACTIONS(590), - [anon_sym_CARET_EQ] = ACTIONS(590), - [anon_sym_LT_LT_EQ] = ACTIONS(590), - [anon_sym_GT_GT_EQ] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(592), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(590), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(592), - [anon_sym_false] = ACTIONS(592), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(592), - [sym_super] = ACTIONS(592), - [sym_crate] = ACTIONS(592), - [sym_metavariable] = ACTIONS(590), - [sym_raw_string_literal] = ACTIONS(590), - [sym_float_literal] = ACTIONS(590), + [sym_identifier] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RBRACE] = ACTIONS(422), + [anon_sym_LBRACK] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(424), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_u8] = ACTIONS(424), + [anon_sym_i8] = ACTIONS(424), + [anon_sym_u16] = ACTIONS(424), + [anon_sym_i16] = ACTIONS(424), + [anon_sym_u32] = ACTIONS(424), + [anon_sym_i32] = ACTIONS(424), + [anon_sym_u64] = ACTIONS(424), + [anon_sym_i64] = ACTIONS(424), + [anon_sym_u128] = ACTIONS(424), + [anon_sym_i128] = ACTIONS(424), + [anon_sym_isize] = ACTIONS(424), + [anon_sym_usize] = ACTIONS(424), + [anon_sym_f32] = ACTIONS(424), + [anon_sym_f64] = ACTIONS(424), + [anon_sym_bool] = ACTIONS(424), + [anon_sym_str] = ACTIONS(424), + [anon_sym_char] = ACTIONS(424), + [anon_sym_as] = ACTIONS(424), + [anon_sym_const] = ACTIONS(424), + [anon_sym_default] = ACTIONS(424), + [anon_sym_union] = ACTIONS(424), + [anon_sym_POUND] = ACTIONS(422), + [anon_sym_EQ] = ACTIONS(424), + [anon_sym_COMMA] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(424), + [anon_sym_GT] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(422), + [anon_sym__] = ACTIONS(424), + [anon_sym_AMP] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(422), + [sym_mutable_specifier] = ACTIONS(424), + [anon_sym_DOT_DOT] = ACTIONS(424), + [anon_sym_DOT_DOT_EQ] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(424), + [anon_sym_AMP_AMP] = ACTIONS(422), + [anon_sym_PIPE_PIPE] = ACTIONS(422), + [anon_sym_PIPE] = ACTIONS(424), + [anon_sym_CARET] = ACTIONS(424), + [anon_sym_EQ_EQ] = ACTIONS(422), + [anon_sym_BANG_EQ] = ACTIONS(422), + [anon_sym_LT_EQ] = ACTIONS(422), + [anon_sym_GT_EQ] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(424), + [anon_sym_GT_GT] = ACTIONS(424), + [anon_sym_SLASH] = ACTIONS(424), + [anon_sym_PERCENT] = ACTIONS(424), + [anon_sym_PLUS_EQ] = ACTIONS(422), + [anon_sym_DASH_EQ] = ACTIONS(422), + [anon_sym_STAR_EQ] = ACTIONS(422), + [anon_sym_SLASH_EQ] = ACTIONS(422), + [anon_sym_PERCENT_EQ] = ACTIONS(422), + [anon_sym_AMP_EQ] = ACTIONS(422), + [anon_sym_PIPE_EQ] = ACTIONS(422), + [anon_sym_CARET_EQ] = ACTIONS(422), + [anon_sym_LT_LT_EQ] = ACTIONS(422), + [anon_sym_GT_GT_EQ] = ACTIONS(422), + [anon_sym_DOT] = ACTIONS(424), + [sym_integer_literal] = ACTIONS(422), + [aux_sym_string_literal_token1] = ACTIONS(422), + [sym_char_literal] = ACTIONS(422), + [anon_sym_true] = ACTIONS(424), + [anon_sym_false] = ACTIONS(424), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(424), + [sym_crate] = ACTIONS(424), + [sym_metavariable] = ACTIONS(422), + [sym_raw_string_literal] = ACTIONS(422), + [sym_float_literal] = ACTIONS(422), [sym_block_comment] = ACTIONS(3), }, [243] = { - [sym_identifier] = ACTIONS(902), - [anon_sym_LPAREN] = ACTIONS(904), + [sym_identifier] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(902), [anon_sym_RBRACE] = ACTIONS(484), - [anon_sym_LBRACK] = ACTIONS(904), + [anon_sym_LBRACK] = ACTIONS(902), [anon_sym_PLUS] = ACTIONS(486), [anon_sym_STAR] = ACTIONS(486), [anon_sym_QMARK] = ACTIONS(484), - [anon_sym_u8] = ACTIONS(902), - [anon_sym_i8] = ACTIONS(902), - [anon_sym_u16] = ACTIONS(902), - [anon_sym_i16] = ACTIONS(902), - [anon_sym_u32] = ACTIONS(902), - [anon_sym_i32] = ACTIONS(902), - [anon_sym_u64] = ACTIONS(902), - [anon_sym_i64] = ACTIONS(902), - [anon_sym_u128] = ACTIONS(902), - [anon_sym_i128] = ACTIONS(902), - [anon_sym_isize] = ACTIONS(902), - [anon_sym_usize] = ACTIONS(902), - [anon_sym_f32] = ACTIONS(902), - [anon_sym_f64] = ACTIONS(902), - [anon_sym_bool] = ACTIONS(902), - [anon_sym_str] = ACTIONS(902), - [anon_sym_char] = ACTIONS(902), + [anon_sym_u8] = ACTIONS(900), + [anon_sym_i8] = ACTIONS(900), + [anon_sym_u16] = ACTIONS(900), + [anon_sym_i16] = ACTIONS(900), + [anon_sym_u32] = ACTIONS(900), + [anon_sym_i32] = ACTIONS(900), + [anon_sym_u64] = ACTIONS(900), + [anon_sym_i64] = ACTIONS(900), + [anon_sym_u128] = ACTIONS(900), + [anon_sym_i128] = ACTIONS(900), + [anon_sym_isize] = ACTIONS(900), + [anon_sym_usize] = ACTIONS(900), + [anon_sym_f32] = ACTIONS(900), + [anon_sym_f64] = ACTIONS(900), + [anon_sym_bool] = ACTIONS(900), + [anon_sym_str] = ACTIONS(900), + [anon_sym_char] = ACTIONS(900), [anon_sym_as] = ACTIONS(486), - [anon_sym_const] = ACTIONS(902), - [anon_sym_default] = ACTIONS(902), - [anon_sym_union] = ACTIONS(902), - [anon_sym_POUND] = ACTIONS(904), + [anon_sym_const] = ACTIONS(900), + [anon_sym_default] = ACTIONS(900), + [anon_sym_union] = ACTIONS(900), + [anon_sym_POUND] = ACTIONS(902), [anon_sym_EQ] = ACTIONS(486), [anon_sym_COMMA] = ACTIONS(484), - [anon_sym_ref] = ACTIONS(902), - [anon_sym_LT] = ACTIONS(902), + [anon_sym_ref] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(900), [anon_sym_GT] = ACTIONS(486), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym__] = ACTIONS(902), - [anon_sym_AMP] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(902), + [anon_sym__] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(900), [anon_sym_DOT_DOT_DOT] = ACTIONS(484), - [sym_mutable_specifier] = ACTIONS(902), - [anon_sym_DOT_DOT] = ACTIONS(902), + [sym_mutable_specifier] = ACTIONS(900), + [anon_sym_DOT_DOT] = ACTIONS(900), [anon_sym_DOT_DOT_EQ] = ACTIONS(484), - [anon_sym_DASH] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(900), [anon_sym_AMP_AMP] = ACTIONS(484), [anon_sym_PIPE_PIPE] = ACTIONS(484), [anon_sym_PIPE] = ACTIONS(486), @@ -41872,447 +41856,447 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_EQ] = ACTIONS(484), [anon_sym_GT_GT_EQ] = ACTIONS(484), [anon_sym_DOT] = ACTIONS(486), - [sym_integer_literal] = ACTIONS(904), - [aux_sym_string_literal_token1] = ACTIONS(904), - [sym_char_literal] = ACTIONS(904), - [anon_sym_true] = ACTIONS(902), - [anon_sym_false] = ACTIONS(902), + [sym_integer_literal] = ACTIONS(902), + [aux_sym_string_literal_token1] = ACTIONS(902), + [sym_char_literal] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(904), - [sym_raw_string_literal] = ACTIONS(904), - [sym_float_literal] = ACTIONS(904), + [sym_self] = ACTIONS(900), + [sym_super] = ACTIONS(900), + [sym_crate] = ACTIONS(900), + [sym_metavariable] = ACTIONS(902), + [sym_raw_string_literal] = ACTIONS(902), + [sym_float_literal] = ACTIONS(902), [sym_block_comment] = ACTIONS(3), }, [244] = { - [sym_identifier] = ACTIONS(426), - [anon_sym_LPAREN] = ACTIONS(424), - [anon_sym_RBRACE] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(426), - [anon_sym_STAR] = ACTIONS(426), - [anon_sym_QMARK] = ACTIONS(424), - [anon_sym_u8] = ACTIONS(426), - [anon_sym_i8] = ACTIONS(426), - [anon_sym_u16] = ACTIONS(426), - [anon_sym_i16] = ACTIONS(426), - [anon_sym_u32] = ACTIONS(426), - [anon_sym_i32] = ACTIONS(426), - [anon_sym_u64] = ACTIONS(426), - [anon_sym_i64] = ACTIONS(426), - [anon_sym_u128] = ACTIONS(426), - [anon_sym_i128] = ACTIONS(426), - [anon_sym_isize] = ACTIONS(426), - [anon_sym_usize] = ACTIONS(426), - [anon_sym_f32] = ACTIONS(426), - [anon_sym_f64] = ACTIONS(426), - [anon_sym_bool] = ACTIONS(426), - [anon_sym_str] = ACTIONS(426), - [anon_sym_char] = ACTIONS(426), - [anon_sym_as] = ACTIONS(426), - [anon_sym_const] = ACTIONS(426), - [anon_sym_default] = ACTIONS(426), - [anon_sym_union] = ACTIONS(426), - [anon_sym_POUND] = ACTIONS(424), - [anon_sym_EQ] = ACTIONS(426), - [anon_sym_COMMA] = ACTIONS(424), - [anon_sym_ref] = ACTIONS(426), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_GT] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(424), - [anon_sym__] = ACTIONS(426), - [anon_sym_AMP] = ACTIONS(426), - [anon_sym_DOT_DOT_DOT] = ACTIONS(424), - [sym_mutable_specifier] = ACTIONS(426), - [anon_sym_DOT_DOT] = ACTIONS(426), - [anon_sym_DOT_DOT_EQ] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_AMP_AMP] = ACTIONS(424), - [anon_sym_PIPE_PIPE] = ACTIONS(424), - [anon_sym_PIPE] = ACTIONS(426), - [anon_sym_CARET] = ACTIONS(426), - [anon_sym_EQ_EQ] = ACTIONS(424), - [anon_sym_BANG_EQ] = ACTIONS(424), - [anon_sym_LT_EQ] = ACTIONS(424), - [anon_sym_GT_EQ] = ACTIONS(424), - [anon_sym_LT_LT] = ACTIONS(426), - [anon_sym_GT_GT] = ACTIONS(426), - [anon_sym_SLASH] = ACTIONS(426), - [anon_sym_PERCENT] = ACTIONS(426), - [anon_sym_PLUS_EQ] = ACTIONS(424), - [anon_sym_DASH_EQ] = ACTIONS(424), - [anon_sym_STAR_EQ] = ACTIONS(424), - [anon_sym_SLASH_EQ] = ACTIONS(424), - [anon_sym_PERCENT_EQ] = ACTIONS(424), - [anon_sym_AMP_EQ] = ACTIONS(424), - [anon_sym_PIPE_EQ] = ACTIONS(424), - [anon_sym_CARET_EQ] = ACTIONS(424), - [anon_sym_LT_LT_EQ] = ACTIONS(424), - [anon_sym_GT_GT_EQ] = ACTIONS(424), - [anon_sym_DOT] = ACTIONS(426), - [sym_integer_literal] = ACTIONS(424), - [aux_sym_string_literal_token1] = ACTIONS(424), - [sym_char_literal] = ACTIONS(424), - [anon_sym_true] = ACTIONS(426), - [anon_sym_false] = ACTIONS(426), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_crate] = ACTIONS(426), - [sym_metavariable] = ACTIONS(424), - [sym_raw_string_literal] = ACTIONS(424), - [sym_float_literal] = ACTIONS(424), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1929), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(1931), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), + [sym_bounded_type] = STATE(1395), + [sym_type_binding] = STATE(2246), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [sym_block] = STATE(2246), + [sym__literal] = STATE(2246), + [sym_string_literal] = STATE(2312), + [sym_boolean_literal] = STATE(2312), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(904), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(890), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(890), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_raw_string_literal] = ACTIONS(890), + [sym_float_literal] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, [245] = { - [sym_identifier] = ACTIONS(616), - [anon_sym_LPAREN] = ACTIONS(614), - [anon_sym_RBRACE] = ACTIONS(614), - [anon_sym_LBRACK] = ACTIONS(614), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_STAR] = ACTIONS(616), - [anon_sym_QMARK] = ACTIONS(614), - [anon_sym_u8] = ACTIONS(616), - [anon_sym_i8] = ACTIONS(616), - [anon_sym_u16] = ACTIONS(616), - [anon_sym_i16] = ACTIONS(616), - [anon_sym_u32] = ACTIONS(616), - [anon_sym_i32] = ACTIONS(616), - [anon_sym_u64] = ACTIONS(616), - [anon_sym_i64] = ACTIONS(616), - [anon_sym_u128] = ACTIONS(616), - [anon_sym_i128] = ACTIONS(616), - [anon_sym_isize] = ACTIONS(616), - [anon_sym_usize] = ACTIONS(616), - [anon_sym_f32] = ACTIONS(616), - [anon_sym_f64] = ACTIONS(616), - [anon_sym_bool] = ACTIONS(616), - [anon_sym_str] = ACTIONS(616), - [anon_sym_char] = ACTIONS(616), - [anon_sym_as] = ACTIONS(616), - [anon_sym_const] = ACTIONS(616), - [anon_sym_default] = ACTIONS(616), - [anon_sym_union] = ACTIONS(616), - [anon_sym_POUND] = ACTIONS(614), - [anon_sym_EQ] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(614), - [anon_sym_ref] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(616), - [anon_sym_GT] = ACTIONS(616), - [anon_sym_COLON_COLON] = ACTIONS(614), - [anon_sym__] = ACTIONS(616), - [anon_sym_AMP] = ACTIONS(616), - [anon_sym_DOT_DOT_DOT] = ACTIONS(614), - [sym_mutable_specifier] = ACTIONS(616), - [anon_sym_DOT_DOT] = ACTIONS(616), - [anon_sym_DOT_DOT_EQ] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_AMP_AMP] = ACTIONS(614), - [anon_sym_PIPE_PIPE] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_CARET] = ACTIONS(616), - [anon_sym_EQ_EQ] = ACTIONS(614), - [anon_sym_BANG_EQ] = ACTIONS(614), - [anon_sym_LT_EQ] = ACTIONS(614), - [anon_sym_GT_EQ] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(616), - [anon_sym_GT_GT] = ACTIONS(616), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(616), - [anon_sym_PLUS_EQ] = ACTIONS(614), - [anon_sym_DASH_EQ] = ACTIONS(614), - [anon_sym_STAR_EQ] = ACTIONS(614), - [anon_sym_SLASH_EQ] = ACTIONS(614), - [anon_sym_PERCENT_EQ] = ACTIONS(614), - [anon_sym_AMP_EQ] = ACTIONS(614), - [anon_sym_PIPE_EQ] = ACTIONS(614), - [anon_sym_CARET_EQ] = ACTIONS(614), - [anon_sym_LT_LT_EQ] = ACTIONS(614), - [anon_sym_GT_GT_EQ] = ACTIONS(614), - [anon_sym_DOT] = ACTIONS(616), - [sym_integer_literal] = ACTIONS(614), - [aux_sym_string_literal_token1] = ACTIONS(614), - [sym_char_literal] = ACTIONS(614), - [anon_sym_true] = ACTIONS(616), - [anon_sym_false] = ACTIONS(616), + [sym_identifier] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_RBRACE] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(464), + [anon_sym_QMARK] = ACTIONS(462), + [anon_sym_u8] = ACTIONS(464), + [anon_sym_i8] = ACTIONS(464), + [anon_sym_u16] = ACTIONS(464), + [anon_sym_i16] = ACTIONS(464), + [anon_sym_u32] = ACTIONS(464), + [anon_sym_i32] = ACTIONS(464), + [anon_sym_u64] = ACTIONS(464), + [anon_sym_i64] = ACTIONS(464), + [anon_sym_u128] = ACTIONS(464), + [anon_sym_i128] = ACTIONS(464), + [anon_sym_isize] = ACTIONS(464), + [anon_sym_usize] = ACTIONS(464), + [anon_sym_f32] = ACTIONS(464), + [anon_sym_f64] = ACTIONS(464), + [anon_sym_bool] = ACTIONS(464), + [anon_sym_str] = ACTIONS(464), + [anon_sym_char] = ACTIONS(464), + [anon_sym_as] = ACTIONS(464), + [anon_sym_const] = ACTIONS(464), + [anon_sym_default] = ACTIONS(464), + [anon_sym_union] = ACTIONS(464), + [anon_sym_POUND] = ACTIONS(462), + [anon_sym_EQ] = ACTIONS(464), + [anon_sym_COMMA] = ACTIONS(462), + [anon_sym_ref] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(464), + [anon_sym_GT] = ACTIONS(464), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym__] = ACTIONS(464), + [anon_sym_AMP] = ACTIONS(464), + [anon_sym_DOT_DOT_DOT] = ACTIONS(462), + [sym_mutable_specifier] = ACTIONS(464), + [anon_sym_DOT_DOT] = ACTIONS(464), + [anon_sym_DOT_DOT_EQ] = ACTIONS(462), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_AMP_AMP] = ACTIONS(462), + [anon_sym_PIPE_PIPE] = ACTIONS(462), + [anon_sym_PIPE] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_EQ_EQ] = ACTIONS(462), + [anon_sym_BANG_EQ] = ACTIONS(462), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_PLUS_EQ] = ACTIONS(462), + [anon_sym_DASH_EQ] = ACTIONS(462), + [anon_sym_STAR_EQ] = ACTIONS(462), + [anon_sym_SLASH_EQ] = ACTIONS(462), + [anon_sym_PERCENT_EQ] = ACTIONS(462), + [anon_sym_AMP_EQ] = ACTIONS(462), + [anon_sym_PIPE_EQ] = ACTIONS(462), + [anon_sym_CARET_EQ] = ACTIONS(462), + [anon_sym_LT_LT_EQ] = ACTIONS(462), + [anon_sym_GT_GT_EQ] = ACTIONS(462), + [anon_sym_DOT] = ACTIONS(464), + [sym_integer_literal] = ACTIONS(462), + [aux_sym_string_literal_token1] = ACTIONS(462), + [sym_char_literal] = ACTIONS(462), + [anon_sym_true] = ACTIONS(464), + [anon_sym_false] = ACTIONS(464), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(616), - [sym_super] = ACTIONS(616), - [sym_crate] = ACTIONS(616), - [sym_metavariable] = ACTIONS(614), - [sym_raw_string_literal] = ACTIONS(614), - [sym_float_literal] = ACTIONS(614), + [sym_self] = ACTIONS(464), + [sym_super] = ACTIONS(464), + [sym_crate] = ACTIONS(464), + [sym_metavariable] = ACTIONS(462), + [sym_raw_string_literal] = ACTIONS(462), + [sym_float_literal] = ACTIONS(462), [sym_block_comment] = ACTIONS(3), }, [246] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1988), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(1994), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1929), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(1931), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), - [sym_type_binding] = STATE(2305), + [sym_type_binding] = STATE(2246), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [sym_block] = STATE(2305), - [sym__literal] = STATE(2305), - [sym_string_literal] = STATE(2159), - [sym_boolean_literal] = STATE(2159), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(870), - [anon_sym_LBRACK] = ACTIONS(872), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [sym_block] = STATE(2246), + [sym__literal] = STATE(2246), + [sym_string_literal] = STATE(2312), + [sym_boolean_literal] = STATE(2312), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(886), + [sym_integer_literal] = ACTIONS(890), [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(886), + [sym_char_literal] = ACTIONS(890), [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), - [sym_raw_string_literal] = ACTIONS(886), - [sym_float_literal] = ACTIONS(886), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_raw_string_literal] = ACTIONS(890), + [sym_float_literal] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, [247] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1852), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(1846), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1818), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(1857), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), - [sym_type_binding] = STATE(1902), + [sym_type_binding] = STATE(2038), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [sym_block] = STATE(1902), - [sym__literal] = STATE(1902), - [sym_string_literal] = STATE(2159), - [sym_boolean_literal] = STATE(2159), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(870), - [anon_sym_LBRACK] = ACTIONS(872), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [sym_block] = STATE(2038), + [sym__literal] = STATE(2038), + [sym_string_literal] = STATE(2312), + [sym_boolean_literal] = STATE(2312), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(886), + [sym_integer_literal] = ACTIONS(890), [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(886), + [sym_char_literal] = ACTIONS(890), [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), - [sym_raw_string_literal] = ACTIONS(886), - [sym_float_literal] = ACTIONS(886), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_raw_string_literal] = ACTIONS(890), + [sym_float_literal] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, [248] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1760), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(1759), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1772), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(1777), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), - [sym_type_binding] = STATE(2095), + [sym_type_binding] = STATE(2093), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), [sym_empty_type] = STATE(1395), [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [sym_block] = STATE(2095), - [sym__literal] = STATE(2095), - [sym_string_literal] = STATE(2159), - [sym_boolean_literal] = STATE(2159), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(870), - [anon_sym_LBRACK] = ACTIONS(872), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [sym_block] = STATE(2093), + [sym__literal] = STATE(2093), + [sym_string_literal] = STATE(2312), + [sym_boolean_literal] = STATE(2312), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(886), + [sym_integer_literal] = ACTIONS(890), [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(886), + [sym_char_literal] = ACTIONS(890), [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), - [sym_raw_string_literal] = ACTIONS(886), - [sym_float_literal] = ACTIONS(886), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_raw_string_literal] = ACTIONS(890), + [sym_float_literal] = ACTIONS(890), [sym_block_comment] = ACTIONS(3), }, [249] = { - [sym_empty_statement] = STATE(254), - [sym_macro_definition] = STATE(254), - [sym_attribute_item] = STATE(254), - [sym_inner_attribute_item] = STATE(254), - [sym_mod_item] = STATE(254), - [sym_foreign_mod_item] = STATE(254), - [sym_struct_item] = STATE(254), - [sym_union_item] = STATE(254), - [sym_enum_item] = STATE(254), - [sym_extern_crate_declaration] = STATE(254), - [sym_const_item] = STATE(254), - [sym_static_item] = STATE(254), - [sym_type_item] = STATE(254), - [sym_function_item] = STATE(254), - [sym_function_signature_item] = STATE(254), - [sym_function_modifiers] = STATE(2548), - [sym_impl_item] = STATE(254), - [sym_trait_item] = STATE(254), - [sym_associated_type] = STATE(254), - [sym_let_declaration] = STATE(254), - [sym_use_declaration] = STATE(254), - [sym_extern_modifier] = STATE(1513), - [sym_visibility_modifier] = STATE(1327), - [sym_bracketed_type] = STATE(2370), - [sym_generic_type_with_turbofish] = STATE(2530), - [sym_macro_invocation] = STATE(254), - [sym_scoped_identifier] = STATE(2277), - [aux_sym_declaration_list_repeat1] = STATE(254), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_empty_statement] = STATE(253), + [sym_macro_definition] = STATE(253), + [sym_attribute_item] = STATE(253), + [sym_inner_attribute_item] = STATE(253), + [sym_mod_item] = STATE(253), + [sym_foreign_mod_item] = STATE(253), + [sym_struct_item] = STATE(253), + [sym_union_item] = STATE(253), + [sym_enum_item] = STATE(253), + [sym_extern_crate_declaration] = STATE(253), + [sym_const_item] = STATE(253), + [sym_static_item] = STATE(253), + [sym_type_item] = STATE(253), + [sym_function_item] = STATE(253), + [sym_function_signature_item] = STATE(253), + [sym_function_modifiers] = STATE(2546), + [sym_impl_item] = STATE(253), + [sym_trait_item] = STATE(253), + [sym_associated_type] = STATE(253), + [sym_let_declaration] = STATE(253), + [sym_use_declaration] = STATE(253), + [sym_extern_modifier] = STATE(1488), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2368), + [sym_generic_type_with_turbofish] = STATE(2555), + [sym_macro_invocation] = STATE(253), + [sym_scoped_identifier] = STATE(2270), + [aux_sym_declaration_list_repeat1] = STATE(253), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(906), [anon_sym_SEMI] = ACTIONS(908), [anon_sym_macro_rules_BANG] = ACTIONS(910), @@ -42362,35 +42346,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [250] = { - [sym_empty_statement] = STATE(254), - [sym_macro_definition] = STATE(254), - [sym_attribute_item] = STATE(254), - [sym_inner_attribute_item] = STATE(254), - [sym_mod_item] = STATE(254), - [sym_foreign_mod_item] = STATE(254), - [sym_struct_item] = STATE(254), - [sym_union_item] = STATE(254), - [sym_enum_item] = STATE(254), - [sym_extern_crate_declaration] = STATE(254), - [sym_const_item] = STATE(254), - [sym_static_item] = STATE(254), - [sym_type_item] = STATE(254), - [sym_function_item] = STATE(254), - [sym_function_signature_item] = STATE(254), - [sym_function_modifiers] = STATE(2548), - [sym_impl_item] = STATE(254), - [sym_trait_item] = STATE(254), - [sym_associated_type] = STATE(254), - [sym_let_declaration] = STATE(254), - [sym_use_declaration] = STATE(254), - [sym_extern_modifier] = STATE(1513), - [sym_visibility_modifier] = STATE(1327), - [sym_bracketed_type] = STATE(2370), - [sym_generic_type_with_turbofish] = STATE(2530), - [sym_macro_invocation] = STATE(254), - [sym_scoped_identifier] = STATE(2277), - [aux_sym_declaration_list_repeat1] = STATE(254), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_empty_statement] = STATE(253), + [sym_macro_definition] = STATE(253), + [sym_attribute_item] = STATE(253), + [sym_inner_attribute_item] = STATE(253), + [sym_mod_item] = STATE(253), + [sym_foreign_mod_item] = STATE(253), + [sym_struct_item] = STATE(253), + [sym_union_item] = STATE(253), + [sym_enum_item] = STATE(253), + [sym_extern_crate_declaration] = STATE(253), + [sym_const_item] = STATE(253), + [sym_static_item] = STATE(253), + [sym_type_item] = STATE(253), + [sym_function_item] = STATE(253), + [sym_function_signature_item] = STATE(253), + [sym_function_modifiers] = STATE(2546), + [sym_impl_item] = STATE(253), + [sym_trait_item] = STATE(253), + [sym_associated_type] = STATE(253), + [sym_let_declaration] = STATE(253), + [sym_use_declaration] = STATE(253), + [sym_extern_modifier] = STATE(1488), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2368), + [sym_generic_type_with_turbofish] = STATE(2555), + [sym_macro_invocation] = STATE(253), + [sym_scoped_identifier] = STATE(2270), + [aux_sym_declaration_list_repeat1] = STATE(253), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(906), [anon_sym_SEMI] = ACTIONS(908), [anon_sym_macro_rules_BANG] = ACTIONS(910), @@ -42455,20 +42439,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(250), [sym_function_item] = STATE(250), [sym_function_signature_item] = STATE(250), - [sym_function_modifiers] = STATE(2548), + [sym_function_modifiers] = STATE(2546), [sym_impl_item] = STATE(250), [sym_trait_item] = STATE(250), [sym_associated_type] = STATE(250), [sym_let_declaration] = STATE(250), [sym_use_declaration] = STATE(250), - [sym_extern_modifier] = STATE(1513), - [sym_visibility_modifier] = STATE(1327), - [sym_bracketed_type] = STATE(2370), - [sym_generic_type_with_turbofish] = STATE(2530), + [sym_extern_modifier] = STATE(1488), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2368), + [sym_generic_type_with_turbofish] = STATE(2555), [sym_macro_invocation] = STATE(250), - [sym_scoped_identifier] = STATE(2277), + [sym_scoped_identifier] = STATE(2270), [aux_sym_declaration_list_repeat1] = STATE(250), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(906), [anon_sym_SEMI] = ACTIONS(908), [anon_sym_macro_rules_BANG] = ACTIONS(910), @@ -42518,6 +42502,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [252] = { + [sym__token_pattern] = STATE(252), + [sym_token_tree_pattern] = STATE(252), + [sym_token_binding_pattern] = STATE(252), + [sym_token_repetition_pattern] = STATE(252), + [sym__literal] = STATE(252), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(252), + [sym_identifier] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_RBRACK] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_u8] = ACTIONS(958), + [anon_sym_i8] = ACTIONS(958), + [anon_sym_u16] = ACTIONS(958), + [anon_sym_i16] = ACTIONS(958), + [anon_sym_u32] = ACTIONS(958), + [anon_sym_i32] = ACTIONS(958), + [anon_sym_u64] = ACTIONS(958), + [anon_sym_i64] = ACTIONS(958), + [anon_sym_u128] = ACTIONS(958), + [anon_sym_i128] = ACTIONS(958), + [anon_sym_isize] = ACTIONS(958), + [anon_sym_usize] = ACTIONS(958), + [anon_sym_f32] = ACTIONS(958), + [anon_sym_f64] = ACTIONS(958), + [anon_sym_bool] = ACTIONS(958), + [anon_sym_str] = ACTIONS(958), + [anon_sym_char] = ACTIONS(958), + [aux_sym__non_special_token_token1] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(958), + [anon_sym_as] = ACTIONS(958), + [anon_sym_async] = ACTIONS(958), + [anon_sym_await] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [anon_sym_const] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_default] = ACTIONS(958), + [anon_sym_enum] = ACTIONS(958), + [anon_sym_fn] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [anon_sym_impl] = ACTIONS(958), + [anon_sym_let] = ACTIONS(958), + [anon_sym_loop] = ACTIONS(958), + [anon_sym_match] = ACTIONS(958), + [anon_sym_mod] = ACTIONS(958), + [anon_sym_pub] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_static] = ACTIONS(958), + [anon_sym_struct] = ACTIONS(958), + [anon_sym_trait] = ACTIONS(958), + [anon_sym_type] = ACTIONS(958), + [anon_sym_union] = ACTIONS(958), + [anon_sym_unsafe] = ACTIONS(958), + [anon_sym_use] = ACTIONS(958), + [anon_sym_where] = ACTIONS(958), + [anon_sym_while] = ACTIONS(958), + [sym_mutable_specifier] = ACTIONS(958), + [sym_integer_literal] = ACTIONS(975), + [aux_sym_string_literal_token1] = ACTIONS(978), + [sym_char_literal] = ACTIONS(975), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(958), + [sym_super] = ACTIONS(958), + [sym_crate] = ACTIONS(958), + [sym_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(975), + [sym_float_literal] = ACTIONS(975), + [sym_block_comment] = ACTIONS(3), + }, + [253] = { + [sym_empty_statement] = STATE(253), + [sym_macro_definition] = STATE(253), + [sym_attribute_item] = STATE(253), + [sym_inner_attribute_item] = STATE(253), + [sym_mod_item] = STATE(253), + [sym_foreign_mod_item] = STATE(253), + [sym_struct_item] = STATE(253), + [sym_union_item] = STATE(253), + [sym_enum_item] = STATE(253), + [sym_extern_crate_declaration] = STATE(253), + [sym_const_item] = STATE(253), + [sym_static_item] = STATE(253), + [sym_type_item] = STATE(253), + [sym_function_item] = STATE(253), + [sym_function_signature_item] = STATE(253), + [sym_function_modifiers] = STATE(2546), + [sym_impl_item] = STATE(253), + [sym_trait_item] = STATE(253), + [sym_associated_type] = STATE(253), + [sym_let_declaration] = STATE(253), + [sym_use_declaration] = STATE(253), + [sym_extern_modifier] = STATE(1488), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2368), + [sym_generic_type_with_turbofish] = STATE(2555), + [sym_macro_invocation] = STATE(253), + [sym_scoped_identifier] = STATE(2270), + [aux_sym_declaration_list_repeat1] = STATE(253), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_macro_rules_BANG] = ACTIONS(995), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(1000), + [anon_sym_i8] = ACTIONS(1000), + [anon_sym_u16] = ACTIONS(1000), + [anon_sym_i16] = ACTIONS(1000), + [anon_sym_u32] = ACTIONS(1000), + [anon_sym_i32] = ACTIONS(1000), + [anon_sym_u64] = ACTIONS(1000), + [anon_sym_i64] = ACTIONS(1000), + [anon_sym_u128] = ACTIONS(1000), + [anon_sym_i128] = ACTIONS(1000), + [anon_sym_isize] = ACTIONS(1000), + [anon_sym_usize] = ACTIONS(1000), + [anon_sym_f32] = ACTIONS(1000), + [anon_sym_f64] = ACTIONS(1000), + [anon_sym_bool] = ACTIONS(1000), + [anon_sym_str] = ACTIONS(1000), + [anon_sym_char] = ACTIONS(1000), + [anon_sym_async] = ACTIONS(1003), + [anon_sym_const] = ACTIONS(1006), + [anon_sym_default] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_fn] = ACTIONS(1015), + [anon_sym_impl] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_pub] = ACTIONS(1027), + [anon_sym_static] = ACTIONS(1030), + [anon_sym_struct] = ACTIONS(1033), + [anon_sym_trait] = ACTIONS(1036), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_union] = ACTIONS(1042), + [anon_sym_unsafe] = ACTIONS(1045), + [anon_sym_use] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(1051), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1063), + [sym_super] = ACTIONS(1063), + [sym_crate] = ACTIONS(1066), + [sym_metavariable] = ACTIONS(1069), + [sym_block_comment] = ACTIONS(3), + }, + [254] = { [sym_empty_statement] = STATE(249), [sym_macro_definition] = STATE(249), [sym_attribute_item] = STATE(249), @@ -42533,24 +42673,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(249), [sym_function_item] = STATE(249), [sym_function_signature_item] = STATE(249), - [sym_function_modifiers] = STATE(2548), + [sym_function_modifiers] = STATE(2546), [sym_impl_item] = STATE(249), [sym_trait_item] = STATE(249), [sym_associated_type] = STATE(249), [sym_let_declaration] = STATE(249), [sym_use_declaration] = STATE(249), - [sym_extern_modifier] = STATE(1513), - [sym_visibility_modifier] = STATE(1327), - [sym_bracketed_type] = STATE(2370), - [sym_generic_type_with_turbofish] = STATE(2530), + [sym_extern_modifier] = STATE(1488), + [sym_visibility_modifier] = STATE(1331), + [sym_bracketed_type] = STATE(2368), + [sym_generic_type_with_turbofish] = STATE(2555), [sym_macro_invocation] = STATE(249), - [sym_scoped_identifier] = STATE(2277), + [sym_scoped_identifier] = STATE(2270), [aux_sym_declaration_list_repeat1] = STATE(249), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(906), [anon_sym_SEMI] = ACTIONS(908), [anon_sym_macro_rules_BANG] = ACTIONS(910), - [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1072), [anon_sym_u8] = ACTIONS(914), [anon_sym_i8] = ACTIONS(914), [anon_sym_u16] = ACTIONS(914), @@ -42595,162 +42735,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(952), [sym_block_comment] = ACTIONS(3), }, - [253] = { - [sym__token_pattern] = STATE(253), - [sym_token_tree_pattern] = STATE(253), - [sym_token_binding_pattern] = STATE(253), - [sym_token_repetition_pattern] = STATE(253), - [sym__literal] = STATE(253), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_pattern_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_RBRACK] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(974), - [anon_sym_u8] = ACTIONS(960), - [anon_sym_i8] = ACTIONS(960), - [anon_sym_u16] = ACTIONS(960), - [anon_sym_i16] = ACTIONS(960), - [anon_sym_u32] = ACTIONS(960), - [anon_sym_i32] = ACTIONS(960), - [anon_sym_u64] = ACTIONS(960), - [anon_sym_i64] = ACTIONS(960), - [anon_sym_u128] = ACTIONS(960), - [anon_sym_i128] = ACTIONS(960), - [anon_sym_isize] = ACTIONS(960), - [anon_sym_usize] = ACTIONS(960), - [anon_sym_f32] = ACTIONS(960), - [anon_sym_f64] = ACTIONS(960), - [anon_sym_bool] = ACTIONS(960), - [anon_sym_str] = ACTIONS(960), - [anon_sym_char] = ACTIONS(960), - [aux_sym__non_special_token_token1] = ACTIONS(960), - [anon_sym_SQUOTE] = ACTIONS(960), - [anon_sym_as] = ACTIONS(960), - [anon_sym_async] = ACTIONS(960), - [anon_sym_await] = ACTIONS(960), - [anon_sym_break] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_fn] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), - [anon_sym_impl] = ACTIONS(960), - [anon_sym_let] = ACTIONS(960), - [anon_sym_loop] = ACTIONS(960), - [anon_sym_match] = ACTIONS(960), - [anon_sym_mod] = ACTIONS(960), - [anon_sym_pub] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_static] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(960), - [anon_sym_trait] = ACTIONS(960), - [anon_sym_type] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_unsafe] = ACTIONS(960), - [anon_sym_use] = ACTIONS(960), - [anon_sym_where] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [sym_mutable_specifier] = ACTIONS(960), - [sym_integer_literal] = ACTIONS(977), - [aux_sym_string_literal_token1] = ACTIONS(980), - [sym_char_literal] = ACTIONS(977), - [anon_sym_true] = ACTIONS(983), - [anon_sym_false] = ACTIONS(983), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(960), - [sym_super] = ACTIONS(960), - [sym_crate] = ACTIONS(960), - [sym_metavariable] = ACTIONS(988), - [sym_raw_string_literal] = ACTIONS(977), - [sym_float_literal] = ACTIONS(977), - [sym_block_comment] = ACTIONS(3), - }, - [254] = { - [sym_empty_statement] = STATE(254), - [sym_macro_definition] = STATE(254), - [sym_attribute_item] = STATE(254), - [sym_inner_attribute_item] = STATE(254), - [sym_mod_item] = STATE(254), - [sym_foreign_mod_item] = STATE(254), - [sym_struct_item] = STATE(254), - [sym_union_item] = STATE(254), - [sym_enum_item] = STATE(254), - [sym_extern_crate_declaration] = STATE(254), - [sym_const_item] = STATE(254), - [sym_static_item] = STATE(254), - [sym_type_item] = STATE(254), - [sym_function_item] = STATE(254), - [sym_function_signature_item] = STATE(254), - [sym_function_modifiers] = STATE(2548), - [sym_impl_item] = STATE(254), - [sym_trait_item] = STATE(254), - [sym_associated_type] = STATE(254), - [sym_let_declaration] = STATE(254), - [sym_use_declaration] = STATE(254), - [sym_extern_modifier] = STATE(1513), - [sym_visibility_modifier] = STATE(1327), - [sym_bracketed_type] = STATE(2370), - [sym_generic_type_with_turbofish] = STATE(2530), - [sym_macro_invocation] = STATE(254), - [sym_scoped_identifier] = STATE(2277), - [aux_sym_declaration_list_repeat1] = STATE(254), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(991), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_macro_rules_BANG] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_u8] = ACTIONS(1002), - [anon_sym_i8] = ACTIONS(1002), - [anon_sym_u16] = ACTIONS(1002), - [anon_sym_i16] = ACTIONS(1002), - [anon_sym_u32] = ACTIONS(1002), - [anon_sym_i32] = ACTIONS(1002), - [anon_sym_u64] = ACTIONS(1002), - [anon_sym_i64] = ACTIONS(1002), - [anon_sym_u128] = ACTIONS(1002), - [anon_sym_i128] = ACTIONS(1002), - [anon_sym_isize] = ACTIONS(1002), - [anon_sym_usize] = ACTIONS(1002), - [anon_sym_f32] = ACTIONS(1002), - [anon_sym_f64] = ACTIONS(1002), - [anon_sym_bool] = ACTIONS(1002), - [anon_sym_str] = ACTIONS(1002), - [anon_sym_char] = ACTIONS(1002), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1011), - [anon_sym_enum] = ACTIONS(1014), - [anon_sym_fn] = ACTIONS(1017), - [anon_sym_impl] = ACTIONS(1020), - [anon_sym_let] = ACTIONS(1023), - [anon_sym_mod] = ACTIONS(1026), - [anon_sym_pub] = ACTIONS(1029), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1035), - [anon_sym_trait] = ACTIONS(1038), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_union] = ACTIONS(1044), - [anon_sym_unsafe] = ACTIONS(1047), - [anon_sym_use] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(1053), - [anon_sym_extern] = ACTIONS(1056), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(1062), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1065), - [sym_super] = ACTIONS(1065), - [sym_crate] = ACTIONS(1068), - [sym_metavariable] = ACTIONS(1071), - [sym_block_comment] = ACTIONS(3), - }, [255] = { [ts_builtin_sym_end] = ACTIONS(1074), [sym_identifier] = ACTIONS(1076), @@ -51222,142 +51206,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [365] = { - [ts_builtin_sym_end] = ACTIONS(1514), - [sym_identifier] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_macro_rules_BANG] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_u8] = ACTIONS(1516), - [anon_sym_i8] = ACTIONS(1516), - [anon_sym_u16] = ACTIONS(1516), - [anon_sym_i16] = ACTIONS(1516), - [anon_sym_u32] = ACTIONS(1516), - [anon_sym_i32] = ACTIONS(1516), - [anon_sym_u64] = ACTIONS(1516), - [anon_sym_i64] = ACTIONS(1516), - [anon_sym_u128] = ACTIONS(1516), - [anon_sym_i128] = ACTIONS(1516), - [anon_sym_isize] = ACTIONS(1516), - [anon_sym_usize] = ACTIONS(1516), - [anon_sym_f32] = ACTIONS(1516), - [anon_sym_f64] = ACTIONS(1516), - [anon_sym_bool] = ACTIONS(1516), - [anon_sym_str] = ACTIONS(1516), - [anon_sym_char] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1516), - [anon_sym_async] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_const] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_default] = ACTIONS(1516), - [anon_sym_enum] = ACTIONS(1516), - [anon_sym_fn] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1516), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_impl] = ACTIONS(1516), - [anon_sym_let] = ACTIONS(1516), - [anon_sym_loop] = ACTIONS(1516), - [anon_sym_match] = ACTIONS(1516), - [anon_sym_mod] = ACTIONS(1516), - [anon_sym_pub] = ACTIONS(1516), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1516), - [anon_sym_struct] = ACTIONS(1516), - [anon_sym_trait] = ACTIONS(1516), - [anon_sym_type] = ACTIONS(1516), - [anon_sym_union] = ACTIONS(1516), - [anon_sym_unsafe] = ACTIONS(1516), - [anon_sym_use] = ACTIONS(1516), - [anon_sym_while] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_COLON_COLON] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_DOT_DOT] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_yield] = ACTIONS(1516), - [anon_sym_move] = ACTIONS(1516), - [sym_integer_literal] = ACTIONS(1514), - [aux_sym_string_literal_token1] = ACTIONS(1514), - [sym_char_literal] = ACTIONS(1514), - [anon_sym_true] = ACTIONS(1516), - [anon_sym_false] = ACTIONS(1516), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1516), - [sym_super] = ACTIONS(1516), - [sym_crate] = ACTIONS(1516), - [sym_metavariable] = ACTIONS(1514), - [sym_raw_string_literal] = ACTIONS(1514), - [sym_float_literal] = ACTIONS(1514), - [sym_block_comment] = ACTIONS(3), - }, - [366] = { [sym_attribute_item] = STATE(547), - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), [sym_match_arm] = STATE(488), - [sym_last_match_arm] = STATE(2324), - [sym_match_pattern] = STATE(2441), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1928), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), + [sym_last_match_arm] = STATE(2440), + [sym_match_pattern] = STATE(2439), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1951), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), [aux_sym_enum_variant_list_repeat1] = STATE(547), [aux_sym_match_block_repeat1] = STATE(488), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -51367,14 +51274,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, + [366] = { + [ts_builtin_sym_end] = ACTIONS(1536), + [sym_identifier] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_macro_rules_BANG] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_u8] = ACTIONS(1538), + [anon_sym_i8] = ACTIONS(1538), + [anon_sym_u16] = ACTIONS(1538), + [anon_sym_i16] = ACTIONS(1538), + [anon_sym_u32] = ACTIONS(1538), + [anon_sym_i32] = ACTIONS(1538), + [anon_sym_u64] = ACTIONS(1538), + [anon_sym_i64] = ACTIONS(1538), + [anon_sym_u128] = ACTIONS(1538), + [anon_sym_i128] = ACTIONS(1538), + [anon_sym_isize] = ACTIONS(1538), + [anon_sym_usize] = ACTIONS(1538), + [anon_sym_f32] = ACTIONS(1538), + [anon_sym_f64] = ACTIONS(1538), + [anon_sym_bool] = ACTIONS(1538), + [anon_sym_str] = ACTIONS(1538), + [anon_sym_char] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_async] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1538), + [anon_sym_enum] = ACTIONS(1538), + [anon_sym_fn] = ACTIONS(1538), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_impl] = ACTIONS(1538), + [anon_sym_let] = ACTIONS(1538), + [anon_sym_loop] = ACTIONS(1538), + [anon_sym_match] = ACTIONS(1538), + [anon_sym_mod] = ACTIONS(1538), + [anon_sym_pub] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_static] = ACTIONS(1538), + [anon_sym_struct] = ACTIONS(1538), + [anon_sym_trait] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1538), + [anon_sym_union] = ACTIONS(1538), + [anon_sym_unsafe] = ACTIONS(1538), + [anon_sym_use] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_yield] = ACTIONS(1538), + [anon_sym_move] = ACTIONS(1538), + [sym_integer_literal] = ACTIONS(1536), + [aux_sym_string_literal_token1] = ACTIONS(1536), + [sym_char_literal] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1538), + [sym_super] = ACTIONS(1538), + [sym_crate] = ACTIONS(1538), + [sym_metavariable] = ACTIONS(1536), + [sym_raw_string_literal] = ACTIONS(1536), + [sym_float_literal] = ACTIONS(1536), + [sym_block_comment] = ACTIONS(3), + }, [367] = { [ts_builtin_sym_end] = ACTIONS(1540), [sym_identifier] = ACTIONS(1542), @@ -56535,83 +56519,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [434] = { - [ts_builtin_sym_end] = ACTIONS(1804), - [sym_identifier] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_macro_rules_BANG] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1804), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_u8] = ACTIONS(1806), - [anon_sym_i8] = ACTIONS(1806), - [anon_sym_u16] = ACTIONS(1806), - [anon_sym_i16] = ACTIONS(1806), - [anon_sym_u32] = ACTIONS(1806), - [anon_sym_i32] = ACTIONS(1806), - [anon_sym_u64] = ACTIONS(1806), - [anon_sym_i64] = ACTIONS(1806), - [anon_sym_u128] = ACTIONS(1806), - [anon_sym_i128] = ACTIONS(1806), - [anon_sym_isize] = ACTIONS(1806), - [anon_sym_usize] = ACTIONS(1806), - [anon_sym_f32] = ACTIONS(1806), - [anon_sym_f64] = ACTIONS(1806), - [anon_sym_bool] = ACTIONS(1806), - [anon_sym_str] = ACTIONS(1806), - [anon_sym_char] = ACTIONS(1806), - [anon_sym_SQUOTE] = ACTIONS(1806), - [anon_sym_async] = ACTIONS(1806), - [anon_sym_break] = ACTIONS(1806), - [anon_sym_const] = ACTIONS(1806), - [anon_sym_continue] = ACTIONS(1806), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_enum] = ACTIONS(1806), - [anon_sym_fn] = ACTIONS(1806), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_if] = ACTIONS(1806), - [anon_sym_impl] = ACTIONS(1806), - [anon_sym_let] = ACTIONS(1806), - [anon_sym_loop] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1806), - [anon_sym_mod] = ACTIONS(1806), - [anon_sym_pub] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1806), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_struct] = ACTIONS(1806), - [anon_sym_trait] = ACTIONS(1806), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_unsafe] = ACTIONS(1806), - [anon_sym_use] = ACTIONS(1806), - [anon_sym_while] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_extern] = ACTIONS(1806), - [anon_sym_LT] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_DOT_DOT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_PIPE] = ACTIONS(1804), - [anon_sym_yield] = ACTIONS(1806), - [anon_sym_move] = ACTIONS(1806), - [sym_integer_literal] = ACTIONS(1804), - [aux_sym_string_literal_token1] = ACTIONS(1804), - [sym_char_literal] = ACTIONS(1804), - [anon_sym_true] = ACTIONS(1806), - [anon_sym_false] = ACTIONS(1806), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1804), - [sym_raw_string_literal] = ACTIONS(1804), - [sym_float_literal] = ACTIONS(1804), - [sym_block_comment] = ACTIONS(3), - }, - [435] = { [ts_builtin_sym_end] = ACTIONS(410), [sym_identifier] = ACTIONS(412), [anon_sym_SEMI] = ACTIONS(410), @@ -56688,6 +56595,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(410), [sym_block_comment] = ACTIONS(3), }, + [435] = { + [ts_builtin_sym_end] = ACTIONS(1804), + [sym_identifier] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_macro_rules_BANG] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_u8] = ACTIONS(1806), + [anon_sym_i8] = ACTIONS(1806), + [anon_sym_u16] = ACTIONS(1806), + [anon_sym_i16] = ACTIONS(1806), + [anon_sym_u32] = ACTIONS(1806), + [anon_sym_i32] = ACTIONS(1806), + [anon_sym_u64] = ACTIONS(1806), + [anon_sym_i64] = ACTIONS(1806), + [anon_sym_u128] = ACTIONS(1806), + [anon_sym_i128] = ACTIONS(1806), + [anon_sym_isize] = ACTIONS(1806), + [anon_sym_usize] = ACTIONS(1806), + [anon_sym_f32] = ACTIONS(1806), + [anon_sym_f64] = ACTIONS(1806), + [anon_sym_bool] = ACTIONS(1806), + [anon_sym_str] = ACTIONS(1806), + [anon_sym_char] = ACTIONS(1806), + [anon_sym_SQUOTE] = ACTIONS(1806), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_break] = ACTIONS(1806), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_continue] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_fn] = ACTIONS(1806), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_impl] = ACTIONS(1806), + [anon_sym_let] = ACTIONS(1806), + [anon_sym_loop] = ACTIONS(1806), + [anon_sym_match] = ACTIONS(1806), + [anon_sym_mod] = ACTIONS(1806), + [anon_sym_pub] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1806), + [anon_sym_trait] = ACTIONS(1806), + [anon_sym_type] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_unsafe] = ACTIONS(1806), + [anon_sym_use] = ACTIONS(1806), + [anon_sym_while] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1804), + [anon_sym_extern] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(1804), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_AMP] = ACTIONS(1804), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_PIPE] = ACTIONS(1804), + [anon_sym_yield] = ACTIONS(1806), + [anon_sym_move] = ACTIONS(1806), + [sym_integer_literal] = ACTIONS(1804), + [aux_sym_string_literal_token1] = ACTIONS(1804), + [sym_char_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1806), + [anon_sym_false] = ACTIONS(1806), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1804), + [sym_raw_string_literal] = ACTIONS(1804), + [sym_float_literal] = ACTIONS(1804), + [sym_block_comment] = ACTIONS(3), + }, [436] = { [ts_builtin_sym_end] = ACTIONS(1808), [sym_identifier] = ACTIONS(1810), @@ -57382,83 +57366,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [445] = { - [ts_builtin_sym_end] = ACTIONS(1844), - [sym_identifier] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1844), - [anon_sym_macro_rules_BANG] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1844), - [anon_sym_LBRACE] = ACTIONS(1844), - [anon_sym_RBRACE] = ACTIONS(1844), - [anon_sym_LBRACK] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_u8] = ACTIONS(1846), - [anon_sym_i8] = ACTIONS(1846), - [anon_sym_u16] = ACTIONS(1846), - [anon_sym_i16] = ACTIONS(1846), - [anon_sym_u32] = ACTIONS(1846), - [anon_sym_i32] = ACTIONS(1846), - [anon_sym_u64] = ACTIONS(1846), - [anon_sym_i64] = ACTIONS(1846), - [anon_sym_u128] = ACTIONS(1846), - [anon_sym_i128] = ACTIONS(1846), - [anon_sym_isize] = ACTIONS(1846), - [anon_sym_usize] = ACTIONS(1846), - [anon_sym_f32] = ACTIONS(1846), - [anon_sym_f64] = ACTIONS(1846), - [anon_sym_bool] = ACTIONS(1846), - [anon_sym_str] = ACTIONS(1846), - [anon_sym_char] = ACTIONS(1846), - [anon_sym_SQUOTE] = ACTIONS(1846), - [anon_sym_async] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_fn] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_impl] = ACTIONS(1846), - [anon_sym_let] = ACTIONS(1846), - [anon_sym_loop] = ACTIONS(1846), - [anon_sym_match] = ACTIONS(1846), - [anon_sym_mod] = ACTIONS(1846), - [anon_sym_pub] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_trait] = ACTIONS(1846), - [anon_sym_type] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_unsafe] = ACTIONS(1846), - [anon_sym_use] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_POUND] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_COLON_COLON] = ACTIONS(1844), - [anon_sym_AMP] = ACTIONS(1844), - [anon_sym_DOT_DOT] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_yield] = ACTIONS(1846), - [anon_sym_move] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(1844), - [aux_sym_string_literal_token1] = ACTIONS(1844), - [sym_char_literal] = ACTIONS(1844), - [anon_sym_true] = ACTIONS(1846), - [anon_sym_false] = ACTIONS(1846), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_crate] = ACTIONS(1846), - [sym_metavariable] = ACTIONS(1844), - [sym_raw_string_literal] = ACTIONS(1844), - [sym_float_literal] = ACTIONS(1844), - [sym_block_comment] = ACTIONS(3), - }, - [446] = { [ts_builtin_sym_end] = ACTIONS(406), [sym_identifier] = ACTIONS(408), [anon_sym_SEMI] = ACTIONS(406), @@ -57535,6 +57442,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(406), [sym_block_comment] = ACTIONS(3), }, + [446] = { + [ts_builtin_sym_end] = ACTIONS(1844), + [sym_identifier] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_macro_rules_BANG] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_LBRACK] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(1844), + [anon_sym_u8] = ACTIONS(1846), + [anon_sym_i8] = ACTIONS(1846), + [anon_sym_u16] = ACTIONS(1846), + [anon_sym_i16] = ACTIONS(1846), + [anon_sym_u32] = ACTIONS(1846), + [anon_sym_i32] = ACTIONS(1846), + [anon_sym_u64] = ACTIONS(1846), + [anon_sym_i64] = ACTIONS(1846), + [anon_sym_u128] = ACTIONS(1846), + [anon_sym_i128] = ACTIONS(1846), + [anon_sym_isize] = ACTIONS(1846), + [anon_sym_usize] = ACTIONS(1846), + [anon_sym_f32] = ACTIONS(1846), + [anon_sym_f64] = ACTIONS(1846), + [anon_sym_bool] = ACTIONS(1846), + [anon_sym_str] = ACTIONS(1846), + [anon_sym_char] = ACTIONS(1846), + [anon_sym_SQUOTE] = ACTIONS(1846), + [anon_sym_async] = ACTIONS(1846), + [anon_sym_break] = ACTIONS(1846), + [anon_sym_const] = ACTIONS(1846), + [anon_sym_continue] = ACTIONS(1846), + [anon_sym_default] = ACTIONS(1846), + [anon_sym_enum] = ACTIONS(1846), + [anon_sym_fn] = ACTIONS(1846), + [anon_sym_for] = ACTIONS(1846), + [anon_sym_if] = ACTIONS(1846), + [anon_sym_impl] = ACTIONS(1846), + [anon_sym_let] = ACTIONS(1846), + [anon_sym_loop] = ACTIONS(1846), + [anon_sym_match] = ACTIONS(1846), + [anon_sym_mod] = ACTIONS(1846), + [anon_sym_pub] = ACTIONS(1846), + [anon_sym_return] = ACTIONS(1846), + [anon_sym_static] = ACTIONS(1846), + [anon_sym_struct] = ACTIONS(1846), + [anon_sym_trait] = ACTIONS(1846), + [anon_sym_type] = ACTIONS(1846), + [anon_sym_union] = ACTIONS(1846), + [anon_sym_unsafe] = ACTIONS(1846), + [anon_sym_use] = ACTIONS(1846), + [anon_sym_while] = ACTIONS(1846), + [anon_sym_POUND] = ACTIONS(1844), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_extern] = ACTIONS(1846), + [anon_sym_LT] = ACTIONS(1844), + [anon_sym_COLON_COLON] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_DOT_DOT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_yield] = ACTIONS(1846), + [anon_sym_move] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(1844), + [aux_sym_string_literal_token1] = ACTIONS(1844), + [sym_char_literal] = ACTIONS(1844), + [anon_sym_true] = ACTIONS(1846), + [anon_sym_false] = ACTIONS(1846), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1846), + [sym_super] = ACTIONS(1846), + [sym_crate] = ACTIONS(1846), + [sym_metavariable] = ACTIONS(1844), + [sym_raw_string_literal] = ACTIONS(1844), + [sym_float_literal] = ACTIONS(1844), + [sym_block_comment] = ACTIONS(3), + }, [447] = { [ts_builtin_sym_end] = ACTIONS(1848), [sym_identifier] = ACTIONS(1850), @@ -58076,64 +58060,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [454] = { [sym_attribute_item] = STATE(547), - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), [sym_match_arm] = STATE(486), - [sym_last_match_arm] = STATE(2503), - [sym_match_pattern] = STATE(2441), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1928), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), + [sym_last_match_arm] = STATE(2527), + [sym_match_pattern] = STATE(2439), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1951), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), [aux_sym_enum_variant_list_repeat1] = STATE(547), [aux_sym_match_block_repeat1] = STATE(486), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), [anon_sym_RBRACE] = ACTIONS(1876), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -58143,10 +58127,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), @@ -58230,64 +58214,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [456] = { [sym_attribute_item] = STATE(547), - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), [sym_match_arm] = STATE(484), - [sym_last_match_arm] = STATE(2373), - [sym_match_pattern] = STATE(2441), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1928), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), + [sym_last_match_arm] = STATE(2367), + [sym_match_pattern] = STATE(2439), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1951), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), [aux_sym_enum_variant_list_repeat1] = STATE(547), [aux_sym_match_block_repeat1] = STATE(484), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -58297,10 +58281,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), @@ -60308,18 +60292,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [483] = { - [sym__token_pattern] = STATE(500), - [sym_token_tree_pattern] = STATE(500), - [sym_token_binding_pattern] = STATE(500), - [sym_token_repetition_pattern] = STATE(500), - [sym__literal] = STATE(500), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_pattern_repeat1] = STATE(500), + [sym__token_pattern] = STATE(492), + [sym_token_tree_pattern] = STATE(492), + [sym_token_binding_pattern] = STATE(492), + [sym_token_repetition_pattern] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(492), [sym_identifier] = ACTIONS(1988), [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_RPAREN] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(1994), [anon_sym_LBRACK] = ACTIONS(1996), [anon_sym_DOLLAR] = ACTIONS(1998), [anon_sym_u8] = ACTIONS(1988), @@ -60374,7 +60358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(1988), [sym_super] = ACTIONS(1988), [sym_crate] = ACTIONS(1988), @@ -60385,63 +60369,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [484] = { [sym_attribute_item] = STATE(547), - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), [sym_match_arm] = STATE(502), - [sym_last_match_arm] = STATE(2371), - [sym_match_pattern] = STATE(2441), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1928), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), + [sym_last_match_arm] = STATE(2365), + [sym_match_pattern] = STATE(2439), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1951), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), [aux_sym_enum_variant_list_repeat1] = STATE(547), [aux_sym_match_block_repeat1] = STATE(502), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -60451,10 +60435,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), @@ -60464,8 +60448,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__delim_tokens] = STATE(485), [sym__non_delim_token] = STATE(485), [sym__literal] = STATE(485), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), [aux_sym_delim_token_tree_repeat1] = STATE(485), [sym_identifier] = ACTIONS(2008), [anon_sym_LPAREN] = ACTIONS(2011), @@ -60527,7 +60511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2025), [anon_sym_true] = ACTIONS(2031), [anon_sym_false] = ACTIONS(2031), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2008), [sym_super] = ACTIONS(2008), [sym_crate] = ACTIONS(2008), @@ -60537,63 +60521,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [486] = { [sym_attribute_item] = STATE(547), - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), [sym_match_arm] = STATE(502), - [sym_last_match_arm] = STATE(2511), - [sym_match_pattern] = STATE(2441), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1928), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), + [sym_last_match_arm] = STATE(2501), + [sym_match_pattern] = STATE(2439), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1951), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), [aux_sym_enum_variant_list_repeat1] = STATE(547), [aux_sym_match_block_repeat1] = STATE(502), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -60603,10 +60587,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), @@ -60615,8 +60599,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_token_tree] = STATE(487), [sym_token_repetition] = STATE(487), [sym__literal] = STATE(487), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), [aux_sym_token_tree_repeat1] = STATE(487), [sym_identifier] = ACTIONS(2034), [anon_sym_LPAREN] = ACTIONS(2037), @@ -60678,7 +60662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2051), [anon_sym_true] = ACTIONS(2057), [anon_sym_false] = ACTIONS(2057), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2034), [sym_super] = ACTIONS(2034), [sym_crate] = ACTIONS(2034), @@ -60689,63 +60673,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [488] = { [sym_attribute_item] = STATE(547), - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), [sym_match_arm] = STATE(502), - [sym_last_match_arm] = STATE(2403), - [sym_match_pattern] = STATE(2441), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1928), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), + [sym_last_match_arm] = STATE(2395), + [sym_match_pattern] = STATE(2439), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1951), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), [aux_sym_enum_variant_list_repeat1] = STATE(547), [aux_sym_match_block_repeat1] = STATE(502), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -60755,27 +60739,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [489] = { - [sym__token_pattern] = STATE(253), - [sym_token_tree_pattern] = STATE(253), - [sym_token_binding_pattern] = STATE(253), - [sym_token_repetition_pattern] = STATE(253), - [sym__literal] = STATE(253), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym__token_pattern] = STATE(252), + [sym_token_tree_pattern] = STATE(252), + [sym_token_binding_pattern] = STATE(252), + [sym_token_repetition_pattern] = STATE(252), + [sym__literal] = STATE(252), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(252), [sym_identifier] = ACTIONS(2063), [anon_sym_LPAREN] = ACTIONS(1990), [anon_sym_RPAREN] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1992), [anon_sym_LBRACK] = ACTIONS(1996), [anon_sym_DOLLAR] = ACTIONS(1998), [anon_sym_u8] = ACTIONS(2063), @@ -60830,7 +60814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2063), [sym_super] = ACTIONS(2063), [sym_crate] = ACTIONS(2063), @@ -60840,18 +60824,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [490] = { - [sym__token_pattern] = STATE(492), - [sym_token_tree_pattern] = STATE(492), - [sym_token_binding_pattern] = STATE(492), - [sym_token_repetition_pattern] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_pattern_repeat1] = STATE(492), + [sym__token_pattern] = STATE(489), + [sym_token_tree_pattern] = STATE(489), + [sym_token_binding_pattern] = STATE(489), + [sym_token_repetition_pattern] = STATE(489), + [sym__literal] = STATE(489), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(489), [sym_identifier] = ACTIONS(2067), [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(1992), [anon_sym_LBRACK] = ACTIONS(1996), [anon_sym_DOLLAR] = ACTIONS(1998), [anon_sym_u8] = ACTIONS(2067), @@ -60906,7 +60890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2067), [sym_super] = ACTIONS(2067), [sym_crate] = ACTIONS(2067), @@ -60916,17 +60900,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [491] = { - [sym__token_pattern] = STATE(253), - [sym_token_tree_pattern] = STATE(253), - [sym_token_binding_pattern] = STATE(253), - [sym_token_repetition_pattern] = STATE(253), - [sym__literal] = STATE(253), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym__token_pattern] = STATE(252), + [sym_token_tree_pattern] = STATE(252), + [sym_token_binding_pattern] = STATE(252), + [sym_token_repetition_pattern] = STATE(252), + [sym__literal] = STATE(252), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(252), [sym_identifier] = ACTIONS(2063), [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1992), [anon_sym_LBRACK] = ACTIONS(1996), [anon_sym_RBRACK] = ACTIONS(2071), [anon_sym_DOLLAR] = ACTIONS(1998), @@ -60982,7 +60966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2063), [sym_super] = ACTIONS(2063), [sym_crate] = ACTIONS(2063), @@ -60992,17 +60976,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [492] = { - [sym__token_pattern] = STATE(253), - [sym_token_tree_pattern] = STATE(253), - [sym_token_binding_pattern] = STATE(253), - [sym_token_repetition_pattern] = STATE(253), - [sym__literal] = STATE(253), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym__token_pattern] = STATE(252), + [sym_token_tree_pattern] = STATE(252), + [sym_token_binding_pattern] = STATE(252), + [sym_token_repetition_pattern] = STATE(252), + [sym__literal] = STATE(252), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(252), [sym_identifier] = ACTIONS(2063), [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1992), [anon_sym_RBRACE] = ACTIONS(2071), [anon_sym_LBRACK] = ACTIONS(1996), [anon_sym_DOLLAR] = ACTIONS(1998), @@ -61058,7 +61042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2063), [sym_super] = ACTIONS(2063), [sym_crate] = ACTIONS(2063), @@ -61073,14 +61057,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_token_binding_pattern] = STATE(491), [sym_token_repetition_pattern] = STATE(491), [sym__literal] = STATE(491), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), [aux_sym_token_tree_pattern_repeat1] = STATE(491), [sym_identifier] = ACTIONS(2073), [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1992), [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_RBRACK] = ACTIONS(2069), + [anon_sym_RBRACK] = ACTIONS(1994), [anon_sym_DOLLAR] = ACTIONS(1998), [anon_sym_u8] = ACTIONS(2073), [anon_sym_i8] = ACTIONS(2073), @@ -61134,7 +61118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2073), [sym_super] = ACTIONS(2073), [sym_crate] = ACTIONS(2073), @@ -61144,18 +61128,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [494] = { - [sym__token_pattern] = STATE(253), - [sym_token_tree_pattern] = STATE(253), - [sym_token_binding_pattern] = STATE(253), - [sym_token_repetition_pattern] = STATE(253), - [sym__literal] = STATE(253), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym__token_pattern] = STATE(252), + [sym_token_tree_pattern] = STATE(252), + [sym_token_binding_pattern] = STATE(252), + [sym_token_repetition_pattern] = STATE(252), + [sym__literal] = STATE(252), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(252), [sym_identifier] = ACTIONS(2063), [anon_sym_LPAREN] = ACTIONS(1990), [anon_sym_RPAREN] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1992), [anon_sym_LBRACK] = ACTIONS(1996), [anon_sym_DOLLAR] = ACTIONS(1998), [anon_sym_u8] = ACTIONS(2063), @@ -61210,7 +61194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2063), [sym_super] = ACTIONS(2063), [sym_crate] = ACTIONS(2063), @@ -61220,18 +61204,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [495] = { - [sym__token_pattern] = STATE(489), - [sym_token_tree_pattern] = STATE(489), - [sym_token_binding_pattern] = STATE(489), - [sym_token_repetition_pattern] = STATE(489), - [sym__literal] = STATE(489), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_pattern_repeat1] = STATE(489), + [sym__token_pattern] = STATE(499), + [sym_token_tree_pattern] = STATE(499), + [sym_token_binding_pattern] = STATE(499), + [sym_token_repetition_pattern] = STATE(499), + [sym__literal] = STATE(499), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(499), [sym_identifier] = ACTIONS(2075), [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_RPAREN] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(2077), [anon_sym_LBRACK] = ACTIONS(1996), [anon_sym_DOLLAR] = ACTIONS(1998), [anon_sym_u8] = ACTIONS(2075), @@ -61286,7 +61270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2075), [sym_super] = ACTIONS(2075), [sym_crate] = ACTIONS(2075), @@ -61296,19 +61280,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [496] = { - [sym__token_pattern] = STATE(497), - [sym_token_tree_pattern] = STATE(497), - [sym_token_binding_pattern] = STATE(497), - [sym_token_repetition_pattern] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_pattern_repeat1] = STATE(497), + [sym__token_pattern] = STATE(501), + [sym_token_tree_pattern] = STATE(501), + [sym_token_binding_pattern] = STATE(501), + [sym_token_repetition_pattern] = STATE(501), + [sym__literal] = STATE(501), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(501), [sym_identifier] = ACTIONS(2079), [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_RPAREN] = ACTIONS(2077), + [anon_sym_LBRACE] = ACTIONS(1992), [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_RBRACK] = ACTIONS(1992), [anon_sym_DOLLAR] = ACTIONS(1998), [anon_sym_u8] = ACTIONS(2079), [anon_sym_i8] = ACTIONS(2079), @@ -61362,7 +61346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2079), [sym_super] = ACTIONS(2079), [sym_crate] = ACTIONS(2079), @@ -61372,17 +61356,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [497] = { - [sym__token_pattern] = STATE(253), - [sym_token_tree_pattern] = STATE(253), - [sym_token_binding_pattern] = STATE(253), - [sym_token_repetition_pattern] = STATE(253), - [sym__literal] = STATE(253), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [sym__token_pattern] = STATE(252), + [sym_token_tree_pattern] = STATE(252), + [sym_token_binding_pattern] = STATE(252), + [sym_token_repetition_pattern] = STATE(252), + [sym__literal] = STATE(252), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(252), [sym_identifier] = ACTIONS(2063), [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1992), [anon_sym_LBRACK] = ACTIONS(1996), [anon_sym_RBRACK] = ACTIONS(2081), [anon_sym_DOLLAR] = ACTIONS(1998), @@ -61438,7 +61422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2063), [sym_super] = ACTIONS(2063), [sym_crate] = ACTIONS(2063), @@ -61448,95 +61432,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [498] = { - [sym__token_pattern] = STATE(253), - [sym_token_tree_pattern] = STATE(253), - [sym_token_binding_pattern] = STATE(253), - [sym_token_repetition_pattern] = STATE(253), - [sym__literal] = STATE(253), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_pattern_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_DOLLAR] = ACTIONS(1998), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2063), - [anon_sym_SQUOTE] = ACTIONS(2063), - [anon_sym_as] = ACTIONS(2063), - [anon_sym_async] = ACTIONS(2063), - [anon_sym_await] = 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_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_where] = ACTIONS(2063), - [anon_sym_while] = ACTIONS(2063), - [sym_mutable_specifier] = ACTIONS(2063), - [sym_integer_literal] = ACTIONS(2000), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2063), - [sym_super] = ACTIONS(2063), - [sym_crate] = ACTIONS(2063), - [sym_metavariable] = ACTIONS(2006), - [sym_raw_string_literal] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), - [sym_block_comment] = ACTIONS(3), - }, - [499] = { - [sym__token_pattern] = STATE(498), - [sym_token_tree_pattern] = STATE(498), - [sym_token_binding_pattern] = STATE(498), - [sym_token_repetition_pattern] = STATE(498), - [sym__literal] = STATE(498), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_pattern_repeat1] = STATE(498), + [sym__token_pattern] = STATE(497), + [sym_token_tree_pattern] = STATE(497), + [sym_token_binding_pattern] = STATE(497), + [sym_token_repetition_pattern] = STATE(497), + [sym__literal] = STATE(497), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(497), [sym_identifier] = ACTIONS(2083), [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_RBRACE] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1992), [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_RBRACK] = ACTIONS(2077), [anon_sym_DOLLAR] = ACTIONS(1998), [anon_sym_u8] = ACTIONS(2083), [anon_sym_i8] = ACTIONS(2083), @@ -61590,7 +61498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2083), [sym_super] = ACTIONS(2083), [sym_crate] = ACTIONS(2083), @@ -61599,19 +61507,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [500] = { - [sym__token_pattern] = STATE(253), - [sym_token_tree_pattern] = STATE(253), - [sym_token_binding_pattern] = STATE(253), - [sym_token_repetition_pattern] = STATE(253), - [sym__literal] = STATE(253), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_pattern_repeat1] = STATE(253), + [499] = { + [sym__token_pattern] = STATE(252), + [sym_token_tree_pattern] = STATE(252), + [sym_token_binding_pattern] = STATE(252), + [sym_token_repetition_pattern] = STATE(252), + [sym__literal] = STATE(252), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(252), [sym_identifier] = ACTIONS(2063), [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_RPAREN] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(2081), [anon_sym_LBRACK] = ACTIONS(1996), [anon_sym_DOLLAR] = ACTIONS(1998), [anon_sym_u8] = ACTIONS(2063), @@ -61666,7 +61574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2063), [sym_super] = ACTIONS(2063), [sym_crate] = ACTIONS(2063), @@ -61675,19 +61583,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [501] = { + [500] = { [sym__token_pattern] = STATE(494), [sym_token_tree_pattern] = STATE(494), [sym_token_binding_pattern] = STATE(494), [sym_token_repetition_pattern] = STATE(494), [sym__literal] = STATE(494), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), [aux_sym_token_tree_pattern_repeat1] = STATE(494), [sym_identifier] = ACTIONS(2085), [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_RPAREN] = ACTIONS(2069), - [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_RPAREN] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1992), [anon_sym_LBRACK] = ACTIONS(1996), [anon_sym_DOLLAR] = ACTIONS(1998), [anon_sym_u8] = ACTIONS(2085), @@ -61742,7 +61650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2085), [sym_super] = ACTIONS(2085), [sym_crate] = ACTIONS(2085), @@ -61751,33 +61659,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, + [501] = { + [sym__token_pattern] = STATE(252), + [sym_token_tree_pattern] = STATE(252), + [sym_token_binding_pattern] = STATE(252), + [sym_token_repetition_pattern] = STATE(252), + [sym__literal] = STATE(252), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_pattern_repeat1] = STATE(252), + [sym_identifier] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_RPAREN] = ACTIONS(2081), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_DOLLAR] = ACTIONS(1998), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2063), + [anon_sym_as] = ACTIONS(2063), + [anon_sym_async] = ACTIONS(2063), + [anon_sym_await] = 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_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_where] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2063), + [sym_mutable_specifier] = ACTIONS(2063), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2063), + [sym_super] = ACTIONS(2063), + [sym_crate] = ACTIONS(2063), + [sym_metavariable] = ACTIONS(2006), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, [502] = { [sym_attribute_item] = STATE(548), - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), [sym_match_arm] = STATE(502), - [sym_match_pattern] = STATE(2419), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1928), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), + [sym_match_pattern] = STATE(2441), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1951), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), [aux_sym_enum_variant_list_repeat1] = STATE(548), [aux_sym_match_block_repeat1] = STATE(502), [sym_identifier] = ACTIONS(2087), @@ -61827,13 +61811,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [503] = { - [sym_delim_token_tree] = STATE(485), - [sym__delim_tokens] = STATE(485), - [sym__non_delim_token] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_token_tree] = STATE(540), + [sym_token_repetition] = STATE(540), + [sym__literal] = STATE(540), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(540), [sym_identifier] = ACTIONS(2147), [anon_sym_LPAREN] = ACTIONS(2149), [anon_sym_RPAREN] = ACTIONS(2151), @@ -61887,105 +61870,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2147), [anon_sym_while] = ACTIONS(2147), [sym_mutable_specifier] = ACTIONS(2147), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2147), [sym_super] = ACTIONS(2147), [sym_crate] = ACTIONS(2147), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_metavariable] = ACTIONS(2159), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, [504] = { - [sym_delim_token_tree] = STATE(485), - [sym__delim_tokens] = STATE(485), - [sym__non_delim_token] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2147), + [sym_token_tree] = STATE(487), + [sym_token_repetition] = STATE(487), + [sym__literal] = STATE(487), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(487), + [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2149), [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2163), [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_RBRACK] = ACTIONS(2165), [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_u8] = ACTIONS(2147), - [anon_sym_i8] = ACTIONS(2147), - [anon_sym_u16] = ACTIONS(2147), - [anon_sym_i16] = ACTIONS(2147), - [anon_sym_u32] = ACTIONS(2147), - [anon_sym_i32] = ACTIONS(2147), - [anon_sym_u64] = ACTIONS(2147), - [anon_sym_i64] = ACTIONS(2147), - [anon_sym_u128] = ACTIONS(2147), - [anon_sym_i128] = ACTIONS(2147), - [anon_sym_isize] = ACTIONS(2147), - [anon_sym_usize] = ACTIONS(2147), - [anon_sym_f32] = ACTIONS(2147), - [anon_sym_f64] = ACTIONS(2147), - [anon_sym_bool] = ACTIONS(2147), - [anon_sym_str] = ACTIONS(2147), - [anon_sym_char] = ACTIONS(2147), - [aux_sym__non_special_token_token1] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_async] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_default] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_impl] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_mod] = ACTIONS(2147), - [anon_sym_pub] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_trait] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2147), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [sym_mutable_specifier] = ACTIONS(2147), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2147), - [sym_super] = ACTIONS(2147), - [sym_crate] = ACTIONS(2147), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = 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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2165), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, [505] = { - [sym_token_tree] = STATE(545), - [sym_token_repetition] = STATE(545), - [sym__literal] = STATE(545), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_repeat1] = STATE(545), + [sym_delim_token_tree] = STATE(531), + [sym__delim_tokens] = STATE(531), + [sym__non_delim_token] = STATE(531), + [sym__literal] = STATE(531), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(531), [sym_identifier] = ACTIONS(2167), [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_RBRACK] = ACTIONS(2175), + [anon_sym_RPAREN] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2175), [anon_sym_DOLLAR] = ACTIONS(2177), [anon_sym_u8] = ACTIONS(2167), [anon_sym_i8] = ACTIONS(2167), @@ -62034,314 +62019,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2167), [anon_sym_while] = ACTIONS(2167), [sym_mutable_specifier] = ACTIONS(2167), - [sym_integer_literal] = ACTIONS(2000), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2167), [sym_super] = ACTIONS(2167), [sym_crate] = ACTIONS(2167), - [sym_metavariable] = ACTIONS(2179), - [sym_raw_string_literal] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [506] = { - [sym_token_tree] = STATE(487), - [sym_token_repetition] = STATE(487), - [sym__literal] = STATE(487), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_repeat1] = STATE(487), - [sym_identifier] = ACTIONS(2181), + [sym_delim_token_tree] = STATE(513), + [sym__delim_tokens] = STATE(513), + [sym__non_delim_token] = STATE(513), + [sym__literal] = STATE(513), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(513), + [sym_identifier] = ACTIONS(2185), [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2177), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_fn] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_impl] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_loop] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_mod] = ACTIONS(2181), - [anon_sym_pub] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_struct] = ACTIONS(2181), - [anon_sym_trait] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_union] = ACTIONS(2181), - [anon_sym_unsafe] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [sym_mutable_specifier] = ACTIONS(2181), - [sym_integer_literal] = ACTIONS(2000), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_crate] = ACTIONS(2181), - [sym_metavariable] = ACTIONS(2185), - [sym_raw_string_literal] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), + [anon_sym_RPAREN] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2189), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_await] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_where] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [sym_mutable_specifier] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [507] = { - [sym_delim_token_tree] = STATE(514), - [sym__delim_tokens] = STATE(514), - [sym__non_delim_token] = STATE(514), - [sym__literal] = STATE(514), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(514), - [sym_identifier] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2191), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2187), - [anon_sym_SQUOTE] = ACTIONS(2187), - [anon_sym_as] = ACTIONS(2187), - [anon_sym_async] = ACTIONS(2187), - [anon_sym_await] = 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_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_where] = ACTIONS(2187), - [anon_sym_while] = ACTIONS(2187), - [sym_mutable_specifier] = ACTIONS(2187), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2187), - [sym_super] = ACTIONS(2187), - [sym_crate] = ACTIONS(2187), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_delim_token_tree] = STATE(515), + [sym__delim_tokens] = STATE(515), + [sym__non_delim_token] = STATE(515), + [sym__literal] = STATE(515), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(515), + [sym_identifier] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2193), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_await] = 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_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_where] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [sym_mutable_specifier] = ACTIONS(2191), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_crate] = ACTIONS(2191), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [508] = { - [sym_delim_token_tree] = STATE(516), - [sym__delim_tokens] = STATE(516), - [sym__non_delim_token] = STATE(516), - [sym__literal] = STATE(516), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(516), - [sym_identifier] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2195), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_as] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_await] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_default] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [anon_sym_fn] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_impl] = ACTIONS(2193), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_loop] = ACTIONS(2193), - [anon_sym_match] = ACTIONS(2193), - [anon_sym_mod] = ACTIONS(2193), - [anon_sym_pub] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(2193), - [anon_sym_trait] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_union] = ACTIONS(2193), - [anon_sym_unsafe] = ACTIONS(2193), - [anon_sym_use] = ACTIONS(2193), - [anon_sym_where] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [sym_mutable_specifier] = ACTIONS(2193), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2193), - [sym_super] = ACTIONS(2193), - [sym_crate] = ACTIONS(2193), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_delim_token_tree] = STATE(517), + [sym__delim_tokens] = STATE(517), + [sym__non_delim_token] = STATE(517), + [sym__literal] = STATE(517), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(517), + [sym_identifier] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_RBRACK] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2197), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u128] = ACTIONS(2195), + [anon_sym_i128] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_str] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [aux_sym__non_special_token_token1] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_fn] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_impl] = ACTIONS(2195), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_loop] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_mod] = ACTIONS(2195), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_trait] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_unsafe] = ACTIONS(2195), + [anon_sym_use] = ACTIONS(2195), + [anon_sym_where] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [sym_mutable_specifier] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [509] = { - [sym_delim_token_tree] = STATE(518), - [sym__delim_tokens] = STATE(518), - [sym__non_delim_token] = STATE(518), - [sym__literal] = STATE(518), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(518), - [sym_identifier] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_RBRACK] = ACTIONS(2189), - [anon_sym_DOLLAR] = ACTIONS(2199), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_default] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [anon_sym_fn] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_impl] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_loop] = ACTIONS(2197), - [anon_sym_match] = ACTIONS(2197), - [anon_sym_mod] = ACTIONS(2197), - [anon_sym_pub] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(2197), - [anon_sym_trait] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_union] = ACTIONS(2197), - [anon_sym_unsafe] = ACTIONS(2197), - [anon_sym_use] = ACTIONS(2197), - [anon_sym_where] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [sym_mutable_specifier] = ACTIONS(2197), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_crate] = ACTIONS(2197), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_RBRACK] = ACTIONS(2201), + [anon_sym_DOLLAR] = ACTIONS(2203), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(2199), + [anon_sym_await] = 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_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_where] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [sym_mutable_specifier] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2199), + [sym_super] = ACTIONS(2199), + [sym_crate] = ACTIONS(2199), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [510] = { @@ -62349,73 +62333,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__delim_tokens] = STATE(485), [sym__non_delim_token] = STATE(485), [sym__literal] = STATE(485), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), [aux_sym_delim_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_RBRACK] = ACTIONS(2201), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_u8] = ACTIONS(2147), - [anon_sym_i8] = ACTIONS(2147), - [anon_sym_u16] = ACTIONS(2147), - [anon_sym_i16] = ACTIONS(2147), - [anon_sym_u32] = ACTIONS(2147), - [anon_sym_i32] = ACTIONS(2147), - [anon_sym_u64] = ACTIONS(2147), - [anon_sym_i64] = ACTIONS(2147), - [anon_sym_u128] = ACTIONS(2147), - [anon_sym_i128] = ACTIONS(2147), - [anon_sym_isize] = ACTIONS(2147), - [anon_sym_usize] = ACTIONS(2147), - [anon_sym_f32] = ACTIONS(2147), - [anon_sym_f64] = ACTIONS(2147), - [anon_sym_bool] = ACTIONS(2147), - [anon_sym_str] = ACTIONS(2147), - [anon_sym_char] = ACTIONS(2147), - [aux_sym__non_special_token_token1] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_async] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_default] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_impl] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_mod] = ACTIONS(2147), - [anon_sym_pub] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_trait] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2147), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [sym_mutable_specifier] = ACTIONS(2147), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2147), - [sym_super] = ACTIONS(2147), - [sym_crate] = ACTIONS(2147), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_identifier] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2203), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(2199), + [anon_sym_await] = 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_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_where] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [sym_mutable_specifier] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2199), + [sym_super] = ACTIONS(2199), + [sym_crate] = ACTIONS(2199), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [511] = { @@ -62423,754 +62407,606 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__delim_tokens] = STATE(485), [sym__non_delim_token] = STATE(485), [sym__literal] = STATE(485), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), [aux_sym_delim_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_u8] = ACTIONS(2147), - [anon_sym_i8] = ACTIONS(2147), - [anon_sym_u16] = ACTIONS(2147), - [anon_sym_i16] = ACTIONS(2147), - [anon_sym_u32] = ACTIONS(2147), - [anon_sym_i32] = ACTIONS(2147), - [anon_sym_u64] = ACTIONS(2147), - [anon_sym_i64] = ACTIONS(2147), - [anon_sym_u128] = ACTIONS(2147), - [anon_sym_i128] = ACTIONS(2147), - [anon_sym_isize] = ACTIONS(2147), - [anon_sym_usize] = ACTIONS(2147), - [anon_sym_f32] = ACTIONS(2147), - [anon_sym_f64] = ACTIONS(2147), - [anon_sym_bool] = ACTIONS(2147), - [anon_sym_str] = ACTIONS(2147), - [anon_sym_char] = ACTIONS(2147), - [aux_sym__non_special_token_token1] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_async] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_default] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_impl] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_mod] = ACTIONS(2147), - [anon_sym_pub] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_trait] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2147), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [sym_mutable_specifier] = ACTIONS(2147), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2147), - [sym_super] = ACTIONS(2147), - [sym_crate] = ACTIONS(2147), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_identifier] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2203), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(2199), + [anon_sym_await] = 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_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_where] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [sym_mutable_specifier] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2199), + [sym_super] = ACTIONS(2199), + [sym_crate] = ACTIONS(2199), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [512] = { + [sym_delim_token_tree] = STATE(509), + [sym__delim_tokens] = STATE(509), + [sym__non_delim_token] = STATE(509), + [sym__literal] = STATE(509), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(509), + [sym_identifier] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_RBRACK] = ACTIONS(2207), + [anon_sym_DOLLAR] = ACTIONS(2209), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_fn] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_impl] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_loop] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_mod] = ACTIONS(2205), + [anon_sym_pub] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_trait] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_union] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_where] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [sym_mutable_specifier] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_crate] = ACTIONS(2205), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [513] = { [sym_delim_token_tree] = STATE(485), [sym__delim_tokens] = STATE(485), [sym__non_delim_token] = STATE(485), [sym__literal] = STATE(485), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), [aux_sym_delim_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_u8] = ACTIONS(2147), - [anon_sym_i8] = ACTIONS(2147), - [anon_sym_u16] = ACTIONS(2147), - [anon_sym_i16] = ACTIONS(2147), - [anon_sym_u32] = ACTIONS(2147), - [anon_sym_i32] = ACTIONS(2147), - [anon_sym_u64] = ACTIONS(2147), - [anon_sym_i64] = ACTIONS(2147), - [anon_sym_u128] = ACTIONS(2147), - [anon_sym_i128] = ACTIONS(2147), - [anon_sym_isize] = ACTIONS(2147), - [anon_sym_usize] = ACTIONS(2147), - [anon_sym_f32] = ACTIONS(2147), - [anon_sym_f64] = ACTIONS(2147), - [anon_sym_bool] = ACTIONS(2147), - [anon_sym_str] = ACTIONS(2147), - [anon_sym_char] = ACTIONS(2147), - [aux_sym__non_special_token_token1] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_async] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_default] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_impl] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_mod] = ACTIONS(2147), - [anon_sym_pub] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_trait] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2147), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [sym_mutable_specifier] = ACTIONS(2147), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2147), - [sym_super] = ACTIONS(2147), - [sym_crate] = ACTIONS(2147), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_identifier] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2203), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(2199), + [anon_sym_await] = 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_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_where] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [sym_mutable_specifier] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2199), + [sym_super] = ACTIONS(2199), + [sym_crate] = ACTIONS(2199), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [513] = { + [514] = { [sym_delim_token_tree] = STATE(510), [sym__delim_tokens] = STATE(510), [sym__non_delim_token] = STATE(510), [sym__literal] = STATE(510), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), [aux_sym_delim_token_tree_repeat1] = STATE(510), - [sym_identifier] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_RBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), - [anon_sym_as] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_await] = 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_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_where] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [sym_mutable_specifier] = ACTIONS(2203), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2203), - [sym_super] = ACTIONS(2203), - [sym_crate] = ACTIONS(2203), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_identifier] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2215), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_as] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_default] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [anon_sym_fn] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_impl] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_loop] = ACTIONS(2213), + [anon_sym_match] = ACTIONS(2213), + [anon_sym_mod] = ACTIONS(2213), + [anon_sym_pub] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_struct] = ACTIONS(2213), + [anon_sym_trait] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_union] = ACTIONS(2213), + [anon_sym_unsafe] = ACTIONS(2213), + [anon_sym_use] = ACTIONS(2213), + [anon_sym_where] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [sym_mutable_specifier] = ACTIONS(2213), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2213), + [sym_super] = ACTIONS(2213), + [sym_crate] = ACTIONS(2213), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [514] = { + [515] = { [sym_delim_token_tree] = STATE(485), [sym__delim_tokens] = STATE(485), [sym__non_delim_token] = STATE(485), [sym__literal] = STATE(485), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), [aux_sym_delim_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_u8] = ACTIONS(2147), - [anon_sym_i8] = ACTIONS(2147), - [anon_sym_u16] = ACTIONS(2147), - [anon_sym_i16] = ACTIONS(2147), - [anon_sym_u32] = ACTIONS(2147), - [anon_sym_i32] = ACTIONS(2147), - [anon_sym_u64] = ACTIONS(2147), - [anon_sym_i64] = ACTIONS(2147), - [anon_sym_u128] = ACTIONS(2147), - [anon_sym_i128] = ACTIONS(2147), - [anon_sym_isize] = ACTIONS(2147), - [anon_sym_usize] = ACTIONS(2147), - [anon_sym_f32] = ACTIONS(2147), - [anon_sym_f64] = ACTIONS(2147), - [anon_sym_bool] = ACTIONS(2147), - [anon_sym_str] = ACTIONS(2147), - [anon_sym_char] = ACTIONS(2147), - [aux_sym__non_special_token_token1] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_async] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_default] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_impl] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_mod] = ACTIONS(2147), - [anon_sym_pub] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_trait] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2147), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [sym_mutable_specifier] = ACTIONS(2147), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2147), - [sym_super] = ACTIONS(2147), - [sym_crate] = ACTIONS(2147), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_identifier] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2203), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(2199), + [anon_sym_await] = 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_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_where] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [sym_mutable_specifier] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2199), + [sym_super] = ACTIONS(2199), + [sym_crate] = ACTIONS(2199), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [515] = { + [516] = { [sym_delim_token_tree] = STATE(511), [sym__delim_tokens] = STATE(511), [sym__non_delim_token] = STATE(511), [sym__literal] = STATE(511), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), [aux_sym_delim_token_tree_repeat1] = STATE(511), - [sym_identifier] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2213), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2211), - [anon_sym_SQUOTE] = ACTIONS(2211), - [anon_sym_as] = ACTIONS(2211), - [anon_sym_async] = ACTIONS(2211), - [anon_sym_await] = 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_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_where] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2211), - [sym_mutable_specifier] = ACTIONS(2211), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2211), - [sym_super] = ACTIONS(2211), - [sym_crate] = ACTIONS(2211), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_identifier] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2219), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2217), + [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_as] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_await] = ACTIONS(2217), + [anon_sym_break] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(2217), + [anon_sym_continue] = ACTIONS(2217), + [anon_sym_default] = ACTIONS(2217), + [anon_sym_enum] = ACTIONS(2217), + [anon_sym_fn] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_impl] = ACTIONS(2217), + [anon_sym_let] = ACTIONS(2217), + [anon_sym_loop] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_mod] = ACTIONS(2217), + [anon_sym_pub] = ACTIONS(2217), + [anon_sym_return] = ACTIONS(2217), + [anon_sym_static] = ACTIONS(2217), + [anon_sym_struct] = ACTIONS(2217), + [anon_sym_trait] = ACTIONS(2217), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_union] = ACTIONS(2217), + [anon_sym_unsafe] = ACTIONS(2217), + [anon_sym_use] = ACTIONS(2217), + [anon_sym_where] = ACTIONS(2217), + [anon_sym_while] = ACTIONS(2217), + [sym_mutable_specifier] = ACTIONS(2217), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2217), + [sym_super] = ACTIONS(2217), + [sym_crate] = ACTIONS(2217), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [516] = { + [517] = { [sym_delim_token_tree] = STATE(485), [sym__delim_tokens] = STATE(485), [sym__non_delim_token] = STATE(485), [sym__literal] = STATE(485), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), [aux_sym_delim_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2209), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_u8] = ACTIONS(2147), - [anon_sym_i8] = ACTIONS(2147), - [anon_sym_u16] = ACTIONS(2147), - [anon_sym_i16] = ACTIONS(2147), - [anon_sym_u32] = ACTIONS(2147), - [anon_sym_i32] = ACTIONS(2147), - [anon_sym_u64] = ACTIONS(2147), - [anon_sym_i64] = ACTIONS(2147), - [anon_sym_u128] = ACTIONS(2147), - [anon_sym_i128] = ACTIONS(2147), - [anon_sym_isize] = ACTIONS(2147), - [anon_sym_usize] = ACTIONS(2147), - [anon_sym_f32] = ACTIONS(2147), - [anon_sym_f64] = ACTIONS(2147), - [anon_sym_bool] = ACTIONS(2147), - [anon_sym_str] = ACTIONS(2147), - [anon_sym_char] = ACTIONS(2147), - [aux_sym__non_special_token_token1] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_async] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_default] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_impl] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_mod] = ACTIONS(2147), - [anon_sym_pub] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_trait] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2147), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [sym_mutable_specifier] = ACTIONS(2147), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2147), - [sym_super] = ACTIONS(2147), - [sym_crate] = ACTIONS(2147), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), - [sym_block_comment] = ACTIONS(3), - }, - [517] = { - [sym_delim_token_tree] = STATE(512), - [sym__delim_tokens] = STATE(512), - [sym__non_delim_token] = STATE(512), - [sym__literal] = STATE(512), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(512), - [sym_identifier] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2217), - [anon_sym_u8] = ACTIONS(2215), - [anon_sym_i8] = ACTIONS(2215), - [anon_sym_u16] = ACTIONS(2215), - [anon_sym_i16] = ACTIONS(2215), - [anon_sym_u32] = ACTIONS(2215), - [anon_sym_i32] = ACTIONS(2215), - [anon_sym_u64] = ACTIONS(2215), - [anon_sym_i64] = ACTIONS(2215), - [anon_sym_u128] = ACTIONS(2215), - [anon_sym_i128] = ACTIONS(2215), - [anon_sym_isize] = ACTIONS(2215), - [anon_sym_usize] = ACTIONS(2215), - [anon_sym_f32] = ACTIONS(2215), - [anon_sym_f64] = ACTIONS(2215), - [anon_sym_bool] = ACTIONS(2215), - [anon_sym_str] = ACTIONS(2215), - [anon_sym_char] = ACTIONS(2215), - [aux_sym__non_special_token_token1] = ACTIONS(2215), - [anon_sym_SQUOTE] = ACTIONS(2215), - [anon_sym_as] = ACTIONS(2215), - [anon_sym_async] = ACTIONS(2215), - [anon_sym_await] = ACTIONS(2215), - [anon_sym_break] = ACTIONS(2215), - [anon_sym_const] = ACTIONS(2215), - [anon_sym_continue] = ACTIONS(2215), - [anon_sym_default] = ACTIONS(2215), - [anon_sym_enum] = ACTIONS(2215), - [anon_sym_fn] = ACTIONS(2215), - [anon_sym_for] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2215), - [anon_sym_impl] = ACTIONS(2215), - [anon_sym_let] = ACTIONS(2215), - [anon_sym_loop] = ACTIONS(2215), - [anon_sym_match] = ACTIONS(2215), - [anon_sym_mod] = ACTIONS(2215), - [anon_sym_pub] = ACTIONS(2215), - [anon_sym_return] = ACTIONS(2215), - [anon_sym_static] = ACTIONS(2215), - [anon_sym_struct] = ACTIONS(2215), - [anon_sym_trait] = ACTIONS(2215), - [anon_sym_type] = ACTIONS(2215), - [anon_sym_union] = ACTIONS(2215), - [anon_sym_unsafe] = ACTIONS(2215), - [anon_sym_use] = ACTIONS(2215), - [anon_sym_where] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2215), - [sym_mutable_specifier] = ACTIONS(2215), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2215), - [sym_super] = ACTIONS(2215), - [sym_crate] = ACTIONS(2215), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_identifier] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_RBRACK] = ACTIONS(2211), + [anon_sym_DOLLAR] = ACTIONS(2203), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(2199), + [anon_sym_await] = 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_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_where] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [sym_mutable_specifier] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2199), + [sym_super] = ACTIONS(2199), + [sym_crate] = ACTIONS(2199), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [518] = { - [sym_delim_token_tree] = STATE(485), - [sym__delim_tokens] = STATE(485), - [sym__non_delim_token] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_RBRACK] = ACTIONS(2209), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_u8] = ACTIONS(2147), - [anon_sym_i8] = ACTIONS(2147), - [anon_sym_u16] = ACTIONS(2147), - [anon_sym_i16] = ACTIONS(2147), - [anon_sym_u32] = ACTIONS(2147), - [anon_sym_i32] = ACTIONS(2147), - [anon_sym_u64] = ACTIONS(2147), - [anon_sym_i64] = ACTIONS(2147), - [anon_sym_u128] = ACTIONS(2147), - [anon_sym_i128] = ACTIONS(2147), - [anon_sym_isize] = ACTIONS(2147), - [anon_sym_usize] = ACTIONS(2147), - [anon_sym_f32] = ACTIONS(2147), - [anon_sym_f64] = ACTIONS(2147), - [anon_sym_bool] = ACTIONS(2147), - [anon_sym_str] = ACTIONS(2147), - [anon_sym_char] = ACTIONS(2147), - [aux_sym__non_special_token_token1] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_async] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_default] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_impl] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_mod] = ACTIONS(2147), - [anon_sym_pub] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_trait] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2147), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [sym_mutable_specifier] = ACTIONS(2147), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2147), - [sym_super] = ACTIONS(2147), - [sym_crate] = ACTIONS(2147), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_delim_token_tree] = STATE(521), + [sym__delim_tokens] = STATE(521), + [sym__non_delim_token] = STATE(521), + [sym__literal] = STATE(521), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(521), + [sym_identifier] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2225), + [anon_sym_u8] = ACTIONS(2221), + [anon_sym_i8] = ACTIONS(2221), + [anon_sym_u16] = ACTIONS(2221), + [anon_sym_i16] = ACTIONS(2221), + [anon_sym_u32] = ACTIONS(2221), + [anon_sym_i32] = ACTIONS(2221), + [anon_sym_u64] = ACTIONS(2221), + [anon_sym_i64] = ACTIONS(2221), + [anon_sym_u128] = ACTIONS(2221), + [anon_sym_i128] = ACTIONS(2221), + [anon_sym_isize] = ACTIONS(2221), + [anon_sym_usize] = ACTIONS(2221), + [anon_sym_f32] = ACTIONS(2221), + [anon_sym_f64] = ACTIONS(2221), + [anon_sym_bool] = ACTIONS(2221), + [anon_sym_str] = ACTIONS(2221), + [anon_sym_char] = ACTIONS(2221), + [aux_sym__non_special_token_token1] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_as] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_fn] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_impl] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_loop] = ACTIONS(2221), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_mod] = ACTIONS(2221), + [anon_sym_pub] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_struct] = ACTIONS(2221), + [anon_sym_trait] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(2221), + [anon_sym_unsafe] = ACTIONS(2221), + [anon_sym_use] = ACTIONS(2221), + [anon_sym_where] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [sym_mutable_specifier] = ACTIONS(2221), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_crate] = ACTIONS(2221), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [519] = { - [sym_delim_token_tree] = STATE(503), - [sym__delim_tokens] = STATE(503), - [sym__non_delim_token] = STATE(503), - [sym__literal] = STATE(503), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(503), - [sym_identifier] = ACTIONS(2219), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2223), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2219), - [anon_sym_SQUOTE] = ACTIONS(2219), - [anon_sym_as] = ACTIONS(2219), - [anon_sym_async] = ACTIONS(2219), - [anon_sym_await] = 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_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_where] = ACTIONS(2219), - [anon_sym_while] = ACTIONS(2219), - [sym_mutable_specifier] = ACTIONS(2219), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2219), - [sym_super] = ACTIONS(2219), - [sym_crate] = ACTIONS(2219), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), - [sym_block_comment] = ACTIONS(3), - }, - [520] = { - [sym_delim_token_tree] = STATE(485), - [sym__delim_tokens] = STATE(485), - [sym__non_delim_token] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_RBRACK] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_u8] = ACTIONS(2147), - [anon_sym_i8] = ACTIONS(2147), - [anon_sym_u16] = ACTIONS(2147), - [anon_sym_i16] = ACTIONS(2147), - [anon_sym_u32] = ACTIONS(2147), - [anon_sym_i32] = ACTIONS(2147), - [anon_sym_u64] = ACTIONS(2147), - [anon_sym_i64] = ACTIONS(2147), - [anon_sym_u128] = ACTIONS(2147), - [anon_sym_i128] = ACTIONS(2147), - [anon_sym_isize] = ACTIONS(2147), - [anon_sym_usize] = ACTIONS(2147), - [anon_sym_f32] = ACTIONS(2147), - [anon_sym_f64] = ACTIONS(2147), - [anon_sym_bool] = ACTIONS(2147), - [anon_sym_str] = ACTIONS(2147), - [anon_sym_char] = ACTIONS(2147), - [aux_sym__non_special_token_token1] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_async] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_default] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_impl] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_mod] = ACTIONS(2147), - [anon_sym_pub] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_trait] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2147), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [sym_mutable_specifier] = ACTIONS(2147), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2147), - [sym_super] = ACTIONS(2147), - [sym_crate] = ACTIONS(2147), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), - [sym_block_comment] = ACTIONS(3), - }, - [521] = { - [sym_delim_token_tree] = STATE(526), - [sym__delim_tokens] = STATE(526), - [sym__non_delim_token] = STATE(526), - [sym__literal] = STATE(526), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(526), + [sym_delim_token_tree] = STATE(525), + [sym__delim_tokens] = STATE(525), + [sym__non_delim_token] = STATE(525), + [sym__literal] = STATE(525), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(525), [sym_identifier] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2175), [anon_sym_DOLLAR] = ACTIONS(2229), [anon_sym_u8] = ACTIONS(2227), [anon_sym_i8] = ACTIONS(2227), @@ -63219,32 +63055,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2227), [anon_sym_while] = ACTIONS(2227), [sym_mutable_specifier] = ACTIONS(2227), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2227), [sym_super] = ACTIONS(2227), [sym_crate] = ACTIONS(2227), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [522] = { - [sym_delim_token_tree] = STATE(528), - [sym__delim_tokens] = STATE(528), - [sym__non_delim_token] = STATE(528), - [sym__literal] = STATE(528), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(528), + [520] = { + [sym_delim_token_tree] = STATE(527), + [sym__delim_tokens] = STATE(527), + [sym__non_delim_token] = STATE(527), + [sym__literal] = STATE(527), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(527), [sym_identifier] = ACTIONS(2231), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_RBRACK] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_RBRACK] = ACTIONS(2223), [anon_sym_DOLLAR] = ACTIONS(2233), [anon_sym_u8] = ACTIONS(2231), [anon_sym_i8] = ACTIONS(2231), @@ -63293,625 +63129,550 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2231), [anon_sym_while] = ACTIONS(2231), [sym_mutable_specifier] = ACTIONS(2231), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2231), [sym_super] = ACTIONS(2231), [sym_crate] = ACTIONS(2231), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [523] = { - [sym_token_tree] = STATE(506), - [sym_token_repetition] = STATE(506), - [sym__literal] = STATE(506), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2235), + [521] = { + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2199), [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2177), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2000), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2237), - [sym_raw_string_literal] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), + [anon_sym_RPAREN] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2203), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(2199), + [anon_sym_await] = 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_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_where] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [sym_mutable_specifier] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2199), + [sym_super] = ACTIONS(2199), + [sym_crate] = ACTIONS(2199), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [524] = { - [sym_token_tree] = STATE(540), - [sym_token_repetition] = STATE(540), - [sym__literal] = STATE(540), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_repeat1] = STATE(540), - [sym_identifier] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2177), - [anon_sym_u8] = ACTIONS(2239), - [anon_sym_i8] = ACTIONS(2239), - [anon_sym_u16] = ACTIONS(2239), - [anon_sym_i16] = ACTIONS(2239), - [anon_sym_u32] = ACTIONS(2239), - [anon_sym_i32] = ACTIONS(2239), - [anon_sym_u64] = ACTIONS(2239), - [anon_sym_i64] = ACTIONS(2239), - [anon_sym_u128] = ACTIONS(2239), - [anon_sym_i128] = ACTIONS(2239), - [anon_sym_isize] = ACTIONS(2239), - [anon_sym_usize] = ACTIONS(2239), - [anon_sym_f32] = ACTIONS(2239), - [anon_sym_f64] = ACTIONS(2239), - [anon_sym_bool] = ACTIONS(2239), - [anon_sym_str] = ACTIONS(2239), - [anon_sym_char] = ACTIONS(2239), - [aux_sym__non_special_token_token1] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_async] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(2239), - [anon_sym_fn] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_impl] = ACTIONS(2239), - [anon_sym_let] = ACTIONS(2239), - [anon_sym_loop] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_mod] = ACTIONS(2239), - [anon_sym_pub] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_static] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_trait] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2239), - [anon_sym_union] = ACTIONS(2239), - [anon_sym_unsafe] = ACTIONS(2239), - [anon_sym_use] = ACTIONS(2239), - [anon_sym_where] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2239), - [sym_mutable_specifier] = ACTIONS(2239), + [522] = { + [sym_token_tree] = STATE(545), + [sym_token_repetition] = STATE(545), + [sym__literal] = STATE(545), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(545), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_RBRACK] = ACTIONS(2239), + [anon_sym_DOLLAR] = ACTIONS(2157), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_where] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [sym_mutable_specifier] = ACTIONS(2237), [sym_integer_literal] = ACTIONS(2000), [aux_sym_string_literal_token1] = ACTIONS(2002), [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2239), - [sym_super] = ACTIONS(2239), - [sym_crate] = ACTIONS(2239), - [sym_metavariable] = ACTIONS(2243), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_metavariable] = ACTIONS(2241), [sym_raw_string_literal] = ACTIONS(2000), [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [525] = { - [sym_token_tree] = STATE(541), - [sym_token_repetition] = STATE(541), - [sym__literal] = STATE(541), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_repeat1] = STATE(541), - [sym_identifier] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2177), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_as] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - [anon_sym_fn] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_impl] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_loop] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_mod] = ACTIONS(2245), - [anon_sym_pub] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_static] = ACTIONS(2245), - [anon_sym_struct] = ACTIONS(2245), - [anon_sym_trait] = ACTIONS(2245), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_union] = ACTIONS(2245), - [anon_sym_unsafe] = ACTIONS(2245), - [anon_sym_use] = ACTIONS(2245), - [anon_sym_where] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [sym_mutable_specifier] = ACTIONS(2245), + [523] = { + [sym_token_tree] = STATE(504), + [sym_token_repetition] = STATE(504), + [sym__literal] = STATE(504), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(504), + [sym_identifier] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [anon_sym_u8] = ACTIONS(2243), + [anon_sym_i8] = ACTIONS(2243), + [anon_sym_u16] = ACTIONS(2243), + [anon_sym_i16] = ACTIONS(2243), + [anon_sym_u32] = ACTIONS(2243), + [anon_sym_i32] = ACTIONS(2243), + [anon_sym_u64] = ACTIONS(2243), + [anon_sym_i64] = ACTIONS(2243), + [anon_sym_u128] = ACTIONS(2243), + [anon_sym_i128] = ACTIONS(2243), + [anon_sym_isize] = ACTIONS(2243), + [anon_sym_usize] = ACTIONS(2243), + [anon_sym_f32] = ACTIONS(2243), + [anon_sym_f64] = ACTIONS(2243), + [anon_sym_bool] = ACTIONS(2243), + [anon_sym_str] = ACTIONS(2243), + [anon_sym_char] = ACTIONS(2243), + [aux_sym__non_special_token_token1] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_as] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(2243), + [anon_sym_await] = ACTIONS(2243), + [anon_sym_break] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(2243), + [anon_sym_continue] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(2243), + [anon_sym_enum] = ACTIONS(2243), + [anon_sym_fn] = ACTIONS(2243), + [anon_sym_for] = ACTIONS(2243), + [anon_sym_if] = ACTIONS(2243), + [anon_sym_impl] = ACTIONS(2243), + [anon_sym_let] = ACTIONS(2243), + [anon_sym_loop] = ACTIONS(2243), + [anon_sym_match] = ACTIONS(2243), + [anon_sym_mod] = ACTIONS(2243), + [anon_sym_pub] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2243), + [anon_sym_static] = ACTIONS(2243), + [anon_sym_struct] = ACTIONS(2243), + [anon_sym_trait] = ACTIONS(2243), + [anon_sym_type] = ACTIONS(2243), + [anon_sym_union] = ACTIONS(2243), + [anon_sym_unsafe] = ACTIONS(2243), + [anon_sym_use] = ACTIONS(2243), + [anon_sym_where] = ACTIONS(2243), + [anon_sym_while] = ACTIONS(2243), + [sym_mutable_specifier] = ACTIONS(2243), [sym_integer_literal] = ACTIONS(2000), [aux_sym_string_literal_token1] = ACTIONS(2002), [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2245), - [sym_super] = ACTIONS(2245), - [sym_crate] = ACTIONS(2245), - [sym_metavariable] = ACTIONS(2247), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2243), + [sym_super] = ACTIONS(2243), + [sym_crate] = ACTIONS(2243), + [sym_metavariable] = ACTIONS(2245), [sym_raw_string_literal] = ACTIONS(2000), [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [526] = { - [sym_delim_token_tree] = STATE(485), - [sym__delim_tokens] = STATE(485), - [sym__non_delim_token] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2147), + [524] = { + [sym_token_tree] = STATE(534), + [sym_token_repetition] = STATE(534), + [sym__literal] = STATE(534), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(534), + [sym_identifier] = ACTIONS(2247), [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_RPAREN] = ACTIONS(2239), [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2151), [anon_sym_LBRACK] = ACTIONS(2155), [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_u8] = ACTIONS(2147), - [anon_sym_i8] = ACTIONS(2147), - [anon_sym_u16] = ACTIONS(2147), - [anon_sym_i16] = ACTIONS(2147), - [anon_sym_u32] = ACTIONS(2147), - [anon_sym_i32] = ACTIONS(2147), - [anon_sym_u64] = ACTIONS(2147), - [anon_sym_i64] = ACTIONS(2147), - [anon_sym_u128] = ACTIONS(2147), - [anon_sym_i128] = ACTIONS(2147), - [anon_sym_isize] = ACTIONS(2147), - [anon_sym_usize] = ACTIONS(2147), - [anon_sym_f32] = ACTIONS(2147), - [anon_sym_f64] = ACTIONS(2147), - [anon_sym_bool] = ACTIONS(2147), - [anon_sym_str] = ACTIONS(2147), - [anon_sym_char] = ACTIONS(2147), - [aux_sym__non_special_token_token1] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_async] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_default] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_impl] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_mod] = ACTIONS(2147), - [anon_sym_pub] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_trait] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2147), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [sym_mutable_specifier] = ACTIONS(2147), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2147), - [sym_super] = ACTIONS(2147), - [sym_crate] = ACTIONS(2147), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), - [sym_block_comment] = ACTIONS(3), - }, - [527] = { - [sym_token_tree] = STATE(542), - [sym_token_repetition] = STATE(542), - [sym__literal] = STATE(542), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_repeat1] = STATE(542), - [sym_identifier] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_RBRACK] = ACTIONS(2241), - [anon_sym_DOLLAR] = ACTIONS(2177), - [anon_sym_u8] = ACTIONS(2249), - [anon_sym_i8] = ACTIONS(2249), - [anon_sym_u16] = ACTIONS(2249), - [anon_sym_i16] = ACTIONS(2249), - [anon_sym_u32] = ACTIONS(2249), - [anon_sym_i32] = ACTIONS(2249), - [anon_sym_u64] = ACTIONS(2249), - [anon_sym_i64] = ACTIONS(2249), - [anon_sym_u128] = ACTIONS(2249), - [anon_sym_i128] = ACTIONS(2249), - [anon_sym_isize] = ACTIONS(2249), - [anon_sym_usize] = ACTIONS(2249), - [anon_sym_f32] = ACTIONS(2249), - [anon_sym_f64] = ACTIONS(2249), - [anon_sym_bool] = ACTIONS(2249), - [anon_sym_str] = ACTIONS(2249), - [anon_sym_char] = ACTIONS(2249), - [aux_sym__non_special_token_token1] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_as] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_await] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_default] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [anon_sym_fn] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_impl] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2249), - [anon_sym_loop] = ACTIONS(2249), - [anon_sym_match] = ACTIONS(2249), - [anon_sym_mod] = ACTIONS(2249), - [anon_sym_pub] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2249), - [anon_sym_struct] = ACTIONS(2249), - [anon_sym_trait] = ACTIONS(2249), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_union] = ACTIONS(2249), - [anon_sym_unsafe] = ACTIONS(2249), - [anon_sym_use] = ACTIONS(2249), - [anon_sym_where] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [sym_mutable_specifier] = ACTIONS(2249), + [anon_sym_u8] = ACTIONS(2247), + [anon_sym_i8] = ACTIONS(2247), + [anon_sym_u16] = ACTIONS(2247), + [anon_sym_i16] = ACTIONS(2247), + [anon_sym_u32] = ACTIONS(2247), + [anon_sym_i32] = ACTIONS(2247), + [anon_sym_u64] = ACTIONS(2247), + [anon_sym_i64] = ACTIONS(2247), + [anon_sym_u128] = ACTIONS(2247), + [anon_sym_i128] = ACTIONS(2247), + [anon_sym_isize] = ACTIONS(2247), + [anon_sym_usize] = ACTIONS(2247), + [anon_sym_f32] = ACTIONS(2247), + [anon_sym_f64] = ACTIONS(2247), + [anon_sym_bool] = ACTIONS(2247), + [anon_sym_str] = ACTIONS(2247), + [anon_sym_char] = ACTIONS(2247), + [aux_sym__non_special_token_token1] = ACTIONS(2247), + [anon_sym_SQUOTE] = ACTIONS(2247), + [anon_sym_as] = ACTIONS(2247), + [anon_sym_async] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2247), + [anon_sym_break] = ACTIONS(2247), + [anon_sym_const] = ACTIONS(2247), + [anon_sym_continue] = ACTIONS(2247), + [anon_sym_default] = ACTIONS(2247), + [anon_sym_enum] = ACTIONS(2247), + [anon_sym_fn] = ACTIONS(2247), + [anon_sym_for] = ACTIONS(2247), + [anon_sym_if] = ACTIONS(2247), + [anon_sym_impl] = ACTIONS(2247), + [anon_sym_let] = ACTIONS(2247), + [anon_sym_loop] = ACTIONS(2247), + [anon_sym_match] = ACTIONS(2247), + [anon_sym_mod] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2247), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_static] = ACTIONS(2247), + [anon_sym_struct] = ACTIONS(2247), + [anon_sym_trait] = ACTIONS(2247), + [anon_sym_type] = ACTIONS(2247), + [anon_sym_union] = ACTIONS(2247), + [anon_sym_unsafe] = ACTIONS(2247), + [anon_sym_use] = ACTIONS(2247), + [anon_sym_where] = ACTIONS(2247), + [anon_sym_while] = ACTIONS(2247), + [sym_mutable_specifier] = ACTIONS(2247), [sym_integer_literal] = ACTIONS(2000), [aux_sym_string_literal_token1] = ACTIONS(2002), [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2249), - [sym_super] = ACTIONS(2249), - [sym_crate] = ACTIONS(2249), - [sym_metavariable] = ACTIONS(2251), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2247), + [sym_super] = ACTIONS(2247), + [sym_crate] = ACTIONS(2247), + [sym_metavariable] = ACTIONS(2249), [sym_raw_string_literal] = ACTIONS(2000), [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [528] = { + [525] = { [sym_delim_token_tree] = STATE(485), [sym__delim_tokens] = STATE(485), [sym__non_delim_token] = STATE(485), [sym__literal] = STATE(485), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), [aux_sym_delim_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2147), + [sym_identifier] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2203), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(2199), + [anon_sym_await] = 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_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_where] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [sym_mutable_specifier] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2199), + [sym_super] = ACTIONS(2199), + [sym_crate] = ACTIONS(2199), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [526] = { + [sym_token_tree] = STATE(542), + [sym_token_repetition] = STATE(542), + [sym__literal] = STATE(542), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(542), + [sym_identifier] = ACTIONS(2251), [anon_sym_LPAREN] = ACTIONS(2149), [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2151), [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_RBRACK] = ACTIONS(2151), [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_u8] = ACTIONS(2147), - [anon_sym_i8] = ACTIONS(2147), - [anon_sym_u16] = ACTIONS(2147), - [anon_sym_i16] = ACTIONS(2147), - [anon_sym_u32] = ACTIONS(2147), - [anon_sym_i32] = ACTIONS(2147), - [anon_sym_u64] = ACTIONS(2147), - [anon_sym_i64] = ACTIONS(2147), - [anon_sym_u128] = ACTIONS(2147), - [anon_sym_i128] = ACTIONS(2147), - [anon_sym_isize] = ACTIONS(2147), - [anon_sym_usize] = ACTIONS(2147), - [anon_sym_f32] = ACTIONS(2147), - [anon_sym_f64] = ACTIONS(2147), - [anon_sym_bool] = ACTIONS(2147), - [anon_sym_str] = ACTIONS(2147), - [anon_sym_char] = ACTIONS(2147), - [aux_sym__non_special_token_token1] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_async] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_default] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_impl] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_mod] = ACTIONS(2147), - [anon_sym_pub] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_trait] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2147), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [sym_mutable_specifier] = ACTIONS(2147), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2147), - [sym_super] = ACTIONS(2147), - [sym_crate] = ACTIONS(2147), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), - [sym_block_comment] = ACTIONS(3), - }, - [529] = { - [sym_token_tree] = STATE(487), - [sym_token_repetition] = STATE(487), - [sym__literal] = STATE(487), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_repeat1] = STATE(487), - [sym_identifier] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2177), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_fn] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_impl] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_loop] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_mod] = ACTIONS(2181), - [anon_sym_pub] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_struct] = ACTIONS(2181), - [anon_sym_trait] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_union] = ACTIONS(2181), - [anon_sym_unsafe] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [sym_mutable_specifier] = ACTIONS(2181), + [anon_sym_u8] = ACTIONS(2251), + [anon_sym_i8] = ACTIONS(2251), + [anon_sym_u16] = ACTIONS(2251), + [anon_sym_i16] = ACTIONS(2251), + [anon_sym_u32] = ACTIONS(2251), + [anon_sym_i32] = ACTIONS(2251), + [anon_sym_u64] = ACTIONS(2251), + [anon_sym_i64] = ACTIONS(2251), + [anon_sym_u128] = ACTIONS(2251), + [anon_sym_i128] = ACTIONS(2251), + [anon_sym_isize] = ACTIONS(2251), + [anon_sym_usize] = ACTIONS(2251), + [anon_sym_f32] = ACTIONS(2251), + [anon_sym_f64] = ACTIONS(2251), + [anon_sym_bool] = ACTIONS(2251), + [anon_sym_str] = ACTIONS(2251), + [anon_sym_char] = ACTIONS(2251), + [aux_sym__non_special_token_token1] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_as] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_enum] = ACTIONS(2251), + [anon_sym_fn] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_impl] = ACTIONS(2251), + [anon_sym_let] = ACTIONS(2251), + [anon_sym_loop] = ACTIONS(2251), + [anon_sym_match] = ACTIONS(2251), + [anon_sym_mod] = ACTIONS(2251), + [anon_sym_pub] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_static] = ACTIONS(2251), + [anon_sym_struct] = ACTIONS(2251), + [anon_sym_trait] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_union] = ACTIONS(2251), + [anon_sym_unsafe] = ACTIONS(2251), + [anon_sym_use] = ACTIONS(2251), + [anon_sym_where] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [sym_mutable_specifier] = ACTIONS(2251), [sym_integer_literal] = ACTIONS(2000), [aux_sym_string_literal_token1] = ACTIONS(2002), [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_crate] = ACTIONS(2181), - [sym_metavariable] = ACTIONS(2185), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2251), + [sym_super] = ACTIONS(2251), + [sym_crate] = ACTIONS(2251), + [sym_metavariable] = ACTIONS(2253), [sym_raw_string_literal] = ACTIONS(2000), [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [530] = { + [527] = { [sym_delim_token_tree] = STATE(485), [sym__delim_tokens] = STATE(485), [sym__non_delim_token] = STATE(485), [sym__literal] = STATE(485), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), [aux_sym_delim_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_u8] = ACTIONS(2147), - [anon_sym_i8] = ACTIONS(2147), - [anon_sym_u16] = ACTIONS(2147), - [anon_sym_i16] = ACTIONS(2147), - [anon_sym_u32] = ACTIONS(2147), - [anon_sym_i32] = ACTIONS(2147), - [anon_sym_u64] = ACTIONS(2147), - [anon_sym_i64] = ACTIONS(2147), - [anon_sym_u128] = ACTIONS(2147), - [anon_sym_i128] = ACTIONS(2147), - [anon_sym_isize] = ACTIONS(2147), - [anon_sym_usize] = ACTIONS(2147), - [anon_sym_f32] = ACTIONS(2147), - [anon_sym_f64] = ACTIONS(2147), - [anon_sym_bool] = ACTIONS(2147), - [anon_sym_str] = ACTIONS(2147), - [anon_sym_char] = ACTIONS(2147), - [aux_sym__non_special_token_token1] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_async] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_default] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_impl] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_mod] = ACTIONS(2147), - [anon_sym_pub] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_trait] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2147), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [sym_mutable_specifier] = ACTIONS(2147), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2147), - [sym_super] = ACTIONS(2147), - [sym_crate] = ACTIONS(2147), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_identifier] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_RBRACK] = ACTIONS(2235), + [anon_sym_DOLLAR] = ACTIONS(2203), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(2199), + [anon_sym_await] = 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_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_where] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [sym_mutable_specifier] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2199), + [sym_super] = ACTIONS(2199), + [sym_crate] = ACTIONS(2199), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [531] = { - [sym_delim_token_tree] = STATE(535), - [sym__delim_tokens] = STATE(535), - [sym__non_delim_token] = STATE(535), - [sym__literal] = STATE(535), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(535), + [528] = { + [sym_token_tree] = STATE(543), + [sym_token_repetition] = STATE(543), + [sym__literal] = STATE(543), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(543), [sym_identifier] = ACTIONS(2255), [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(2257), [anon_sym_LBRACE] = ACTIONS(2153), [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2259), + [anon_sym_RBRACK] = ACTIONS(2151), + [anon_sym_DOLLAR] = ACTIONS(2157), [anon_sym_u8] = ACTIONS(2255), [anon_sym_i8] = ACTIONS(2255), [anon_sym_u16] = ACTIONS(2255), @@ -63959,180 +63720,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2255), [anon_sym_while] = ACTIONS(2255), [sym_mutable_specifier] = ACTIONS(2255), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2255), [sym_super] = ACTIONS(2255), [sym_crate] = ACTIONS(2255), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_metavariable] = ACTIONS(2257), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [532] = { - [sym_delim_token_tree] = STATE(485), - [sym__delim_tokens] = STATE(485), - [sym__non_delim_token] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2147), + [529] = { + [sym_token_tree] = STATE(487), + [sym_token_repetition] = STATE(487), + [sym__literal] = STATE(487), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(487), + [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(2165), + [anon_sym_RPAREN] = ACTIONS(2259), [anon_sym_LBRACE] = ACTIONS(2153), [anon_sym_LBRACK] = ACTIONS(2155), [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_u8] = ACTIONS(2147), - [anon_sym_i8] = ACTIONS(2147), - [anon_sym_u16] = ACTIONS(2147), - [anon_sym_i16] = ACTIONS(2147), - [anon_sym_u32] = ACTIONS(2147), - [anon_sym_i32] = ACTIONS(2147), - [anon_sym_u64] = ACTIONS(2147), - [anon_sym_i64] = ACTIONS(2147), - [anon_sym_u128] = ACTIONS(2147), - [anon_sym_i128] = ACTIONS(2147), - [anon_sym_isize] = ACTIONS(2147), - [anon_sym_usize] = ACTIONS(2147), - [anon_sym_f32] = ACTIONS(2147), - [anon_sym_f64] = ACTIONS(2147), - [anon_sym_bool] = ACTIONS(2147), - [anon_sym_str] = ACTIONS(2147), - [anon_sym_char] = ACTIONS(2147), - [aux_sym__non_special_token_token1] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_async] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_default] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_impl] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_mod] = ACTIONS(2147), - [anon_sym_pub] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_trait] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2147), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [sym_mutable_specifier] = ACTIONS(2147), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2147), - [sym_super] = ACTIONS(2147), - [sym_crate] = ACTIONS(2147), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), - [sym_block_comment] = ACTIONS(3), - }, - [533] = { - [sym_delim_token_tree] = STATE(485), - [sym__delim_tokens] = STATE(485), - [sym__non_delim_token] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_u8] = ACTIONS(2147), - [anon_sym_i8] = ACTIONS(2147), - [anon_sym_u16] = ACTIONS(2147), - [anon_sym_i16] = ACTIONS(2147), - [anon_sym_u32] = ACTIONS(2147), - [anon_sym_i32] = ACTIONS(2147), - [anon_sym_u64] = ACTIONS(2147), - [anon_sym_i64] = ACTIONS(2147), - [anon_sym_u128] = ACTIONS(2147), - [anon_sym_i128] = ACTIONS(2147), - [anon_sym_isize] = ACTIONS(2147), - [anon_sym_usize] = ACTIONS(2147), - [anon_sym_f32] = ACTIONS(2147), - [anon_sym_f64] = ACTIONS(2147), - [anon_sym_bool] = ACTIONS(2147), - [anon_sym_str] = ACTIONS(2147), - [anon_sym_char] = ACTIONS(2147), - [aux_sym__non_special_token_token1] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_async] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_default] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_impl] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_mod] = ACTIONS(2147), - [anon_sym_pub] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_trait] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2147), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [sym_mutable_specifier] = ACTIONS(2147), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2147), - [sym_super] = ACTIONS(2147), - [sym_crate] = ACTIONS(2147), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = 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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2165), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [534] = { - [sym_delim_token_tree] = STATE(532), - [sym__delim_tokens] = STATE(532), - [sym__non_delim_token] = STATE(532), - [sym__literal] = STATE(532), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(532), + [530] = { + [sym_delim_token_tree] = STATE(539), + [sym__delim_tokens] = STATE(539), + [sym__non_delim_token] = STATE(539), + [sym__literal] = STATE(539), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(539), [sym_identifier] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2169), [anon_sym_RPAREN] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2175), [anon_sym_DOLLAR] = ACTIONS(2265), [anon_sym_u8] = ACTIONS(2261), [anon_sym_i8] = ACTIONS(2261), @@ -64181,254 +63869,551 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2261), [anon_sym_while] = ACTIONS(2261), [sym_mutable_specifier] = ACTIONS(2261), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2261), [sym_super] = ACTIONS(2261), [sym_crate] = ACTIONS(2261), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, - [535] = { + [531] = { [sym_delim_token_tree] = STATE(485), [sym__delim_tokens] = STATE(485), [sym__non_delim_token] = STATE(485), [sym__literal] = STATE(485), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), [aux_sym_delim_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2147), + [sym_identifier] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2203), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(2199), + [anon_sym_await] = 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_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_where] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [sym_mutable_specifier] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2199), + [sym_super] = ACTIONS(2199), + [sym_crate] = ACTIONS(2199), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [532] = { + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2203), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(2199), + [anon_sym_await] = 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_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_where] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [sym_mutable_specifier] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2199), + [sym_super] = ACTIONS(2199), + [sym_crate] = ACTIONS(2199), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [533] = { + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_RBRACK] = ACTIONS(2267), + [anon_sym_DOLLAR] = ACTIONS(2203), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(2199), + [anon_sym_await] = 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_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_where] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [sym_mutable_specifier] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2199), + [sym_super] = ACTIONS(2199), + [sym_crate] = ACTIONS(2199), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [534] = { + [sym_token_tree] = STATE(487), + [sym_token_repetition] = STATE(487), + [sym__literal] = STATE(487), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(487), + [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(2225), + [anon_sym_RPAREN] = ACTIONS(2163), [anon_sym_LBRACE] = ACTIONS(2153), [anon_sym_LBRACK] = ACTIONS(2155), [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_u8] = ACTIONS(2147), - [anon_sym_i8] = ACTIONS(2147), - [anon_sym_u16] = ACTIONS(2147), - [anon_sym_i16] = ACTIONS(2147), - [anon_sym_u32] = ACTIONS(2147), - [anon_sym_i32] = ACTIONS(2147), - [anon_sym_u64] = ACTIONS(2147), - [anon_sym_i64] = ACTIONS(2147), - [anon_sym_u128] = ACTIONS(2147), - [anon_sym_i128] = ACTIONS(2147), - [anon_sym_isize] = ACTIONS(2147), - [anon_sym_usize] = ACTIONS(2147), - [anon_sym_f32] = ACTIONS(2147), - [anon_sym_f64] = ACTIONS(2147), - [anon_sym_bool] = ACTIONS(2147), - [anon_sym_str] = ACTIONS(2147), - [anon_sym_char] = ACTIONS(2147), - [aux_sym__non_special_token_token1] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2147), - [anon_sym_as] = ACTIONS(2147), - [anon_sym_async] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_default] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_impl] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_mod] = ACTIONS(2147), - [anon_sym_pub] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_trait] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2147), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_where] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [sym_mutable_specifier] = ACTIONS(2147), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2147), - [sym_super] = ACTIONS(2147), - [sym_crate] = ACTIONS(2147), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = 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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2165), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), + [sym_block_comment] = ACTIONS(3), + }, + [535] = { + [sym_delim_token_tree] = STATE(532), + [sym__delim_tokens] = STATE(532), + [sym__non_delim_token] = STATE(532), + [sym__literal] = STATE(532), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(532), + [sym_identifier] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2271), + [anon_sym_u8] = ACTIONS(2269), + [anon_sym_i8] = ACTIONS(2269), + [anon_sym_u16] = ACTIONS(2269), + [anon_sym_i16] = ACTIONS(2269), + [anon_sym_u32] = ACTIONS(2269), + [anon_sym_i32] = ACTIONS(2269), + [anon_sym_u64] = ACTIONS(2269), + [anon_sym_i64] = ACTIONS(2269), + [anon_sym_u128] = ACTIONS(2269), + [anon_sym_i128] = ACTIONS(2269), + [anon_sym_isize] = ACTIONS(2269), + [anon_sym_usize] = ACTIONS(2269), + [anon_sym_f32] = ACTIONS(2269), + [anon_sym_f64] = ACTIONS(2269), + [anon_sym_bool] = ACTIONS(2269), + [anon_sym_str] = ACTIONS(2269), + [anon_sym_char] = ACTIONS(2269), + [aux_sym__non_special_token_token1] = ACTIONS(2269), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_as] = ACTIONS(2269), + [anon_sym_async] = ACTIONS(2269), + [anon_sym_await] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_fn] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_impl] = ACTIONS(2269), + [anon_sym_let] = ACTIONS(2269), + [anon_sym_loop] = ACTIONS(2269), + [anon_sym_match] = ACTIONS(2269), + [anon_sym_mod] = ACTIONS(2269), + [anon_sym_pub] = ACTIONS(2269), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_struct] = ACTIONS(2269), + [anon_sym_trait] = ACTIONS(2269), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(2269), + [anon_sym_unsafe] = ACTIONS(2269), + [anon_sym_use] = ACTIONS(2269), + [anon_sym_where] = ACTIONS(2269), + [anon_sym_while] = ACTIONS(2269), + [sym_mutable_specifier] = ACTIONS(2269), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2269), + [sym_super] = ACTIONS(2269), + [sym_crate] = ACTIONS(2269), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [536] = { - [sym_delim_token_tree] = STATE(533), - [sym__delim_tokens] = STATE(533), - [sym__non_delim_token] = STATE(533), - [sym__literal] = STATE(533), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(533), - [sym_identifier] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_DOLLAR] = ACTIONS(2269), - [anon_sym_u8] = ACTIONS(2267), - [anon_sym_i8] = ACTIONS(2267), - [anon_sym_u16] = ACTIONS(2267), - [anon_sym_i16] = ACTIONS(2267), - [anon_sym_u32] = ACTIONS(2267), - [anon_sym_i32] = ACTIONS(2267), - [anon_sym_u64] = ACTIONS(2267), - [anon_sym_i64] = ACTIONS(2267), - [anon_sym_u128] = ACTIONS(2267), - [anon_sym_i128] = ACTIONS(2267), - [anon_sym_isize] = ACTIONS(2267), - [anon_sym_usize] = ACTIONS(2267), - [anon_sym_f32] = ACTIONS(2267), - [anon_sym_f64] = ACTIONS(2267), - [anon_sym_bool] = ACTIONS(2267), - [anon_sym_str] = ACTIONS(2267), - [anon_sym_char] = ACTIONS(2267), - [aux_sym__non_special_token_token1] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2267), - [anon_sym_as] = ACTIONS(2267), - [anon_sym_async] = ACTIONS(2267), - [anon_sym_await] = ACTIONS(2267), - [anon_sym_break] = ACTIONS(2267), - [anon_sym_const] = ACTIONS(2267), - [anon_sym_continue] = ACTIONS(2267), - [anon_sym_default] = ACTIONS(2267), - [anon_sym_enum] = ACTIONS(2267), - [anon_sym_fn] = ACTIONS(2267), - [anon_sym_for] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(2267), - [anon_sym_impl] = ACTIONS(2267), - [anon_sym_let] = ACTIONS(2267), - [anon_sym_loop] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2267), - [anon_sym_mod] = ACTIONS(2267), - [anon_sym_pub] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2267), - [anon_sym_static] = ACTIONS(2267), - [anon_sym_struct] = ACTIONS(2267), - [anon_sym_trait] = ACTIONS(2267), - [anon_sym_type] = ACTIONS(2267), - [anon_sym_union] = ACTIONS(2267), - [anon_sym_unsafe] = ACTIONS(2267), - [anon_sym_use] = ACTIONS(2267), - [anon_sym_where] = ACTIONS(2267), - [anon_sym_while] = ACTIONS(2267), - [sym_mutable_specifier] = ACTIONS(2267), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2267), - [sym_super] = ACTIONS(2267), - [sym_crate] = ACTIONS(2267), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_RBRACK] = ACTIONS(2273), + [anon_sym_DOLLAR] = ACTIONS(2203), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(2199), + [anon_sym_await] = 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_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_where] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [sym_mutable_specifier] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2199), + [sym_super] = ACTIONS(2199), + [sym_crate] = ACTIONS(2199), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [537] = { - [sym_delim_token_tree] = STATE(504), - [sym__delim_tokens] = STATE(504), - [sym__non_delim_token] = STATE(504), - [sym__literal] = STATE(504), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(504), - [sym_identifier] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_RBRACK] = ACTIONS(2263), - [anon_sym_DOLLAR] = ACTIONS(2273), - [anon_sym_u8] = ACTIONS(2271), - [anon_sym_i8] = ACTIONS(2271), - [anon_sym_u16] = ACTIONS(2271), - [anon_sym_i16] = ACTIONS(2271), - [anon_sym_u32] = ACTIONS(2271), - [anon_sym_i32] = ACTIONS(2271), - [anon_sym_u64] = ACTIONS(2271), - [anon_sym_i64] = ACTIONS(2271), - [anon_sym_u128] = ACTIONS(2271), - [anon_sym_i128] = ACTIONS(2271), - [anon_sym_isize] = ACTIONS(2271), - [anon_sym_usize] = ACTIONS(2271), - [anon_sym_f32] = ACTIONS(2271), - [anon_sym_f64] = ACTIONS(2271), - [anon_sym_bool] = ACTIONS(2271), - [anon_sym_str] = ACTIONS(2271), - [anon_sym_char] = ACTIONS(2271), - [aux_sym__non_special_token_token1] = ACTIONS(2271), - [anon_sym_SQUOTE] = ACTIONS(2271), - [anon_sym_as] = ACTIONS(2271), - [anon_sym_async] = ACTIONS(2271), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_break] = ACTIONS(2271), - [anon_sym_const] = ACTIONS(2271), - [anon_sym_continue] = ACTIONS(2271), - [anon_sym_default] = ACTIONS(2271), - [anon_sym_enum] = ACTIONS(2271), - [anon_sym_fn] = ACTIONS(2271), - [anon_sym_for] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(2271), - [anon_sym_impl] = ACTIONS(2271), - [anon_sym_let] = ACTIONS(2271), - [anon_sym_loop] = ACTIONS(2271), - [anon_sym_match] = ACTIONS(2271), - [anon_sym_mod] = ACTIONS(2271), - [anon_sym_pub] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2271), - [anon_sym_static] = ACTIONS(2271), - [anon_sym_struct] = ACTIONS(2271), - [anon_sym_trait] = ACTIONS(2271), - [anon_sym_type] = ACTIONS(2271), - [anon_sym_union] = ACTIONS(2271), - [anon_sym_unsafe] = ACTIONS(2271), - [anon_sym_use] = ACTIONS(2271), - [anon_sym_where] = ACTIONS(2271), - [anon_sym_while] = ACTIONS(2271), - [sym_mutable_specifier] = ACTIONS(2271), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2271), - [sym_super] = ACTIONS(2271), - [sym_crate] = ACTIONS(2271), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2203), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(2199), + [anon_sym_await] = 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_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_where] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [sym_mutable_specifier] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2199), + [sym_super] = ACTIONS(2199), + [sym_crate] = ACTIONS(2199), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [538] = { - [sym_token_tree] = STATE(529), - [sym_token_repetition] = STATE(529), - [sym__literal] = STATE(529), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_repeat1] = STATE(529), + [sym_delim_token_tree] = STATE(533), + [sym__delim_tokens] = STATE(533), + [sym__non_delim_token] = STATE(533), + [sym__literal] = STATE(533), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(533), [sym_identifier] = ACTIONS(2275), [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2277), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_RBRACK] = ACTIONS(2171), + [anon_sym_DOLLAR] = ACTIONS(2277), [anon_sym_u8] = ACTIONS(2275), [anon_sym_i8] = ACTIONS(2275), [anon_sym_u16] = ACTIONS(2275), @@ -64476,33 +64461,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2275), [anon_sym_while] = ACTIONS(2275), [sym_mutable_specifier] = ACTIONS(2275), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2275), + [sym_super] = ACTIONS(2275), + [sym_crate] = ACTIONS(2275), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [539] = { + [sym_delim_token_tree] = STATE(485), + [sym__delim_tokens] = STATE(485), + [sym__non_delim_token] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_RPAREN] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_DOLLAR] = ACTIONS(2203), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2199), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(2199), + [anon_sym_await] = 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_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_where] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [sym_mutable_specifier] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2199), + [sym_super] = ACTIONS(2199), + [sym_crate] = ACTIONS(2199), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), + [sym_block_comment] = ACTIONS(3), + }, + [540] = { + [sym_token_tree] = STATE(487), + [sym_token_repetition] = STATE(487), + [sym__literal] = STATE(487), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(487), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), [sym_integer_literal] = ACTIONS(2000), [aux_sym_string_literal_token1] = ACTIONS(2002), [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2275), - [sym_super] = ACTIONS(2275), - [sym_crate] = ACTIONS(2275), - [sym_metavariable] = ACTIONS(2279), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2165), [sym_raw_string_literal] = ACTIONS(2000), [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, - [539] = { - [sym_token_tree] = STATE(543), - [sym_token_repetition] = STATE(543), - [sym__literal] = STATE(543), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_repeat1] = STATE(543), + [541] = { + [sym_token_tree] = STATE(529), + [sym_token_repetition] = STATE(529), + [sym__literal] = STATE(529), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), + [aux_sym_token_tree_repeat1] = STATE(529), [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_RPAREN] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), [anon_sym_u8] = ACTIONS(2281), [anon_sym_i8] = ACTIONS(2281), [anon_sym_u16] = ACTIONS(2281), @@ -64555,159 +64687,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2281), [sym_super] = ACTIONS(2281), [sym_crate] = ACTIONS(2281), - [sym_metavariable] = ACTIONS(2283), - [sym_raw_string_literal] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), - [sym_block_comment] = ACTIONS(3), - }, - [540] = { - [sym_token_tree] = STATE(487), - [sym_token_repetition] = STATE(487), - [sym__literal] = STATE(487), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_repeat1] = STATE(487), - [sym_identifier] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_RPAREN] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2177), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_fn] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_impl] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_loop] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_mod] = ACTIONS(2181), - [anon_sym_pub] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_struct] = ACTIONS(2181), - [anon_sym_trait] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_union] = ACTIONS(2181), - [anon_sym_unsafe] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [sym_mutable_specifier] = ACTIONS(2181), - [sym_integer_literal] = ACTIONS(2000), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_crate] = ACTIONS(2181), - [sym_metavariable] = ACTIONS(2185), - [sym_raw_string_literal] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), - [sym_block_comment] = ACTIONS(3), - }, - [541] = { - [sym_token_tree] = STATE(487), - [sym_token_repetition] = STATE(487), - [sym__literal] = STATE(487), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), - [aux_sym_token_tree_repeat1] = STATE(487), - [sym_identifier] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2177), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_fn] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_impl] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_loop] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_mod] = ACTIONS(2181), - [anon_sym_pub] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_struct] = ACTIONS(2181), - [anon_sym_trait] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_union] = ACTIONS(2181), - [anon_sym_unsafe] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [sym_mutable_specifier] = ACTIONS(2181), - [sym_integer_literal] = ACTIONS(2000), - [aux_sym_string_literal_token1] = ACTIONS(2002), - [sym_char_literal] = ACTIONS(2000), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_crate] = ACTIONS(2181), - [sym_metavariable] = ACTIONS(2185), + [sym_metavariable] = ACTIONS(2285), [sym_raw_string_literal] = ACTIONS(2000), [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), @@ -64716,72 +64700,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_token_tree] = STATE(487), [sym_token_repetition] = STATE(487), [sym__literal] = STATE(487), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), [aux_sym_token_tree_repeat1] = STATE(487), - [sym_identifier] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_RBRACK] = ACTIONS(2285), - [anon_sym_DOLLAR] = ACTIONS(2177), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_fn] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_impl] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_loop] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_mod] = ACTIONS(2181), - [anon_sym_pub] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_struct] = ACTIONS(2181), - [anon_sym_trait] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_union] = ACTIONS(2181), - [anon_sym_unsafe] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [sym_mutable_specifier] = ACTIONS(2181), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_DOLLAR] = ACTIONS(2157), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), [sym_integer_literal] = ACTIONS(2000), [aux_sym_string_literal_token1] = ACTIONS(2002), [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_crate] = ACTIONS(2181), - [sym_metavariable] = ACTIONS(2185), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2165), [sym_raw_string_literal] = ACTIONS(2000), [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), @@ -64790,89 +64774,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_token_tree] = STATE(487), [sym_token_repetition] = STATE(487), [sym__literal] = STATE(487), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), [aux_sym_token_tree_repeat1] = STATE(487), - [sym_identifier] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_DOLLAR] = ACTIONS(2177), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_fn] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_impl] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_loop] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_mod] = ACTIONS(2181), - [anon_sym_pub] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_struct] = ACTIONS(2181), - [anon_sym_trait] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_union] = ACTIONS(2181), - [anon_sym_unsafe] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [sym_mutable_specifier] = ACTIONS(2181), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_RBRACK] = ACTIONS(2279), + [anon_sym_DOLLAR] = ACTIONS(2157), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), [sym_integer_literal] = ACTIONS(2000), [aux_sym_string_literal_token1] = ACTIONS(2002), [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_crate] = ACTIONS(2181), - [sym_metavariable] = ACTIONS(2185), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2165), [sym_raw_string_literal] = ACTIONS(2000), [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, [544] = { - [sym_delim_token_tree] = STATE(520), - [sym__delim_tokens] = STATE(520), - [sym__non_delim_token] = STATE(520), - [sym__literal] = STATE(520), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(520), + [sym_delim_token_tree] = STATE(536), + [sym__delim_tokens] = STATE(536), + [sym__non_delim_token] = STATE(536), + [sym__literal] = STATE(536), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(536), [sym_identifier] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_RBRACK] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_RBRACK] = ACTIONS(2263), [anon_sym_DOLLAR] = ACTIONS(2289), [anon_sym_u8] = ACTIONS(2287), [anon_sym_i8] = ACTIONS(2287), @@ -64921,106 +64905,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2287), [anon_sym_while] = ACTIONS(2287), [sym_mutable_specifier] = ACTIONS(2287), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2287), [sym_super] = ACTIONS(2287), [sym_crate] = ACTIONS(2287), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [545] = { [sym_token_tree] = STATE(487), [sym_token_repetition] = STATE(487), [sym__literal] = STATE(487), - [sym_string_literal] = STATE(564), - [sym_boolean_literal] = STATE(564), + [sym_string_literal] = STATE(586), + [sym_boolean_literal] = STATE(586), [aux_sym_token_tree_repeat1] = STATE(487), - [sym_identifier] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_RBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2177), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_fn] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_impl] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_loop] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_mod] = ACTIONS(2181), - [anon_sym_pub] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_struct] = ACTIONS(2181), - [anon_sym_trait] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_union] = ACTIONS(2181), - [anon_sym_unsafe] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [sym_mutable_specifier] = ACTIONS(2181), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_RBRACK] = ACTIONS(2163), + [anon_sym_DOLLAR] = ACTIONS(2157), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), [sym_integer_literal] = ACTIONS(2000), [aux_sym_string_literal_token1] = ACTIONS(2002), [sym_char_literal] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2004), [anon_sym_false] = ACTIONS(2004), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_crate] = ACTIONS(2181), - [sym_metavariable] = ACTIONS(2185), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2165), [sym_raw_string_literal] = ACTIONS(2000), [sym_float_literal] = ACTIONS(2000), [sym_block_comment] = ACTIONS(3), }, [546] = { - [sym_delim_token_tree] = STATE(530), - [sym__delim_tokens] = STATE(530), - [sym__non_delim_token] = STATE(530), - [sym__literal] = STATE(530), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(530), + [sym_delim_token_tree] = STATE(537), + [sym__delim_tokens] = STATE(537), + [sym__non_delim_token] = STATE(537), + [sym__literal] = STATE(537), + [sym_string_literal] = STATE(596), + [sym_boolean_literal] = STATE(596), + [aux_sym_delim_token_tree_repeat1] = STATE(537), [sym_identifier] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2175), [anon_sym_DOLLAR] = ACTIONS(2293), [anon_sym_u8] = ACTIONS(2291), [anon_sym_i8] = ACTIONS(2291), @@ -65069,75 +65053,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2291), [anon_sym_while] = ACTIONS(2291), [sym_mutable_specifier] = ACTIONS(2291), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(986), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2291), [sym_super] = ACTIONS(2291), [sym_crate] = ACTIONS(2291), - [sym_raw_string_literal] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [sym_raw_string_literal] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), [sym_block_comment] = ACTIONS(3), }, [547] = { - [sym_attribute_item] = STATE(626), - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_match_pattern] = STATE(2464), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1928), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_enum_variant_list_repeat1] = STATE(626), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [sym_attribute_item] = STATE(622), + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_match_pattern] = STATE(2434), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1951), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_enum_variant_list_repeat1] = STATE(622), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -65147,70 +65131,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [548] = { - [sym_attribute_item] = STATE(626), - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_match_pattern] = STATE(2454), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1928), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [aux_sym_enum_variant_list_repeat1] = STATE(626), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [sym_attribute_item] = STATE(622), + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_match_pattern] = STATE(2488), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1951), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_enum_variant_list_repeat1] = STATE(622), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -65220,29 +65204,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [549] = { [sym_attribute_item] = STATE(556), - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym_visibility_modifier] = STATE(691), - [sym__type] = STATE(1837), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym_visibility_modifier] = STATE(688), + [sym__type] = STATE(1803), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -65250,72 +65234,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), [aux_sym_enum_variant_list_repeat1] = STATE(556), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(872), [anon_sym_RPAREN] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2303), [anon_sym_BANG] = ACTIONS(680), [anon_sym_COMMA] = ACTIONS(2305), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(890), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [550] = { - [sym_attribute_item] = STATE(559), - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym_visibility_modifier] = STATE(731), - [sym__type] = STATE(2052), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [sym_attribute_item] = STATE(561), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym_visibility_modifier] = STATE(687), + [sym__type] = STATE(1958), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -65323,71 +65307,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_enum_variant_list_repeat1] = STATE(559), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_enum_variant_list_repeat1] = STATE(561), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(872), [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2303), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(890), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [551] = { - [sym_attribute_item] = STATE(559), - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym_visibility_modifier] = STATE(731), - [sym__type] = STATE(2052), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [sym_attribute_item] = STATE(561), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym_visibility_modifier] = STATE(687), + [sym__type] = STATE(1958), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -65395,71 +65379,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_enum_variant_list_repeat1] = STATE(559), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_enum_variant_list_repeat1] = STATE(561), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(872), [anon_sym_RPAREN] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2303), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(890), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [552] = { - [sym_attribute_item] = STATE(559), - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym_visibility_modifier] = STATE(731), - [sym__type] = STATE(2052), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [sym_attribute_item] = STATE(561), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym_visibility_modifier] = STATE(687), + [sym__type] = STATE(1958), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -65467,71 +65451,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_enum_variant_list_repeat1] = STATE(559), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_enum_variant_list_repeat1] = STATE(561), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(872), [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2303), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(890), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [553] = { - [sym_attribute_item] = STATE(559), - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym_visibility_modifier] = STATE(731), - [sym__type] = STATE(2052), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [sym_attribute_item] = STATE(561), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym_visibility_modifier] = STATE(687), + [sym__type] = STATE(1958), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -65539,71 +65523,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_enum_variant_list_repeat1] = STATE(559), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_enum_variant_list_repeat1] = STATE(561), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(872), [anon_sym_RPAREN] = ACTIONS(2315), - [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2303), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(890), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [554] = { - [sym_attribute_item] = STATE(559), - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym_visibility_modifier] = STATE(731), - [sym__type] = STATE(2052), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [sym_attribute_item] = STATE(561), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym_visibility_modifier] = STATE(687), + [sym__type] = STATE(1958), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -65611,71 +65595,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_enum_variant_list_repeat1] = STATE(559), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_enum_variant_list_repeat1] = STATE(561), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(872), [anon_sym_RPAREN] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2303), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(890), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [555] = { - [sym_attribute_item] = STATE(559), - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym_visibility_modifier] = STATE(731), - [sym__type] = STATE(2052), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [sym_attribute_item] = STATE(561), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym_visibility_modifier] = STATE(687), + [sym__type] = STATE(1958), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -65683,71 +65667,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_enum_variant_list_repeat1] = STATE(559), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_enum_variant_list_repeat1] = STATE(561), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(872), [anon_sym_RPAREN] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2303), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(890), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [556] = { - [sym_attribute_item] = STATE(1121), - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym_visibility_modifier] = STATE(697), - [sym__type] = STATE(1823), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [sym_attribute_item] = STATE(1086), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym_visibility_modifier] = STATE(718), + [sym__type] = STATE(1795), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -65755,109 +65739,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_enum_variant_list_repeat1] = STATE(1121), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_enum_variant_list_repeat1] = STATE(1086), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2303), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(890), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [557] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1861), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1763), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), [anon_sym_RPAREN] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_COMMA] = ACTIONS(2323), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -65867,29 +65851,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [558] = { - [sym_attribute_item] = STATE(559), - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym_visibility_modifier] = STATE(731), - [sym__type] = STATE(2052), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1859), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_RBRACK] = ACTIONS(780), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), + [anon_sym_COMMA] = ACTIONS(788), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1528), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1530), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [559] = { + [sym_attribute_item] = STATE(561), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym_visibility_modifier] = STATE(687), + [sym__type] = STATE(1958), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -65897,70 +65952,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_enum_variant_list_repeat1] = STATE(559), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_enum_variant_list_repeat1] = STATE(561), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2303), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(890), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, - [559] = { - [sym_attribute_item] = STATE(1121), - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym_visibility_modifier] = STATE(664), - [sym__type] = STATE(2058), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [560] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1852), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), + [anon_sym_COMMA] = ACTIONS(810), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1528), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1530), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [561] = { + [sym_attribute_item] = STATE(1086), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym_visibility_modifier] = STATE(745), + [sym__type] = STATE(2041), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -65968,179 +66094,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_enum_variant_list_repeat1] = STATE(1121), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_enum_variant_list_repeat1] = STATE(1086), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2303), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(890), - [sym_block_comment] = ACTIONS(3), - }, - [560] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1792), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), - [anon_sym_COMMA] = ACTIONS(810), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, - [561] = { - [sym_parameter] = STATE(1865), - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1850), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), + [562] = { + [sym_parameter] = STATE(2113), + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1813), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), [anon_sym_default] = ACTIONS(2327), [anon_sym_union] = ACTIONS(2327), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(2329), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -66152,14 +66207,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(2333), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [562] = { + [563] = { [sym_identifier] = ACTIONS(2335), [anon_sym_LPAREN] = ACTIONS(2337), [anon_sym_RPAREN] = ACTIONS(2337), @@ -66221,7 +66276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2337), [anon_sym_true] = ACTIONS(2335), [anon_sym_false] = ACTIONS(2335), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2335), [sym_super] = ACTIONS(2335), [sym_crate] = ACTIONS(2335), @@ -66230,77 +66285,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2337), [sym_block_comment] = ACTIONS(3), }, - [563] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1831), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(780), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), - [anon_sym_COMMA] = ACTIONS(788), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, [564] = { [sym_identifier] = ACTIONS(2341), [anon_sym_LPAREN] = ACTIONS(2343), @@ -66362,7 +66346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2343), [anon_sym_true] = ACTIONS(2341), [anon_sym_false] = ACTIONS(2341), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2341), [sym_super] = ACTIONS(2341), [sym_crate] = ACTIONS(2341), @@ -66372,128 +66356,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [565] = { - [sym_identifier] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_RPAREN] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_RBRACK] = ACTIONS(2347), - [anon_sym_DOLLAR] = ACTIONS(2345), - [anon_sym_u8] = ACTIONS(2345), - [anon_sym_i8] = ACTIONS(2345), - [anon_sym_u16] = ACTIONS(2345), - [anon_sym_i16] = ACTIONS(2345), - [anon_sym_u32] = ACTIONS(2345), - [anon_sym_i32] = ACTIONS(2345), - [anon_sym_u64] = ACTIONS(2345), - [anon_sym_i64] = ACTIONS(2345), - [anon_sym_u128] = ACTIONS(2345), - [anon_sym_i128] = ACTIONS(2345), - [anon_sym_isize] = ACTIONS(2345), - [anon_sym_usize] = ACTIONS(2345), - [anon_sym_f32] = ACTIONS(2345), - [anon_sym_f64] = ACTIONS(2345), - [anon_sym_bool] = ACTIONS(2345), - [anon_sym_str] = ACTIONS(2345), - [anon_sym_char] = ACTIONS(2345), - [aux_sym__non_special_token_token1] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_as] = ACTIONS(2345), - [anon_sym_async] = ACTIONS(2345), - [anon_sym_await] = ACTIONS(2345), - [anon_sym_break] = ACTIONS(2345), - [anon_sym_const] = ACTIONS(2345), - [anon_sym_continue] = ACTIONS(2345), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_enum] = ACTIONS(2345), - [anon_sym_fn] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2345), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_impl] = ACTIONS(2345), - [anon_sym_let] = ACTIONS(2345), - [anon_sym_loop] = ACTIONS(2345), - [anon_sym_match] = ACTIONS(2345), - [anon_sym_mod] = ACTIONS(2345), - [anon_sym_pub] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2345), - [anon_sym_static] = ACTIONS(2345), - [anon_sym_struct] = ACTIONS(2345), - [anon_sym_trait] = ACTIONS(2345), - [anon_sym_type] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), - [anon_sym_unsafe] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2345), - [anon_sym_where] = ACTIONS(2345), - [anon_sym_while] = ACTIONS(2345), - [sym_mutable_specifier] = ACTIONS(2345), - [sym_integer_literal] = ACTIONS(2347), - [aux_sym_string_literal_token1] = ACTIONS(2347), - [sym_char_literal] = ACTIONS(2347), - [anon_sym_true] = ACTIONS(2345), - [anon_sym_false] = ACTIONS(2345), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2345), - [sym_super] = ACTIONS(2345), - [sym_crate] = ACTIONS(2345), - [sym_metavariable] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2347), - [sym_float_literal] = ACTIONS(2347), + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1844), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_RBRACK] = ACTIONS(2345), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1528), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1530), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [566] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1794), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), + [sym_identifier] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(2349), [anon_sym_RPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(2349), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_RBRACK] = ACTIONS(2349), + [anon_sym_DOLLAR] = ACTIONS(2347), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2347), + [anon_sym_as] = ACTIONS(2347), + [anon_sym_async] = ACTIONS(2347), + [anon_sym_await] = 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_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_where] = ACTIONS(2347), + [anon_sym_while] = ACTIONS(2347), + [sym_mutable_specifier] = ACTIONS(2347), + [sym_integer_literal] = ACTIONS(2349), + [aux_sym_string_literal_token1] = ACTIONS(2349), + [sym_char_literal] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2347), + [sym_super] = ACTIONS(2347), + [sym_crate] = ACTIONS(2347), + [sym_metavariable] = ACTIONS(2349), + [sym_raw_string_literal] = ACTIONS(2349), + [sym_float_literal] = ACTIONS(2349), + [sym_block_comment] = ACTIONS(3), + }, + [567] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1844), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(2351), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -66503,627 +66557,557 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [567] = { - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_RPAREN] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_RBRACE] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_RBRACK] = ACTIONS(2353), - [anon_sym_DOLLAR] = ACTIONS(2351), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2351), - [anon_sym_SQUOTE] = ACTIONS(2351), - [anon_sym_as] = ACTIONS(2351), - [anon_sym_async] = ACTIONS(2351), - [anon_sym_await] = 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_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_where] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [sym_mutable_specifier] = ACTIONS(2351), - [sym_integer_literal] = ACTIONS(2353), - [aux_sym_string_literal_token1] = ACTIONS(2353), - [sym_char_literal] = ACTIONS(2353), - [anon_sym_true] = ACTIONS(2351), - [anon_sym_false] = ACTIONS(2351), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2351), - [sym_super] = ACTIONS(2351), - [sym_crate] = ACTIONS(2351), - [sym_metavariable] = ACTIONS(2353), - [sym_raw_string_literal] = ACTIONS(2353), - [sym_float_literal] = ACTIONS(2353), - [sym_block_comment] = ACTIONS(3), - }, [568] = { - [sym_identifier] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_RPAREN] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_RBRACK] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2355), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2355), - [anon_sym_SQUOTE] = ACTIONS(2355), - [anon_sym_as] = ACTIONS(2355), - [anon_sym_async] = ACTIONS(2355), - [anon_sym_await] = 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_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_where] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [sym_mutable_specifier] = ACTIONS(2355), - [sym_integer_literal] = ACTIONS(2357), - [aux_sym_string_literal_token1] = ACTIONS(2357), - [sym_char_literal] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2355), - [anon_sym_false] = ACTIONS(2355), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2355), - [sym_super] = ACTIONS(2355), - [sym_crate] = ACTIONS(2355), - [sym_metavariable] = ACTIONS(2357), - [sym_raw_string_literal] = ACTIONS(2357), - [sym_float_literal] = ACTIONS(2357), + [sym_identifier] = ACTIONS(2353), + [anon_sym_LPAREN] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_RBRACK] = ACTIONS(2355), + [anon_sym_DOLLAR] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(2353), + [anon_sym_i8] = ACTIONS(2353), + [anon_sym_u16] = ACTIONS(2353), + [anon_sym_i16] = ACTIONS(2353), + [anon_sym_u32] = ACTIONS(2353), + [anon_sym_i32] = ACTIONS(2353), + [anon_sym_u64] = ACTIONS(2353), + [anon_sym_i64] = ACTIONS(2353), + [anon_sym_u128] = ACTIONS(2353), + [anon_sym_i128] = ACTIONS(2353), + [anon_sym_isize] = ACTIONS(2353), + [anon_sym_usize] = ACTIONS(2353), + [anon_sym_f32] = ACTIONS(2353), + [anon_sym_f64] = ACTIONS(2353), + [anon_sym_bool] = ACTIONS(2353), + [anon_sym_str] = ACTIONS(2353), + [anon_sym_char] = ACTIONS(2353), + [aux_sym__non_special_token_token1] = ACTIONS(2353), + [anon_sym_SQUOTE] = ACTIONS(2353), + [anon_sym_as] = ACTIONS(2353), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_await] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_const] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2353), + [anon_sym_default] = ACTIONS(2353), + [anon_sym_enum] = ACTIONS(2353), + [anon_sym_fn] = ACTIONS(2353), + [anon_sym_for] = ACTIONS(2353), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_impl] = ACTIONS(2353), + [anon_sym_let] = ACTIONS(2353), + [anon_sym_loop] = ACTIONS(2353), + [anon_sym_match] = ACTIONS(2353), + [anon_sym_mod] = ACTIONS(2353), + [anon_sym_pub] = ACTIONS(2353), + [anon_sym_return] = ACTIONS(2353), + [anon_sym_static] = ACTIONS(2353), + [anon_sym_struct] = ACTIONS(2353), + [anon_sym_trait] = ACTIONS(2353), + [anon_sym_type] = ACTIONS(2353), + [anon_sym_union] = ACTIONS(2353), + [anon_sym_unsafe] = ACTIONS(2353), + [anon_sym_use] = ACTIONS(2353), + [anon_sym_where] = ACTIONS(2353), + [anon_sym_while] = ACTIONS(2353), + [sym_mutable_specifier] = ACTIONS(2353), + [sym_integer_literal] = ACTIONS(2355), + [aux_sym_string_literal_token1] = ACTIONS(2355), + [sym_char_literal] = ACTIONS(2355), + [anon_sym_true] = ACTIONS(2353), + [anon_sym_false] = ACTIONS(2353), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2353), + [sym_super] = ACTIONS(2353), + [sym_crate] = ACTIONS(2353), + [sym_metavariable] = ACTIONS(2355), + [sym_raw_string_literal] = ACTIONS(2355), + [sym_float_literal] = ACTIONS(2355), [sym_block_comment] = ACTIONS(3), }, [569] = { - [sym_identifier] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_RPAREN] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2361), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_RBRACK] = ACTIONS(2361), - [anon_sym_DOLLAR] = ACTIONS(2359), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2359), - [anon_sym_SQUOTE] = ACTIONS(2359), - [anon_sym_as] = ACTIONS(2359), - [anon_sym_async] = ACTIONS(2359), - [anon_sym_await] = 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_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_where] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [sym_mutable_specifier] = ACTIONS(2359), - [sym_integer_literal] = ACTIONS(2361), - [aux_sym_string_literal_token1] = ACTIONS(2361), - [sym_char_literal] = ACTIONS(2361), - [anon_sym_true] = ACTIONS(2359), - [anon_sym_false] = ACTIONS(2359), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2359), - [sym_super] = ACTIONS(2359), - [sym_crate] = ACTIONS(2359), - [sym_metavariable] = ACTIONS(2361), - [sym_raw_string_literal] = ACTIONS(2361), - [sym_float_literal] = ACTIONS(2361), + [sym_identifier] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_RPAREN] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2359), + [anon_sym_RBRACK] = ACTIONS(2359), + [anon_sym_DOLLAR] = ACTIONS(2357), + [anon_sym_u8] = ACTIONS(2357), + [anon_sym_i8] = ACTIONS(2357), + [anon_sym_u16] = ACTIONS(2357), + [anon_sym_i16] = ACTIONS(2357), + [anon_sym_u32] = ACTIONS(2357), + [anon_sym_i32] = ACTIONS(2357), + [anon_sym_u64] = ACTIONS(2357), + [anon_sym_i64] = ACTIONS(2357), + [anon_sym_u128] = ACTIONS(2357), + [anon_sym_i128] = ACTIONS(2357), + [anon_sym_isize] = ACTIONS(2357), + [anon_sym_usize] = ACTIONS(2357), + [anon_sym_f32] = ACTIONS(2357), + [anon_sym_f64] = ACTIONS(2357), + [anon_sym_bool] = ACTIONS(2357), + [anon_sym_str] = ACTIONS(2357), + [anon_sym_char] = ACTIONS(2357), + [aux_sym__non_special_token_token1] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(2357), + [anon_sym_as] = ACTIONS(2357), + [anon_sym_async] = ACTIONS(2357), + [anon_sym_await] = ACTIONS(2357), + [anon_sym_break] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_continue] = ACTIONS(2357), + [anon_sym_default] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_fn] = ACTIONS(2357), + [anon_sym_for] = ACTIONS(2357), + [anon_sym_if] = ACTIONS(2357), + [anon_sym_impl] = ACTIONS(2357), + [anon_sym_let] = ACTIONS(2357), + [anon_sym_loop] = ACTIONS(2357), + [anon_sym_match] = ACTIONS(2357), + [anon_sym_mod] = ACTIONS(2357), + [anon_sym_pub] = ACTIONS(2357), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_trait] = ACTIONS(2357), + [anon_sym_type] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [anon_sym_unsafe] = ACTIONS(2357), + [anon_sym_use] = ACTIONS(2357), + [anon_sym_where] = ACTIONS(2357), + [anon_sym_while] = ACTIONS(2357), + [sym_mutable_specifier] = ACTIONS(2357), + [sym_integer_literal] = ACTIONS(2359), + [aux_sym_string_literal_token1] = ACTIONS(2359), + [sym_char_literal] = ACTIONS(2359), + [anon_sym_true] = ACTIONS(2357), + [anon_sym_false] = ACTIONS(2357), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2357), + [sym_super] = ACTIONS(2357), + [sym_crate] = ACTIONS(2357), + [sym_metavariable] = ACTIONS(2359), + [sym_raw_string_literal] = ACTIONS(2359), + [sym_float_literal] = ACTIONS(2359), [sym_block_comment] = ACTIONS(3), }, [570] = { - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_RPAREN] = ACTIONS(2365), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_RBRACE] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_RBRACK] = ACTIONS(2365), - [anon_sym_DOLLAR] = ACTIONS(2363), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2363), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_as] = ACTIONS(2363), - [anon_sym_async] = ACTIONS(2363), - [anon_sym_await] = 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_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_where] = ACTIONS(2363), - [anon_sym_while] = ACTIONS(2363), - [sym_mutable_specifier] = ACTIONS(2363), - [sym_integer_literal] = ACTIONS(2365), - [aux_sym_string_literal_token1] = ACTIONS(2365), - [sym_char_literal] = ACTIONS(2365), - [anon_sym_true] = ACTIONS(2363), - [anon_sym_false] = ACTIONS(2363), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2363), - [sym_super] = ACTIONS(2363), - [sym_crate] = ACTIONS(2363), - [sym_metavariable] = ACTIONS(2365), - [sym_raw_string_literal] = ACTIONS(2365), - [sym_float_literal] = ACTIONS(2365), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_RPAREN] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2363), + [anon_sym_RBRACK] = ACTIONS(2363), + [anon_sym_DOLLAR] = ACTIONS(2361), + [anon_sym_u8] = ACTIONS(2361), + [anon_sym_i8] = ACTIONS(2361), + [anon_sym_u16] = ACTIONS(2361), + [anon_sym_i16] = ACTIONS(2361), + [anon_sym_u32] = ACTIONS(2361), + [anon_sym_i32] = ACTIONS(2361), + [anon_sym_u64] = ACTIONS(2361), + [anon_sym_i64] = ACTIONS(2361), + [anon_sym_u128] = ACTIONS(2361), + [anon_sym_i128] = ACTIONS(2361), + [anon_sym_isize] = ACTIONS(2361), + [anon_sym_usize] = ACTIONS(2361), + [anon_sym_f32] = ACTIONS(2361), + [anon_sym_f64] = ACTIONS(2361), + [anon_sym_bool] = ACTIONS(2361), + [anon_sym_str] = ACTIONS(2361), + [anon_sym_char] = ACTIONS(2361), + [aux_sym__non_special_token_token1] = ACTIONS(2361), + [anon_sym_SQUOTE] = ACTIONS(2361), + [anon_sym_as] = ACTIONS(2361), + [anon_sym_async] = ACTIONS(2361), + [anon_sym_await] = ACTIONS(2361), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_const] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_default] = ACTIONS(2361), + [anon_sym_enum] = ACTIONS(2361), + [anon_sym_fn] = ACTIONS(2361), + [anon_sym_for] = ACTIONS(2361), + [anon_sym_if] = ACTIONS(2361), + [anon_sym_impl] = ACTIONS(2361), + [anon_sym_let] = ACTIONS(2361), + [anon_sym_loop] = ACTIONS(2361), + [anon_sym_match] = ACTIONS(2361), + [anon_sym_mod] = ACTIONS(2361), + [anon_sym_pub] = ACTIONS(2361), + [anon_sym_return] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2361), + [anon_sym_struct] = ACTIONS(2361), + [anon_sym_trait] = ACTIONS(2361), + [anon_sym_type] = ACTIONS(2361), + [anon_sym_union] = ACTIONS(2361), + [anon_sym_unsafe] = ACTIONS(2361), + [anon_sym_use] = ACTIONS(2361), + [anon_sym_where] = ACTIONS(2361), + [anon_sym_while] = ACTIONS(2361), + [sym_mutable_specifier] = ACTIONS(2361), + [sym_integer_literal] = ACTIONS(2363), + [aux_sym_string_literal_token1] = ACTIONS(2363), + [sym_char_literal] = ACTIONS(2363), + [anon_sym_true] = ACTIONS(2361), + [anon_sym_false] = ACTIONS(2361), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2361), + [sym_super] = ACTIONS(2361), + [sym_crate] = ACTIONS(2361), + [sym_metavariable] = ACTIONS(2363), + [sym_raw_string_literal] = ACTIONS(2363), + [sym_float_literal] = ACTIONS(2363), [sym_block_comment] = ACTIONS(3), }, [571] = { - [sym_identifier] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_RPAREN] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2369), - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2369), - [anon_sym_RBRACK] = ACTIONS(2369), - [anon_sym_DOLLAR] = ACTIONS(2367), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2367), - [anon_sym_SQUOTE] = ACTIONS(2367), - [anon_sym_as] = ACTIONS(2367), - [anon_sym_async] = ACTIONS(2367), - [anon_sym_await] = 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_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_where] = ACTIONS(2367), - [anon_sym_while] = ACTIONS(2367), - [sym_mutable_specifier] = ACTIONS(2367), - [sym_integer_literal] = ACTIONS(2369), - [aux_sym_string_literal_token1] = ACTIONS(2369), - [sym_char_literal] = ACTIONS(2369), - [anon_sym_true] = ACTIONS(2367), - [anon_sym_false] = ACTIONS(2367), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2367), - [sym_super] = ACTIONS(2367), - [sym_crate] = ACTIONS(2367), - [sym_metavariable] = ACTIONS(2369), - [sym_raw_string_literal] = ACTIONS(2369), - [sym_float_literal] = ACTIONS(2369), + [sym_identifier] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2367), + [anon_sym_RPAREN] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(2367), + [anon_sym_RBRACK] = ACTIONS(2367), + [anon_sym_DOLLAR] = ACTIONS(2365), + [anon_sym_u8] = ACTIONS(2365), + [anon_sym_i8] = ACTIONS(2365), + [anon_sym_u16] = ACTIONS(2365), + [anon_sym_i16] = ACTIONS(2365), + [anon_sym_u32] = ACTIONS(2365), + [anon_sym_i32] = ACTIONS(2365), + [anon_sym_u64] = ACTIONS(2365), + [anon_sym_i64] = ACTIONS(2365), + [anon_sym_u128] = ACTIONS(2365), + [anon_sym_i128] = ACTIONS(2365), + [anon_sym_isize] = ACTIONS(2365), + [anon_sym_usize] = ACTIONS(2365), + [anon_sym_f32] = ACTIONS(2365), + [anon_sym_f64] = ACTIONS(2365), + [anon_sym_bool] = ACTIONS(2365), + [anon_sym_str] = ACTIONS(2365), + [anon_sym_char] = ACTIONS(2365), + [aux_sym__non_special_token_token1] = ACTIONS(2365), + [anon_sym_SQUOTE] = ACTIONS(2365), + [anon_sym_as] = ACTIONS(2365), + [anon_sym_async] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2365), + [anon_sym_const] = ACTIONS(2365), + [anon_sym_continue] = ACTIONS(2365), + [anon_sym_default] = ACTIONS(2365), + [anon_sym_enum] = ACTIONS(2365), + [anon_sym_fn] = ACTIONS(2365), + [anon_sym_for] = ACTIONS(2365), + [anon_sym_if] = ACTIONS(2365), + [anon_sym_impl] = ACTIONS(2365), + [anon_sym_let] = ACTIONS(2365), + [anon_sym_loop] = ACTIONS(2365), + [anon_sym_match] = ACTIONS(2365), + [anon_sym_mod] = ACTIONS(2365), + [anon_sym_pub] = ACTIONS(2365), + [anon_sym_return] = ACTIONS(2365), + [anon_sym_static] = ACTIONS(2365), + [anon_sym_struct] = ACTIONS(2365), + [anon_sym_trait] = ACTIONS(2365), + [anon_sym_type] = ACTIONS(2365), + [anon_sym_union] = ACTIONS(2365), + [anon_sym_unsafe] = ACTIONS(2365), + [anon_sym_use] = ACTIONS(2365), + [anon_sym_where] = ACTIONS(2365), + [anon_sym_while] = ACTIONS(2365), + [sym_mutable_specifier] = ACTIONS(2365), + [sym_integer_literal] = ACTIONS(2367), + [aux_sym_string_literal_token1] = ACTIONS(2367), + [sym_char_literal] = ACTIONS(2367), + [anon_sym_true] = ACTIONS(2365), + [anon_sym_false] = ACTIONS(2365), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2365), + [sym_super] = ACTIONS(2365), + [sym_crate] = ACTIONS(2365), + [sym_metavariable] = ACTIONS(2367), + [sym_raw_string_literal] = ACTIONS(2367), + [sym_float_literal] = ACTIONS(2367), [sym_block_comment] = ACTIONS(3), }, [572] = { - [sym_identifier] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_RPAREN] = ACTIONS(2373), - [anon_sym_LBRACE] = ACTIONS(2373), - [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2373), - [anon_sym_RBRACK] = ACTIONS(2373), - [anon_sym_DOLLAR] = ACTIONS(2371), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2371), - [anon_sym_SQUOTE] = ACTIONS(2371), - [anon_sym_as] = ACTIONS(2371), - [anon_sym_async] = ACTIONS(2371), - [anon_sym_await] = 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_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_where] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [sym_mutable_specifier] = ACTIONS(2371), - [sym_integer_literal] = ACTIONS(2373), - [aux_sym_string_literal_token1] = ACTIONS(2373), - [sym_char_literal] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(2371), - [anon_sym_false] = ACTIONS(2371), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2371), - [sym_super] = ACTIONS(2371), - [sym_crate] = ACTIONS(2371), - [sym_metavariable] = ACTIONS(2373), - [sym_raw_string_literal] = ACTIONS(2373), - [sym_float_literal] = ACTIONS(2373), + [sym_identifier] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2371), + [anon_sym_RPAREN] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2371), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2371), + [anon_sym_RBRACK] = ACTIONS(2371), + [anon_sym_DOLLAR] = ACTIONS(2369), + [anon_sym_u8] = ACTIONS(2369), + [anon_sym_i8] = ACTIONS(2369), + [anon_sym_u16] = ACTIONS(2369), + [anon_sym_i16] = ACTIONS(2369), + [anon_sym_u32] = ACTIONS(2369), + [anon_sym_i32] = ACTIONS(2369), + [anon_sym_u64] = ACTIONS(2369), + [anon_sym_i64] = ACTIONS(2369), + [anon_sym_u128] = ACTIONS(2369), + [anon_sym_i128] = ACTIONS(2369), + [anon_sym_isize] = ACTIONS(2369), + [anon_sym_usize] = ACTIONS(2369), + [anon_sym_f32] = ACTIONS(2369), + [anon_sym_f64] = ACTIONS(2369), + [anon_sym_bool] = ACTIONS(2369), + [anon_sym_str] = ACTIONS(2369), + [anon_sym_char] = ACTIONS(2369), + [aux_sym__non_special_token_token1] = ACTIONS(2369), + [anon_sym_SQUOTE] = ACTIONS(2369), + [anon_sym_as] = ACTIONS(2369), + [anon_sym_async] = ACTIONS(2369), + [anon_sym_await] = ACTIONS(2369), + [anon_sym_break] = ACTIONS(2369), + [anon_sym_const] = ACTIONS(2369), + [anon_sym_continue] = ACTIONS(2369), + [anon_sym_default] = ACTIONS(2369), + [anon_sym_enum] = ACTIONS(2369), + [anon_sym_fn] = ACTIONS(2369), + [anon_sym_for] = ACTIONS(2369), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_impl] = ACTIONS(2369), + [anon_sym_let] = ACTIONS(2369), + [anon_sym_loop] = ACTIONS(2369), + [anon_sym_match] = ACTIONS(2369), + [anon_sym_mod] = ACTIONS(2369), + [anon_sym_pub] = ACTIONS(2369), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_static] = ACTIONS(2369), + [anon_sym_struct] = ACTIONS(2369), + [anon_sym_trait] = ACTIONS(2369), + [anon_sym_type] = ACTIONS(2369), + [anon_sym_union] = ACTIONS(2369), + [anon_sym_unsafe] = ACTIONS(2369), + [anon_sym_use] = ACTIONS(2369), + [anon_sym_where] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2369), + [sym_mutable_specifier] = ACTIONS(2369), + [sym_integer_literal] = ACTIONS(2371), + [aux_sym_string_literal_token1] = ACTIONS(2371), + [sym_char_literal] = ACTIONS(2371), + [anon_sym_true] = ACTIONS(2369), + [anon_sym_false] = ACTIONS(2369), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2369), + [sym_super] = ACTIONS(2369), + [sym_crate] = ACTIONS(2369), + [sym_metavariable] = ACTIONS(2371), + [sym_raw_string_literal] = ACTIONS(2371), + [sym_float_literal] = ACTIONS(2371), [sym_block_comment] = ACTIONS(3), }, [573] = { - [sym_identifier] = ACTIONS(2375), - [anon_sym_LPAREN] = ACTIONS(2377), - [anon_sym_RPAREN] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2377), - [anon_sym_RBRACE] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2377), - [anon_sym_RBRACK] = ACTIONS(2377), - [anon_sym_DOLLAR] = ACTIONS(2375), - [anon_sym_u8] = ACTIONS(2375), - [anon_sym_i8] = ACTIONS(2375), - [anon_sym_u16] = ACTIONS(2375), - [anon_sym_i16] = ACTIONS(2375), - [anon_sym_u32] = ACTIONS(2375), - [anon_sym_i32] = ACTIONS(2375), - [anon_sym_u64] = ACTIONS(2375), - [anon_sym_i64] = ACTIONS(2375), - [anon_sym_u128] = ACTIONS(2375), - [anon_sym_i128] = ACTIONS(2375), - [anon_sym_isize] = ACTIONS(2375), - [anon_sym_usize] = ACTIONS(2375), - [anon_sym_f32] = ACTIONS(2375), - [anon_sym_f64] = ACTIONS(2375), - [anon_sym_bool] = ACTIONS(2375), - [anon_sym_str] = ACTIONS(2375), - [anon_sym_char] = ACTIONS(2375), - [aux_sym__non_special_token_token1] = ACTIONS(2375), - [anon_sym_SQUOTE] = ACTIONS(2375), - [anon_sym_as] = ACTIONS(2375), - [anon_sym_async] = ACTIONS(2375), - [anon_sym_await] = ACTIONS(2375), - [anon_sym_break] = ACTIONS(2375), - [anon_sym_const] = ACTIONS(2375), - [anon_sym_continue] = ACTIONS(2375), - [anon_sym_default] = ACTIONS(2375), - [anon_sym_enum] = ACTIONS(2375), - [anon_sym_fn] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2375), - [anon_sym_impl] = ACTIONS(2375), - [anon_sym_let] = ACTIONS(2375), - [anon_sym_loop] = ACTIONS(2375), - [anon_sym_match] = ACTIONS(2375), - [anon_sym_mod] = ACTIONS(2375), - [anon_sym_pub] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2375), - [anon_sym_static] = ACTIONS(2375), - [anon_sym_struct] = ACTIONS(2375), - [anon_sym_trait] = ACTIONS(2375), - [anon_sym_type] = ACTIONS(2375), - [anon_sym_union] = ACTIONS(2375), - [anon_sym_unsafe] = ACTIONS(2375), - [anon_sym_use] = ACTIONS(2375), - [anon_sym_where] = ACTIONS(2375), - [anon_sym_while] = ACTIONS(2375), - [sym_mutable_specifier] = ACTIONS(2375), - [sym_integer_literal] = ACTIONS(2377), - [aux_sym_string_literal_token1] = ACTIONS(2377), - [sym_char_literal] = ACTIONS(2377), - [anon_sym_true] = ACTIONS(2375), - [anon_sym_false] = ACTIONS(2375), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2375), - [sym_super] = ACTIONS(2375), - [sym_crate] = ACTIONS(2375), - [sym_metavariable] = ACTIONS(2377), - [sym_raw_string_literal] = ACTIONS(2377), - [sym_float_literal] = ACTIONS(2377), + [sym_identifier] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2375), + [anon_sym_RPAREN] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2375), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_LBRACK] = ACTIONS(2375), + [anon_sym_RBRACK] = ACTIONS(2375), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_u8] = ACTIONS(2373), + [anon_sym_i8] = ACTIONS(2373), + [anon_sym_u16] = ACTIONS(2373), + [anon_sym_i16] = ACTIONS(2373), + [anon_sym_u32] = ACTIONS(2373), + [anon_sym_i32] = ACTIONS(2373), + [anon_sym_u64] = ACTIONS(2373), + [anon_sym_i64] = ACTIONS(2373), + [anon_sym_u128] = ACTIONS(2373), + [anon_sym_i128] = ACTIONS(2373), + [anon_sym_isize] = ACTIONS(2373), + [anon_sym_usize] = ACTIONS(2373), + [anon_sym_f32] = ACTIONS(2373), + [anon_sym_f64] = ACTIONS(2373), + [anon_sym_bool] = ACTIONS(2373), + [anon_sym_str] = ACTIONS(2373), + [anon_sym_char] = ACTIONS(2373), + [aux_sym__non_special_token_token1] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [anon_sym_as] = ACTIONS(2373), + [anon_sym_async] = ACTIONS(2373), + [anon_sym_await] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_default] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_fn] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_impl] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_loop] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_mod] = ACTIONS(2373), + [anon_sym_pub] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_trait] = ACTIONS(2373), + [anon_sym_type] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_unsafe] = ACTIONS(2373), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_where] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [sym_mutable_specifier] = ACTIONS(2373), + [sym_integer_literal] = ACTIONS(2375), + [aux_sym_string_literal_token1] = ACTIONS(2375), + [sym_char_literal] = ACTIONS(2375), + [anon_sym_true] = ACTIONS(2373), + [anon_sym_false] = ACTIONS(2373), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2373), + [sym_super] = ACTIONS(2373), + [sym_crate] = ACTIONS(2373), + [sym_metavariable] = ACTIONS(2375), + [sym_raw_string_literal] = ACTIONS(2375), + [sym_float_literal] = ACTIONS(2375), [sym_block_comment] = ACTIONS(3), }, [574] = { - [sym_identifier] = ACTIONS(2379), - [anon_sym_LPAREN] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_RBRACE] = ACTIONS(2381), - [anon_sym_LBRACK] = ACTIONS(2381), - [anon_sym_RBRACK] = ACTIONS(2381), - [anon_sym_DOLLAR] = ACTIONS(2379), - [anon_sym_u8] = ACTIONS(2379), - [anon_sym_i8] = ACTIONS(2379), - [anon_sym_u16] = ACTIONS(2379), - [anon_sym_i16] = ACTIONS(2379), - [anon_sym_u32] = ACTIONS(2379), - [anon_sym_i32] = ACTIONS(2379), - [anon_sym_u64] = ACTIONS(2379), - [anon_sym_i64] = ACTIONS(2379), - [anon_sym_u128] = ACTIONS(2379), - [anon_sym_i128] = ACTIONS(2379), - [anon_sym_isize] = ACTIONS(2379), - [anon_sym_usize] = ACTIONS(2379), - [anon_sym_f32] = ACTIONS(2379), - [anon_sym_f64] = ACTIONS(2379), - [anon_sym_bool] = ACTIONS(2379), - [anon_sym_str] = ACTIONS(2379), - [anon_sym_char] = ACTIONS(2379), - [aux_sym__non_special_token_token1] = ACTIONS(2379), - [anon_sym_SQUOTE] = ACTIONS(2379), - [anon_sym_as] = ACTIONS(2379), - [anon_sym_async] = ACTIONS(2379), - [anon_sym_await] = ACTIONS(2379), - [anon_sym_break] = ACTIONS(2379), - [anon_sym_const] = ACTIONS(2379), - [anon_sym_continue] = ACTIONS(2379), - [anon_sym_default] = ACTIONS(2379), - [anon_sym_enum] = ACTIONS(2379), - [anon_sym_fn] = ACTIONS(2379), - [anon_sym_for] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2379), - [anon_sym_impl] = ACTIONS(2379), - [anon_sym_let] = ACTIONS(2379), - [anon_sym_loop] = ACTIONS(2379), - [anon_sym_match] = ACTIONS(2379), - [anon_sym_mod] = ACTIONS(2379), - [anon_sym_pub] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2379), - [anon_sym_static] = ACTIONS(2379), - [anon_sym_struct] = ACTIONS(2379), - [anon_sym_trait] = ACTIONS(2379), - [anon_sym_type] = ACTIONS(2379), - [anon_sym_union] = ACTIONS(2379), - [anon_sym_unsafe] = ACTIONS(2379), - [anon_sym_use] = ACTIONS(2379), - [anon_sym_where] = ACTIONS(2379), - [anon_sym_while] = ACTIONS(2379), - [sym_mutable_specifier] = ACTIONS(2379), - [sym_integer_literal] = ACTIONS(2381), - [aux_sym_string_literal_token1] = ACTIONS(2381), - [sym_char_literal] = ACTIONS(2381), - [anon_sym_true] = ACTIONS(2379), - [anon_sym_false] = ACTIONS(2379), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2379), - [sym_super] = ACTIONS(2379), - [sym_crate] = ACTIONS(2379), - [sym_metavariable] = ACTIONS(2381), - [sym_raw_string_literal] = ACTIONS(2381), - [sym_float_literal] = ACTIONS(2381), + [sym_identifier] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_RPAREN] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(2379), + [anon_sym_RBRACK] = ACTIONS(2379), + [anon_sym_DOLLAR] = ACTIONS(2377), + [anon_sym_u8] = ACTIONS(2377), + [anon_sym_i8] = ACTIONS(2377), + [anon_sym_u16] = ACTIONS(2377), + [anon_sym_i16] = ACTIONS(2377), + [anon_sym_u32] = ACTIONS(2377), + [anon_sym_i32] = ACTIONS(2377), + [anon_sym_u64] = ACTIONS(2377), + [anon_sym_i64] = ACTIONS(2377), + [anon_sym_u128] = ACTIONS(2377), + [anon_sym_i128] = ACTIONS(2377), + [anon_sym_isize] = ACTIONS(2377), + [anon_sym_usize] = ACTIONS(2377), + [anon_sym_f32] = ACTIONS(2377), + [anon_sym_f64] = ACTIONS(2377), + [anon_sym_bool] = ACTIONS(2377), + [anon_sym_str] = ACTIONS(2377), + [anon_sym_char] = ACTIONS(2377), + [aux_sym__non_special_token_token1] = ACTIONS(2377), + [anon_sym_SQUOTE] = ACTIONS(2377), + [anon_sym_as] = ACTIONS(2377), + [anon_sym_async] = ACTIONS(2377), + [anon_sym_await] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_const] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_default] = ACTIONS(2377), + [anon_sym_enum] = ACTIONS(2377), + [anon_sym_fn] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_impl] = ACTIONS(2377), + [anon_sym_let] = ACTIONS(2377), + [anon_sym_loop] = ACTIONS(2377), + [anon_sym_match] = ACTIONS(2377), + [anon_sym_mod] = ACTIONS(2377), + [anon_sym_pub] = ACTIONS(2377), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_static] = ACTIONS(2377), + [anon_sym_struct] = ACTIONS(2377), + [anon_sym_trait] = ACTIONS(2377), + [anon_sym_type] = ACTIONS(2377), + [anon_sym_union] = ACTIONS(2377), + [anon_sym_unsafe] = ACTIONS(2377), + [anon_sym_use] = ACTIONS(2377), + [anon_sym_where] = ACTIONS(2377), + [anon_sym_while] = ACTIONS(2377), + [sym_mutable_specifier] = ACTIONS(2377), + [sym_integer_literal] = ACTIONS(2379), + [aux_sym_string_literal_token1] = ACTIONS(2379), + [sym_char_literal] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(2377), + [anon_sym_false] = ACTIONS(2377), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2377), + [sym_super] = ACTIONS(2377), + [sym_crate] = ACTIONS(2377), + [sym_metavariable] = ACTIONS(2379), + [sym_raw_string_literal] = ACTIONS(2379), + [sym_float_literal] = ACTIONS(2379), [sym_block_comment] = ACTIONS(3), }, [575] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1794), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1844), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -67133,67 +67117,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [576] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1794), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), + [sym_identifier] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_RPAREN] = ACTIONS(2385), + [anon_sym_LBRACE] = ACTIONS(2385), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2385), [anon_sym_RBRACK] = ACTIONS(2385), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(2383), + [anon_sym_u8] = ACTIONS(2383), + [anon_sym_i8] = ACTIONS(2383), + [anon_sym_u16] = ACTIONS(2383), + [anon_sym_i16] = ACTIONS(2383), + [anon_sym_u32] = ACTIONS(2383), + [anon_sym_i32] = ACTIONS(2383), + [anon_sym_u64] = ACTIONS(2383), + [anon_sym_i64] = ACTIONS(2383), + [anon_sym_u128] = ACTIONS(2383), + [anon_sym_i128] = ACTIONS(2383), + [anon_sym_isize] = ACTIONS(2383), + [anon_sym_usize] = ACTIONS(2383), + [anon_sym_f32] = ACTIONS(2383), + [anon_sym_f64] = ACTIONS(2383), + [anon_sym_bool] = ACTIONS(2383), + [anon_sym_str] = ACTIONS(2383), + [anon_sym_char] = ACTIONS(2383), + [aux_sym__non_special_token_token1] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(2383), + [anon_sym_as] = ACTIONS(2383), + [anon_sym_async] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(2383), + [anon_sym_break] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2383), + [anon_sym_continue] = ACTIONS(2383), + [anon_sym_default] = ACTIONS(2383), + [anon_sym_enum] = ACTIONS(2383), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_impl] = ACTIONS(2383), + [anon_sym_let] = ACTIONS(2383), + [anon_sym_loop] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_mod] = ACTIONS(2383), + [anon_sym_pub] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2383), + [anon_sym_static] = ACTIONS(2383), + [anon_sym_struct] = ACTIONS(2383), + [anon_sym_trait] = ACTIONS(2383), + [anon_sym_type] = ACTIONS(2383), + [anon_sym_union] = ACTIONS(2383), + [anon_sym_unsafe] = ACTIONS(2383), + [anon_sym_use] = ACTIONS(2383), + [anon_sym_where] = ACTIONS(2383), + [anon_sym_while] = ACTIONS(2383), + [sym_mutable_specifier] = ACTIONS(2383), + [sym_integer_literal] = ACTIONS(2385), + [aux_sym_string_literal_token1] = ACTIONS(2385), + [sym_char_literal] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(2383), + [anon_sym_false] = ACTIONS(2383), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2383), + [sym_super] = ACTIONS(2383), + [sym_crate] = ACTIONS(2383), + [sym_metavariable] = ACTIONS(2385), + [sym_raw_string_literal] = ACTIONS(2385), + [sym_float_literal] = ACTIONS(2385), + [sym_block_comment] = ACTIONS(3), + }, + [577] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1844), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_RBRACK] = ACTIONS(2387), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -67203,67 +67257,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [577] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1794), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [578] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1844), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(2389), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -67273,222 +67327,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [578] = { - [sym_identifier] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_RPAREN] = ACTIONS(2391), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_LBRACK] = ACTIONS(2391), - [anon_sym_RBRACK] = ACTIONS(2391), - [anon_sym_DOLLAR] = ACTIONS(2389), - [anon_sym_u8] = ACTIONS(2389), - [anon_sym_i8] = ACTIONS(2389), - [anon_sym_u16] = ACTIONS(2389), - [anon_sym_i16] = ACTIONS(2389), - [anon_sym_u32] = ACTIONS(2389), - [anon_sym_i32] = ACTIONS(2389), - [anon_sym_u64] = ACTIONS(2389), - [anon_sym_i64] = ACTIONS(2389), - [anon_sym_u128] = ACTIONS(2389), - [anon_sym_i128] = ACTIONS(2389), - [anon_sym_isize] = ACTIONS(2389), - [anon_sym_usize] = ACTIONS(2389), - [anon_sym_f32] = ACTIONS(2389), - [anon_sym_f64] = ACTIONS(2389), - [anon_sym_bool] = ACTIONS(2389), - [anon_sym_str] = ACTIONS(2389), - [anon_sym_char] = ACTIONS(2389), - [aux_sym__non_special_token_token1] = ACTIONS(2389), - [anon_sym_SQUOTE] = ACTIONS(2389), - [anon_sym_as] = ACTIONS(2389), - [anon_sym_async] = ACTIONS(2389), - [anon_sym_await] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_const] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_default] = ACTIONS(2389), - [anon_sym_enum] = ACTIONS(2389), - [anon_sym_fn] = ACTIONS(2389), - [anon_sym_for] = ACTIONS(2389), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_impl] = ACTIONS(2389), - [anon_sym_let] = ACTIONS(2389), - [anon_sym_loop] = ACTIONS(2389), - [anon_sym_match] = ACTIONS(2389), - [anon_sym_mod] = ACTIONS(2389), - [anon_sym_pub] = ACTIONS(2389), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_static] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(2389), - [anon_sym_trait] = ACTIONS(2389), - [anon_sym_type] = ACTIONS(2389), - [anon_sym_union] = ACTIONS(2389), - [anon_sym_unsafe] = ACTIONS(2389), - [anon_sym_use] = ACTIONS(2389), - [anon_sym_where] = ACTIONS(2389), - [anon_sym_while] = ACTIONS(2389), - [sym_mutable_specifier] = ACTIONS(2389), - [sym_integer_literal] = ACTIONS(2391), - [aux_sym_string_literal_token1] = ACTIONS(2391), - [sym_char_literal] = ACTIONS(2391), - [anon_sym_true] = ACTIONS(2389), - [anon_sym_false] = ACTIONS(2389), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2389), - [sym_super] = ACTIONS(2389), - [sym_crate] = ACTIONS(2389), - [sym_metavariable] = ACTIONS(2391), - [sym_raw_string_literal] = ACTIONS(2391), - [sym_float_literal] = ACTIONS(2391), - [sym_block_comment] = ACTIONS(3), - }, [579] = { - [sym_identifier] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2395), - [anon_sym_RPAREN] = ACTIONS(2395), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_RBRACE] = ACTIONS(2395), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_RBRACK] = ACTIONS(2395), - [anon_sym_DOLLAR] = ACTIONS(2393), - [anon_sym_u8] = ACTIONS(2393), - [anon_sym_i8] = ACTIONS(2393), - [anon_sym_u16] = ACTIONS(2393), - [anon_sym_i16] = ACTIONS(2393), - [anon_sym_u32] = ACTIONS(2393), - [anon_sym_i32] = ACTIONS(2393), - [anon_sym_u64] = ACTIONS(2393), - [anon_sym_i64] = ACTIONS(2393), - [anon_sym_u128] = ACTIONS(2393), - [anon_sym_i128] = ACTIONS(2393), - [anon_sym_isize] = ACTIONS(2393), - [anon_sym_usize] = ACTIONS(2393), - [anon_sym_f32] = ACTIONS(2393), - [anon_sym_f64] = ACTIONS(2393), - [anon_sym_bool] = ACTIONS(2393), - [anon_sym_str] = ACTIONS(2393), - [anon_sym_char] = ACTIONS(2393), - [aux_sym__non_special_token_token1] = ACTIONS(2393), - [anon_sym_SQUOTE] = ACTIONS(2393), - [anon_sym_as] = ACTIONS(2393), - [anon_sym_async] = ACTIONS(2393), - [anon_sym_await] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_default] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [anon_sym_fn] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_impl] = ACTIONS(2393), - [anon_sym_let] = ACTIONS(2393), - [anon_sym_loop] = ACTIONS(2393), - [anon_sym_match] = ACTIONS(2393), - [anon_sym_mod] = ACTIONS(2393), - [anon_sym_pub] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(2393), - [anon_sym_trait] = ACTIONS(2393), - [anon_sym_type] = ACTIONS(2393), - [anon_sym_union] = ACTIONS(2393), - [anon_sym_unsafe] = ACTIONS(2393), - [anon_sym_use] = ACTIONS(2393), - [anon_sym_where] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [sym_mutable_specifier] = ACTIONS(2393), - [sym_integer_literal] = ACTIONS(2395), - [aux_sym_string_literal_token1] = ACTIONS(2395), - [sym_char_literal] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2393), - [sym_super] = ACTIONS(2393), - [sym_crate] = ACTIONS(2393), - [sym_metavariable] = ACTIONS(2395), - [sym_raw_string_literal] = ACTIONS(2395), - [sym_float_literal] = ACTIONS(2395), + [sym_identifier] = ACTIONS(2391), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_RPAREN] = ACTIONS(2393), + [anon_sym_LBRACE] = ACTIONS(2393), + [anon_sym_RBRACE] = ACTIONS(2393), + [anon_sym_LBRACK] = ACTIONS(2393), + [anon_sym_RBRACK] = ACTIONS(2393), + [anon_sym_DOLLAR] = ACTIONS(2391), + [anon_sym_u8] = ACTIONS(2391), + [anon_sym_i8] = ACTIONS(2391), + [anon_sym_u16] = ACTIONS(2391), + [anon_sym_i16] = ACTIONS(2391), + [anon_sym_u32] = ACTIONS(2391), + [anon_sym_i32] = ACTIONS(2391), + [anon_sym_u64] = ACTIONS(2391), + [anon_sym_i64] = ACTIONS(2391), + [anon_sym_u128] = ACTIONS(2391), + [anon_sym_i128] = ACTIONS(2391), + [anon_sym_isize] = ACTIONS(2391), + [anon_sym_usize] = ACTIONS(2391), + [anon_sym_f32] = ACTIONS(2391), + [anon_sym_f64] = ACTIONS(2391), + [anon_sym_bool] = ACTIONS(2391), + [anon_sym_str] = ACTIONS(2391), + [anon_sym_char] = ACTIONS(2391), + [aux_sym__non_special_token_token1] = ACTIONS(2391), + [anon_sym_SQUOTE] = ACTIONS(2391), + [anon_sym_as] = ACTIONS(2391), + [anon_sym_async] = ACTIONS(2391), + [anon_sym_await] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(2391), + [anon_sym_const] = ACTIONS(2391), + [anon_sym_continue] = ACTIONS(2391), + [anon_sym_default] = ACTIONS(2391), + [anon_sym_enum] = ACTIONS(2391), + [anon_sym_fn] = ACTIONS(2391), + [anon_sym_for] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2391), + [anon_sym_impl] = ACTIONS(2391), + [anon_sym_let] = ACTIONS(2391), + [anon_sym_loop] = ACTIONS(2391), + [anon_sym_match] = ACTIONS(2391), + [anon_sym_mod] = ACTIONS(2391), + [anon_sym_pub] = ACTIONS(2391), + [anon_sym_return] = ACTIONS(2391), + [anon_sym_static] = ACTIONS(2391), + [anon_sym_struct] = ACTIONS(2391), + [anon_sym_trait] = ACTIONS(2391), + [anon_sym_type] = ACTIONS(2391), + [anon_sym_union] = ACTIONS(2391), + [anon_sym_unsafe] = ACTIONS(2391), + [anon_sym_use] = ACTIONS(2391), + [anon_sym_where] = ACTIONS(2391), + [anon_sym_while] = ACTIONS(2391), + [sym_mutable_specifier] = ACTIONS(2391), + [sym_integer_literal] = ACTIONS(2393), + [aux_sym_string_literal_token1] = ACTIONS(2393), + [sym_char_literal] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(2391), + [anon_sym_false] = ACTIONS(2391), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2391), + [sym_super] = ACTIONS(2391), + [sym_crate] = ACTIONS(2391), + [sym_metavariable] = ACTIONS(2393), + [sym_raw_string_literal] = ACTIONS(2393), + [sym_float_literal] = ACTIONS(2393), [sym_block_comment] = ACTIONS(3), }, [580] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1794), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), + [sym_identifier] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2397), + [anon_sym_RPAREN] = ACTIONS(2397), + [anon_sym_LBRACE] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_LBRACK] = ACTIONS(2397), [anon_sym_RBRACK] = ACTIONS(2397), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [anon_sym_DOLLAR] = ACTIONS(2395), + [anon_sym_u8] = ACTIONS(2395), + [anon_sym_i8] = ACTIONS(2395), + [anon_sym_u16] = ACTIONS(2395), + [anon_sym_i16] = ACTIONS(2395), + [anon_sym_u32] = ACTIONS(2395), + [anon_sym_i32] = ACTIONS(2395), + [anon_sym_u64] = ACTIONS(2395), + [anon_sym_i64] = ACTIONS(2395), + [anon_sym_u128] = ACTIONS(2395), + [anon_sym_i128] = ACTIONS(2395), + [anon_sym_isize] = ACTIONS(2395), + [anon_sym_usize] = ACTIONS(2395), + [anon_sym_f32] = ACTIONS(2395), + [anon_sym_f64] = ACTIONS(2395), + [anon_sym_bool] = ACTIONS(2395), + [anon_sym_str] = ACTIONS(2395), + [anon_sym_char] = ACTIONS(2395), + [aux_sym__non_special_token_token1] = ACTIONS(2395), + [anon_sym_SQUOTE] = ACTIONS(2395), + [anon_sym_as] = ACTIONS(2395), + [anon_sym_async] = ACTIONS(2395), + [anon_sym_await] = ACTIONS(2395), + [anon_sym_break] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [anon_sym_continue] = ACTIONS(2395), + [anon_sym_default] = ACTIONS(2395), + [anon_sym_enum] = ACTIONS(2395), + [anon_sym_fn] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_impl] = ACTIONS(2395), + [anon_sym_let] = ACTIONS(2395), + [anon_sym_loop] = ACTIONS(2395), + [anon_sym_match] = ACTIONS(2395), + [anon_sym_mod] = ACTIONS(2395), + [anon_sym_pub] = ACTIONS(2395), + [anon_sym_return] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(2395), + [anon_sym_trait] = ACTIONS(2395), + [anon_sym_type] = ACTIONS(2395), + [anon_sym_union] = ACTIONS(2395), + [anon_sym_unsafe] = ACTIONS(2395), + [anon_sym_use] = ACTIONS(2395), + [anon_sym_where] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [sym_mutable_specifier] = ACTIONS(2395), + [sym_integer_literal] = ACTIONS(2397), + [aux_sym_string_literal_token1] = ACTIONS(2397), + [sym_char_literal] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(2395), + [anon_sym_false] = ACTIONS(2395), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2395), + [sym_super] = ACTIONS(2395), + [sym_crate] = ACTIONS(2395), + [sym_metavariable] = ACTIONS(2397), + [sym_raw_string_literal] = ACTIONS(2397), + [sym_float_literal] = ACTIONS(2397), [sym_block_comment] = ACTIONS(3), }, [581] = { @@ -67552,7 +67536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2401), [anon_sym_true] = ACTIONS(2399), [anon_sym_false] = ACTIONS(2399), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2399), [sym_super] = ACTIONS(2399), [sym_crate] = ACTIONS(2399), @@ -67622,7 +67606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2405), [anon_sym_true] = ACTIONS(2403), [anon_sym_false] = ACTIONS(2403), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2403), [sym_super] = ACTIONS(2403), [sym_crate] = ACTIONS(2403), @@ -67632,6 +67616,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [583] = { + [sym_parameter] = STATE(2289), + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1928), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(2327), + [anon_sym_union] = ACTIONS(2327), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1528), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1530), + [sym_mutable_specifier] = ACTIONS(2329), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2333), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [584] = { [sym_identifier] = ACTIONS(2407), [anon_sym_LPAREN] = ACTIONS(2409), [anon_sym_RPAREN] = ACTIONS(2409), @@ -67692,7 +67746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(2409), [anon_sym_true] = ACTIONS(2407), [anon_sym_false] = ACTIONS(2407), - [sym_line_comment] = ACTIONS(986), + [sym_line_comment] = ACTIONS(984), [sym_self] = ACTIONS(2407), [sym_super] = ACTIONS(2407), [sym_crate] = ACTIONS(2407), @@ -67701,60 +67755,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2409), [sym_block_comment] = ACTIONS(3), }, - [584] = { - [sym_parameter] = STATE(2291), - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2023), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(2327), - [anon_sym_union] = ACTIONS(2327), + [585] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1844), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), - [sym_mutable_specifier] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(1530), + [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -67763,31 +67817,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2333), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [585] = { - [sym_function_modifiers] = STATE(2473), - [sym_const_parameter] = STATE(2108), - [sym_constrained_type_parameter] = STATE(1765), - [sym_optional_type_parameter] = STATE(2108), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1882), - [sym_bracketed_type] = STATE(2379), - [sym_qualified_type] = STATE(2353), - [sym_lifetime] = STATE(1615), + [586] = { + [sym_identifier] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_RBRACK] = ACTIONS(2415), + [anon_sym_DOLLAR] = ACTIONS(2413), + [anon_sym_u8] = ACTIONS(2413), + [anon_sym_i8] = ACTIONS(2413), + [anon_sym_u16] = ACTIONS(2413), + [anon_sym_i16] = ACTIONS(2413), + [anon_sym_u32] = ACTIONS(2413), + [anon_sym_i32] = ACTIONS(2413), + [anon_sym_u64] = ACTIONS(2413), + [anon_sym_i64] = ACTIONS(2413), + [anon_sym_u128] = ACTIONS(2413), + [anon_sym_i128] = ACTIONS(2413), + [anon_sym_isize] = ACTIONS(2413), + [anon_sym_usize] = ACTIONS(2413), + [anon_sym_f32] = ACTIONS(2413), + [anon_sym_f64] = ACTIONS(2413), + [anon_sym_bool] = ACTIONS(2413), + [anon_sym_str] = ACTIONS(2413), + [anon_sym_char] = ACTIONS(2413), + [aux_sym__non_special_token_token1] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_as] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_await] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(2413), + [anon_sym_enum] = ACTIONS(2413), + [anon_sym_fn] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_impl] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_loop] = ACTIONS(2413), + [anon_sym_match] = ACTIONS(2413), + [anon_sym_mod] = ACTIONS(2413), + [anon_sym_pub] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_struct] = ACTIONS(2413), + [anon_sym_trait] = ACTIONS(2413), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_union] = ACTIONS(2413), + [anon_sym_unsafe] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_where] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [sym_mutable_specifier] = ACTIONS(2413), + [sym_integer_literal] = ACTIONS(2415), + [aux_sym_string_literal_token1] = ACTIONS(2415), + [sym_char_literal] = ACTIONS(2415), + [anon_sym_true] = ACTIONS(2413), + [anon_sym_false] = ACTIONS(2413), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2413), + [sym_super] = ACTIONS(2413), + [sym_crate] = ACTIONS(2413), + [sym_metavariable] = ACTIONS(2415), + [sym_raw_string_literal] = ACTIONS(2415), + [sym_float_literal] = ACTIONS(2415), + [sym_block_comment] = ACTIONS(3), + }, + [587] = { + [sym_function_modifiers] = STATE(2352), + [sym_const_parameter] = STATE(1986), + [sym_constrained_type_parameter] = STATE(1762), + [sym_optional_type_parameter] = STATE(1986), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(2122), + [sym_bracketed_type] = STATE(2377), + [sym_qualified_type] = STATE(2504), + [sym_lifetime] = STATE(1677), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -67795,105 +67919,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(2411), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(2413), - [anon_sym_default] = ACTIONS(876), + [anon_sym_const] = ACTIONS(2419), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(2415), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(2421), [sym_block_comment] = ACTIONS(3), }, - [586] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1794), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(2417), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [588] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1425), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -67903,99 +68026,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [587] = { - [sym_identifier] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(2421), - [anon_sym_RPAREN] = ACTIONS(2421), - [anon_sym_LBRACE] = ACTIONS(2421), - [anon_sym_RBRACE] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_RBRACK] = ACTIONS(2421), - [anon_sym_DOLLAR] = ACTIONS(2419), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_as] = ACTIONS(2419), - [anon_sym_async] = ACTIONS(2419), - [anon_sym_await] = 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_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_where] = ACTIONS(2419), - [anon_sym_while] = ACTIONS(2419), - [sym_mutable_specifier] = ACTIONS(2419), - [sym_integer_literal] = ACTIONS(2421), - [aux_sym_string_literal_token1] = ACTIONS(2421), - [sym_char_literal] = ACTIONS(2421), - [anon_sym_true] = ACTIONS(2419), - [anon_sym_false] = ACTIONS(2419), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2419), - [sym_super] = ACTIONS(2419), - [sym_crate] = ACTIONS(2419), - [sym_metavariable] = ACTIONS(2421), - [sym_raw_string_literal] = ACTIONS(2421), - [sym_float_literal] = ACTIONS(2421), + [589] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2190), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1528), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1530), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [588] = { - [sym_function_modifiers] = STATE(2473), - [sym_higher_ranked_trait_bound] = STATE(1593), - [sym_removed_trait_bound] = STATE(1593), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1563), - [sym_bracketed_type] = STATE(2379), + [590] = { + [sym_identifier] = ACTIONS(608), + [anon_sym_LPAREN] = ACTIONS(606), + [anon_sym_RPAREN] = ACTIONS(606), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_RBRACE] = ACTIONS(606), + [anon_sym_LBRACK] = ACTIONS(606), + [anon_sym_RBRACK] = ACTIONS(606), + [anon_sym_DOLLAR] = ACTIONS(606), + [anon_sym_u8] = ACTIONS(608), + [anon_sym_i8] = ACTIONS(608), + [anon_sym_u16] = ACTIONS(608), + [anon_sym_i16] = ACTIONS(608), + [anon_sym_u32] = ACTIONS(608), + [anon_sym_i32] = ACTIONS(608), + [anon_sym_u64] = ACTIONS(608), + [anon_sym_i64] = ACTIONS(608), + [anon_sym_u128] = ACTIONS(608), + [anon_sym_i128] = ACTIONS(608), + [anon_sym_isize] = ACTIONS(608), + [anon_sym_usize] = ACTIONS(608), + [anon_sym_f32] = ACTIONS(608), + [anon_sym_f64] = ACTIONS(608), + [anon_sym_bool] = ACTIONS(608), + [anon_sym_str] = ACTIONS(608), + [anon_sym_char] = ACTIONS(608), + [aux_sym__non_special_token_token1] = ACTIONS(608), + [anon_sym_SQUOTE] = ACTIONS(608), + [anon_sym_as] = ACTIONS(608), + [anon_sym_async] = ACTIONS(608), + [anon_sym_await] = ACTIONS(608), + [anon_sym_break] = ACTIONS(608), + [anon_sym_const] = ACTIONS(608), + [anon_sym_continue] = ACTIONS(608), + [anon_sym_default] = ACTIONS(608), + [anon_sym_enum] = ACTIONS(608), + [anon_sym_fn] = ACTIONS(608), + [anon_sym_for] = ACTIONS(608), + [anon_sym_if] = ACTIONS(608), + [anon_sym_impl] = ACTIONS(608), + [anon_sym_let] = ACTIONS(608), + [anon_sym_loop] = ACTIONS(608), + [anon_sym_match] = ACTIONS(608), + [anon_sym_mod] = ACTIONS(608), + [anon_sym_pub] = ACTIONS(608), + [anon_sym_return] = ACTIONS(608), + [anon_sym_static] = ACTIONS(608), + [anon_sym_struct] = ACTIONS(608), + [anon_sym_trait] = ACTIONS(608), + [anon_sym_type] = ACTIONS(608), + [anon_sym_union] = ACTIONS(608), + [anon_sym_unsafe] = ACTIONS(608), + [anon_sym_use] = ACTIONS(608), + [anon_sym_where] = ACTIONS(608), + [anon_sym_while] = ACTIONS(608), + [sym_mutable_specifier] = ACTIONS(608), + [sym_integer_literal] = ACTIONS(606), + [aux_sym_string_literal_token1] = ACTIONS(606), + [sym_char_literal] = ACTIONS(606), + [anon_sym_true] = ACTIONS(608), + [anon_sym_false] = ACTIONS(608), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(608), + [sym_super] = ACTIONS(608), + [sym_crate] = ACTIONS(608), + [sym_raw_string_literal] = ACTIONS(606), + [sym_float_literal] = ACTIONS(606), + [sym_block_comment] = ACTIONS(3), + }, + [591] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1855), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1528), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1530), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [592] = { + [sym_function_modifiers] = STATE(2352), + [sym_higher_ranked_trait_bound] = STATE(1582), + [sym_removed_trait_bound] = STATE(1582), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1591), + [sym_bracketed_type] = STATE(2377), [sym_lifetime] = STATE(1590), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -68003,106 +68263,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), [anon_sym_QMARK] = ACTIONS(2423), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(2425), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, - [589] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1856), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [593] = { + [sym_function_modifiers] = STATE(2352), + [sym_higher_ranked_trait_bound] = STATE(1582), + [sym_removed_trait_bound] = STATE(1582), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1591), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(1592), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(2423), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_block_comment] = ACTIONS(3), + }, + [594] = { + [sym_function_modifiers] = STATE(2352), + [sym_higher_ranked_trait_bound] = STATE(1582), + [sym_removed_trait_bound] = STATE(1582), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1589), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(1590), + [sym_array_type] = STATE(1395), + [sym_for_lifetimes] = STATE(1191), + [sym_function_type] = STATE(1395), + [sym_tuple_type] = STATE(1395), + [sym_unit_type] = STATE(1395), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), + [sym_bounded_type] = STATE(1395), + [sym_reference_type] = STATE(1395), + [sym_pointer_type] = STATE(1395), + [sym_empty_type] = STATE(1395), + [sym_abstract_type] = STATE(1395), + [sym_dynamic_type] = STATE(1395), + [sym_macro_invocation] = STATE(1395), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(2423), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(882), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_block_comment] = ACTIONS(3), + }, + [595] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), - [sym_mutable_specifier] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(1530), + [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -68111,67 +68509,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [590] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1454), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [596] = { + [sym_identifier] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_RBRACK] = ACTIONS(2415), + [anon_sym_DOLLAR] = ACTIONS(2415), + [anon_sym_u8] = ACTIONS(2413), + [anon_sym_i8] = ACTIONS(2413), + [anon_sym_u16] = ACTIONS(2413), + [anon_sym_i16] = ACTIONS(2413), + [anon_sym_u32] = ACTIONS(2413), + [anon_sym_i32] = ACTIONS(2413), + [anon_sym_u64] = ACTIONS(2413), + [anon_sym_i64] = ACTIONS(2413), + [anon_sym_u128] = ACTIONS(2413), + [anon_sym_i128] = ACTIONS(2413), + [anon_sym_isize] = ACTIONS(2413), + [anon_sym_usize] = ACTIONS(2413), + [anon_sym_f32] = ACTIONS(2413), + [anon_sym_f64] = ACTIONS(2413), + [anon_sym_bool] = ACTIONS(2413), + [anon_sym_str] = ACTIONS(2413), + [anon_sym_char] = ACTIONS(2413), + [aux_sym__non_special_token_token1] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_as] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_await] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(2413), + [anon_sym_enum] = ACTIONS(2413), + [anon_sym_fn] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_impl] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_loop] = ACTIONS(2413), + [anon_sym_match] = ACTIONS(2413), + [anon_sym_mod] = ACTIONS(2413), + [anon_sym_pub] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_struct] = ACTIONS(2413), + [anon_sym_trait] = ACTIONS(2413), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_union] = ACTIONS(2413), + [anon_sym_unsafe] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_where] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [sym_mutable_specifier] = ACTIONS(2413), + [sym_integer_literal] = ACTIONS(2415), + [aux_sym_string_literal_token1] = ACTIONS(2415), + [sym_char_literal] = ACTIONS(2415), + [anon_sym_true] = ACTIONS(2413), + [anon_sym_false] = ACTIONS(2413), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2413), + [sym_super] = ACTIONS(2413), + [sym_crate] = ACTIONS(2413), + [sym_raw_string_literal] = ACTIONS(2415), + [sym_float_literal] = ACTIONS(2415), + [sym_block_comment] = ACTIONS(3), + }, + [597] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1769), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), - [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1530), + [sym_mutable_specifier] = ACTIONS(2427), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -68180,67 +68647,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [591] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1436), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [598] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2148), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), - [sym_mutable_specifier] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(1530), + [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -68249,66 +68716,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [592] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1794), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [599] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2035), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -68318,135 +68785,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [593] = { - [sym_identifier] = ACTIONS(612), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_RPAREN] = ACTIONS(610), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_RBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(610), - [anon_sym_RBRACK] = ACTIONS(610), - [anon_sym_DOLLAR] = ACTIONS(610), - [anon_sym_u8] = ACTIONS(612), - [anon_sym_i8] = ACTIONS(612), - [anon_sym_u16] = ACTIONS(612), - [anon_sym_i16] = ACTIONS(612), - [anon_sym_u32] = ACTIONS(612), - [anon_sym_i32] = ACTIONS(612), - [anon_sym_u64] = ACTIONS(612), - [anon_sym_i64] = ACTIONS(612), - [anon_sym_u128] = ACTIONS(612), - [anon_sym_i128] = ACTIONS(612), - [anon_sym_isize] = ACTIONS(612), - [anon_sym_usize] = ACTIONS(612), - [anon_sym_f32] = ACTIONS(612), - [anon_sym_f64] = ACTIONS(612), - [anon_sym_bool] = ACTIONS(612), - [anon_sym_str] = ACTIONS(612), - [anon_sym_char] = ACTIONS(612), - [aux_sym__non_special_token_token1] = ACTIONS(612), - [anon_sym_SQUOTE] = ACTIONS(612), - [anon_sym_as] = ACTIONS(612), - [anon_sym_async] = ACTIONS(612), - [anon_sym_await] = ACTIONS(612), - [anon_sym_break] = ACTIONS(612), - [anon_sym_const] = ACTIONS(612), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_default] = ACTIONS(612), - [anon_sym_enum] = ACTIONS(612), - [anon_sym_fn] = ACTIONS(612), - [anon_sym_for] = ACTIONS(612), - [anon_sym_if] = ACTIONS(612), - [anon_sym_impl] = ACTIONS(612), - [anon_sym_let] = ACTIONS(612), - [anon_sym_loop] = ACTIONS(612), - [anon_sym_match] = ACTIONS(612), - [anon_sym_mod] = ACTIONS(612), - [anon_sym_pub] = ACTIONS(612), - [anon_sym_return] = ACTIONS(612), - [anon_sym_static] = ACTIONS(612), - [anon_sym_struct] = ACTIONS(612), - [anon_sym_trait] = ACTIONS(612), - [anon_sym_type] = ACTIONS(612), - [anon_sym_union] = ACTIONS(612), - [anon_sym_unsafe] = ACTIONS(612), - [anon_sym_use] = ACTIONS(612), - [anon_sym_where] = ACTIONS(612), - [anon_sym_while] = ACTIONS(612), - [sym_mutable_specifier] = ACTIONS(612), - [sym_integer_literal] = ACTIONS(610), - [aux_sym_string_literal_token1] = ACTIONS(610), - [sym_char_literal] = ACTIONS(610), - [anon_sym_true] = ACTIONS(612), - [anon_sym_false] = ACTIONS(612), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(612), - [sym_super] = ACTIONS(612), - [sym_crate] = ACTIONS(612), - [sym_raw_string_literal] = ACTIONS(610), - [sym_float_literal] = ACTIONS(610), + [600] = { + [sym_identifier] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(2409), + [anon_sym_RPAREN] = ACTIONS(2409), + [anon_sym_LBRACE] = ACTIONS(2409), + [anon_sym_RBRACE] = ACTIONS(2409), + [anon_sym_LBRACK] = ACTIONS(2409), + [anon_sym_RBRACK] = ACTIONS(2409), + [anon_sym_DOLLAR] = ACTIONS(2409), + [anon_sym_u8] = ACTIONS(2407), + [anon_sym_i8] = ACTIONS(2407), + [anon_sym_u16] = ACTIONS(2407), + [anon_sym_i16] = ACTIONS(2407), + [anon_sym_u32] = ACTIONS(2407), + [anon_sym_i32] = ACTIONS(2407), + [anon_sym_u64] = ACTIONS(2407), + [anon_sym_i64] = ACTIONS(2407), + [anon_sym_u128] = ACTIONS(2407), + [anon_sym_i128] = ACTIONS(2407), + [anon_sym_isize] = ACTIONS(2407), + [anon_sym_usize] = ACTIONS(2407), + [anon_sym_f32] = ACTIONS(2407), + [anon_sym_f64] = ACTIONS(2407), + [anon_sym_bool] = ACTIONS(2407), + [anon_sym_str] = ACTIONS(2407), + [anon_sym_char] = ACTIONS(2407), + [aux_sym__non_special_token_token1] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_as] = ACTIONS(2407), + [anon_sym_async] = ACTIONS(2407), + [anon_sym_await] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(2407), + [anon_sym_const] = ACTIONS(2407), + [anon_sym_continue] = ACTIONS(2407), + [anon_sym_default] = ACTIONS(2407), + [anon_sym_enum] = ACTIONS(2407), + [anon_sym_fn] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2407), + [anon_sym_if] = ACTIONS(2407), + [anon_sym_impl] = ACTIONS(2407), + [anon_sym_let] = ACTIONS(2407), + [anon_sym_loop] = ACTIONS(2407), + [anon_sym_match] = ACTIONS(2407), + [anon_sym_mod] = ACTIONS(2407), + [anon_sym_pub] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2407), + [anon_sym_static] = ACTIONS(2407), + [anon_sym_struct] = ACTIONS(2407), + [anon_sym_trait] = ACTIONS(2407), + [anon_sym_type] = ACTIONS(2407), + [anon_sym_union] = ACTIONS(2407), + [anon_sym_unsafe] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2407), + [anon_sym_where] = ACTIONS(2407), + [anon_sym_while] = ACTIONS(2407), + [sym_mutable_specifier] = ACTIONS(2407), + [sym_integer_literal] = ACTIONS(2409), + [aux_sym_string_literal_token1] = ACTIONS(2409), + [sym_char_literal] = ACTIONS(2409), + [anon_sym_true] = ACTIONS(2407), + [anon_sym_false] = ACTIONS(2407), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2407), + [sym_super] = ACTIONS(2407), + [sym_crate] = ACTIONS(2407), + [sym_raw_string_literal] = ACTIONS(2409), + [sym_float_literal] = ACTIONS(2409), [sym_block_comment] = ACTIONS(3), }, - [594] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1834), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(2431), - [anon_sym_union] = ACTIONS(2431), + [601] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2154), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -68456,66 +68923,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2433), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [595] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2080), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [602] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1452), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -68525,66 +68992,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [596] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2176), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [603] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1816), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -68594,66 +69061,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(2431), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [597] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1441), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [604] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1921), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -68663,67 +69130,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [598] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1807), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [605] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1816), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), - [sym_mutable_specifier] = ACTIONS(2435), + [anon_sym_AMP] = ACTIONS(1530), + [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -68732,273 +69199,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(2433), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [599] = { - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_RPAREN] = ACTIONS(2343), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_RBRACE] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_RBRACK] = ACTIONS(2343), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_u8] = ACTIONS(2341), - [anon_sym_i8] = ACTIONS(2341), - [anon_sym_u16] = ACTIONS(2341), - [anon_sym_i16] = ACTIONS(2341), - [anon_sym_u32] = ACTIONS(2341), - [anon_sym_i32] = ACTIONS(2341), - [anon_sym_u64] = ACTIONS(2341), - [anon_sym_i64] = ACTIONS(2341), - [anon_sym_u128] = ACTIONS(2341), - [anon_sym_i128] = ACTIONS(2341), - [anon_sym_isize] = ACTIONS(2341), - [anon_sym_usize] = ACTIONS(2341), - [anon_sym_f32] = ACTIONS(2341), - [anon_sym_f64] = ACTIONS(2341), - [anon_sym_bool] = ACTIONS(2341), - [anon_sym_str] = ACTIONS(2341), - [anon_sym_char] = ACTIONS(2341), - [aux_sym__non_special_token_token1] = ACTIONS(2341), - [anon_sym_SQUOTE] = ACTIONS(2341), - [anon_sym_as] = ACTIONS(2341), - [anon_sym_async] = ACTIONS(2341), - [anon_sym_await] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_default] = ACTIONS(2341), - [anon_sym_enum] = ACTIONS(2341), - [anon_sym_fn] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_impl] = ACTIONS(2341), - [anon_sym_let] = ACTIONS(2341), - [anon_sym_loop] = ACTIONS(2341), - [anon_sym_match] = ACTIONS(2341), - [anon_sym_mod] = ACTIONS(2341), - [anon_sym_pub] = ACTIONS(2341), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_static] = ACTIONS(2341), - [anon_sym_struct] = ACTIONS(2341), - [anon_sym_trait] = ACTIONS(2341), - [anon_sym_type] = ACTIONS(2341), - [anon_sym_union] = ACTIONS(2341), - [anon_sym_unsafe] = ACTIONS(2341), - [anon_sym_use] = ACTIONS(2341), - [anon_sym_where] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [sym_mutable_specifier] = ACTIONS(2341), - [sym_integer_literal] = ACTIONS(2343), - [aux_sym_string_literal_token1] = ACTIONS(2343), - [sym_char_literal] = ACTIONS(2343), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2341), - [sym_super] = ACTIONS(2341), - [sym_crate] = ACTIONS(2341), - [sym_raw_string_literal] = ACTIONS(2343), - [sym_float_literal] = ACTIONS(2343), - [sym_block_comment] = ACTIONS(3), - }, - [600] = { - [sym_identifier] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_RPAREN] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_RBRACK] = ACTIONS(2347), - [anon_sym_DOLLAR] = ACTIONS(2347), - [anon_sym_u8] = ACTIONS(2345), - [anon_sym_i8] = ACTIONS(2345), - [anon_sym_u16] = ACTIONS(2345), - [anon_sym_i16] = ACTIONS(2345), - [anon_sym_u32] = ACTIONS(2345), - [anon_sym_i32] = ACTIONS(2345), - [anon_sym_u64] = ACTIONS(2345), - [anon_sym_i64] = ACTIONS(2345), - [anon_sym_u128] = ACTIONS(2345), - [anon_sym_i128] = ACTIONS(2345), - [anon_sym_isize] = ACTIONS(2345), - [anon_sym_usize] = ACTIONS(2345), - [anon_sym_f32] = ACTIONS(2345), - [anon_sym_f64] = ACTIONS(2345), - [anon_sym_bool] = ACTIONS(2345), - [anon_sym_str] = ACTIONS(2345), - [anon_sym_char] = ACTIONS(2345), - [aux_sym__non_special_token_token1] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_as] = ACTIONS(2345), - [anon_sym_async] = ACTIONS(2345), - [anon_sym_await] = ACTIONS(2345), - [anon_sym_break] = ACTIONS(2345), - [anon_sym_const] = ACTIONS(2345), - [anon_sym_continue] = ACTIONS(2345), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_enum] = ACTIONS(2345), - [anon_sym_fn] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2345), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_impl] = ACTIONS(2345), - [anon_sym_let] = ACTIONS(2345), - [anon_sym_loop] = ACTIONS(2345), - [anon_sym_match] = ACTIONS(2345), - [anon_sym_mod] = ACTIONS(2345), - [anon_sym_pub] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2345), - [anon_sym_static] = ACTIONS(2345), - [anon_sym_struct] = ACTIONS(2345), - [anon_sym_trait] = ACTIONS(2345), - [anon_sym_type] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), - [anon_sym_unsafe] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2345), - [anon_sym_where] = ACTIONS(2345), - [anon_sym_while] = ACTIONS(2345), - [sym_mutable_specifier] = ACTIONS(2345), - [sym_integer_literal] = ACTIONS(2347), - [aux_sym_string_literal_token1] = ACTIONS(2347), - [sym_char_literal] = ACTIONS(2347), - [anon_sym_true] = ACTIONS(2345), - [anon_sym_false] = ACTIONS(2345), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2345), - [sym_super] = ACTIONS(2345), - [sym_crate] = ACTIONS(2345), - [sym_raw_string_literal] = ACTIONS(2347), - [sym_float_literal] = ACTIONS(2347), - [sym_block_comment] = ACTIONS(3), - }, - [601] = { - [sym_identifier] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2395), - [anon_sym_RPAREN] = ACTIONS(2395), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_RBRACE] = ACTIONS(2395), - [anon_sym_LBRACK] = ACTIONS(2395), - [anon_sym_RBRACK] = ACTIONS(2395), - [anon_sym_DOLLAR] = ACTIONS(2395), - [anon_sym_u8] = ACTIONS(2393), - [anon_sym_i8] = ACTIONS(2393), - [anon_sym_u16] = ACTIONS(2393), - [anon_sym_i16] = ACTIONS(2393), - [anon_sym_u32] = ACTIONS(2393), - [anon_sym_i32] = ACTIONS(2393), - [anon_sym_u64] = ACTIONS(2393), - [anon_sym_i64] = ACTIONS(2393), - [anon_sym_u128] = ACTIONS(2393), - [anon_sym_i128] = ACTIONS(2393), - [anon_sym_isize] = ACTIONS(2393), - [anon_sym_usize] = ACTIONS(2393), - [anon_sym_f32] = ACTIONS(2393), - [anon_sym_f64] = ACTIONS(2393), - [anon_sym_bool] = ACTIONS(2393), - [anon_sym_str] = ACTIONS(2393), - [anon_sym_char] = ACTIONS(2393), - [aux_sym__non_special_token_token1] = ACTIONS(2393), - [anon_sym_SQUOTE] = ACTIONS(2393), - [anon_sym_as] = ACTIONS(2393), - [anon_sym_async] = ACTIONS(2393), - [anon_sym_await] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_default] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [anon_sym_fn] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_impl] = ACTIONS(2393), - [anon_sym_let] = ACTIONS(2393), - [anon_sym_loop] = ACTIONS(2393), - [anon_sym_match] = ACTIONS(2393), - [anon_sym_mod] = ACTIONS(2393), - [anon_sym_pub] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(2393), - [anon_sym_trait] = ACTIONS(2393), - [anon_sym_type] = ACTIONS(2393), - [anon_sym_union] = ACTIONS(2393), - [anon_sym_unsafe] = ACTIONS(2393), - [anon_sym_use] = ACTIONS(2393), - [anon_sym_where] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [sym_mutable_specifier] = ACTIONS(2393), - [sym_integer_literal] = ACTIONS(2395), - [aux_sym_string_literal_token1] = ACTIONS(2395), - [sym_char_literal] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(2393), - [anon_sym_false] = ACTIONS(2393), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2393), - [sym_super] = ACTIONS(2393), - [sym_crate] = ACTIONS(2393), - [sym_raw_string_literal] = ACTIONS(2395), - [sym_float_literal] = ACTIONS(2395), - [sym_block_comment] = ACTIONS(3), - }, - [602] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2155), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [606] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1469), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -69008,204 +69268,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [603] = { - [sym_identifier] = ACTIONS(474), - [anon_sym_LPAREN] = ACTIONS(472), - [anon_sym_RPAREN] = ACTIONS(472), - [anon_sym_LBRACE] = ACTIONS(472), - [anon_sym_RBRACE] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(472), - [anon_sym_RBRACK] = ACTIONS(472), - [anon_sym_DOLLAR] = ACTIONS(472), - [anon_sym_u8] = ACTIONS(474), - [anon_sym_i8] = ACTIONS(474), - [anon_sym_u16] = ACTIONS(474), - [anon_sym_i16] = ACTIONS(474), - [anon_sym_u32] = ACTIONS(474), - [anon_sym_i32] = ACTIONS(474), - [anon_sym_u64] = ACTIONS(474), - [anon_sym_i64] = ACTIONS(474), - [anon_sym_u128] = ACTIONS(474), - [anon_sym_i128] = ACTIONS(474), - [anon_sym_isize] = ACTIONS(474), - [anon_sym_usize] = ACTIONS(474), - [anon_sym_f32] = ACTIONS(474), - [anon_sym_f64] = ACTIONS(474), - [anon_sym_bool] = ACTIONS(474), - [anon_sym_str] = ACTIONS(474), - [anon_sym_char] = ACTIONS(474), - [aux_sym__non_special_token_token1] = ACTIONS(474), - [anon_sym_SQUOTE] = ACTIONS(474), - [anon_sym_as] = ACTIONS(474), - [anon_sym_async] = ACTIONS(474), - [anon_sym_await] = ACTIONS(474), - [anon_sym_break] = ACTIONS(474), - [anon_sym_const] = ACTIONS(474), - [anon_sym_continue] = ACTIONS(474), - [anon_sym_default] = ACTIONS(474), - [anon_sym_enum] = ACTIONS(474), - [anon_sym_fn] = ACTIONS(474), - [anon_sym_for] = ACTIONS(474), - [anon_sym_if] = ACTIONS(474), - [anon_sym_impl] = ACTIONS(474), - [anon_sym_let] = ACTIONS(474), - [anon_sym_loop] = ACTIONS(474), - [anon_sym_match] = ACTIONS(474), - [anon_sym_mod] = ACTIONS(474), - [anon_sym_pub] = ACTIONS(474), - [anon_sym_return] = ACTIONS(474), - [anon_sym_static] = ACTIONS(474), - [anon_sym_struct] = ACTIONS(474), - [anon_sym_trait] = ACTIONS(474), - [anon_sym_type] = ACTIONS(474), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(474), - [anon_sym_use] = ACTIONS(474), - [anon_sym_where] = ACTIONS(474), - [anon_sym_while] = ACTIONS(474), - [sym_mutable_specifier] = ACTIONS(474), - [sym_integer_literal] = ACTIONS(472), - [aux_sym_string_literal_token1] = ACTIONS(472), - [sym_char_literal] = ACTIONS(472), - [anon_sym_true] = ACTIONS(474), - [anon_sym_false] = ACTIONS(474), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(474), - [sym_super] = ACTIONS(474), - [sym_crate] = ACTIONS(474), - [sym_raw_string_literal] = ACTIONS(472), - [sym_float_literal] = ACTIONS(472), - [sym_block_comment] = ACTIONS(3), - }, - [604] = { - [sym_identifier] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_RPAREN] = ACTIONS(2373), - [anon_sym_LBRACE] = ACTIONS(2373), - [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2373), - [anon_sym_RBRACK] = ACTIONS(2373), - [anon_sym_DOLLAR] = ACTIONS(2373), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2371), - [anon_sym_SQUOTE] = ACTIONS(2371), - [anon_sym_as] = ACTIONS(2371), - [anon_sym_async] = ACTIONS(2371), - [anon_sym_await] = 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_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_where] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [sym_mutable_specifier] = ACTIONS(2371), - [sym_integer_literal] = ACTIONS(2373), - [aux_sym_string_literal_token1] = ACTIONS(2373), - [sym_char_literal] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(2371), - [anon_sym_false] = ACTIONS(2371), - [sym_line_comment] = ACTIONS(986), - [sym_self] = ACTIONS(2371), - [sym_super] = ACTIONS(2371), - [sym_crate] = ACTIONS(2371), - [sym_raw_string_literal] = ACTIONS(2373), - [sym_float_literal] = ACTIONS(2373), - [sym_block_comment] = ACTIONS(3), - }, - [605] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2156), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [607] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1760), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -69215,135 +69337,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [606] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2282), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [608] = { + [sym_identifier] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_RPAREN] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_RBRACE] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_RBRACK] = ACTIONS(2405), + [anon_sym_DOLLAR] = ACTIONS(2405), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2403), + [anon_sym_SQUOTE] = ACTIONS(2403), + [anon_sym_as] = ACTIONS(2403), + [anon_sym_async] = ACTIONS(2403), + [anon_sym_await] = 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_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_where] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [sym_mutable_specifier] = ACTIONS(2403), + [sym_integer_literal] = ACTIONS(2405), + [aux_sym_string_literal_token1] = ACTIONS(2405), + [sym_char_literal] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(2403), + [anon_sym_false] = ACTIONS(2403), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2403), + [sym_super] = ACTIONS(2403), + [sym_crate] = ACTIONS(2403), + [sym_raw_string_literal] = ACTIONS(2405), + [sym_float_literal] = ACTIONS(2405), [sym_block_comment] = ACTIONS(3), }, - [607] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1949), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [609] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2081), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -69353,66 +69475,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [608] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1431), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [610] = { + [sym_identifier] = ACTIONS(2399), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym_RPAREN] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_RBRACE] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_RBRACK] = ACTIONS(2401), + [anon_sym_DOLLAR] = ACTIONS(2401), + [anon_sym_u8] = ACTIONS(2399), + [anon_sym_i8] = ACTIONS(2399), + [anon_sym_u16] = ACTIONS(2399), + [anon_sym_i16] = ACTIONS(2399), + [anon_sym_u32] = ACTIONS(2399), + [anon_sym_i32] = ACTIONS(2399), + [anon_sym_u64] = ACTIONS(2399), + [anon_sym_i64] = ACTIONS(2399), + [anon_sym_u128] = ACTIONS(2399), + [anon_sym_i128] = ACTIONS(2399), + [anon_sym_isize] = ACTIONS(2399), + [anon_sym_usize] = ACTIONS(2399), + [anon_sym_f32] = ACTIONS(2399), + [anon_sym_f64] = ACTIONS(2399), + [anon_sym_bool] = ACTIONS(2399), + [anon_sym_str] = ACTIONS(2399), + [anon_sym_char] = ACTIONS(2399), + [aux_sym__non_special_token_token1] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_as] = ACTIONS(2399), + [anon_sym_async] = ACTIONS(2399), + [anon_sym_await] = ACTIONS(2399), + [anon_sym_break] = ACTIONS(2399), + [anon_sym_const] = ACTIONS(2399), + [anon_sym_continue] = ACTIONS(2399), + [anon_sym_default] = ACTIONS(2399), + [anon_sym_enum] = ACTIONS(2399), + [anon_sym_fn] = ACTIONS(2399), + [anon_sym_for] = ACTIONS(2399), + [anon_sym_if] = ACTIONS(2399), + [anon_sym_impl] = ACTIONS(2399), + [anon_sym_let] = ACTIONS(2399), + [anon_sym_loop] = ACTIONS(2399), + [anon_sym_match] = ACTIONS(2399), + [anon_sym_mod] = ACTIONS(2399), + [anon_sym_pub] = ACTIONS(2399), + [anon_sym_return] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2399), + [anon_sym_struct] = ACTIONS(2399), + [anon_sym_trait] = ACTIONS(2399), + [anon_sym_type] = ACTIONS(2399), + [anon_sym_union] = ACTIONS(2399), + [anon_sym_unsafe] = ACTIONS(2399), + [anon_sym_use] = ACTIONS(2399), + [anon_sym_where] = ACTIONS(2399), + [anon_sym_while] = ACTIONS(2399), + [sym_mutable_specifier] = ACTIONS(2399), + [sym_integer_literal] = ACTIONS(2401), + [aux_sym_string_literal_token1] = ACTIONS(2401), + [sym_char_literal] = ACTIONS(2401), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(2399), + [sym_super] = ACTIONS(2399), + [sym_crate] = ACTIONS(2399), + [sym_raw_string_literal] = ACTIONS(2401), + [sym_float_literal] = ACTIONS(2401), + [sym_block_comment] = ACTIONS(3), + }, + [611] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2155), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -69422,135 +69613,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [609] = { - [sym_function_modifiers] = STATE(2473), - [sym_higher_ranked_trait_bound] = STATE(1593), - [sym_removed_trait_bound] = STATE(1593), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1563), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(1584), - [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), - [sym_function_type] = STATE(1395), - [sym_tuple_type] = STATE(1395), - [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), - [sym_bounded_type] = STATE(1395), - [sym_reference_type] = STATE(1395), - [sym_pointer_type] = STATE(1395), - [sym_empty_type] = STATE(1395), - [sym_abstract_type] = STATE(1395), - [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_QMARK] = ACTIONS(2423), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2299), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), - [sym_block_comment] = ACTIONS(3), - }, - [610] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2173), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [612] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1447), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -69560,136 +69682,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [611] = { - [sym_function_modifiers] = STATE(2473), - [sym_higher_ranked_trait_bound] = STATE(1593), - [sym_removed_trait_bound] = STATE(1593), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1592), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(1590), - [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), - [sym_function_type] = STATE(1395), - [sym_tuple_type] = STATE(1395), - [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), - [sym_bounded_type] = STATE(1395), - [sym_reference_type] = STATE(1395), - [sym_pointer_type] = STATE(1395), - [sym_empty_type] = STATE(1395), - [sym_abstract_type] = STATE(1395), - [sym_dynamic_type] = STATE(1395), - [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_QMARK] = ACTIONS(2423), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2299), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_dyn] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), - [sym_block_comment] = ACTIONS(3), - }, - [612] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1789), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [613] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1853), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), - [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1530), + [sym_mutable_specifier] = ACTIONS(2435), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -69698,67 +69751,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [613] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2174), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [614] = { + [sym_identifier] = ACTIONS(474), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(472), + [anon_sym_RBRACE] = ACTIONS(472), + [anon_sym_LBRACK] = ACTIONS(472), + [anon_sym_RBRACK] = ACTIONS(472), + [anon_sym_DOLLAR] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(474), + [anon_sym_i8] = ACTIONS(474), + [anon_sym_u16] = ACTIONS(474), + [anon_sym_i16] = ACTIONS(474), + [anon_sym_u32] = ACTIONS(474), + [anon_sym_i32] = ACTIONS(474), + [anon_sym_u64] = ACTIONS(474), + [anon_sym_i64] = ACTIONS(474), + [anon_sym_u128] = ACTIONS(474), + [anon_sym_i128] = ACTIONS(474), + [anon_sym_isize] = ACTIONS(474), + [anon_sym_usize] = ACTIONS(474), + [anon_sym_f32] = ACTIONS(474), + [anon_sym_f64] = ACTIONS(474), + [anon_sym_bool] = ACTIONS(474), + [anon_sym_str] = ACTIONS(474), + [anon_sym_char] = ACTIONS(474), + [aux_sym__non_special_token_token1] = ACTIONS(474), + [anon_sym_SQUOTE] = ACTIONS(474), + [anon_sym_as] = ACTIONS(474), + [anon_sym_async] = ACTIONS(474), + [anon_sym_await] = ACTIONS(474), + [anon_sym_break] = ACTIONS(474), + [anon_sym_const] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(474), + [anon_sym_default] = ACTIONS(474), + [anon_sym_enum] = ACTIONS(474), + [anon_sym_fn] = ACTIONS(474), + [anon_sym_for] = ACTIONS(474), + [anon_sym_if] = ACTIONS(474), + [anon_sym_impl] = ACTIONS(474), + [anon_sym_let] = ACTIONS(474), + [anon_sym_loop] = ACTIONS(474), + [anon_sym_match] = ACTIONS(474), + [anon_sym_mod] = ACTIONS(474), + [anon_sym_pub] = ACTIONS(474), + [anon_sym_return] = ACTIONS(474), + [anon_sym_static] = ACTIONS(474), + [anon_sym_struct] = ACTIONS(474), + [anon_sym_trait] = ACTIONS(474), + [anon_sym_type] = ACTIONS(474), + [anon_sym_union] = ACTIONS(474), + [anon_sym_unsafe] = ACTIONS(474), + [anon_sym_use] = ACTIONS(474), + [anon_sym_where] = ACTIONS(474), + [anon_sym_while] = ACTIONS(474), + [sym_mutable_specifier] = ACTIONS(474), + [sym_integer_literal] = ACTIONS(472), + [aux_sym_string_literal_token1] = ACTIONS(472), + [sym_char_literal] = ACTIONS(472), + [anon_sym_true] = ACTIONS(474), + [anon_sym_false] = ACTIONS(474), + [sym_line_comment] = ACTIONS(984), + [sym_self] = ACTIONS(474), + [sym_super] = ACTIONS(474), + [sym_crate] = ACTIONS(474), + [sym_raw_string_literal] = ACTIONS(472), + [sym_float_literal] = ACTIONS(472), + [sym_block_comment] = ACTIONS(3), + }, + [615] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1455), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), - [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(1530), + [sym_mutable_specifier] = ACTIONS(2437), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), @@ -69767,66 +69889,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [614] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2157), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [616] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1449), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -69836,66 +69958,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [615] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1974), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [617] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2218), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -69905,66 +70027,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [616] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1788), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [618] = { + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2174), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -69974,29 +70096,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [617] = { - [sym_function_modifiers] = STATE(2473), - [sym_higher_ranked_trait_bound] = STATE(1523), - [sym_removed_trait_bound] = STATE(1523), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1557), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(1525), + [619] = { + [sym_function_modifiers] = STATE(2352), + [sym_higher_ranked_trait_bound] = STATE(1540), + [sym_removed_trait_bound] = STATE(1540), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1536), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(1531), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -70004,243 +70126,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), [anon_sym_QMARK] = ACTIONS(2423), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(2425), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), - [sym_block_comment] = ACTIONS(3), - }, - [618] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1435), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [619] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1437), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [620] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(1834), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(2431), - [anon_sym_union] = ACTIONS(2431), + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(2167), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -70250,66 +70234,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2437), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [621] = { - [sym_bracketed_type] = STATE(2461), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(2455), - [sym_macro_invocation] = STATE(1457), - [sym_scoped_identifier] = STATE(1334), - [sym_scoped_type_identifier] = STATE(2042), - [sym_const_block] = STATE(1457), - [sym__pattern] = STATE(2296), - [sym_tuple_pattern] = STATE(1457), - [sym_slice_pattern] = STATE(1457), - [sym_tuple_struct_pattern] = STATE(1457), - [sym_struct_pattern] = STATE(1457), - [sym_remaining_field_pattern] = STATE(1457), - [sym_mut_pattern] = STATE(1457), - [sym_range_pattern] = STATE(1457), - [sym_ref_pattern] = STATE(1457), - [sym_captured_pattern] = STATE(1457), - [sym_reference_pattern] = STATE(1457), - [sym_or_pattern] = STATE(1457), - [sym__literal_pattern] = STATE(1399), - [sym_negative_literal] = STATE(1375), - [sym_string_literal] = STATE(1375), - [sym_boolean_literal] = STATE(1375), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), + [sym_bracketed_type] = STATE(2494), + [sym_generic_type] = STATE(2493), + [sym_generic_type_with_turbofish] = STATE(2482), + [sym_macro_invocation] = STATE(1466), + [sym_scoped_identifier] = STATE(1335), + [sym_scoped_type_identifier] = STATE(2040), + [sym_const_block] = STATE(1466), + [sym__pattern] = STATE(1844), + [sym_tuple_pattern] = STATE(1466), + [sym_slice_pattern] = STATE(1466), + [sym_tuple_struct_pattern] = STATE(1466), + [sym_struct_pattern] = STATE(1466), + [sym_remaining_field_pattern] = STATE(1466), + [sym_mut_pattern] = STATE(1466), + [sym_range_pattern] = STATE(1466), + [sym_ref_pattern] = STATE(1466), + [sym_captured_pattern] = STATE(1466), + [sym_reference_pattern] = STATE(1466), + [sym_or_pattern] = STATE(1466), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1528), [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1530), [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), @@ -70319,95 +70303,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1538), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1534), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [622] = { - [sym_function_modifiers] = STATE(2387), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1041), - [sym_bracketed_type] = STATE(2486), - [sym_lifetime] = STATE(2336), - [sym_array_type] = STATE(1100), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1100), - [sym_tuple_type] = STATE(1100), - [sym_unit_type] = STATE(1100), - [sym_generic_type] = STATE(933), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_bounded_type] = STATE(1100), - [sym_reference_type] = STATE(1100), - [sym_pointer_type] = STATE(1100), - [sym_empty_type] = STATE(1100), - [sym_abstract_type] = STATE(1100), - [sym_dynamic_type] = STATE(1100), - [sym_macro_invocation] = STATE(1100), - [sym_scoped_identifier] = STATE(2283), - [sym_scoped_type_identifier] = STATE(772), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_attribute_item] = STATE(622), + [aux_sym_enum_variant_list_repeat1] = STATE(622), [sym_identifier] = ACTIONS(2439), [anon_sym_LPAREN] = ACTIONS(2441), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2445), - [anon_sym_STAR] = ACTIONS(2447), - [anon_sym_u8] = ACTIONS(2449), - [anon_sym_i8] = ACTIONS(2449), - [anon_sym_u16] = ACTIONS(2449), - [anon_sym_i16] = ACTIONS(2449), - [anon_sym_u32] = ACTIONS(2449), - [anon_sym_i32] = ACTIONS(2449), - [anon_sym_u64] = ACTIONS(2449), - [anon_sym_i64] = ACTIONS(2449), - [anon_sym_u128] = ACTIONS(2449), - [anon_sym_i128] = ACTIONS(2449), - [anon_sym_isize] = ACTIONS(2449), - [anon_sym_usize] = ACTIONS(2449), - [anon_sym_f32] = ACTIONS(2449), - [anon_sym_f64] = ACTIONS(2449), - [anon_sym_bool] = ACTIONS(2449), - [anon_sym_str] = ACTIONS(2449), - [anon_sym_char] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2441), + [anon_sym_LBRACK] = ACTIONS(2441), + [anon_sym_RBRACK] = ACTIONS(2441), + [anon_sym_STAR] = ACTIONS(2441), + [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_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_for] = ACTIONS(2439), + [anon_sym_if] = ACTIONS(2439), + [anon_sym_loop] = ACTIONS(2439), + [anon_sym_match] = ACTIONS(2439), + [anon_sym_return] = ACTIONS(2439), + [anon_sym_union] = ACTIONS(2439), + [anon_sym_unsafe] = ACTIONS(2439), + [anon_sym_while] = ACTIONS(2439), + [anon_sym_POUND] = ACTIONS(2443), + [anon_sym_BANG] = ACTIONS(2441), + [anon_sym_COMMA] = ACTIONS(2441), + [anon_sym_ref] = ACTIONS(2439), + [anon_sym_LT] = ACTIONS(2441), + [anon_sym_COLON_COLON] = ACTIONS(2441), + [anon_sym__] = ACTIONS(2439), + [anon_sym_AMP] = ACTIONS(2441), + [sym_mutable_specifier] = ACTIONS(2439), + [anon_sym_DOT_DOT] = ACTIONS(2441), + [anon_sym_DASH] = ACTIONS(2441), + [anon_sym_PIPE] = ACTIONS(2441), + [anon_sym_yield] = ACTIONS(2439), + [anon_sym_move] = ACTIONS(2439), + [sym_integer_literal] = ACTIONS(2441), + [aux_sym_string_literal_token1] = ACTIONS(2441), + [sym_char_literal] = ACTIONS(2441), + [anon_sym_true] = ACTIONS(2439), + [anon_sym_false] = ACTIONS(2439), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2439), + [sym_super] = ACTIONS(2439), + [sym_crate] = ACTIONS(2439), + [sym_metavariable] = ACTIONS(2441), + [sym_raw_string_literal] = ACTIONS(2441), + [sym_float_literal] = ACTIONS(2441), + [sym_block_comment] = ACTIONS(3), + }, + [623] = { + [sym_function_modifiers] = STATE(2385), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1125), + [sym_bracketed_type] = STATE(2484), + [sym_lifetime] = STATE(2425), + [sym_array_type] = STATE(1048), + [sym_for_lifetimes] = STATE(1193), + [sym_function_type] = STATE(1048), + [sym_tuple_type] = STATE(1048), + [sym_unit_type] = STATE(1048), + [sym_generic_type] = STATE(1009), + [sym_generic_type_with_turbofish] = STATE(2485), + [sym_bounded_type] = STATE(1048), + [sym_reference_type] = STATE(1048), + [sym_pointer_type] = STATE(1048), + [sym_empty_type] = STATE(1048), + [sym_abstract_type] = STATE(1048), + [sym_dynamic_type] = STATE(1048), + [sym_macro_invocation] = STATE(1048), + [sym_scoped_identifier] = STATE(2281), + [sym_scoped_type_identifier] = STATE(765), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(2446), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym_STAR] = ACTIONS(2454), + [anon_sym_u8] = ACTIONS(2456), + [anon_sym_i8] = ACTIONS(2456), + [anon_sym_u16] = ACTIONS(2456), + [anon_sym_i16] = ACTIONS(2456), + [anon_sym_u32] = ACTIONS(2456), + [anon_sym_i32] = ACTIONS(2456), + [anon_sym_u64] = ACTIONS(2456), + [anon_sym_i64] = ACTIONS(2456), + [anon_sym_u128] = ACTIONS(2456), + [anon_sym_i128] = ACTIONS(2456), + [anon_sym_isize] = ACTIONS(2456), + [anon_sym_usize] = ACTIONS(2456), + [anon_sym_f32] = ACTIONS(2456), + [anon_sym_f64] = ACTIONS(2456), + [anon_sym_bool] = ACTIONS(2456), + [anon_sym_str] = ACTIONS(2456), + [anon_sym_char] = ACTIONS(2456), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(2451), - [anon_sym_fn] = ACTIONS(2453), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_fn] = ACTIONS(2460), [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(2455), - [anon_sym_union] = ACTIONS(2457), + [anon_sym_impl] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2464), [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(2459), + [anon_sym_BANG] = ACTIONS(2466), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2463), - [anon_sym_dyn] = ACTIONS(2465), - [sym_mutable_specifier] = ACTIONS(2467), + [anon_sym_COLON_COLON] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2470), + [anon_sym_dyn] = ACTIONS(2472), + [sym_mutable_specifier] = ACTIONS(2474), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2469), - [sym_super] = ACTIONS(2469), - [sym_crate] = ACTIONS(2469), - [sym_metavariable] = ACTIONS(2471), + [sym_self] = ACTIONS(2476), + [sym_super] = ACTIONS(2476), + [sym_crate] = ACTIONS(2476), + [sym_metavariable] = ACTIONS(2478), [sym_block_comment] = ACTIONS(3), }, - [623] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(2204), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [624] = { + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1383), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -70415,67 +70467,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(2475), + [sym_mutable_specifier] = ACTIONS(2482), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(2484), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, - [624] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1377), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [625] = { + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(2317), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -70483,67 +70535,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(2477), + [sym_mutable_specifier] = ACTIONS(2486), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2479), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), - [sym_block_comment] = ACTIONS(3), - }, - [625] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1377), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_block_comment] = ACTIONS(3), + }, + [626] = { + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1383), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -70551,136 +70603,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), - [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(2480), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(2481), + [sym_mutable_specifier] = ACTIONS(2488), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), - [sym_block_comment] = ACTIONS(3), - }, - [626] = { - [sym_attribute_item] = STATE(626), - [aux_sym_enum_variant_list_repeat1] = STATE(626), - [sym_identifier] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_RBRACK] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2485), - [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_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_for] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_loop] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [anon_sym_unsafe] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_POUND] = ACTIONS(2487), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_COMMA] = ACTIONS(2485), - [anon_sym_ref] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym__] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2485), - [sym_mutable_specifier] = ACTIONS(2483), - [anon_sym_DOT_DOT] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2485), - [anon_sym_PIPE] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_move] = ACTIONS(2483), - [sym_integer_literal] = ACTIONS(2485), - [aux_sym_string_literal_token1] = ACTIONS(2485), - [sym_char_literal] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2483), - [anon_sym_false] = ACTIONS(2483), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2483), - [sym_super] = ACTIONS(2483), - [sym_crate] = ACTIONS(2483), - [sym_metavariable] = ACTIONS(2485), - [sym_raw_string_literal] = ACTIONS(2485), - [sym_float_literal] = ACTIONS(2485), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [627] = { - [sym_function_modifiers] = STATE(2473), - [sym_type_parameters] = STATE(687), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1669), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1996), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1659), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -70688,66 +70671,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1500), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(2490), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(2492), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [628] = { - [sym_function_modifiers] = STATE(2473), - [sym_type_parameters] = STATE(749), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1650), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1996), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1637), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -70755,65 +70738,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1487), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(2492), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [629] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1993), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [sym_function_modifiers] = STATE(2352), + [sym_type_parameters] = STATE(702), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1631), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1622), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -70821,67 +70806,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(872), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1504), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(2494), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [630] = { - [sym_function_modifiers] = STATE(2473), - [sym_type_parameters] = STATE(688), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1662), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1393), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(626), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1625), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -70889,66 +70872,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1494), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(2498), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2498), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(2492), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(2500), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [631] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1882), - [sym_bracketed_type] = STATE(2379), - [sym_qualified_type] = STATE(2353), - [sym_lifetime] = STATE(2479), + [sym_function_modifiers] = STATE(2352), + [sym_type_parameters] = STATE(655), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1632), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1640), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -70956,65 +70940,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1494), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [632] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1774), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1996), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -71022,66 +71006,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(2500), - [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2504), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [633] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(2191), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(623), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1996), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -71089,66 +71073,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2502), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(2504), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [634] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1795), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [sym_function_modifiers] = STATE(2352), + [sym_type_parameters] = STATE(712), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1675), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1664), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -71156,66 +71141,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(872), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1497), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [635] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1993), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(2318), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(625), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -71223,66 +71207,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(2508), - [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2498), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(2510), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [636] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1993), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1829), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -71290,134 +71274,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(2510), - [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [637] = { - [sym_function_modifiers] = STATE(2387), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1106), - [sym_bracketed_type] = STATE(2486), - [sym_lifetime] = STATE(622), - [sym_array_type] = STATE(1100), - [sym_for_lifetimes] = STATE(1191), - [sym_function_type] = STATE(1100), - [sym_tuple_type] = STATE(1100), - [sym_unit_type] = STATE(1100), - [sym_generic_type] = STATE(933), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_bounded_type] = STATE(1100), - [sym_reference_type] = STATE(1100), - [sym_pointer_type] = STATE(1100), - [sym_empty_type] = STATE(1100), - [sym_abstract_type] = STATE(1100), - [sym_dynamic_type] = STATE(1100), - [sym_macro_invocation] = STATE(1100), - [sym_scoped_identifier] = STATE(2283), - [sym_scoped_type_identifier] = STATE(772), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(2441), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_STAR] = ACTIONS(2447), - [anon_sym_u8] = ACTIONS(2449), - [anon_sym_i8] = ACTIONS(2449), - [anon_sym_u16] = ACTIONS(2449), - [anon_sym_i16] = ACTIONS(2449), - [anon_sym_u32] = ACTIONS(2449), - [anon_sym_i32] = ACTIONS(2449), - [anon_sym_u64] = ACTIONS(2449), - [anon_sym_i64] = ACTIONS(2449), - [anon_sym_u128] = ACTIONS(2449), - [anon_sym_i128] = ACTIONS(2449), - [anon_sym_isize] = ACTIONS(2449), - [anon_sym_usize] = ACTIONS(2449), - [anon_sym_f32] = ACTIONS(2449), - [anon_sym_f64] = ACTIONS(2449), - [anon_sym_bool] = ACTIONS(2449), - [anon_sym_str] = ACTIONS(2449), - [anon_sym_char] = ACTIONS(2449), - [anon_sym_SQUOTE] = ACTIONS(2502), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(2451), - [anon_sym_fn] = ACTIONS(2453), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(2455), - [anon_sym_union] = ACTIONS(2457), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2463), - [anon_sym_dyn] = ACTIONS(2465), - [sym_mutable_specifier] = ACTIONS(2512), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2469), - [sym_super] = ACTIONS(2469), - [sym_crate] = ACTIONS(2469), - [sym_metavariable] = ACTIONS(2471), - [sym_block_comment] = ACTIONS(3), - }, - [638] = { - [sym_function_modifiers] = STATE(2473), - [sym_type_parameters] = STATE(714), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1688), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1796), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1629), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -71425,65 +71341,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1510), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(2295), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RPAREN] = ACTIONS(2514), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(2492), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), + [sym_block_comment] = ACTIONS(3), + }, + [638] = { + [sym_function_modifiers] = STATE(2385), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1114), + [sym_bracketed_type] = STATE(2484), + [sym_lifetime] = STATE(623), + [sym_array_type] = STATE(1048), + [sym_for_lifetimes] = STATE(1193), + [sym_function_type] = STATE(1048), + [sym_tuple_type] = STATE(1048), + [sym_unit_type] = STATE(1048), + [sym_generic_type] = STATE(1009), + [sym_generic_type_with_turbofish] = STATE(2485), + [sym_bounded_type] = STATE(1048), + [sym_reference_type] = STATE(1048), + [sym_pointer_type] = STATE(1048), + [sym_empty_type] = STATE(1048), + [sym_abstract_type] = STATE(1048), + [sym_dynamic_type] = STATE(1048), + [sym_macro_invocation] = STATE(1048), + [sym_scoped_identifier] = STATE(2281), + [sym_scoped_type_identifier] = STATE(765), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(2446), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2454), + [anon_sym_u8] = ACTIONS(2456), + [anon_sym_i8] = ACTIONS(2456), + [anon_sym_u16] = ACTIONS(2456), + [anon_sym_i16] = ACTIONS(2456), + [anon_sym_u32] = ACTIONS(2456), + [anon_sym_i32] = ACTIONS(2456), + [anon_sym_u64] = ACTIONS(2456), + [anon_sym_i64] = ACTIONS(2456), + [anon_sym_u128] = ACTIONS(2456), + [anon_sym_i128] = ACTIONS(2456), + [anon_sym_isize] = ACTIONS(2456), + [anon_sym_usize] = ACTIONS(2456), + [anon_sym_f32] = ACTIONS(2456), + [anon_sym_f64] = ACTIONS(2456), + [anon_sym_bool] = ACTIONS(2456), + [anon_sym_str] = ACTIONS(2456), + [anon_sym_char] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_fn] = ACTIONS(2460), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2464), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2470), + [anon_sym_dyn] = ACTIONS(2472), + [sym_mutable_specifier] = ACTIONS(2516), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2476), + [sym_super] = ACTIONS(2476), + [sym_crate] = ACTIONS(2476), + [sym_metavariable] = ACTIONS(2478), [sym_block_comment] = ACTIONS(3), }, [639] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1400), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(625), + [sym_function_modifiers] = STATE(2352), + [sym_type_parameters] = STATE(685), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(1686), + [sym_bracketed_type] = STATE(2377), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1653), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -71491,66 +71476,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_function_modifiers_repeat1] = STATE(1548), - [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(872), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1516), + [aux_sym_function_modifiers_repeat1] = STATE(1559), + [sym_identifier] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(2502), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(2516), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, [640] = { - [sym_function_modifiers] = STATE(2473), - [sym_extern_modifier] = STATE(1548), - [sym__type] = STATE(1993), - [sym_bracketed_type] = STATE(2379), - [sym_lifetime] = STATE(2479), + [sym_function_modifiers] = STATE(2352), + [sym_extern_modifier] = STATE(1559), + [sym__type] = STATE(2122), + [sym_bracketed_type] = STATE(2377), + [sym_qualified_type] = STATE(2504), + [sym_lifetime] = STATE(2346), [sym_array_type] = STATE(1395), - [sym_for_lifetimes] = STATE(1194), + [sym_for_lifetimes] = STATE(1191), [sym_function_type] = STATE(1395), [sym_tuple_type] = STATE(1395), [sym_unit_type] = STATE(1395), - [sym_generic_type] = STATE(1361), - [sym_generic_type_with_turbofish] = STATE(2380), + [sym_generic_type] = STATE(1366), + [sym_generic_type_with_turbofish] = STATE(2378), [sym_bounded_type] = STATE(1395), [sym_reference_type] = STATE(1395), [sym_pointer_type] = STATE(1395), @@ -71558,51 +71543,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_abstract_type] = STATE(1395), [sym_dynamic_type] = STATE(1395), [sym_macro_invocation] = STATE(1395), - [sym_scoped_identifier] = STATE(2194), - [sym_scoped_type_identifier] = STATE(1326), - [aux_sym_function_modifiers_repeat1] = STATE(1548), + [sym_scoped_identifier] = STATE(2316), + [sym_scoped_type_identifier] = STATE(1330), + [aux_sym_function_modifiers_repeat1] = STATE(1559), [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(876), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(874), - [anon_sym_i8] = ACTIONS(874), - [anon_sym_u16] = ACTIONS(874), - [anon_sym_i16] = ACTIONS(874), - [anon_sym_u32] = ACTIONS(874), - [anon_sym_i32] = ACTIONS(874), - [anon_sym_u64] = ACTIONS(874), - [anon_sym_i64] = ACTIONS(874), - [anon_sym_u128] = ACTIONS(874), - [anon_sym_i128] = ACTIONS(874), - [anon_sym_isize] = ACTIONS(874), - [anon_sym_usize] = ACTIONS(874), - [anon_sym_f32] = ACTIONS(874), - [anon_sym_f64] = ACTIONS(874), - [anon_sym_bool] = ACTIONS(874), - [anon_sym_str] = ACTIONS(874), - [anon_sym_char] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(878), + [anon_sym_i8] = ACTIONS(878), + [anon_sym_u16] = ACTIONS(878), + [anon_sym_i16] = ACTIONS(878), + [anon_sym_u32] = ACTIONS(878), + [anon_sym_i32] = ACTIONS(878), + [anon_sym_u64] = ACTIONS(878), + [anon_sym_i64] = ACTIONS(878), + [anon_sym_u128] = ACTIONS(878), + [anon_sym_i128] = ACTIONS(878), + [anon_sym_isize] = ACTIONS(878), + [anon_sym_usize] = ACTIONS(878), + [anon_sym_f32] = ACTIONS(878), + [anon_sym_f64] = ACTIONS(878), + [anon_sym_bool] = ACTIONS(878), + [anon_sym_str] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), [anon_sym_SQUOTE] = ACTIONS(2299), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(876), + [anon_sym_default] = ACTIONS(880), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(878), + [anon_sym_union] = ACTIONS(882), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(886), + [anon_sym_AMP] = ACTIONS(888), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(890), + [sym_self] = ACTIONS(892), + [sym_super] = ACTIONS(892), + [sym_crate] = ACTIONS(892), + [sym_metavariable] = ACTIONS(894), [sym_block_comment] = ACTIONS(3), }, }; @@ -71625,53 +71609,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2113), 1, + STATE(1662), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -71687,50 +71671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [129] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1852), 20, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1854), 42, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71748,99 +71689,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [200] = 32, + [129] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_STAR, - ACTIONS(2451), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2455), 1, - anon_sym_impl, - ACTIONS(2457), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2459), 1, - anon_sym_BANG, - ACTIONS(2461), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2463), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2465), 1, - anon_sym_dyn, - ACTIONS(2471), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(772), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(933), 1, + STATE(1366), 1, sym_generic_type, - STATE(1065), 1, + STATE(2233), 1, sym__type, - STATE(1191), 1, - sym_for_lifetimes, - STATE(2283), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2336), 1, + STATE(2346), 1, sym_lifetime, - STATE(2387), 1, + STATE(2352), 1, sym_function_modifiers, - STATE(2486), 1, + STATE(2377), 1, sym_bracketed_type, - STATE(2487), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1100), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -71852,7 +71768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2449), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71870,7 +71786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [329] = 32, + [258] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -71887,53 +71803,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1387), 1, + STATE(2037), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -71949,7 +71865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71967,7 +71883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [458] = 32, + [387] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -71984,53 +71900,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1386), 1, + STATE(1689), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -72046,7 +71962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72064,7 +71980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [587] = 32, + [516] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -72081,53 +71997,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2235), 1, + STATE(1693), 1, sym__type, - STATE(2379), 1, + STATE(2316), 1, + sym_scoped_identifier, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -72143,7 +72059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72161,7 +72077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [716] = 32, + [645] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -72178,53 +72094,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1985), 1, + STATE(1695), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -72240,7 +72156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72258,7 +72174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [845] = 32, + [774] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -72275,53 +72191,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2128), 1, + STATE(1970), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -72337,7 +72253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72355,7 +72271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [974] = 32, + [903] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -72372,53 +72288,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1383), 1, + STATE(2009), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -72434,7 +72350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72452,74 +72368,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1103] = 32, + [1032] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(868), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2446), 1, + sym_identifier, + ACTIONS(2448), 1, anon_sym_LPAREN, - ACTIONS(872), 1, + ACTIONS(2450), 1, anon_sym_LBRACK, - ACTIONS(876), 1, + ACTIONS(2454), 1, + anon_sym_STAR, + ACTIONS(2458), 1, anon_sym_default, - ACTIONS(878), 1, + ACTIONS(2460), 1, + anon_sym_fn, + ACTIONS(2462), 1, + anon_sym_impl, + ACTIONS(2464), 1, anon_sym_union, - ACTIONS(882), 1, + ACTIONS(2466), 1, + anon_sym_BANG, + ACTIONS(2468), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(2470), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(2472), 1, + anon_sym_dyn, + ACTIONS(2478), 1, sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(1194), 1, - sym_for_lifetimes, - STATE(1326), 1, + STATE(765), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1009), 1, sym_generic_type, - STATE(1704), 1, + STATE(1116), 1, sym__type, - STATE(2194), 1, + STATE(1193), 1, + sym_for_lifetimes, + STATE(2281), 1, sym_scoped_identifier, - STATE(2379), 1, - sym_bracketed_type, - STATE(2380), 1, - sym_generic_type_with_turbofish, - STATE(2473), 1, + STATE(2385), 1, sym_function_modifiers, - STATE(2479), 1, + STATE(2425), 1, sym_lifetime, + STATE(2484), 1, + sym_bracketed_type, + STATE(2485), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(2476), 3, sym_self, sym_super, sym_crate, - STATE(1395), 11, + STATE(1048), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72531,7 +72447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(2456), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72549,7 +72465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1232] = 32, + [1161] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -72566,53 +72482,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1703), 1, + STATE(1385), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -72628,7 +72544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72646,7 +72562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1361] = 32, + [1290] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -72663,53 +72579,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2179), 1, + STATE(1700), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -72725,7 +72641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72743,7 +72659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1490] = 32, + [1419] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -72760,53 +72676,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1621), 1, + STATE(1379), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -72822,7 +72738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72840,7 +72756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1619] = 32, + [1548] = 33, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -72857,56 +72773,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + ACTIONS(2520), 1, + sym_self, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1687), 1, + STATE(1385), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + ACTIONS(892), 2, + sym_super, + sym_crate, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, - sym_self, - sym_super, - sym_crate, STATE(1395), 11, sym_array_type, sym_function_type, @@ -72919,7 +72836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72937,7 +72854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1748] = 32, + [1679] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -72954,53 +72871,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1969), 1, + STATE(1652), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -73016,7 +72933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73034,7 +72951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1877] = 32, + [1808] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73051,53 +72968,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + ACTIONS(2522), 1, + sym_identifier, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1520), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1613), 1, sym_generic_type, - STATE(2068), 1, + STATE(1615), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -73113,7 +73030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73131,7 +73048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2006] = 32, + [1937] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73148,53 +73065,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1681), 1, + STATE(2290), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -73210,7 +73127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73228,7 +73145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2135] = 32, + [2066] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73245,53 +73162,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1385), 1, + STATE(2197), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -73307,7 +73224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73325,7 +73242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2264] = 32, + [2195] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73342,53 +73259,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1680), 1, + STATE(1648), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -73404,7 +73321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73422,7 +73339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2393] = 32, + [2324] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73439,53 +73356,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1397), 1, + STATE(1996), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -73501,7 +73418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73519,7 +73436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2522] = 32, + [2453] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73536,53 +73453,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1685), 1, + STATE(1683), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -73598,7 +73515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73616,7 +73533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2651] = 32, + [2582] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73633,53 +73550,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2199), 1, + STATE(2054), 1, sym__type, - STATE(2379), 1, + STATE(2316), 1, + sym_scoped_identifier, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -73695,7 +73612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73713,7 +73630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2780] = 32, + [2711] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73730,53 +73647,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1684), 1, + STATE(1679), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -73792,7 +73709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73810,7 +73727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2909] = 32, + [2840] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73827,53 +73744,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1945), 1, + STATE(1674), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -73889,7 +73806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73907,7 +73824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3038] = 32, + [2969] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73924,53 +73841,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2086), 1, + STATE(2228), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -73986,7 +73903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74004,7 +73921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3167] = 32, + [3098] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74021,53 +73938,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1664), 1, + STATE(2182), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1559), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1395), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(878), 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, + [3227] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(872), 1, + anon_sym_LPAREN, + ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, + anon_sym_COLON_COLON, + ACTIONS(888), 1, + anon_sym_AMP, + ACTIONS(894), 1, + sym_metavariable, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1330), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_generic_type, + STATE(1394), 1, + sym__type, + STATE(2316), 1, + sym_scoped_identifier, + STATE(2346), 1, sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, + sym_bracketed_type, + STATE(2378), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -74083,7 +74097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74101,7 +74115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3296] = 32, + [3356] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74118,53 +74132,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1811), 1, + STATE(1388), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -74180,7 +74194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74198,7 +74212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3425] = 32, + [3485] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74215,53 +74229,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1660), 1, + STATE(1949), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -74277,7 +74291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74295,7 +74309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3554] = 32, + [3614] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74312,53 +74326,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2184), 1, + STATE(2069), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -74374,7 +74388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74392,7 +74406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3683] = 32, + [3743] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74409,53 +74423,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1378), 1, + STATE(2177), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -74471,7 +74485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74489,7 +74503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3812] = 32, + [3872] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74506,53 +74520,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1950), 1, + STATE(1947), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -74568,7 +74582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74586,7 +74600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3941] = 32, + [4001] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74603,154 +74617,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, - sym_scoped_type_identifier, - STATE(1361), 1, - sym_generic_type, - STATE(2075), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2379), 1, - sym_bracketed_type, - STATE(2380), 1, - sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1548), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(888), 3, - sym_self, - sym_super, - sym_crate, - STATE(1395), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(874), 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, - [4070] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2443), 1, - anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_STAR, - ACTIONS(2451), 1, - anon_sym_default, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2455), 1, - anon_sym_impl, - ACTIONS(2457), 1, - anon_sym_union, - ACTIONS(2459), 1, - anon_sym_BANG, - ACTIONS(2461), 1, - anon_sym_COLON_COLON, - ACTIONS(2463), 1, - anon_sym_AMP, - ACTIONS(2465), 1, - anon_sym_dyn, - ACTIONS(2471), 1, - sym_metavariable, - STATE(772), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(933), 1, + STATE(1366), 1, sym_generic_type, - STATE(1117), 1, + STATE(2070), 1, sym__type, - STATE(1191), 1, - sym_for_lifetimes, - STATE(2283), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2336), 1, + STATE(2346), 1, sym_lifetime, - STATE(2387), 1, + STATE(2352), 1, sym_function_modifiers, - STATE(2486), 1, + STATE(2377), 1, sym_bracketed_type, - STATE(2487), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1100), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74762,7 +74679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2449), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74780,7 +74697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4199] = 32, + [4130] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74797,53 +74714,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1699), 1, + STATE(1673), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -74859,7 +74776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74877,7 +74794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4328] = 32, + [4259] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74894,53 +74811,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2114), 1, + STATE(1672), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -74956,7 +74873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74974,7 +74891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4457] = 32, + [4388] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74991,53 +74908,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1655), 1, + STATE(1676), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -75053,7 +74970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75071,7 +74988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4586] = 32, + [4517] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75088,53 +75005,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1651), 1, + STATE(1639), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -75150,7 +75067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75168,7 +75085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4715] = 32, + [4646] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75185,53 +75102,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2163), 1, + STATE(1821), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -75247,7 +75164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75265,7 +75182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4844] = 32, + [4775] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75282,53 +75199,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1649), 1, + STATE(1967), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -75344,7 +75261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75362,7 +75279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4973] = 32, + [4904] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75379,53 +75296,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2046), 1, + STATE(1666), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -75441,7 +75358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75459,7 +75376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5102] = 32, + [5033] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75476,53 +75393,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1607), 1, + STATE(1608), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -75538,7 +75455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75556,7 +75473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5231] = 33, + [5162] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75573,151 +75490,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, - ACTIONS(876), 1, - anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, - ACTIONS(882), 1, - anon_sym_COLON_COLON, - ACTIONS(884), 1, - anon_sym_AMP, - ACTIONS(890), 1, - sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2520), 1, - sym_self, - STATE(1194), 1, - sym_for_lifetimes, - STATE(1326), 1, - sym_scoped_type_identifier, - STATE(1361), 1, - sym_generic_type, - STATE(1385), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2379), 1, - sym_bracketed_type, - STATE(2380), 1, - sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(888), 2, - sym_super, - sym_crate, - STATE(1548), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - STATE(1395), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(874), 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, - [5362] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(868), 1, anon_sym_LPAREN, - ACTIONS(872), 1, - anon_sym_LBRACK, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2016), 1, + STATE(1649), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -75733,7 +75552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75751,74 +75570,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5491] = 32, + [5291] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(868), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2446), 1, + sym_identifier, + ACTIONS(2448), 1, anon_sym_LPAREN, - ACTIONS(872), 1, + ACTIONS(2450), 1, anon_sym_LBRACK, - ACTIONS(876), 1, + ACTIONS(2454), 1, + anon_sym_STAR, + ACTIONS(2458), 1, anon_sym_default, - ACTIONS(878), 1, + ACTIONS(2460), 1, + anon_sym_fn, + ACTIONS(2462), 1, + anon_sym_impl, + ACTIONS(2464), 1, anon_sym_union, - ACTIONS(882), 1, + ACTIONS(2466), 1, + anon_sym_BANG, + ACTIONS(2468), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(2470), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(2472), 1, + anon_sym_dyn, + ACTIONS(2478), 1, sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(1194), 1, - sym_for_lifetimes, - STATE(1326), 1, + STATE(765), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1009), 1, sym_generic_type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2288), 1, + STATE(1097), 1, sym__type, - STATE(2379), 1, - sym_bracketed_type, - STATE(2380), 1, - sym_generic_type_with_turbofish, - STATE(2473), 1, + STATE(1193), 1, + sym_for_lifetimes, + STATE(2281), 1, + sym_scoped_identifier, + STATE(2385), 1, sym_function_modifiers, - STATE(2479), 1, + STATE(2425), 1, sym_lifetime, + STATE(2484), 1, + sym_bracketed_type, + STATE(2485), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(2476), 3, sym_self, sym_super, sym_crate, - STATE(1395), 11, + STATE(1048), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75830,7 +75649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(2456), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75848,7 +75667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5620] = 32, + [5420] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75865,53 +75684,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1697), 1, + STATE(1699), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -75927,7 +75746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75945,7 +75764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5749] = 32, + [5549] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75962,53 +75781,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1944), 1, + STATE(1942), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -76024,7 +75843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76042,7 +75861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5878] = 32, + [5678] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76059,53 +75878,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(2522), 1, + ACTIONS(2524), 1, sym_identifier, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1519), 1, + STATE(1485), 1, sym_scoped_type_identifier, - STATE(1674), 1, + STATE(1625), 1, sym__type, - STATE(1675), 1, + STATE(1634), 1, sym_generic_type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -76121,7 +75940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76139,7 +75958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6007] = 32, + [5807] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76156,53 +75975,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, + ACTIONS(2295), 1, + sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(2524), 1, - sym_identifier, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1493), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1620), 1, + STATE(1366), 1, sym_generic_type, - STATE(1627), 1, + STATE(2151), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -76218,7 +76037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76236,7 +76055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6136] = 32, + [5936] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76253,53 +76072,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2154), 1, + STATE(2041), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -76315,7 +76134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76333,7 +76152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6265] = 32, + [6065] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76350,53 +76169,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1993), 1, + STATE(1795), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -76412,7 +76231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76430,7 +76249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6394] = 32, + [6194] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76447,53 +76266,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1823), 1, + STATE(2114), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -76509,7 +76328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76527,74 +76346,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6523] = 32, + [6323] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(868), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2446), 1, + sym_identifier, + ACTIONS(2448), 1, anon_sym_LPAREN, - ACTIONS(872), 1, + ACTIONS(2450), 1, anon_sym_LBRACK, - ACTIONS(876), 1, + ACTIONS(2454), 1, + anon_sym_STAR, + ACTIONS(2458), 1, anon_sym_default, - ACTIONS(878), 1, + ACTIONS(2460), 1, + anon_sym_fn, + ACTIONS(2462), 1, + anon_sym_impl, + ACTIONS(2464), 1, anon_sym_union, - ACTIONS(882), 1, + ACTIONS(2466), 1, + anon_sym_BANG, + ACTIONS(2468), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(2470), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(2472), 1, + anon_sym_dyn, + ACTIONS(2478), 1, sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(1194), 1, - sym_for_lifetimes, - STATE(1326), 1, + STATE(765), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1009), 1, sym_generic_type, - STATE(2116), 1, + STATE(1125), 1, sym__type, - STATE(2194), 1, + STATE(1193), 1, + sym_for_lifetimes, + STATE(2281), 1, sym_scoped_identifier, - STATE(2379), 1, - sym_bracketed_type, - STATE(2380), 1, - sym_generic_type_with_turbofish, - STATE(2473), 1, + STATE(2385), 1, sym_function_modifiers, - STATE(2479), 1, + STATE(2425), 1, sym_lifetime, + STATE(2484), 1, + sym_bracketed_type, + STATE(2485), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(2476), 3, sym_self, sym_super, sym_crate, - STATE(1395), 11, + STATE(1048), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76606,7 +76425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(2456), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76624,7 +76443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6652] = 32, + [6452] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76641,53 +76460,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1922), 1, + STATE(2079), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -76703,7 +76522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76721,7 +76540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6781] = 32, + [6581] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76738,53 +76557,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2109), 1, + STATE(2107), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -76800,7 +76619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76818,7 +76637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6910] = 32, + [6710] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76835,53 +76654,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1624), 1, + STATE(1643), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -76897,7 +76716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76915,7 +76734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7039] = 32, + [6839] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76932,57 +76751,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1622), 1, + STATE(1645), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1559), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1395), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(878), 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, + [6968] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2446), 1, + sym_identifier, + ACTIONS(2448), 1, + anon_sym_LPAREN, + ACTIONS(2450), 1, + anon_sym_LBRACK, + ACTIONS(2454), 1, + anon_sym_STAR, + ACTIONS(2458), 1, + anon_sym_default, + ACTIONS(2460), 1, + anon_sym_fn, + ACTIONS(2462), 1, + anon_sym_impl, + ACTIONS(2464), 1, + anon_sym_union, + ACTIONS(2466), 1, + anon_sym_BANG, + ACTIONS(2468), 1, + anon_sym_COLON_COLON, + ACTIONS(2470), 1, + anon_sym_AMP, + ACTIONS(2472), 1, + anon_sym_dyn, + ACTIONS(2478), 1, + sym_metavariable, + STATE(765), 1, + sym_scoped_type_identifier, + STATE(1009), 1, + sym_generic_type, + STATE(1099), 1, + sym__type, + STATE(1193), 1, + sym_for_lifetimes, + STATE(2281), 1, + sym_scoped_identifier, + STATE(2385), 1, sym_function_modifiers, - STATE(2479), 1, + STATE(2425), 1, sym_lifetime, + STATE(2484), 1, + sym_bracketed_type, + STATE(2485), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(2476), 3, sym_self, sym_super, sym_crate, - STATE(1395), 11, + STATE(1048), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76994,7 +76910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(2456), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77012,7 +76928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7168] = 32, + [7097] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77029,53 +76945,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1777), 1, + STATE(2309), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -77091,7 +77007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77109,7 +77025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7297] = 32, + [7226] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77126,53 +77042,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1695), 1, + STATE(1877), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -77188,7 +77104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77206,7 +77122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7426] = 32, + [7355] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77223,53 +77139,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1853), 1, + STATE(2075), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -77285,7 +77201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77303,171 +77219,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7555] = 32, + [7484] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, - ACTIONS(872), 1, - anon_sym_LBRACK, - ACTIONS(876), 1, - anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, - ACTIONS(882), 1, - anon_sym_COLON_COLON, - ACTIONS(884), 1, - anon_sym_AMP, - ACTIONS(890), 1, - sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, - sym_for_lifetimes, - STATE(1326), 1, - sym_scoped_type_identifier, - STATE(1361), 1, - sym_generic_type, - STATE(2077), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2379), 1, - sym_bracketed_type, - STATE(2380), 1, - sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1548), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(888), 3, - sym_self, - sym_super, - sym_crate, - STATE(1395), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(874), 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, - [7684] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(868), 1, + ACTIONS(2446), 1, + sym_identifier, + ACTIONS(2448), 1, anon_sym_LPAREN, - ACTIONS(872), 1, + ACTIONS(2450), 1, anon_sym_LBRACK, - ACTIONS(876), 1, + ACTIONS(2454), 1, + anon_sym_STAR, + ACTIONS(2458), 1, anon_sym_default, - ACTIONS(878), 1, + ACTIONS(2460), 1, + anon_sym_fn, + ACTIONS(2462), 1, + anon_sym_impl, + ACTIONS(2464), 1, anon_sym_union, - ACTIONS(882), 1, + ACTIONS(2466), 1, + anon_sym_BANG, + ACTIONS(2468), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(2470), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(2472), 1, + anon_sym_dyn, + ACTIONS(2478), 1, sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(1194), 1, - sym_for_lifetimes, - STATE(1326), 1, + STATE(765), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1009), 1, sym_generic_type, - STATE(1384), 1, + STATE(1107), 1, sym__type, - STATE(2194), 1, + STATE(1193), 1, + sym_for_lifetimes, + STATE(2281), 1, sym_scoped_identifier, - STATE(2379), 1, - sym_bracketed_type, - STATE(2380), 1, - sym_generic_type_with_turbofish, - STATE(2473), 1, + STATE(2385), 1, sym_function_modifiers, - STATE(2479), 1, + STATE(2425), 1, sym_lifetime, + STATE(2484), 1, + sym_bracketed_type, + STATE(2485), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(2476), 3, sym_self, sym_super, sym_crate, - STATE(1395), 11, + STATE(1048), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77479,7 +77298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(2456), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77497,74 +77316,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7813] = 32, + [7613] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(868), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2446), 1, + sym_identifier, + ACTIONS(2448), 1, anon_sym_LPAREN, - ACTIONS(872), 1, + ACTIONS(2450), 1, anon_sym_LBRACK, - ACTIONS(876), 1, + ACTIONS(2454), 1, + anon_sym_STAR, + ACTIONS(2458), 1, anon_sym_default, - ACTIONS(878), 1, + ACTIONS(2460), 1, + anon_sym_fn, + ACTIONS(2462), 1, + anon_sym_impl, + ACTIONS(2464), 1, anon_sym_union, - ACTIONS(882), 1, + ACTIONS(2466), 1, + anon_sym_BANG, + ACTIONS(2468), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(2470), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(2472), 1, + anon_sym_dyn, + ACTIONS(2478), 1, sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(1194), 1, - sym_for_lifetimes, - STATE(1326), 1, + STATE(765), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1009), 1, sym_generic_type, - STATE(1774), 1, + STATE(1067), 1, sym__type, - STATE(2194), 1, + STATE(1193), 1, + sym_for_lifetimes, + STATE(2281), 1, sym_scoped_identifier, - STATE(2379), 1, - sym_bracketed_type, - STATE(2380), 1, - sym_generic_type_with_turbofish, - STATE(2473), 1, + STATE(2385), 1, sym_function_modifiers, - STATE(2479), 1, + STATE(2425), 1, sym_lifetime, + STATE(2484), 1, + sym_bracketed_type, + STATE(2485), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(2476), 3, sym_self, sym_super, sym_crate, - STATE(1395), 11, + STATE(1048), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77576,7 +77395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(2456), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77594,7 +77413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7942] = 32, + [7742] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77611,53 +77430,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2060), 1, + STATE(1796), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -77673,7 +77492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77691,7 +77510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8071] = 32, + [7871] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77708,53 +77527,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + ACTIONS(2526), 1, + sym_identifier, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1519), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1661), 1, sym_generic_type, - STATE(1935), 1, + STATE(1663), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -77770,7 +77589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77788,7 +77607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8200] = 32, + [8000] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77805,53 +77624,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1986), 1, + STATE(1809), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -77867,7 +77686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77885,7 +77704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8329] = 32, + [8129] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(672), 1, @@ -77894,65 +77713,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(2439), 1, + ACTIONS(2446), 1, sym_identifier, - ACTIONS(2441), 1, + ACTIONS(2448), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(2450), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(2454), 1, anon_sym_STAR, - ACTIONS(2451), 1, + ACTIONS(2458), 1, anon_sym_default, - ACTIONS(2453), 1, + ACTIONS(2460), 1, anon_sym_fn, - ACTIONS(2455), 1, + ACTIONS(2462), 1, anon_sym_impl, - ACTIONS(2457), 1, + ACTIONS(2464), 1, anon_sym_union, - ACTIONS(2459), 1, + ACTIONS(2466), 1, anon_sym_BANG, - ACTIONS(2461), 1, + ACTIONS(2468), 1, anon_sym_COLON_COLON, - ACTIONS(2463), 1, + ACTIONS(2470), 1, anon_sym_AMP, - ACTIONS(2465), 1, + ACTIONS(2472), 1, anon_sym_dyn, - ACTIONS(2471), 1, + ACTIONS(2478), 1, sym_metavariable, - STATE(772), 1, + STATE(765), 1, sym_scoped_type_identifier, - STATE(933), 1, + STATE(1009), 1, sym_generic_type, - STATE(1116), 1, + STATE(1113), 1, sym__type, - STATE(1191), 1, + STATE(1193), 1, sym_for_lifetimes, - STATE(2283), 1, + STATE(2281), 1, sym_scoped_identifier, - STATE(2336), 1, - sym_lifetime, - STATE(2387), 1, + STATE(2385), 1, sym_function_modifiers, - STATE(2486), 1, + STATE(2425), 1, + sym_lifetime, + STATE(2484), 1, sym_bracketed_type, - STATE(2487), 1, + STATE(2485), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(2476), 3, sym_self, sym_super, sym_crate, - STATE(1100), 11, + STATE(1048), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77964,7 +77783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2449), 17, + ACTIONS(2456), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77982,7 +77801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8458] = 32, + [8258] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77999,53 +77818,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1576), 1, + STATE(1596), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -78061,7 +77880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78079,7 +77898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8587] = 32, + [8387] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78096,53 +77915,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1851), 1, + STATE(1849), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -78158,7 +77977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78176,74 +77995,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8716] = 32, + [8516] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_STAR, - ACTIONS(2451), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2455), 1, - anon_sym_impl, - ACTIONS(2457), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2459), 1, - anon_sym_BANG, - ACTIONS(2461), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2463), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2465), 1, - anon_sym_dyn, - ACTIONS(2471), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(772), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(933), 1, + STATE(1366), 1, sym_generic_type, - STATE(1091), 1, + STATE(1665), 1, sym__type, - STATE(1191), 1, - sym_for_lifetimes, - STATE(2283), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2336), 1, + STATE(2346), 1, sym_lifetime, - STATE(2387), 1, + STATE(2352), 1, sym_function_modifiers, - STATE(2486), 1, + STATE(2377), 1, sym_bracketed_type, - STATE(2487), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1100), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78255,7 +78074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2449), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78273,7 +78092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8845] = 32, + [8645] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78290,53 +78109,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1396), 1, + STATE(1933), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -78352,7 +78171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78370,7 +78189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8974] = 32, + [8774] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78387,53 +78206,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1926), 1, + STATE(1987), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -78449,7 +78268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78467,7 +78286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9103] = 32, + [8903] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78484,53 +78303,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1679), 1, + STATE(1651), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -78546,7 +78365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78564,74 +78383,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9232] = 32, + [9032] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_STAR, - ACTIONS(2451), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2455), 1, - anon_sym_impl, - ACTIONS(2457), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2459), 1, - anon_sym_BANG, - ACTIONS(2461), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2463), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2465), 1, - anon_sym_dyn, - ACTIONS(2471), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(772), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(933), 1, + STATE(1366), 1, sym_generic_type, - STATE(1044), 1, + STATE(2046), 1, sym__type, - STATE(1191), 1, - sym_for_lifetimes, - STATE(2283), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2336), 1, + STATE(2346), 1, sym_lifetime, - STATE(2387), 1, + STATE(2352), 1, sym_function_modifiers, - STATE(2486), 1, + STATE(2377), 1, sym_bracketed_type, - STATE(2487), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1100), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78643,7 +78462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2449), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78661,7 +78480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9361] = 32, + [9161] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78678,53 +78497,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(2526), 1, + ACTIONS(2528), 1, sym_identifier, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1496), 1, + STATE(1517), 1, sym_scoped_type_identifier, - STATE(1628), 1, + STATE(1656), 1, sym_generic_type, - STATE(1702), 1, + STATE(1704), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -78740,7 +78559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78758,7 +78577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9490] = 32, + [9290] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78775,53 +78594,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1880), 1, + STATE(1378), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -78837,7 +78656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78855,7 +78674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9619] = 32, + [9419] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78872,57 +78691,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1390), 1, + STATE(2028), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1559), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1395), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(878), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [9548] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2446), 1, + sym_identifier, + ACTIONS(2448), 1, + anon_sym_LPAREN, + ACTIONS(2450), 1, + anon_sym_LBRACK, + ACTIONS(2454), 1, + anon_sym_STAR, + ACTIONS(2458), 1, + anon_sym_default, + ACTIONS(2460), 1, + anon_sym_fn, + ACTIONS(2462), 1, + anon_sym_impl, + ACTIONS(2464), 1, + anon_sym_union, + ACTIONS(2466), 1, + anon_sym_BANG, + ACTIONS(2468), 1, + anon_sym_COLON_COLON, + ACTIONS(2470), 1, + anon_sym_AMP, + ACTIONS(2472), 1, + anon_sym_dyn, + ACTIONS(2478), 1, + sym_metavariable, + STATE(765), 1, + sym_scoped_type_identifier, + STATE(1009), 1, + sym_generic_type, + STATE(1122), 1, + sym__type, + STATE(1193), 1, + sym_for_lifetimes, + STATE(2281), 1, + sym_scoped_identifier, + STATE(2385), 1, sym_function_modifiers, - STATE(2479), 1, + STATE(2425), 1, sym_lifetime, + STATE(2484), 1, + sym_bracketed_type, + STATE(2485), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(2476), 3, sym_self, sym_super, sym_crate, - STATE(1395), 11, + STATE(1048), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78934,7 +78850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(2456), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78952,7 +78868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9748] = 32, + [9677] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78969,53 +78885,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2030), 1, + STATE(1378), 1, sym__type, - STATE(2194), 1, + STATE(1382), 1, + sym_lifetime, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -79031,7 +78947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79049,7 +78965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9877] = 32, + [9806] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79066,53 +78982,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2146), 1, + STATE(1961), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -79128,7 +79044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79146,7 +79062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10006] = 32, + [9935] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79163,53 +79079,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1654), 1, + STATE(1776), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -79225,7 +79141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79243,74 +79159,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10135] = 32, + [10064] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_STAR, - ACTIONS(2451), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2455), 1, - anon_sym_impl, - ACTIONS(2457), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2459), 1, - anon_sym_BANG, - ACTIONS(2461), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2463), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2465), 1, - anon_sym_dyn, - ACTIONS(2471), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(772), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(933), 1, + STATE(1366), 1, sym_generic_type, - STATE(1041), 1, + STATE(2300), 1, sym__type, - STATE(1191), 1, - sym_for_lifetimes, - STATE(2283), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2336), 1, + STATE(2346), 1, sym_lifetime, - STATE(2387), 1, + STATE(2352), 1, sym_function_modifiers, - STATE(2486), 1, + STATE(2377), 1, sym_bracketed_type, - STATE(2487), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1100), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79322,7 +79238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2449), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79340,7 +79256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10264] = 32, + [10193] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79357,53 +79273,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2219), 1, + STATE(1848), 1, sym__type, - STATE(2379), 1, + STATE(2316), 1, + sym_scoped_identifier, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -79419,7 +79335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79437,7 +79353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10393] = 32, + [10322] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79454,53 +79370,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2202), 1, + STATE(1953), 1, sym__type, - STATE(2379), 1, + STATE(2316), 1, + sym_scoped_identifier, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -79516,7 +79432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79534,74 +79450,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10522] = 32, + [10451] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(868), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2446), 1, + sym_identifier, + ACTIONS(2448), 1, anon_sym_LPAREN, - ACTIONS(872), 1, + ACTIONS(2450), 1, anon_sym_LBRACK, - ACTIONS(876), 1, + ACTIONS(2454), 1, + anon_sym_STAR, + ACTIONS(2458), 1, anon_sym_default, - ACTIONS(878), 1, + ACTIONS(2460), 1, + anon_sym_fn, + ACTIONS(2462), 1, + anon_sym_impl, + ACTIONS(2464), 1, anon_sym_union, - ACTIONS(882), 1, + ACTIONS(2466), 1, + anon_sym_BANG, + ACTIONS(2468), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(2470), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(2472), 1, + anon_sym_dyn, + ACTIONS(2478), 1, sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(1194), 1, - sym_for_lifetimes, - STATE(1326), 1, + STATE(765), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1009), 1, sym_generic_type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2204), 1, + STATE(1129), 1, sym__type, - STATE(2379), 1, - sym_bracketed_type, - STATE(2380), 1, - sym_generic_type_with_turbofish, - STATE(2473), 1, + STATE(1193), 1, + sym_for_lifetimes, + STATE(2281), 1, + sym_scoped_identifier, + STATE(2385), 1, sym_function_modifiers, - STATE(2479), 1, + STATE(2425), 1, sym_lifetime, + STATE(2484), 1, + sym_bracketed_type, + STATE(2485), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(2476), 3, sym_self, sym_super, sym_crate, - STATE(1395), 11, + STATE(1048), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79613,7 +79529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(2456), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79631,74 +79547,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10651] = 32, + [10580] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(868), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2446), 1, + sym_identifier, + ACTIONS(2448), 1, anon_sym_LPAREN, - ACTIONS(872), 1, + ACTIONS(2450), 1, anon_sym_LBRACK, - ACTIONS(876), 1, + ACTIONS(2454), 1, + anon_sym_STAR, + ACTIONS(2458), 1, anon_sym_default, - ACTIONS(878), 1, + ACTIONS(2460), 1, + anon_sym_fn, + ACTIONS(2462), 1, + anon_sym_impl, + ACTIONS(2464), 1, anon_sym_union, - ACTIONS(882), 1, + ACTIONS(2466), 1, + anon_sym_BANG, + ACTIONS(2468), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(2470), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(2472), 1, + anon_sym_dyn, + ACTIONS(2478), 1, sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(1194), 1, - sym_for_lifetimes, - STATE(1326), 1, + STATE(765), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1009), 1, sym_generic_type, - STATE(1952), 1, + STATE(1064), 1, sym__type, - STATE(2194), 1, + STATE(1193), 1, + sym_for_lifetimes, + STATE(2281), 1, sym_scoped_identifier, - STATE(2379), 1, - sym_bracketed_type, - STATE(2380), 1, - sym_generic_type_with_turbofish, - STATE(2473), 1, + STATE(2385), 1, sym_function_modifiers, - STATE(2479), 1, + STATE(2425), 1, sym_lifetime, + STATE(2484), 1, + sym_bracketed_type, + STATE(2485), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(2476), 3, sym_self, sym_super, sym_crate, - STATE(1395), 11, + STATE(1048), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79710,7 +79626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(2456), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79728,74 +79644,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10780] = 32, + [10709] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_STAR, - ACTIONS(2451), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2455), 1, - anon_sym_impl, - ACTIONS(2457), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2459), 1, - anon_sym_BANG, - ACTIONS(2461), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2463), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2465), 1, - anon_sym_dyn, - ACTIONS(2471), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(772), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(933), 1, + STATE(1366), 1, sym_generic_type, - STATE(1039), 1, + STATE(1628), 1, sym__type, - STATE(1191), 1, - sym_for_lifetimes, - STATE(2283), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2336), 1, + STATE(2346), 1, sym_lifetime, - STATE(2387), 1, + STATE(2352), 1, sym_function_modifiers, - STATE(2486), 1, + STATE(2377), 1, sym_bracketed_type, - STATE(2487), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1100), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79807,7 +79723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2449), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79825,74 +79741,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10909] = 32, + [10838] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(868), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2446), 1, + sym_identifier, + ACTIONS(2448), 1, anon_sym_LPAREN, - ACTIONS(872), 1, + ACTIONS(2450), 1, anon_sym_LBRACK, - ACTIONS(876), 1, + ACTIONS(2454), 1, + anon_sym_STAR, + ACTIONS(2458), 1, anon_sym_default, - ACTIONS(878), 1, + ACTIONS(2460), 1, + anon_sym_fn, + ACTIONS(2462), 1, + anon_sym_impl, + ACTIONS(2464), 1, anon_sym_union, - ACTIONS(882), 1, + ACTIONS(2466), 1, + anon_sym_BANG, + ACTIONS(2468), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(2470), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(2472), 1, + anon_sym_dyn, + ACTIONS(2478), 1, sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(1194), 1, - sym_for_lifetimes, - STATE(1326), 1, + STATE(765), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1009), 1, sym_generic_type, - STATE(1667), 1, + STATE(1059), 1, sym__type, - STATE(2194), 1, + STATE(1193), 1, + sym_for_lifetimes, + STATE(2281), 1, sym_scoped_identifier, - STATE(2379), 1, - sym_bracketed_type, - STATE(2380), 1, - sym_generic_type_with_turbofish, - STATE(2473), 1, + STATE(2385), 1, sym_function_modifiers, - STATE(2479), 1, + STATE(2425), 1, sym_lifetime, + STATE(2484), 1, + sym_bracketed_type, + STATE(2485), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(2476), 3, sym_self, sym_super, sym_crate, - STATE(1395), 11, + STATE(1048), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79904,7 +79820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(2456), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79922,7 +79838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11038] = 32, + [10967] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79939,53 +79855,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2107), 1, + STATE(1888), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -80001,7 +79917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80019,74 +79935,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11167] = 32, + [11096] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_STAR, - ACTIONS(2451), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2455), 1, - anon_sym_impl, - ACTIONS(2457), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2459), 1, - anon_sym_BANG, - ACTIONS(2461), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2463), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2465), 1, - anon_sym_dyn, - ACTIONS(2471), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(772), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(933), 1, + STATE(1366), 1, sym_generic_type, - STATE(1131), 1, + STATE(1688), 1, sym__type, - STATE(1191), 1, - sym_for_lifetimes, - STATE(2283), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2336), 1, + STATE(2346), 1, sym_lifetime, - STATE(2387), 1, + STATE(2352), 1, sym_function_modifiers, - STATE(2486), 1, + STATE(2377), 1, sym_bracketed_type, - STATE(2487), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1100), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80098,7 +80014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2449), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80116,7 +80032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11296] = 32, + [11225] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80133,154 +80049,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, - sym_scoped_type_identifier, - STATE(1361), 1, - sym_generic_type, - STATE(1682), 1, - sym__type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2379), 1, - sym_bracketed_type, - STATE(2380), 1, - sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1548), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(888), 3, - sym_self, - sym_super, - sym_crate, - STATE(1395), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(874), 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, - [11425] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, - anon_sym_LPAREN, - ACTIONS(2443), 1, - anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_STAR, - ACTIONS(2451), 1, - anon_sym_default, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2455), 1, - anon_sym_impl, - ACTIONS(2457), 1, - anon_sym_union, - ACTIONS(2459), 1, - anon_sym_BANG, - ACTIONS(2461), 1, - anon_sym_COLON_COLON, - ACTIONS(2463), 1, - anon_sym_AMP, - ACTIONS(2465), 1, - anon_sym_dyn, - ACTIONS(2471), 1, - sym_metavariable, - STATE(772), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(933), 1, + STATE(1366), 1, sym_generic_type, - STATE(1134), 1, + STATE(2308), 1, sym__type, - STATE(1191), 1, - sym_for_lifetimes, - STATE(2283), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2336), 1, + STATE(2346), 1, sym_lifetime, - STATE(2387), 1, + STATE(2352), 1, sym_function_modifiers, - STATE(2486), 1, + STATE(2377), 1, sym_bracketed_type, - STATE(2487), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1100), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80292,7 +80111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2449), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80310,7 +80129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11554] = 32, + [11354] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80327,53 +80146,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2058), 1, + STATE(1383), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -80389,7 +80208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80407,7 +80226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11683] = 32, + [11483] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80424,53 +80243,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2025), 1, + STATE(1384), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -80486,7 +80305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80504,7 +80323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11812] = 32, + [11612] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80521,53 +80340,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1382), 1, + STATE(1399), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -80583,7 +80402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80601,7 +80420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11941] = 32, + [11741] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80618,53 +80437,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1663), 1, + STATE(1398), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -80680,7 +80499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80698,7 +80517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12070] = 32, + [11870] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80715,53 +80534,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2043), 1, + STATE(1638), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -80777,7 +80596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80795,74 +80614,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12199] = 32, + [11999] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_STAR, - ACTIONS(2451), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2455), 1, - anon_sym_impl, - ACTIONS(2457), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2459), 1, - anon_sym_BANG, - ACTIONS(2461), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2463), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2465), 1, - anon_sym_dyn, - ACTIONS(2471), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(772), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(933), 1, + STATE(1366), 1, sym_generic_type, - STATE(1125), 1, + STATE(2058), 1, sym__type, - STATE(1191), 1, - sym_for_lifetimes, - STATE(2283), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2336), 1, + STATE(2346), 1, sym_lifetime, - STATE(2387), 1, + STATE(2352), 1, sym_function_modifiers, - STATE(2486), 1, + STATE(2377), 1, sym_bracketed_type, - STATE(2487), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1100), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80874,7 +80693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2449), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80892,7 +80711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12328] = 32, + [12128] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80909,53 +80728,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1612), 1, + STATE(2002), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -80971,7 +80790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80989,7 +80808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12457] = 32, + [12257] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -81006,53 +80825,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1379), 1, - sym_lifetime, - STATE(1382), 1, + STATE(1658), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -81068,7 +80887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81086,74 +80905,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12586] = 32, + [12386] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_STAR, - ACTIONS(2451), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2455), 1, - anon_sym_impl, - ACTIONS(2457), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2459), 1, - anon_sym_BANG, - ACTIONS(2461), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2463), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2465), 1, - anon_sym_dyn, - ACTIONS(2471), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(772), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(933), 1, + STATE(1366), 1, sym_generic_type, - STATE(1073), 1, + STATE(1397), 1, sym__type, - STATE(1191), 1, - sym_for_lifetimes, - STATE(2283), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2336), 1, + STATE(2346), 1, sym_lifetime, - STATE(2387), 1, + STATE(2352), 1, sym_function_modifiers, - STATE(2486), 1, + STATE(2377), 1, sym_bracketed_type, - STATE(2487), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1100), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81165,7 +80984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2449), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81183,86 +81002,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12715] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(868), 1, + [12515] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1852), 20, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - ACTIONS(872), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(876), 1, - anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, - ACTIONS(882), 1, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(884), 1, anon_sym_AMP, - ACTIONS(890), 1, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2295), 1, - sym_identifier, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(1194), 1, - sym_for_lifetimes, - STATE(1326), 1, - sym_scoped_type_identifier, - STATE(1361), 1, - sym_generic_type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2216), 1, - sym__type, - STATE(2379), 1, - sym_bracketed_type, - STATE(2380), 1, - sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1548), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(888), 3, - sym_self, - sym_super, - sym_crate, - STATE(1395), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(1854), 42, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81280,7 +81045,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12844] = 32, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12586] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -81297,53 +81087,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1689), 1, + STATE(1963), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -81359,7 +81149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81377,74 +81167,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12973] = 32, + [12715] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2441), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(872), 1, anon_sym_LPAREN, - ACTIONS(2443), 1, + ACTIONS(876), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, - anon_sym_STAR, - ACTIONS(2451), 1, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2455), 1, - anon_sym_impl, - ACTIONS(2457), 1, + ACTIONS(882), 1, anon_sym_union, - ACTIONS(2459), 1, - anon_sym_BANG, - ACTIONS(2461), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2463), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(2465), 1, - anon_sym_dyn, - ACTIONS(2471), 1, + ACTIONS(894), 1, sym_metavariable, - STATE(772), 1, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(933), 1, + STATE(1366), 1, sym_generic_type, - STATE(1122), 1, + STATE(2278), 1, sym__type, - STATE(1191), 1, - sym_for_lifetimes, - STATE(2283), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2336), 1, + STATE(2346), 1, sym_lifetime, - STATE(2387), 1, + STATE(2352), 1, sym_function_modifiers, - STATE(2486), 1, + STATE(2377), 1, sym_bracketed_type, - STATE(2487), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - STATE(1100), 11, + STATE(1395), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81456,7 +81246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2449), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81474,7 +81264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13102] = 32, + [12844] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -81491,53 +81281,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1863), 1, + STATE(1680), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -81553,7 +81343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81571,7 +81361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13231] = 32, + [12973] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -81588,53 +81378,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(2194), 1, - sym_scoped_identifier, - STATE(2207), 1, + STATE(1387), 1, sym__type, - STATE(2379), 1, + STATE(2316), 1, + sym_scoped_identifier, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -81650,7 +81440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81668,7 +81458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13360] = 32, + [13102] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -81685,53 +81475,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1613), 1, + STATE(1939), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -81747,7 +81537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81765,7 +81555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13489] = 32, + [13231] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -81782,53 +81572,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1648), 1, + STATE(1923), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -81844,7 +81634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81862,7 +81652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13618] = 32, + [13360] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -81879,53 +81669,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1652), 1, + STATE(2082), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -81941,7 +81731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81959,7 +81749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13747] = 32, + [13489] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -81976,53 +81766,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1809), 1, + STATE(1650), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1559), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(1395), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(878), 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, + [13618] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2446), 1, + sym_identifier, + ACTIONS(2448), 1, + anon_sym_LPAREN, + ACTIONS(2450), 1, + anon_sym_LBRACK, + ACTIONS(2454), 1, + anon_sym_STAR, + ACTIONS(2458), 1, + anon_sym_default, + ACTIONS(2460), 1, + anon_sym_fn, + ACTIONS(2462), 1, + anon_sym_impl, + ACTIONS(2464), 1, + anon_sym_union, + ACTIONS(2466), 1, + anon_sym_BANG, + ACTIONS(2468), 1, + anon_sym_COLON_COLON, + ACTIONS(2470), 1, + anon_sym_AMP, + ACTIONS(2472), 1, + anon_sym_dyn, + ACTIONS(2478), 1, + sym_metavariable, + STATE(765), 1, + sym_scoped_type_identifier, + STATE(1009), 1, + sym_generic_type, + STATE(1049), 1, + sym__type, + STATE(1193), 1, + sym_for_lifetimes, + STATE(2281), 1, + sym_scoped_identifier, + STATE(2385), 1, sym_function_modifiers, - STATE(2479), 1, + STATE(2425), 1, + sym_lifetime, + STATE(2484), 1, + sym_bracketed_type, + STATE(2485), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1559), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2476), 3, + sym_self, + sym_super, + sym_crate, + STATE(1048), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2456), 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, + [13747] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(872), 1, + anon_sym_LPAREN, + ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, + anon_sym_default, + ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, + anon_sym_COLON_COLON, + ACTIONS(888), 1, + anon_sym_AMP, + ACTIONS(894), 1, + sym_metavariable, + ACTIONS(2295), 1, + sym_identifier, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1191), 1, + sym_for_lifetimes, + STATE(1330), 1, + sym_scoped_type_identifier, + STATE(1366), 1, + sym_generic_type, + STATE(2316), 1, + sym_scoped_identifier, + STATE(2320), 1, + sym__type, + STATE(2346), 1, sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, + sym_bracketed_type, + STATE(2378), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -82038,7 +82022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82073,53 +82057,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, + ACTIONS(2295), 1, + sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(2528), 1, - sym_identifier, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1522), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1641), 1, - sym__type, - STATE(1693), 1, + STATE(1366), 1, sym_generic_type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2317), 1, + sym__type, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -82135,7 +82119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82170,53 +82154,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(868), 1, - anon_sym_LPAREN, ACTIONS(872), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(876), 1, + anon_sym_LBRACK, + ACTIONS(880), 1, anon_sym_default, - ACTIONS(878), 1, - anon_sym_union, ACTIONS(882), 1, + anon_sym_union, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(884), 1, + ACTIONS(888), 1, anon_sym_AMP, - ACTIONS(890), 1, + ACTIONS(894), 1, sym_metavariable, ACTIONS(2295), 1, sym_identifier, ACTIONS(2299), 1, anon_sym_SQUOTE, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1326), 1, + STATE(1330), 1, sym_scoped_type_identifier, - STATE(1361), 1, + STATE(1366), 1, sym_generic_type, - STATE(1377), 1, + STATE(1636), 1, sym__type, - STATE(2194), 1, + STATE(2316), 1, sym_scoped_identifier, - STATE(2379), 1, + STATE(2346), 1, + sym_lifetime, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2479), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, @@ -82232,7 +82216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(874), 17, + ACTIONS(878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82254,7 +82238,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(850), 17, + ACTIONS(2532), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -82272,7 +82256,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(848), 40, + ACTIONS(2530), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82317,25 +82301,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2532), 17, + ACTIONS(494), 18, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_BANG, - anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2530), 40, + ACTIONS(2534), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82367,7 +82352,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, - anon_sym_DASH, anon_sym_yield, anon_sym_move, anon_sym_true, @@ -82380,26 +82364,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(494), 18, + ACTIONS(850), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_BANG, + anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2534), 39, + ACTIONS(848), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82431,6 +82414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, + anon_sym_DASH, anon_sym_yield, anon_sym_move, anon_sym_true, @@ -82570,9 +82554,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(2550), 1, anon_sym_LT2, - STATE(976), 1, + STATE(829), 1, sym_type_arguments, - STATE(989), 1, + STATE(916), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -82629,9 +82613,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(2550), 1, anon_sym_LT2, - STATE(976), 1, + STATE(829), 1, sym_type_arguments, - STATE(989), 1, + STATE(916), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -82688,9 +82672,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(2550), 1, anon_sym_LT2, - STATE(976), 1, + STATE(829), 1, sym_type_arguments, - STATE(989), 1, + STATE(916), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -82740,70 +82724,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14664] = 5, - ACTIONS(2564), 1, - anon_sym_BANG, - ACTIONS(2566), 1, - anon_sym_COLON_COLON, + [14664] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2562), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2560), 28, + ACTIONS(1474), 9, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14724] = 5, - ACTIONS(2572), 1, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1476), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14720] = 7, + ACTIONS(2546), 1, anon_sym_BANG, - ACTIONS(2574), 1, + ACTIONS(2560), 1, + anon_sym_LBRACE, + ACTIONS(2562), 1, anon_sym_COLON_COLON, + STATE(1101), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 17, + ACTIONS(486), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82814,18 +82800,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2568), 28, + ACTIONS(484), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -82834,12 +82817,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -82849,20 +82832,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [14784] = 7, ACTIONS(2542), 1, anon_sym_LPAREN, ACTIONS(2550), 1, anon_sym_LT2, - STATE(978), 1, + STATE(821), 1, sym_type_arguments, - STATE(993), 1, + STATE(885), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 17, + ACTIONS(2566), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -82880,7 +82864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2576), 26, + ACTIONS(2564), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -82907,118 +82891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14848] = 5, - ACTIONS(2584), 1, - anon_sym_BANG, - ACTIONS(2586), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2582), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2580), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14908] = 6, - ACTIONS(2594), 1, - anon_sym_BANG, - ACTIONS(2596), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(2590), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2588), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [14970] = 3, + [14848] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -83071,19 +82944,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15026] = 7, - ACTIONS(2546), 1, + [14904] = 5, + ACTIONS(2572), 1, anon_sym_BANG, - ACTIONS(2598), 1, - anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2574), 1, anon_sym_COLON_COLON, - STATE(1055), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(486), 15, + ACTIONS(2570), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83094,15 +82963,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(484), 28, + ACTIONS(2568), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83111,12 +82983,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -83126,21 +82998,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15090] = 7, + [14964] = 7, ACTIONS(2542), 1, anon_sym_LPAREN, ACTIONS(2550), 1, anon_sym_LT2, - STATE(978), 1, + STATE(821), 1, sym_type_arguments, - STATE(993), 1, + STATE(885), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2604), 17, + ACTIONS(2578), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83158,7 +83029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2602), 26, + ACTIONS(2576), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -83185,11 +83056,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15154] = 3, + [15028] = 7, + ACTIONS(2542), 1, + anon_sym_LPAREN, + ACTIONS(2550), 1, + anon_sym_LT2, + STATE(821), 1, + sym_type_arguments, + STATE(885), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1474), 9, + ACTIONS(2582), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2580), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [15092] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1298), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83199,7 +83127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1476), 38, + ACTIONS(1300), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83238,68 +83166,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15210] = 3, + [15148] = 5, + ACTIONS(2588), 1, + anon_sym_BANG, + ACTIONS(2590), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1242), 9, + ACTIONS(2586), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2584), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - anon_sym_LT, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [15208] = 5, + ACTIONS(2596), 1, + anon_sym_BANG, + ACTIONS(2598), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1244), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15266] = 5, - ACTIONS(2610), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2594), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2592), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [15268] = 5, + ACTIONS(2604), 1, anon_sym_BANG, - ACTIONS(2612), 1, + ACTIONS(2606), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 17, + ACTIONS(2602), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83317,7 +83302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2606), 28, + ACTIONS(2600), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83346,11 +83331,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [15326] = 3, + [15328] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1306), 9, + ACTIONS(1314), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83360,7 +83345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1308), 38, + ACTIONS(1316), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83399,11 +83384,67 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15382] = 3, + [15384] = 6, + ACTIONS(2614), 1, + anon_sym_BANG, + ACTIONS(2616), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1186), 9, + ACTIONS(2612), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(2610), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2608), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15446] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1074), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83413,7 +83454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1188), 38, + ACTIONS(1076), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83452,74 +83493,16 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15438] = 7, - ACTIONS(2542), 1, - anon_sym_LPAREN, - ACTIONS(2550), 1, - anon_sym_LT2, - STATE(978), 1, - sym_type_arguments, - STATE(993), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2616), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2614), 26, - anon_sym_SEMI, - anon_sym_RPAREN, + [15502] = 4, + ACTIONS(2618), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [15502] = 5, - ACTIONS(2622), 1, - anon_sym_SQUOTE, - STATE(1071), 1, - sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2620), 15, + ACTIONS(2604), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83533,11 +83516,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2618), 29, + ACTIONS(2606), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83545,6 +83527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -83563,16 +83546,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15561] = 4, - ACTIONS(2624), 1, - anon_sym_LBRACE, + [15559] = 5, + ACTIONS(2620), 1, + anon_sym_else, + STATE(1041), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2572), 16, + ACTIONS(400), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83586,10 +83570,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2574), 29, + ACTIONS(398), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83597,7 +83582,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -83616,17 +83600,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15618] = 5, - ACTIONS(2626), 1, - anon_sym_else, - STATE(1052), 1, - sym_else_clause, + [15618] = 4, + ACTIONS(2622), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(400), 15, + ACTIONS(2588), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83640,11 +83623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(398), 29, + ACTIONS(2590), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83652,6 +83634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -83670,13 +83653,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15677] = 4, - ACTIONS(2628), 1, + [15675] = 4, + ACTIONS(2624), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 16, + ACTIONS(2596), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -83693,7 +83676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2586), 29, + ACTIONS(2598), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83723,11 +83706,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15734] = 3, + [15732] = 4, + ACTIONS(2626), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 16, + ACTIONS(2572), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -83744,11 +83729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2586), 30, + ACTIONS(2574), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83775,13 +83759,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15789] = 4, - ACTIONS(2630), 1, - anon_sym_LBRACE, + [15789] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 16, + ACTIONS(2588), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -83798,10 +83780,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2612), 29, + ACTIONS(2590), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83828,16 +83811,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15846] = 4, + [15844] = 5, ACTIONS(2632), 1, - anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1126), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 16, + ACTIONS(2630), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83851,10 +83835,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2566), 29, + ACTIONS(2628), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83862,7 +83847,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -83885,7 +83869,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1736), 7, + ACTIONS(1502), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83893,7 +83877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1738), 38, + ACTIONS(1504), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83936,7 +83920,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1486), 7, + ACTIONS(1306), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83944,7 +83928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1488), 38, + ACTIONS(1308), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83987,7 +83971,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1884), 7, + ACTIONS(1976), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83995,7 +83979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1886), 38, + ACTIONS(1978), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84038,7 +84022,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1878), 7, + ACTIONS(1924), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84046,7 +84030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1880), 38, + ACTIONS(1926), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84089,7 +84073,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1856), 7, + ACTIONS(1984), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84097,7 +84081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1858), 38, + ACTIONS(1986), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84136,64 +84120,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16173] = 5, - ACTIONS(2596), 1, - anon_sym_COLON_COLON, - ACTIONS(2634), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2590), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2588), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16231] = 3, + [16173] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1840), 7, + ACTIONS(1234), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84201,7 +84132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1842), 38, + ACTIONS(1236), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84240,11 +84171,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16285] = 3, + [16227] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1836), 7, + ACTIONS(1980), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84252,7 +84183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1838), 38, + ACTIONS(1982), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84291,11 +84222,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16339] = 3, + [16281] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1828), 7, + ACTIONS(1972), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84303,7 +84234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1830), 38, + ACTIONS(1974), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84342,11 +84273,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16393] = 3, + [16335] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1824), 7, + ACTIONS(1230), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84354,7 +84285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1826), 38, + ACTIONS(1232), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84393,113 +84324,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16447] = 3, + [16389] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1820), 7, + ACTIONS(2636), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2634), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1822), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16501] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16443] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1816), 7, + ACTIONS(818), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(820), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1818), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16555] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16497] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1812), 7, + ACTIONS(1948), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84507,7 +84438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1814), 38, + ACTIONS(1950), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84546,11 +84477,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16609] = 3, + [16551] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1808), 7, + ACTIONS(1944), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84558,7 +84489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1810), 38, + ACTIONS(1946), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84597,11 +84528,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16663] = 3, + [16605] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1804), 7, + ACTIONS(1226), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84609,7 +84540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1806), 38, + ACTIONS(1228), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84648,11 +84579,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16717] = 3, + [16659] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1800), 7, + ACTIONS(1222), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84660,7 +84591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1802), 38, + ACTIONS(1224), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84699,11 +84630,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16771] = 3, + [16713] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1796), 7, + ACTIONS(1218), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84711,7 +84642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1798), 38, + ACTIONS(1220), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84750,11 +84681,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16825] = 3, + [16767] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1792), 7, + ACTIONS(1206), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84762,7 +84693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1794), 38, + ACTIONS(1208), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84801,11 +84732,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16879] = 3, + [16821] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1788), 7, + ACTIONS(1952), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84813,7 +84744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1790), 38, + ACTIONS(1954), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84852,11 +84783,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16933] = 3, + [16875] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1784), 7, + ACTIONS(1198), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84864,7 +84795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1786), 38, + ACTIONS(1200), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84903,11 +84834,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16987] = 3, + [16929] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1780), 7, + ACTIONS(1932), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84915,7 +84846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1782), 38, + ACTIONS(1934), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84954,11 +84885,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17041] = 3, + [16983] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1776), 7, + ACTIONS(1928), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -84966,7 +84897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1778), 38, + ACTIONS(1930), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85005,11 +84936,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17095] = 3, + [17037] = 4, + ACTIONS(2642), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(818), 15, + ACTIONS(2640), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85025,7 +84958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(820), 30, + ACTIONS(2638), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85034,7 +84967,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, @@ -85056,164 +84988,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17149] = 3, + [17093] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1772), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1774), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17203] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1768), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2646), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1770), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17257] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1764), 7, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2644), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1766), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17311] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17147] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1756), 7, + ACTIONS(1956), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85221,7 +85051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1758), 38, + ACTIONS(1958), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85260,11 +85090,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17365] = 3, + [17201] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1752), 7, + ACTIONS(1142), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85272,7 +85102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1754), 38, + ACTIONS(1144), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85311,11 +85141,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17419] = 3, + [17255] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1748), 7, + ACTIONS(1178), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85323,7 +85153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1750), 38, + ACTIONS(1180), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85362,11 +85192,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17473] = 3, + [17309] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1744), 7, + ACTIONS(1170), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85374,7 +85204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1746), 38, + ACTIONS(1172), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85413,11 +85243,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17527] = 3, + [17363] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1740), 7, + ACTIONS(1960), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85425,7 +85255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1742), 38, + ACTIONS(1962), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85464,11 +85294,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17581] = 3, + [17417] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1382), 7, + ACTIONS(1166), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85476,7 +85306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1384), 38, + ACTIONS(1168), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85515,11 +85345,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17635] = 3, + [17471] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1732), 7, + ACTIONS(1158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85527,7 +85357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1734), 38, + ACTIONS(1160), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85566,11 +85396,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17689] = 3, + [17525] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1728), 7, + ACTIONS(1154), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85578,7 +85408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1730), 38, + ACTIONS(1156), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85617,11 +85447,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17743] = 3, + [17579] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1720), 7, + ACTIONS(1964), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85629,7 +85459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1722), 38, + ACTIONS(1966), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85668,11 +85498,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17797] = 3, + [17633] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1716), 7, + ACTIONS(1150), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85680,7 +85510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1718), 38, + ACTIONS(1152), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85719,11 +85549,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17851] = 3, + [17687] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1684), 7, + ACTIONS(1130), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85731,7 +85561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1686), 38, + ACTIONS(1132), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85770,11 +85600,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17905] = 3, + [17741] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1668), 7, + ACTIONS(1126), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85782,7 +85612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1670), 38, + ACTIONS(1128), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85821,11 +85651,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17959] = 3, + [17795] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1660), 7, + ACTIONS(1118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -85833,7 +85663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1662), 38, + ACTIONS(1120), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -85872,14 +85702,14 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18013] = 4, + [17849] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2638), 2, + ACTIONS(2650), 2, anon_sym_LBRACE, anon_sym_COLON_COLON, - ACTIONS(2640), 15, + ACTIONS(2652), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85895,7 +85725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2636), 28, + ACTIONS(2648), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85924,11 +85754,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18069] = 3, + [17905] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2644), 15, + ACTIONS(2656), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85944,7 +85774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2642), 30, + ACTIONS(2654), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85975,11 +85805,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18123] = 3, + [17959] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 15, + ACTIONS(2660), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85995,7 +85825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2646), 30, + ACTIONS(2658), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86026,62 +85856,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18177] = 3, + [18013] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2652), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2650), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [18231] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1640), 7, + ACTIONS(1114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86089,7 +85868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1642), 38, + ACTIONS(1116), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86128,11 +85907,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18285] = 3, + [18067] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1632), 7, + ACTIONS(1110), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86140,7 +85919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1634), 38, + ACTIONS(1112), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86179,11 +85958,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18339] = 3, + [18121] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1628), 7, + ACTIONS(2664), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2662), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18175] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1912), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86191,7 +86021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1630), 38, + ACTIONS(1914), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86230,11 +86060,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18393] = 3, + [18229] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1576), 7, + ACTIONS(1920), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86242,7 +86072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1578), 38, + ACTIONS(1922), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86281,11 +86111,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18447] = 3, + [18283] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1624), 7, + ACTIONS(1908), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86293,7 +86123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1626), 38, + ACTIONS(1910), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86332,62 +86162,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18501] = 3, + [18337] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2656), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2654), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [18555] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1612), 7, + ACTIONS(1106), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86395,7 +86174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1614), 38, + ACTIONS(1108), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86434,11 +86213,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18609] = 3, + [18391] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1608), 7, + ACTIONS(1676), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86446,7 +86225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1610), 38, + ACTIONS(1678), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86485,11 +86264,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18663] = 3, + [18445] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1896), 7, + ACTIONS(1102), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86497,7 +86276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1898), 38, + ACTIONS(1104), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86536,13 +86315,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18717] = 4, - ACTIONS(2662), 1, - anon_sym_DASH_GT, + [18499] = 4, + ACTIONS(2666), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2660), 15, + ACTIONS(2566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86558,7 +86337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2658), 29, + ACTIONS(2564), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86588,11 +86367,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18773] = 3, + [18555] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1600), 7, + ACTIONS(2670), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2668), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18609] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1098), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86600,7 +86430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1602), 38, + ACTIONS(1100), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86639,11 +86469,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18827] = 3, + [18663] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1596), 7, + ACTIONS(1094), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86651,7 +86481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1598), 38, + ACTIONS(1096), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86690,11 +86520,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18881] = 3, + [18717] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1592), 7, + ACTIONS(1090), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86702,7 +86532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1594), 38, + ACTIONS(1092), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86741,11 +86571,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18935] = 3, + [18771] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1588), 7, + ACTIONS(1888), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86753,7 +86583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1590), 38, + ACTIONS(1890), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86792,63 +86622,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18989] = 4, - ACTIONS(2664), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(486), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(484), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [19045] = 3, + [18825] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1900), 7, + ACTIONS(1904), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86856,7 +86634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1902), 38, + ACTIONS(1906), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86895,11 +86673,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19099] = 3, + [18879] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1904), 7, + ACTIONS(1086), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86907,7 +86685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1906), 38, + ACTIONS(1088), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86946,11 +86724,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19153] = 3, + [18933] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1580), 7, + ACTIONS(1162), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86958,7 +86736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1582), 38, + ACTIONS(1164), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86997,11 +86775,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19207] = 3, + [18987] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1908), 7, + ACTIONS(1900), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87009,7 +86787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1910), 38, + ACTIONS(1902), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87048,11 +86826,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19261] = 3, + [19041] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1568), 7, + ACTIONS(1872), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87060,7 +86838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1570), 38, + ACTIONS(1874), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87099,11 +86877,116 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19315] = 3, + [19095] = 5, + ACTIONS(2616), 1, + anon_sym_COLON_COLON, + ACTIONS(2672), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1564), 7, + ACTIONS(2610), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2608), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19153] = 4, + ACTIONS(2678), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2676), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2674), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19209] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1082), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87111,7 +86994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1566), 38, + ACTIONS(1084), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87150,11 +87033,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19369] = 3, + [19263] = 4, + ACTIONS(2666), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1556), 7, + ACTIONS(2578), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2576), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19319] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1896), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87162,7 +87097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1558), 38, + ACTIONS(1898), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87201,11 +87136,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19423] = 3, + [19373] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1494), 7, + ACTIONS(1892), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87213,7 +87148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1496), 38, + ACTIONS(1894), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87252,11 +87187,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19477] = 3, + [19427] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1912), 7, + ACTIONS(1712), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87264,7 +87199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1914), 38, + ACTIONS(1714), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87303,115 +87238,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19531] = 5, - ACTIONS(2668), 1, - anon_sym_LPAREN, - STATE(1046), 1, - sym_arguments, + [19481] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2670), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2666), 28, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [19589] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2674), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2672), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [19643] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1466), 7, + ACTIONS(1146), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87419,7 +87250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1468), 38, + ACTIONS(1148), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87458,11 +87289,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19697] = 3, + [19535] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1458), 7, + ACTIONS(1174), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87470,7 +87301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1460), 38, + ACTIONS(1176), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87509,11 +87340,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19751] = 3, + [19589] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1454), 7, + ACTIONS(1182), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87521,7 +87352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1456), 38, + ACTIONS(1184), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87560,11 +87391,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19805] = 3, + [19643] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1928), 7, + ACTIONS(1884), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87572,7 +87403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1930), 38, + ACTIONS(1886), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87611,11 +87442,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19859] = 3, + [19697] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1932), 7, + ACTIONS(1878), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87623,7 +87454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1934), 38, + ACTIONS(1880), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87662,11 +87493,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19913] = 3, + [19751] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1450), 7, + ACTIONS(1202), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87674,7 +87505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1452), 38, + ACTIONS(1204), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87713,11 +87544,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19967] = 3, + [19805] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1446), 7, + ACTIONS(1868), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87725,7 +87556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1448), 38, + ACTIONS(1870), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87764,11 +87595,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20021] = 3, + [19859] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1936), 7, + ACTIONS(1848), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87776,7 +87607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1938), 38, + ACTIONS(1850), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87815,11 +87646,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20075] = 3, + [19913] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1442), 7, + ACTIONS(1246), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87827,7 +87658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1444), 38, + ACTIONS(1248), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87866,11 +87697,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20129] = 3, + [19967] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1438), 7, + ACTIONS(1860), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87878,7 +87709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1440), 38, + ACTIONS(1862), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87917,11 +87748,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20183] = 3, + [20021] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1434), 7, + ACTIONS(1692), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87929,7 +87760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1436), 38, + ACTIONS(1694), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87968,11 +87799,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20237] = 3, + [20075] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1948), 7, + ACTIONS(1840), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87980,7 +87811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1950), 38, + ACTIONS(1842), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88019,11 +87850,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20291] = 3, + [20129] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1430), 7, + ACTIONS(1836), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88031,7 +87862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1432), 38, + ACTIONS(1838), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88070,11 +87901,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20345] = 3, + [20183] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1426), 7, + ACTIONS(1832), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88082,7 +87913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1428), 38, + ACTIONS(1834), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88121,62 +87952,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20399] = 3, + [20237] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2678), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1824), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2676), 30, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1826), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20291] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1250), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20453] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1252), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20345] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1422), 7, + ACTIONS(1820), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88184,7 +88066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1424), 38, + ACTIONS(1822), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88223,11 +88105,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20507] = 3, + [20399] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1418), 7, + ACTIONS(1816), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88235,7 +88117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1420), 38, + ACTIONS(1818), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88274,11 +88156,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20561] = 3, + [20453] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1972), 7, + ACTIONS(1812), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88286,7 +88168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1974), 38, + ACTIONS(1814), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88325,11 +88207,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20615] = 3, + [20507] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1406), 7, + ACTIONS(1680), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88337,7 +88219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1408), 38, + ACTIONS(1682), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88376,11 +88258,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20669] = 3, + [20561] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1402), 7, + ACTIONS(1808), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88388,7 +88270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1404), 38, + ACTIONS(1810), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88427,11 +88309,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20723] = 3, + [20615] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1398), 7, + ACTIONS(1804), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88439,7 +88321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1400), 38, + ACTIONS(1806), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88478,11 +88360,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20777] = 3, + [20669] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1394), 7, + ACTIONS(1800), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88490,7 +88372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1396), 38, + ACTIONS(1802), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88529,11 +88411,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20831] = 3, + [20723] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1390), 7, + ACTIONS(1796), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88541,7 +88423,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1392), 38, + ACTIONS(1798), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20777] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1254), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1256), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20831] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1194), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1196), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88584,7 +88568,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1980), 7, + ACTIONS(1792), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88592,7 +88576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1982), 38, + ACTIONS(1794), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88635,7 +88619,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1386), 7, + ACTIONS(1262), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88643,7 +88627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1388), 38, + ACTIONS(1264), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88682,11 +88666,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20993] = 3, + [20993] = 4, + ACTIONS(2680), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1984), 7, + ACTIONS(486), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(484), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [21049] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1788), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88694,7 +88730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1986), 38, + ACTIONS(1790), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88733,11 +88769,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21047] = 3, + [21103] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1976), 7, + ACTIONS(1238), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88745,7 +88781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1978), 38, + ACTIONS(1240), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88784,11 +88820,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21101] = 3, + [21157] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1378), 7, + ACTIONS(1458), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88796,7 +88832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1380), 38, + ACTIONS(1460), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88835,11 +88871,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21155] = 3, + [21211] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1968), 7, + ACTIONS(2684), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2682), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [21265] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1258), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88847,7 +88934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1970), 38, + ACTIONS(1260), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88886,11 +88973,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21209] = 3, + [21319] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1964), 7, + ACTIONS(1784), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88898,7 +88985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1966), 38, + ACTIONS(1786), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88937,11 +89024,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21263] = 3, + [21373] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1960), 7, + ACTIONS(1672), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88949,7 +89036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1962), 38, + ACTIONS(1674), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88988,11 +89075,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21317] = 3, + [21427] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1956), 7, + ACTIONS(1466), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89000,7 +89087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1958), 38, + ACTIONS(1468), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89039,11 +89126,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21371] = 3, + [21481] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1374), 7, + ACTIONS(1780), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89051,7 +89138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1376), 38, + ACTIONS(1782), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89090,11 +89177,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21425] = 3, + [21535] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1370), 7, + ACTIONS(1652), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89102,7 +89189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1372), 38, + ACTIONS(1654), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89141,15 +89228,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21479] = 5, - ACTIONS(2546), 1, - anon_sym_BANG, - ACTIONS(2680), 1, - anon_sym_COLON_COLON, + [21589] = 4, + ACTIONS(2690), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(486), 15, + ACTIONS(2688), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89165,10 +89250,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(484), 28, + ACTIONS(2686), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -89194,62 +89280,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21537] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1952), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1954), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21591] = 3, + [21645] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1366), 7, + ACTIONS(1776), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89257,7 +89292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1368), 38, + ACTIONS(1778), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89296,11 +89331,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21645] = 3, + [21699] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1924), 7, + ACTIONS(1266), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89308,7 +89343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1926), 38, + ACTIONS(1268), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89347,11 +89382,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21699] = 3, + [21753] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1362), 7, + ACTIONS(1498), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89359,7 +89394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1364), 38, + ACTIONS(1500), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89398,11 +89433,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21753] = 3, + [21807] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(1772), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89410,7 +89445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1922), 38, + ACTIONS(1774), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89449,11 +89484,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21807] = 3, + [21861] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1916), 7, + ACTIONS(1270), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89461,7 +89496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1918), 38, + ACTIONS(1272), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89500,11 +89535,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21861] = 3, + [21915] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1358), 7, + ACTIONS(1768), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89512,7 +89547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1360), 38, + ACTIONS(1770), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89551,11 +89586,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21915] = 3, + [21969] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1872), 7, + ACTIONS(1540), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89563,7 +89598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1874), 38, + ACTIONS(1542), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89602,11 +89637,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21969] = 3, + [22023] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1354), 7, + ACTIONS(1764), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89614,7 +89649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1356), 38, + ACTIONS(1766), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89653,11 +89688,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22023] = 3, + [22077] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1868), 7, + ACTIONS(1760), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89665,7 +89700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1870), 38, + ACTIONS(1762), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89704,11 +89739,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22077] = 3, + [22131] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1350), 7, + ACTIONS(1486), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89716,7 +89751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1352), 38, + ACTIONS(1488), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89755,11 +89790,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22131] = 3, + [22185] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1346), 7, + ACTIONS(1752), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89767,7 +89802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1348), 38, + ACTIONS(1754), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89806,11 +89841,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22185] = 3, + [22239] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1848), 7, + ACTIONS(1748), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89818,7 +89853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1850), 38, + ACTIONS(1750), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89857,11 +89892,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22239] = 3, + [22293] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1342), 7, + ACTIONS(1744), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89869,7 +89904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1344), 38, + ACTIONS(1746), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89908,11 +89943,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22293] = 3, + [22347] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1692), 7, + ACTIONS(1740), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89920,7 +89955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1694), 38, + ACTIONS(1742), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89959,11 +89994,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22347] = 3, + [22401] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1338), 7, + ACTIONS(1736), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89971,7 +90006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1340), 38, + ACTIONS(1738), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90010,11 +90045,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22401] = 3, + [22455] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1680), 7, + ACTIONS(1732), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90022,7 +90057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1682), 38, + ACTIONS(1734), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90061,11 +90096,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22455] = 3, + [22509] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1676), 7, + ACTIONS(1544), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90073,7 +90108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1678), 38, + ACTIONS(1546), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90112,11 +90147,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22509] = 3, + [22563] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1672), 7, + ACTIONS(1728), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90124,7 +90159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1674), 38, + ACTIONS(1730), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90163,11 +90198,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22563] = 3, + [22617] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1298), 7, + ACTIONS(1122), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90175,7 +90210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1300), 38, + ACTIONS(1124), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90214,11 +90249,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22617] = 3, + [22671] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1290), 7, + ACTIONS(1568), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90226,7 +90261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1292), 38, + ACTIONS(1570), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90265,11 +90300,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22671] = 3, + [22725] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(1724), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90277,7 +90312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1654), 38, + ACTIONS(1726), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90316,11 +90351,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22725] = 3, + [22779] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1286), 7, + ACTIONS(1716), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90328,7 +90363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1288), 38, + ACTIONS(1718), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90367,11 +90402,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22779] = 3, + [22833] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1282), 7, + ACTIONS(1580), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90379,7 +90414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1284), 38, + ACTIONS(1582), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90418,11 +90453,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22833] = 3, + [22887] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2684), 15, + ACTIONS(416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90438,7 +90473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2682), 30, + ACTIONS(414), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90450,7 +90485,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -90469,62 +90503,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22887] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1888), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1890), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, + anon_sym_else, [22941] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1266), 7, + ACTIONS(1318), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90532,7 +90516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1268), 38, + ACTIONS(1320), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90575,7 +90559,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1262), 7, + ACTIONS(1600), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90583,7 +90567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1264), 38, + ACTIONS(1602), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90626,7 +90610,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1254), 7, + ACTIONS(1684), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90634,7 +90618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1256), 38, + ACTIONS(1686), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90677,7 +90661,113 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 17, + ACTIONS(1668), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1670), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23157] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1660), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1662), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23211] = 5, + ACTIONS(2694), 1, + anon_sym_LPAREN, + STATE(1088), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2696), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90688,14 +90778,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2692), 28, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23269] = 4, + ACTIONS(2702), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2700), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2698), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23325] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2706), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2580), 28, + ACTIONS(2704), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90707,13 +90896,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -90723,12 +90913,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23157] = 3, + [23379] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1250), 7, + ACTIONS(1616), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90736,7 +90927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1252), 38, + ACTIONS(1618), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90775,11 +90966,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23211] = 3, + [23433] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1482), 7, + ACTIONS(1322), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90787,7 +90978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1484), 38, + ACTIONS(1324), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90826,11 +91017,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23265] = 3, + [23487] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1478), 7, + ACTIONS(1632), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90838,7 +91029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1480), 38, + ACTIONS(1634), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90877,11 +91068,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23319] = 3, + [23541] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1326), 7, + ACTIONS(1482), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90889,7 +91080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1328), 38, + ACTIONS(1484), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90928,11 +91119,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23373] = 3, + [23595] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2688), 15, + ACTIONS(2710), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90948,7 +91139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2686), 30, + ACTIONS(2708), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90960,7 +91151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -90979,62 +91170,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23427] = 3, + [23649] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1238), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1240), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23481] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1318), 7, + ACTIONS(1640), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91042,7 +91182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1320), 38, + ACTIONS(1642), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91081,11 +91221,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23535] = 3, + [23703] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1234), 7, + ACTIONS(1330), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91093,7 +91233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1236), 38, + ACTIONS(1332), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91132,11 +91272,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23589] = 3, + [23757] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1310), 7, + ACTIONS(1636), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91144,7 +91284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1312), 38, + ACTIONS(1638), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91183,11 +91323,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23643] = 3, + [23811] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1230), 7, + ACTIONS(1628), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91195,7 +91335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1232), 38, + ACTIONS(1630), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91234,11 +91374,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23697] = 3, + [23865] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1226), 7, + ACTIONS(1624), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91246,7 +91386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1228), 38, + ACTIONS(1626), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91285,11 +91425,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23751] = 3, + [23919] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1222), 7, + ACTIONS(1708), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91297,7 +91437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1224), 38, + ACTIONS(1710), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91336,11 +91476,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23805] = 3, + [23973] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1832), 7, + ACTIONS(2714), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2712), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24027] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1278), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91348,7 +91539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1834), 38, + ACTIONS(1280), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91387,11 +91578,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23859] = 3, + [24081] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1302), 7, + ACTIONS(1334), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91399,7 +91590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1304), 38, + ACTIONS(1336), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91438,11 +91629,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23913] = 3, + [24135] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1210), 7, + ACTIONS(1478), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91450,7 +91641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1212), 38, + ACTIONS(1480), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91489,114 +91680,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23967] = 3, + [24189] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(412), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(410), 30, + ACTIONS(1326), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_else, - [24021] = 4, - ACTIONS(2690), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2616), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2614), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24077] = 3, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1328), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24243] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1202), 7, + ACTIONS(1612), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91604,7 +91743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1204), 38, + ACTIONS(1614), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91643,65 +91782,64 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24131] = 4, - ACTIONS(2692), 1, - anon_sym_COLON_COLON, + [24297] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2614), 29, + ACTIONS(1608), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24187] = 4, - ACTIONS(2694), 1, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1610), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24351] = 4, + ACTIONS(2720), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 15, + ACTIONS(2718), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91717,7 +91855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2614), 29, + ACTIONS(2716), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91747,11 +91885,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24243] = 3, + [24407] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1560), 7, + ACTIONS(1382), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91759,7 +91897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1562), 38, + ACTIONS(1384), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91798,11 +91936,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24297] = 3, + [24461] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1074), 7, + ACTIONS(1410), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91810,7 +91948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1076), 38, + ACTIONS(1412), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91849,11 +91987,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24351] = 3, + [24515] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1178), 7, + ACTIONS(1414), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91861,7 +91999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1180), 38, + ACTIONS(1416), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91900,11 +92038,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24405] = 3, + [24569] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1170), 7, + ACTIONS(1604), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91912,7 +92050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1172), 38, + ACTIONS(1606), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91951,11 +92089,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24459] = 3, + [24623] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1552), 7, + ACTIONS(406), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91963,7 +92101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1554), 38, + ACTIONS(408), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92002,11 +92140,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24513] = 3, + [24677] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1166), 7, + ACTIONS(1596), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92014,7 +92152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1168), 38, + ACTIONS(1598), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92053,11 +92191,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24567] = 3, + [24731] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1214), 7, + ACTIONS(1592), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92065,7 +92203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1216), 38, + ACTIONS(1594), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92104,11 +92242,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24621] = 3, + [24785] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(406), 7, + ACTIONS(414), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92116,7 +92254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(408), 38, + ACTIONS(416), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92155,11 +92293,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24675] = 3, + [24839] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1158), 7, + ACTIONS(1588), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92167,7 +92305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1160), 38, + ACTIONS(1590), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92206,11 +92344,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24729] = 3, + [24893] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(414), 7, + ACTIONS(410), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92218,7 +92356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(416), 38, + ACTIONS(412), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92257,11 +92395,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24783] = 3, + [24947] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1154), 7, + ACTIONS(606), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92269,7 +92407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1156), 38, + ACTIONS(608), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92308,11 +92446,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24837] = 3, + [25001] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(410), 7, + ACTIONS(1490), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92320,7 +92458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(412), 38, + ACTIONS(1492), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92359,11 +92497,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24891] = 3, + [25055] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1150), 7, + ACTIONS(1134), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92371,7 +92509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1152), 38, + ACTIONS(1136), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92410,11 +92548,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24945] = 3, + [25109] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(610), 7, + ACTIONS(1506), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92422,7 +92560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(612), 38, + ACTIONS(1508), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92461,11 +92599,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24999] = 3, + [25163] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1130), 7, + ACTIONS(1310), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92473,7 +92611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1132), 38, + ACTIONS(1312), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92512,63 +92650,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25053] = 4, - ACTIONS(2700), 1, - anon_sym_DASH_GT, + [25217] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2698), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2696), 29, + ACTIONS(1282), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25109] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1284), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25271] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1126), 7, + ACTIONS(1286), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92576,7 +92713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1128), 38, + ACTIONS(1288), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92615,11 +92752,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25163] = 3, + [25325] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1118), 7, + ACTIONS(1510), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92627,7 +92764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1120), 38, + ACTIONS(1512), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92666,63 +92803,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25217] = 4, - ACTIONS(2706), 1, - anon_sym_DASH_GT, + [25379] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2704), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2702), 29, + ACTIONS(1536), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25273] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1538), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25433] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1114), 7, + ACTIONS(1584), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92730,7 +92866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1116), 38, + ACTIONS(1586), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92769,11 +92905,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25327] = 3, + [25487] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1110), 7, + ACTIONS(1968), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92781,7 +92917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1112), 38, + ACTIONS(1970), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92820,11 +92956,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25381] = 3, + [25541] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1106), 7, + ACTIONS(472), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92832,7 +92968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1108), 38, + ACTIONS(474), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92871,11 +93007,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25435] = 3, + [25595] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1102), 7, + ACTIONS(1576), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92883,7 +93019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1104), 38, + ACTIONS(1578), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92922,11 +93058,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25489] = 3, + [25649] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1206), 7, + ACTIONS(1564), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92934,7 +93070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1208), 38, + ACTIONS(1566), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92973,11 +93109,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25543] = 3, + [25703] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1198), 7, + ACTIONS(1556), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92985,7 +93121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1200), 38, + ACTIONS(1558), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93024,11 +93160,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25597] = 3, + [25757] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(472), 7, + ACTIONS(1560), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93036,7 +93172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(474), 38, + ACTIONS(1562), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93075,11 +93211,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25651] = 3, + [25811] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1098), 7, + ACTIONS(1494), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93087,7 +93223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1100), 38, + ACTIONS(1496), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93126,11 +93262,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25705] = 3, + [25865] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1094), 7, + ACTIONS(1852), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93138,7 +93274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1096), 38, + ACTIONS(1854), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93177,11 +93313,167 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25759] = 3, + [25919] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1090), 7, + ACTIONS(412), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(410), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_else, + [25973] = 5, + ACTIONS(2546), 1, + anon_sym_BANG, + ACTIONS(2722), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(486), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(484), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26031] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2724), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2652), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2648), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26087] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1302), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93189,7 +93481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1092), 38, + ACTIONS(1304), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93228,11 +93520,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25813] = 3, + [26141] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1086), 7, + ACTIONS(1470), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93240,7 +93532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1088), 38, + ACTIONS(1472), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93279,11 +93571,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25867] = 3, + [26195] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1852), 7, + ACTIONS(1462), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93291,7 +93583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1854), 38, + ACTIONS(1464), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93330,63 +93622,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25921] = 4, + [26249] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2640), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2636), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25977] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1082), 7, + ACTIONS(1454), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93394,7 +93634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1084), 38, + ACTIONS(1456), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93433,11 +93673,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26031] = 3, + [26303] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1194), 7, + ACTIONS(1450), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93445,7 +93685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1196), 38, + ACTIONS(1452), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93484,11 +93724,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26085] = 3, + [26357] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1138), 7, + ACTIONS(440), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93496,7 +93736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1140), 38, + ACTIONS(442), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93535,62 +93775,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26139] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(414), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_else, - [26193] = 3, + [26411] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1712), 7, + ACTIONS(1620), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93598,7 +93787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1714), 38, + ACTIONS(1622), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93637,11 +93826,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26247] = 3, + [26465] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1146), 7, + ACTIONS(1446), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93649,7 +93838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1148), 38, + ACTIONS(1448), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93688,11 +93877,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26301] = 3, + [26519] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1174), 7, + ACTIONS(444), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93700,7 +93889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1176), 38, + ACTIONS(446), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93739,11 +93928,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26355] = 3, + [26573] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1182), 7, + ACTIONS(1644), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93751,7 +93940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1184), 38, + ACTIONS(1646), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93790,11 +93979,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26409] = 3, + [26627] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(440), 7, + ACTIONS(1442), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93802,7 +93991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(442), 38, + ACTIONS(1444), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93841,11 +94030,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26463] = 3, + [26681] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1162), 7, + ACTIONS(1856), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93853,7 +94042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1164), 38, + ACTIONS(1858), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93892,62 +94081,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26517] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2712), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2710), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26571] = 3, + [26735] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(444), 7, + ACTIONS(1438), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93955,7 +94093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(446), 38, + ACTIONS(1440), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93994,62 +94132,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26625] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2716), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2714), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26679] = 3, + [26789] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1218), 7, + ACTIONS(1936), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94057,7 +94144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1220), 38, + ACTIONS(1938), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94096,218 +94183,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26733] = 4, - ACTIONS(2722), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2720), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2718), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26789] = 3, + [26843] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2726), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2724), 30, + ACTIONS(1940), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26843] = 4, - ACTIONS(2732), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2730), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2728), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26899] = 4, - ACTIONS(2694), 1, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1942), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26897] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2576), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26955] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1246), 7, + ACTIONS(1648), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94315,7 +94246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1248), 38, + ACTIONS(1650), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94354,11 +94285,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27009] = 3, + [26951] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1258), 7, + ACTIONS(1916), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94366,7 +94297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1260), 38, + ACTIONS(1918), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94405,63 +94336,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27063] = 4, - ACTIONS(2694), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2604), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2602), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27119] = 3, + [27005] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1334), 7, + ACTIONS(1656), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94469,7 +94348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1336), 38, + ACTIONS(1658), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94508,11 +94387,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27173] = 3, + [27059] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1330), 7, + ACTIONS(1434), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94520,7 +94399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1332), 38, + ACTIONS(1436), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94559,13 +94438,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27227] = 4, - ACTIONS(2738), 1, - anon_sym_DASH_GT, + [27113] = 4, + ACTIONS(2726), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2736), 15, + ACTIONS(2582), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94581,7 +94460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2734), 29, + ACTIONS(2580), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94611,11 +94490,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27283] = 3, + [27169] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1294), 7, + ACTIONS(1864), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94623,7 +94502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1296), 38, + ACTIONS(1866), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94662,11 +94541,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27337] = 3, + [27223] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1462), 7, + ACTIONS(1664), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94674,7 +94553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1464), 38, + ACTIONS(1666), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94713,11 +94592,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27391] = 3, + [27277] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1470), 7, + ACTIONS(1430), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94725,7 +94604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1472), 38, + ACTIONS(1432), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94764,13 +94643,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27445] = 4, - ACTIONS(2744), 1, - anon_sym_DASH_GT, + [27331] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2742), 15, + ACTIONS(408), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94786,7 +94663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2740), 29, + ACTIONS(406), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94816,11 +94693,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27501] = 3, + anon_sym_else, + [27385] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1506), 7, + ACTIONS(2730), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2728), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27439] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1688), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94828,7 +94757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1508), 38, + ACTIONS(1690), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94867,11 +94796,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27555] = 3, + [27493] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1544), 7, + ACTIONS(1290), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94879,7 +94808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1546), 38, + ACTIONS(1292), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94918,11 +94847,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27609] = 3, + [27547] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1548), 7, + ACTIONS(1572), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94930,7 +94859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1550), 38, + ACTIONS(1574), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94969,62 +94898,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27663] = 3, + [27601] = 4, + ACTIONS(2732), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1572), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2582), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1574), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27717] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2580), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27657] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1584), 7, + ACTIONS(1696), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95032,7 +94962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1586), 38, + ACTIONS(1698), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95071,11 +95001,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27771] = 3, + [27711] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1604), 7, + ACTIONS(1700), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95083,7 +95013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1606), 38, + ACTIONS(1702), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95122,11 +95052,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27825] = 3, + [27765] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1760), 7, + ACTIONS(1426), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95134,7 +95064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1762), 38, + ACTIONS(1428), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95173,11 +95103,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27879] = 3, + [27819] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1724), 7, + ACTIONS(1704), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95185,7 +95115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1726), 38, + ACTIONS(1706), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95224,11 +95154,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27933] = 3, + [27873] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1278), 7, + ACTIONS(1422), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95236,7 +95166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1280), 38, + ACTIONS(1424), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95275,11 +95205,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27987] = 3, + [27927] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1620), 7, + ACTIONS(1418), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95287,7 +95217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1622), 38, + ACTIONS(1420), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95326,11 +95256,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28041] = 3, + [27981] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1636), 7, + ACTIONS(1186), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95338,7 +95268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1638), 38, + ACTIONS(1188), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95377,11 +95307,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28095] = 3, + [28035] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1322), 7, + ACTIONS(1190), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95389,7 +95319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1324), 38, + ACTIONS(1192), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95428,11 +95358,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28149] = 3, + [28089] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1708), 7, + ACTIONS(1406), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95440,7 +95370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1710), 38, + ACTIONS(1408), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95479,11 +95409,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28203] = 3, + [28143] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1704), 7, + ACTIONS(1402), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95491,7 +95421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1706), 38, + ACTIONS(1404), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95530,7 +95460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28257] = 3, + [28197] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -95581,11 +95511,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28311] = 3, + [28251] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1700), 7, + ACTIONS(1398), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95593,7 +95523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1702), 38, + ACTIONS(1400), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95632,11 +95562,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28365] = 3, + [28305] = 4, + ACTIONS(2666), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1860), 7, + ACTIONS(2582), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2580), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28361] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1394), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95644,7 +95626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1862), 38, + ACTIONS(1396), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95683,11 +95665,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28419] = 3, + [28415] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1940), 7, + ACTIONS(1390), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95695,7 +95677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1942), 38, + ACTIONS(1392), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95734,11 +95716,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28473] = 3, + [28469] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1696), 7, + ACTIONS(1552), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95746,7 +95728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1698), 38, + ACTIONS(1554), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95785,11 +95767,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28527] = 3, + [28523] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1944), 7, + ACTIONS(1386), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95797,7 +95779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1946), 38, + ACTIONS(1388), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95836,11 +95818,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28581] = 3, + [28577] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1270), 7, + ACTIONS(1548), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95848,7 +95830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1272), 38, + ACTIONS(1550), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95887,11 +95869,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28635] = 3, + [28631] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1688), 7, + ACTIONS(1720), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95899,7 +95881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1690), 38, + ACTIONS(1722), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95938,11 +95920,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28689] = 3, + [28685] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1892), 7, + ACTIONS(1378), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95950,7 +95932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1894), 38, + ACTIONS(1380), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95989,11 +95971,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28743] = 3, + [28739] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(1374), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96001,7 +95983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1666), 38, + ACTIONS(1376), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96040,11 +96022,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28797] = 3, + [28793] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1656), 7, + ACTIONS(2736), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2734), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28847] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1242), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96052,7 +96085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1658), 38, + ACTIONS(1244), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96091,11 +96124,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28851] = 3, + [28901] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1864), 7, + ACTIONS(1370), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96103,7 +96136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1866), 38, + ACTIONS(1372), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96142,11 +96175,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28905] = 3, + [28955] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1648), 7, + ACTIONS(1366), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96154,7 +96187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1650), 38, + ACTIONS(1368), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96193,11 +96226,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28959] = 3, + [29009] = 4, + ACTIONS(2742), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(408), 15, + ACTIONS(2740), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96213,7 +96248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(406), 30, + ACTIONS(2738), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96243,12 +96278,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_else, - [29013] = 3, + [29065] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1644), 7, + ACTIONS(1362), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96256,7 +96290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1646), 38, + ACTIONS(1364), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96295,11 +96329,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29067] = 3, + [29119] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1616), 7, + ACTIONS(1756), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96307,7 +96341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1618), 38, + ACTIONS(1758), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96346,11 +96380,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29121] = 3, + [29173] = 4, + ACTIONS(2748), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1498), 7, + ACTIONS(2746), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2744), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29229] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1294), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96358,7 +96444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1500), 38, + ACTIONS(1296), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96397,11 +96483,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29175] = 3, + [29283] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1540), 7, + ACTIONS(1358), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96409,7 +96495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1542), 38, + ACTIONS(1360), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96448,11 +96534,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29229] = 3, + [29337] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1514), 7, + ACTIONS(1354), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96460,7 +96546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1516), 38, + ACTIONS(1356), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96499,11 +96585,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29283] = 3, + [29391] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1510), 7, + ACTIONS(1350), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96511,7 +96597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1512), 38, + ACTIONS(1352), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96550,11 +96636,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29337] = 3, + [29445] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1314), 7, + ACTIONS(1214), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96562,7 +96648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1316), 38, + ACTIONS(1216), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96601,11 +96687,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29391] = 3, + [29499] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1190), 7, + ACTIONS(1138), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96613,7 +96699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1192), 38, + ACTIONS(1140), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96652,11 +96738,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29445] = 3, + [29553] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1142), 7, + ACTIONS(1346), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96664,7 +96750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1144), 38, + ACTIONS(1348), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96703,11 +96789,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29499] = 3, + [29607] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1502), 7, + ACTIONS(1210), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96715,7 +96801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1504), 38, + ACTIONS(1212), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96754,11 +96840,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29553] = 3, + [29661] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1490), 7, + ACTIONS(1828), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96766,7 +96852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1492), 38, + ACTIONS(1830), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96805,11 +96891,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29607] = 3, + [29715] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1414), 7, + ACTIONS(1342), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96817,7 +96903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1416), 38, + ACTIONS(1344), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96856,11 +96942,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29661] = 3, + [29769] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2748), 15, + ACTIONS(2586), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96871,12 +96957,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2746), 30, + ACTIONS(2584), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96888,14 +96976,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -96905,13 +96992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29715] = 3, + [29823] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1122), 7, + ACTIONS(1338), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96919,7 +97005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1124), 38, + ACTIONS(1340), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96958,113 +97044,61 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29769] = 3, + [29877] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1134), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2752), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1136), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29823] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1410), 7, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2750), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1412), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29877] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29930] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2752), 15, + ACTIONS(334), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97080,7 +97114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2750), 29, + ACTIONS(332), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97110,7 +97144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29930] = 3, + [29983] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -97160,11 +97194,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29983] = 3, + [30036] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2371), 15, + ACTIONS(598), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97180,7 +97214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2373), 29, + ACTIONS(596), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97210,7 +97244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30036] = 3, + [30089] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -97260,13 +97294,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30089] = 4, - ACTIONS(2762), 1, - anon_sym_COLON_COLON, + [30142] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(486), 15, + ACTIONS(470), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97282,10 +97314,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(484), 28, + ACTIONS(468), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -97311,11 +97344,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30144] = 3, + [30195] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2766), 15, + ACTIONS(464), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97331,7 +97364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2764), 29, + ACTIONS(462), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97361,11 +97394,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30197] = 3, + [30248] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2770), 15, + ACTIONS(2764), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2762), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30301] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2413), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97381,7 +97464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2768), 29, + ACTIONS(2415), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97411,11 +97494,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30250] = 3, + [30354] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2774), 15, + ACTIONS(2578), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97431,7 +97514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2772), 29, + ACTIONS(2576), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97461,11 +97544,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30303] = 3, + [30407] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2778), 15, + ACTIONS(2582), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97481,7 +97564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2776), 29, + ACTIONS(2580), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97511,11 +97594,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30356] = 3, + [30460] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2782), 15, + ACTIONS(2768), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97531,7 +97614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2780), 29, + ACTIONS(2766), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97561,11 +97644,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30409] = 3, + [30513] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2345), 15, + ACTIONS(474), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97581,7 +97664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2347), 29, + ACTIONS(472), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97611,11 +97694,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30462] = 3, + [30566] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2786), 15, + ACTIONS(2772), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97631,7 +97714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2784), 29, + ACTIONS(2770), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97661,62 +97744,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30515] = 4, - ACTIONS(2792), 1, - anon_sym_RBRACE, + [30619] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2790), 14, - sym_raw_string_literal, - sym_float_literal, + ACTIONS(2407), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2409), 29, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_POUND, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30672] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2776), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2788), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [30570] = 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2774), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30725] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2796), 15, + ACTIONS(2780), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97732,7 +97864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2794), 29, + ACTIONS(2778), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97762,11 +97894,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30623] = 3, + [30778] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(598), 15, + ACTIONS(432), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97782,7 +97914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(596), 29, + ACTIONS(430), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97812,11 +97944,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30676] = 3, + [30831] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2341), 15, + ACTIONS(450), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97832,7 +97964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2343), 29, + ACTIONS(448), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97862,11 +97994,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30729] = 3, + [30884] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2800), 15, + ACTIONS(442), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97882,7 +98014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2798), 29, + ACTIONS(440), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97912,11 +98044,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30782] = 3, + [30937] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2804), 15, + ACTIONS(594), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97932,7 +98064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2802), 29, + ACTIONS(592), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97962,11 +98094,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30835] = 3, + [30990] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(612), 15, + ACTIONS(2784), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97982,7 +98114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(610), 29, + ACTIONS(2782), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98012,11 +98144,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30888] = 3, + [31043] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2788), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2786), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31096] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(422), 15, + ACTIONS(2792), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98032,7 +98214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(420), 29, + ACTIONS(2790), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98062,11 +98244,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30941] = 3, + [31149] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2808), 15, + ACTIONS(420), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98082,7 +98264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2806), 29, + ACTIONS(418), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98112,11 +98294,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30994] = 3, + [31202] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2812), 15, + ACTIONS(2796), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98132,7 +98314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2810), 29, + ACTIONS(2794), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98162,11 +98344,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31047] = 3, + [31255] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(460), 15, + ACTIONS(2800), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98182,7 +98364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(458), 29, + ACTIONS(2798), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98212,11 +98394,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31100] = 3, + [31308] = 4, + ACTIONS(2802), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2816), 15, + ACTIONS(486), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98232,11 +98416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2814), 29, + ACTIONS(484), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -98262,11 +98445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31153] = 3, + [31363] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2820), 15, + ACTIONS(2806), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98282,7 +98465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2818), 29, + ACTIONS(2804), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98312,79 +98495,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31206] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(882), 1, - anon_sym_COLON_COLON, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2822), 1, - sym_identifier, - ACTIONS(2826), 1, - anon_sym_LPAREN, - ACTIONS(2828), 1, - anon_sym_STAR, - ACTIONS(2834), 1, - anon_sym_for, - ACTIONS(2836), 1, - anon_sym_AMP, - ACTIONS(2838), 1, - sym_metavariable, - STATE(1840), 1, - sym_scoped_type_identifier, - STATE(1874), 1, - sym_where_predicate, - STATE(1927), 1, - sym_generic_type, - STATE(2379), 1, - sym_bracketed_type, - STATE(2380), 1, - sym_generic_type_with_turbofish, - STATE(2549), 1, - sym_scoped_identifier, + [31416] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2824), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(2832), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(888), 3, - sym_self, - sym_super, - sym_crate, - STATE(2238), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2830), 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, - [31295] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2393), 15, + ACTIONS(2810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98400,7 +98515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2395), 29, + ACTIONS(2808), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98430,11 +98545,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31348] = 3, + [31469] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2842), 15, + ACTIONS(2814), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98450,7 +98565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2840), 29, + ACTIONS(2812), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98480,62 +98595,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31401] = 4, - ACTIONS(2848), 1, - anon_sym_RBRACE, + [31522] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2846), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2844), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31456] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(474), 15, + ACTIONS(2818), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98551,7 +98615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(472), 29, + ACTIONS(2816), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98581,11 +98645,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31509] = 3, + [31575] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(592), 15, + ACTIONS(2822), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98601,7 +98665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(590), 29, + ACTIONS(2820), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98631,11 +98695,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31562] = 3, + [31628] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(604), 15, + ACTIONS(2826), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2824), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31681] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2830), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98651,7 +98765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(602), 29, + ACTIONS(2828), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98681,11 +98795,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31615] = 3, + [31734] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, + ACTIONS(2834), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2832), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31787] = 4, + ACTIONS(2616), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2610), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98701,11 +98867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2636), 29, + ACTIONS(2608), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -98731,11 +98896,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31668] = 3, + [31842] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2852), 15, + ACTIONS(436), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98751,7 +98916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2850), 29, + ACTIONS(434), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98781,11 +98946,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31721] = 3, + [31895] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2856), 15, + ACTIONS(2838), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98801,7 +98966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2854), 29, + ACTIONS(2836), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98831,11 +98996,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31774] = 3, + [31948] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2860), 15, + ACTIONS(428), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98851,7 +99016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2858), 29, + ACTIONS(426), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98881,11 +99046,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31827] = 3, + [32001] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2864), 15, + ACTIONS(2842), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98901,7 +99066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2862), 29, + ACTIONS(2840), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98931,11 +99096,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31880] = 3, + [32054] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(334), 15, + ACTIONS(2403), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98951,7 +99116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(332), 29, + ACTIONS(2405), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98981,61 +99146,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31933] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2868), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2866), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31986] = 3, + [32107] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(450), 15, + ACTIONS(2696), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99051,7 +99166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(448), 29, + ACTIONS(2692), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99081,61 +99196,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32039] = 3, + [32160] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2872), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2870), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32092] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2876), 15, + ACTIONS(478), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99151,7 +99216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2874), 29, + ACTIONS(476), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99181,11 +99246,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32145] = 3, + [32213] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2880), 15, + ACTIONS(2846), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99201,7 +99266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2878), 29, + ACTIONS(2844), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99231,11 +99296,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32198] = 3, + [32266] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2884), 15, + ACTIONS(616), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99251,7 +99316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2882), 29, + ACTIONS(614), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99281,61 +99346,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32251] = 3, + [32319] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2888), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2886), 29, + ACTIONS(2850), 12, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32304] = 3, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2848), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32372] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2892), 15, + ACTIONS(2854), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99351,7 +99416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2890), 29, + ACTIONS(2852), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99381,11 +99446,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32357] = 3, + [32425] = 5, + ACTIONS(2856), 1, + anon_sym_POUND, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1086), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2441), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2439), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32482] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(434), 15, + ACTIONS(2768), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99401,7 +99518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(432), 29, + ACTIONS(2766), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99431,11 +99548,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32410] = 3, + [32535] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2670), 15, + ACTIONS(2861), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99451,7 +99568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2666), 29, + ACTIONS(2859), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99481,11 +99598,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32463] = 3, + [32588] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2896), 15, + ACTIONS(2865), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99501,7 +99618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2894), 29, + ACTIONS(2863), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99531,61 +99648,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32516] = 3, + [32641] = 4, + ACTIONS(2871), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2900), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2869), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2898), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32569] = 3, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2867), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32696] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2904), 15, + ACTIONS(460), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99601,7 +99719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2902), 29, + ACTIONS(458), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99631,11 +99749,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32622] = 3, + [32749] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2908), 15, + ACTIONS(2875), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99651,7 +99769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2906), 29, + ACTIONS(2873), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99681,11 +99799,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32675] = 3, + [32802] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(886), 1, + anon_sym_COLON_COLON, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2877), 1, + sym_identifier, + ACTIONS(2881), 1, + anon_sym_LPAREN, + ACTIONS(2883), 1, + anon_sym_STAR, + ACTIONS(2889), 1, + anon_sym_for, + ACTIONS(2891), 1, + anon_sym_AMP, + ACTIONS(2893), 1, + sym_metavariable, + STATE(1778), 1, + sym_scoped_type_identifier, + STATE(1907), 1, + sym_where_predicate, + STATE(1948), 1, + sym_generic_type, + STATE(2377), 1, + sym_bracketed_type, + STATE(2378), 1, + sym_generic_type_with_turbofish, + STATE(2461), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(430), 15, + ACTIONS(2879), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(2887), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(2225), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2885), 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, + [32891] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(604), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99701,7 +99887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(428), 29, + ACTIONS(602), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99731,11 +99917,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32728] = 3, + [32944] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2912), 15, + ACTIONS(446), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99751,7 +99937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2910), 29, + ACTIONS(444), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99781,11 +99967,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32781] = 3, + [32997] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(454), 15, + ACTIONS(2897), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99801,7 +99987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(452), 29, + ACTIONS(2895), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99831,11 +100017,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32834] = 3, + [33050] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2916), 15, + ACTIONS(2901), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99851,7 +100037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2914), 29, + ACTIONS(2899), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99881,11 +100067,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32887] = 3, + [33103] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2920), 15, + ACTIONS(2905), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99901,7 +100087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2918), 29, + ACTIONS(2903), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99931,11 +100117,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32940] = 3, + [33156] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(608), 15, + ACTIONS(2909), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99951,7 +100137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(606), 29, + ACTIONS(2907), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99981,11 +100167,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32993] = 3, + [33209] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(886), 1, + anon_sym_COLON_COLON, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2877), 1, + sym_identifier, + ACTIONS(2881), 1, + anon_sym_LPAREN, + ACTIONS(2883), 1, + anon_sym_STAR, + ACTIONS(2889), 1, + anon_sym_for, + ACTIONS(2891), 1, + anon_sym_AMP, + ACTIONS(2893), 1, + sym_metavariable, + STATE(1778), 1, + sym_scoped_type_identifier, + STATE(1907), 1, + sym_where_predicate, + STATE(1948), 1, + sym_generic_type, + STATE(2377), 1, + sym_bracketed_type, + STATE(2378), 1, + sym_generic_type_with_turbofish, + STATE(2461), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(442), 15, + ACTIONS(2887), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(2911), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(2225), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2885), 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, + [33298] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2915), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100001,7 +100255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(440), 29, + ACTIONS(2913), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100031,11 +100285,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33046] = 3, + [33351] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2924), 15, + ACTIONS(2919), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100051,7 +100305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2922), 29, + ACTIONS(2917), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100081,11 +100335,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33099] = 3, + [33404] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2928), 15, + ACTIONS(2923), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100101,7 +100355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2926), 29, + ACTIONS(2921), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100131,11 +100385,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33152] = 3, + [33457] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(438), 15, + ACTIONS(2927), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100151,7 +100405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(436), 29, + ACTIONS(2925), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100181,11 +100435,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33205] = 3, + [33510] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 15, + ACTIONS(2931), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100201,7 +100455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2614), 29, + ACTIONS(2929), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100231,79 +100485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33258] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(882), 1, - anon_sym_COLON_COLON, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2822), 1, - sym_identifier, - ACTIONS(2826), 1, - anon_sym_LPAREN, - ACTIONS(2828), 1, - anon_sym_STAR, - ACTIONS(2834), 1, - anon_sym_for, - ACTIONS(2836), 1, - anon_sym_AMP, - ACTIONS(2838), 1, - sym_metavariable, - STATE(1840), 1, - sym_scoped_type_identifier, - STATE(1874), 1, - sym_where_predicate, - STATE(1927), 1, - sym_generic_type, - STATE(2379), 1, - sym_bracketed_type, - STATE(2380), 1, - sym_generic_type_with_turbofish, - STATE(2549), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2832), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(2930), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(888), 3, - sym_self, - sym_super, - sym_crate, - STATE(2238), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2830), 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, - [33347] = 3, + [33563] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(478), 15, + ACTIONS(2935), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100319,7 +100505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(476), 29, + ACTIONS(2933), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100349,11 +100535,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33400] = 3, + [33616] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(426), 15, + ACTIONS(2939), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100369,7 +100555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(424), 29, + ACTIONS(2937), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100399,13 +100585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33453] = 4, - ACTIONS(2596), 1, - anon_sym_COLON_COLON, + [33669] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 15, + ACTIONS(2943), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100421,10 +100605,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2588), 28, + ACTIONS(2941), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -100450,11 +100635,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33508] = 3, + [33722] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2604), 15, + ACTIONS(2566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100470,7 +100655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2602), 29, + ACTIONS(2564), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100500,11 +100685,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33561] = 3, + [33775] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2934), 15, + ACTIONS(2399), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100520,7 +100705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2932), 29, + ACTIONS(2401), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100550,11 +100735,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33614] = 3, + [33828] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(464), 15, + ACTIONS(424), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100570,7 +100755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(462), 29, + ACTIONS(422), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100600,11 +100785,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33667] = 3, + [33881] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 15, + ACTIONS(2947), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100620,7 +100805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2576), 29, + ACTIONS(2945), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100650,11 +100835,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33720] = 3, + [33934] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2938), 15, + ACTIONS(2951), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100670,7 +100855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2936), 29, + ACTIONS(2949), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100700,11 +100885,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33773] = 3, + [33987] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2942), 15, + ACTIONS(2955), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100720,7 +100905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2940), 29, + ACTIONS(2953), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100750,61 +100935,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33826] = 3, + [34040] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2946), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(2959), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, - sym_metavariable, - ACTIONS(2944), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33879] = 3, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2957), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34093] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2950), 15, + ACTIONS(2963), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100820,7 +101005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2948), 29, + ACTIONS(2961), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100850,11 +101035,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33932] = 3, + [34146] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 15, + ACTIONS(2967), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100870,7 +101055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2952), 29, + ACTIONS(2965), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100900,11 +101085,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33985] = 3, + [34199] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2958), 15, + ACTIONS(2971), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100920,7 +101105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2956), 29, + ACTIONS(2969), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100950,11 +101135,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34038] = 3, + [34252] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(446), 15, + ACTIONS(2975), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -100970,7 +101155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(444), 29, + ACTIONS(2973), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101000,11 +101185,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34091] = 3, + [34305] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2962), 15, + ACTIONS(454), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101020,7 +101205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2960), 29, + ACTIONS(452), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101050,11 +101235,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34144] = 3, + [34358] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 15, + ACTIONS(612), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101070,7 +101255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2964), 29, + ACTIONS(610), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101100,11 +101285,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34197] = 3, + [34411] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(616), 15, + ACTIONS(2979), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101120,7 +101305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(614), 29, + ACTIONS(2977), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101150,11 +101335,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34250] = 3, + [34464] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2970), 15, + ACTIONS(2983), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101170,7 +101355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2968), 29, + ACTIONS(2981), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101200,11 +101385,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34303] = 3, + [34517] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2974), 15, + ACTIONS(2652), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101220,7 +101405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2972), 29, + ACTIONS(2648), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101250,63 +101435,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34356] = 5, - ACTIONS(2976), 1, - anon_sym_POUND, + [34570] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1121), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2485), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2483), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [34413] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2981), 15, + ACTIONS(2987), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101322,7 +101455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2979), 29, + ACTIONS(2985), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101352,11 +101485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34466] = 3, + [34623] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2985), 15, + ACTIONS(2991), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101372,7 +101505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2983), 29, + ACTIONS(2989), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101402,61 +101535,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34519] = 3, + [34676] = 4, + ACTIONS(2997), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2989), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(2995), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2987), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34572] = 3, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2993), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34731] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2993), 15, + ACTIONS(3001), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101472,7 +101606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2991), 29, + ACTIONS(2999), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101502,11 +101636,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34625] = 3, + [34784] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2993), 15, + ACTIONS(3005), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101522,7 +101656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2991), 29, + ACTIONS(3003), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101552,11 +101686,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34678] = 3, + [34837] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2997), 12, + ACTIONS(3009), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -101569,7 +101703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2995), 32, + ACTIONS(3007), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101602,61 +101736,111 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34731] = 3, + [34890] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 12, + ACTIONS(3013), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(3011), 29, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34943] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3017), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, - sym_metavariable, - ACTIONS(2999), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [34784] = 3, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(3015), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34996] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(470), 15, + ACTIONS(3021), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101672,7 +101856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(468), 29, + ACTIONS(3019), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101702,11 +101886,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34837] = 3, + [35049] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3005), 15, + ACTIONS(608), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101722,7 +101906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3003), 29, + ACTIONS(606), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101752,11 +101936,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34890] = 3, + [35102] = 17, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3031), 1, + anon_sym_EQ, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3039), 1, + anon_sym_DOT_DOT, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, + anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3027), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3033), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3037), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3051), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3029), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3049), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3023), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35182] = 7, + ACTIONS(2560), 1, + anon_sym_LBRACE, + ACTIONS(2562), 1, + anon_sym_COLON_COLON, + ACTIONS(3055), 1, + anon_sym_BANG, + STATE(1101), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3009), 15, + ACTIONS(486), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101772,18 +102027,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(3007), 29, + ACTIONS(484), 24, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -101802,24 +102052,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34943] = 3, + [35242] = 20, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3039), 1, + anon_sym_DOT_DOT, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, + anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3059), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_as, + ACTIONS(3063), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3013), 12, + ACTIONS(3027), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3033), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3037), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3051), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3029), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3049), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3057), 7, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3065), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35328] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2995), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(3011), 32, + ACTIONS(2993), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101837,111 +102155,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [34996] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3017), 15, - anon_sym_PLUS, - anon_sym_STAR, + [35380] = 17, + ACTIONS(288), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3035), 1, anon_sym_AMP, + ACTIONS(3039), 1, anon_sym_DOT_DOT, - anon_sym_DASH, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, + ACTIONS(3047), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3015), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35049] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3021), 15, + ACTIONS(3027), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3037), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3029), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(3019), 29, + ACTIONS(3049), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(282), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -101952,11 +102230,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35102] = 17, + [35460] = 17, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3031), 1, - anon_sym_EQ, ACTIONS(3035), 1, anon_sym_AMP, ACTIONS(3039), 1, @@ -101971,6 +102247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, + ACTIONS(3069), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -101995,7 +102273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3023), 19, + ACTIONS(3067), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102015,7 +102293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35182] = 9, + [35540] = 7, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3039), 1, @@ -102025,26 +102303,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3027), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3037), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3029), 3, + ACTIONS(3073), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3057), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3055), 25, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3071), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102070,48 +102346,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35246] = 16, - ACTIONS(3025), 1, + [35600] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2869), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3035), 1, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2867), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [35652] = 9, + ACTIONS(3025), 1, + anon_sym_LBRACK, ACTIONS(3039), 1, anon_sym_DOT_DOT, - ACTIONS(3041), 1, - anon_sym_AMP_AMP, - ACTIONS(3045), 1, - anon_sym_PIPE, - ACTIONS(3047), 1, - anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3057), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3033), 2, - anon_sym_LT, - anon_sym_GT, ACTIONS(3037), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3051), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3049), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3055), 20, + ACTIONS(3077), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3075), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102121,7 +102434,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102132,38 +102450,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35324] = 20, + [35716] = 11, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, anon_sym_AMP, ACTIONS(3039), 1, anon_sym_DOT_DOT, - ACTIONS(3041), 1, - anon_sym_AMP_AMP, - ACTIONS(3043), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3045), 1, - anon_sym_PIPE, - ACTIONS(3047), 1, - anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3033), 2, - anon_sym_LT, - anon_sym_GT, ACTIONS(3037), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -102174,20 +102475,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3049), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3059), 7, + ACTIONS(3077), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3075), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3067), 10, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102198,13 +102507,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35410] = 11, + [35784] = 12, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, anon_sym_AMP, ACTIONS(3039), 1, anon_sym_DOT_DOT, + ACTIONS(3047), 1, + anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, ACTIONS(3), 2, @@ -102223,13 +102534,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3057), 5, + ACTIONS(3077), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3055), 25, + ACTIONS(3075), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102255,20 +102565,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35478] = 15, + [35854] = 16, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, anon_sym_AMP, ACTIONS(3039), 1, anon_sym_DOT_DOT, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, ACTIONS(3045), 1, anon_sym_PIPE, ACTIONS(3047), 1, anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3057), 1, + ACTIONS(3077), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, @@ -102294,7 +102606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3055), 21, + ACTIONS(3075), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102304,7 +102616,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -102316,7 +102627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35554] = 7, + [35932] = 7, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3039), 1, @@ -102329,7 +102640,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3037), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3057), 13, + ACTIONS(3081), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102343,7 +102654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3055), 25, + ACTIONS(3079), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102369,25 +102680,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35614] = 17, - ACTIONS(288), 1, - anon_sym_EQ, + [35992] = 15, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, anon_sym_AMP, ACTIONS(3039), 1, anon_sym_DOT_DOT, - ACTIONS(3041), 1, - anon_sym_AMP_AMP, - ACTIONS(3043), 1, - anon_sym_PIPE_PIPE, ACTIONS(3045), 1, anon_sym_PIPE, ACTIONS(3047), 1, anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -102412,7 +102719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(282), 19, + ACTIONS(3075), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102422,6 +102729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102432,34 +102741,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35694] = 17, + [36068] = 10, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3035), 1, - anon_sym_AMP, ACTIONS(3039), 1, anon_sym_DOT_DOT, - ACTIONS(3041), 1, - anon_sym_AMP_AMP, - ACTIONS(3043), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3045), 1, - anon_sym_PIPE, - ACTIONS(3047), 1, - anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3071), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3033), 2, - anon_sym_LT, - anon_sym_GT, ACTIONS(3037), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -102470,12 +102764,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3049), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3069), 19, + ACTIONS(3077), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3075), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102485,6 +102781,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102495,13 +102797,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35774] = 12, + [36134] = 13, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, anon_sym_AMP, ACTIONS(3039), 1, anon_sym_DOT_DOT, + ACTIONS(3045), 1, + anon_sym_PIPE, ACTIONS(3047), 1, anon_sym_CARET, ACTIONS(3053), 1, @@ -102522,65 +102826,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3057), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(3055), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35844] = 7, - ACTIONS(3025), 1, - anon_sym_LBRACK, - ACTIONS(3039), 1, - anon_sym_DOT_DOT, - ACTIONS(3053), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3037), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 13, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3077), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3073), 25, + ACTIONS(3075), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102606,7 +102856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35904] = 20, + [36206] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -102623,11 +102873,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, @@ -102653,7 +102903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3077), 7, + ACTIONS(3083), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102661,7 +102911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102672,119 +102922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35990] = 17, - ACTIONS(3025), 1, - anon_sym_LBRACK, - ACTIONS(3035), 1, - anon_sym_AMP, - ACTIONS(3039), 1, - anon_sym_DOT_DOT, - ACTIONS(3041), 1, - anon_sym_AMP_AMP, - ACTIONS(3043), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3045), 1, - anon_sym_PIPE, - ACTIONS(3047), 1, - anon_sym_CARET, - ACTIONS(3053), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3027), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3033), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3037), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3051), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3029), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3049), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3079), 19, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36070] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2790), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2788), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [36122] = 8, + [36292] = 8, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3039), 1, @@ -102801,161 +102939,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3057), 10, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3055), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36184] = 7, - ACTIONS(2598), 1, - anon_sym_LBRACE, - ACTIONS(2600), 1, - anon_sym_COLON_COLON, - ACTIONS(3083), 1, - anon_sym_BANG, - STATE(1055), 1, - sym_field_initializer_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(486), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(484), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36244] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2846), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2844), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [36296] = 7, - ACTIONS(3025), 1, - anon_sym_LBRACK, - ACTIONS(3039), 1, - anon_sym_DOT_DOT, - ACTIONS(3053), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3037), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3087), 13, + ACTIONS(3077), 10, anon_sym_PLUS, - anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -102965,9 +102950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3085), 25, + ACTIONS(3075), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102993,25 +102976,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36356] = 13, + [36354] = 17, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, anon_sym_AMP, ACTIONS(3039), 1, anon_sym_DOT_DOT, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, ACTIONS(3045), 1, anon_sym_PIPE, ACTIONS(3047), 1, anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, + ACTIONS(3087), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3033), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3037), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -103022,11 +103014,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3057), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3055), 25, + ACTIONS(3049), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3085), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103036,12 +103029,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103052,19 +103039,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36428] = 10, + [36434] = 17, ACTIONS(3025), 1, anon_sym_LBRACK, + ACTIONS(3035), 1, + anon_sym_AMP, ACTIONS(3039), 1, anon_sym_DOT_DOT, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, + anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, + ACTIONS(3091), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3033), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3037), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -103075,14 +103077,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3057), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3055), 25, + ACTIONS(3049), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3089), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103092,12 +103092,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103108,7 +103102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36494] = 7, + [36514] = 7, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3039), 1, @@ -103121,7 +103115,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3037), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3091), 13, + ACTIONS(3077), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103135,7 +103129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3089), 25, + ACTIONS(3075), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103161,7 +103155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36554] = 17, + [36574] = 17, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -103224,50 +103218,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36634] = 17, + [36654] = 7, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3035), 1, - anon_sym_AMP, ACTIONS(3039), 1, anon_sym_DOT_DOT, - ACTIONS(3041), 1, - anon_sym_AMP_AMP, - ACTIONS(3043), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3045), 1, - anon_sym_PIPE, - ACTIONS(3047), 1, - anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3099), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3027), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3033), 2, - anon_sym_LT, - anon_sym_GT, ACTIONS(3037), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3051), 2, + ACTIONS(3099), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3029), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3049), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3097), 19, + ACTIONS(3097), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103277,6 +103255,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103294,9 +103278,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2453), 1, + ACTIONS(2460), 1, anon_sym_fn, - ACTIONS(2461), 1, + ACTIONS(2468), 1, anon_sym_COLON_COLON, ACTIONS(3101), 1, sym_identifier, @@ -103304,33 +103288,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, ACTIONS(3107), 1, sym_metavariable, - STATE(766), 1, + STATE(761), 1, sym_scoped_type_identifier, - STATE(986), 1, + STATE(828), 1, sym_generic_type, - STATE(1105), 1, + STATE(1109), 1, sym_function_type, - STATE(1191), 1, + STATE(1193), 1, sym_for_lifetimes, - STATE(2387), 1, + STATE(2385), 1, sym_function_modifiers, - STATE(2413), 1, + STATE(2411), 1, sym_scoped_identifier, - STATE(2486), 1, + STATE(2484), 1, sym_bracketed_type, - STATE(2487), 1, + STATE(2485), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2469), 3, + ACTIONS(2476), 3, sym_self, sym_super, sym_crate, @@ -103353,49 +103337,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [36801] = 17, + [36801] = 21, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(93), 1, - aux_sym_string_literal_token1, - ACTIONS(858), 1, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(2460), 1, + anon_sym_fn, + ACTIONS(2468), 1, anon_sym_COLON_COLON, + ACTIONS(3105), 1, + anon_sym_default, + ACTIONS(3107), 1, + sym_metavariable, ACTIONS(3109), 1, sym_identifier, - ACTIONS(3111), 1, - anon_sym_RPAREN, - ACTIONS(3115), 1, - anon_sym_COMMA, - ACTIONS(3119), 1, - sym_metavariable, - STATE(1638), 1, + STATE(764), 1, + sym_scoped_type_identifier, + STATE(842), 1, + sym_generic_type, + STATE(1047), 1, + sym_function_type, + STATE(1193), 1, + sym_for_lifetimes, + STATE(2385), 1, + sym_function_modifiers, + STATE(2411), 1, sym_scoped_identifier, - STATE(2334), 1, + STATE(2484), 1, sym_bracketed_type, - STATE(2530), 1, + STATE(2485), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(95), 2, - anon_sym_true, - anon_sym_false, - STATE(1053), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1894), 2, - sym_meta_item, - sym__literal, - ACTIONS(3117), 3, + STATE(1559), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2476), 3, sym_self, sym_super, sym_crate, - ACTIONS(91), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3113), 19, + ACTIONS(3103), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [36888] = 20, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(886), 1, + anon_sym_COLON_COLON, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2877), 1, + sym_identifier, + ACTIONS(2881), 1, + anon_sym_LPAREN, + ACTIONS(2883), 1, + anon_sym_STAR, + ACTIONS(2889), 1, + anon_sym_for, + ACTIONS(2891), 1, + anon_sym_AMP, + ACTIONS(2893), 1, + sym_metavariable, + STATE(1778), 1, + sym_scoped_type_identifier, + STATE(1805), 1, + sym_where_predicate, + STATE(1948), 1, + sym_generic_type, + STATE(2377), 1, + sym_bracketed_type, + STATE(2378), 1, + sym_generic_type_with_turbofish, + STATE(2461), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2887), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(2225), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2885), 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, + [36973] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2804), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2806), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103413,9 +103501,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - [36880] = 21, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_mutable_specifier, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [37024] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(670), 1, @@ -103424,45 +103525,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(882), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2838), 1, + ACTIONS(2893), 1, sym_metavariable, - ACTIONS(3121), 1, + ACTIONS(3111), 1, sym_identifier, - ACTIONS(3123), 1, + ACTIONS(3113), 1, anon_sym_default, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1330), 1, + STATE(1326), 1, sym_scoped_type_identifier, - STATE(1357), 1, + STATE(1367), 1, sym_generic_type, - STATE(1401), 1, + STATE(1392), 1, sym_function_type, - STATE(2379), 1, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2549), 1, + STATE(2461), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - ACTIONS(2832), 18, + ACTIONS(2887), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103481,7 +103582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [36967] = 21, + [37111] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(670), 1, @@ -103490,45 +103591,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(882), 1, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(2838), 1, + ACTIONS(2893), 1, sym_metavariable, - ACTIONS(3123), 1, + ACTIONS(3113), 1, anon_sym_default, - ACTIONS(3125), 1, + ACTIONS(3115), 1, sym_identifier, - STATE(1194), 1, + STATE(1191), 1, sym_for_lifetimes, - STATE(1328), 1, + STATE(1327), 1, sym_scoped_type_identifier, - STATE(1371), 1, + STATE(1357), 1, sym_generic_type, - STATE(1392), 1, + STATE(1380), 1, sym_function_type, - STATE(2379), 1, + STATE(2352), 1, + sym_function_modifiers, + STATE(2377), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2378), 1, sym_generic_type_with_turbofish, - STATE(2473), 1, - sym_function_modifiers, - STATE(2549), 1, + STATE(2461), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1548), 2, + STATE(1559), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(888), 3, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - ACTIONS(2832), 18, + ACTIONS(2887), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103547,23 +103648,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37054] = 6, - ACTIONS(2594), 1, - anon_sym_BANG, - ACTIONS(2596), 1, + [37198] = 20, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(886), 1, anon_sym_COLON_COLON, - ACTIONS(3127), 1, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2877), 1, sym_identifier, + ACTIONS(2881), 1, + anon_sym_LPAREN, + ACTIONS(2883), 1, + anon_sym_STAR, + ACTIONS(2889), 1, + anon_sym_for, + ACTIONS(2891), 1, + anon_sym_AMP, + ACTIONS(2893), 1, + sym_metavariable, + STATE(1778), 1, + sym_scoped_type_identifier, + STATE(1907), 1, + sym_where_predicate, + STATE(1948), 1, + sym_generic_type, + STATE(2377), 1, + sym_bracketed_type, + STATE(2378), 1, + sym_generic_type_with_turbofish, + STATE(2461), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2887), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + STATE(2225), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2885), 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, + [37283] = 6, + ACTIONS(2614), 1, + anon_sym_BANG, + ACTIONS(2616), 1, + anon_sym_COLON_COLON, + ACTIONS(3117), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2610), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, @@ -103574,7 +103740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2588), 23, + ACTIONS(2608), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -103598,218 +103764,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37111] = 20, + [37340] = 17, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(882), 1, + ACTIONS(93), 1, + aux_sym_string_literal_token1, + ACTIONS(858), 1, anon_sym_COLON_COLON, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2822), 1, + ACTIONS(3119), 1, sym_identifier, - ACTIONS(2826), 1, - anon_sym_LPAREN, - ACTIONS(2828), 1, - anon_sym_STAR, - ACTIONS(2834), 1, - anon_sym_for, - ACTIONS(2836), 1, - anon_sym_AMP, - ACTIONS(2838), 1, - sym_metavariable, - STATE(1840), 1, - sym_scoped_type_identifier, - STATE(1874), 1, - sym_where_predicate, - STATE(1927), 1, - sym_generic_type, - STATE(2379), 1, - sym_bracketed_type, - STATE(2380), 1, - sym_generic_type_with_turbofish, - STATE(2549), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2832), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(888), 3, - sym_self, - sym_super, - sym_crate, - STATE(2238), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2830), 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, - [37196] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(2453), 1, - anon_sym_fn, - ACTIONS(2461), 1, - anon_sym_COLON_COLON, - ACTIONS(3105), 1, - anon_sym_default, - ACTIONS(3107), 1, - sym_metavariable, + ACTIONS(3121), 1, + anon_sym_RPAREN, + ACTIONS(3125), 1, + anon_sym_COMMA, ACTIONS(3129), 1, - sym_identifier, - STATE(761), 1, - sym_scoped_type_identifier, - STATE(983), 1, - sym_generic_type, - STATE(1108), 1, - sym_function_type, - STATE(1191), 1, - sym_for_lifetimes, - STATE(2387), 1, - sym_function_modifiers, - STATE(2413), 1, - sym_scoped_identifier, - STATE(2486), 1, - sym_bracketed_type, - STATE(2487), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1548), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2469), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3103), 18, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_union, - [37283] = 20, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(882), 1, - anon_sym_COLON_COLON, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(2822), 1, - sym_identifier, - ACTIONS(2826), 1, - anon_sym_LPAREN, - ACTIONS(2828), 1, - anon_sym_STAR, - ACTIONS(2834), 1, - anon_sym_for, - ACTIONS(2836), 1, - anon_sym_AMP, - ACTIONS(2838), 1, sym_metavariable, - STATE(1839), 1, - sym_where_predicate, - STATE(1840), 1, - sym_scoped_type_identifier, - STATE(1927), 1, - sym_generic_type, - STATE(2379), 1, + STATE(1623), 1, + sym_scoped_identifier, + STATE(2332), 1, sym_bracketed_type, - STATE(2380), 1, + STATE(2555), 1, sym_generic_type_with_turbofish, - STATE(2549), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2832), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(888), 3, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1046), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1892), 2, + sym_meta_item, + sym__literal, + ACTIONS(3127), 3, sym_self, sym_super, sym_crate, - STATE(2238), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2830), 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, - [37368] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2936), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2938), 32, + ACTIONS(91), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3123), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103827,21 +103824,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_mutable_specifier, - sym_identifier, - sym_self, - sym_super, - sym_crate, [37419] = 3, ACTIONS(3), 2, sym_block_comment, @@ -103897,17 +103881,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, ACTIONS(858), 1, anon_sym_COLON_COLON, - ACTIONS(3109), 1, - sym_identifier, ACTIONS(3119), 1, + sym_identifier, + ACTIONS(3129), 1, sym_metavariable, ACTIONS(3131), 1, anon_sym_RPAREN, - STATE(1638), 1, + STATE(1623), 1, sym_scoped_identifier, - STATE(2334), 1, + STATE(2332), 1, sym_bracketed_type, - STATE(2530), 1, + STATE(2555), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, @@ -103915,13 +103899,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1053), 2, + STATE(1046), 2, sym_string_literal, sym_boolean_literal, - STATE(2281), 2, + STATE(2176), 2, sym_meta_item, sym__literal, - ACTIONS(3117), 3, + ACTIONS(3127), 3, sym_self, sym_super, sym_crate, @@ -103930,7 +103914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3113), 19, + ACTIONS(3123), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103963,13 +103947,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(3139), 1, sym_metavariable, - STATE(1416), 1, + STATE(1409), 1, sym_scoped_identifier, - STATE(1430), 1, + STATE(1446), 1, sym__literal_pattern, - STATE(2370), 1, + STATE(2368), 1, sym_bracketed_type, - STATE(2530), 1, + STATE(2555), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, @@ -103981,7 +103965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1375), 3, + STATE(1391), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, @@ -104023,13 +104007,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(3147), 1, sym_metavariable, - STATE(1405), 1, + STATE(1414), 1, sym_scoped_identifier, - STATE(1455), 1, + STATE(1468), 1, sym__literal_pattern, - STATE(2370), 1, + STATE(2368), 1, sym_bracketed_type, - STATE(2530), 1, + STATE(2555), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, @@ -104041,7 +104025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1375), 3, + STATE(1391), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, @@ -104077,17 +104061,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, ACTIONS(858), 1, anon_sym_COLON_COLON, - ACTIONS(3109), 1, - sym_identifier, ACTIONS(3119), 1, + sym_identifier, + ACTIONS(3129), 1, sym_metavariable, ACTIONS(3149), 1, anon_sym_RPAREN, - STATE(1638), 1, + STATE(1623), 1, sym_scoped_identifier, - STATE(2334), 1, + STATE(2332), 1, sym_bracketed_type, - STATE(2530), 1, + STATE(2555), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, @@ -104095,13 +104079,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1053), 2, + STATE(1046), 2, sym_string_literal, sym_boolean_literal, - STATE(2281), 2, + STATE(2176), 2, sym_meta_item, sym__literal, - ACTIONS(3117), 3, + ACTIONS(3127), 3, sym_self, sym_super, sym_crate, @@ -104110,7 +104094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3113), 19, + ACTIONS(3123), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104130,10 +104114,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37774] = 5, - ACTIONS(2680), 1, + [37774] = 6, + ACTIONS(2546), 1, + anon_sym_BANG, + ACTIONS(3151), 1, + anon_sym_COLON_COLON, + STATE(1101), 1, + sym_field_initializer_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(486), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(484), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37830] = 5, + ACTIONS(2722), 1, anon_sym_COLON_COLON, - ACTIONS(3083), 1, + ACTIONS(3055), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, @@ -104179,17 +104213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37828] = 6, - ACTIONS(2546), 1, + [37884] = 5, + ACTIONS(2672), 1, anon_sym_BANG, - ACTIONS(3151), 1, + ACTIONS(3153), 1, anon_sym_COLON_COLON, - STATE(1055), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(486), 15, + ACTIONS(2610), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104205,7 +104237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(484), 23, + ACTIONS(2608), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -104229,11 +104261,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37884] = 3, + [37937] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2997), 9, + ACTIONS(3157), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -104243,7 +104275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2995), 31, + ACTIONS(3155), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104275,11 +104307,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37933] = 3, + [37986] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3155), 9, + ACTIONS(2826), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -104289,7 +104321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3153), 31, + ACTIONS(2824), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104321,8 +104353,100 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37982] = 23, - ACTIONS(624), 1, + [38035] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3161), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3159), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38084] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2604), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2606), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38133] = 23, + ACTIONS(374), 1, anon_sym_RBRACK, ACTIONS(3025), 1, anon_sym_LBRACK, @@ -104338,19 +104462,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3157), 1, + ACTIONS(3163), 1, anon_sym_SEMI, - ACTIONS(3159), 1, + ACTIONS(3165), 1, anon_sym_COMMA, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - STATE(1957), 1, + STATE(2057), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, @@ -104364,7 +104488,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -104376,7 +104500,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38222] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2588), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2590), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104387,11 +104557,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38071] = 3, + [38271] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3167), 9, + ACTIONS(3009), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -104401,7 +104571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3165), 31, + ACTIONS(3007), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104433,13 +104603,13 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38120] = 4, - ACTIONS(3173), 1, + [38320] = 4, + ACTIONS(3175), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3171), 8, + ACTIONS(3173), 8, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -104448,7 +104618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_AMP, sym_metavariable, - ACTIONS(3169), 31, + ACTIONS(3171), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104480,14 +104650,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38171] = 3, + [38371] = 5, + ACTIONS(2546), 1, + anon_sym_BANG, + ACTIONS(3177), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 16, + ACTIONS(486), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104501,13 +104674,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2612), 24, + ACTIONS(484), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -104526,11 +104698,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38220] = 3, + [38424] = 23, + ACTIONS(624), 1, + anon_sym_RBRACK, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, + anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3059), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_as, + ACTIONS(3063), 1, + anon_sym_EQ, + ACTIONS(3169), 1, + anon_sym_DOT_DOT, + ACTIONS(3179), 1, + anon_sym_SEMI, + ACTIONS(3181), 1, + anon_sym_COMMA, + STATE(1874), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3027), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3033), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3051), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3167), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3029), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3049), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3065), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38513] = 4, + ACTIONS(3183), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3173), 8, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3171), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38564] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 9, + ACTIONS(3187), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -104540,7 +104825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2999), 31, + ACTIONS(3185), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104572,22 +104857,68 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38269] = 15, + [38613] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2596), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2598), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38662] = 15, ACTIONS(77), 1, anon_sym_LT, ACTIONS(93), 1, aux_sym_string_literal_token1, ACTIONS(858), 1, anon_sym_COLON_COLON, - ACTIONS(3109), 1, - sym_identifier, ACTIONS(3119), 1, + sym_identifier, + ACTIONS(3129), 1, sym_metavariable, - STATE(1638), 1, + STATE(1623), 1, sym_scoped_identifier, - STATE(2334), 1, + STATE(2332), 1, sym_bracketed_type, - STATE(2530), 1, + STATE(2555), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, @@ -104595,13 +104926,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1053), 2, + STATE(1046), 2, sym_string_literal, sym_boolean_literal, - STATE(2281), 2, + STATE(2176), 2, sym_meta_item, sym__literal, - ACTIONS(3117), 3, + ACTIONS(3127), 3, sym_self, sym_super, sym_crate, @@ -104610,7 +104941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3113), 19, + ACTIONS(3123), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104630,7 +104961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [38342] = 3, + [38735] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -104676,9 +105007,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38391] = 23, - ACTIONS(378), 1, - anon_sym_RBRACK, + [38784] = 22, + ACTIONS(394), 1, + anon_sym_RPAREN, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -104693,20 +105024,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3175), 1, - anon_sym_SEMI, - ACTIONS(3177), 1, + ACTIONS(3189), 1, anon_sym_COMMA, - STATE(2006), 1, - aux_sym_array_expression_repeat1, + STATE(1884), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -104719,7 +105048,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -104731,7 +105060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104742,68 +105071,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38480] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3181), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + [38870] = 18, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(886), 1, anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(2893), 1, sym_metavariable, - ACTIONS(3179), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, + ACTIONS(3113), 1, anon_sym_default, + ACTIONS(3191), 1, + sym_identifier, + ACTIONS(3193), 1, anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, + STATE(1780), 1, + sym_scoped_type_identifier, + STATE(2377), 1, + sym_bracketed_type, + STATE(2378), 1, + sym_generic_type_with_turbofish, + STATE(2442), 1, + sym_function_modifiers, + STATE(2461), 1, + sym_scoped_identifier, + STATE(2493), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1559), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, + ACTIONS(892), 3, sym_self, sym_super, sym_crate, - [38529] = 4, - ACTIONS(3183), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3171), 8, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3169), 31, + ACTIONS(2887), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104821,28 +105130,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [38580] = 3, + [38948] = 4, + ACTIONS(2650), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 16, + ACTIONS(2652), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104856,13 +105153,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2586), 24, + ACTIONS(2648), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -104881,15 +105177,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38629] = 5, - ACTIONS(2634), 1, - anon_sym_BANG, - ACTIONS(3185), 1, + [38998] = 18, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(886), 1, + anon_sym_COLON_COLON, + ACTIONS(2893), 1, + sym_metavariable, + ACTIONS(3113), 1, + anon_sym_default, + ACTIONS(3195), 1, + sym_identifier, + ACTIONS(3197), 1, + anon_sym_fn, + STATE(1861), 1, + sym_scoped_type_identifier, + STATE(2377), 1, + sym_bracketed_type, + STATE(2378), 1, + sym_generic_type_with_turbofish, + STATE(2413), 1, + sym_function_modifiers, + STATE(2461), 1, + sym_scoped_identifier, + STATE(2493), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1559), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(892), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(2887), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [39076] = 4, + ACTIONS(3153), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 15, + ACTIONS(2610), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104905,7 +105259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2588), 23, + ACTIONS(2608), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -104929,15 +105283,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38682] = 5, - ACTIONS(2546), 1, - anon_sym_BANG, - ACTIONS(3187), 1, + [39126] = 4, + ACTIONS(2724), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(486), 15, + ACTIONS(2652), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104953,7 +105305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(484), 23, + ACTIONS(2648), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -104977,14 +105329,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38735] = 3, + [39176] = 4, + ACTIONS(3199), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 16, + ACTIONS(486), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104998,13 +105351,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2566), 24, + ACTIONS(484), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -105023,42 +105375,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38784] = 4, - ACTIONS(3189), 1, - anon_sym_COLON_COLON, + [39226] = 22, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, + anon_sym_CARET, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3059), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_as, + ACTIONS(3063), 1, + anon_sym_EQ, + ACTIONS(3169), 1, + anon_sym_DOT_DOT, + ACTIONS(3201), 1, + anon_sym_RPAREN, + ACTIONS(3203), 1, + anon_sym_COMMA, + STATE(2123), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(486), 15, + ACTIONS(3027), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3167), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3029), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(484), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105069,166 +105439,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38834] = 18, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(882), 1, - anon_sym_COLON_COLON, - ACTIONS(2838), 1, - sym_metavariable, - ACTIONS(3123), 1, - anon_sym_default, - ACTIONS(3191), 1, - sym_identifier, - ACTIONS(3193), 1, - anon_sym_fn, - STATE(1790), 1, - sym_scoped_type_identifier, - STATE(2379), 1, - sym_bracketed_type, - STATE(2380), 1, - sym_generic_type_with_turbofish, - STATE(2415), 1, - sym_function_modifiers, - STATE(2459), 1, - sym_generic_type, - STATE(2549), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1548), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(888), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2832), 18, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_union, - [38912] = 22, + [39312] = 17, + ACTIONS(288), 1, + anon_sym_EQ, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3035), 1, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3041), 1, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3217), 1, anon_sym_AMP_AMP, - ACTIONS(3043), 1, + ACTIONS(3219), 1, anon_sym_PIPE_PIPE, - ACTIONS(3045), 1, + ACTIONS(3221), 1, anon_sym_PIPE, - ACTIONS(3047), 1, + ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3053), 1, - anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3163), 1, - anon_sym_DOT_DOT, - ACTIONS(3195), 1, - anon_sym_RPAREN, - ACTIONS(3197), 1, - anon_sym_COMMA, - STATE(2123), 1, - aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3027), 2, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3033), 2, + ACTIONS(3209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3051), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3029), 3, + ACTIONS(3227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3049), 4, + ACTIONS(3225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38998] = 4, - ACTIONS(3185), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2590), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2588), 23, + ACTIONS(282), 14, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105239,142 +105497,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39048] = 18, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(882), 1, - anon_sym_COLON_COLON, - ACTIONS(2838), 1, - sym_metavariable, - ACTIONS(3123), 1, - anon_sym_default, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3201), 1, - anon_sym_fn, - STATE(1785), 1, - sym_scoped_type_identifier, - STATE(2379), 1, - sym_bracketed_type, - STATE(2380), 1, - sym_generic_type_with_turbofish, - STATE(2431), 1, - sym_function_modifiers, - STATE(2459), 1, - sym_generic_type, - STATE(2549), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1548), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(888), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(2832), 18, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_union, - [39126] = 4, - ACTIONS(2638), 1, - anon_sym_COLON_COLON, + [39387] = 9, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, + ACTIONS(3205), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2636), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [39176] = 4, - ACTIONS(2708), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2640), 15, - anon_sym_PLUS, + ACTIONS(3207), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3077), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2636), 23, + ACTIONS(3075), 20, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -105391,9 +105547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39226] = 22, - ACTIONS(392), 1, - anon_sym_RPAREN, + [39446] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -105408,18 +105562,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3203), 1, - anon_sym_COMMA, - STATE(1888), 1, - aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -105432,9 +105582,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(3229), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, @@ -105444,7 +105597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105455,7 +105608,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39312] = 20, + [39527] = 21, + ACTIONS(111), 1, + anon_sym_RBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -105470,14 +105625,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, + ACTIONS(3231), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -105490,12 +105647,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3205), 2, - anon_sym_RPAREN, - anon_sym_COMMA, ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, @@ -105505,7 +105659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105516,7 +105670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39393] = 20, + [39610] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -105531,14 +105685,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, + ACTIONS(3231), 1, + anon_sym_SEMI, + ACTIONS(3233), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -105551,12 +105709,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3207), 2, - anon_sym_RPAREN, - anon_sym_COMMA, ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, @@ -105566,7 +105721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105577,58 +105732,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39474] = 21, + [39693] = 17, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3209), 1, - anon_sym_LBRACE, - ACTIONS(3216), 1, + ACTIONS(3087), 1, anon_sym_EQ, - ACTIONS(3220), 1, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3224), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3226), 1, + ACTIONS(3217), 1, anon_sym_AMP_AMP, - ACTIONS(3228), 1, + ACTIONS(3219), 1, anon_sym_PIPE_PIPE, - ACTIONS(3230), 1, + ACTIONS(3221), 1, anon_sym_PIPE, - ACTIONS(3232), 1, + ACTIONS(3223), 1, anon_sym_CARET, - STATE(2117), 1, - aux_sym_let_chain_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3218), 2, + ACTIONS(3209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3222), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3236), 2, + ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3214), 3, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3234), 4, + ACTIONS(3225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3238), 10, + ACTIONS(3085), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105639,58 +105790,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39557] = 21, + [39768] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3035), 1, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3059), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_as, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3041), 1, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3217), 1, anon_sym_AMP_AMP, - ACTIONS(3043), 1, + ACTIONS(3219), 1, anon_sym_PIPE_PIPE, - ACTIONS(3045), 1, + ACTIONS(3221), 1, anon_sym_PIPE, - ACTIONS(3047), 1, + ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3053), 1, - anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3163), 1, - anon_sym_DOT_DOT, - ACTIONS(3240), 1, - anon_sym_SEMI, - ACTIONS(3242), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3027), 2, + ACTIONS(3083), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3033), 2, + ACTIONS(3209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3051), 2, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3207), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3225), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3237), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39849] = 8, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3029), 3, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3049), 4, + ACTIONS(3077), 10, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3075), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105701,58 +105900,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39640] = 21, + [39906] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3216), 1, - anon_sym_EQ, - ACTIONS(3220), 1, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3224), 1, - anon_sym_DOT_DOT, - ACTIONS(3228), 1, + ACTIONS(3219), 1, anon_sym_PIPE_PIPE, - ACTIONS(3230), 1, + ACTIONS(3221), 1, anon_sym_PIPE, - ACTIONS(3232), 1, + ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3244), 1, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3239), 1, anon_sym_LBRACE, + ACTIONS(3244), 1, + anon_sym_DOT_DOT, ACTIONS(3246), 1, anon_sym_AMP_AMP, - STATE(244), 1, - sym_match_block, + STATE(2018), 1, + aux_sym_let_chain_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3218), 2, + ACTIONS(3209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3236), 2, + ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3214), 3, + ACTIONS(3242), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3234), 4, + ACTIONS(3225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3238), 10, + ACTIONS(3237), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105763,8 +105962,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39723] = 21, - ACTIONS(278), 1, + [39989] = 21, + ACTIONS(272), 1, anon_sym_RBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, @@ -105780,15 +105979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3240), 1, + ACTIONS(3231), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -105802,7 +106001,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -105814,7 +106013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105825,44 +106024,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39806] = 7, + [40072] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, + anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3250), 1, + ACTIONS(3059), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_as, + ACTIONS(3063), 1, + anon_sym_EQ, + ACTIONS(3169), 1, anon_sym_DOT_DOT, + ACTIONS(3231), 1, + anon_sym_SEMI, + ACTIONS(3248), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3248), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3087), 13, + ACTIONS(3027), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3167), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3029), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3085), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105873,34 +106086,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39861] = 7, + [40155] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, + anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3250), 1, + ACTIONS(3059), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_as, + ACTIONS(3063), 1, + anon_sym_EQ, + ACTIONS(3169), 1, anon_sym_DOT_DOT, + ACTIONS(3231), 1, + anon_sym_SEMI, + ACTIONS(3250), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3248), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3091), 13, + ACTIONS(3027), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(3051), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3167), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3029), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3049), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3065), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [40238] = 13, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3211), 1, anon_sym_AMP, - anon_sym_DASH, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3221), 1, anon_sym_PIPE, + ACTIONS(3223), 1, anon_sym_CARET, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3205), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3077), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3207), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3089), 20, + ACTIONS(3075), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -105921,7 +106202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39916] = 20, + [40305] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -105936,13 +106217,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, @@ -105956,11 +106237,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3252), 2, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_COMMA, ACTIONS(3029), 3, anon_sym_STAR, @@ -105971,7 +106252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105982,7 +106263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39997] = 21, + [40386] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -105997,16 +106278,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, ACTIONS(3254), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3256), 1, anon_sym_COMMA, ACTIONS(3), 2, @@ -106021,7 +106302,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -106033,7 +106314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106044,55 +106325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40080] = 7, - ACTIONS(3025), 1, - anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_DOT, - ACTIONS(3250), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3248), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3057), 13, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3055), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40135] = 20, + [40469] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -106107,13 +106340,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, @@ -106127,11 +106360,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3258), 2, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_COMMA, ACTIONS(3029), 3, anon_sym_STAR, @@ -106142,7 +106375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106153,119 +106386,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40216] = 21, + [40550] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3035), 1, - anon_sym_AMP, - ACTIONS(3041), 1, - anon_sym_AMP_AMP, - ACTIONS(3043), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3045), 1, - anon_sym_PIPE, - ACTIONS(3047), 1, - anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3163), 1, - anon_sym_DOT_DOT, - ACTIONS(3240), 1, - anon_sym_SEMI, - ACTIONS(3260), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3027), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3033), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3051), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3161), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3029), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3049), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3067), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40299] = 20, - ACTIONS(3025), 1, - anon_sym_LBRACK, - ACTIONS(3035), 1, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3041), 1, + ACTIONS(3217), 1, anon_sym_AMP_AMP, - ACTIONS(3043), 1, + ACTIONS(3219), 1, anon_sym_PIPE_PIPE, - ACTIONS(3045), 1, + ACTIONS(3221), 1, anon_sym_PIPE, - ACTIONS(3047), 1, + ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3053), 1, - anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3244), 1, anon_sym_DOT_DOT, + STATE(87), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3027), 2, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3033), 2, + ACTIONS(3209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3051), 2, + ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3242), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3262), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3029), 3, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3049), 4, + ACTIONS(3225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3237), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106276,58 +106448,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40380] = 21, - ACTIONS(632), 1, - anon_sym_LBRACE, + [40633] = 17, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3216), 1, + ACTIONS(3095), 1, anon_sym_EQ, - ACTIONS(3220), 1, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3224), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3228), 1, + ACTIONS(3217), 1, + anon_sym_AMP_AMP, + ACTIONS(3219), 1, anon_sym_PIPE_PIPE, - ACTIONS(3230), 1, + ACTIONS(3221), 1, anon_sym_PIPE, - ACTIONS(3232), 1, + ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, - anon_sym_AMP_AMP, - STATE(231), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3218), 2, + ACTIONS(3209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3222), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3236), 2, + ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3214), 3, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3234), 4, + ACTIONS(3225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3238), 10, + ACTIONS(3093), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106338,58 +106506,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40463] = 21, + [40708] = 16, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3035), 1, - anon_sym_AMP, - ACTIONS(3041), 1, - anon_sym_AMP_AMP, - ACTIONS(3043), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3045), 1, - anon_sym_PIPE, - ACTIONS(3047), 1, - anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3077), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3211), 1, + anon_sym_AMP, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3240), 1, - anon_sym_SEMI, - ACTIONS(3264), 1, - anon_sym_RBRACE, + ACTIONS(3221), 1, + anon_sym_PIPE, + ACTIONS(3223), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3027), 2, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3033), 2, + ACTIONS(3209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3051), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3029), 3, + ACTIONS(3227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3260), 2, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3049), 4, + ACTIONS(3225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3075), 14, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_as, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106400,7 +106563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40546] = 21, + [40781] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -106415,18 +106578,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3266), 1, - anon_sym_RBRACE, - ACTIONS(3268), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -106439,9 +106598,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(3263), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, @@ -106451,7 +106613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106462,58 +106624,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40629] = 21, + [40862] = 21, ACTIONS(284), 1, anon_sym_LBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3216), 1, - anon_sym_EQ, - ACTIONS(3220), 1, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3224), 1, - anon_sym_DOT_DOT, - ACTIONS(3228), 1, + ACTIONS(3217), 1, + anon_sym_AMP_AMP, + ACTIONS(3219), 1, anon_sym_PIPE_PIPE, - ACTIONS(3230), 1, + ACTIONS(3221), 1, anon_sym_PIPE, - ACTIONS(3232), 1, + ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, - anon_sym_AMP_AMP, - STATE(1092), 1, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3244), 1, + anon_sym_DOT_DOT, + STATE(1091), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3218), 2, + ACTIONS(3209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3236), 2, + ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3214), 3, + ACTIONS(3242), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3234), 4, + ACTIONS(3225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3238), 10, + ACTIONS(3237), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106524,58 +106686,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40712] = 21, + [40945] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3216), 1, - anon_sym_EQ, - ACTIONS(3220), 1, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3224), 1, - anon_sym_DOT_DOT, - ACTIONS(3228), 1, + ACTIONS(3217), 1, + anon_sym_AMP_AMP, + ACTIONS(3219), 1, anon_sym_PIPE_PIPE, - ACTIONS(3230), 1, + ACTIONS(3221), 1, anon_sym_PIPE, - ACTIONS(3232), 1, + ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, - anon_sym_AMP_AMP, - ACTIONS(3270), 1, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3244), 1, + anon_sym_DOT_DOT, + ACTIONS(3265), 1, anon_sym_LBRACE, STATE(60), 1, sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3218), 2, + ACTIONS(3209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3236), 2, + ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3214), 3, + ACTIONS(3242), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3234), 4, + ACTIONS(3225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3238), 10, + ACTIONS(3237), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106586,54 +106748,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40795] = 17, + [41028] = 16, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_DOT, - ACTIONS(3081), 1, - anon_sym_EQ, - ACTIONS(3220), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3228), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3230), 1, + ACTIONS(3039), 1, + anon_sym_DOT_DOT, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3232), 1, + ACTIONS(3047), 1, anon_sym_CARET, - ACTIONS(3246), 1, - anon_sym_AMP_AMP, - ACTIONS(3250), 1, - anon_sym_DOT_DOT, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3077), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3218), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3236), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3037), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3214), 3, + ACTIONS(3051), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3260), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3234), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3079), 14, + ACTIONS(3075), 14, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106644,58 +106805,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40870] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, + [41101] = 7, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3216), 1, - anon_sym_EQ, - ACTIONS(3220), 1, - anon_sym_AMP, - ACTIONS(3224), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3228), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3230), 1, - anon_sym_PIPE, - ACTIONS(3232), 1, - anon_sym_CARET, - ACTIONS(3246), 1, - anon_sym_AMP_AMP, - STATE(1068), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3081), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3218), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3236), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3214), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3234), 4, + ACTIONS(3079), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3238), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106706,46 +106853,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40953] = 9, + [41156] = 21, + ACTIONS(586), 1, + anon_sym_RPAREN, ACTIONS(3025), 1, anon_sym_LBRACK, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, + anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3250), 1, + ACTIONS(3059), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_as, + ACTIONS(3063), 1, + anon_sym_EQ, + ACTIONS(3169), 1, anon_sym_DOT_DOT, + ACTIONS(3267), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3248), 2, + ACTIONS(3033), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3051), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3214), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3057), 8, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3055), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106756,9 +106915,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41012] = 21, - ACTIONS(268), 1, - anon_sym_RBRACE, + [41239] = 21, + ACTIONS(456), 1, + anon_sym_RPAREN, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -106773,16 +106932,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3240), 1, - anon_sym_SEMI, + ACTIONS(3267), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -106795,7 +106954,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -106807,7 +106966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106818,38 +106977,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41095] = 11, + [41322] = 10, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3220), 1, - anon_sym_AMP, - ACTIONS(3250), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3236), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3214), 3, + ACTIONS(3227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3057), 5, + ACTIONS(3077), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3055), 20, + ACTIONS(3075), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -106870,49 +107028,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41158] = 12, + [41383] = 17, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3220), 1, + ACTIONS(3069), 1, + anon_sym_EQ, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3232), 1, - anon_sym_CARET, - ACTIONS(3250), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, + ACTIONS(3217), 1, + anon_sym_AMP_AMP, + ACTIONS(3219), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3221), 1, + anon_sym_PIPE, + ACTIONS(3223), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3236), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3209), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3214), 3, + ACTIONS(3227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3057), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(3055), 20, + ACTIONS(3225), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3067), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [41458] = 21, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3059), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_as, + ACTIONS(3211), 1, + anon_sym_AMP, + ACTIONS(3217), 1, anon_sym_AMP_AMP, + ACTIONS(3219), 1, anon_sym_PIPE_PIPE, + ACTIONS(3221), 1, + anon_sym_PIPE, + ACTIONS(3223), 1, + anon_sym_CARET, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3244), 1, + anon_sym_DOT_DOT, + ACTIONS(3269), 1, + anon_sym_LBRACE, + STATE(1077), 1, + sym_match_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3205), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3209), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3242), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3207), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3237), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106923,7 +107148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41223] = 20, + [41541] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -106938,14 +107163,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, + ACTIONS(3271), 1, + anon_sym_RBRACE, + ACTIONS(3273), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -106958,12 +107187,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3272), 2, - anon_sym_RBRACE, - anon_sym_COMMA, ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, @@ -106973,7 +107199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106984,45 +107210,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41304] = 17, + [41624] = 17, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3031), 1, anon_sym_EQ, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3220), 1, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3228), 1, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3217), 1, + anon_sym_AMP_AMP, + ACTIONS(3219), 1, anon_sym_PIPE_PIPE, - ACTIONS(3230), 1, + ACTIONS(3221), 1, anon_sym_PIPE, - ACTIONS(3232), 1, + ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, - anon_sym_AMP_AMP, - ACTIONS(3250), 1, - anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3218), 2, + ACTIONS(3209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3236), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3214), 3, + ACTIONS(3227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3234), 4, + ACTIONS(3225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -107042,9 +107268,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41379] = 21, - ACTIONS(418), 1, - anon_sym_RPAREN, + [41699] = 21, + ACTIONS(264), 1, + anon_sym_RBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -107059,16 +107285,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3274), 1, - anon_sym_COMMA, + ACTIONS(3231), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -107081,7 +107307,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -107093,7 +107319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107104,57 +107330,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41462] = 20, + [41782] = 17, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3035), 1, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3091), 1, + anon_sym_EQ, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3041), 1, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3217), 1, anon_sym_AMP_AMP, - ACTIONS(3043), 1, + ACTIONS(3219), 1, anon_sym_PIPE_PIPE, - ACTIONS(3045), 1, + ACTIONS(3221), 1, anon_sym_PIPE, - ACTIONS(3047), 1, + ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3053), 1, - anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3163), 1, - anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3027), 2, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3033), 2, + ACTIONS(3209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3051), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3276), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3029), 3, + ACTIONS(3227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3049), 4, + ACTIONS(3225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3089), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107165,9 +107388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41543] = 21, - ACTIONS(272), 1, - anon_sym_RBRACE, + [41857] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -107182,16 +107403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3240), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -107204,9 +107423,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(3275), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, @@ -107216,7 +107438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107227,58 +107449,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41626] = 21, + [41938] = 21, ACTIONS(15), 1, anon_sym_LBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3216), 1, - anon_sym_EQ, - ACTIONS(3220), 1, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3224), 1, - anon_sym_DOT_DOT, - ACTIONS(3228), 1, + ACTIONS(3217), 1, + anon_sym_AMP_AMP, + ACTIONS(3219), 1, anon_sym_PIPE_PIPE, - ACTIONS(3230), 1, + ACTIONS(3221), 1, anon_sym_PIPE, - ACTIONS(3232), 1, + ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, - anon_sym_AMP_AMP, - STATE(80), 1, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3244), 1, + anon_sym_DOT_DOT, + STATE(69), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3218), 2, + ACTIONS(3209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3236), 2, + ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3214), 3, + ACTIONS(3242), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3234), 4, + ACTIONS(3225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3238), 10, + ACTIONS(3237), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107289,7 +107511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41709] = 21, + [42021] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -107304,18 +107526,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3240), 1, - anon_sym_SEMI, - ACTIONS(3278), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -107328,9 +107546,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(3277), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, @@ -107340,7 +107561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107351,21 +107572,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41792] = 16, + [42102] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3039), 1, - anon_sym_DOT_DOT, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, ACTIONS(3045), 1, anon_sym_PIPE, ACTIONS(3047), 1, anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3057), 1, + ACTIONS(3059), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_as, + ACTIONS(3063), 1, anon_sym_EQ, + ACTIONS(3169), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -107375,15 +107604,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3037), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3280), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, + ACTIONS(3167), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3279), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, @@ -107393,11 +107622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3055), 14, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_as, - anon_sym_PIPE_PIPE, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107408,57 +107633,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41865] = 20, + [42183] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3035), 1, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3059), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_as, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3041), 1, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3217), 1, anon_sym_AMP_AMP, - ACTIONS(3043), 1, + ACTIONS(3219), 1, anon_sym_PIPE_PIPE, - ACTIONS(3045), 1, + ACTIONS(3221), 1, anon_sym_PIPE, - ACTIONS(3047), 1, + ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3053), 1, - anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3163), 1, - anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3027), 2, + ACTIONS(3057), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3033), 2, + ACTIONS(3209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3051), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3029), 3, + ACTIONS(3227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3049), 4, + ACTIONS(3225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3237), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107469,52 +107694,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41946] = 16, + [42264] = 15, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3057), 1, + ACTIONS(3077), 1, anon_sym_EQ, - ACTIONS(3220), 1, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3230), 1, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3221), 1, anon_sym_PIPE, - ACTIONS(3232), 1, + ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, - anon_sym_AMP_AMP, - ACTIONS(3250), 1, - anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3218), 2, + ACTIONS(3209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3236), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3214), 3, + ACTIONS(3227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3234), 4, + ACTIONS(3225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3055), 15, + ACTIONS(3075), 16, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -107526,57 +107750,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42019] = 20, + [42335] = 7, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3035), 1, - anon_sym_AMP, - ACTIONS(3041), 1, - anon_sym_AMP_AMP, - ACTIONS(3043), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3045), 1, - anon_sym_PIPE, - ACTIONS(3047), 1, - anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3027), 2, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3099), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3033), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3051), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3285), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3029), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3049), 4, + ACTIONS(3097), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107587,52 +107798,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42100] = 15, + [42390] = 11, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3057), 1, - anon_sym_EQ, - ACTIONS(3220), 1, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3230), 1, - anon_sym_PIPE, - ACTIONS(3232), 1, - anon_sym_CARET, - ACTIONS(3250), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3218), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3236), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3214), 3, + ACTIONS(3227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3055), 16, + ACTIONS(3077), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3075), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107643,47 +107850,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42171] = 10, + [42453] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, + anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3250), 1, + ACTIONS(3059), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_as, + ACTIONS(3063), 1, + anon_sym_EQ, + ACTIONS(3169), 1, anon_sym_DOT_DOT, + ACTIONS(3239), 1, + anon_sym_EQ_GT, + ACTIONS(3281), 1, + anon_sym_AMP_AMP, + STATE(2026), 1, + aux_sym_let_chain_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3236), 2, + ACTIONS(3033), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3214), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3057), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3055), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107694,54 +107912,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42232] = 17, + [42536] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3283), 1, + sym_identifier, + ACTIONS(3285), 1, + anon_sym_LBRACE, + ACTIONS(3287), 1, + anon_sym_RBRACE, + ACTIONS(3289), 1, + anon_sym_STAR, + ACTIONS(3293), 1, + anon_sym_COMMA, + ACTIONS(3295), 1, + anon_sym_COLON_COLON, + ACTIONS(3299), 1, + sym_metavariable, + STATE(1719), 1, + sym_scoped_identifier, + STATE(2332), 1, + sym_bracketed_type, + STATE(2555), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3297), 3, + sym_self, + sym_super, + sym_crate, + STATE(1891), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3291), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [42607] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_DOT, - ACTIONS(3071), 1, - anon_sym_EQ, - ACTIONS(3220), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3228), 1, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, anon_sym_PIPE_PIPE, - ACTIONS(3230), 1, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3232), 1, + ACTIONS(3047), 1, anon_sym_CARET, - ACTIONS(3246), 1, - anon_sym_AMP_AMP, - ACTIONS(3250), 1, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3059), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_as, + ACTIONS(3063), 1, + anon_sym_EQ, + ACTIONS(3169), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3218), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3236), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3214), 3, + ACTIONS(3301), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3234), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3069), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107752,7 +108029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42307] = 21, + [42688] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -107767,18 +108044,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3287), 1, + ACTIONS(3231), 1, + anon_sym_SEMI, + ACTIONS(3303), 1, anon_sym_RBRACE, - ACTIONS(3289), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -107791,7 +108068,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -107803,7 +108080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107814,58 +108091,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42390] = 21, + [42771] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, + anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3216), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3220), 1, - anon_sym_AMP, - ACTIONS(3224), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3228), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3230), 1, - anon_sym_PIPE, - ACTIONS(3232), 1, - anon_sym_CARET, - ACTIONS(3246), 1, - anon_sym_AMP_AMP, - ACTIONS(3291), 1, - anon_sym_LBRACE, - STATE(1103), 1, - sym_match_block, + ACTIONS(3267), 1, + anon_sym_COMMA, + ACTIONS(3305), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3218), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3236), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3214), 3, + ACTIONS(3167), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3234), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3238), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107876,7 +108153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42473] = 21, + [42854] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -107891,18 +108168,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3274), 1, - anon_sym_COMMA, - ACTIONS(3293), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -107915,9 +108188,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(3307), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, @@ -107927,7 +108203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107938,40 +108214,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42556] = 13, + [42935] = 7, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3220), 1, - anon_sym_AMP, - ACTIONS(3230), 1, - anon_sym_PIPE, - ACTIONS(3232), 1, - anon_sym_CARET, - ACTIONS(3250), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3236), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3057), 3, + ACTIONS(3077), 13, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3214), 3, - anon_sym_STAR, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3055), 20, + ACTIONS(3075), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -107992,7 +108262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42623] = 21, + [42990] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -108007,18 +108277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3240), 1, - anon_sym_SEMI, - ACTIONS(3295), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -108031,9 +108297,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(3309), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, @@ -108043,7 +108312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108054,7 +108323,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42706] = 20, + [43071] = 21, + ACTIONS(276), 1, + anon_sym_RBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -108069,14 +108340,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, + ACTIONS(3231), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -108089,12 +108362,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3297), 2, - anon_sym_RBRACE, - anon_sym_COMMA, ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, @@ -108104,7 +108374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108115,58 +108385,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42787] = 21, + [43154] = 7, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3035), 1, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3073), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3043), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3045), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(3047), 1, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3071), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [43209] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(3025), 1, + anon_sym_LBRACK, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3211), 1, + anon_sym_AMP, + ACTIONS(3217), 1, + anon_sym_AMP_AMP, + ACTIONS(3219), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3221), 1, + anon_sym_PIPE, + ACTIONS(3223), 1, + anon_sym_CARET, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3244), 1, anon_sym_DOT_DOT, - ACTIONS(3209), 1, - anon_sym_EQ_GT, - ACTIONS(3299), 1, - anon_sym_AMP_AMP, - STATE(2028), 1, - aux_sym_let_chain_repeat1, + STATE(1121), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3027), 2, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3033), 2, + ACTIONS(3209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3051), 2, + ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3242), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3029), 3, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3049), 4, + ACTIONS(3225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3237), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108177,7 +108495,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42870] = 20, + [43292] = 21, + ACTIONS(268), 1, + anon_sym_RBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -108192,14 +108512,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, + ACTIONS(3231), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -108212,12 +108534,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3301), 2, - anon_sym_RBRACE, - anon_sym_COMMA, ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, @@ -108227,7 +108546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108238,54 +108557,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42951] = 17, - ACTIONS(288), 1, - anon_sym_EQ, + [43375] = 21, + ACTIONS(632), 1, + anon_sym_LBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3220), 1, + ACTIONS(3059), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_as, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3228), 1, + ACTIONS(3217), 1, + anon_sym_AMP_AMP, + ACTIONS(3219), 1, anon_sym_PIPE_PIPE, - ACTIONS(3230), 1, + ACTIONS(3221), 1, anon_sym_PIPE, - ACTIONS(3232), 1, + ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, - anon_sym_AMP_AMP, - ACTIONS(3250), 1, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3244), 1, anon_sym_DOT_DOT, + STATE(232), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3218), 2, + ACTIONS(3209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3236), 2, + ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3242), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3214), 3, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3234), 4, + ACTIONS(3225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(282), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3237), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108296,44 +108619,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43026] = 7, + [43458] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, + anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3250), 1, + ACTIONS(3059), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_as, + ACTIONS(3063), 1, + anon_sym_EQ, + ACTIONS(3169), 1, anon_sym_DOT_DOT, + ACTIONS(3231), 1, + anon_sym_SEMI, + ACTIONS(3311), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3248), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3075), 13, + ACTIONS(3027), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3167), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3029), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3073), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108344,54 +108681,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43081] = 17, + [43541] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_DOT, - ACTIONS(3099), 1, - anon_sym_EQ, - ACTIONS(3220), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3228), 1, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, anon_sym_PIPE_PIPE, - ACTIONS(3230), 1, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3232), 1, + ACTIONS(3047), 1, anon_sym_CARET, - ACTIONS(3246), 1, - anon_sym_AMP_AMP, - ACTIONS(3250), 1, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3059), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_as, + ACTIONS(3063), 1, + anon_sym_EQ, + ACTIONS(3169), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3218), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3236), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3214), 3, + ACTIONS(3313), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3234), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3097), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108402,45 +108742,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43156] = 8, + [43622] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3250), 1, + ACTIONS(3059), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_as, + ACTIONS(3211), 1, + anon_sym_AMP, + ACTIONS(3217), 1, + anon_sym_AMP_AMP, + ACTIONS(3219), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3221), 1, + anon_sym_PIPE, + ACTIONS(3223), 1, + anon_sym_CARET, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3244), 1, anon_sym_DOT_DOT, + ACTIONS(3315), 1, + anon_sym_LBRACE, + STATE(237), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3248), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3214), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3057), 10, + ACTIONS(3205), 2, anon_sym_PLUS, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(3209), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3055), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3242), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3207), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3237), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108451,9 +108804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43213] = 21, - ACTIONS(113), 1, - anon_sym_RBRACE, + [43705] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -108468,16 +108819,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3240), 1, + ACTIONS(3231), 1, anon_sym_SEMI, + ACTIONS(3317), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -108490,7 +108843,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -108502,7 +108855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108513,58 +108866,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43296] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, + [43788] = 12, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3216), 1, - anon_sym_EQ, - ACTIONS(3220), 1, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3224), 1, + ACTIONS(3215), 1, anon_sym_DOT_DOT, - ACTIONS(3228), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3230), 1, - anon_sym_PIPE, - ACTIONS(3232), 1, + ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, - anon_sym_AMP_AMP, - STATE(67), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3218), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3222), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3236), 2, + ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3214), 3, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3234), 4, + ACTIONS(3077), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(3075), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3238), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108575,8 +108919,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43379] = 21, - ACTIONS(105), 1, + [43853] = 21, + ACTIONS(262), 1, anon_sym_RBRACE, ACTIONS(3025), 1, anon_sym_LBRACK, @@ -108592,15 +108936,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3240), 1, + ACTIONS(3231), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -108614,7 +108958,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -108626,7 +108970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108637,53 +108981,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43462] = 16, + [43936] = 21, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_DOT, - ACTIONS(3057), 1, - anon_sym_EQ, - ACTIONS(3220), 1, + ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3230), 1, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, anon_sym_PIPE, - ACTIONS(3232), 1, + ACTIONS(3047), 1, anon_sym_CARET, - ACTIONS(3250), 1, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3059), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_as, + ACTIONS(3063), 1, + anon_sym_EQ, + ACTIONS(3169), 1, anon_sym_DOT_DOT, + ACTIONS(3319), 1, + anon_sym_RPAREN, + ACTIONS(3321), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3218), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3236), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3280), 2, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - ACTIONS(3214), 3, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3234), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3055), 14, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_as, - anon_sym_PIPE_PIPE, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108694,9 +109043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43535] = 21, - ACTIONS(456), 1, - anon_sym_RPAREN, + [44019] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -108711,16 +109058,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3274), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -108733,9 +109078,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(3323), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, @@ -108745,7 +109093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108756,57 +109104,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43618] = 20, + [44100] = 16, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3216), 1, + ACTIONS(3077), 1, anon_sym_EQ, - ACTIONS(3220), 1, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3228), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3230), 1, + ACTIONS(3215), 1, + anon_sym_DOT_DOT, + ACTIONS(3217), 1, + anon_sym_AMP_AMP, + ACTIONS(3221), 1, anon_sym_PIPE, - ACTIONS(3232), 1, + ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, - anon_sym_AMP_AMP, - ACTIONS(3250), 1, - anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3059), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3212), 2, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3218), 2, + ACTIONS(3209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3236), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3214), 3, + ACTIONS(3227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3234), 4, + ACTIONS(3225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3238), 10, + ACTIONS(3075), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108817,113 +109161,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43699] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3303), 1, - sym_identifier, - ACTIONS(3305), 1, + [44173] = 21, + ACTIONS(632), 1, anon_sym_LBRACE, - ACTIONS(3307), 1, - anon_sym_RBRACE, - ACTIONS(3309), 1, - anon_sym_STAR, - ACTIONS(3313), 1, - anon_sym_COMMA, - ACTIONS(3315), 1, - anon_sym_COLON_COLON, - ACTIONS(3319), 1, - sym_metavariable, - STATE(1745), 1, - sym_scoped_identifier, - STATE(2334), 1, - sym_bracketed_type, - STATE(2530), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3317), 3, - sym_self, - sym_super, - sym_crate, - STATE(1862), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3311), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [43770] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3216), 1, - anon_sym_EQ, - ACTIONS(3220), 1, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3228), 1, + ACTIONS(3217), 1, + anon_sym_AMP_AMP, + ACTIONS(3219), 1, anon_sym_PIPE_PIPE, - ACTIONS(3230), 1, + ACTIONS(3221), 1, anon_sym_PIPE, - ACTIONS(3232), 1, + ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, - anon_sym_AMP_AMP, - ACTIONS(3250), 1, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3244), 1, anon_sym_DOT_DOT, + STATE(226), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3077), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3212), 2, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3218), 2, + ACTIONS(3209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3236), 2, + ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3242), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3214), 3, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3234), 4, + ACTIONS(3225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3238), 10, + ACTIONS(3237), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108934,7 +109223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43851] = 21, + [44256] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -108949,18 +109238,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3240), 1, - anon_sym_SEMI, - ACTIONS(3321), 1, - anon_sym_RBRACE, + ACTIONS(3267), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -108973,7 +109260,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -108985,7 +109272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108996,7 +109283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43934] = 20, + [44336] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -109011,14 +109298,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, + ACTIONS(3325), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -109031,12 +109320,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3323), 2, - anon_sym_RPAREN, - anon_sym_COMMA, ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, @@ -109046,7 +109332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109057,58 +109343,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44015] = 21, - ACTIONS(632), 1, - anon_sym_LBRACE, + [44416] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, + ACTIONS(3035), 1, + anon_sym_AMP, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, + ACTIONS(3043), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3045), 1, + anon_sym_PIPE, + ACTIONS(3047), 1, + anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3216), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3220), 1, - anon_sym_AMP, - ACTIONS(3224), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3228), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3230), 1, - anon_sym_PIPE, - ACTIONS(3232), 1, - anon_sym_CARET, - ACTIONS(3246), 1, - anon_sym_AMP_AMP, - STATE(242), 1, - sym_block, + ACTIONS(3327), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3212), 2, + ACTIONS(3027), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3218), 2, + ACTIONS(3033), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3236), 2, + ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3214), 3, + ACTIONS(3167), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3234), 4, + ACTIONS(3049), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3238), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109119,9 +109403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44098] = 21, - ACTIONS(111), 1, - anon_sym_RBRACE, + [44496] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -109136,15 +109418,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3240), 1, + ACTIONS(3329), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -109158,7 +109440,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -109170,7 +109452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109181,65 +109463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44181] = 17, - ACTIONS(3025), 1, - anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_DOT, - ACTIONS(3095), 1, - anon_sym_EQ, - ACTIONS(3220), 1, - anon_sym_AMP, - ACTIONS(3228), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3230), 1, - anon_sym_PIPE, - ACTIONS(3232), 1, - anon_sym_CARET, - ACTIONS(3246), 1, - anon_sym_AMP_AMP, - ACTIONS(3250), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3212), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3218), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3236), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3248), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3214), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3093), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [44256] = 20, + [44576] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -109254,15 +109478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3325), 1, + ACTIONS(3331), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -109276,7 +109500,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -109288,7 +109512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109299,7 +109523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44336] = 20, + [44656] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -109314,15 +109538,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3327), 1, + ACTIONS(3333), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -109336,7 +109560,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -109348,7 +109572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109359,61 +109583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44416] = 14, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3303), 1, - sym_identifier, - ACTIONS(3305), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_STAR, - ACTIONS(3315), 1, - anon_sym_COLON_COLON, - ACTIONS(3319), 1, - sym_metavariable, - ACTIONS(3329), 1, - anon_sym_RBRACE, - STATE(1745), 1, - sym_scoped_identifier, - STATE(2334), 1, - sym_bracketed_type, - STATE(2530), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3317), 3, - sym_self, - sym_super, - sym_crate, - STATE(2196), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3311), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [44484] = 20, + [44736] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -109428,15 +109598,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3331), 1, + ACTIONS(3335), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -109450,7 +109620,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -109462,7 +109632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109473,7 +109643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44564] = 20, + [44816] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -109488,15 +109658,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3333), 1, + ACTIONS(3337), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -109510,7 +109680,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -109522,7 +109692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109533,7 +109703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44644] = 20, + [44896] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -109548,16 +109718,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3335), 1, - anon_sym_COMMA, + ACTIONS(3339), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -109570,7 +109740,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -109582,7 +109752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109593,7 +109763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44724] = 20, + [44976] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -109608,16 +109778,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3337), 1, - anon_sym_COMMA, + ACTIONS(3231), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -109630,7 +109800,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -109642,7 +109812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109653,7 +109823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44804] = 20, + [45056] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -109668,15 +109838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3339), 1, + ACTIONS(3341), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -109690,7 +109860,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -109702,7 +109872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109713,7 +109883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44884] = 20, + [45136] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -109728,16 +109898,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3341), 1, - anon_sym_RBRACK, + ACTIONS(3343), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -109750,7 +109920,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -109762,7 +109932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109773,7 +109943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44964] = 20, + [45216] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -109788,15 +109958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3343), 1, + ACTIONS(3345), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -109810,7 +109980,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -109822,7 +109992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109833,13 +110003,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45044] = 20, + [45296] = 19, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3041), 1, - anon_sym_AMP_AMP, ACTIONS(3043), 1, anon_sym_PIPE_PIPE, ACTIONS(3045), 1, @@ -109848,16 +110016,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3345), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -109870,9 +110036,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(3347), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, @@ -109882,7 +110051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109893,7 +110062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45124] = 20, + [45374] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -109908,15 +110077,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3240), 1, + ACTIONS(3349), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -109930,7 +110099,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -109942,7 +110111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109953,7 +110122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45204] = 20, + [45454] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -109968,15 +110137,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3347), 1, + ACTIONS(3351), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -109990,7 +110159,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -110002,7 +110171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110013,7 +110182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45284] = 20, + [45534] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -110028,16 +110197,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3349), 1, - anon_sym_SEMI, + ACTIONS(3353), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -110050,7 +110219,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -110062,7 +110231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110073,7 +110242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45364] = 20, + [45614] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -110088,15 +110257,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3351), 1, + ACTIONS(3355), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, @@ -110110,7 +110279,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -110122,66 +110291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [45444] = 19, - ACTIONS(3025), 1, - anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3216), 1, - anon_sym_EQ, - ACTIONS(3220), 1, - anon_sym_AMP, - ACTIONS(3224), 1, - anon_sym_DOT_DOT, - ACTIONS(3228), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3230), 1, - anon_sym_PIPE, - ACTIONS(3232), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3212), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3218), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3236), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3353), 2, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - ACTIONS(3214), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3238), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110192,11 +110302,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45522] = 19, + [45694] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, anon_sym_AMP, + ACTIONS(3041), 1, + anon_sym_AMP_AMP, ACTIONS(3043), 1, anon_sym_PIPE_PIPE, ACTIONS(3045), 1, @@ -110205,14 +110317,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, + ACTIONS(3357), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -110225,12 +110339,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3353), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, @@ -110240,7 +110351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110251,7 +110362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45600] = 20, + [45774] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -110266,16 +110377,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3355), 1, - anon_sym_RBRACK, + ACTIONS(3359), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -110288,7 +110399,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -110300,7 +110411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110311,7 +110422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45680] = 20, + [45854] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -110326,16 +110437,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3357), 1, - anon_sym_SEMI, + ACTIONS(3361), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -110348,7 +110459,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -110360,7 +110471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110371,7 +110482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45760] = 20, + [45934] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -110386,15 +110497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3359), 1, + ACTIONS(3363), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -110408,7 +110519,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -110420,7 +110531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110431,7 +110542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45840] = 20, + [46014] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -110446,16 +110557,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3361), 1, - anon_sym_SEMI, + ACTIONS(3365), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -110468,7 +110579,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -110480,7 +110591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110491,7 +110602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45920] = 20, + [46094] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -110506,16 +110617,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3363), 1, - anon_sym_SEMI, + ACTIONS(3367), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -110528,7 +110639,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -110540,7 +110651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110551,7 +110662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46000] = 20, + [46174] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -110566,16 +110677,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3365), 1, - anon_sym_RBRACK, + ACTIONS(3369), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -110588,7 +110699,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -110600,7 +110711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110611,61 +110722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46080] = 14, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3303), 1, - sym_identifier, - ACTIONS(3305), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_STAR, - ACTIONS(3315), 1, - anon_sym_COLON_COLON, - ACTIONS(3319), 1, - sym_metavariable, - ACTIONS(3367), 1, - anon_sym_RBRACE, - STATE(1745), 1, - sym_scoped_identifier, - STATE(2334), 1, - sym_bracketed_type, - STATE(2530), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3317), 3, - sym_self, - sym_super, - sym_crate, - STATE(2196), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3311), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [46148] = 20, + [46254] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -110680,16 +110737,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3369), 1, - anon_sym_COMMA, + ACTIONS(3371), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -110702,7 +110759,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -110714,7 +110771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110725,7 +110782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46228] = 20, + [46334] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -110740,15 +110797,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3371), 1, + ACTIONS(3373), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -110762,7 +110819,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -110774,7 +110831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110785,7 +110842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46308] = 20, + [46414] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -110800,15 +110857,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3274), 1, + ACTIONS(3375), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, @@ -110822,7 +110879,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -110834,7 +110891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110845,13 +110902,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46388] = 20, + [46494] = 19, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, anon_sym_AMP, - ACTIONS(3041), 1, - anon_sym_AMP_AMP, ACTIONS(3043), 1, anon_sym_PIPE_PIPE, ACTIONS(3045), 1, @@ -110860,16 +110915,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3373), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -110882,9 +110935,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(3377), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, @@ -110894,7 +110950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110905,56 +110961,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46468] = 20, + [46572] = 19, ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3035), 1, + ACTIONS(3053), 1, + anon_sym_DOT, + ACTIONS(3059), 1, + anon_sym_QMARK, + ACTIONS(3061), 1, + anon_sym_as, + ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3041), 1, - anon_sym_AMP_AMP, - ACTIONS(3043), 1, + ACTIONS(3219), 1, anon_sym_PIPE_PIPE, - ACTIONS(3045), 1, + ACTIONS(3221), 1, anon_sym_PIPE, - ACTIONS(3047), 1, + ACTIONS(3223), 1, anon_sym_CARET, + ACTIONS(3235), 1, + anon_sym_EQ, + ACTIONS(3244), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3205), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3209), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3242), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3347), 2, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + ACTIONS(3207), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3225), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3237), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [46650] = 19, + ACTIONS(3025), 1, + anon_sym_LBRACK, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3211), 1, + anon_sym_AMP, + ACTIONS(3219), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3221), 1, + anon_sym_PIPE, + ACTIONS(3223), 1, + anon_sym_CARET, + ACTIONS(3235), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3244), 1, anon_sym_DOT_DOT, - ACTIONS(3375), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3027), 2, + ACTIONS(3205), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3033), 2, + ACTIONS(3209), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3051), 2, + ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3242), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3029), 3, + ACTIONS(3377), 2, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + ACTIONS(3207), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3049), 4, + ACTIONS(3225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3237), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110965,7 +111079,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46548] = 20, + [46728] = 14, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3283), 1, + sym_identifier, + ACTIONS(3285), 1, + anon_sym_LBRACE, + ACTIONS(3289), 1, + anon_sym_STAR, + ACTIONS(3295), 1, + anon_sym_COLON_COLON, + ACTIONS(3299), 1, + sym_metavariable, + ACTIONS(3379), 1, + anon_sym_RBRACE, + STATE(1719), 1, + sym_scoped_identifier, + STATE(2332), 1, + sym_bracketed_type, + STATE(2555), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3297), 3, + sym_self, + sym_super, + sym_crate, + STATE(2321), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3291), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [46796] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -110980,15 +111148,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3377), 1, + ACTIONS(3381), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -111002,7 +111170,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -111014,7 +111182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111025,7 +111193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46628] = 20, + [46876] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -111040,16 +111208,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, - ACTIONS(3379), 1, - anon_sym_RBRACK, + ACTIONS(3383), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -111062,7 +111230,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -111074,7 +111242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111085,7 +111253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46708] = 20, + [46956] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -111100,135 +111268,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3163), 1, - anon_sym_DOT_DOT, - ACTIONS(3381), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3027), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3033), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3051), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3161), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3029), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3049), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3067), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [46788] = 19, - ACTIONS(3025), 1, - anon_sym_LBRACK, - ACTIONS(3053), 1, - anon_sym_DOT, ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, anon_sym_as, - ACTIONS(3216), 1, - anon_sym_EQ, - ACTIONS(3220), 1, - anon_sym_AMP, - ACTIONS(3224), 1, - anon_sym_DOT_DOT, - ACTIONS(3228), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3230), 1, - anon_sym_PIPE, - ACTIONS(3232), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3212), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3218), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3222), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3236), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3383), 2, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - ACTIONS(3214), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3234), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3238), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [46866] = 20, - ACTIONS(3025), 1, - anon_sym_LBRACK, - ACTIONS(3035), 1, - anon_sym_AMP, - ACTIONS(3041), 1, - anon_sym_AMP_AMP, - ACTIONS(3043), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3045), 1, - anon_sym_PIPE, - ACTIONS(3047), 1, - anon_sym_CARET, - ACTIONS(3053), 1, - anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, ACTIONS(3385), 1, - anon_sym_RBRACK, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -111241,7 +111290,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -111253,7 +111302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111264,7 +111313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46946] = 20, + [47036] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -111279,13 +111328,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, ACTIONS(3387), 1, anon_sym_SEMI, @@ -111301,68 +111350,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3029), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3049), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3067), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [47026] = 19, - ACTIONS(3025), 1, - anon_sym_LBRACK, - ACTIONS(3035), 1, - anon_sym_AMP, - ACTIONS(3043), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3045), 1, - anon_sym_PIPE, - ACTIONS(3047), 1, - anon_sym_CARET, - ACTIONS(3053), 1, - anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3163), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3027), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3033), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3051), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3383), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, ACTIONS(3029), 3, anon_sym_STAR, anon_sym_SLASH, @@ -111372,7 +111362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111383,7 +111373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47104] = 20, + [47116] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -111398,13 +111388,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, ACTIONS(3389), 1, anon_sym_SEMI, @@ -111420,7 +111410,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -111432,7 +111422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111443,7 +111433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47184] = 20, + [47196] = 20, ACTIONS(3025), 1, anon_sym_LBRACK, ACTIONS(3035), 1, @@ -111458,13 +111448,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3053), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3059), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3061), 1, anon_sym_as, - ACTIONS(3065), 1, + ACTIONS(3063), 1, anon_sym_EQ, - ACTIONS(3163), 1, + ACTIONS(3169), 1, anon_sym_DOT_DOT, ACTIONS(3391), 1, anon_sym_SEMI, @@ -111480,7 +111470,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3051), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3167), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3029), 3, @@ -111492,7 +111482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 10, + ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111503,99 +111493,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47264] = 20, - ACTIONS(3025), 1, - anon_sym_LBRACK, - ACTIONS(3035), 1, - anon_sym_AMP, - ACTIONS(3041), 1, - anon_sym_AMP_AMP, - ACTIONS(3043), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3045), 1, - anon_sym_PIPE, - ACTIONS(3047), 1, - anon_sym_CARET, - ACTIONS(3053), 1, - anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_as, - ACTIONS(3065), 1, - anon_sym_EQ, - ACTIONS(3163), 1, - anon_sym_DOT_DOT, + [47276] = 14, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3283), 1, + sym_identifier, + ACTIONS(3285), 1, + anon_sym_LBRACE, + ACTIONS(3289), 1, + anon_sym_STAR, + ACTIONS(3295), 1, + anon_sym_COLON_COLON, + ACTIONS(3299), 1, + sym_metavariable, ACTIONS(3393), 1, - anon_sym_SEMI, + anon_sym_RBRACE, + STATE(1719), 1, + sym_scoped_identifier, + STATE(2332), 1, + sym_bracketed_type, + STATE(2555), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3027), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3033), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3051), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3161), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3029), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3049), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3067), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, + ACTIONS(3297), 3, + sym_self, + sym_super, + sym_crate, + STATE(2321), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3291), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, [47344] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3283), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3285), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3289), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3295), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3299), 1, sym_metavariable, - STATE(1745), 1, + STATE(1719), 1, sym_scoped_identifier, - STATE(2334), 1, + STATE(2332), 1, sym_bracketed_type, - STATE(2530), 1, + STATE(2555), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3297), 3, sym_self, sym_super, sym_crate, - STATE(2531), 5, + STATE(2428), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3291), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111618,36 +111602,36 @@ static const uint16_t ts_small_parse_table[] = { [47409] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3283), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3285), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3289), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3295), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3299), 1, sym_metavariable, - STATE(1745), 1, + STATE(1719), 1, sym_scoped_identifier, - STATE(2334), 1, + STATE(2332), 1, sym_bracketed_type, - STATE(2530), 1, + STATE(2555), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3297), 3, sym_self, sym_super, sym_crate, - STATE(2450), 5, + STATE(2321), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3291), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111670,36 +111654,36 @@ static const uint16_t ts_small_parse_table[] = { [47474] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3283), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3285), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3289), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3295), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3299), 1, sym_metavariable, - STATE(1745), 1, + STATE(1719), 1, sym_scoped_identifier, - STATE(2334), 1, + STATE(2332), 1, sym_bracketed_type, - STATE(2530), 1, + STATE(2555), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3297), 3, sym_self, sym_super, sym_crate, - STATE(2196), 5, + STATE(2496), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3291), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111722,36 +111706,36 @@ static const uint16_t ts_small_parse_table[] = { [47539] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3283), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3285), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3289), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3295), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3299), 1, sym_metavariable, - STATE(1745), 1, + STATE(1719), 1, sym_scoped_identifier, - STATE(2334), 1, + STATE(2332), 1, sym_bracketed_type, - STATE(2530), 1, + STATE(2555), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3297), 3, sym_self, sym_super, sym_crate, - STATE(2332), 5, + STATE(2558), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3291), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111774,36 +111758,36 @@ static const uint16_t ts_small_parse_table[] = { [47604] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3283), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3285), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3289), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3295), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3299), 1, sym_metavariable, - STATE(1745), 1, + STATE(1719), 1, sym_scoped_identifier, - STATE(2334), 1, + STATE(2332), 1, sym_bracketed_type, - STATE(2530), 1, + STATE(2555), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3297), 3, sym_self, sym_super, sym_crate, - STATE(2365), 5, + STATE(2479), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3291), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111943,11 +111927,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(3413), 1, sym_metavariable, - STATE(2175), 1, + STATE(2159), 1, sym_scoped_identifier, - STATE(2334), 1, + STATE(2332), 1, sym_bracketed_type, - STATE(2530), 1, + STATE(2555), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, @@ -111985,11 +111969,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(3421), 1, sym_metavariable, - STATE(2248), 1, + STATE(2232), 1, sym_scoped_identifier, - STATE(2334), 1, + STATE(2332), 1, sym_bracketed_type, - STATE(2530), 1, + STATE(2555), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, @@ -112019,12 +112003,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_union, [47893] = 3, - ACTIONS(2393), 1, + ACTIONS(2403), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2395), 20, + ACTIONS(2405), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112046,12 +112030,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [47923] = 3, - ACTIONS(2371), 1, + ACTIONS(2407), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2373), 20, + ACTIONS(2409), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112085,7 +112069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, ACTIONS(3439), 1, anon_sym_AT, - STATE(1341), 1, + STATE(1342), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, @@ -112117,9 +112101,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3443), 1, anon_sym_COLON_COLON, - STATE(1341), 1, + STATE(1342), 1, sym_type_arguments, - STATE(1365), 1, + STATE(1369), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -112138,41 +112122,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, [48038] = 4, - ACTIONS(2582), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2586), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2580), 15, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_LT2, - anon_sym_PIPE, - [48067] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 2, + ACTIONS(2592), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2584), 2, + ACTIONS(2596), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2586), 14, + ACTIONS(2598), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112187,16 +112146,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48096] = 4, - ACTIONS(2608), 1, + [48067] = 4, + ACTIONS(2586), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2612), 2, + ACTIONS(2590), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2606), 15, + ACTIONS(2584), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112212,16 +112171,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [48125] = 4, - ACTIONS(2562), 1, + [48096] = 4, + ACTIONS(2594), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2566), 2, + ACTIONS(2598), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2560), 15, + ACTIONS(2592), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112237,16 +112196,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [48154] = 4, - ACTIONS(2570), 1, + [48125] = 4, + ACTIONS(2602), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2606), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2568), 15, + ACTIONS(2600), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112262,7 +112221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [48183] = 8, + [48154] = 8, ACTIONS(2558), 1, anon_sym_COLON, ACTIONS(3437), 1, @@ -112271,9 +112230,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3443), 1, anon_sym_COLON_COLON, - STATE(1341), 1, + STATE(1342), 1, sym_type_arguments, - STATE(1365), 1, + STATE(1369), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -112291,32 +112250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [48220] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2560), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2564), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2566), 14, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [48249] = 8, + [48191] = 8, ACTIONS(2554), 1, anon_sym_COLON, ACTIONS(3437), 1, @@ -112325,9 +112259,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3443), 1, anon_sym_COLON_COLON, - STATE(1341), 1, + STATE(1342), 1, sym_type_arguments, - STATE(1365), 1, + STATE(1369), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -112345,17 +112279,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [48286] = 4, + [48228] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 2, + ACTIONS(2584), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2610), 2, + ACTIONS(2588), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2612), 14, + ACTIONS(2590), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112370,6 +112304,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, + [48257] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2600), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2604), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2606), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [48286] = 4, + ACTIONS(2570), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2574), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2568), 15, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LT2, + anon_sym_PIPE, [48315] = 4, ACTIONS(3), 2, sym_block_comment, @@ -112423,14 +112407,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, ACTIONS(3441), 1, anon_sym_LPAREN, - STATE(1352), 1, + STATE(1353), 1, sym_type_arguments, - STATE(1369), 1, + STATE(1374), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 13, + ACTIONS(2564), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112444,7 +112428,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [48402] = 17, + [48402] = 6, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + STATE(1353), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2576), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [48434] = 17, ACTIONS(3447), 1, anon_sym_const, ACTIONS(3449), 1, @@ -112469,11 +112479,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, ACTIONS(3469), 1, anon_sym_extern, - STATE(1498), 1, + STATE(1507), 1, sym_extern_modifier, - STATE(1548), 1, + STATE(1559), 1, aux_sym_function_modifiers_repeat1, - STATE(2554), 1, + STATE(2523), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, @@ -112481,40 +112491,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3445), 2, anon_sym_async, anon_sym_default, - [48456] = 6, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(3441), 1, - anon_sym_LPAREN, - STATE(1352), 1, - sym_type_arguments, - STATE(1369), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2576), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, [48488] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 2, + ACTIONS(2604), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2612), 15, + ACTIONS(2606), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112535,14 +112519,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, ACTIONS(3441), 1, anon_sym_LPAREN, - STATE(1352), 1, + STATE(1353), 1, sym_type_arguments, - STATE(1369), 1, + STATE(1374), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 13, + ACTIONS(2580), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112581,11 +112565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, ACTIONS(3493), 1, anon_sym_extern, - STATE(1520), 1, + STATE(1481), 1, sym_extern_modifier, - STATE(1548), 1, + STATE(1559), 1, aux_sym_function_modifiers_repeat1, - STATE(2424), 1, + STATE(2552), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, @@ -112597,10 +112581,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2564), 2, + ACTIONS(2596), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2566), 15, + ACTIONS(2598), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112617,6 +112601,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [48626] = 3, + ACTIONS(608), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(606), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_if, + anon_sym_where, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_in, + anon_sym_PIPE, + [48651] = 3, + ACTIONS(442), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(440), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_if, + anon_sym_where, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_in, + anon_sym_PIPE, + [48676] = 7, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3495), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3429), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3423), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [48709] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2584), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_LT2, + anon_sym_PIPE, + [48732] = 3, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3171), 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, + [48757] = 3, + ACTIONS(474), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(472), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_if, + anon_sym_where, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_in, + anon_sym_PIPE, + [48782] = 3, ACTIONS(446), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -112638,39 +112757,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [48651] = 7, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3495), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3429), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3423), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [48684] = 3, - ACTIONS(3497), 1, - anon_sym_LPAREN, + [48807] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3169), 15, + ACTIONS(3155), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -112686,84 +112777,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [48709] = 3, - ACTIONS(442), 1, - anon_sym_EQ, + [48829] = 3, + ACTIONS(2714), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(440), 15, + ACTIONS(2712), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_if, + anon_sym_for, anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_in, + anon_sym_COLON_COLON, anon_sym_PIPE, - [48734] = 3, - ACTIONS(474), 1, - anon_sym_EQ, + [48853] = 3, + ACTIONS(2670), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(472), 15, + ACTIONS(2668), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_if, + anon_sym_for, anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_in, + anon_sym_COLON_COLON, anon_sym_PIPE, - [48759] = 3, - ACTIONS(612), 1, - anon_sym_EQ, + [48877] = 13, + ACTIONS(3427), 1, + anon_sym_LBRACE, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3439), 1, + anon_sym_AT, + ACTIONS(3499), 1, + anon_sym_LPAREN, + ACTIONS(3501), 1, + anon_sym_RBRACK, + ACTIONS(3504), 1, + anon_sym_COLON_COLON, + STATE(1342), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2540), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3423), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [48921] = 13, + ACTIONS(3423), 1, + anon_sym_PIPE, + ACTIONS(3427), 1, + anon_sym_LBRACE, + ACTIONS(3429), 1, + anon_sym_COLON, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3439), 1, + anon_sym_AT, + ACTIONS(3506), 1, + anon_sym_LPAREN, + ACTIONS(3508), 1, + anon_sym_COLON_COLON, + STATE(1342), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2540), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [48965] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(610), 15, + ACTIONS(2804), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_if, anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_in, + sym_mutable_specifier, anon_sym_PIPE, - [48784] = 2, + sym_self, + [48987] = 3, + ACTIONS(2646), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 16, + ACTIONS(2644), 14, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_for, @@ -112771,35 +112920,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_LT2, + anon_sym_COLON_COLON, anon_sym_PIPE, - [48807] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3153), 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, - [48829] = 3, - ACTIONS(2712), 1, + [49011] = 3, + ACTIONS(2730), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2710), 14, + ACTIONS(2728), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112814,13 +112943,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [48853] = 3, - ACTIONS(3499), 1, + [49035] = 14, + ACTIONS(2540), 1, + anon_sym_PLUS, + ACTIONS(3423), 1, + anon_sym_PIPE, + ACTIONS(3427), 1, + anon_sym_LBRACE, + ACTIONS(3429), 1, + anon_sym_COLON, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3439), 1, + anon_sym_AT, + ACTIONS(3510), 1, + anon_sym_LPAREN, + ACTIONS(3512), 1, + anon_sym_COLON_COLON, + STATE(1342), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3501), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [49081] = 3, + ACTIONS(2802), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3171), 14, + ACTIONS(3173), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -112835,11 +112996,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [48877] = 2, + [49105] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3165), 15, + ACTIONS(3185), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -112855,11 +113016,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [48899] = 2, + [49127] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3179), 15, + ACTIONS(3159), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -112875,13 +113036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [48921] = 3, - ACTIONS(2762), 1, + [49149] = 3, + ACTIONS(3514), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3171), 14, + ACTIONS(3173), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -112896,209 +113057,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [48945] = 2, + [49173] = 3, + ACTIONS(2664), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2936), 15, + ACTIONS(2662), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - sym_mutable_specifier, + anon_sym_COLON_COLON, anon_sym_PIPE, - sym_self, - [48967] = 3, - ACTIONS(2656), 1, - anon_sym_COLON, + [49197] = 3, + ACTIONS(3516), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2654), 14, + ACTIONS(2674), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_COLON_COLON, anon_sym_PIPE, - [48991] = 3, - ACTIONS(2674), 1, - anon_sym_COLON, + [49220] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 14, + ACTIONS(2634), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, - anon_sym_COLON_COLON, anon_sym_PIPE, - [49015] = 3, - ACTIONS(2688), 1, - anon_sym_COLON, + [49241] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2686), 14, + ACTIONS(2682), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [49039] = 13, - ACTIONS(3427), 1, - anon_sym_LBRACE, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(3439), 1, - anon_sym_AT, - ACTIONS(3501), 1, - anon_sym_LPAREN, - ACTIONS(3503), 1, - anon_sym_RBRACK, - ACTIONS(3506), 1, - anon_sym_COLON_COLON, - STATE(1341), 1, - sym_type_arguments, - STATE(1365), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2540), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3423), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [49083] = 13, - ACTIONS(3423), 1, anon_sym_PIPE, - ACTIONS(3427), 1, - anon_sym_LBRACE, - ACTIONS(3429), 1, + [49262] = 4, + ACTIONS(2578), 1, anon_sym_COLON, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(3439), 1, - anon_sym_AT, - ACTIONS(3508), 1, - anon_sym_LPAREN, - ACTIONS(3510), 1, + ACTIONS(3518), 1, anon_sym_COLON_COLON, - STATE(1341), 1, - sym_type_arguments, - STATE(1365), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2540), 3, + ACTIONS(2576), 12, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [49127] = 3, - ACTIONS(2716), 1, - anon_sym_COLON, + anon_sym_GT, + anon_sym_PIPE, + [49287] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2714), 14, + ACTIONS(2708), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - [49151] = 14, - ACTIONS(2540), 1, - anon_sym_PLUS, - ACTIONS(3423), 1, anon_sym_PIPE, - ACTIONS(3427), 1, - anon_sym_LBRACE, - ACTIONS(3429), 1, - anon_sym_COLON, + [49308] = 4, + ACTIONS(3522), 1, + anon_sym_pat, + STATE(580), 1, + sym_fragment_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3520), 12, + anon_sym_block, + anon_sym_expr, + anon_sym_ident, + anon_sym_item, + anon_sym_lifetime, + anon_sym_literal, + anon_sym_meta, + anon_sym_path, + anon_sym_stmt, + anon_sym_tt, + anon_sym_ty, + anon_sym_vis, + [49333] = 14, ACTIONS(3431), 1, anon_sym_BANG, ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(3439), 1, - anon_sym_AT, - ACTIONS(3512), 1, + ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3514), 1, + ACTIONS(3443), 1, anon_sym_COLON_COLON, - STATE(1341), 1, + ACTIONS(3524), 1, + anon_sym_COLON, + ACTIONS(3526), 1, + anon_sym_EQ, + ACTIONS(3528), 1, + anon_sym_COMMA, + ACTIONS(3530), 1, + anon_sym_GT, + STATE(1342), 1, sym_type_arguments, - STATE(1365), 1, + STATE(1369), 1, sym_parameters, + STATE(1879), 1, + aux_sym_type_parameters_repeat1, + STATE(1998), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3503), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [49197] = 2, + ACTIONS(2540), 2, + anon_sym_PLUS, + anon_sym_as, + [49378] = 3, + ACTIONS(3532), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2724), 14, + ACTIONS(2716), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113110,22 +113246,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49218] = 5, - ACTIONS(3520), 1, + [49401] = 5, + ACTIONS(3538), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3518), 2, + ACTIONS(3536), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3522), 2, + ACTIONS(3540), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3516), 9, + ACTIONS(3534), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113135,55 +113270,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [49245] = 2, + [49428] = 4, + ACTIONS(2582), 1, + anon_sym_COLON, + ACTIONS(3175), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2746), 14, + ACTIONS(2580), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49266] = 4, - ACTIONS(2604), 1, - anon_sym_COLON, - ACTIONS(3524), 1, - anon_sym_COLON_COLON, + [49453] = 3, + ACTIONS(2399), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 12, + ACTIONS(2401), 13, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49291] = 4, - ACTIONS(2616), 1, + [49476] = 4, + ACTIONS(2582), 1, anon_sym_COLON, - ACTIONS(3173), 1, + ACTIONS(3542), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 12, + ACTIONS(2580), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113196,54 +113332,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49316] = 2, + [49501] = 4, + ACTIONS(2582), 1, + anon_sym_COLON, + ACTIONS(3518), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2676), 14, + ACTIONS(2580), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_PIPE, - [49337] = 3, - ACTIONS(2345), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2347), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49360] = 4, - ACTIONS(2616), 1, + [49526] = 4, + ACTIONS(2566), 1, anon_sym_COLON, - ACTIONS(3524), 1, + ACTIONS(3518), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 12, + ACTIONS(2564), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113256,13 +113374,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49385] = 3, - ACTIONS(3526), 1, - anon_sym_DASH_GT, + [49551] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2696), 13, + ACTIONS(2704), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113274,22 +113390,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49408] = 4, - ACTIONS(2616), 1, - anon_sym_COLON, - ACTIONS(3528), 1, - anon_sym_COLON_COLON, + [49572] = 3, + ACTIONS(3544), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 12, + ACTIONS(2698), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -113297,13 +113413,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49433] = 3, - ACTIONS(3530), 1, + [49595] = 3, + ACTIONS(3546), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2658), 13, + ACTIONS(2738), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113317,13 +113433,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49456] = 3, - ACTIONS(3532), 1, + [49618] = 3, + ACTIONS(3548), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2734), 13, + ACTIONS(2744), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113337,13 +113453,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49479] = 3, - ACTIONS(3534), 1, + [49641] = 3, + ACTIONS(3550), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2718), 13, + ACTIONS(2638), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113357,42 +113473,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49502] = 14, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(3441), 1, - anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_COLON_COLON, - ACTIONS(3536), 1, - anon_sym_COLON, - ACTIONS(3538), 1, - anon_sym_EQ, - ACTIONS(3540), 1, - anon_sym_COMMA, - ACTIONS(3542), 1, - anon_sym_GT, - STATE(1341), 1, - sym_type_arguments, - STATE(1365), 1, - sym_parameters, - STATE(1914), 1, - sym_trait_bounds, - STATE(1915), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2540), 2, - anon_sym_PLUS, - anon_sym_as, - [49547] = 2, + [49664] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2682), 14, + ACTIONS(2734), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113407,13 +113492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49568] = 3, - ACTIONS(3544), 1, + [49685] = 3, + ACTIONS(3552), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2740), 13, + ACTIONS(2686), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113427,41 +113512,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49591] = 4, - ACTIONS(3548), 1, - anon_sym_pat, - STATE(581), 1, - sym_fragment_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3546), 12, - anon_sym_block, - anon_sym_expr, - anon_sym_ident, - anon_sym_item, - anon_sym_lifetime, - anon_sym_literal, - anon_sym_meta, - anon_sym_path, - anon_sym_stmt, - anon_sym_tt, - anon_sym_ty, - anon_sym_vis, - [49616] = 4, - ACTIONS(2578), 1, - anon_sym_COLON, - ACTIONS(3524), 1, - anon_sym_COLON_COLON, + [49708] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2576), 12, + ACTIONS(2820), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -113469,11 +113530,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49641] = 2, + [49728] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 14, + ACTIONS(2863), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113485,16 +113546,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [49662] = 3, - ACTIONS(3550), 1, - anon_sym_DASH_GT, + [49748] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2588), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2590), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_in, + anon_sym_PIPE, + [49770] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2728), 13, + ACTIONS(2766), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113508,13 +113585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49685] = 3, - ACTIONS(3552), 1, - anon_sym_DASH_GT, + [49790] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2702), 13, + ACTIONS(2937), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113528,49 +113603,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49708] = 3, - ACTIONS(3556), 1, - anon_sym_EQ, + [49810] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3554), 12, + ACTIONS(2576), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [49730] = 3, - ACTIONS(3560), 1, - anon_sym_EQ, + [49830] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3558), 12, + ACTIONS(2816), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [49752] = 2, + [49850] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2758), 13, + ACTIONS(2766), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113584,11 +113657,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49772] = 2, + [49870] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2840), 13, + ACTIONS(2985), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113602,11 +113675,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49792] = 2, + [49890] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2991), 13, + ACTIONS(2782), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113620,11 +113693,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49812] = 2, + [49910] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2940), 13, + ACTIONS(2949), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113638,30 +113711,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49832] = 3, + [49930] = 3, + ACTIONS(3556), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2586), 11, + ACTIONS(3554), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, - anon_sym_BANG, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49854] = 2, + [49952] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2991), 13, + ACTIONS(2977), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113675,11 +113748,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49874] = 2, + [49972] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2979), 13, + ACTIONS(3003), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113693,11 +113766,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49894] = 2, + [49992] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3019), 13, + ACTIONS(2774), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113711,11 +113784,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49914] = 2, + [50012] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2960), 13, + ACTIONS(2770), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113729,29 +113802,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49934] = 2, + [50032] = 3, + ACTIONS(3560), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3007), 13, + ACTIONS(3558), 12, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49954] = 2, + [50054] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2964), 13, + ACTIONS(2564), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113765,11 +113839,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49974] = 2, + [50074] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2952), 13, + ACTIONS(2953), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113783,11 +113857,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [49994] = 2, + [50094] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2948), 13, + ACTIONS(2899), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113801,11 +113875,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50014] = 2, + [50114] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2768), 13, + ACTIONS(2580), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113819,29 +113893,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50034] = 2, + [50134] = 4, + ACTIONS(3429), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2987), 13, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3423), 10, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_in, anon_sym_PIPE, - [50054] = 2, + [50158] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2576), 13, + ACTIONS(2808), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113855,11 +113931,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50074] = 2, + [50178] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2772), 13, + ACTIONS(2798), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113873,11 +113949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50094] = 2, + [50198] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2780), 13, + ACTIONS(2961), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113891,11 +113967,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50114] = 2, + [50218] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 13, + ACTIONS(2840), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113909,11 +113985,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50134] = 2, + [50238] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2754), 13, + ACTIONS(2965), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113927,166 +114003,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [50154] = 2, + [50258] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2910), 13, + ACTIONS(3562), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2584), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_LT2, + ACTIONS(2590), 6, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50174] = 2, + [50281] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2914), 13, + ACTIONS(3565), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2568), 4, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_LT2, + ACTIONS(2574), 6, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50194] = 4, - ACTIONS(3429), 1, - anon_sym_EQ, + [50304] = 4, + ACTIONS(3572), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3423), 10, + ACTIONS(3570), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3568), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50218] = 2, + [50327] = 4, + ACTIONS(3578), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2932), 13, + ACTIONS(3576), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3574), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, + anon_sym_in, anon_sym_PIPE, - [50238] = 2, + [50350] = 3, + ACTIONS(412), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 13, + ACTIONS(410), 11, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, anon_sym_GT, + anon_sym_in, anon_sym_PIPE, - [50258] = 5, - ACTIONS(2584), 1, - anon_sym_COLON, - ACTIONS(3562), 1, - anon_sym_LPAREN, + [50371] = 3, + ACTIONS(416), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 5, + ACTIONS(414), 11, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2586), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50283] = 5, - ACTIONS(2584), 1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2580), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3562), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_if, anon_sym_COMMA, - ACTIONS(2586), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, + anon_sym_in, anon_sym_PIPE, - [50308] = 3, - ACTIONS(412), 1, - anon_sym_EQ, + [50392] = 4, + ACTIONS(3514), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(410), 11, + ACTIONS(3576), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3574), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [50329] = 4, - ACTIONS(3569), 1, + [50415] = 4, + ACTIONS(3580), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3567), 2, + ACTIONS(3576), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3565), 9, + ACTIONS(3574), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114096,35 +114153,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50352] = 4, + [50438] = 3, + ACTIONS(408), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3562), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2580), 4, + ACTIONS(406), 11, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2586), 6, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, + anon_sym_in, anon_sym_PIPE, - [50375] = 4, - ACTIONS(3499), 1, + [50459] = 4, + ACTIONS(3572), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3567), 2, + ACTIONS(3584), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3565), 9, + ACTIONS(3582), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114134,35 +114190,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50398] = 4, + [50482] = 4, + ACTIONS(3578), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3571), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2560), 4, + ACTIONS(3588), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3586), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2566), 6, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_in, anon_sym_PIPE, - [50421] = 4, - ACTIONS(3574), 1, + [50505] = 4, + ACTIONS(3514), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3567), 2, + ACTIONS(3588), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3565), 9, + ACTIONS(3586), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114172,16 +114228,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50444] = 4, + [50528] = 4, ACTIONS(3580), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3578), 2, + ACTIONS(3588), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3576), 9, + ACTIONS(3586), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114191,323 +114247,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50467] = 5, - ACTIONS(2572), 1, + [50551] = 5, + ACTIONS(2604), 1, anon_sym_COLON, - ACTIONS(3582), 1, + ACTIONS(3590), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2568), 5, + ACTIONS(2600), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2574), 5, + ACTIONS(2606), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50492] = 4, + [50576] = 5, + ACTIONS(2596), 1, + anon_sym_COLON, + ACTIONS(3593), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3585), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2606), 4, - anon_sym_SEMI, + ACTIONS(2592), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2612), 6, + ACTIONS(2598), 5, anon_sym_BANG, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50515] = 4, - ACTIONS(3574), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3590), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3588), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [50538] = 5, - ACTIONS(2610), 1, + [50601] = 5, + ACTIONS(2588), 1, anon_sym_COLON, + ACTIONS(3562), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 3, + ACTIONS(2584), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3585), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2612), 5, + anon_sym_LT2, + ACTIONS(2590), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50563] = 4, - ACTIONS(3499), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3590), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3588), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [50586] = 4, - ACTIONS(3569), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3590), 2, + [50626] = 5, + ACTIONS(2572), 1, anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3588), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [50609] = 3, - ACTIONS(416), 1, - anon_sym_EQ, + ACTIONS(3565), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(414), 11, - anon_sym_SEMI, + ACTIONS(2568), 5, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(2574), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50630] = 5, - ACTIONS(2564), 1, + [50651] = 5, + ACTIONS(2604), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2560), 3, + ACTIONS(2600), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3571), 3, + ACTIONS(3590), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2566), 5, + ACTIONS(2606), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50655] = 4, - ACTIONS(3580), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3594), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3592), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [50678] = 5, - ACTIONS(2572), 1, + [50676] = 5, + ACTIONS(2596), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2568), 3, + ACTIONS(2592), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3582), 3, + ACTIONS(3593), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2574), 5, + ACTIONS(2598), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50703] = 5, - ACTIONS(2564), 1, + [50701] = 5, + ACTIONS(2588), 1, anon_sym_COLON, - ACTIONS(3571), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2560), 5, - anon_sym_RPAREN, + ACTIONS(2584), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2566), 5, + ACTIONS(3562), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2590), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50728] = 3, - ACTIONS(408), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(406), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_in, - anon_sym_PIPE, - [50749] = 5, - ACTIONS(2610), 1, + [50726] = 5, + ACTIONS(2572), 1, anon_sym_COLON, - ACTIONS(3585), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 5, - anon_sym_RPAREN, + ACTIONS(2568), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2612), 5, + ACTIONS(3565), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2574), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50774] = 4, + [50751] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3582), 2, + ACTIONS(3590), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2568), 4, + ACTIONS(2600), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2574), 6, + ACTIONS(2606), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50797] = 9, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(3441), 1, - anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_COLON_COLON, - ACTIONS(3596), 1, - anon_sym_for, - STATE(1341), 1, - sym_type_arguments, - STATE(1365), 1, - sym_parameters, + [50774] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2540), 4, + ACTIONS(3593), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2592), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_where, - [50829] = 3, - ACTIONS(3600), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3598), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + anon_sym_LT2, + ACTIONS(2598), 6, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_in, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50849] = 3, - ACTIONS(3604), 1, + [50797] = 3, + ACTIONS(3598), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3602), 10, + ACTIONS(3596), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114518,17 +114462,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50869] = 5, + [50817] = 5, ACTIONS(706), 1, aux_sym_string_literal_token1, - ACTIONS(3608), 1, + ACTIONS(3602), 1, sym_crate, - STATE(1543), 1, + STATE(1542), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3606), 8, + ACTIONS(3600), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -114537,36 +114481,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [50893] = 9, - ACTIONS(3431), 1, + [50841] = 6, + ACTIONS(3604), 1, + anon_sym_COLON, + ACTIONS(3606), 1, anon_sym_BANG, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(3441), 1, - anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3608), 1, anon_sym_COLON_COLON, - ACTIONS(3610), 1, - anon_sym_for, - STATE(1341), 1, - sym_type_arguments, - STATE(1365), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2540), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [50925] = 3, - ACTIONS(3590), 1, + ACTIONS(3540), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2612), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [50867] = 3, + ACTIONS(3612), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3588), 10, + ACTIONS(3610), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114577,13 +114518,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50945] = 3, - ACTIONS(3614), 1, + [50887] = 3, + ACTIONS(3616), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3612), 10, + ACTIONS(3614), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114594,7 +114535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [50965] = 9, + [50907] = 9, ACTIONS(3431), 1, anon_sym_BANG, ACTIONS(3437), 1, @@ -114603,11 +114544,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3443), 1, anon_sym_COLON_COLON, - ACTIONS(3616), 1, + ACTIONS(3618), 1, anon_sym_for, - STATE(1341), 1, + STATE(1342), 1, sym_type_arguments, - STATE(1365), 1, + STATE(1369), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -114617,13 +114558,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [50997] = 3, + [50939] = 9, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3443), 1, + anon_sym_COLON_COLON, ACTIONS(3620), 1, + anon_sym_for, + STATE(1342), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2540), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [50971] = 3, + ACTIONS(3624), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3618), 10, + ACTIONS(3622), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114634,7 +114598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51017] = 9, + [50991] = 9, ACTIONS(3431), 1, anon_sym_BANG, ACTIONS(3437), 1, @@ -114643,11 +114607,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3443), 1, anon_sym_COLON_COLON, - ACTIONS(3622), 1, + ACTIONS(3626), 1, anon_sym_for, - STATE(1341), 1, + STATE(1342), 1, sym_type_arguments, - STATE(1365), 1, + STATE(1369), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -114657,24 +114621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [51049] = 3, - ACTIONS(3626), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3624), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51069] = 3, + [51023] = 3, ACTIONS(3630), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -114691,7 +114638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51089] = 3, + [51043] = 3, ACTIONS(3634), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -114708,13 +114655,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51109] = 3, + [51063] = 9, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3443), 1, + anon_sym_COLON_COLON, + ACTIONS(3636), 1, + anon_sym_for, + STATE(1342), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2540), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [51095] = 5, + ACTIONS(706), 1, + aux_sym_string_literal_token1, ACTIONS(3638), 1, + sym_crate, + STATE(1542), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3600), 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, + [51119] = 3, + ACTIONS(3642), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3636), 10, + ACTIONS(3640), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114725,13 +114714,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51129] = 3, - ACTIONS(3642), 1, + [51139] = 3, + ACTIONS(3646), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3640), 10, + ACTIONS(3644), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114742,33 +114731,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51149] = 6, - ACTIONS(3644), 1, + [51159] = 6, + ACTIONS(3604), 1, anon_sym_COLON, - ACTIONS(3646), 1, + ACTIONS(3606), 1, anon_sym_BANG, ACTIONS(3648), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3522), 2, + ACTIONS(3540), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2592), 6, + ACTIONS(2612), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [51175] = 3, - ACTIONS(3652), 1, + [51185] = 3, + ACTIONS(432), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3650), 10, + ACTIONS(430), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114779,13 +114768,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51195] = 3, - ACTIONS(3656), 1, + [51205] = 3, + ACTIONS(3652), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3654), 10, + ACTIONS(3650), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114796,13 +114785,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51215] = 3, - ACTIONS(3660), 1, + [51225] = 3, + ACTIONS(3656), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3658), 10, + ACTIONS(3654), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114813,30 +114802,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51235] = 3, - ACTIONS(3664), 1, - anon_sym_EQ, + [51245] = 9, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3443), 1, + anon_sym_COLON_COLON, + ACTIONS(3658), 1, + anon_sym_for, + STATE(1342), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3662), 10, + ACTIONS(2540), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51255] = 3, - ACTIONS(3668), 1, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [51277] = 3, + ACTIONS(3662), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3666), 10, + ACTIONS(3660), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114847,13 +114842,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51275] = 3, - ACTIONS(3672), 1, + [51297] = 3, + ACTIONS(3576), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3670), 10, + ACTIONS(3574), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114864,32 +114859,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51295] = 5, - ACTIONS(706), 1, - aux_sym_string_literal_token1, - ACTIONS(3674), 1, - sym_crate, - STATE(1543), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3606), 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, - [51319] = 3, - ACTIONS(3678), 1, + [51317] = 3, + ACTIONS(3666), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3676), 10, + ACTIONS(3664), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114900,13 +114876,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51339] = 3, - ACTIONS(3682), 1, + [51337] = 9, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3443), 1, + anon_sym_COLON_COLON, + ACTIONS(3668), 1, + anon_sym_for, + STATE(1342), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2540), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [51369] = 3, + ACTIONS(3672), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3680), 10, + ACTIONS(3670), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114917,13 +114916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51359] = 3, - ACTIONS(3686), 1, + [51389] = 3, + ACTIONS(3676), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3684), 10, + ACTIONS(3674), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114934,7 +114933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51379] = 9, + [51409] = 9, ACTIONS(3431), 1, anon_sym_BANG, ACTIONS(3437), 1, @@ -114943,11 +114942,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3443), 1, anon_sym_COLON_COLON, - ACTIONS(3688), 1, + ACTIONS(3678), 1, anon_sym_for, - STATE(1341), 1, + STATE(1342), 1, sym_type_arguments, - STATE(1365), 1, + STATE(1369), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -114957,13 +114956,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [51411] = 3, - ACTIONS(3692), 1, + [51441] = 3, + ACTIONS(3682), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3690), 10, + ACTIONS(3680), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114974,30 +114973,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51431] = 3, - ACTIONS(430), 1, - anon_sym_EQ, + [51461] = 5, + ACTIONS(706), 1, + aux_sym_string_literal_token1, + ACTIONS(3684), 1, + sym_crate, + STATE(1542), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(428), 10, + ACTIONS(3600), 8, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51451] = 3, - ACTIONS(3696), 1, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [51485] = 3, + ACTIONS(3688), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3694), 10, + ACTIONS(3686), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115008,13 +115009,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51471] = 3, - ACTIONS(3567), 1, + [51505] = 3, + ACTIONS(3692), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3565), 10, + ACTIONS(3690), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115025,13 +115026,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51491] = 3, - ACTIONS(3700), 1, + [51525] = 3, + ACTIONS(3696), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3698), 10, + ACTIONS(3694), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115042,13 +115043,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51511] = 3, - ACTIONS(3429), 1, + [51545] = 3, + ACTIONS(3700), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3423), 10, + ACTIONS(3698), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115059,7 +115060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51531] = 3, + [51565] = 3, ACTIONS(3704), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -115076,30 +115077,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51551] = 3, - ACTIONS(3708), 1, - anon_sym_EQ, + [51585] = 9, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3443), 1, + anon_sym_COLON_COLON, + ACTIONS(3706), 1, + anon_sym_for, + STATE(1342), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3706), 10, + ACTIONS(2540), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [51571] = 3, - ACTIONS(3712), 1, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [51617] = 3, + ACTIONS(3710), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3710), 10, + ACTIONS(3708), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115110,17 +115117,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51591] = 5, + [51637] = 5, ACTIONS(706), 1, aux_sym_string_literal_token1, - ACTIONS(3714), 1, + ACTIONS(3712), 1, sym_crate, - STATE(1543), 1, + STATE(1542), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3606), 8, + ACTIONS(3600), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -115129,13 +115136,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [51615] = 3, - ACTIONS(3718), 1, + [51661] = 3, + ACTIONS(3716), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3716), 10, + ACTIONS(3714), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115146,26 +115153,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51635] = 5, - ACTIONS(706), 1, - aux_sym_string_literal_token1, + [51681] = 3, ACTIONS(3720), 1, - sym_crate, - STATE(1543), 1, - sym_string_literal, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3606), 8, + ACTIONS(3718), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [51659] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [51701] = 3, ACTIONS(3724), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -115182,53 +115187,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51679] = 9, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(3441), 1, - anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_COLON_COLON, - ACTIONS(3726), 1, - anon_sym_for, - STATE(1341), 1, - sym_type_arguments, - STATE(1365), 1, - sym_parameters, + [51721] = 3, + ACTIONS(3728), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2540), 4, + ACTIONS(3726), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [51711] = 9, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(3441), 1, - anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_COLON_COLON, - ACTIONS(3728), 1, - anon_sym_for, - STATE(1341), 1, - sym_type_arguments, - STATE(1365), 1, - sym_parameters, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [51741] = 3, + ACTIONS(3429), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2540), 4, + ACTIONS(3423), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [51743] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [51761] = 3, ACTIONS(3732), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -115245,288 +115238,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [51763] = 9, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(3441), 1, - anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_COLON_COLON, - ACTIONS(3734), 1, - anon_sym_for, - STATE(1341), 1, - sym_type_arguments, - STATE(1365), 1, - sym_parameters, + [51781] = 3, + ACTIONS(3588), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2540), 4, + ACTIONS(3586), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [51795] = 6, - ACTIONS(3644), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(3646), 1, - anon_sym_BANG, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [51801] = 3, ACTIONS(3736), 1, - anon_sym_COLON_COLON, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3522), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [51821] = 5, - ACTIONS(3646), 1, + ACTIONS(3734), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [51821] = 9, + ACTIONS(3431), 1, anon_sym_BANG, - ACTIONS(3738), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3522), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [51844] = 6, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3483), 1, - anon_sym_trait, - ACTIONS(3740), 1, - anon_sym_impl, - STATE(70), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [51869] = 7, ACTIONS(3437), 1, anon_sym_LT2, ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3742), 1, - anon_sym_LBRACE, - STATE(1352), 1, - sym_type_arguments, + ACTIONS(3443), 1, + anon_sym_COLON_COLON, + ACTIONS(3738), 1, + anon_sym_EQ, STATE(1369), 1, sym_parameters, + STATE(1729), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(2540), 3, anon_sym_PLUS, anon_sym_COMMA, - [51896] = 10, + anon_sym_GT, + [51852] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3744), 1, + ACTIONS(3740), 1, sym_identifier, - ACTIONS(3746), 1, + ACTIONS(3742), 1, anon_sym_RBRACE, - ACTIONS(3748), 1, + ACTIONS(3744), 1, anon_sym_COMMA, - ACTIONS(3750), 1, + ACTIONS(3746), 1, sym_crate, - STATE(1946), 1, + STATE(2080), 1, sym_enum_variant, - STATE(2405), 1, + STATE(2391), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1562), 2, + STATE(1552), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [51929] = 10, + [51885] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3746), 1, sym_crate, - ACTIONS(3752), 1, + ACTIONS(3748), 1, sym_identifier, - ACTIONS(3754), 1, + ACTIONS(3750), 1, anon_sym_RBRACE, - ACTIONS(3756), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - STATE(2010), 1, + STATE(2116), 1, sym_field_declaration, - STATE(2412), 1, + STATE(2410), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1524), 2, + STATE(1527), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [51962] = 8, + [51918] = 5, + ACTIONS(3606), 1, + anon_sym_BANG, + ACTIONS(3608), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3540), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2612), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [51941] = 8, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3758), 1, + ACTIONS(3754), 1, sym_identifier, - ACTIONS(3760), 1, + ACTIONS(3756), 1, anon_sym_RBRACE, - ACTIONS(3762), 1, + ACTIONS(3758), 1, anon_sym_COMMA, - ACTIONS(3764), 1, + ACTIONS(3760), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1763), 2, + STATE(1807), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(1931), 3, + STATE(1927), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [51991] = 5, - ACTIONS(3646), 1, + [51970] = 5, + ACTIONS(3606), 1, anon_sym_BANG, - ACTIONS(3648), 1, + ACTIONS(3762), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3522), 2, + ACTIONS(3540), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2592), 6, + ACTIONS(2612), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52014] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2303), 1, - anon_sym_POUND, - ACTIONS(3744), 1, - sym_identifier, - ACTIONS(3750), 1, - sym_crate, - ACTIONS(3766), 1, - anon_sym_RBRACE, - ACTIONS(3768), 1, - anon_sym_COMMA, - STATE(2082), 1, - sym_enum_variant, - STATE(2405), 1, - sym_visibility_modifier, + [51993] = 5, + ACTIONS(3606), 1, + anon_sym_BANG, + ACTIONS(3648), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1538), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52047] = 10, + ACTIONS(3540), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2612), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52016] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3746), 1, sym_crate, - ACTIONS(3752), 1, + ACTIONS(3748), 1, sym_identifier, - ACTIONS(3770), 1, + ACTIONS(3764), 1, anon_sym_RBRACE, - ACTIONS(3772), 1, + ACTIONS(3766), 1, anon_sym_COMMA, - STATE(2118), 1, + STATE(1912), 1, sym_field_declaration, - STATE(2412), 1, + STATE(2410), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1535), 2, + STATE(1553), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52080] = 9, - ACTIONS(3431), 1, - anon_sym_BANG, + [52049] = 7, ACTIONS(3437), 1, anon_sym_LT2, ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_COLON_COLON, - ACTIONS(3774), 1, - anon_sym_EQ, - STATE(1365), 1, - sym_parameters, - STATE(1710), 1, + ACTIONS(3768), 1, + anon_sym_LBRACE, + STATE(1353), 1, sym_type_arguments, + STATE(1374), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2540), 3, + ACTIONS(2580), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_GT, - [52111] = 5, - ACTIONS(3646), 1, - anon_sym_BANG, - ACTIONS(3736), 1, - anon_sym_COLON_COLON, + [52076] = 6, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3459), 1, + anon_sym_trait, + ACTIONS(3770), 1, + anon_sym_impl, + STATE(70), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3522), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2592), 6, + ACTIONS(2612), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, + [52101] = 10, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(3740), 1, + sym_identifier, + ACTIONS(3746), 1, + sym_crate, + ACTIONS(3772), 1, + anon_sym_RBRACE, + ACTIONS(3774), 1, + anon_sym_COMMA, + STATE(1897), 1, + sym_enum_variant, + STATE(2391), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1541), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, [52134] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, ACTIONS(3776), 1, - sym_identifier, - STATE(61), 1, - sym_block, + anon_sym_SEMI, + ACTIONS(3778), 1, + anon_sym_LBRACE, + STATE(982), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3778), 6, + ACTIONS(2612), 6, anon_sym_async, anon_sym_const, anon_sym_default, @@ -115544,36 +115528,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, ACTIONS(3786), 1, sym_metavariable, - STATE(1810), 1, + STATE(1856), 1, sym_lifetime, - STATE(1979), 1, + STATE(1981), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2320), 2, + STATE(2239), 2, sym_const_parameter, sym_optional_type_parameter, - [52186] = 7, + [52186] = 9, + ACTIONS(53), 1, + anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3758), 1, + ACTIONS(3740), 1, sym_identifier, - ACTIONS(3764), 1, - anon_sym_DOT_DOT, + ACTIONS(3746), 1, + sym_crate, ACTIONS(3788), 1, anon_sym_RBRACE, + STATE(2280), 1, + sym_enum_variant, + STATE(2391), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1763), 2, + STATE(1543), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2182), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [52212] = 10, + [52216] = 10, ACTIONS(3790), 1, anon_sym_SEMI, ACTIONS(3792), 1, @@ -115584,99 +115570,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(3798), 1, anon_sym_LT, - STATE(378), 1, - sym_field_declaration_list, - STATE(1599), 1, - sym_type_parameters, - STATE(2033), 1, - sym_ordered_field_declaration_list, - STATE(2280), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [52244] = 10, - ACTIONS(3792), 1, - anon_sym_LPAREN, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(3798), 1, - anon_sym_LT, - ACTIONS(3800), 1, - anon_sym_SEMI, - ACTIONS(3802), 1, - anon_sym_LBRACE, - STATE(998), 1, + STATE(908), 1, sym_field_declaration_list, - STATE(1604), 1, + STATE(1568), 1, sym_type_parameters, - STATE(2045), 1, + STATE(2043), 1, sym_ordered_field_declaration_list, - STATE(2259), 1, + STATE(2204), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52276] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2303), 1, - anon_sym_POUND, - ACTIONS(3750), 1, - sym_crate, - ACTIONS(3752), 1, - sym_identifier, - ACTIONS(3804), 1, - anon_sym_RBRACE, - STATE(2232), 1, - sym_field_declaration, - STATE(2412), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1536), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52306] = 7, + [52248] = 7, ACTIONS(3437), 1, anon_sym_LT2, ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(3800), 1, anon_sym_for, - STATE(1352), 1, + STATE(1353), 1, sym_type_arguments, - STATE(1369), 1, + STATE(1374), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2580), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52332] = 7, - ACTIONS(2303), 1, - anon_sym_POUND, - ACTIONS(3758), 1, + [52274] = 9, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, sym_identifier, - ACTIONS(3764), 1, - anon_sym_DOT_DOT, - ACTIONS(3808), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1763), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2182), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [52358] = 9, + ACTIONS(3782), 1, + anon_sym_const, + ACTIONS(3786), 1, + sym_metavariable, + ACTIONS(3802), 1, + anon_sym_GT, + STATE(1856), 1, + sym_lifetime, + STATE(1981), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2239), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52304] = 9, ACTIONS(2299), 1, anon_sym_SQUOTE, ACTIONS(3780), 1, @@ -115685,198 +115630,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, ACTIONS(3786), 1, sym_metavariable, - ACTIONS(3810), 1, + ACTIONS(3804), 1, anon_sym_GT, - STATE(1835), 1, + STATE(1856), 1, sym_lifetime, - STATE(1979), 1, + STATE(1981), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2320), 2, + STATE(2239), 2, sym_const_parameter, sym_optional_type_parameter, - [52388] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2303), 1, - anon_sym_POUND, - ACTIONS(3744), 1, - sym_identifier, - ACTIONS(3750), 1, - sym_crate, + [52334] = 5, + ACTIONS(3778), 1, + anon_sym_LBRACE, + ACTIONS(3806), 1, + anon_sym_SEMI, + STATE(1014), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2612), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52356] = 10, + ACTIONS(3792), 1, + anon_sym_LPAREN, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3798), 1, + anon_sym_LT, + ACTIONS(3808), 1, + anon_sym_SEMI, + ACTIONS(3810), 1, + anon_sym_LBRACE, + STATE(377), 1, + sym_field_declaration_list, + STATE(1577), 1, + sym_type_parameters, + STATE(1944), 1, + sym_ordered_field_declaration_list, + STATE(2238), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [52388] = 10, + ACTIONS(3792), 1, + anon_sym_LPAREN, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3798), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_LBRACE, ACTIONS(3812), 1, - anon_sym_RBRACE, - STATE(2215), 1, - sym_enum_variant, - STATE(2405), 1, - sym_visibility_modifier, + anon_sym_SEMI, + STATE(475), 1, + sym_field_declaration_list, + STATE(1578), 1, + sym_type_parameters, + STATE(1979), 1, + sym_ordered_field_declaration_list, + STATE(2240), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1554), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52418] = 9, + [52420] = 9, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + sym_identifier, + ACTIONS(3782), 1, + anon_sym_const, + ACTIONS(3786), 1, + sym_metavariable, + ACTIONS(3814), 1, + anon_sym_GT, + STATE(1856), 1, + sym_lifetime, + STATE(1981), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2239), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52450] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3744), 1, + ACTIONS(3740), 1, sym_identifier, - ACTIONS(3750), 1, + ACTIONS(3746), 1, sym_crate, - ACTIONS(3814), 1, + ACTIONS(3816), 1, anon_sym_RBRACE, - STATE(2215), 1, + STATE(2280), 1, sym_enum_variant, - STATE(2405), 1, + STATE(2391), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1554), 2, + STATE(1543), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52448] = 9, - ACTIONS(53), 1, - anon_sym_pub, + [52480] = 7, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3750), 1, - sym_crate, - ACTIONS(3752), 1, + ACTIONS(3754), 1, sym_identifier, - ACTIONS(3816), 1, + ACTIONS(3760), 1, + anon_sym_DOT_DOT, + ACTIONS(3818), 1, anon_sym_RBRACE, - STATE(2232), 1, - sym_field_declaration, - STATE(2412), 1, - sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1536), 2, + STATE(1807), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52478] = 7, + STATE(2315), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [52506] = 7, ACTIONS(3437), 1, anon_sym_LT2, ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3818), 1, + ACTIONS(3820), 1, anon_sym_for, - STATE(1352), 1, + STATE(1353), 1, sym_type_arguments, - STATE(1369), 1, + STATE(1374), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2580), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52504] = 7, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(3441), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_for, - STATE(1352), 1, - sym_type_arguments, - STATE(1369), 1, - sym_parameters, + [52532] = 9, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + sym_identifier, + ACTIONS(3782), 1, + anon_sym_const, + ACTIONS(3786), 1, + sym_metavariable, + ACTIONS(3822), 1, + anon_sym_GT, + STATE(1766), 1, + sym_lifetime, + STATE(1981), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52530] = 9, + STATE(2239), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52562] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3746), 1, sym_crate, - ACTIONS(3752), 1, + ACTIONS(3748), 1, sym_identifier, - ACTIONS(3822), 1, + ACTIONS(3824), 1, anon_sym_RBRACE, - STATE(2232), 1, + STATE(2224), 1, sym_field_declaration, - STATE(2412), 1, + STATE(2410), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1536), 2, + STATE(1545), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52560] = 7, + [52592] = 7, ACTIONS(3437), 1, anon_sym_LT2, ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3824), 1, + ACTIONS(3826), 1, anon_sym_for, - STATE(1352), 1, + STATE(1353), 1, sym_type_arguments, - STATE(1369), 1, + STATE(1374), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2580), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52586] = 9, + [52618] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3744), 1, + ACTIONS(3740), 1, sym_identifier, - ACTIONS(3750), 1, + ACTIONS(3746), 1, sym_crate, - ACTIONS(3826), 1, + ACTIONS(3828), 1, anon_sym_RBRACE, - STATE(2215), 1, + STATE(2280), 1, sym_enum_variant, - STATE(2405), 1, + STATE(2391), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1554), 2, + STATE(1543), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52616] = 5, - ACTIONS(3828), 1, - anon_sym_SEMI, - ACTIONS(3830), 1, - anon_sym_LBRACE, - STATE(1013), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52638] = 9, + [52648] = 9, ACTIONS(2299), 1, anon_sym_SQUOTE, ACTIONS(3780), 1, @@ -115885,59 +115874,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, ACTIONS(3786), 1, sym_metavariable, - ACTIONS(3832), 1, + ACTIONS(3830), 1, anon_sym_GT, - STATE(1810), 1, + STATE(1856), 1, sym_lifetime, - STATE(1979), 1, + STATE(1981), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2320), 2, + STATE(2239), 2, sym_const_parameter, sym_optional_type_parameter, - [52668] = 7, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(3441), 1, - anon_sym_LPAREN, - ACTIONS(3834), 1, - anon_sym_for, - STATE(1352), 1, - sym_type_arguments, - STATE(1369), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52694] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2303), 1, - anon_sym_POUND, - ACTIONS(3744), 1, - sym_identifier, - ACTIONS(3750), 1, - sym_crate, - ACTIONS(3836), 1, - anon_sym_RBRACE, - STATE(2215), 1, - sym_enum_variant, - STATE(2405), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1554), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52724] = 9, + [52678] = 9, ACTIONS(2299), 1, anon_sym_SQUOTE, ACTIONS(3780), 1, @@ -115946,61 +115895,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, ACTIONS(3786), 1, sym_metavariable, - ACTIONS(3838), 1, + ACTIONS(3832), 1, anon_sym_GT, - STATE(1810), 1, + STATE(1856), 1, sym_lifetime, - STATE(1979), 1, + STATE(1981), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2320), 2, + STATE(2239), 2, sym_const_parameter, sym_optional_type_parameter, - [52754] = 9, + [52708] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3750), 1, - sym_crate, - ACTIONS(3752), 1, + ACTIONS(3740), 1, sym_identifier, - ACTIONS(3840), 1, + ACTIONS(3746), 1, + sym_crate, + ACTIONS(3834), 1, anon_sym_RBRACE, - STATE(2232), 1, - sym_field_declaration, - STATE(2412), 1, + STATE(2280), 1, + sym_enum_variant, + STATE(2391), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1536), 2, + STATE(1543), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52784] = 9, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, + [52738] = 7, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(3754), 1, sym_identifier, - ACTIONS(3782), 1, - anon_sym_const, - ACTIONS(3786), 1, - sym_metavariable, - ACTIONS(3842), 1, - anon_sym_GT, - STATE(1810), 1, - sym_lifetime, - STATE(1979), 1, - sym_constrained_type_parameter, + ACTIONS(3760), 1, + anon_sym_DOT_DOT, + ACTIONS(3836), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2320), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52814] = 9, + STATE(1807), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2315), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [52764] = 9, ACTIONS(2299), 1, anon_sym_SQUOTE, ACTIONS(3780), 1, @@ -116009,40 +115956,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, ACTIONS(3786), 1, sym_metavariable, - ACTIONS(3844), 1, + ACTIONS(3838), 1, anon_sym_GT, - STATE(1810), 1, + STATE(1856), 1, sym_lifetime, - STATE(1979), 1, + STATE(1981), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2320), 2, + STATE(2239), 2, sym_const_parameter, sym_optional_type_parameter, - [52844] = 9, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - sym_identifier, - ACTIONS(3782), 1, - anon_sym_const, - ACTIONS(3786), 1, - sym_metavariable, - ACTIONS(3846), 1, - anon_sym_GT, - STATE(1810), 1, - sym_lifetime, - STATE(1979), 1, - sym_constrained_type_parameter, + [52794] = 7, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3840), 1, + anon_sym_for, + STATE(1353), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2320), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52874] = 10, + ACTIONS(2580), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52820] = 10, ACTIONS(3792), 1, anon_sym_LPAREN, ACTIONS(3794), 1, @@ -116051,1025 +115996,1052 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(3798), 1, anon_sym_LT, - ACTIONS(3848), 1, + ACTIONS(3842), 1, anon_sym_SEMI, - STATE(475), 1, + STATE(803), 1, sym_field_declaration_list, - STATE(1569), 1, + STATE(1565), 1, sym_type_parameters, - STATE(2054), 1, + STATE(2128), 1, sym_ordered_field_declaration_list, - STATE(2225), 1, + STATE(2136), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52906] = 9, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - sym_identifier, - ACTIONS(3782), 1, - anon_sym_const, - ACTIONS(3786), 1, - sym_metavariable, - ACTIONS(3850), 1, - anon_sym_GT, - STATE(1810), 1, - sym_lifetime, - STATE(1979), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2320), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52936] = 9, + [52852] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3746), 1, sym_crate, - ACTIONS(3752), 1, + ACTIONS(3748), 1, sym_identifier, - ACTIONS(3852), 1, + ACTIONS(3844), 1, anon_sym_RBRACE, - STATE(2232), 1, + STATE(2224), 1, sym_field_declaration, - STATE(2412), 1, + STATE(2410), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1536), 2, + STATE(1545), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52966] = 7, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(3441), 1, - anon_sym_LPAREN, - ACTIONS(3854), 1, - anon_sym_for, - STATE(1352), 1, - sym_type_arguments, - STATE(1369), 1, - sym_parameters, + [52882] = 5, + ACTIONS(3846), 1, + anon_sym_SEMI, + ACTIONS(3848), 1, + anon_sym_LBRACE, + STATE(471), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52992] = 9, + ACTIONS(2612), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52904] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3744), 1, - sym_identifier, - ACTIONS(3750), 1, + ACTIONS(3746), 1, sym_crate, - ACTIONS(3856), 1, + ACTIONS(3748), 1, + sym_identifier, + ACTIONS(3850), 1, anon_sym_RBRACE, - STATE(2215), 1, - sym_enum_variant, - STATE(2405), 1, + STATE(2224), 1, + sym_field_declaration, + STATE(2410), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1554), 2, + STATE(1545), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53022] = 9, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - sym_identifier, - ACTIONS(3782), 1, - anon_sym_const, - ACTIONS(3786), 1, - sym_metavariable, - ACTIONS(3858), 1, - anon_sym_GT, - STATE(1810), 1, - sym_lifetime, - STATE(1979), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2320), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53052] = 5, - ACTIONS(3830), 1, + [52934] = 5, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3860), 1, - anon_sym_SEMI, - STATE(938), 1, - sym_declaration_list, + ACTIONS(3852), 1, + anon_sym_move, + STATE(66), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, + ACTIONS(2612), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53074] = 5, - ACTIONS(3862), 1, - anon_sym_SEMI, - ACTIONS(3864), 1, + [52956] = 5, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(370), 1, - sym_declaration_list, + ACTIONS(3854), 1, + sym_identifier, + STATE(61), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, + ACTIONS(3856), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53096] = 10, - ACTIONS(3792), 1, - anon_sym_LPAREN, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(3798), 1, - anon_sym_LT, - ACTIONS(3802), 1, + [52978] = 5, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(3866), 1, + ACTIONS(3858), 1, anon_sym_SEMI, - STATE(880), 1, - sym_field_declaration_list, - STATE(1571), 1, - sym_type_parameters, - STATE(2122), 1, - sym_ordered_field_declaration_list, - STATE(2138), 1, - sym_where_clause, + STATE(369), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53128] = 9, + ACTIONS(2612), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53000] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3744), 1, - sym_identifier, - ACTIONS(3750), 1, + ACTIONS(3746), 1, sym_crate, - ACTIONS(3868), 1, + ACTIONS(3748), 1, + sym_identifier, + ACTIONS(3860), 1, anon_sym_RBRACE, - STATE(2215), 1, - sym_enum_variant, - STATE(2405), 1, + STATE(2224), 1, + sym_field_declaration, + STATE(2410), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1554), 2, + STATE(1545), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53158] = 9, + [53030] = 9, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + sym_identifier, + ACTIONS(3782), 1, + anon_sym_const, + ACTIONS(3786), 1, + sym_metavariable, + ACTIONS(3862), 1, + anon_sym_GT, + STATE(1856), 1, + sym_lifetime, + STATE(1981), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2239), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53060] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3750), 1, - sym_crate, - ACTIONS(3752), 1, + ACTIONS(3740), 1, sym_identifier, - ACTIONS(3870), 1, + ACTIONS(3746), 1, + sym_crate, + ACTIONS(3864), 1, anon_sym_RBRACE, - STATE(2232), 1, - sym_field_declaration, - STATE(2412), 1, + STATE(2280), 1, + sym_enum_variant, + STATE(2391), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1536), 2, + STATE(1543), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53188] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3872), 1, - anon_sym_move, - STATE(66), 1, - sym_block, + [53090] = 7, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3429), 1, + anon_sym_COLON, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3866), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53210] = 7, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3423), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [53116] = 7, ACTIONS(3437), 1, anon_sym_LT2, ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3874), 1, + ACTIONS(3868), 1, anon_sym_for, - STATE(1352), 1, + STATE(1353), 1, sym_type_arguments, - STATE(1369), 1, + STATE(1374), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2580), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53236] = 5, - ACTIONS(3864), 1, - anon_sym_LBRACE, - ACTIONS(3876), 1, - anon_sym_SEMI, - STATE(472), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53258] = 7, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3429), 1, - anon_sym_COLON, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3878), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3423), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [53284] = 7, + [53142] = 7, ACTIONS(3437), 1, anon_sym_LT2, ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3880), 1, + ACTIONS(3870), 1, anon_sym_for, - STATE(1352), 1, + STATE(1353), 1, sym_type_arguments, - STATE(1369), 1, + STATE(1374), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2580), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53310] = 4, - ACTIONS(3884), 1, - anon_sym_PLUS, - STATE(1550), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3882), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [53329] = 8, + [53168] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3746), 1, sym_crate, - ACTIONS(3752), 1, + ACTIONS(3748), 1, sym_identifier, - STATE(1934), 1, + ACTIONS(3872), 1, + anon_sym_RBRACE, + STATE(2224), 1, sym_field_declaration, - STATE(2412), 1, + STATE(2410), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1121), 2, + STATE(1545), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53356] = 4, - ACTIONS(3886), 1, - anon_sym_PLUS, - STATE(1550), 1, - aux_sym_trait_bounds_repeat1, + [53198] = 7, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3874), 1, + anon_sym_for, + STATE(1353), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3882), 6, + ACTIONS(2580), 4, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [53375] = 8, - ACTIONS(798), 1, - anon_sym_DOT_DOT, - ACTIONS(3888), 1, - sym_identifier, - ACTIONS(3890), 1, - anon_sym_RBRACE, - ACTIONS(3892), 1, - anon_sym_COMMA, - ACTIONS(3894), 1, - anon_sym_ref, - ACTIONS(3896), 1, - sym_mutable_specifier, + [53224] = 7, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_for, + STATE(1353), 1, + sym_type_arguments, + STATE(1374), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1891), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [53402] = 4, - ACTIONS(870), 1, + ACTIONS(2580), 4, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(1453), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53421] = 4, - ACTIONS(2690), 1, - anon_sym_COLON_COLON, - ACTIONS(3898), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53440] = 9, - ACTIONS(3796), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(3900), 1, - anon_sym_COLON, - ACTIONS(3902), 1, - anon_sym_LT, - STATE(999), 1, - sym_declaration_list, - STATE(1672), 1, - sym_type_parameters, - STATE(1784), 1, - sym_trait_bounds, - STATE(2257), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [53469] = 8, + [53250] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3746), 1, sym_crate, - ACTIONS(3752), 1, + ACTIONS(3748), 1, sym_identifier, - STATE(2232), 1, + ACTIONS(3878), 1, + anon_sym_RBRACE, + STATE(2224), 1, sym_field_declaration, - STATE(2412), 1, + STATE(2410), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1536), 2, + STATE(1545), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53496] = 6, - ACTIONS(3738), 1, - anon_sym_COLON_COLON, - ACTIONS(3904), 1, - anon_sym_RBRACK, + [53280] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(3740), 1, + sym_identifier, + ACTIONS(3746), 1, + sym_crate, + ACTIONS(3880), 1, + anon_sym_RBRACE, + STATE(2280), 1, + sym_enum_variant, + STATE(2391), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3516), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3522), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [53519] = 9, + STATE(1543), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53310] = 9, + ACTIONS(3778), 1, + anon_sym_LBRACE, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(3900), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3902), 1, + ACTIONS(3884), 1, anon_sym_LT, - STATE(896), 1, + STATE(906), 1, sym_declaration_list, - STATE(1632), 1, + STATE(1694), 1, sym_type_parameters, - STATE(1764), 1, + STATE(1783), 1, sym_trait_bounds, - STATE(2162), 1, + STATE(2199), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53548] = 8, + [53339] = 8, ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(3780), 1, - sym_identifier, ACTIONS(3782), 1, anon_sym_const, - ACTIONS(3786), 1, + ACTIONS(3886), 1, + sym_identifier, + ACTIONS(3888), 1, sym_metavariable, - STATE(1810), 1, + STATE(1706), 1, sym_lifetime, - STATE(1979), 1, + STATE(1843), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2320), 2, + STATE(2030), 2, sym_const_parameter, sym_optional_type_parameter, - [53575] = 4, - ACTIONS(3580), 1, + [53366] = 4, + ACTIONS(3572), 1, anon_sym_COLON_COLON, - ACTIONS(3907), 1, + ACTIONS(3890), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, + ACTIONS(2612), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53594] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2303), 1, - anon_sym_POUND, - ACTIONS(3750), 1, - sym_crate, - ACTIONS(3752), 1, - sym_identifier, - STATE(2111), 1, - sym_field_declaration, - STATE(2412), 1, - sym_visibility_modifier, + [53385] = 4, + ACTIONS(3894), 1, + anon_sym_PLUS, + STATE(1539), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1121), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53621] = 8, + ACTIONS(3892), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [53404] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3746), 1, sym_crate, - ACTIONS(3752), 1, + ACTIONS(3748), 1, sym_identifier, - STATE(2250), 1, + STATE(2067), 1, sym_field_declaration, - STATE(2412), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1121), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53648] = 9, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(3864), 1, - anon_sym_LBRACE, - ACTIONS(3900), 1, - anon_sym_COLON, - ACTIONS(3902), 1, - anon_sym_LT, - STATE(383), 1, - sym_declaration_list, - STATE(1666), 1, - sym_type_parameters, - STATE(1799), 1, - sym_trait_bounds, - STATE(2298), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [53677] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2303), 1, - anon_sym_POUND, - ACTIONS(3744), 1, - sym_identifier, - ACTIONS(3750), 1, - sym_crate, - STATE(2125), 1, - sym_enum_variant, - STATE(2405), 1, + STATE(2410), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1121), 2, + STATE(1086), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53704] = 7, - ACTIONS(2614), 1, - anon_sym_PLUS, - ACTIONS(3516), 1, - anon_sym_PIPE, - ACTIONS(3518), 1, - anon_sym_COLON, - ACTIONS(3736), 1, - anon_sym_COLON_COLON, + [53431] = 4, + ACTIONS(3483), 1, + anon_sym_trait, + ACTIONS(3896), 1, + anon_sym_impl, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3522), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3904), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [53729] = 8, + ACTIONS(2612), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53450] = 8, ACTIONS(2299), 1, anon_sym_SQUOTE, ACTIONS(3782), 1, anon_sym_const, - ACTIONS(3909), 1, + ACTIONS(3898), 1, sym_identifier, - ACTIONS(3911), 1, + ACTIONS(3900), 1, sym_metavariable, - STATE(1709), 1, + STATE(1756), 1, sym_lifetime, - STATE(1765), 1, + STATE(1762), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2108), 2, + STATE(1986), 2, sym_const_parameter, sym_optional_type_parameter, - [53756] = 4, - ACTIONS(3915), 1, + [53477] = 4, + ACTIONS(2726), 1, + anon_sym_COLON_COLON, + ACTIONS(3902), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2612), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53496] = 4, + ACTIONS(3906), 1, anon_sym_PLUS, - STATE(1541), 1, + STATE(1526), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3913), 6, + ACTIONS(3904), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [53775] = 8, + [53515] = 8, + ACTIONS(3908), 1, + anon_sym_LPAREN, + ACTIONS(3913), 1, + anon_sym_LBRACE, + ACTIONS(3916), 1, + anon_sym_LBRACK, + STATE(1532), 1, + aux_sym_macro_definition_repeat1, + STATE(2381), 1, + sym_macro_rule, + STATE(2422), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3911), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [53542] = 4, + ACTIONS(3542), 1, + anon_sym_COLON_COLON, + ACTIONS(3606), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2612), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53561] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(3740), 1, + sym_identifier, + ACTIONS(3746), 1, + sym_crate, + STATE(2280), 1, + sym_enum_variant, + STATE(2391), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1543), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53588] = 8, ACTIONS(2299), 1, anon_sym_SQUOTE, ACTIONS(3782), 1, anon_sym_const, - ACTIONS(3918), 1, + ACTIONS(3898), 1, sym_identifier, - ACTIONS(3920), 1, + ACTIONS(3900), 1, sym_metavariable, - STATE(1755), 1, + STATE(1659), 1, sym_lifetime, - STATE(1793), 1, + STATE(1762), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2032), 2, + STATE(1986), 2, sym_const_parameter, sym_optional_type_parameter, - [53802] = 2, + [53615] = 4, + ACTIONS(3919), 1, + anon_sym_PLUS, + STATE(1526), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3922), 8, + ACTIONS(3904), 6, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53817] = 9, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [53634] = 9, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3864), 1, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(3900), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3902), 1, + ACTIONS(3884), 1, anon_sym_LT, - STATE(412), 1, + STATE(382), 1, sym_declaration_list, - STATE(1619), 1, + STATE(1610), 1, sym_type_parameters, - STATE(1772), 1, + STATE(1797), 1, sym_trait_bounds, - STATE(2210), 1, + STATE(2244), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53846] = 6, - ACTIONS(3516), 1, + [53663] = 7, + ACTIONS(2580), 1, + anon_sym_PLUS, + ACTIONS(3534), 1, anon_sym_PIPE, - ACTIONS(3518), 1, + ACTIONS(3536), 1, anon_sym_COLON, ACTIONS(3648), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3522), 2, + ACTIONS(3540), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2614), 3, + ACTIONS(3921), 2, anon_sym_RPAREN, + anon_sym_COMMA, + [53688] = 4, + ACTIONS(3926), 1, anon_sym_PLUS, + STATE(1539), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3924), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [53869] = 6, - ACTIONS(3425), 1, - anon_sym_LPAREN, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(3924), 1, - anon_sym_COLON_COLON, + anon_sym_GT, + [53707] = 4, + ACTIONS(3894), 1, + anon_sym_PLUS, + STATE(1526), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3423), 3, - anon_sym_RBRACK, + ACTIONS(3904), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_PIPE, - [53892] = 4, - ACTIONS(706), 1, - aux_sym_string_literal_token1, - STATE(1543), 1, - sym_string_literal, + anon_sym_GT, + [53726] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(3740), 1, + sym_identifier, + ACTIONS(3746), 1, + sym_crate, + STATE(2102), 1, + sym_enum_variant, + STATE(2391), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1086), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53753] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3606), 6, + ACTIONS(3929), 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, - [53911] = 5, - ACTIONS(3928), 1, - anon_sym_fn, - ACTIONS(3930), 1, - anon_sym_extern, + [53768] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(3740), 1, + sym_identifier, + ACTIONS(3746), 1, + sym_crate, + STATE(2189), 1, + sym_enum_variant, + STATE(2391), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3926), 4, + STATE(1086), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53795] = 4, + ACTIONS(706), 1, + aux_sym_string_literal_token1, + STATE(1542), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3600), 6, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, anon_sym_unsafe, - [53932] = 6, + anon_sym_extern, + [53814] = 8, + ACTIONS(53), 1, + anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3758), 1, + ACTIONS(3746), 1, + sym_crate, + ACTIONS(3748), 1, sym_identifier, - ACTIONS(3764), 1, - anon_sym_DOT_DOT, + STATE(2180), 1, + sym_field_declaration, + STATE(2410), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1763), 2, + STATE(1086), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2182), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [53955] = 4, - ACTIONS(3884), 1, - anon_sym_PLUS, - STATE(1541), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3932), 6, - anon_sym_SEMI, - anon_sym_LBRACE, + [53841] = 9, + ACTIONS(3796), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [53974] = 5, - ACTIONS(3937), 1, - anon_sym_fn, - ACTIONS(3939), 1, - anon_sym_extern, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(3882), 1, + anon_sym_COLON, + ACTIONS(3884), 1, + anon_sym_LT, + STATE(447), 1, + sym_declaration_list, + STATE(1611), 1, + sym_type_parameters, + STATE(1858), 1, + sym_trait_bounds, + STATE(2306), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1551), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3934), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [53995] = 8, + [53870] = 8, ACTIONS(2299), 1, anon_sym_SQUOTE, + ACTIONS(3780), 1, + sym_identifier, ACTIONS(3782), 1, anon_sym_const, - ACTIONS(3909), 1, - sym_identifier, - ACTIONS(3911), 1, + ACTIONS(3786), 1, sym_metavariable, - STATE(1644), 1, + STATE(1856), 1, sym_lifetime, - STATE(1765), 1, + STATE(1981), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2108), 2, + STATE(2239), 2, sym_const_parameter, sym_optional_type_parameter, - [54022] = 9, + [53897] = 6, + ACTIONS(3534), 1, + anon_sym_PIPE, + ACTIONS(3536), 1, + anon_sym_COLON, + ACTIONS(3608), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3540), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2580), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [53920] = 9, + ACTIONS(3778), 1, + anon_sym_LBRACE, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3864), 1, - anon_sym_LBRACE, - ACTIONS(3900), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3902), 1, + ACTIONS(3884), 1, anon_sym_LT, - STATE(447), 1, + STATE(911), 1, sym_declaration_list, - STATE(1678), 1, + STATE(1692), 1, sym_type_parameters, - STATE(1824), 1, + STATE(1794), 1, sym_trait_bounds, - STATE(2308), 1, + STATE(2202), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54051] = 8, + [53949] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3744), 1, - sym_identifier, - ACTIONS(3750), 1, + ACTIONS(3746), 1, sym_crate, - STATE(2139), 1, - sym_enum_variant, - STATE(2405), 1, + ACTIONS(3748), 1, + sym_identifier, + STATE(2224), 1, + sym_field_declaration, + STATE(2410), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1121), 2, + STATE(1545), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54078] = 8, + [53976] = 9, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(3882), 1, + anon_sym_COLON, + ACTIONS(3884), 1, + anon_sym_LT, + STATE(413), 1, + sym_declaration_list, + STATE(1612), 1, + sym_type_parameters, + STATE(1860), 1, + sym_trait_bounds, + STATE(2302), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54005] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2303), 1, anon_sym_POUND, - ACTIONS(3744), 1, + ACTIONS(3740), 1, sym_identifier, - ACTIONS(3750), 1, + ACTIONS(3746), 1, sym_crate, - STATE(2215), 1, + STATE(2120), 1, sym_enum_variant, - STATE(2405), 1, + STATE(2391), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1086), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54032] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(3746), 1, + sym_crate, + ACTIONS(3748), 1, + sym_identifier, + STATE(1932), 1, + sym_field_declaration, + STATE(2410), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + STATE(1086), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54059] = 5, + ACTIONS(3934), 1, + anon_sym_fn, + ACTIONS(3936), 1, + anon_sym_extern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, STATE(1554), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3931), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [54080] = 8, + ACTIONS(798), 1, + anon_sym_DOT_DOT, + ACTIONS(3939), 1, + sym_identifier, + ACTIONS(3941), 1, + anon_sym_RBRACE, + ACTIONS(3943), 1, + anon_sym_COMMA, + ACTIONS(3945), 1, + anon_sym_ref, + ACTIONS(3947), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2047), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [54107] = 6, + ACTIONS(3425), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3949), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3423), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [54130] = 6, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(3754), 1, + sym_identifier, + ACTIONS(3760), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1807), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54105] = 8, + STATE(2315), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [54153] = 8, ACTIONS(798), 1, anon_sym_DOT_DOT, - ACTIONS(3888), 1, + ACTIONS(3939), 1, sym_identifier, - ACTIONS(3894), 1, + ACTIONS(3945), 1, anon_sym_ref, - ACTIONS(3896), 1, + ACTIONS(3947), 1, sym_mutable_specifier, - ACTIONS(3942), 1, + ACTIONS(3951), 1, anon_sym_RBRACE, - ACTIONS(3944), 1, + ACTIONS(3953), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1906), 2, + STATE(2027), 2, sym_field_pattern, sym_remaining_field_pattern, - [54132] = 4, - ACTIONS(3946), 1, - anon_sym_PLUS, - STATE(1550), 1, - aux_sym_trait_bounds_repeat1, + [54180] = 5, + ACTIONS(3957), 1, + anon_sym_fn, + ACTIONS(3959), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3882), 6, - anon_sym_SEMI, + STATE(1554), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3955), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [54201] = 9, + ACTIONS(3778), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54151] = 9, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(3900), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(3902), 1, + ACTIONS(3884), 1, anon_sym_LT, - STATE(814), 1, + STATE(853), 1, sym_declaration_list, - STATE(1670), 1, + STATE(1619), 1, sym_type_parameters, - STATE(1782), 1, + STATE(1850), 1, sym_trait_bounds, - STATE(2201), 1, + STATE(2137), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54180] = 4, - ACTIONS(3528), 1, + [54230] = 6, + ACTIONS(3762), 1, anon_sym_COLON_COLON, - ACTIONS(3646), 1, - anon_sym_BANG, + ACTIONS(3921), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54199] = 4, - ACTIONS(3459), 1, - anon_sym_trait, - ACTIONS(3948), 1, - anon_sym_impl, + ACTIONS(2580), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3534), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3540), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54253] = 4, + ACTIONS(874), 1, + anon_sym_LBRACE, + STATE(1441), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, + ACTIONS(2612), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54218] = 8, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(3955), 1, - anon_sym_LBRACE, - ACTIONS(3958), 1, - anon_sym_LBRACK, - STATE(1561), 1, - aux_sym_macro_definition_repeat1, - STATE(2430), 1, - sym_token_tree_pattern, - STATE(2477), 1, - sym_macro_rule, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3953), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [54245] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2303), 1, - anon_sym_POUND, - ACTIONS(3744), 1, - sym_identifier, - ACTIONS(3750), 1, - sym_crate, - STATE(2102), 1, - sym_enum_variant, - STATE(2405), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1121), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54272] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3913), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54286] = 8, + [54272] = 8, ACTIONS(3961), 1, anon_sym_LPAREN, ACTIONS(3963), 1, @@ -117078,83 +117050,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(3967), 1, anon_sym_LBRACK, - STATE(1561), 1, + STATE(1532), 1, aux_sym_macro_definition_repeat1, - STATE(2142), 1, + STATE(2147), 1, sym_macro_rule, - STATE(2430), 1, + STATE(2422), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54312] = 8, - ACTIONS(3961), 1, + [54298] = 7, + ACTIONS(798), 1, + anon_sym_DOT_DOT, + ACTIONS(3939), 1, + sym_identifier, + ACTIONS(3945), 1, + anon_sym_ref, + ACTIONS(3947), 1, + sym_mutable_specifier, + ACTIONS(3969), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2247), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [54322] = 8, + ACTIONS(3792), 1, anon_sym_LPAREN, - ACTIONS(3963), 1, + ACTIONS(3794), 1, anon_sym_LBRACE, - ACTIONS(3967), 1, - anon_sym_LBRACK, - ACTIONS(3969), 1, - anon_sym_RPAREN, - STATE(1589), 1, - aux_sym_macro_definition_repeat1, - STATE(2249), 1, - sym_macro_rule, - STATE(2430), 1, - sym_token_tree_pattern, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3971), 1, + anon_sym_SEMI, + STATE(900), 1, + sym_field_declaration_list, + STATE(2051), 1, + sym_ordered_field_declaration_list, + STATE(2196), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54338] = 8, + [54348] = 8, ACTIONS(3961), 1, anon_sym_LPAREN, ACTIONS(3963), 1, anon_sym_LBRACE, ACTIONS(3967), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(3973), 1, anon_sym_RPAREN, - STATE(1588), 1, + STATE(1532), 1, aux_sym_macro_definition_repeat1, - STATE(2253), 1, + STATE(2150), 1, sym_macro_rule, - STATE(2430), 1, + STATE(2422), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54364] = 8, + [54374] = 8, ACTIONS(3961), 1, anon_sym_LPAREN, ACTIONS(3963), 1, anon_sym_LBRACE, ACTIONS(3967), 1, anon_sym_LBRACK, - ACTIONS(3973), 1, - anon_sym_RBRACE, - STATE(1564), 1, + ACTIONS(3975), 1, + anon_sym_RPAREN, + STATE(1566), 1, aux_sym_macro_definition_repeat1, - STATE(2317), 1, + STATE(2243), 1, sym_macro_rule, - STATE(2430), 1, + STATE(2422), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54390] = 3, - ACTIONS(3975), 1, - anon_sym_trait, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54406] = 8, + [54400] = 8, ACTIONS(3792), 1, anon_sym_LPAREN, ACTIONS(3794), 1, @@ -117163,47 +117139,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, ACTIONS(3977), 1, anon_sym_SEMI, - STATE(416), 1, + STATE(933), 1, sym_field_declaration_list, - STATE(1869), 1, + STATE(2118), 1, sym_ordered_field_declaration_list, - STATE(2150), 1, + STATE(2156), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54432] = 3, - ACTIONS(3528), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2592), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54448] = 8, - ACTIONS(3792), 1, + [54426] = 8, + ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(3802), 1, + ACTIONS(3963), 1, anon_sym_LBRACE, + ACTIONS(3967), 1, + anon_sym_LBRACK, ACTIONS(3979), 1, - anon_sym_SEMI, - STATE(780), 1, - sym_field_declaration_list, - STATE(2085), 1, - sym_ordered_field_declaration_list, - STATE(2198), 1, - sym_where_clause, + anon_sym_RPAREN, + STATE(1532), 1, + aux_sym_macro_definition_repeat1, + STATE(2215), 1, + sym_macro_rule, + STATE(2422), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54474] = 8, + [54452] = 8, ACTIONS(3961), 1, anon_sym_LPAREN, ACTIONS(3963), 1, @@ -117212,16 +117175,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(3981), 1, anon_sym_RBRACE, - STATE(1602), 1, + STATE(1532), 1, aux_sym_macro_definition_repeat1, - STATE(2218), 1, + STATE(2149), 1, sym_macro_rule, - STATE(2430), 1, + STATE(2422), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54500] = 8, + [54478] = 8, ACTIONS(3961), 1, anon_sym_LPAREN, ACTIONS(3963), 1, @@ -117230,322 +117193,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(3983), 1, anon_sym_RPAREN, - STATE(1608), 1, + STATE(1532), 1, aux_sym_macro_definition_repeat1, - STATE(2278), 1, + STATE(2214), 1, sym_macro_rule, - STATE(2430), 1, + STATE(2422), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54526] = 7, - ACTIONS(798), 1, - anon_sym_DOT_DOT, - ACTIONS(3888), 1, - sym_identifier, - ACTIONS(3894), 1, - anon_sym_ref, - ACTIONS(3896), 1, - sym_mutable_specifier, - ACTIONS(3985), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2135), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54550] = 8, + [54504] = 8, ACTIONS(3961), 1, anon_sym_LPAREN, ACTIONS(3963), 1, anon_sym_LBRACE, ACTIONS(3967), 1, anon_sym_LBRACK, - ACTIONS(3987), 1, + ACTIONS(3985), 1, anon_sym_RBRACE, - STATE(1606), 1, + STATE(1602), 1, aux_sym_macro_definition_repeat1, - STATE(2256), 1, + STATE(2248), 1, sym_macro_rule, - STATE(2430), 1, + STATE(2422), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54576] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3989), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54590] = 8, - ACTIONS(3961), 1, + [54530] = 8, + ACTIONS(3987), 1, anon_sym_LPAREN, - ACTIONS(3963), 1, + ACTIONS(3989), 1, anon_sym_LBRACE, - ACTIONS(3967), 1, - anon_sym_LBRACK, ACTIONS(3991), 1, - anon_sym_RPAREN, - STATE(1596), 1, - aux_sym_macro_definition_repeat1, - STATE(2245), 1, - sym_macro_rule, - STATE(2430), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54616] = 3, + anon_sym_LBRACK, ACTIONS(3993), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3778), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54632] = 7, - ACTIONS(798), 1, - anon_sym_DOT_DOT, - ACTIONS(3888), 1, - sym_identifier, - ACTIONS(3894), 1, - anon_sym_ref, - ACTIONS(3896), 1, - sym_mutable_specifier, + anon_sym_RBRACK, ACTIONS(3995), 1, - anon_sym_RBRACE, + anon_sym_EQ, + ACTIONS(3997), 1, + anon_sym_COLON_COLON, + STATE(2334), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2135), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54656] = 8, - ACTIONS(3580), 1, - anon_sym_COLON_COLON, - ACTIONS(3997), 1, + [54556] = 8, + ACTIONS(3987), 1, anon_sym_LPAREN, - ACTIONS(3999), 1, + ACTIONS(3989), 1, anon_sym_LBRACE, - ACTIONS(4001), 1, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(4003), 1, + ACTIONS(3993), 1, anon_sym_RBRACK, - ACTIONS(4005), 1, + ACTIONS(3995), 1, anon_sym_EQ, - STATE(2328), 1, + ACTIONS(3999), 1, + anon_sym_COLON_COLON, + STATE(2334), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54682] = 8, - ACTIONS(3997), 1, + [54582] = 8, + ACTIONS(3987), 1, anon_sym_LPAREN, - ACTIONS(3999), 1, + ACTIONS(3989), 1, anon_sym_LBRACE, - ACTIONS(4001), 1, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(4007), 1, + ACTIONS(3993), 1, anon_sym_RBRACK, - ACTIONS(4009), 1, + ACTIONS(3995), 1, anon_sym_EQ, - ACTIONS(4011), 1, + ACTIONS(4001), 1, anon_sym_COLON_COLON, - STATE(2443), 1, + STATE(2334), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54708] = 8, - ACTIONS(3997), 1, + [54608] = 8, + ACTIONS(3572), 1, + anon_sym_COLON_COLON, + ACTIONS(3987), 1, anon_sym_LPAREN, - ACTIONS(3999), 1, + ACTIONS(3989), 1, anon_sym_LBRACE, - ACTIONS(4001), 1, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(4007), 1, + ACTIONS(4003), 1, anon_sym_RBRACK, - ACTIONS(4009), 1, + ACTIONS(4005), 1, anon_sym_EQ, - ACTIONS(4013), 1, - anon_sym_COLON_COLON, - STATE(2443), 1, + STATE(2325), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54734] = 6, + [54634] = 8, ACTIONS(3792), 1, anon_sym_LPAREN, - ACTIONS(3802), 1, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4017), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4015), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1917), 2, + ACTIONS(4007), 1, + anon_sym_SEMI, + STATE(318), 1, sym_field_declaration_list, + STATE(1914), 1, sym_ordered_field_declaration_list, - [54756] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3913), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54770] = 3, - ACTIONS(4019), 1, - sym_identifier, + STATE(2275), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3778), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54786] = 8, - ACTIONS(3961), 1, + [54660] = 8, + ACTIONS(3792), 1, anon_sym_LPAREN, - ACTIONS(3963), 1, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(3967), 1, - anon_sym_LBRACK, - ACTIONS(4021), 1, - anon_sym_RBRACE, - STATE(1601), 1, - aux_sym_macro_definition_repeat1, - STATE(2214), 1, - sym_macro_rule, - STATE(2430), 1, - sym_token_tree_pattern, + ACTIONS(4009), 1, + anon_sym_SEMI, + STATE(416), 1, + sym_field_declaration_list, + STATE(1867), 1, + sym_ordered_field_declaration_list, + STATE(2310), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54812] = 7, + [54686] = 7, ACTIONS(798), 1, anon_sym_DOT_DOT, - ACTIONS(3888), 1, + ACTIONS(3939), 1, sym_identifier, - ACTIONS(3894), 1, + ACTIONS(3945), 1, anon_sym_ref, - ACTIONS(3896), 1, + ACTIONS(3947), 1, sym_mutable_specifier, - ACTIONS(4023), 1, + ACTIONS(4011), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2135), 2, + STATE(2247), 2, sym_field_pattern, sym_remaining_field_pattern, - [54836] = 8, + [54710] = 8, ACTIONS(3961), 1, anon_sym_LPAREN, ACTIONS(3963), 1, anon_sym_LBRACE, ACTIONS(3967), 1, anon_sym_LBRACK, - ACTIONS(4025), 1, - anon_sym_RPAREN, - STATE(1561), 1, + ACTIONS(4013), 1, + anon_sym_RBRACE, + STATE(1570), 1, aux_sym_macro_definition_repeat1, - STATE(2228), 1, + STATE(2171), 1, sym_macro_rule, - STATE(2430), 1, + STATE(2422), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54862] = 8, + [54736] = 8, ACTIONS(3961), 1, anon_sym_LPAREN, ACTIONS(3963), 1, anon_sym_LBRACE, ACTIONS(3967), 1, anon_sym_LBRACK, - ACTIONS(4027), 1, - anon_sym_RPAREN, - STATE(1561), 1, + ACTIONS(4015), 1, + anon_sym_RBRACE, + STATE(1563), 1, aux_sym_macro_definition_repeat1, - STATE(2226), 1, + STATE(2135), 1, sym_macro_rule, - STATE(2430), 1, + STATE(2422), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54888] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3913), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54902] = 7, - ACTIONS(798), 1, - anon_sym_DOT_DOT, - ACTIONS(3888), 1, - sym_identifier, - ACTIONS(3894), 1, - anon_sym_ref, - ACTIONS(3896), 1, - sym_mutable_specifier, - ACTIONS(4029), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2135), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54926] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3913), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54940] = 2, + [54762] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3913), 7, + ACTIONS(3924), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -117553,183 +117393,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54954] = 3, - ACTIONS(4031), 1, + [54776] = 3, + ACTIONS(4017), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3778), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54970] = 3, - ACTIONS(2690), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2592), 6, + ACTIONS(3856), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54986] = 8, + [54792] = 8, ACTIONS(3961), 1, anon_sym_LPAREN, ACTIONS(3963), 1, anon_sym_LBRACE, ACTIONS(3967), 1, anon_sym_LBRACK, - ACTIONS(4033), 1, + ACTIONS(4019), 1, anon_sym_RPAREN, - STATE(1561), 1, + STATE(1571), 1, aux_sym_macro_definition_repeat1, - STATE(2152), 1, + STATE(2236), 1, sym_macro_rule, - STATE(2430), 1, + STATE(2422), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55012] = 6, - ACTIONS(3792), 1, + [54818] = 8, + ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3802), 1, + ACTIONS(3963), 1, anon_sym_LBRACE, - ACTIONS(4037), 1, - anon_sym_EQ, + ACTIONS(3967), 1, + anon_sym_LBRACK, + ACTIONS(4021), 1, + anon_sym_RPAREN, + STATE(1569), 1, + aux_sym_macro_definition_repeat1, + STATE(2237), 1, + sym_macro_rule, + STATE(2422), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4035), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2110), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [55034] = 8, - ACTIONS(3997), 1, + [54844] = 8, + ACTIONS(3961), 1, anon_sym_LPAREN, - ACTIONS(3999), 1, + ACTIONS(3963), 1, anon_sym_LBRACE, - ACTIONS(4001), 1, + ACTIONS(3967), 1, anon_sym_LBRACK, - ACTIONS(4007), 1, - anon_sym_RBRACK, - ACTIONS(4009), 1, - anon_sym_EQ, - ACTIONS(4039), 1, - anon_sym_COLON_COLON, - STATE(2443), 1, - sym_delim_token_tree, + ACTIONS(4023), 1, + anon_sym_RBRACE, + STATE(1532), 1, + aux_sym_macro_definition_repeat1, + STATE(2140), 1, + sym_macro_rule, + STATE(2422), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55060] = 8, - ACTIONS(3792), 1, - anon_sym_LPAREN, - ACTIONS(3794), 1, - anon_sym_LBRACE, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(4041), 1, - anon_sym_SEMI, - STATE(318), 1, - sym_field_declaration_list, - STATE(1941), 1, - sym_ordered_field_declaration_list, - STATE(2265), 1, - sym_where_clause, + [54870] = 3, + ACTIONS(4025), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55086] = 3, - ACTIONS(4043), 1, + ACTIONS(2612), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54886] = 3, + ACTIONS(4027), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3778), 6, + ACTIONS(3856), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55102] = 8, - ACTIONS(3961), 1, - anon_sym_LPAREN, - ACTIONS(3963), 1, + [54902] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3924), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3967), 1, - anon_sym_LBRACK, - ACTIONS(4045), 1, - anon_sym_RBRACE, - STATE(1561), 1, - aux_sym_macro_definition_repeat1, - STATE(2151), 1, - sym_macro_rule, - STATE(2430), 1, - sym_token_tree_pattern, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54916] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3924), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54930] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3924), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54944] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55128] = 8, + ACTIONS(3924), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54958] = 8, ACTIONS(3961), 1, anon_sym_LPAREN, ACTIONS(3963), 1, anon_sym_LBRACE, ACTIONS(3967), 1, anon_sym_LBRACK, - ACTIONS(4047), 1, - anon_sym_RBRACE, - STATE(1561), 1, + ACTIONS(4029), 1, + anon_sym_RPAREN, + STATE(1532), 1, aux_sym_macro_definition_repeat1, - STATE(2149), 1, + STATE(2143), 1, sym_macro_rule, - STATE(2430), 1, + STATE(2422), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55154] = 3, - ACTIONS(4049), 1, - anon_sym_trait, + [54984] = 3, + ACTIONS(4031), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 6, + ACTIONS(3856), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55170] = 8, - ACTIONS(3792), 1, - anon_sym_LPAREN, - ACTIONS(3796), 1, + [55000] = 7, + ACTIONS(798), 1, + anon_sym_DOT_DOT, + ACTIONS(3939), 1, + sym_identifier, + ACTIONS(3945), 1, + anon_sym_ref, + ACTIONS(3947), 1, + sym_mutable_specifier, + ACTIONS(4033), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2247), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55024] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4035), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3802), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55038] = 8, + ACTIONS(3961), 1, + anon_sym_LPAREN, + ACTIONS(3963), 1, anon_sym_LBRACE, - ACTIONS(4051), 1, - anon_sym_SEMI, - STATE(917), 1, - sym_field_declaration_list, - STATE(2120), 1, - sym_ordered_field_declaration_list, - STATE(2161), 1, - sym_where_clause, + ACTIONS(3967), 1, + anon_sym_LBRACK, + ACTIONS(4037), 1, + anon_sym_RPAREN, + STATE(1593), 1, + aux_sym_macro_definition_repeat1, + STATE(2263), 1, + sym_macro_rule, + STATE(2422), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55196] = 7, + [55064] = 7, ACTIONS(3423), 1, anon_sym_PIPE, ACTIONS(3425), 1, @@ -117738,7 +117621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(3431), 1, anon_sym_BANG, - ACTIONS(4053), 1, + ACTIONS(4039), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -117746,422 +117629,435 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3435), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [55220] = 8, + [55088] = 6, + ACTIONS(3792), 1, + anon_sym_LPAREN, + ACTIONS(3794), 1, + anon_sym_LBRACE, + ACTIONS(4043), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4041), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2125), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [55110] = 7, + ACTIONS(798), 1, + anon_sym_DOT_DOT, + ACTIONS(3939), 1, + sym_identifier, + ACTIONS(3945), 1, + anon_sym_ref, + ACTIONS(3947), 1, + sym_mutable_specifier, + ACTIONS(4045), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2247), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55134] = 3, + ACTIONS(3542), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2612), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55150] = 8, ACTIONS(3961), 1, anon_sym_LPAREN, ACTIONS(3963), 1, anon_sym_LBRACE, ACTIONS(3967), 1, anon_sym_LBRACK, - ACTIONS(4055), 1, + ACTIONS(4047), 1, anon_sym_RBRACE, - STATE(1561), 1, + STATE(1532), 1, aux_sym_macro_definition_repeat1, - STATE(2242), 1, + STATE(2195), 1, sym_macro_rule, - STATE(2430), 1, + STATE(2422), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55246] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4057), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55260] = 8, + [55176] = 8, ACTIONS(3961), 1, anon_sym_LPAREN, ACTIONS(3963), 1, anon_sym_LBRACE, ACTIONS(3967), 1, anon_sym_LBRACK, - ACTIONS(4059), 1, - anon_sym_RPAREN, - STATE(1561), 1, + ACTIONS(4049), 1, + anon_sym_RBRACE, + STATE(1586), 1, aux_sym_macro_definition_repeat1, - STATE(2145), 1, + STATE(2284), 1, sym_macro_rule, - STATE(2430), 1, + STATE(2422), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55286] = 7, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(3798), 1, - anon_sym_LT, - ACTIONS(4061), 1, - anon_sym_LBRACE, - STATE(889), 1, - sym_enum_variant_list, - STATE(1761), 1, - sym_type_parameters, - STATE(2314), 1, - sym_where_clause, + [55202] = 3, + ACTIONS(4051), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55309] = 7, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(4063), 1, - anon_sym_SEMI, - ACTIONS(4065), 1, - anon_sym_LBRACE, - ACTIONS(4067), 1, - anon_sym_DASH_GT, - STATE(899), 1, - sym_block, - STATE(2056), 1, - sym_where_clause, + ACTIONS(2612), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55218] = 3, + ACTIONS(2726), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55332] = 7, - ACTIONS(3900), 1, - anon_sym_COLON, - ACTIONS(3902), 1, - anon_sym_LT, - ACTIONS(4069), 1, - anon_sym_SEMI, - ACTIONS(4071), 1, - anon_sym_EQ, - STATE(1816), 1, - sym_type_parameters, - STATE(2364), 1, - sym_trait_bounds, + ACTIONS(2612), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55234] = 3, + ACTIONS(4053), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55355] = 7, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(3864), 1, + ACTIONS(3856), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55250] = 6, + ACTIONS(3792), 1, + anon_sym_LPAREN, + ACTIONS(3794), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, - anon_sym_SEMI, - ACTIONS(4075), 1, - anon_sym_PLUS, - STATE(278), 1, - sym_declaration_list, - STATE(2039), 1, - sym_where_clause, + ACTIONS(4057), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55378] = 7, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(3864), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4077), 1, - anon_sym_SEMI, - STATE(275), 1, - sym_declaration_list, - STATE(2029), 1, - sym_where_clause, + ACTIONS(4055), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1905), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [55272] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55401] = 7, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(4065), 1, - anon_sym_LBRACE, - ACTIONS(4079), 1, + ACTIONS(4059), 7, anon_sym_SEMI, - ACTIONS(4081), 1, - anon_sym_DASH_GT, - STATE(856), 1, - sym_block, - STATE(2131), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55424] = 7, - ACTIONS(2473), 1, + anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3900), 1, - anon_sym_COLON, - ACTIONS(4083), 1, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(4085), 1, anon_sym_GT, - STATE(1919), 1, - aux_sym_type_parameters_repeat1, - STATE(1921), 1, - sym_trait_bounds, + [55286] = 7, + ACTIONS(3285), 1, + anon_sym_LBRACE, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(4061), 1, + sym_identifier, + ACTIONS(4063), 1, + anon_sym_STAR, + STATE(1889), 1, + sym_use_list, + STATE(2481), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55447] = 5, - ACTIONS(4089), 1, + [55309] = 7, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(4091), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4087), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [55466] = 4, - ACTIONS(4091), 1, - anon_sym_COLON_COLON, + STATE(358), 1, + sym_declaration_list, + STATE(1811), 1, + sym_trait_bounds, + STATE(2286), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2614), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [55483] = 7, - ACTIONS(3794), 1, - anon_sym_LBRACE, + [55332] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3798), 1, - anon_sym_LT, - STATE(391), 1, - sym_field_declaration_list, - STATE(1818), 1, - sym_type_parameters, - STATE(2290), 1, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(3882), 1, + anon_sym_COLON, + STATE(427), 1, + sym_declaration_list, + STATE(1832), 1, + sym_trait_bounds, + STATE(2311), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55506] = 7, + [55355] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3864), 1, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(3900), 1, + ACTIONS(3882), 1, anon_sym_COLON, STATE(323), 1, sym_declaration_list, - STATE(1766), 1, + STATE(1779), 1, sym_trait_bounds, - STATE(2255), 1, + STATE(2205), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55529] = 4, - ACTIONS(3524), 1, + [55378] = 4, + ACTIONS(3518), 1, anon_sym_COLON_COLON, - ACTIONS(3818), 1, + ACTIONS(3876), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2580), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [55546] = 7, + [55395] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4093), 1, + ACTIONS(4065), 1, anon_sym_SEMI, - ACTIONS(4095), 1, + ACTIONS(4067), 1, anon_sym_LBRACE, - STATE(263), 1, + ACTIONS(4069), 1, + anon_sym_DASH_GT, + STATE(893), 1, sym_block, - STATE(2017), 1, + STATE(2055), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55569] = 7, + [55418] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4097), 1, + ACTIONS(4071), 1, anon_sym_SEMI, - STATE(841), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + STATE(432), 1, sym_declaration_list, - STATE(2119), 1, + STATE(1917), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55592] = 6, - ACTIONS(3173), 1, - anon_sym_COLON_COLON, - ACTIONS(4083), 1, - anon_sym_COMMA, - ACTIONS(4085), 1, - anon_sym_GT, - STATE(1919), 1, - aux_sym_type_parameters_repeat1, + [55441] = 7, + ACTIONS(3882), 1, + anon_sym_COLON, + ACTIONS(3884), 1, + anon_sym_LT, + ACTIONS(4075), 1, + anon_sym_SEMI, + ACTIONS(4077), 1, + anon_sym_EQ, + STATE(1814), 1, + sym_type_parameters, + STATE(2419), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 2, - anon_sym_PLUS, - anon_sym_as, - [55613] = 7, + [55464] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(3798), 1, + anon_sym_LT, + ACTIONS(3810), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4099), 1, - anon_sym_SEMI, - STATE(909), 1, - sym_declaration_list, - STATE(2115), 1, + STATE(390), 1, + sym_field_declaration_list, + STATE(1817), 1, + sym_type_parameters, + STATE(2259), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55636] = 4, - ACTIONS(3524), 1, - anon_sym_COLON_COLON, - ACTIONS(3820), 1, - anon_sym_for, + [55487] = 7, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(4079), 1, + anon_sym_SEMI, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4083), 1, + anon_sym_DASH_GT, + STATE(321), 1, + sym_block, + STATE(1999), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, + [55510] = 7, + ACTIONS(3778), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(3796), 1, anon_sym_where, - [55653] = 7, + ACTIONS(3882), 1, + anon_sym_COLON, + STATE(886), 1, + sym_declaration_list, + STATE(1770), 1, + sym_trait_bounds, + STATE(2187), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55533] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4095), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4101), 1, + ACTIONS(4085), 1, anon_sym_SEMI, - ACTIONS(4103), 1, + ACTIONS(4087), 1, anon_sym_DASH_GT, - STATE(470), 1, + STATE(336), 1, sym_block, - STATE(2047), 1, + STATE(1985), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55676] = 7, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(3830), 1, + [55556] = 7, + ACTIONS(3285), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4105), 1, - anon_sym_SEMI, - STATE(796), 1, - sym_declaration_list, - STATE(2096), 1, - sym_where_clause, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(4061), 1, + sym_identifier, + ACTIONS(4063), 1, + anon_sym_STAR, + STATE(1889), 1, + sym_use_list, + STATE(2491), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55699] = 4, - ACTIONS(3524), 1, + [55579] = 4, + ACTIONS(3518), 1, anon_sym_COLON_COLON, - ACTIONS(3824), 1, + ACTIONS(3840), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2580), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [55716] = 4, - ACTIONS(3524), 1, + [55596] = 6, + ACTIONS(3997), 1, anon_sym_COLON_COLON, - ACTIONS(3854), 1, - anon_sym_for, + ACTIONS(4089), 1, + anon_sym_LPAREN, + ACTIONS(4093), 1, + anon_sym_EQ, + STATE(2212), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [55733] = 7, - ACTIONS(3305), 1, - anon_sym_LBRACE, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(4107), 1, - sym_identifier, - ACTIONS(4109), 1, - anon_sym_STAR, - STATE(1996), 1, - sym_use_list, - STATE(2483), 1, - sym_type_arguments, + ACTIONS(4091), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55617] = 5, + ACTIONS(4097), 1, + anon_sym_COLON, + ACTIONS(4099), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55756] = 7, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4095), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55636] = 7, + ACTIONS(3778), 1, + anon_sym_LBRACE, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4095), 1, - anon_sym_LBRACE, - ACTIONS(4111), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4101), 1, anon_sym_SEMI, - ACTIONS(4113), 1, - anon_sym_DASH_GT, - STATE(321), 1, - sym_block, - STATE(2126), 1, + STATE(869), 1, + sym_declaration_list, + STATE(2065), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55779] = 7, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(3900), 1, - anon_sym_COLON, - STATE(801), 1, - sym_declaration_list, - STATE(1780), 1, - sym_trait_bounds, - STATE(2189), 1, - sym_where_clause, + [55659] = 6, + ACTIONS(3999), 1, + anon_sym_COLON_COLON, + ACTIONS(4089), 1, + anon_sym_LPAREN, + ACTIONS(4093), 1, + anon_sym_EQ, + STATE(2212), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55802] = 4, - ACTIONS(4115), 1, + ACTIONS(4091), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55680] = 4, + ACTIONS(4099), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -118169,196 +118065,217 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3435), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2614), 3, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(2580), 3, + anon_sym_RPAREN, anon_sym_PLUS, - [55819] = 7, + anon_sym_COMMA, + [55697] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4095), 1, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4117), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4103), 1, anon_sym_SEMI, - ACTIONS(4119), 1, - anon_sym_DASH_GT, - STATE(336), 1, - sym_block, - STATE(2105), 1, + STATE(348), 1, + sym_declaration_list, + STATE(1972), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55842] = 7, + [55720] = 6, + ACTIONS(4001), 1, + anon_sym_COLON_COLON, + ACTIONS(4089), 1, + anon_sym_LPAREN, + ACTIONS(4093), 1, + anon_sym_EQ, + STATE(2212), 1, + sym_meta_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4091), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55741] = 6, + ACTIONS(3572), 1, + anon_sym_COLON_COLON, + ACTIONS(4089), 1, + anon_sym_LPAREN, + ACTIONS(4107), 1, + anon_sym_EQ, + STATE(2213), 1, + sym_meta_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4105), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55762] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4065), 1, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4121), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4109), 1, anon_sym_SEMI, - ACTIONS(4123), 1, - anon_sym_DASH_GT, - STATE(805), 1, - sym_block, - STATE(2087), 1, + STATE(353), 1, + sym_declaration_list, + STATE(2039), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55865] = 7, - ACTIONS(3305), 1, + [55785] = 7, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(4107), 1, - sym_identifier, - ACTIONS(4109), 1, - anon_sym_STAR, - STATE(1996), 1, - sym_use_list, - STATE(2493), 1, - sym_type_arguments, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4111), 1, + anon_sym_SEMI, + STATE(405), 1, + sym_declaration_list, + STATE(1865), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55888] = 4, - ACTIONS(3524), 1, + [55808] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3674), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2734), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [55823] = 4, + ACTIONS(3518), 1, anon_sym_COLON_COLON, - ACTIONS(3806), 1, + ACTIONS(3800), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2580), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [55905] = 6, - ACTIONS(4039), 1, - anon_sym_COLON_COLON, - ACTIONS(4125), 1, - anon_sym_LPAREN, - ACTIONS(4129), 1, - anon_sym_EQ, - STATE(2187), 1, - sym_meta_arguments, + [55840] = 4, + ACTIONS(4113), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4127), 2, - anon_sym_RPAREN, + ACTIONS(3674), 2, anon_sym_COMMA, - [55926] = 7, + anon_sym_PIPE, + ACTIONS(2734), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [55857] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4095), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4131), 1, + ACTIONS(4116), 1, anon_sym_SEMI, - ACTIONS(4133), 1, - anon_sym_DASH_GT, - STATE(273), 1, + STATE(300), 1, sym_block, - STATE(1965), 1, + STATE(2033), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55949] = 6, - ACTIONS(4013), 1, - anon_sym_COLON_COLON, - ACTIONS(4125), 1, - anon_sym_LPAREN, - ACTIONS(4129), 1, - anon_sym_EQ, - STATE(2187), 1, - sym_meta_arguments, + [55880] = 4, + ACTIONS(4118), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4127), 2, - anon_sym_RPAREN, + ACTIONS(3722), 2, anon_sym_COMMA, - [55970] = 7, + anon_sym_PIPE, + ACTIONS(2634), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [55897] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3864), 1, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4135), 1, + ACTIONS(4121), 1, anon_sym_SEMI, - STATE(285), 1, + STATE(344), 1, sym_declaration_list, - STATE(1924), 1, + STATE(1976), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55993] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2746), 2, + [55920] = 7, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(4067), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3598), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4137), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56010] = 6, - ACTIONS(4011), 1, - anon_sym_COLON_COLON, - ACTIONS(4125), 1, - anon_sym_LPAREN, - ACTIONS(4129), 1, - anon_sym_EQ, - STATE(2187), 1, - sym_meta_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4127), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56031] = 7, - ACTIONS(3900), 1, - anon_sym_COLON, - ACTIONS(4140), 1, - anon_sym_COMMA, - ACTIONS(4142), 1, - anon_sym_GT, - STATE(1919), 1, - aux_sym_type_parameters_repeat1, - STATE(1921), 1, - sym_trait_bounds, - STATE(1989), 1, - aux_sym_for_lifetimes_repeat1, + ACTIONS(4123), 1, + anon_sym_SEMI, + STATE(927), 1, + sym_block, + STATE(2017), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56054] = 6, - ACTIONS(3580), 1, + [55943] = 4, + ACTIONS(3518), 1, anon_sym_COLON_COLON, - ACTIONS(4125), 1, - anon_sym_LPAREN, - ACTIONS(4146), 1, - anon_sym_EQ, - STATE(2192), 1, - sym_meta_arguments, + ACTIONS(3820), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2580), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [55960] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4144), 2, + ACTIONS(2634), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3722), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4118), 2, anon_sym_RPAREN, anon_sym_COMMA, - [56075] = 5, - ACTIONS(4150), 1, + [55977] = 5, + ACTIONS(4097), 1, anon_sym_COLON, - ACTIONS(4152), 1, + ACTIONS(4125), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -118366,943 +118283,973 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3435), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4148), 2, + ACTIONS(4095), 2, anon_sym_RPAREN, anon_sym_COMMA, - [56094] = 7, + [55996] = 7, + ACTIONS(3778), 1, + anon_sym_LBRACE, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3798), 1, - anon_sym_LT, - ACTIONS(3802), 1, - anon_sym_LBRACE, - STATE(879), 1, - sym_field_declaration_list, - STATE(1770), 1, - sym_type_parameters, - STATE(2140), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4127), 1, + anon_sym_SEMI, + STATE(844), 1, + sym_declaration_list, + STATE(2071), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56117] = 7, + [56019] = 4, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2580), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [56036] = 7, + ACTIONS(3778), 1, + anon_sym_LBRACE, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3864), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4154), 1, + ACTIONS(4129), 1, anon_sym_SEMI, - STATE(463), 1, + STATE(824), 1, sym_declaration_list, - STATE(1967), 1, + STATE(2078), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56140] = 7, + [56059] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4065), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4156), 1, + ACTIONS(4131), 1, anon_sym_SEMI, - STATE(827), 1, + ACTIONS(4133), 1, + anon_sym_DASH_GT, + STATE(423), 1, sym_block, - STATE(2071), 1, + STATE(1880), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56163] = 7, + [56082] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3864), 1, + ACTIONS(3798), 1, + anon_sym_LT, + ACTIONS(4135), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4158), 1, - anon_sym_SEMI, - STATE(354), 1, - sym_declaration_list, - STATE(2073), 1, + STATE(458), 1, + sym_enum_variant_list, + STATE(1759), 1, + sym_type_parameters, + STATE(2254), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56186] = 7, + [56105] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4160), 1, + ACTIONS(4137), 1, anon_sym_SEMI, - STATE(834), 1, + STATE(379), 1, sym_declaration_list, - STATE(2070), 1, + STATE(1941), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56209] = 7, + [56128] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4095), 1, + ACTIONS(4067), 1, anon_sym_LBRACE, - ACTIONS(4162), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4139), 1, anon_sym_SEMI, - STATE(407), 1, + STATE(998), 1, sym_block, - STATE(1895), 1, + STATE(1954), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56232] = 7, - ACTIONS(3538), 1, - anon_sym_EQ, - ACTIONS(3540), 1, - anon_sym_COMMA, - ACTIONS(3542), 1, - anon_sym_GT, - ACTIONS(3900), 1, - anon_sym_COLON, - STATE(1914), 1, - sym_trait_bounds, - STATE(1915), 1, - aux_sym_type_parameters_repeat1, + [56151] = 7, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(4067), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4141), 1, + anon_sym_SEMI, + STATE(983), 1, + sym_block, + STATE(1955), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56255] = 7, + [56174] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3864), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4164), 1, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4143), 1, anon_sym_SEMI, - STATE(458), 1, - sym_declaration_list, - STATE(1951), 1, + STATE(407), 1, + sym_block, + STATE(2111), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56278] = 7, + [56197] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4166), 1, + ACTIONS(4145), 1, anon_sym_SEMI, - STATE(836), 1, + STATE(381), 1, sym_declaration_list, - STATE(2069), 1, + STATE(1940), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56301] = 4, - ACTIONS(4137), 1, - anon_sym_RBRACK, + [56220] = 4, + ACTIONS(3518), 1, + anon_sym_COLON_COLON, + ACTIONS(3868), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3598), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2746), 3, + ACTIONS(2580), 4, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH_GT, - [56318] = 4, - ACTIONS(4168), 1, - anon_sym_COLON_COLON, + anon_sym_where, + [56237] = 7, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3798), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_LBRACE, + STATE(476), 1, + sym_field_declaration_list, + STATE(1825), 1, + sym_type_parameters, + STATE(2220), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2614), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [56335] = 5, - ACTIONS(4089), 1, - anon_sym_COLON, - ACTIONS(4168), 1, - anon_sym_COLON_COLON, + [56260] = 7, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4147), 1, + anon_sym_SEMI, + ACTIONS(4149), 1, + anon_sym_DASH_GT, + STATE(472), 1, + sym_block, + STATE(2045), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4087), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56354] = 4, - ACTIONS(3524), 1, + [56283] = 4, + ACTIONS(3518), 1, anon_sym_COLON_COLON, - ACTIONS(3834), 1, + ACTIONS(3870), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, + ACTIONS(2580), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56371] = 7, + [56300] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(4067), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4170), 1, + ACTIONS(4151), 1, anon_sym_SEMI, - STATE(855), 1, - sym_declaration_list, - STATE(2065), 1, + ACTIONS(4153), 1, + anon_sym_DASH_GT, + STATE(792), 1, + sym_block, + STATE(2110), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56394] = 4, - ACTIONS(4172), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3676), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2676), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [56411] = 7, + [56323] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(4067), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4175), 1, + ACTIONS(4155), 1, anon_sym_SEMI, - STATE(898), 1, - sym_declaration_list, - STATE(2121), 1, + STATE(938), 1, + sym_block, + STATE(1957), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56434] = 7, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(3864), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4177), 1, - anon_sym_SEMI, - STATE(344), 1, - sym_declaration_list, - STATE(2088), 1, - sym_where_clause, + [56346] = 7, + ACTIONS(3882), 1, + anon_sym_COLON, + ACTIONS(4157), 1, + anon_sym_COMMA, + ACTIONS(4159), 1, + anon_sym_GT, + STATE(1989), 1, + aux_sym_for_lifetimes_repeat1, + STATE(1992), 1, + sym_trait_bounds, + STATE(1993), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56369] = 7, + ACTIONS(3526), 1, + anon_sym_EQ, + ACTIONS(3528), 1, + anon_sym_COMMA, + ACTIONS(3530), 1, + anon_sym_GT, + ACTIONS(3882), 1, + anon_sym_COLON, + STATE(1879), 1, + aux_sym_type_parameters_repeat1, + STATE(1998), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56392] = 4, + ACTIONS(3518), 1, + anon_sym_COLON_COLON, + ACTIONS(3874), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56457] = 7, + ACTIONS(2580), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [56409] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4179), 1, + ACTIONS(4161), 1, anon_sym_SEMI, - STATE(861), 1, + STATE(276), 1, sym_declaration_list, - STATE(2063), 1, + STATE(2048), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56480] = 7, + [56432] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4065), 1, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4181), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4163), 1, anon_sym_SEMI, - ACTIONS(4183), 1, - anon_sym_DASH_GT, - STATE(869), 1, - sym_block, - STATE(2059), 1, + STATE(283), 1, + sym_declaration_list, + STATE(1983), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56503] = 7, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(3864), 1, - anon_sym_LBRACE, - ACTIONS(3900), 1, - anon_sym_COLON, - STATE(358), 1, - sym_declaration_list, - STATE(1827), 1, - sym_trait_bounds, - STATE(2285), 1, - sym_where_clause, + [56455] = 4, + ACTIONS(3518), 1, + anon_sym_COLON_COLON, + ACTIONS(3826), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56526] = 7, + ACTIONS(2580), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [56472] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3864), 1, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4185), 1, + ACTIONS(4165), 1, anon_sym_SEMI, - STATE(348), 1, + STATE(274), 1, sym_declaration_list, - STATE(2084), 1, + STATE(2049), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56549] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3676), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2676), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [56564] = 7, + [56495] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3864), 1, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4187), 1, + ACTIONS(4167), 1, anon_sym_SEMI, - STATE(405), 1, + STATE(459), 1, sym_declaration_list, - STATE(1961), 1, + STATE(1950), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56587] = 7, + [56518] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(3798), 1, + anon_sym_LT, + ACTIONS(4169), 1, anon_sym_LBRACE, - ACTIONS(3900), 1, - anon_sym_COLON, - STATE(895), 1, - sym_declaration_list, - STATE(1796), 1, - sym_trait_bounds, - STATE(2237), 1, + STATE(836), 1, + sym_enum_variant_list, + STATE(1801), 1, + sym_type_parameters, + STATE(2219), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56610] = 7, - ACTIONS(3538), 1, + [56541] = 7, + ACTIONS(3526), 1, anon_sym_EQ, - ACTIONS(3900), 1, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(4189), 1, + ACTIONS(4171), 1, anon_sym_COMMA, - ACTIONS(4191), 1, + ACTIONS(4173), 1, anon_sym_GT, - STATE(1914), 1, + STATE(1998), 1, sym_trait_bounds, - STATE(2101), 1, + STATE(2099), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56633] = 7, + [56564] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(3900), 1, - anon_sym_COLON, - STATE(781), 1, - sym_declaration_list, - STATE(1767), 1, - sym_trait_bounds, - STATE(2147), 1, + ACTIONS(4175), 1, + anon_sym_SEMI, + ACTIONS(4177), 1, + anon_sym_DASH_GT, + STATE(441), 1, + sym_block, + STATE(2091), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56656] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3598), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2746), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [56671] = 7, + [56587] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3864), 1, + ACTIONS(4067), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4193), 1, + ACTIONS(4179), 1, anon_sym_SEMI, - STATE(432), 1, - sym_declaration_list, - STATE(1920), 1, + ACTIONS(4181), 1, + anon_sym_DASH_GT, + STATE(847), 1, + sym_block, + STATE(1959), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56694] = 4, - ACTIONS(3524), 1, + [56610] = 5, + ACTIONS(4185), 1, + anon_sym_COLON, + ACTIONS(4187), 1, anon_sym_COLON_COLON, - ACTIONS(3874), 1, - anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4183), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56629] = 7, + ACTIONS(3778), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [56711] = 6, - ACTIONS(798), 1, - anon_sym_DOT_DOT, - ACTIONS(3888), 1, - sym_identifier, - ACTIONS(3894), 1, - anon_sym_ref, - ACTIONS(3896), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2135), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [56732] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3798), 1, - anon_sym_LT, - ACTIONS(4195), 1, - anon_sym_LBRACE, - STATE(277), 1, - sym_enum_variant_list, - STATE(1801), 1, - sym_type_parameters, - STATE(2269), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4189), 1, + anon_sym_SEMI, + STATE(942), 1, + sym_declaration_list, + STATE(2015), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56755] = 7, + [56652] = 7, + ACTIONS(3778), 1, + anon_sym_LBRACE, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3864), 1, - anon_sym_LBRACE, - ACTIONS(3900), 1, - anon_sym_COLON, - STATE(427), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4191), 1, + anon_sym_SEMI, + STATE(945), 1, sym_declaration_list, - STATE(1842), 1, - sym_trait_bounds, - STATE(2206), 1, + STATE(2013), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56778] = 7, + [56675] = 7, + ACTIONS(3778), 1, + anon_sym_LBRACE, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4075), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4095), 1, - anon_sym_LBRACE, - ACTIONS(4197), 1, + ACTIONS(4193), 1, anon_sym_SEMI, - STATE(388), 1, - sym_block, - STATE(1962), 1, + STATE(975), 1, + sym_declaration_list, + STATE(2004), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56801] = 7, + [56698] = 7, + ACTIONS(3778), 1, + anon_sym_LBRACE, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4065), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4199), 1, + ACTIONS(4195), 1, anon_sym_SEMI, - STATE(911), 1, - sym_block, - STATE(2053), 1, + STATE(882), 1, + sym_declaration_list, + STATE(2036), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56824] = 7, + [56721] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4075), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4095), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4201), 1, + ACTIONS(4197), 1, anon_sym_SEMI, - STATE(394), 1, + STATE(262), 1, sym_block, - STATE(1923), 1, + STATE(2056), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56847] = 7, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(4075), 1, + [56744] = 7, + ACTIONS(2480), 1, anon_sym_PLUS, - ACTIONS(4095), 1, - anon_sym_LBRACE, - ACTIONS(4203), 1, - anon_sym_SEMI, - STATE(302), 1, - sym_block, - STATE(2081), 1, - sym_where_clause, + ACTIONS(3882), 1, + anon_sym_COLON, + ACTIONS(4199), 1, + anon_sym_COMMA, + ACTIONS(4201), 1, + anon_sym_GT, + STATE(1992), 1, + sym_trait_bounds, + STATE(1993), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56767] = 6, + ACTIONS(3175), 1, + anon_sym_COLON_COLON, + ACTIONS(4199), 1, + anon_sym_COMMA, + ACTIONS(4201), 1, + anon_sym_GT, + STATE(1993), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56870] = 7, + ACTIONS(2580), 2, + anon_sym_PLUS, + anon_sym_as, + [56788] = 7, + ACTIONS(3778), 1, + anon_sym_LBRACE, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3798), 1, - anon_sym_LT, - ACTIONS(4195), 1, - anon_sym_LBRACE, - STATE(465), 1, - sym_enum_variant_list, - STATE(1800), 1, - sym_type_parameters, - STATE(2251), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4203), 1, + anon_sym_SEMI, + STATE(990), 1, + sym_declaration_list, + STATE(1863), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56893] = 7, + [56811] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3864), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4073), 1, anon_sym_PLUS, + ACTIONS(4081), 1, + anon_sym_LBRACE, ACTIONS(4205), 1, anon_sym_SEMI, - STATE(379), 1, - sym_declaration_list, - STATE(2031), 1, + STATE(394), 1, + sym_block, + STATE(2096), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56916] = 7, + [56834] = 7, + ACTIONS(3794), 1, + anon_sym_LBRACE, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3864), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4207), 1, - anon_sym_SEMI, - STATE(381), 1, - sym_declaration_list, - STATE(2020), 1, + ACTIONS(3798), 1, + anon_sym_LT, + STATE(807), 1, + sym_field_declaration_list, + STATE(1840), 1, + sym_type_parameters, + STATE(2138), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56939] = 7, + [56857] = 7, ACTIONS(3796), 1, anon_sym_where, ACTIONS(3798), 1, anon_sym_LT, - ACTIONS(4061), 1, + ACTIONS(4169), 1, anon_sym_LBRACE, - STATE(975), 1, + STATE(833), 1, sym_enum_variant_list, - STATE(1797), 1, + STATE(1781), 1, sym_type_parameters, - STATE(2302), 1, + STATE(2216), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56962] = 7, + [56880] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4209), 1, + ACTIONS(4207), 1, anon_sym_SEMI, - STATE(939), 1, + STATE(463), 1, sym_declaration_list, - STATE(2051), 1, + STATE(1965), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56985] = 7, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4211), 1, + [56903] = 7, + ACTIONS(3882), 1, + anon_sym_COLON, + ACTIONS(3884), 1, + anon_sym_LT, + ACTIONS(4209), 1, anon_sym_SEMI, - STATE(992), 1, - sym_declaration_list, - STATE(2038), 1, - sym_where_clause, + ACTIONS(4211), 1, + anon_sym_EQ, + STATE(1782), 1, + sym_type_parameters, + STATE(2471), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57008] = 7, + [56926] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4095), 1, + ACTIONS(4067), 1, anon_sym_LBRACE, ACTIONS(4213), 1, anon_sym_SEMI, - STATE(339), 1, + ACTIONS(4215), 1, + anon_sym_DASH_GT, + STATE(1008), 1, sym_block, - STATE(1930), 1, + STATE(1995), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57031] = 7, - ACTIONS(3900), 1, - anon_sym_COLON, - ACTIONS(3902), 1, - anon_sym_LT, - ACTIONS(4215), 1, - anon_sym_SEMI, - ACTIONS(4217), 1, - anon_sym_EQ, - STATE(1781), 1, - sym_type_parameters, - STATE(2428), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57054] = 7, + [56949] = 7, + ACTIONS(3778), 1, + anon_sym_LBRACE, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3798), 1, - anon_sym_LT, - ACTIONS(3802), 1, - anon_sym_LBRACE, - STATE(1004), 1, - sym_field_declaration_list, - STATE(1778), 1, - sym_type_parameters, - STATE(2252), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4217), 1, + anon_sym_SEMI, + STATE(856), 1, + sym_declaration_list, + STATE(2127), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57077] = 7, + [56972] = 7, ACTIONS(3794), 1, anon_sym_LBRACE, ACTIONS(3796), 1, anon_sym_where, ACTIONS(3798), 1, anon_sym_LT, - STATE(476), 1, + STATE(920), 1, sym_field_declaration_list, - STATE(1791), 1, + STATE(1774), 1, sym_type_parameters, - STATE(2222), 1, + STATE(2200), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57100] = 4, - ACTIONS(3524), 1, - anon_sym_COLON_COLON, - ACTIONS(3880), 1, - anon_sym_for, + [56995] = 7, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4219), 1, + anon_sym_SEMI, + STATE(339), 1, + sym_block, + STATE(2089), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57117] = 7, + [57018] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4095), 1, + ACTIONS(4067), 1, anon_sym_LBRACE, - ACTIONS(4219), 1, - anon_sym_SEMI, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(4221), 1, - anon_sym_DASH_GT, - STATE(423), 1, + anon_sym_SEMI, + STATE(827), 1, sym_block, - STATE(1881), 1, + STATE(1964), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57140] = 7, + [57041] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4065), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, ACTIONS(4223), 1, anon_sym_SEMI, - STATE(1009), 1, + ACTIONS(4225), 1, + anon_sym_DASH_GT, + STATE(280), 1, sym_block, - STATE(2036), 1, + STATE(2063), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57163] = 4, + [57064] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2676), 2, + ACTIONS(2734), 2, anon_sym_PLUS, anon_sym_DASH_GT, - ACTIONS(3676), 2, + ACTIONS(3674), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4172), 2, + ACTIONS(4113), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57180] = 7, + [57081] = 7, + ACTIONS(3778), 1, + anon_sym_LBRACE, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4065), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4225), 1, - anon_sym_SEMI, - STATE(1020), 1, - sym_block, - STATE(2040), 1, + ACTIONS(3882), 1, + anon_sym_COLON, + STATE(895), 1, + sym_declaration_list, + STATE(1838), 1, + sym_trait_bounds, + STATE(2152), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57203] = 7, + [57104] = 7, + ACTIONS(3778), 1, + anon_sym_LBRACE, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4095), 1, - anon_sym_LBRACE, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(4227), 1, anon_sym_SEMI, - ACTIONS(4229), 1, - anon_sym_DASH_GT, - STATE(270), 1, - sym_block, - STATE(1876), 1, + STATE(812), 1, + sym_declaration_list, + STATE(1969), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57226] = 7, + [57127] = 7, + ACTIONS(3778), 1, + anon_sym_LBRACE, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4065), 1, + ACTIONS(3882), 1, + anon_sym_COLON, + STATE(1032), 1, + sym_declaration_list, + STATE(1764), 1, + sym_trait_bounds, + STATE(2235), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57150] = 7, + ACTIONS(3778), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4231), 1, + ACTIONS(4229), 1, anon_sym_SEMI, - STATE(1037), 1, - sym_block, - STATE(2041), 1, + STATE(809), 1, + sym_declaration_list, + STATE(1973), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57249] = 7, + [57173] = 4, + ACTIONS(4231), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2580), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [57190] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4065), 1, + ACTIONS(4067), 1, anon_sym_LBRACE, ACTIONS(4233), 1, anon_sym_SEMI, ACTIONS(4235), 1, anon_sym_DASH_GT, - STATE(1036), 1, + STATE(1037), 1, sym_block, - STATE(2092), 1, + STATE(1980), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57272] = 7, + [57213] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4065), 1, + ACTIONS(4067), 1, anon_sym_LBRACE, ACTIONS(4237), 1, anon_sym_SEMI, ACTIONS(4239), 1, anon_sym_DASH_GT, - STATE(971), 1, + STATE(1034), 1, sym_block, - STATE(2044), 1, + STATE(2090), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57295] = 7, + [57236] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4073), 1, anon_sym_PLUS, + ACTIONS(4081), 1, + anon_sym_LBRACE, ACTIONS(4241), 1, anon_sym_SEMI, - STATE(967), 1, - sym_declaration_list, - STATE(2106), 1, + STATE(388), 1, + sym_block, + STATE(1916), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57318] = 7, + [57259] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(4067), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4073), 1, anon_sym_PLUS, ACTIONS(4243), 1, anon_sym_SEMI, - STATE(944), 1, - sym_declaration_list, - STATE(2049), 1, + STATE(870), 1, + sym_block, + STATE(1978), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57341] = 7, + [57282] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3722), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2634), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [57297] = 7, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4065), 1, + ACTIONS(3798), 1, + anon_sym_LT, + ACTIONS(4135), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4245), 1, - anon_sym_SEMI, - STATE(955), 1, - sym_block, - STATE(2048), 1, + STATE(277), 1, + sym_enum_variant_list, + STATE(1798), 1, + sym_type_parameters, + STATE(2178), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57364] = 4, - ACTIONS(4168), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4148), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57380] = 3, + [57320] = 6, + ACTIONS(798), 1, + anon_sym_DOT_DOT, + ACTIONS(3939), 1, + sym_identifier, + ACTIONS(3945), 1, + anon_sym_ref, + ACTIONS(3947), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3654), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2940), 3, - anon_sym_RPAREN, + STATE(2247), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [57341] = 7, + ACTIONS(3778), 1, + anon_sym_LBRACE, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(4073), 1, anon_sym_PLUS, - anon_sym_COMMA, - [57394] = 6, - ACTIONS(2542), 1, - anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(3443), 1, - anon_sym_COLON_COLON, - STATE(952), 1, - sym_parameters, - STATE(1341), 1, - sym_type_arguments, + ACTIONS(4245), 1, + anon_sym_SEMI, + STATE(1003), 1, + sym_declaration_list, + STATE(2104), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57414] = 2, + [57364] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -119312,297 +119259,342 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57426] = 6, - ACTIONS(3900), 1, + [57376] = 6, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(4083), 1, + ACTIONS(4249), 1, anon_sym_COMMA, - ACTIONS(4085), 1, + ACTIONS(4251), 1, anon_sym_GT, - STATE(1919), 1, - aux_sym_type_parameters_repeat1, - STATE(1921), 1, + STATE(1992), 1, sym_trait_bounds, + STATE(2101), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57446] = 3, - ACTIONS(4249), 1, + [57396] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3009), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, anon_sym_EQ, + [57408] = 5, + ACTIONS(4253), 1, + anon_sym_RPAREN, + ACTIONS(4256), 1, + anon_sym_COMMA, + STATE(2084), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3423), 2, + anon_sym_COLON, + anon_sym_PIPE, + [57426] = 5, + ACTIONS(3604), 1, + anon_sym_COLON, + ACTIONS(3606), 1, + anon_sym_BANG, + ACTIONS(3648), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2710), 4, + ACTIONS(3540), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [57444] = 4, + ACTIONS(2580), 1, anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3423), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4259), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, + [57460] = 6, + ACTIONS(2542), 1, + anon_sym_LPAREN, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3443), 1, anon_sym_COLON_COLON, - [57460] = 5, - ACTIONS(3538), 1, - anon_sym_EQ, - ACTIONS(3900), 1, - anon_sym_COLON, - STATE(1914), 1, - sym_trait_bounds, + STATE(1025), 1, + sym_parameters, + STATE(1342), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4251), 2, + [57480] = 5, + ACTIONS(4262), 1, + anon_sym_RPAREN, + ACTIONS(4264), 1, anon_sym_COMMA, - anon_sym_GT, - [57478] = 2, + STATE(2084), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3001), 5, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3423), 2, anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [57490] = 2, + anon_sym_PIPE, + [57498] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2946), 5, + ACTIONS(4266), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, - [57502] = 2, + anon_sym_COMMA, + [57510] = 4, + ACTIONS(4270), 1, + anon_sym_as, + ACTIONS(4272), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4253), 5, + ACTIONS(4268), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [57514] = 2, + [57526] = 4, + ACTIONS(4276), 1, + anon_sym_as, + ACTIONS(4278), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4255), 5, + ACTIONS(4274), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [57526] = 6, - ACTIONS(4257), 1, - anon_sym_RPAREN, - ACTIONS(4259), 1, + [57542] = 5, + ACTIONS(3538), 1, + anon_sym_COLON_COLON, + ACTIONS(3606), 1, + anon_sym_BANG, + ACTIONS(4280), 1, anon_sym_COLON, - ACTIONS(4261), 1, - anon_sym_COMMA, - ACTIONS(4263), 1, - anon_sym_PIPE, - STATE(2015), 1, - aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57546] = 2, + ACTIONS(3540), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [57560] = 4, + ACTIONS(4276), 1, + anon_sym_as, + ACTIONS(4282), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4265), 5, + ACTIONS(4274), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [57558] = 2, + [57576] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4267), 5, + ACTIONS(4284), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57570] = 4, - ACTIONS(4091), 1, + [57588] = 4, + ACTIONS(4276), 1, + anon_sym_as, + ACTIONS(4286), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4269), 2, - anon_sym_RPAREN, + ACTIONS(4274), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - [57586] = 2, + [57604] = 4, + ACTIONS(4259), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4271), 5, + ACTIONS(2580), 2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(3423), 2, anon_sym_COMMA, - [57598] = 5, - ACTIONS(3644), 1, + anon_sym_PIPE, + [57620] = 5, + ACTIONS(3538), 1, + anon_sym_COLON_COLON, + ACTIONS(3604), 1, anon_sym_COLON, - ACTIONS(3646), 1, + ACTIONS(3606), 1, anon_sym_BANG, - ACTIONS(3648), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3540), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [57638] = 5, + ACTIONS(3604), 1, + anon_sym_COLON, + ACTIONS(3606), 1, + anon_sym_BANG, + ACTIONS(3608), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3522), 2, + ACTIONS(3540), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [57616] = 2, + [57656] = 4, + ACTIONS(4288), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4273), 5, + ACTIONS(2840), 2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57628] = 4, - ACTIONS(2940), 1, anon_sym_PLUS, + ACTIONS(3650), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [57672] = 4, + ACTIONS(4099), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3654), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4275), 2, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4291), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57644] = 6, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(3441), 1, - anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_COLON_COLON, - STATE(1341), 1, - sym_type_arguments, - STATE(1374), 1, - sym_parameters, + [57688] = 6, + ACTIONS(4293), 1, + anon_sym_RPAREN, + ACTIONS(4295), 1, + anon_sym_COLON, + ACTIONS(4297), 1, + anon_sym_COMMA, + ACTIONS(4299), 1, + anon_sym_PIPE, + STATE(2014), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57664] = 2, + [57708] = 5, + ACTIONS(762), 1, + anon_sym_RPAREN, + ACTIONS(4301), 1, + anon_sym_COMMA, + STATE(2021), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4278), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57676] = 6, + ACTIONS(3423), 2, + anon_sym_COLON, + anon_sym_PIPE, + [57726] = 6, ACTIONS(3437), 1, anon_sym_LT2, ACTIONS(3443), 1, anon_sym_COLON_COLON, - ACTIONS(3536), 1, + ACTIONS(3524), 1, anon_sym_COLON, - STATE(1341), 1, + STATE(1342), 1, sym_type_arguments, STATE(2098), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57696] = 2, + [57746] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4280), 5, + ACTIONS(4303), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57708] = 5, - ACTIONS(3520), 1, - anon_sym_COLON_COLON, - ACTIONS(3646), 1, - anon_sym_BANG, - ACTIONS(4282), 1, - anon_sym_COLON, + [57758] = 3, + ACTIONS(4305), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3522), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [57726] = 2, + ACTIONS(2668), 4, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_COLON_COLON, + [57772] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4284), 5, + ACTIONS(4307), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57738] = 2, + [57784] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4286), 5, + ACTIONS(4309), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57750] = 5, - ACTIONS(4288), 1, - anon_sym_RPAREN, - ACTIONS(4290), 1, - anon_sym_COMMA, - STATE(2127), 1, - aux_sym_parameters_repeat1, + [57796] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3423), 2, - anon_sym_COLON, - anon_sym_PIPE, - [57768] = 5, - ACTIONS(760), 1, - anon_sym_RPAREN, - ACTIONS(4292), 1, + ACTIONS(4311), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - STATE(1942), 1, - aux_sym_parameters_repeat1, + [57808] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3423), 2, - anon_sym_COLON, - anon_sym_PIPE, - [57786] = 5, - ACTIONS(762), 1, + ACTIONS(3911), 5, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(4294), 1, - anon_sym_COMMA, - STATE(2072), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3423), 2, - anon_sym_COLON, - anon_sym_PIPE, - [57804] = 4, - ACTIONS(4168), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + [57820] = 4, + ACTIONS(4099), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -119610,35 +119602,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3435), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4269), 2, + ACTIONS(4183), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57820] = 4, - ACTIONS(4275), 1, - anon_sym_RBRACK, + [57836] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2940), 2, + ACTIONS(4313), 5, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3654), 2, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_PIPE, - [57836] = 4, - ACTIONS(4296), 1, - anon_sym_RBRACK, + [57848] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 2, + ACTIONS(2826), 5, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3423), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [57852] = 4, - ACTIONS(4091), 1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [57860] = 4, + ACTIONS(4125), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -119646,165 +119634,178 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3435), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4148), 2, + ACTIONS(4291), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57868] = 2, + [57876] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4299), 5, + ACTIONS(4315), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57880] = 4, - ACTIONS(2614), 1, - anon_sym_PLUS, + [57888] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3423), 2, + ACTIONS(3650), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4296), 2, + ACTIONS(2840), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [57896] = 5, - ACTIONS(3644), 1, - anon_sym_COLON, - ACTIONS(3646), 1, - anon_sym_BANG, - ACTIONS(3736), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3522), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [57914] = 2, + [57902] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4301), 5, + ACTIONS(4317), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57926] = 5, - ACTIONS(3520), 1, + [57914] = 6, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3443), 1, anon_sym_COLON_COLON, - ACTIONS(3644), 1, + STATE(1342), 1, + sym_type_arguments, + STATE(1371), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57934] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3423), 2, anon_sym_COLON, - ACTIONS(3646), 1, - anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(2580), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [57948] = 5, + ACTIONS(4319), 1, + anon_sym_RPAREN, + ACTIONS(4321), 1, + anon_sym_COMMA, + STATE(2117), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3522), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [57944] = 2, + ACTIONS(3423), 2, + anon_sym_COLON, + anon_sym_PIPE, + [57966] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2872), 5, + ACTIONS(2788), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [57956] = 2, + [57978] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2868), 5, + ACTIONS(2850), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [57968] = 4, - ACTIONS(4305), 1, - anon_sym_as, - ACTIONS(4307), 1, - anon_sym_COLON_COLON, + [57990] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4303), 3, + ACTIONS(2764), 5, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [57984] = 4, - ACTIONS(4305), 1, - anon_sym_as, - ACTIONS(4309), 1, - anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [58002] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4303), 3, + ACTIONS(4323), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [58000] = 4, - ACTIONS(4305), 1, - anon_sym_as, - ACTIONS(4311), 1, + [58014] = 4, + ACTIONS(4125), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4303), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4183), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [58016] = 3, + [58030] = 4, + ACTIONS(2840), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3423), 2, + ACTIONS(3650), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2614), 3, + ACTIONS(4288), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [58030] = 4, - ACTIONS(4315), 1, - anon_sym_as, - ACTIONS(4317), 1, - anon_sym_COLON_COLON, + [58046] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4313), 3, + ACTIONS(4325), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [58046] = 5, - ACTIONS(4319), 1, - anon_sym_RPAREN, - ACTIONS(4321), 1, + [58058] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4327), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - STATE(2079), 1, - aux_sym_parameters_repeat1, + [58070] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3423), 2, + ACTIONS(2834), 5, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COLON, - anon_sym_PIPE, - [58064] = 5, - ACTIONS(4323), 1, + anon_sym_where, + anon_sym_EQ, + [58082] = 5, + ACTIONS(760), 1, anon_sym_RPAREN, - ACTIONS(4326), 1, + ACTIONS(4329), 1, anon_sym_COMMA, - STATE(2079), 1, + STATE(1913), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, @@ -119812,2379 +119813,2359 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3423), 2, anon_sym_COLON, anon_sym_PIPE, - [58082] = 2, + [58100] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4329), 5, + ACTIONS(4331), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58094] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3953), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - [58106] = 2, + [58112] = 5, + ACTIONS(3526), 1, + anon_sym_EQ, + ACTIONS(3882), 1, + anon_sym_COLON, + STATE(1998), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2997), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [58118] = 6, - ACTIONS(3900), 1, + ACTIONS(4333), 2, + anon_sym_COMMA, + anon_sym_GT, + [58130] = 6, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(4331), 1, + ACTIONS(4199), 1, anon_sym_COMMA, - ACTIONS(4333), 1, + ACTIONS(4201), 1, anon_sym_GT, - STATE(1921), 1, + STATE(1992), 1, sym_trait_bounds, - STATE(2103), 1, + STATE(1993), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58138] = 2, + [58150] = 5, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_LT, + STATE(1669), 1, + sym_parameters, + STATE(2179), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3013), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [58150] = 4, - ACTIONS(3520), 1, - anon_sym_COLON_COLON, - ACTIONS(3646), 1, + [58167] = 4, + ACTIONS(3606), 1, anon_sym_BANG, + ACTIONS(3608), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3522), 2, + ACTIONS(3540), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [58165] = 4, - ACTIONS(4335), 1, - anon_sym_COMMA, - STATE(1832), 1, - aux_sym_where_clause_repeat1, + [58182] = 5, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(4135), 1, + anon_sym_LBRACE, + STATE(420), 1, + sym_enum_variant_list, + STATE(2314), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2824), 2, + [58199] = 5, + ACTIONS(3596), 1, + anon_sym_PIPE, + ACTIONS(4335), 1, anon_sym_SEMI, - anon_sym_LBRACE, - [58180] = 5, - ACTIONS(2473), 1, - anon_sym_PLUS, ACTIONS(4337), 1, - anon_sym_COMMA, + anon_sym_COLON, ACTIONS(4339), 1, - anon_sym_GT, - STATE(2133), 1, - aux_sym_type_arguments_repeat1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58197] = 5, - ACTIONS(4075), 1, + [58216] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(984), 1, + sym_line_comment, + ACTIONS(4341), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4343), 3, anon_sym_PLUS, - ACTIONS(4337), 1, + anon_sym_STAR, + anon_sym_QMARK, + [58231] = 5, + ACTIONS(4199), 1, anon_sym_COMMA, - ACTIONS(4339), 1, + ACTIONS(4201), 1, anon_sym_GT, - STATE(2133), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4345), 1, + anon_sym_EQ, + STATE(1993), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58248] = 5, + ACTIONS(4293), 1, + anon_sym_RPAREN, + ACTIONS(4297), 1, + anon_sym_COMMA, + ACTIONS(4299), 1, + anon_sym_PIPE, + STATE(2014), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58214] = 5, + [58265] = 5, + ACTIONS(3778), 1, + anon_sym_LBRACE, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4061), 1, - anon_sym_LBRACE, - STATE(807), 1, - sym_enum_variant_list, - STATE(2195), 1, + STATE(841), 1, + sym_declaration_list, + STATE(2256), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58231] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4288), 1, - anon_sym_RPAREN, - ACTIONS(4290), 1, - anon_sym_COMMA, - STATE(2127), 1, - aux_sym_parameters_repeat1, + [58282] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4347), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58248] = 4, - ACTIONS(2303), 1, - anon_sym_POUND, - ACTIONS(4341), 1, - sym_identifier, + STATE(1120), 2, + sym_if_expression, + sym_block, + [58297] = 4, + ACTIONS(3882), 1, + anon_sym_COLON, + STATE(1992), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1121), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [58263] = 5, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(4349), 2, + anon_sym_COMMA, + anon_sym_GT, + [58312] = 5, + ACTIONS(3987), 1, + anon_sym_LPAREN, + ACTIONS(3989), 1, anon_sym_LBRACE, - STATE(800), 1, - sym_declaration_list, - STATE(2188), 1, - sym_where_clause, + ACTIONS(3991), 1, + anon_sym_LBRACK, + STATE(1095), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58280] = 5, - ACTIONS(4083), 1, + [58329] = 5, + ACTIONS(760), 1, + anon_sym_RPAREN, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4329), 1, anon_sym_COMMA, - ACTIONS(4085), 1, - anon_sym_GT, - ACTIONS(4343), 1, - anon_sym_EQ, - STATE(1919), 1, - aux_sym_type_parameters_repeat1, + STATE(1913), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58297] = 5, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(3864), 1, - anon_sym_LBRACE, - STATE(258), 1, - sym_declaration_list, - STATE(2313), 1, - sym_where_clause, + [58346] = 5, + ACTIONS(4299), 1, + anon_sym_PIPE, + ACTIONS(4352), 1, + anon_sym_SEMI, + ACTIONS(4354), 1, + anon_sym_COLON, + ACTIONS(4356), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58314] = 5, + [58363] = 5, + ACTIONS(3778), 1, + anon_sym_LBRACE, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LBRACE, - STATE(791), 1, + STATE(1002), 1, sym_declaration_list, - STATE(2183), 1, + STATE(2229), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58331] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4345), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1095), 2, - sym_if_expression, - sym_block, - [58346] = 5, - ACTIONS(4075), 1, + [58380] = 5, + ACTIONS(4073), 1, anon_sym_PLUS, ACTIONS(4319), 1, anon_sym_RPAREN, ACTIONS(4321), 1, anon_sym_COMMA, - STATE(2079), 1, + STATE(2117), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58363] = 5, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(3802), 1, - anon_sym_LBRACE, - STATE(813), 1, - sym_field_declaration_list, - STATE(2200), 1, - sym_where_clause, + [58397] = 5, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4358), 1, + anon_sym_COMMA, + ACTIONS(4360), 1, + anon_sym_GT, + STATE(2085), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58380] = 5, - ACTIONS(4347), 1, + [58414] = 5, + ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(4349), 1, - anon_sym_LBRACE, - ACTIONS(4351), 1, - anon_sym_LBRACK, - STATE(1899), 1, - sym_token_tree, + ACTIONS(3798), 1, + anon_sym_LT, + STATE(1697), 1, + sym_parameters, + STATE(2206), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58397] = 5, + [58431] = 5, + ACTIONS(3794), 1, + anon_sym_LBRACE, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3864), 1, - anon_sym_LBRACE, - STATE(324), 1, - sym_declaration_list, - STATE(2170), 1, + STATE(826), 1, + sym_field_declaration_list, + STATE(2139), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58414] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(986), 1, - sym_line_comment, - ACTIONS(4353), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4355), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [58429] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4357), 1, - anon_sym_RPAREN, - ACTIONS(4359), 1, - anon_sym_COMMA, - STATE(1911), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58446] = 5, - ACTIONS(760), 1, - anon_sym_RPAREN, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4292), 1, - anon_sym_COMMA, - STATE(1942), 1, - aux_sym_parameters_repeat1, + [58448] = 4, + ACTIONS(4362), 1, + anon_sym_DQUOTE, + STATE(1784), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(4364), 2, + sym__string_content, + sym_escape_sequence, [58463] = 5, - ACTIONS(762), 1, - anon_sym_RPAREN, - ACTIONS(4075), 1, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4294), 1, + ACTIONS(4366), 1, + anon_sym_RPAREN, + ACTIONS(4368), 1, anon_sym_COMMA, - STATE(2072), 1, - aux_sym_parameters_repeat1, + STATE(2044), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [58480] = 5, - ACTIONS(4075), 1, + ACTIONS(2480), 1, anon_sym_PLUS, - ACTIONS(4361), 1, - anon_sym_RPAREN, - ACTIONS(4363), 1, + ACTIONS(4358), 1, anon_sym_COMMA, - STATE(2057), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4360), 1, + anon_sym_GT, + STATE(2085), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [58497] = 5, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3882), 1, + anon_sym_COLON, + STATE(1353), 1, + sym_type_arguments, + STATE(2100), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58514] = 5, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3802), 1, + ACTIONS(3848), 1, anon_sym_LBRACE, - STATE(901), 1, - sym_field_declaration_list, - STATE(2158), 1, + STATE(257), 1, + sym_declaration_list, + STATE(2173), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58514] = 3, + [58531] = 5, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(3441), 1, + anon_sym_LPAREN, + STATE(1353), 1, + sym_type_arguments, + STATE(1370), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3423), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4365), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58527] = 5, + [58548] = 5, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(4169), 1, anon_sym_LBRACE, - STATE(865), 1, - sym_declaration_list, - STATE(2231), 1, + STATE(896), 1, + sym_enum_variant_list, + STATE(2193), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58544] = 5, - ACTIONS(3900), 1, + [58565] = 5, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(4367), 1, + ACTIONS(4370), 1, anon_sym_SEMI, - ACTIONS(4369), 1, + ACTIONS(4372), 1, anon_sym_EQ, - STATE(2545), 1, + STATE(2550), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58561] = 5, + [58582] = 5, + ACTIONS(3778), 1, + anon_sym_LBRACE, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3830), 1, - anon_sym_LBRACE, - STATE(894), 1, + STATE(1029), 1, sym_declaration_list, - STATE(2236), 1, + STATE(2234), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58578] = 5, - ACTIONS(3441), 1, - anon_sym_LPAREN, - ACTIONS(3798), 1, - anon_sym_LT, - STATE(1631), 1, - sym_parameters, - STATE(2168), 1, - sym_type_parameters, + [58599] = 4, + ACTIONS(4374), 1, + anon_sym_DQUOTE, + STATE(1810), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58595] = 5, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(4376), 2, + sym__string_content, + sym_escape_sequence, + [58614] = 5, + ACTIONS(3987), 1, + anon_sym_LPAREN, + ACTIONS(3989), 1, anon_sym_LBRACE, - STATE(915), 1, - sym_declaration_list, - STATE(2137), 1, - sym_where_clause, + ACTIONS(3991), 1, + anon_sym_LBRACK, + STATE(1057), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58612] = 5, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(3441), 1, - anon_sym_LPAREN, - STATE(1352), 1, - sym_type_arguments, - STATE(1362), 1, - sym_parameters, + [58631] = 4, + ACTIONS(4378), 1, + anon_sym_COMMA, + STATE(1831), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58629] = 5, - ACTIONS(3441), 1, - anon_sym_LPAREN, - ACTIONS(3798), 1, - anon_sym_LT, - STATE(1698), 1, - sym_parameters, - STATE(2263), 1, - sym_type_parameters, + ACTIONS(2879), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [58646] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(984), 1, + sym_line_comment, + ACTIONS(4380), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4382), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [58661] = 4, + ACTIONS(4384), 1, + anon_sym_DQUOTE, + STATE(1792), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58646] = 5, - ACTIONS(4371), 1, + ACTIONS(4386), 2, + sym__string_content, + sym_escape_sequence, + [58676] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(984), 1, + sym_line_comment, + ACTIONS(4388), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4390), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [58691] = 5, + ACTIONS(4392), 1, anon_sym_LPAREN, - ACTIONS(4373), 1, + ACTIONS(4394), 1, anon_sym_LBRACE, - ACTIONS(4375), 1, + ACTIONS(4396), 1, anon_sym_LBRACK, - STATE(65), 1, + STATE(64), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58663] = 5, - ACTIONS(3624), 1, - anon_sym_PIPE, - ACTIONS(4377), 1, - anon_sym_SEMI, - ACTIONS(4379), 1, - anon_sym_COLON, - ACTIONS(4381), 1, - anon_sym_EQ, + [58708] = 5, + ACTIONS(4398), 1, + anon_sym_LPAREN, + ACTIONS(4400), 1, + anon_sym_LBRACE, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(1339), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58680] = 5, - ACTIONS(3624), 1, - anon_sym_PIPE, - ACTIONS(4383), 1, - anon_sym_SEMI, - ACTIONS(4385), 1, - anon_sym_COLON, - ACTIONS(4387), 1, - anon_sym_EQ, + [58725] = 4, + ACTIONS(4404), 1, + anon_sym_DQUOTE, + STATE(1810), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58697] = 5, - ACTIONS(2542), 1, + ACTIONS(4376), 2, + sym__string_content, + sym_escape_sequence, + [58740] = 5, + ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3437), 1, - anon_sym_LT2, - STATE(949), 1, + ACTIONS(3798), 1, + anon_sym_LT, + STATE(1614), 1, sym_parameters, - STATE(1352), 1, - sym_type_arguments, + STATE(2222), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58714] = 5, - ACTIONS(3794), 1, + [58757] = 5, + ACTIONS(3778), 1, anon_sym_LBRACE, ACTIONS(3796), 1, anon_sym_where, - STATE(414), 1, - sym_field_declaration_list, - STATE(2246), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58731] = 5, - ACTIONS(4263), 1, - anon_sym_PIPE, - ACTIONS(4389), 1, - anon_sym_RPAREN, - ACTIONS(4391), 1, - anon_sym_COMMA, - STATE(1877), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58748] = 5, - ACTIONS(4331), 1, - anon_sym_COMMA, - ACTIONS(4333), 1, - anon_sym_GT, - ACTIONS(4343), 1, - anon_sym_EQ, - STATE(2103), 1, - aux_sym_type_parameters_repeat1, + STATE(921), 1, + sym_declaration_list, + STATE(2153), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58765] = 3, - ACTIONS(4263), 1, - anon_sym_PIPE, + [58774] = 5, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4406), 1, + anon_sym_RPAREN, + ACTIONS(4408), 1, + anon_sym_COMMA, + STATE(1956), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4393), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [58778] = 5, - ACTIONS(4075), 1, + [58791] = 5, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4395), 1, + ACTIONS(4410), 1, anon_sym_RPAREN, - ACTIONS(4397), 1, + ACTIONS(4412), 1, anon_sym_COMMA, - STATE(2099), 1, + STATE(2016), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58795] = 5, + [58808] = 5, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3830), 1, + ACTIONS(3848), 1, anon_sym_LBRACE, - STATE(963), 1, + STATE(357), 1, sym_declaration_list, - STATE(2258), 1, + STATE(2282), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58812] = 5, + [58825] = 5, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4061), 1, + ACTIONS(4135), 1, anon_sym_LBRACE, - STATE(1030), 1, + STATE(284), 1, sym_enum_variant_list, - STATE(2203), 1, + STATE(2217), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58829] = 4, - ACTIONS(4399), 1, - anon_sym_COMMA, - STATE(1798), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4393), 2, - anon_sym_RPAREN, + [58842] = 5, + ACTIONS(4089), 1, + anon_sym_LPAREN, + ACTIONS(4414), 1, anon_sym_RBRACK, - [58844] = 5, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(3864), 1, - anon_sym_LBRACE, - STATE(357), 1, - sym_declaration_list, - STATE(2284), 1, - sym_where_clause, + ACTIONS(4416), 1, + anon_sym_EQ, + STATE(2340), 1, + sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58861] = 5, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(4195), 1, + [58859] = 5, + ACTIONS(4398), 1, + anon_sym_LPAREN, + ACTIONS(4400), 1, anon_sym_LBRACE, - STATE(420), 1, - sym_enum_variant_list, - STATE(2164), 1, - sym_where_clause, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(1334), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58878] = 5, + [58876] = 5, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4195), 1, + ACTIONS(4169), 1, anon_sym_LBRACE, - STATE(272), 1, + STATE(1004), 1, sym_enum_variant_list, - STATE(2221), 1, + STATE(2132), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58895] = 5, - ACTIONS(3997), 1, + [58893] = 5, + ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(3999), 1, - anon_sym_LBRACE, - ACTIONS(4001), 1, - anon_sym_LBRACK, - STATE(1096), 1, - sym_delim_token_tree, + ACTIONS(3798), 1, + anon_sym_LT, + STATE(1646), 1, + sym_parameters, + STATE(2269), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58912] = 4, - ACTIONS(4402), 1, - anon_sym_DQUOTE, - STATE(1828), 1, - aux_sym_string_literal_repeat1, + [58910] = 5, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4418), 1, + anon_sym_RPAREN, + ACTIONS(4420), 1, + anon_sym_COMMA, + STATE(1935), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4404), 2, - sym__string_content, - sym_escape_sequence, [58927] = 4, - ACTIONS(4406), 1, + ACTIONS(4422), 1, anon_sym_DQUOTE, - STATE(1806), 1, + STATE(1810), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4408), 2, + ACTIONS(4376), 2, sym__string_content, sym_escape_sequence, - [58942] = 5, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4412), 1, - anon_sym_LBRACE, - ACTIONS(4414), 1, - anon_sym_LBRACK, - STATE(1333), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58959] = 4, - ACTIONS(4416), 1, - anon_sym_DQUOTE, - STATE(1828), 1, - aux_sym_string_literal_repeat1, + [58942] = 4, + ACTIONS(4426), 1, + anon_sym_COMMA, + STATE(1786), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4404), 2, - sym__string_content, - sym_escape_sequence, - [58974] = 5, - ACTIONS(4263), 1, - anon_sym_PIPE, - ACTIONS(4418), 1, + ACTIONS(4424), 2, anon_sym_SEMI, - ACTIONS(4420), 1, - anon_sym_COLON, - ACTIONS(4422), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58991] = 5, - ACTIONS(4410), 1, - anon_sym_LPAREN, - ACTIONS(4412), 1, anon_sym_LBRACE, - ACTIONS(4414), 1, - anon_sym_LBRACK, - STATE(1336), 1, - sym_delim_token_tree, + [58957] = 4, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(4428), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59008] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + STATE(67), 2, + sym_if_expression, + sym_block, + [58972] = 4, + ACTIONS(2303), 1, + anon_sym_POUND, + ACTIONS(4430), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4424), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [59021] = 4, - ACTIONS(3900), 1, + STATE(1086), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [58987] = 4, + ACTIONS(4097), 1, anon_sym_COLON, - STATE(1921), 1, - sym_trait_bounds, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4426), 2, - anon_sym_COMMA, - anon_sym_GT, - [59036] = 3, - ACTIONS(4075), 1, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59002] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4428), 3, + ACTIONS(4432), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [59049] = 5, - ACTIONS(3997), 1, - anon_sym_LPAREN, - ACTIONS(3999), 1, + [59015] = 4, + ACTIONS(4434), 1, + anon_sym_DQUOTE, + STATE(1810), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4436), 2, + sym__string_content, + sym_escape_sequence, + [59030] = 5, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4001), 1, - anon_sym_LBRACK, - STATE(1115), 1, - sym_delim_token_tree, + STATE(438), 1, + sym_declaration_list, + STATE(2297), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59066] = 4, + [59047] = 4, ACTIONS(632), 1, anon_sym_LBRACE, - ACTIONS(4430), 1, + ACTIONS(4439), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(226), 2, + STATE(227), 2, sym_if_expression, sym_block, - [59081] = 4, - ACTIONS(4432), 1, - anon_sym_DQUOTE, - STATE(1803), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4434), 2, - sym__string_content, - sym_escape_sequence, - [59096] = 4, - ACTIONS(4436), 1, - anon_sym_DQUOTE, - STATE(1819), 1, - aux_sym_string_literal_repeat1, + [59062] = 5, + ACTIONS(4295), 1, + anon_sym_COLON, + ACTIONS(4441), 1, + anon_sym_COMMA, + ACTIONS(4443), 1, + anon_sym_PIPE, + STATE(1918), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4438), 2, - sym__string_content, - sym_escape_sequence, - [59111] = 5, - ACTIONS(3900), 1, + [59079] = 5, + ACTIONS(3882), 1, anon_sym_COLON, - ACTIONS(4440), 1, + ACTIONS(4445), 1, anon_sym_SEMI, - ACTIONS(4442), 1, + ACTIONS(4447), 1, anon_sym_EQ, - STATE(2375), 1, + STATE(2373), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59128] = 5, - ACTIONS(4444), 1, - anon_sym_LPAREN, - ACTIONS(4446), 1, - anon_sym_LBRACE, - ACTIONS(4448), 1, - anon_sym_LBRACK, - STATE(977), 1, - sym_delim_token_tree, + [59096] = 5, + ACTIONS(762), 1, + anon_sym_RPAREN, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4301), 1, + anon_sym_COMMA, + STATE(2021), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59145] = 5, - ACTIONS(3794), 1, - anon_sym_LBRACE, + [59113] = 3, + ACTIONS(4449), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3596), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [59126] = 5, ACTIONS(3796), 1, anon_sym_where, + ACTIONS(3810), 1, + anon_sym_LBRACE, STATE(401), 1, sym_field_declaration_list, - STATE(2304), 1, + STATE(2301), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59162] = 4, - ACTIONS(4450), 1, - anon_sym_DQUOTE, - STATE(1828), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4404), 2, - sym__string_content, - sym_escape_sequence, - [59177] = 5, - ACTIONS(3441), 1, - anon_sym_LPAREN, - ACTIONS(3798), 1, - anon_sym_LT, - STATE(1694), 1, - sym_parameters, - STATE(2267), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59194] = 5, - ACTIONS(4444), 1, - anon_sym_LPAREN, - ACTIONS(4446), 1, - anon_sym_LBRACE, - ACTIONS(4448), 1, - anon_sym_LBRACK, - STATE(974), 1, - sym_delim_token_tree, + [59143] = 5, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4451), 1, + anon_sym_COMMA, + ACTIONS(4453), 1, + anon_sym_GT, + STATE(2008), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59211] = 4, + [59160] = 4, ACTIONS(3), 1, sym_block_comment, - ACTIONS(986), 1, + ACTIONS(984), 1, sym_line_comment, - ACTIONS(4452), 1, + ACTIONS(4455), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4454), 3, + ACTIONS(4457), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [59226] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4456), 1, - anon_sym_RPAREN, - ACTIONS(4458), 1, - anon_sym_COMMA, - STATE(2050), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [59175] = 4, + ACTIONS(4185), 1, + anon_sym_COLON, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59243] = 5, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(3864), 1, - anon_sym_LBRACE, - STATE(428), 1, - sym_declaration_list, - STATE(2209), 1, - sym_where_clause, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59190] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59260] = 5, - ACTIONS(3441), 1, - anon_sym_LPAREN, - ACTIONS(3798), 1, - anon_sym_LT, - STATE(1700), 1, - sym_parameters, - STATE(2264), 1, - sym_type_parameters, + ACTIONS(4459), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [59203] = 4, + ACTIONS(4461), 1, + anon_sym_DQUOTE, + STATE(1826), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59277] = 4, - ACTIONS(3646), 1, - anon_sym_BANG, - ACTIONS(3736), 1, + ACTIONS(4463), 2, + sym__string_content, + sym_escape_sequence, + [59218] = 4, + ACTIONS(3538), 1, anon_sym_COLON_COLON, + ACTIONS(3606), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3522), 2, + ACTIONS(3540), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59292] = 5, + [59233] = 5, + ACTIONS(4465), 1, + anon_sym_LPAREN, + ACTIONS(4467), 1, + anon_sym_LBRACE, + ACTIONS(4469), 1, + anon_sym_LBRACK, + STATE(976), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59250] = 5, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3864), 1, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(438), 1, - sym_declaration_list, - STATE(2220), 1, + STATE(414), 1, + sym_field_declaration_list, + STATE(2304), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59309] = 4, - ACTIONS(4460), 1, + [59267] = 4, + ACTIONS(4471), 1, anon_sym_DQUOTE, - STATE(1828), 1, + STATE(1810), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4462), 2, + ACTIONS(4376), 2, sym__string_content, sym_escape_sequence, - [59324] = 3, - ACTIONS(4465), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4467), 3, - sym_self, - sym_super, - sym_crate, - [59337] = 3, + [59282] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3423), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4469), 2, + ACTIONS(4473), 2, anon_sym_RPAREN, anon_sym_COMMA, - [59350] = 5, - ACTIONS(4263), 1, - anon_sym_PIPE, - ACTIONS(4471), 1, - anon_sym_RBRACK, - ACTIONS(4473), 1, - anon_sym_COMMA, - STATE(1878), 1, - aux_sym_tuple_pattern_repeat1, + [59295] = 5, + ACTIONS(4392), 1, + anon_sym_LPAREN, + ACTIONS(4394), 1, + anon_sym_LBRACE, + ACTIONS(4396), 1, + anon_sym_LBRACK, + STATE(65), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59367] = 4, + [59312] = 5, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4475), 1, + anon_sym_RPAREN, ACTIONS(4477), 1, anon_sym_COMMA, - STATE(1832), 1, - aux_sym_where_clause_repeat1, + STATE(2097), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4475), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [59382] = 4, - ACTIONS(4480), 1, - anon_sym_DQUOTE, - STATE(1849), 1, - aux_sym_string_literal_repeat1, + [59329] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4482), 2, - sym__string_content, - sym_escape_sequence, - [59397] = 3, - ACTIONS(4484), 1, + ACTIONS(3423), 2, anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4479), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59342] = 4, + ACTIONS(4483), 1, + anon_sym_COMMA, + STATE(1831), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3624), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [59410] = 4, - ACTIONS(3900), 1, - anon_sym_COLON, - STATE(1921), 1, - sym_trait_bounds, + ACTIONS(4481), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [59357] = 5, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3848), 1, + anon_sym_LBRACE, + STATE(341), 1, + sym_declaration_list, + STATE(2133), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4486), 2, - anon_sym_COMMA, - anon_sym_GT, - [59425] = 4, - ACTIONS(4150), 1, - anon_sym_COLON, - ACTIONS(4152), 1, - anon_sym_COLON_COLON, + [59374] = 3, + ACTIONS(4486), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59440] = 5, - ACTIONS(4075), 1, + ACTIONS(4488), 3, + sym_self, + sym_super, + sym_crate, + [59387] = 5, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4489), 1, + ACTIONS(4262), 1, anon_sym_RPAREN, - ACTIONS(4491), 1, + ACTIONS(4264), 1, anon_sym_COMMA, - STATE(1937), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2084), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59457] = 5, - ACTIONS(3441), 1, + [59404] = 5, + ACTIONS(4465), 1, anon_sym_LPAREN, - ACTIONS(3798), 1, - anon_sym_LT, - STATE(1635), 1, - sym_parameters, - STATE(2230), 1, - sym_type_parameters, + ACTIONS(4467), 1, + anon_sym_LBRACE, + ACTIONS(4469), 1, + anon_sym_LBRACK, + STATE(973), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59474] = 4, - ACTIONS(4495), 1, - anon_sym_COMMA, - STATE(1758), 1, - aux_sym_where_clause_repeat1, + [59421] = 5, + ACTIONS(4490), 1, + anon_sym_LPAREN, + ACTIONS(4492), 1, + anon_sym_LBRACE, + ACTIONS(4494), 1, + anon_sym_LBRACK, + STATE(1893), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4493), 2, - anon_sym_SEMI, + [59438] = 4, + ACTIONS(3606), 1, + anon_sym_BANG, + ACTIONS(3762), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3540), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59453] = 5, + ACTIONS(3778), 1, anon_sym_LBRACE, - [59489] = 5, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(3900), 1, - anon_sym_COLON, - STATE(1352), 1, - sym_type_arguments, - STATE(2100), 1, - sym_trait_bounds, + ACTIONS(3796), 1, + anon_sym_where, + STATE(863), 1, + sym_declaration_list, + STATE(2181), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59506] = 5, - ACTIONS(3441), 1, - anon_sym_LPAREN, - ACTIONS(3798), 1, - anon_sym_LT, - STATE(1610), 1, - sym_parameters, - STATE(2213), 1, - sym_type_parameters, + [59470] = 4, + ACTIONS(4496), 1, + anon_sym_DQUOTE, + STATE(1804), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59523] = 5, + ACTIONS(4498), 2, + sym__string_content, + sym_escape_sequence, + [59485] = 5, + ACTIONS(3794), 1, + anon_sym_LBRACE, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(3864), 1, - anon_sym_LBRACE, - STATE(341), 1, - sym_declaration_list, - STATE(2193), 1, + STATE(903), 1, + sym_field_declaration_list, + STATE(2198), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59540] = 4, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(4497), 1, - anon_sym_if, + [59502] = 4, + ACTIONS(4502), 1, + anon_sym_COMMA, + STATE(1841), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(86), 2, - sym_if_expression, - sym_block, - [59555] = 4, - ACTIONS(3646), 1, + ACTIONS(4500), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [59517] = 4, + ACTIONS(3606), 1, anon_sym_BANG, - ACTIONS(3738), 1, + ACTIONS(3648), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3522), 2, + ACTIONS(3540), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [59570] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(986), 1, - sym_line_comment, - ACTIONS(4499), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4501), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59585] = 5, - ACTIONS(2473), 1, - anon_sym_PLUS, - ACTIONS(4503), 1, + [59532] = 5, + ACTIONS(4249), 1, anon_sym_COMMA, - ACTIONS(4505), 1, + ACTIONS(4251), 1, anon_sym_GT, - STATE(2005), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4345), 1, + anon_sym_EQ, + STATE(2101), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59549] = 3, + ACTIONS(4299), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59602] = 5, - ACTIONS(4371), 1, + ACTIONS(4500), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [59562] = 5, + ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(4373), 1, - anon_sym_LBRACE, - ACTIONS(4375), 1, - anon_sym_LBRACK, - STATE(64), 1, - sym_delim_token_tree, + ACTIONS(3798), 1, + anon_sym_LT, + STATE(1698), 1, + sym_parameters, + STATE(2260), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59619] = 5, - ACTIONS(3305), 1, + [59579] = 5, + ACTIONS(3285), 1, anon_sym_LBRACE, - ACTIONS(4507), 1, + ACTIONS(4505), 1, sym_identifier, - ACTIONS(4509), 1, + ACTIONS(4507), 1, anon_sym_STAR, - STATE(1980), 1, + STATE(1873), 1, sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59636] = 4, - ACTIONS(4511), 1, - anon_sym_DQUOTE, - STATE(1828), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4404), 2, - sym__string_content, - sym_escape_sequence, - [59651] = 5, - ACTIONS(4259), 1, - anon_sym_COLON, - ACTIONS(4513), 1, - anon_sym_COMMA, - ACTIONS(4515), 1, - anon_sym_PIPE, - STATE(1910), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59668] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + [59596] = 5, + ACTIONS(3441), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_LT, + STATE(1618), 1, + sym_parameters, + STATE(2298), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4517), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [59681] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4503), 1, - anon_sym_COMMA, - ACTIONS(4505), 1, - anon_sym_GT, - STATE(2005), 1, - aux_sym_type_arguments_repeat1, + [59613] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59698] = 3, - ACTIONS(4075), 1, + ACTIONS(4509), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [59626] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4519), 3, + ACTIONS(4511), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [59711] = 4, - ACTIONS(3), 1, + [59639] = 5, + ACTIONS(3778), 1, + anon_sym_LBRACE, + ACTIONS(3796), 1, + anon_sym_where, + STATE(883), 1, + sym_declaration_list, + STATE(2186), 1, + sym_where_clause, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(986), 1, sym_line_comment, - ACTIONS(4521), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4523), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59726] = 5, - ACTIONS(3305), 1, + [59656] = 5, + ACTIONS(3285), 1, anon_sym_LBRACE, - ACTIONS(4107), 1, + ACTIONS(4061), 1, sym_identifier, - ACTIONS(4109), 1, + ACTIONS(4063), 1, anon_sym_STAR, - STATE(1996), 1, + STATE(1889), 1, sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59743] = 5, - ACTIONS(4263), 1, + [59673] = 5, + ACTIONS(4299), 1, anon_sym_PIPE, - ACTIONS(4525), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_COLON, - ACTIONS(4529), 1, - anon_sym_EQ, + ACTIONS(4513), 1, + anon_sym_RPAREN, + ACTIONS(4515), 1, + anon_sym_COMMA, + STATE(2086), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59760] = 4, - ACTIONS(4089), 1, + [59690] = 5, + ACTIONS(4299), 1, + anon_sym_PIPE, + ACTIONS(4517), 1, + anon_sym_SEMI, + ACTIONS(4519), 1, anon_sym_COLON, - ACTIONS(4152), 1, - anon_sym_COLON_COLON, + ACTIONS(4521), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59775] = 3, - ACTIONS(4531), 1, + [59707] = 3, + ACTIONS(4523), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4533), 3, + ACTIONS(4525), 3, sym_self, sym_super, sym_crate, - [59788] = 5, - ACTIONS(4125), 1, - anon_sym_LPAREN, - ACTIONS(4535), 1, - anon_sym_RBRACK, - ACTIONS(4537), 1, + [59720] = 5, + ACTIONS(3596), 1, + anon_sym_PIPE, + ACTIONS(4527), 1, + anon_sym_SEMI, + ACTIONS(4529), 1, + anon_sym_COLON, + ACTIONS(4531), 1, anon_sym_EQ, - STATE(2346), 1, - sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59805] = 4, - ACTIONS(3646), 1, - anon_sym_BANG, - ACTIONS(3648), 1, - anon_sym_COLON_COLON, + [59737] = 4, + ACTIONS(3882), 1, + anon_sym_COLON, + STATE(1992), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3522), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59820] = 5, - ACTIONS(4257), 1, - anon_sym_RPAREN, - ACTIONS(4261), 1, + ACTIONS(4533), 2, anon_sym_COMMA, - ACTIONS(4263), 1, - anon_sym_PIPE, - STATE(2015), 1, - aux_sym_tuple_pattern_repeat1, + anon_sym_GT, + [59752] = 5, + ACTIONS(2480), 1, + anon_sym_PLUS, + ACTIONS(4451), 1, + anon_sym_COMMA, + ACTIONS(4453), 1, + anon_sym_GT, + STATE(2008), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59837] = 4, - ACTIONS(4539), 1, - anon_sym_RBRACE, - ACTIONS(4541), 1, + [59769] = 5, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3848), 1, + anon_sym_LBRACE, + STATE(428), 1, + sym_declaration_list, + STATE(2305), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59786] = 5, + ACTIONS(4299), 1, + anon_sym_PIPE, + ACTIONS(4535), 1, + anon_sym_RBRACK, + ACTIONS(4537), 1, anon_sym_COMMA, - STATE(1975), 1, - aux_sym_use_list_repeat1, + STATE(2083), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59851] = 4, - ACTIONS(284), 1, + [59803] = 5, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - STATE(1088), 1, - sym_block, + STATE(324), 1, + sym_declaration_list, + STATE(2207), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59865] = 2, + [59820] = 5, + ACTIONS(2542), 1, + anon_sym_LPAREN, + ACTIONS(3437), 1, + anon_sym_LT2, + STATE(1022), 1, + sym_parameters, + STATE(1353), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4543), 3, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_EQ, - [59875] = 4, - ACTIONS(4513), 1, - anon_sym_COMMA, + [59837] = 4, + ACTIONS(4539), 1, + sym_identifier, + ACTIONS(4541), 1, + anon_sym_ref, + ACTIONS(4543), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59851] = 4, + ACTIONS(3778), 1, + anon_sym_LBRACE, ACTIONS(4545), 1, - anon_sym_PIPE, - STATE(1910), 1, - aux_sym_closure_parameters_repeat1, + anon_sym_SEMI, + STATE(814), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59889] = 4, + [59865] = 4, + ACTIONS(3252), 1, + anon_sym_RBRACK, ACTIONS(4547), 1, - anon_sym_EQ_GT, - ACTIONS(4549), 1, - anon_sym_AMP_AMP, - STATE(1932), 1, - aux_sym_let_chain_repeat1, + anon_sym_COMMA, + STATE(1864), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59903] = 4, - ACTIONS(4551), 1, - sym_identifier, - ACTIONS(4553), 1, - anon_sym_ref, - ACTIONS(4555), 1, - sym_mutable_specifier, + [59879] = 4, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(4550), 1, + anon_sym_SEMI, + STATE(430), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59917] = 4, - ACTIONS(4557), 1, + [59893] = 4, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(4552), 1, sym_identifier, - ACTIONS(4559), 1, - anon_sym_ref, - ACTIONS(4561), 1, - sym_mutable_specifier, + STATE(2481), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59931] = 4, + [59907] = 4, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4563), 1, + ACTIONS(4554), 1, anon_sym_SEMI, - STATE(2538), 1, + STATE(2459), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59945] = 4, - ACTIONS(4319), 1, - anon_sym_RPAREN, - ACTIONS(4321), 1, - anon_sym_COMMA, - STATE(2079), 1, - aux_sym_parameters_repeat1, + [59921] = 4, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(4552), 1, + sym_identifier, + STATE(2491), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59959] = 2, + [59935] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4565), 3, + ACTIONS(4556), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [59969] = 4, - ACTIONS(3305), 1, - anon_sym_LBRACE, - ACTIONS(4567), 1, - sym_identifier, - STATE(1893), 1, - sym_use_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59983] = 4, - ACTIONS(2473), 1, - anon_sym_PLUS, - ACTIONS(4569), 1, - sym_mutable_specifier, - ACTIONS(4571), 1, - sym_self, + [59945] = 4, + ACTIONS(3393), 1, + anon_sym_RBRACE, + ACTIONS(4558), 1, + anon_sym_COMMA, + STATE(1899), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59997] = 2, + [59959] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4475), 3, + ACTIONS(4560), 3, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, - [60007] = 4, - ACTIONS(3798), 1, - anon_sym_LT, - ACTIONS(4573), 1, - anon_sym_EQ, - STATE(2539), 1, - sym_type_parameters, + [59969] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60021] = 4, - ACTIONS(4095), 1, - anon_sym_LBRACE, - ACTIONS(4575), 1, + ACTIONS(4562), 3, anon_sym_SEMI, - STATE(468), 1, - sym_block, + anon_sym_RBRACE, + anon_sym_COMMA, + [59979] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60035] = 4, - ACTIONS(2417), 1, - anon_sym_RPAREN, - ACTIONS(4577), 1, + ACTIONS(4564), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1798), 1, - aux_sym_tuple_pattern_repeat1, + [59989] = 4, + ACTIONS(620), 1, + anon_sym_RBRACK, + ACTIONS(4566), 1, + anon_sym_COMMA, + STATE(1864), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60049] = 4, - ACTIONS(2397), 1, - anon_sym_RBRACK, - ACTIONS(4579), 1, - anon_sym_COMMA, - STATE(1798), 1, - aux_sym_tuple_pattern_repeat1, + [60003] = 4, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(4568), 1, + sym_identifier, + STATE(2481), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60063] = 4, - ACTIONS(3864), 1, + [60017] = 4, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4570), 1, anon_sym_SEMI, - STATE(369), 1, + STATE(368), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60077] = 4, - ACTIONS(4075), 1, + [60031] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4583), 1, + ACTIONS(4572), 1, anon_sym_SEMI, - ACTIONS(4585), 1, + ACTIONS(4574), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60091] = 4, - ACTIONS(4095), 1, - anon_sym_LBRACE, - ACTIONS(4587), 1, - anon_sym_SEMI, - STATE(334), 1, - sym_block, + [60045] = 4, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(4568), 1, + sym_identifier, + STATE(2491), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60105] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4589), 1, - anon_sym_as, - ACTIONS(4591), 1, + [60059] = 4, + ACTIONS(3862), 1, anon_sym_GT, + ACTIONS(4576), 1, + anon_sym_COMMA, + STATE(1974), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60119] = 3, - ACTIONS(4593), 1, - sym_identifier, + [60073] = 4, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4578), 1, + anon_sym_SEMI, + STATE(334), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4595), 2, - anon_sym_default, - anon_sym_union, - [60131] = 3, - ACTIONS(4597), 1, - sym_identifier, + [60087] = 4, + ACTIONS(3323), 1, + anon_sym_RPAREN, + ACTIONS(4580), 1, + anon_sym_COMMA, + STATE(1881), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4599), 2, - anon_sym_default, - anon_sym_union, - [60143] = 4, - ACTIONS(4601), 1, + [60101] = 4, + ACTIONS(4583), 1, anon_sym_RBRACE, - ACTIONS(4603), 1, + ACTIONS(4585), 1, anon_sym_COMMA, - STATE(1885), 1, + STATE(1882), 1, aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60157] = 3, - ACTIONS(4115), 1, + [60115] = 4, + ACTIONS(2560), 1, + anon_sym_LBRACE, + ACTIONS(4588), 1, anon_sym_COLON_COLON, + STATE(1133), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60169] = 4, - ACTIONS(3276), 1, + [60129] = 4, + ACTIONS(396), 1, anon_sym_RPAREN, - ACTIONS(4606), 1, + ACTIONS(4590), 1, anon_sym_COMMA, - STATE(1887), 1, + STATE(1881), 1, aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60183] = 4, - ACTIONS(396), 1, - anon_sym_RPAREN, - ACTIONS(4609), 1, - anon_sym_COMMA, - STATE(1887), 1, - aux_sym_arguments_repeat1, + [60143] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60197] = 2, + ACTIONS(4592), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [60153] = 4, + ACTIONS(2560), 1, + anon_sym_LBRACE, + ACTIONS(4594), 1, + anon_sym_COLON_COLON, + STATE(1133), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4611), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60207] = 3, - ACTIONS(4615), 1, - anon_sym_COLON, + [60167] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4613), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [60219] = 4, - ACTIONS(4617), 1, + ACTIONS(4596), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4619), 1, anon_sym_COMMA, - STATE(2012), 1, - aux_sym_struct_pattern_repeat1, + [60177] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4598), 1, + anon_sym_SEMI, + ACTIONS(4600), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60233] = 2, + [60191] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4621), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60243] = 2, + ACTIONS(4602), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [60201] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4623), 3, + ACTIONS(4604), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [60253] = 4, - ACTIONS(4625), 1, - anon_sym_RPAREN, - ACTIONS(4627), 1, + [60211] = 4, + ACTIONS(4606), 1, + anon_sym_RBRACE, + ACTIONS(4608), 1, anon_sym_COMMA, - STATE(2097), 1, - aux_sym_meta_arguments_repeat1, + STATE(1870), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60267] = 4, - ACTIONS(4095), 1, - anon_sym_LBRACE, - ACTIONS(4629), 1, - anon_sym_SEMI, - STATE(310), 1, - sym_block, + [60225] = 4, + ACTIONS(4610), 1, + anon_sym_RPAREN, + ACTIONS(4612), 1, + anon_sym_COMMA, + STATE(1984), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60281] = 4, - ACTIONS(4631), 1, - anon_sym_for, - ACTIONS(4633), 1, - anon_sym_loop, - ACTIONS(4635), 1, - anon_sym_while, + [60239] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60295] = 4, - ACTIONS(2550), 1, - anon_sym_LT2, - ACTIONS(4637), 1, - sym_identifier, - STATE(965), 1, - sym_type_arguments, + ACTIONS(4614), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [60249] = 3, + ACTIONS(4099), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60309] = 4, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60261] = 4, ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(4639), 1, + ACTIONS(4061), 1, sym_identifier, - STATE(2493), 1, + STATE(2491), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60323] = 2, + [60275] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4641), 3, + ACTIONS(4616), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_RBRACE, - [60333] = 2, + anon_sym_COMMA, + [60285] = 4, + ACTIONS(4618), 1, + anon_sym_RBRACE, + ACTIONS(4620), 1, + anon_sym_COMMA, + STATE(2108), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4643), 3, + [60299] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4622), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [60343] = 4, - ACTIONS(4645), 1, + [60309] = 4, + ACTIONS(4624), 1, anon_sym_RBRACE, - ACTIONS(4647), 1, + ACTIONS(4626), 1, anon_sym_COMMA, - STATE(1901), 1, + STATE(1899), 1, aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60357] = 4, - ACTIONS(4503), 1, - anon_sym_COMMA, - ACTIONS(4505), 1, - anon_sym_GT, - STATE(2005), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60371] = 3, - ACTIONS(4168), 1, - anon_sym_COLON_COLON, + [60323] = 4, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(4629), 1, + sym_identifier, + STATE(2481), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [60383] = 2, + [60337] = 4, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(4629), 1, + sym_identifier, + STATE(2491), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4650), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60393] = 2, + [60351] = 4, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(4061), 1, + sym_identifier, + STATE(2481), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4652), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [60403] = 4, - ACTIONS(4654), 1, + [60365] = 4, + ACTIONS(4631), 1, anon_sym_RBRACE, - ACTIONS(4656), 1, + ACTIONS(4633), 1, anon_sym_COMMA, - STATE(2004), 1, - aux_sym_struct_pattern_repeat1, + STATE(1903), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60417] = 2, + [60379] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3353), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - [60427] = 4, - ACTIONS(4658), 1, - anon_sym_LBRACE, - ACTIONS(4660), 1, - anon_sym_AMP_AMP, - STATE(1908), 1, - aux_sym_let_chain_repeat1, + ACTIONS(4636), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [60389] = 3, + ACTIONS(4640), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60441] = 4, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(4639), 1, - sym_identifier, - STATE(2483), 1, - sym_type_arguments, + ACTIONS(4638), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [60401] = 4, + ACTIONS(3828), 1, + anon_sym_RBRACE, + ACTIONS(4642), 1, + anon_sym_COMMA, + STATE(1903), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60455] = 4, - ACTIONS(4513), 1, - anon_sym_COMMA, - ACTIONS(4663), 1, - anon_sym_PIPE, - STATE(2024), 1, - aux_sym_closure_parameters_repeat1, + [60415] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60469] = 4, - ACTIONS(2510), 1, - anon_sym_RPAREN, - ACTIONS(4665), 1, + ACTIONS(4481), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(1992), 1, - aux_sym_tuple_type_repeat1, + [60425] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60483] = 4, - ACTIONS(4667), 1, + ACTIONS(4479), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4669), 1, - anon_sym_GT, - STATE(1989), 1, - aux_sym_for_lifetimes_repeat1, + [60437] = 4, + ACTIONS(4479), 1, + anon_sym_RPAREN, + ACTIONS(4644), 1, + anon_sym_COMMA, + STATE(1909), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60497] = 4, - ACTIONS(4671), 1, - sym_identifier, - ACTIONS(4673), 1, - anon_sym_ref, - ACTIONS(4675), 1, - sym_mutable_specifier, + [60451] = 3, + ACTIONS(3175), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60511] = 2, + ACTIONS(4291), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60463] = 4, + ACTIONS(4647), 1, + anon_sym_for, + ACTIONS(4649), 1, + anon_sym_loop, + ACTIONS(4651), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4677), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [60521] = 4, - ACTIONS(3846), 1, - anon_sym_GT, - ACTIONS(4679), 1, + [60477] = 4, + ACTIONS(4653), 1, + anon_sym_RBRACE, + ACTIONS(4655), 1, anon_sym_COMMA, - STATE(1972), 1, - aux_sym_type_parameters_repeat1, + STATE(1934), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60535] = 4, - ACTIONS(4681), 1, - anon_sym_RBRACE, - ACTIONS(4683), 1, + [60491] = 4, + ACTIONS(764), 1, + anon_sym_RPAREN, + ACTIONS(4657), 1, anon_sym_COMMA, - STATE(1916), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1909), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60549] = 3, - ACTIONS(4688), 1, - anon_sym_EQ, + [60505] = 4, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(4659), 1, + anon_sym_SEMI, + STATE(2384), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4686), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [60561] = 4, - ACTIONS(3836), 1, - anon_sym_RBRACE, - ACTIONS(4690), 1, - anon_sym_COMMA, - STATE(1916), 1, - aux_sym_enum_variant_list_repeat2, + [60519] = 4, + ACTIONS(3524), 1, + anon_sym_COLON, + ACTIONS(3542), 1, + anon_sym_COLON_COLON, + STATE(2100), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60575] = 4, - ACTIONS(3838), 1, - anon_sym_GT, - ACTIONS(4692), 1, - anon_sym_COMMA, - STATE(1972), 1, - aux_sym_type_parameters_repeat1, + [60533] = 4, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4661), 1, + anon_sym_SEMI, + STATE(298), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60589] = 4, - ACTIONS(3864), 1, + [60547] = 4, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4694), 1, + ACTIONS(4663), 1, anon_sym_SEMI, STATE(346), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60603] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4696), 3, - anon_sym_EQ, + [60561] = 4, + ACTIONS(4441), 1, anon_sym_COMMA, - anon_sym_GT, - [60613] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4698), 1, - anon_sym_SEMI, - ACTIONS(4700), 1, - anon_sym_EQ, + ACTIONS(4665), 1, + anon_sym_PIPE, + STATE(1930), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60627] = 4, - ACTIONS(4095), 1, + [60575] = 4, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4702), 1, - anon_sym_SEMI, - STATE(409), 1, + ACTIONS(4667), 1, + anon_sym_move, + STATE(1056), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60641] = 4, - ACTIONS(3864), 1, - anon_sym_LBRACE, - ACTIONS(4704), 1, - anon_sym_SEMI, - STATE(461), 1, - sym_declaration_list, + [60589] = 3, + ACTIONS(4671), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4669), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [60601] = 3, + ACTIONS(4299), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60655] = 4, - ACTIONS(4706), 1, - sym_identifier, - ACTIONS(4708), 1, - anon_sym_ref, - ACTIONS(4710), 1, - sym_mutable_specifier, + ACTIONS(4673), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [60613] = 4, + ACTIONS(4675), 1, + anon_sym_RBRACE, + ACTIONS(4677), 1, + anon_sym_COMMA, + STATE(1922), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60669] = 4, - ACTIONS(4075), 1, + [60627] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4712), 1, - anon_sym_SEMI, - ACTIONS(4714), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60683] = 4, - ACTIONS(3524), 1, - anon_sym_COLON_COLON, - ACTIONS(3536), 1, - anon_sym_COLON, - STATE(2100), 1, - sym_trait_bounds, + ACTIONS(4680), 2, + anon_sym_COMMA, + anon_sym_GT, + [60639] = 4, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(4682), 1, + sym_identifier, + STATE(2481), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60697] = 4, - ACTIONS(4263), 1, - anon_sym_PIPE, - ACTIONS(4716), 1, - anon_sym_EQ_GT, - ACTIONS(4718), 1, - anon_sym_if, + [60653] = 4, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(4682), 1, + sym_identifier, + STATE(2491), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60711] = 3, - ACTIONS(4722), 1, + [60667] = 3, + ACTIONS(4686), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4720), 2, + ACTIONS(4684), 2, anon_sym_RBRACE, anon_sym_COMMA, - [60723] = 4, - ACTIONS(4095), 1, - anon_sym_LBRACE, - ACTIONS(4724), 1, - anon_sym_SEMI, - STATE(404), 1, - sym_block, + [60679] = 4, + ACTIONS(4688), 1, + anon_sym_RBRACE, + ACTIONS(4690), 1, + anon_sym_COMMA, + STATE(1943), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60737] = 4, - ACTIONS(4726), 1, - anon_sym_RBRACE, - ACTIONS(4728), 1, + [60693] = 3, + ACTIONS(4295), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4692), 2, anon_sym_COMMA, - STATE(2034), 1, - aux_sym_field_initializer_list_repeat1, + anon_sym_PIPE, + [60705] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60751] = 4, - ACTIONS(4658), 1, - anon_sym_EQ_GT, - ACTIONS(4730), 1, - anon_sym_AMP_AMP, - STATE(1932), 1, - aux_sym_let_chain_repeat1, + ACTIONS(4694), 2, + anon_sym_COMMA, + anon_sym_GT, + [60717] = 4, + ACTIONS(4692), 1, + anon_sym_PIPE, + ACTIONS(4696), 1, + anon_sym_COMMA, + STATE(1930), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60765] = 3, - ACTIONS(4075), 1, + [60731] = 3, + ACTIONS(2480), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4469), 2, - anon_sym_RPAREN, + ACTIONS(4694), 2, anon_sym_COMMA, - [60777] = 4, - ACTIONS(3852), 1, + anon_sym_GT, + [60743] = 4, + ACTIONS(3878), 1, anon_sym_RBRACE, - ACTIONS(4733), 1, + ACTIONS(4699), 1, anon_sym_COMMA, - STATE(2066), 1, + STATE(1971), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60791] = 4, - ACTIONS(4075), 1, + [60757] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4735), 1, - anon_sym_SEMI, - ACTIONS(4737), 1, - anon_sym_EQ, + STATE(1042), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60805] = 4, - ACTIONS(3852), 1, + [60771] = 4, + ACTIONS(3878), 1, anon_sym_RBRACE, - ACTIONS(4733), 1, + ACTIONS(4699), 1, anon_sym_COMMA, - STATE(2064), 1, + STATE(1968), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60819] = 4, - ACTIONS(4739), 1, + [60785] = 4, + ACTIONS(4701), 1, anon_sym_RPAREN, - ACTIONS(4741), 1, + ACTIONS(4703), 1, anon_sym_COMMA, - STATE(2055), 1, + STATE(1960), 1, aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60833] = 4, - ACTIONS(4469), 1, - anon_sym_RPAREN, - ACTIONS(4743), 1, + [60799] = 4, + ACTIONS(4694), 1, + anon_sym_GT, + ACTIONS(4705), 1, anon_sym_COMMA, - STATE(1938), 1, - aux_sym_parameters_repeat1, + STATE(1936), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60847] = 3, - ACTIONS(3173), 1, - anon_sym_COLON_COLON, + [60813] = 4, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(4708), 1, + anon_sym_GT, + STATE(2245), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4269), 2, - anon_sym_RPAREN, + [60827] = 4, + ACTIONS(4710), 1, anon_sym_COMMA, - [60859] = 4, - ACTIONS(3528), 1, - anon_sym_COLON_COLON, - ACTIONS(3536), 1, - anon_sym_COLON, - STATE(2100), 1, - sym_trait_bounds, + ACTIONS(4713), 1, + anon_sym_GT, + STATE(1938), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60873] = 4, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(4746), 1, - anon_sym_SEMI, - STATE(2440), 1, - sym_where_clause, + [60841] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60887] = 4, - ACTIONS(764), 1, - anon_sym_RPAREN, - ACTIONS(4748), 1, + ACTIONS(4715), 2, anon_sym_COMMA, - STATE(1938), 1, - aux_sym_parameters_repeat1, + anon_sym_GT, + [60853] = 4, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(4717), 1, + anon_sym_SEMI, + STATE(294), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60901] = 4, - ACTIONS(4750), 1, - anon_sym_for, - ACTIONS(4752), 1, - anon_sym_loop, - ACTIONS(4754), 1, - anon_sym_while, + [60867] = 4, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(4719), 1, + anon_sym_SEMI, + STATE(292), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60915] = 4, - ACTIONS(4075), 1, + [60881] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4756), 1, + ACTIONS(4721), 1, anon_sym_SEMI, - ACTIONS(4758), 1, + ACTIONS(4723), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60929] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4760), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60941] = 4, - ACTIONS(4762), 1, + [60895] = 4, + ACTIONS(3818), 1, anon_sym_RBRACE, - ACTIONS(4764), 1, + ACTIONS(4725), 1, anon_sym_COMMA, - STATE(2104), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1882), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60955] = 4, - ACTIONS(3580), 1, - anon_sym_COLON_COLON, - ACTIONS(3907), 1, - anon_sym_BANG, - ACTIONS(4766), 1, - sym_identifier, + [60909] = 4, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(4727), 1, + anon_sym_SEMI, + STATE(2404), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60969] = 4, - ACTIONS(4768), 1, + [60923] = 4, + ACTIONS(3572), 1, + anon_sym_COLON_COLON, + ACTIONS(3890), 1, + anon_sym_BANG, + ACTIONS(4729), 1, sym_identifier, - ACTIONS(4770), 1, - anon_sym_await, - ACTIONS(4772), 1, - sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60983] = 3, - ACTIONS(4263), 1, - anon_sym_PIPE, + [60937] = 3, + ACTIONS(4733), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4774), 2, + ACTIONS(4731), 2, anon_sym_RBRACE, anon_sym_COMMA, - [60995] = 4, - ACTIONS(4075), 1, + [60949] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4776), 1, + ACTIONS(4735), 1, anon_sym_SEMI, - ACTIONS(4778), 1, + ACTIONS(4737), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61009] = 4, - ACTIONS(3864), 1, - anon_sym_LBRACE, - ACTIONS(4780), 1, - anon_sym_SEMI, - STATE(374), 1, - sym_declaration_list, + [60963] = 4, + ACTIONS(3518), 1, + anon_sym_COLON_COLON, + ACTIONS(3524), 1, + anon_sym_COLON, + STATE(2100), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61023] = 4, - ACTIONS(4075), 1, + [60977] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4782), 1, + ACTIONS(4739), 1, anon_sym_SEMI, - ACTIONS(4784), 1, + ACTIONS(4741), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61037] = 3, - ACTIONS(4091), 1, - anon_sym_COLON_COLON, + [60991] = 4, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(4743), 1, + anon_sym_SEMI, + STATE(376), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61049] = 4, - ACTIONS(2550), 1, - anon_sym_LT2, - ACTIONS(4637), 1, - sym_identifier, - STATE(819), 1, - sym_type_arguments, + [61005] = 4, + ACTIONS(4299), 1, + anon_sym_PIPE, + ACTIONS(4745), 1, + anon_sym_EQ_GT, + ACTIONS(4747), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61063] = 4, - ACTIONS(3864), 1, + [61019] = 4, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4786), 1, + ACTIONS(4749), 1, anon_sym_SEMI, STATE(467), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61077] = 4, - ACTIONS(4788), 1, - anon_sym_for, - ACTIONS(4790), 1, - anon_sym_loop, - ACTIONS(4792), 1, - anon_sym_while, + [61033] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4751), 1, + anon_sym_SEMI, + ACTIONS(4753), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61091] = 4, - ACTIONS(620), 1, - anon_sym_RBRACK, - ACTIONS(4794), 1, - anon_sym_COMMA, - STATE(1959), 1, - aux_sym_array_expression_repeat1, + [61047] = 4, + ACTIONS(4067), 1, + anon_sym_LBRACE, + ACTIONS(4755), 1, + anon_sym_SEMI, + STATE(1026), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61105] = 4, - ACTIONS(2598), 1, + [61061] = 4, + ACTIONS(4067), 1, anon_sym_LBRACE, - ACTIONS(4796), 1, - anon_sym_COLON_COLON, - STATE(1043), 1, - sym_field_initializer_list, + ACTIONS(4757), 1, + anon_sym_SEMI, + STATE(1007), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61119] = 4, - ACTIONS(3258), 1, - anon_sym_RBRACK, - ACTIONS(4798), 1, + [61075] = 4, + ACTIONS(4759), 1, + anon_sym_RPAREN, + ACTIONS(4761), 1, anon_sym_COMMA, - STATE(1959), 1, - aux_sym_array_expression_repeat1, + STATE(1960), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61133] = 2, + [61089] = 4, + ACTIONS(4067), 1, + anon_sym_LBRACE, + ACTIONS(4763), 1, + anon_sym_SEMI, + STATE(993), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2377), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [61143] = 4, - ACTIONS(3864), 1, - anon_sym_LBRACE, - ACTIONS(4801), 1, - anon_sym_SEMI, - STATE(430), 1, - sym_declaration_list, + [61103] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61157] = 4, - ACTIONS(4095), 1, + ACTIONS(4765), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [61115] = 4, + ACTIONS(4067), 1, anon_sym_LBRACE, - ACTIONS(4803), 1, + ACTIONS(4767), 1, anon_sym_SEMI, - STATE(299), 1, + STATE(974), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61171] = 2, + [61129] = 4, + ACTIONS(4769), 1, + anon_sym_RPAREN, + ACTIONS(4771), 1, + anon_sym_COMMA, + STATE(1960), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4805), 3, + [61143] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61181] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4774), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [61155] = 4, ACTIONS(632), 1, anon_sym_LBRACE, - ACTIONS(4807), 1, + ACTIONS(4776), 1, anon_sym_move, - STATE(239), 1, + STATE(241), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61195] = 4, - ACTIONS(4095), 1, - anon_sym_LBRACE, - ACTIONS(4809), 1, + [61169] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4778), 1, anon_sym_SEMI, - STATE(386), 1, - sym_block, + ACTIONS(4780), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61209] = 2, + [61183] = 4, + ACTIONS(4067), 1, + anon_sym_LBRACE, + ACTIONS(4782), 1, + anon_sym_SEMI, + STATE(948), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4811), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61219] = 4, - ACTIONS(3864), 1, + [61197] = 4, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4813), 1, + ACTIONS(4784), 1, anon_sym_SEMI, STATE(384), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61233] = 4, + [61211] = 4, ACTIONS(3798), 1, anon_sym_LT, - ACTIONS(4815), 1, + ACTIONS(4786), 1, anon_sym_EQ, - STATE(2457), 1, + STATE(2446), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61247] = 3, - ACTIONS(4075), 1, + [61225] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, + ACTIONS(4788), 1, + anon_sym_SEMI, + ACTIONS(4790), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4817), 2, + [61239] = 4, + ACTIONS(4792), 1, + anon_sym_RBRACE, + ACTIONS(4794), 1, anon_sym_COMMA, - anon_sym_GT, - [61259] = 4, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(4819), 1, - sym_identifier, - STATE(2483), 1, - sym_type_arguments, + STATE(1968), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61273] = 4, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(4819), 1, - sym_identifier, - STATE(2493), 1, - sym_type_arguments, + [61253] = 4, + ACTIONS(3778), 1, + anon_sym_LBRACE, + ACTIONS(4797), 1, + anon_sym_SEMI, + STATE(931), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61287] = 4, - ACTIONS(4426), 1, + [61267] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4799), 2, + anon_sym_COMMA, anon_sym_GT, - ACTIONS(4821), 1, + [61279] = 4, + ACTIONS(3872), 1, + anon_sym_RBRACE, + ACTIONS(4801), 1, anon_sym_COMMA, - STATE(1972), 1, - aux_sym_type_parameters_repeat1, + STATE(1968), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61301] = 3, - ACTIONS(4826), 1, - anon_sym_COLON, + [61293] = 4, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(4803), 1, + anon_sym_SEMI, + STATE(279), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4824), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61313] = 3, - ACTIONS(4263), 1, - anon_sym_PIPE, + [61307] = 4, + ACTIONS(3778), 1, + anon_sym_LBRACE, + ACTIONS(4805), 1, + anon_sym_SEMI, + STATE(919), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4828), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61325] = 4, - ACTIONS(3367), 1, - anon_sym_RBRACE, - ACTIONS(4830), 1, + [61321] = 4, + ACTIONS(4533), 1, + anon_sym_GT, + ACTIONS(4807), 1, anon_sym_COMMA, - STATE(1901), 1, - aux_sym_use_list_repeat1, + STATE(1974), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61339] = 2, + [61335] = 4, + ACTIONS(3239), 1, + anon_sym_EQ_GT, + ACTIONS(4810), 1, + anon_sym_AMP_AMP, + STATE(2026), 1, + aux_sym_let_chain_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4832), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, [61349] = 4, - ACTIONS(3209), 1, - anon_sym_EQ_GT, - ACTIONS(4549), 1, - anon_sym_AMP_AMP, - STATE(1866), 1, - aux_sym_let_chain_repeat1, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(4812), 1, + anon_sym_SEMI, + STATE(268), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -122192,973 +122173,959 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4834), 3, + ACTIONS(4814), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [61373] = 3, - ACTIONS(4343), 1, - anon_sym_EQ, + [61373] = 4, + ACTIONS(4067), 1, + anon_sym_LBRACE, + ACTIONS(4816), 1, + anon_sym_SEMI, + STATE(887), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4426), 2, - anon_sym_COMMA, - anon_sym_GT, - [61385] = 2, + [61387] = 4, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(4818), 1, + anon_sym_SEMI, + STATE(2348), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4836), 3, + [61401] = 4, + ACTIONS(4067), 1, + anon_sym_LBRACE, + ACTIONS(4820), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61395] = 2, + STATE(851), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4838), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61405] = 4, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(4840), 1, - sym_identifier, - STATE(2483), 1, - sym_type_arguments, + [61415] = 3, + ACTIONS(4345), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61419] = 4, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(4840), 1, - sym_identifier, - STATE(2493), 1, - sym_type_arguments, + ACTIONS(4533), 2, + anon_sym_COMMA, + anon_sym_GT, + [61427] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61433] = 4, - ACTIONS(4842), 1, - anon_sym_RBRACE, - ACTIONS(4844), 1, + ACTIONS(4822), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1984), 1, - aux_sym_struct_pattern_repeat1, + [61437] = 4, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(4824), 1, + anon_sym_SEMI, + STATE(461), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61447] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + [61451] = 4, + ACTIONS(3149), 1, + anon_sym_RPAREN, + ACTIONS(4826), 1, + anon_sym_COMMA, + STATE(2053), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4847), 2, - anon_sym_COMMA, - anon_sym_GT, - [61459] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + [61465] = 4, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4828), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4849), 2, + [61479] = 4, + ACTIONS(4199), 1, anon_sym_COMMA, + ACTIONS(4201), 1, anon_sym_GT, - [61471] = 4, - ACTIONS(2598), 1, - anon_sym_LBRACE, - ACTIONS(4851), 1, - anon_sym_COLON_COLON, - STATE(1043), 1, - sym_field_initializer_list, + STATE(1993), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61485] = 3, - ACTIONS(4075), 1, + [61493] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4853), 2, - anon_sym_COMMA, - anon_sym_GT, - [61497] = 4, - ACTIONS(4855), 1, + ACTIONS(4830), 2, anon_sym_COMMA, - ACTIONS(4857), 1, anon_sym_GT, - STATE(2011), 1, - aux_sym_for_lifetimes_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61511] = 4, - ACTIONS(3830), 1, + [61505] = 4, + ACTIONS(3778), 1, anon_sym_LBRACE, - ACTIONS(4859), 1, + ACTIONS(4832), 1, anon_sym_SEMI, - STATE(996), 1, + STATE(902), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61525] = 4, + [61519] = 4, + ACTIONS(4834), 1, + anon_sym_COMMA, + ACTIONS(4836), 1, + anon_sym_GT, + STATE(1938), 1, + aux_sym_for_lifetimes_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61533] = 4, ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(4857), 1, + ACTIONS(4836), 1, anon_sym_GT, - STATE(2322), 1, + STATE(2245), 1, sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61539] = 4, - ACTIONS(4861), 1, + [61547] = 4, + ACTIONS(4838), 1, anon_sym_RPAREN, - ACTIONS(4863), 1, + ACTIONS(4840), 1, anon_sym_COMMA, - STATE(1992), 1, + STATE(1991), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61553] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4861), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61565] = 3, - ACTIONS(2473), 1, - anon_sym_PLUS, + [61561] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4853), 2, + ACTIONS(4843), 3, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [61577] = 2, + [61571] = 4, + ACTIONS(3784), 1, + anon_sym_GT, + ACTIONS(4845), 1, + anon_sym_COMMA, + STATE(1974), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4866), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61587] = 2, + [61585] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4868), 3, + ACTIONS(2385), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - [61597] = 4, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(4107), 1, - sym_identifier, - STATE(2493), 1, - sym_type_arguments, + [61595] = 4, + ACTIONS(4067), 1, + anon_sym_LBRACE, + ACTIONS(4847), 1, + anon_sym_SEMI, + STATE(820), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61611] = 4, - ACTIONS(4853), 1, - anon_sym_GT, - ACTIONS(4870), 1, - anon_sym_COMMA, - STATE(1998), 1, - aux_sym_type_arguments_repeat1, + [61609] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61625] = 4, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(4873), 1, - sym_identifier, - STATE(2483), 1, - sym_type_arguments, + ACTIONS(4838), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [61621] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61639] = 4, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(4873), 1, - sym_identifier, - STATE(2493), 1, - sym_type_arguments, + ACTIONS(4849), 3, + anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_EQ, + [61631] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61653] = 4, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - ACTIONS(4875), 1, + ACTIONS(4851), 3, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_GT, - STATE(2322), 1, - sym_lifetime, + [61641] = 4, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4853), 1, + anon_sym_SEMI, + STATE(287), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61667] = 4, + [61655] = 4, ACTIONS(2550), 1, anon_sym_LT2, - ACTIONS(4877), 1, + ACTIONS(4855), 1, sym_identifier, - STATE(1196), 1, + STATE(1195), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61681] = 4, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(4107), 1, - sym_identifier, - STATE(2483), 1, - sym_type_arguments, + [61669] = 4, + ACTIONS(4857), 1, + anon_sym_COMMA, + ACTIONS(4859), 1, + anon_sym_GT, + STATE(1989), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61695] = 4, - ACTIONS(4023), 1, - anon_sym_RBRACE, - ACTIONS(4879), 1, - anon_sym_COMMA, - STATE(1984), 1, - aux_sym_struct_pattern_repeat1, + [61683] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4861), 1, + anon_sym_SEMI, + ACTIONS(4863), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61709] = 4, - ACTIONS(900), 1, - anon_sym_GT, - ACTIONS(4881), 1, + [61697] = 4, + ACTIONS(3969), 1, + anon_sym_RBRACE, + ACTIONS(4865), 1, anon_sym_COMMA, - STATE(1998), 1, - aux_sym_type_arguments_repeat1, + STATE(1922), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61723] = 4, - ACTIONS(624), 1, - anon_sym_RBRACK, - ACTIONS(3159), 1, - anon_sym_COMMA, - STATE(1959), 1, - aux_sym_array_expression_repeat1, + [61711] = 4, + ACTIONS(3778), 1, + anon_sym_LBRACE, + ACTIONS(4867), 1, + anon_sym_SEMI, + STATE(806), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61737] = 2, + [61725] = 4, + ACTIONS(3860), 1, + anon_sym_RBRACE, + ACTIONS(4869), 1, + anon_sym_COMMA, + STATE(1968), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4883), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [61747] = 4, + [61739] = 4, ACTIONS(2550), 1, anon_sym_LT2, - ACTIONS(4877), 1, + ACTIONS(4855), 1, sym_identifier, - STATE(1195), 1, + STATE(1192), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61761] = 4, - ACTIONS(3209), 1, + [61753] = 4, + ACTIONS(3239), 1, anon_sym_LBRACE, - ACTIONS(4885), 1, + ACTIONS(4871), 1, anon_sym_AMP_AMP, - STATE(2132), 1, + STATE(2018), 1, aux_sym_let_chain_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61775] = 4, - ACTIONS(4887), 1, - anon_sym_RBRACE, - ACTIONS(4889), 1, + [61767] = 4, + ACTIONS(904), 1, + anon_sym_GT, + ACTIONS(4873), 1, anon_sym_COMMA, STATE(1936), 1, - aux_sym_field_declaration_list_repeat1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61789] = 4, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4894), 1, - anon_sym_GT, - STATE(2011), 1, - aux_sym_for_lifetimes_repeat1, + [61781] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4875), 1, + anon_sym_SEMI, + ACTIONS(4877), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61803] = 4, - ACTIONS(3995), 1, + [61795] = 4, + ACTIONS(3377), 1, + anon_sym_EQ_GT, + ACTIONS(4879), 1, + anon_sym_AMP_AMP, + STATE(2010), 1, + aux_sym_let_chain_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61809] = 4, + ACTIONS(4011), 1, anon_sym_RBRACE, - ACTIONS(4896), 1, + ACTIONS(4882), 1, anon_sym_COMMA, - STATE(1984), 1, + STATE(1922), 1, aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61817] = 3, - ACTIONS(4900), 1, + [61823] = 3, + ACTIONS(4886), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4898), 2, + ACTIONS(4884), 2, anon_sym_RBRACE, anon_sym_COMMA, - [61829] = 4, - ACTIONS(284), 1, + [61835] = 4, + ACTIONS(3778), 1, anon_sym_LBRACE, - ACTIONS(4902), 1, - anon_sym_move, - STATE(1077), 1, - sym_block, + ACTIONS(4888), 1, + anon_sym_SEMI, + STATE(794), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61843] = 4, - ACTIONS(2383), 1, + [61849] = 4, + ACTIONS(2389), 1, anon_sym_RPAREN, - ACTIONS(4904), 1, + ACTIONS(4890), 1, anon_sym_COMMA, - STATE(1798), 1, + STATE(1841), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61857] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4906), 2, - anon_sym_COMMA, - anon_sym_GT, - [61869] = 4, - ACTIONS(4095), 1, + [61863] = 4, + ACTIONS(3778), 1, anon_sym_LBRACE, - ACTIONS(4908), 1, + ACTIONS(4892), 1, anon_sym_SEMI, - STATE(359), 1, - sym_block, + STATE(788), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61883] = 4, - ACTIONS(4910), 1, + [61877] = 4, + ACTIONS(2506), 1, anon_sym_RPAREN, - ACTIONS(4912), 1, + ACTIONS(4894), 1, anon_sym_COMMA, - STATE(2018), 1, - aux_sym_meta_arguments_repeat1, + STATE(1991), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61897] = 4, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(4915), 1, - sym_identifier, - STATE(2483), 1, - sym_type_arguments, + [61891] = 4, + ACTIONS(4067), 1, + anon_sym_LBRACE, + ACTIONS(4896), 1, + anon_sym_SEMI, + STATE(854), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61911] = 4, - ACTIONS(3864), 1, + [61905] = 4, + ACTIONS(4871), 1, + anon_sym_AMP_AMP, + ACTIONS(4898), 1, anon_sym_LBRACE, - ACTIONS(4917), 1, - anon_sym_SEMI, - STATE(295), 1, - sym_declaration_list, + STATE(2019), 1, + aux_sym_let_chain_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61925] = 4, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(4915), 1, - sym_identifier, - STATE(2493), 1, - sym_type_arguments, + [61919] = 4, + ACTIONS(3377), 1, + anon_sym_LBRACE, + ACTIONS(4900), 1, + anon_sym_AMP_AMP, + STATE(2019), 1, + aux_sym_let_chain_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61939] = 4, + [61933] = 4, ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(4919), 1, + ACTIONS(4903), 1, sym_identifier, - STATE(2493), 1, + STATE(2491), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61953] = 3, - ACTIONS(4259), 1, - anon_sym_COLON, + [61947] = 4, + ACTIONS(766), 1, + anon_sym_RPAREN, + ACTIONS(4905), 1, + anon_sym_COMMA, + STATE(1909), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4921), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [61965] = 4, - ACTIONS(4921), 1, - anon_sym_PIPE, - ACTIONS(4923), 1, - anon_sym_COMMA, - STATE(2024), 1, - aux_sym_closure_parameters_repeat1, + [61961] = 4, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(4907), 1, + sym_identifier, + STATE(2481), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61979] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - STATE(1059), 1, - sym_block, + [61975] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61993] = 4, + ACTIONS(3377), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + [61985] = 4, ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(4919), 1, + ACTIONS(4903), 1, sym_identifier, - STATE(2483), 1, + STATE(2481), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62007] = 2, + [61999] = 4, + ACTIONS(3834), 1, + anon_sym_RBRACE, + ACTIONS(4909), 1, + anon_sym_COMMA, + STATE(1903), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4926), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [62017] = 4, - ACTIONS(4547), 1, - anon_sym_EQ_GT, - ACTIONS(4549), 1, + [62013] = 4, + ACTIONS(4810), 1, anon_sym_AMP_AMP, - STATE(1932), 1, + ACTIONS(4898), 1, + anon_sym_EQ_GT, + STATE(2010), 1, aux_sym_let_chain_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62031] = 4, - ACTIONS(3864), 1, - anon_sym_LBRACE, - ACTIONS(4928), 1, - anon_sym_SEMI, - STATE(320), 1, - sym_declaration_list, + [62027] = 4, + ACTIONS(4911), 1, + anon_sym_RBRACE, + ACTIONS(4913), 1, + anon_sym_COMMA, + STATE(2003), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62045] = 4, - ACTIONS(4075), 1, + [62041] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(4930), 1, + ACTIONS(4915), 1, anon_sym_SEMI, - ACTIONS(4932), 1, + ACTIONS(4917), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62059] = 4, - ACTIONS(3864), 1, - anon_sym_LBRACE, - ACTIONS(4934), 1, - anon_sym_SEMI, - STATE(293), 1, - sym_declaration_list, + [62055] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62073] = 4, - ACTIONS(4331), 1, + ACTIONS(4473), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62067] = 4, + ACTIONS(4249), 1, anon_sym_COMMA, - ACTIONS(4333), 1, + ACTIONS(4251), 1, anon_sym_GT, - STATE(2103), 1, + STATE(2101), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62087] = 4, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(4936), 1, - anon_sym_SEMI, - STATE(2406), 1, - sym_where_clause, + [62081] = 3, + ACTIONS(3175), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62101] = 4, - ACTIONS(3788), 1, - anon_sym_RBRACE, - ACTIONS(4938), 1, + ACTIONS(4919), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1885), 1, - aux_sym_field_initializer_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62115] = 3, - ACTIONS(4942), 1, - anon_sym_COLON, + [62093] = 3, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4940), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62127] = 4, - ACTIONS(4065), 1, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62105] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4944), 1, + ACTIONS(4921), 1, anon_sym_SEMI, - STATE(990), 1, + STATE(303), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62141] = 2, + [62119] = 4, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(4907), 1, + sym_identifier, + STATE(2491), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4946), 3, - anon_sym_SEMI, + [62133] = 3, + ACTIONS(4299), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4923), 2, anon_sym_RBRACE, anon_sym_COMMA, - [62151] = 4, - ACTIONS(3830), 1, + [62145] = 4, + ACTIONS(3778), 1, anon_sym_LBRACE, - ACTIONS(4948), 1, + ACTIONS(4925), 1, anon_sym_SEMI, - STATE(957), 1, + STATE(1030), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62165] = 4, - ACTIONS(3864), 1, - anon_sym_LBRACE, - ACTIONS(4950), 1, - anon_sym_SEMI, - STATE(317), 1, - sym_declaration_list, + [62159] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62179] = 4, - ACTIONS(4065), 1, - anon_sym_LBRACE, - ACTIONS(4952), 1, - anon_sym_SEMI, - STATE(1006), 1, - sym_block, + ACTIONS(4927), 2, + anon_sym_COMMA, + anon_sym_GT, + [62171] = 4, + ACTIONS(4451), 1, + anon_sym_COMMA, + ACTIONS(4453), 1, + anon_sym_GT, + STATE(2008), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62193] = 4, - ACTIONS(4065), 1, + [62185] = 4, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4954), 1, + ACTIONS(4929), 1, anon_sym_SEMI, - STATE(1015), 1, - sym_block, + STATE(290), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62207] = 4, + [62199] = 4, ACTIONS(3437), 1, anon_sym_LT2, - ACTIONS(3742), 1, + ACTIONS(3768), 1, anon_sym_LBRACE, - STATE(1352), 1, + STATE(1353), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62221] = 3, - ACTIONS(4075), 1, + [62213] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4956), 2, - anon_sym_RBRACE, + ACTIONS(4931), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [62233] = 4, - ACTIONS(4065), 1, - anon_sym_LBRACE, - ACTIONS(4958), 1, - anon_sym_SEMI, - STATE(1023), 1, - sym_block, + [62225] = 4, + ACTIONS(4933), 1, + anon_sym_for, + ACTIONS(4935), 1, + anon_sym_loop, + ACTIONS(4937), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62247] = 4, + [62239] = 4, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4960), 1, + ACTIONS(4939), 1, anon_sym_SEMI, - STATE(2522), 1, + STATE(2534), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62261] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4962), 1, - anon_sym_SEMI, - ACTIONS(4964), 1, - anon_sym_EQ, + [62253] = 4, + ACTIONS(4941), 1, + anon_sym_RPAREN, + ACTIONS(4943), 1, + anon_sym_COMMA, + STATE(1960), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62275] = 4, - ACTIONS(4095), 1, + [62267] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4966), 1, + ACTIONS(4945), 1, anon_sym_SEMI, - STATE(390), 1, + STATE(391), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62289] = 4, - ACTIONS(4065), 1, - anon_sym_LBRACE, - ACTIONS(4968), 1, - anon_sym_SEMI, - STATE(1032), 1, - sym_block, + [62281] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62303] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(4970), 1, - anon_sym_SEMI, - STATE(987), 1, - sym_declaration_list, + ACTIONS(4947), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62293] = 4, + ACTIONS(4949), 1, + anon_sym_RBRACE, + ACTIONS(4951), 1, + anon_sym_COMMA, + STATE(2011), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62317] = 4, - ACTIONS(4972), 1, - anon_sym_RPAREN, - ACTIONS(4974), 1, - anon_sym_COMMA, - STATE(2055), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [62307] = 4, + ACTIONS(3848), 1, + anon_sym_LBRACE, + ACTIONS(4953), 1, + anon_sym_SEMI, + STATE(317), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62331] = 4, - ACTIONS(3830), 1, + [62321] = 4, + ACTIONS(3848), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, + ACTIONS(4955), 1, anon_sym_SEMI, - STATE(1005), 1, + STATE(320), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62345] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + [62335] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4978), 2, + ACTIONS(4957), 3, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [62357] = 4, - ACTIONS(4065), 1, - anon_sym_LBRACE, - ACTIONS(4980), 1, - anon_sym_SEMI, - STATE(985), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62371] = 4, + [62345] = 4, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(4982), 1, + ACTIONS(4959), 1, anon_sym_SEMI, - STATE(2546), 1, + STATE(2429), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62385] = 4, - ACTIONS(4984), 1, + [62359] = 3, + ACTIONS(4963), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4961), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62371] = 4, + ACTIONS(4965), 1, anon_sym_RPAREN, - ACTIONS(4986), 1, + ACTIONS(4967), 1, anon_sym_COMMA, - STATE(2055), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2053), 1, + aux_sym_meta_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62385] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(4970), 1, + anon_sym_SEMI, + ACTIONS(4972), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [62399] = 4, - ACTIONS(4065), 1, + ACTIONS(4067), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(4974), 1, anon_sym_SEMI, - STATE(973), 1, + STATE(1011), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [62413] = 4, - ACTIONS(4991), 1, - anon_sym_RPAREN, - ACTIONS(4993), 1, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4976), 1, + anon_sym_SEMI, + STATE(359), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62427] = 4, + ACTIONS(624), 1, + anon_sym_RBRACK, + ACTIONS(3181), 1, anon_sym_COMMA, - STATE(2055), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(1864), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62427] = 3, - ACTIONS(4075), 1, + [62441] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, + ACTIONS(4978), 1, + anon_sym_SEMI, + ACTIONS(4980), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4995), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62439] = 4, - ACTIONS(4065), 1, - anon_sym_LBRACE, - ACTIONS(4997), 1, - anon_sym_SEMI, - STATE(953), 1, - sym_block, + [62455] = 3, + ACTIONS(4231), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62453] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + ACTIONS(3435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62467] = 4, + ACTIONS(3778), 1, + anon_sym_LBRACE, + ACTIONS(4982), 1, + anon_sym_SEMI, + STATE(783), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4999), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62465] = 4, + [62481] = 4, ACTIONS(760), 1, anon_sym_RPAREN, - ACTIONS(4292), 1, + ACTIONS(4329), 1, anon_sym_COMMA, - STATE(1942), 1, + STATE(1913), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62479] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(5001), 1, - anon_sym_SEMI, - STATE(886), 1, - sym_declaration_list, + [62495] = 3, + ACTIONS(4984), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62493] = 4, - ACTIONS(3830), 1, + ACTIONS(4986), 2, + anon_sym_default, + anon_sym_union, + [62507] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(5003), 1, + ACTIONS(4988), 1, anon_sym_SEMI, - STATE(948), 1, - sym_declaration_list, + STATE(387), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62507] = 4, - ACTIONS(5005), 1, - anon_sym_RBRACE, - ACTIONS(5007), 1, - anon_sym_COMMA, - STATE(2064), 1, - aux_sym_field_declaration_list_repeat1, + [62521] = 3, + ACTIONS(4990), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62521] = 4, - ACTIONS(3830), 1, + ACTIONS(4992), 2, + anon_sym_default, + anon_sym_union, + [62533] = 4, + ACTIONS(3778), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4994), 1, anon_sym_SEMI, - STATE(936), 1, + STATE(980), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62535] = 4, - ACTIONS(3870), 1, + [62547] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4996), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [62557] = 4, + ACTIONS(3850), 1, anon_sym_RBRACE, - ACTIONS(5012), 1, + ACTIONS(4998), 1, anon_sym_COMMA, - STATE(2064), 1, + STATE(2005), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62549] = 4, - ACTIONS(3822), 1, + [62571] = 4, + ACTIONS(3850), 1, anon_sym_RBRACE, - ACTIONS(5014), 1, + ACTIONS(4998), 1, anon_sym_COMMA, - STATE(2064), 1, + STATE(1968), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62563] = 4, - ACTIONS(4075), 1, + [62585] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(5016), 1, + ACTIONS(5000), 1, anon_sym_SEMI, - ACTIONS(5018), 1, + ACTIONS(5002), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62577] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(5020), 1, + [62599] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5004), 1, anon_sym_SEMI, - STATE(924), 1, - sym_declaration_list, + ACTIONS(5006), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62591] = 4, - ACTIONS(3830), 1, + [62613] = 4, + ACTIONS(3778), 1, anon_sym_LBRACE, - ACTIONS(5022), 1, + ACTIONS(5008), 1, anon_sym_SEMI, - STATE(921), 1, + STATE(959), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62605] = 4, - ACTIONS(4065), 1, - anon_sym_LBRACE, - ACTIONS(5024), 1, - anon_sym_SEMI, - STATE(914), 1, - sym_block, + [62627] = 4, + ACTIONS(5010), 1, + anon_sym_for, + ACTIONS(5012), 1, + anon_sym_loop, + ACTIONS(5014), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62619] = 4, - ACTIONS(766), 1, - anon_sym_RPAREN, - ACTIONS(5026), 1, - anon_sym_COMMA, - STATE(1938), 1, - aux_sym_parameters_repeat1, + [62641] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62633] = 4, - ACTIONS(3864), 1, - anon_sym_LBRACE, - ACTIONS(5028), 1, + ACTIONS(2375), 3, anon_sym_SEMI, - STATE(288), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62647] = 4, - ACTIONS(3437), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [62651] = 4, + ACTIONS(2550), 1, anon_sym_LT2, - ACTIONS(5030), 1, + ACTIONS(5016), 1, sym_identifier, - STATE(2493), 1, + STATE(816), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62661] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5032), 2, - anon_sym_COMMA, - anon_sym_GT, - [62673] = 4, - ACTIONS(3826), 1, - anon_sym_RBRACE, - ACTIONS(5034), 1, - anon_sym_COMMA, - STATE(1916), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62687] = 4, - ACTIONS(4075), 1, + [62665] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(5036), 1, + ACTIONS(5018), 1, anon_sym_SEMI, - ACTIONS(5038), 1, + ACTIONS(5020), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62701] = 3, - ACTIONS(4152), 1, + [62679] = 3, + ACTIONS(4187), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -123166,1405 +123133,1404 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3435), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [62713] = 4, - ACTIONS(760), 1, - anon_sym_RPAREN, - ACTIONS(4292), 1, - anon_sym_COMMA, - STATE(1938), 1, - aux_sym_parameters_repeat1, + [62691] = 4, + ACTIONS(5022), 1, + sym_identifier, + ACTIONS(5024), 1, + anon_sym_await, + ACTIONS(5026), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62727] = 3, - ACTIONS(4263), 1, - anon_sym_PIPE, + [62705] = 4, + ACTIONS(3778), 1, + anon_sym_LBRACE, + ACTIONS(5028), 1, + anon_sym_SEMI, + STATE(935), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5040), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [62739] = 4, - ACTIONS(4095), 1, + [62719] = 4, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(5042), 1, - anon_sym_SEMI, - STATE(301), 1, + ACTIONS(4073), 1, + anon_sym_PLUS, + STATE(1118), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62753] = 4, - ACTIONS(5044), 1, + [62733] = 4, + ACTIONS(5030), 1, anon_sym_RBRACE, - ACTIONS(5046), 1, + ACTIONS(5032), 1, anon_sym_COMMA, - STATE(2124), 1, + STATE(2121), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62767] = 3, - ACTIONS(3173), 1, - anon_sym_COLON_COLON, + [62747] = 3, + ACTIONS(4299), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5048), 2, - anon_sym_RPAREN, + ACTIONS(5034), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [62779] = 4, - ACTIONS(3864), 1, - anon_sym_LBRACE, - ACTIONS(5050), 1, - anon_sym_SEMI, - STATE(281), 1, - sym_declaration_list, + [62759] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62793] = 4, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(5052), 1, - anon_sym_SEMI, - STATE(2476), 1, - sym_where_clause, + ACTIONS(5036), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [62771] = 4, + ACTIONS(2345), 1, + anon_sym_RBRACK, + ACTIONS(5038), 1, + anon_sym_COMMA, + STATE(1841), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62807] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5054), 1, - anon_sym_SEMI, - ACTIONS(5056), 1, - anon_sym_EQ, + [62785] = 4, + ACTIONS(760), 1, + anon_sym_RPAREN, + ACTIONS(4329), 1, + anon_sym_COMMA, + STATE(1909), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62821] = 4, - ACTIONS(4065), 1, - anon_sym_LBRACE, - ACTIONS(5058), 1, - anon_sym_SEMI, - STATE(871), 1, - sym_block, + [62799] = 4, + ACTIONS(896), 1, + anon_sym_GT, + ACTIONS(5040), 1, + anon_sym_COMMA, + STATE(1936), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62835] = 4, - ACTIONS(3864), 1, - anon_sym_LBRACE, - ACTIONS(5060), 1, - anon_sym_SEMI, - STATE(269), 1, - sym_declaration_list, + [62813] = 4, + ACTIONS(2411), 1, + anon_sym_RPAREN, + ACTIONS(5042), 1, + anon_sym_COMMA, + STATE(1841), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62849] = 4, - ACTIONS(4288), 1, + [62827] = 4, + ACTIONS(4319), 1, anon_sym_RPAREN, - ACTIONS(4290), 1, + ACTIONS(4321), 1, anon_sym_COMMA, - STATE(2127), 1, + STATE(2117), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62863] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + [62841] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4365), 2, + ACTIONS(5044), 3, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [62875] = 2, + [62851] = 4, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(5046), 1, + anon_sym_SEMI, + STATE(404), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5062), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62885] = 4, - ACTIONS(4065), 1, + [62865] = 4, + ACTIONS(4067), 1, anon_sym_LBRACE, - ACTIONS(5064), 1, + ACTIONS(5048), 1, anon_sym_SEMI, - STATE(852), 1, + STATE(800), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62899] = 4, - ACTIONS(3437), 1, - anon_sym_LT2, - ACTIONS(5030), 1, - sym_identifier, - STATE(2483), 1, - sym_type_arguments, + [62879] = 4, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(5050), 1, + anon_sym_SEMI, + STATE(468), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62913] = 2, + [62893] = 4, + ACTIONS(5052), 1, + sym_identifier, + ACTIONS(5054), 1, + anon_sym_ref, + ACTIONS(5056), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5066), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [62923] = 4, - ACTIONS(4337), 1, + [62907] = 4, + ACTIONS(4358), 1, anon_sym_COMMA, - ACTIONS(4339), 1, + ACTIONS(4360), 1, anon_sym_GT, - STATE(2133), 1, + STATE(2085), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62937] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(5068), 1, - anon_sym_SEMI, - STATE(858), 1, - sym_declaration_list, + [62921] = 4, + ACTIONS(3798), 1, + anon_sym_LT, + ACTIONS(5058), 1, + anon_sym_EQ, + STATE(2537), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62951] = 4, - ACTIONS(3149), 1, - anon_sym_RPAREN, - ACTIONS(5070), 1, - anon_sym_COMMA, - STATE(2018), 1, - aux_sym_meta_arguments_repeat1, + [62935] = 4, + ACTIONS(2480), 1, + anon_sym_PLUS, + ACTIONS(5060), 1, + sym_mutable_specifier, + ACTIONS(5062), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62965] = 2, + [62949] = 4, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(5064), 1, + anon_sym_SEMI, + STATE(256), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5072), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [62975] = 4, - ACTIONS(2518), 1, + [62963] = 4, + ACTIONS(2490), 1, anon_sym_RPAREN, - ACTIONS(5074), 1, + ACTIONS(5066), 1, anon_sym_COMMA, - STATE(1992), 1, + STATE(1991), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62989] = 2, + [62977] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5076), 3, + ACTIONS(5068), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, - [62999] = 4, - ACTIONS(3784), 1, + [62987] = 4, + ACTIONS(3814), 1, anon_sym_GT, - ACTIONS(5078), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - STATE(1972), 1, + STATE(1974), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63013] = 4, - ACTIONS(3868), 1, - anon_sym_RBRACE, - ACTIONS(5080), 1, - anon_sym_COMMA, - STATE(1918), 1, - aux_sym_enum_variant_list_repeat2, + [63001] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63027] = 4, - ACTIONS(3858), 1, + ACTIONS(5072), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [63011] = 4, + ACTIONS(3804), 1, anon_sym_GT, - ACTIONS(5082), 1, + ACTIONS(5074), 1, anon_sym_COMMA, - STATE(1972), 1, + STATE(1974), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63041] = 4, - ACTIONS(3868), 1, + [63025] = 4, + ACTIONS(3788), 1, anon_sym_RBRACE, - ACTIONS(5080), 1, + ACTIONS(5076), 1, anon_sym_COMMA, - STATE(1916), 1, + STATE(1906), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63055] = 4, - ACTIONS(4095), 1, - anon_sym_LBRACE, - ACTIONS(5084), 1, - anon_sym_SEMI, - STATE(265), 1, - sym_block, + [63039] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63069] = 4, - ACTIONS(3830), 1, + ACTIONS(5078), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [63049] = 4, + ACTIONS(3778), 1, anon_sym_LBRACE, - ACTIONS(5086), 1, + ACTIONS(5080), 1, anon_sym_SEMI, - STATE(838), 1, + STATE(837), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63083] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5088), 1, - anon_sym_SEMI, - ACTIONS(5090), 1, - anon_sym_EQ, + [63063] = 4, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(5082), 1, + sym_identifier, + STATE(2481), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63097] = 4, - ACTIONS(4083), 1, - anon_sym_COMMA, - ACTIONS(4085), 1, - anon_sym_GT, - STATE(1919), 1, - aux_sym_type_parameters_repeat1, + [63077] = 4, + ACTIONS(2550), 1, + anon_sym_LT2, + ACTIONS(5016), 1, + sym_identifier, + STATE(967), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63111] = 4, - ACTIONS(4075), 1, + [63091] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(5092), 1, + ACTIONS(5084), 1, anon_sym_SEMI, - ACTIONS(5094), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63125] = 3, - ACTIONS(5098), 1, + ACTIONS(5086), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5096), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63137] = 4, - ACTIONS(3840), 1, + [63105] = 4, + ACTIONS(3788), 1, anon_sym_RBRACE, - ACTIONS(5100), 1, + ACTIONS(5076), 1, anon_sym_COMMA, - STATE(2067), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1903), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63151] = 4, - ACTIONS(3840), 1, - anon_sym_RBRACE, - ACTIONS(5100), 1, - anon_sym_COMMA, - STATE(2064), 1, - aux_sym_field_declaration_list_repeat1, + [63119] = 4, + ACTIONS(3437), 1, + anon_sym_LT2, + ACTIONS(5082), 1, + sym_identifier, + STATE(2491), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63165] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5102), 1, + [63133] = 4, + ACTIONS(4067), 1, + anon_sym_LBRACE, + ACTIONS(5088), 1, anon_sym_SEMI, - ACTIONS(5104), 1, - anon_sym_EQ, + STATE(925), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63179] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5106), 1, + [63147] = 4, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(5090), 1, anon_sym_SEMI, - ACTIONS(5108), 1, - anon_sym_EQ, + STATE(310), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63193] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(5110), 1, - anon_sym_SEMI, - STATE(842), 1, - sym_declaration_list, + [63161] = 4, + ACTIONS(762), 1, + anon_sym_RPAREN, + ACTIONS(4301), 1, + anon_sym_COMMA, + STATE(2021), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63207] = 4, - ACTIONS(4075), 1, + [63175] = 4, + ACTIONS(4441), 1, + anon_sym_COMMA, + ACTIONS(5092), 1, + anon_sym_PIPE, + STATE(1918), 1, + aux_sym_closure_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63189] = 4, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(5112), 1, + ACTIONS(5094), 1, anon_sym_SEMI, - ACTIONS(5114), 1, + ACTIONS(5096), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63221] = 4, - ACTIONS(4547), 1, - anon_sym_LBRACE, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - STATE(1908), 1, - aux_sym_let_chain_repeat1, + [63203] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63235] = 4, - ACTIONS(5116), 1, + ACTIONS(5098), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [63213] = 4, + ACTIONS(5100), 1, anon_sym_RBRACE, - ACTIONS(5118), 1, + ACTIONS(5102), 1, anon_sym_COMMA, - STATE(2112), 1, + STATE(2068), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63249] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(5120), 1, - anon_sym_SEMI, - STATE(830), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63263] = 4, - ACTIONS(3796), 1, - anon_sym_where, - ACTIONS(5122), 1, - anon_sym_SEMI, - STATE(2506), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63277] = 4, - ACTIONS(3830), 1, - anon_sym_LBRACE, - ACTIONS(5124), 1, - anon_sym_SEMI, - STATE(798), 1, - sym_declaration_list, + [63227] = 4, + ACTIONS(762), 1, + anon_sym_RPAREN, + ACTIONS(4301), 1, + anon_sym_COMMA, + STATE(1909), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63291] = 4, + [63241] = 4, ACTIONS(3796), 1, anon_sym_where, - ACTIONS(5126), 1, + ACTIONS(5104), 1, anon_sym_SEMI, - STATE(2489), 1, + STATE(2492), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63305] = 4, - ACTIONS(392), 1, - anon_sym_RPAREN, - ACTIONS(3203), 1, - anon_sym_COMMA, - STATE(1887), 1, - aux_sym_arguments_repeat1, + [63255] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63319] = 4, - ACTIONS(3856), 1, + ACTIONS(5106), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [63265] = 4, + ACTIONS(3816), 1, anon_sym_RBRACE, - ACTIONS(5128), 1, + ACTIONS(5108), 1, anon_sym_COMMA, - STATE(1916), 1, + STATE(2025), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63333] = 4, - ACTIONS(3856), 1, + [63279] = 4, + ACTIONS(3816), 1, anon_sym_RBRACE, - ACTIONS(5128), 1, + ACTIONS(5108), 1, anon_sym_COMMA, - STATE(2076), 1, + STATE(1903), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63347] = 4, - ACTIONS(4095), 1, - anon_sym_LBRACE, - ACTIONS(5130), 1, - anon_sym_SEMI, - STATE(282), 1, - sym_block, + [63293] = 4, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5110), 1, + anon_sym_as, + ACTIONS(5112), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63361] = 4, - ACTIONS(762), 1, + [63307] = 4, + ACTIONS(394), 1, anon_sym_RPAREN, - ACTIONS(4294), 1, + ACTIONS(3189), 1, anon_sym_COMMA, - STATE(1938), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63375] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5132), 1, - anon_sym_SEMI, - ACTIONS(5134), 1, - anon_sym_RBRACK, + STATE(1881), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63389] = 4, - ACTIONS(762), 1, + [63321] = 4, + ACTIONS(4262), 1, anon_sym_RPAREN, - ACTIONS(4294), 1, + ACTIONS(4264), 1, anon_sym_COMMA, - STATE(2072), 1, + STATE(2084), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63403] = 2, + [63335] = 3, + ACTIONS(5116), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2369), 3, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(5114), 2, anon_sym_RBRACE, - [63413] = 4, - ACTIONS(4065), 1, + anon_sym_COMMA, + [63347] = 4, + ACTIONS(5118), 1, + sym_identifier, + ACTIONS(5120), 1, + anon_sym_ref, + ACTIONS(5122), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63361] = 4, + ACTIONS(3778), 1, anon_sym_LBRACE, - ACTIONS(5136), 1, + ACTIONS(5124), 1, anon_sym_SEMI, - STATE(824), 1, - sym_block, + STATE(875), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63427] = 4, - ACTIONS(4547), 1, - anon_sym_LBRACE, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - STATE(1908), 1, - aux_sym_let_chain_repeat1, + [63375] = 4, + ACTIONS(3796), 1, + anon_sym_where, + ACTIONS(5126), 1, + anon_sym_SEMI, + STATE(2472), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63441] = 4, - ACTIONS(898), 1, - anon_sym_GT, - ACTIONS(5138), 1, - anon_sym_COMMA, - STATE(1998), 1, - aux_sym_type_arguments_repeat1, + [63389] = 4, + ACTIONS(5128), 1, + sym_identifier, + ACTIONS(5130), 1, + anon_sym_ref, + ACTIONS(5132), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63455] = 3, - ACTIONS(5140), 1, - anon_sym_SEMI, - ACTIONS(5142), 1, - anon_sym_as, + [63403] = 4, + ACTIONS(3285), 1, + anon_sym_LBRACE, + ACTIONS(5134), 1, + sym_identifier, + STATE(1890), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63466] = 2, + [63417] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4842), 2, + ACTIONS(5136), 3, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [63475] = 3, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(1912), 1, - sym_lifetime, + [63427] = 3, + ACTIONS(4169), 1, + anon_sym_LBRACE, + STATE(787), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63486] = 3, - ACTIONS(3830), 1, + [63438] = 3, + ACTIONS(3848), 1, anon_sym_LBRACE, - STATE(789), 1, + STATE(266), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63497] = 3, - ACTIONS(3802), 1, + [63449] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5138), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63458] = 3, + ACTIONS(3965), 1, + anon_sym_RBRACE, + ACTIONS(5140), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63469] = 3, + ACTIONS(3794), 1, anon_sym_LBRACE, - STATE(809), 1, + STATE(898), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63508] = 2, + [63480] = 3, + ACTIONS(3778), 1, + anon_sym_LBRACE, + STATE(880), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5144), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63517] = 3, - ACTIONS(3802), 1, + [63491] = 3, + ACTIONS(3794), 1, anon_sym_LBRACE, - STATE(812), 1, + STATE(901), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63528] = 2, + [63502] = 3, + ACTIONS(3794), 1, + anon_sym_LBRACE, + STATE(867), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5146), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63537] = 3, - ACTIONS(5148), 1, + [63513] = 3, + ACTIONS(5140), 1, anon_sym_SEMI, - ACTIONS(5150), 1, + ACTIONS(5142), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63548] = 3, - ACTIONS(5152), 1, + [63524] = 3, + ACTIONS(5144), 1, anon_sym_SEMI, - ACTIONS(5154), 1, + ACTIONS(5146), 1, anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63559] = 3, + [63535] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1084), 1, + STATE(1075), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63570] = 3, - ACTIONS(5148), 1, + [63546] = 3, + ACTIONS(5140), 1, anon_sym_SEMI, - ACTIONS(5156), 1, + ACTIONS(5148), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63581] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5158), 1, - anon_sym_SEMI, + [63557] = 3, + ACTIONS(5150), 1, + sym_identifier, + ACTIONS(5152), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63592] = 3, - ACTIONS(3830), 1, + [63568] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(790), 1, - sym_declaration_list, + STATE(58), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63603] = 3, - ACTIONS(5160), 1, + [63579] = 3, + ACTIONS(5128), 1, sym_identifier, - ACTIONS(5162), 1, + ACTIONS(5132), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63614] = 3, - ACTIONS(5148), 1, + [63590] = 3, + ACTIONS(5140), 1, anon_sym_SEMI, - ACTIONS(5164), 1, + ACTIONS(5154), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63625] = 3, - ACTIONS(3794), 1, - anon_sym_LBRACE, - STATE(328), 1, - sym_field_declaration_list, + [63601] = 3, + ACTIONS(4299), 1, + anon_sym_PIPE, + ACTIONS(5156), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63636] = 3, - ACTIONS(5148), 1, + [63612] = 3, + ACTIONS(5140), 1, anon_sym_SEMI, - ACTIONS(5166), 1, + ACTIONS(5158), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63647] = 3, - ACTIONS(5148), 1, + [63623] = 3, + ACTIONS(5140), 1, anon_sym_SEMI, - ACTIONS(5168), 1, + ACTIONS(5160), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63658] = 3, - ACTIONS(4551), 1, - sym_identifier, - ACTIONS(4555), 1, - sym_mutable_specifier, + [63634] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5162), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63669] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5170), 1, - anon_sym_SEMI, + [63645] = 3, + ACTIONS(3778), 1, + anon_sym_LBRACE, + STATE(862), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63680] = 3, - ACTIONS(4263), 1, - anon_sym_PIPE, - ACTIONS(5172), 1, - anon_sym_in, + [63656] = 3, + ACTIONS(3778), 1, + anon_sym_LBRACE, + STATE(860), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63691] = 3, - ACTIONS(4263), 1, + [63667] = 3, + ACTIONS(4299), 1, anon_sym_PIPE, - ACTIONS(5174), 1, + ACTIONS(5164), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63702] = 3, - ACTIONS(4263), 1, + [63678] = 3, + ACTIONS(4299), 1, anon_sym_PIPE, - ACTIONS(5176), 1, + ACTIONS(5166), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63713] = 3, - ACTIONS(3802), 1, + [63689] = 3, + ACTIONS(3794), 1, anon_sym_LBRACE, - STATE(794), 1, + STATE(859), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63724] = 2, + [63700] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2343), 2, - anon_sym_COMMA, - anon_sym_GT, - [63733] = 2, + ACTIONS(5168), 2, + sym_identifier, + sym_metavariable, + [63709] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5178), 2, + ACTIONS(5170), 2, sym_identifier, sym_metavariable, - [63742] = 3, - ACTIONS(3802), 1, - anon_sym_LBRACE, - STATE(788), 1, - sym_field_declaration_list, + [63718] = 3, + ACTIONS(3997), 1, + anon_sym_COLON_COLON, + ACTIONS(5172), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63753] = 3, - ACTIONS(3830), 1, - anon_sym_LBRACE, - STATE(799), 1, - sym_declaration_list, + [63729] = 3, + ACTIONS(3999), 1, + anon_sym_COLON_COLON, + ACTIONS(5172), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63764] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5180), 1, - anon_sym_SEMI, + [63740] = 3, + ACTIONS(4001), 1, + anon_sym_COLON_COLON, + ACTIONS(5172), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63775] = 3, - ACTIONS(4195), 1, - anon_sym_LBRACE, - STATE(331), 1, - sym_enum_variant_list, + [63751] = 3, + ACTIONS(3572), 1, + anon_sym_COLON_COLON, + ACTIONS(5174), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63786] = 3, - ACTIONS(4259), 1, + [63762] = 3, + ACTIONS(4295), 1, anon_sym_COLON, - ACTIONS(4263), 1, + ACTIONS(4299), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63797] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(63), 1, - sym_block, + [63773] = 3, + ACTIONS(2542), 1, + anon_sym_LPAREN, + STATE(840), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63808] = 3, - ACTIONS(5182), 1, - anon_sym_SEMI, - ACTIONS(5184), 1, - anon_sym_as, + [63784] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63819] = 3, - ACTIONS(3441), 1, - anon_sym_LPAREN, - STATE(1639), 1, - sym_parameters, + ACTIONS(5176), 2, + sym_identifier, + sym_metavariable, + [63793] = 3, + ACTIONS(2550), 1, + anon_sym_LT2, + STATE(1124), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63830] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(62), 1, - sym_block, + [63804] = 3, + ACTIONS(4299), 1, + anon_sym_PIPE, + ACTIONS(5178), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63841] = 3, - ACTIONS(3864), 1, + [63815] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(260), 1, - sym_declaration_list, + STATE(62), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63852] = 3, - ACTIONS(4013), 1, - anon_sym_COLON_COLON, - ACTIONS(5186), 1, - anon_sym_RPAREN, + [63826] = 3, + ACTIONS(5180), 1, + anon_sym_LBRACK, + ACTIONS(5182), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63863] = 2, + [63837] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5188), 2, - sym_identifier, - sym_metavariable, - [63872] = 3, - ACTIONS(4263), 1, - anon_sym_PIPE, - ACTIONS(5190), 1, - anon_sym_EQ, + ACTIONS(5184), 2, + sym_float_literal, + sym_integer_literal, + [63846] = 3, + ACTIONS(3981), 1, + anon_sym_RBRACE, + ACTIONS(5140), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63883] = 3, - ACTIONS(4263), 1, - anon_sym_PIPE, - ACTIONS(5192), 1, - anon_sym_in, + [63857] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63894] = 3, - ACTIONS(4039), 1, - anon_sym_COLON_COLON, - ACTIONS(5186), 1, - anon_sym_RPAREN, + ACTIONS(5186), 2, + sym_identifier, + sym_metavariable, + [63866] = 3, + ACTIONS(3848), 1, + anon_sym_LBRACE, + STATE(366), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63905] = 3, - ACTIONS(4263), 1, + [63877] = 3, + ACTIONS(4299), 1, anon_sym_PIPE, - ACTIONS(5194), 1, + ACTIONS(5188), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63916] = 3, - ACTIONS(5196), 1, - anon_sym_LBRACK, - ACTIONS(5198), 1, - anon_sym_BANG, + [63888] = 3, + ACTIONS(5190), 1, + sym_identifier, + ACTIONS(5192), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63927] = 2, + [63899] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5200), 2, - sym_identifier, - sym_metavariable, - [63936] = 3, - ACTIONS(4075), 1, + ACTIONS(4965), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63908] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(5202), 1, + ACTIONS(5194), 1, anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63947] = 3, - ACTIONS(4011), 1, - anon_sym_COLON_COLON, - ACTIONS(5186), 1, - anon_sym_RPAREN, + [63919] = 3, + ACTIONS(4135), 1, + anon_sym_LBRACE, + STATE(285), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63958] = 3, - ACTIONS(3580), 1, - anon_sym_COLON_COLON, - ACTIONS(5204), 1, - anon_sym_RPAREN, + [63930] = 3, + ACTIONS(3441), 1, + anon_sym_LPAREN, + STATE(1655), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63969] = 2, + [63941] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4601), 2, + ACTIONS(5196), 2, anon_sym_RBRACE, anon_sym_COMMA, - [63978] = 3, - ACTIONS(3830), 1, + [63950] = 3, + ACTIONS(3778), 1, anon_sym_LBRACE, - STATE(850), 1, + STATE(970), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63989] = 3, - ACTIONS(4075), 1, + [63961] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(5206), 1, + ACTIONS(5198), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64000] = 3, - ACTIONS(5208), 1, - sym_identifier, - ACTIONS(5210), 1, - sym_mutable_specifier, + [63972] = 3, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(2245), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64011] = 3, - ACTIONS(2542), 1, - anon_sym_LPAREN, - STATE(832), 1, - sym_parameters, + [63983] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64022] = 2, + ACTIONS(4473), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63992] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1111), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5212), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64031] = 3, - ACTIONS(3830), 1, + [64003] = 3, + ACTIONS(3778), 1, anon_sym_LBRACE, - STATE(862), 1, + STATE(999), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64042] = 3, - ACTIONS(3830), 1, + [64014] = 3, + ACTIONS(3778), 1, anon_sym_LBRACE, - STATE(864), 1, + STATE(1001), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64053] = 2, + [64025] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4365), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64062] = 3, - ACTIONS(2932), 1, - anon_sym_COLON, - ACTIONS(4075), 1, - anon_sym_PLUS, + ACTIONS(5200), 2, + sym_identifier, + sym_metavariable, + [64034] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64073] = 2, + ACTIONS(5202), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64043] = 3, + ACTIONS(4299), 1, + anon_sym_PIPE, + ACTIONS(5204), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5214), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64082] = 3, - ACTIONS(3864), 1, - anon_sym_LBRACE, - STATE(268), 1, - sym_declaration_list, + [64054] = 3, + ACTIONS(5206), 1, + anon_sym_SEMI, + ACTIONS(5208), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64093] = 3, - ACTIONS(3431), 1, - anon_sym_BANG, - ACTIONS(5216), 1, - anon_sym_COLON_COLON, + [64065] = 3, + ACTIONS(5052), 1, + sym_identifier, + ACTIONS(5056), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64104] = 3, - ACTIONS(4061), 1, + [64076] = 3, + ACTIONS(4169), 1, anon_sym_LBRACE, - STATE(876), 1, + STATE(1016), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64115] = 2, + [64087] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(75), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4645), 2, + [64098] = 3, + ACTIONS(5140), 1, + anon_sym_SEMI, + ACTIONS(5210), 1, anon_sym_RBRACE, - anon_sym_COMMA, - [64124] = 3, - ACTIONS(3441), 1, - anon_sym_LPAREN, - STATE(1366), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64135] = 3, - ACTIONS(3802), 1, + [64109] = 3, + ACTIONS(3794), 1, anon_sym_LBRACE, - STATE(885), 1, + STATE(1021), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64146] = 3, - ACTIONS(4075), 1, + [64120] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(5218), 1, + ACTIONS(5212), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64157] = 3, - ACTIONS(3802), 1, + [64131] = 3, + ACTIONS(3794), 1, anon_sym_LBRACE, - STATE(890), 1, + STATE(1027), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64168] = 3, - ACTIONS(3830), 1, + [64142] = 3, + ACTIONS(3778), 1, anon_sym_LBRACE, - STATE(892), 1, + STATE(1028), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64179] = 3, - ACTIONS(2768), 1, - anon_sym_COLON, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64190] = 3, - ACTIONS(4061), 1, + [64153] = 3, + ACTIONS(3794), 1, anon_sym_LBRACE, - STATE(866), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64201] = 3, - ACTIONS(2758), 1, - anon_sym_COLON, - ACTIONS(4075), 1, - anon_sym_PLUS, + STATE(881), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64212] = 2, + [64164] = 3, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(2001), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5220), 2, - sym_identifier, - sym_metavariable, - [64221] = 3, - ACTIONS(3864), 1, + [64175] = 3, + ACTIONS(3778), 1, anon_sym_LBRACE, - STATE(342), 1, + STATE(932), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64232] = 3, - ACTIONS(2960), 1, - anon_sym_COLON, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64243] = 3, + [64186] = 3, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(75), 1, + STATE(59), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64254] = 3, - ACTIONS(3864), 1, + [64197] = 3, + ACTIONS(3794), 1, anon_sym_LBRACE, - STATE(343), 1, - sym_declaration_list, + STATE(781), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64265] = 3, - ACTIONS(3864), 1, + [64208] = 3, + ACTIONS(3848), 1, anon_sym_LBRACE, - STATE(325), 1, + STATE(258), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64276] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(59), 1, - sym_block, + [64219] = 3, + ACTIONS(3441), 1, + anon_sym_LPAREN, + STATE(1670), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64287] = 2, + [64230] = 3, + ACTIONS(3848), 1, + anon_sym_LBRACE, + STATE(259), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5222), 2, - sym_float_literal, - sym_integer_literal, - [64296] = 3, - ACTIONS(3441), 1, + [64241] = 3, + ACTIONS(2542), 1, anon_sym_LPAREN, - STATE(1701), 1, + STATE(801), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64307] = 3, - ACTIONS(4045), 1, - anon_sym_RBRACE, - ACTIONS(5148), 1, + [64252] = 3, + ACTIONS(5214), 1, anon_sym_SEMI, + ACTIONS(5216), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64318] = 2, + [64263] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4681), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64327] = 3, - ACTIONS(4057), 1, - anon_sym_COLON, - ACTIONS(4075), 1, - anon_sym_PLUS, + ACTIONS(5218), 2, + sym_identifier, + sym_metavariable, + [64272] = 3, + ACTIONS(4299), 1, + anon_sym_PIPE, + ACTIONS(5220), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64338] = 3, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(2322), 1, - sym_lifetime, + [64283] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64349] = 3, - ACTIONS(4047), 1, - anon_sym_RBRACE, - ACTIONS(5148), 1, + ACTIONS(5222), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64292] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5224), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64301] = 3, + ACTIONS(5140), 1, anon_sym_SEMI, + ACTIONS(5226), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64360] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5224), 1, + [64312] = 3, + ACTIONS(5140), 1, anon_sym_SEMI, + ACTIONS(5228), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64371] = 3, - ACTIONS(3864), 1, + [64323] = 3, + ACTIONS(4169), 1, anon_sym_LBRACE, - STATE(351), 1, - sym_declaration_list, + STATE(894), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64382] = 3, - ACTIONS(4195), 1, + [64334] = 3, + ACTIONS(4135), 1, anon_sym_LBRACE, STATE(479), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64393] = 3, - ACTIONS(3794), 1, + [64345] = 3, + ACTIONS(4299), 1, + anon_sym_PIPE, + ACTIONS(5230), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64356] = 3, + ACTIONS(4169), 1, + anon_sym_LBRACE, + STATE(871), 1, + sym_enum_variant_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64367] = 3, + ACTIONS(3810), 1, anon_sym_LBRACE, STATE(415), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64404] = 2, + [64378] = 3, + ACTIONS(3441), 1, + anon_sym_LPAREN, + STATE(1372), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5226), 2, - sym_identifier, - sym_metavariable, - [64413] = 3, - ACTIONS(3528), 1, - anon_sym_COLON_COLON, - ACTIONS(3646), 1, - anon_sym_BANG, + [64389] = 3, + ACTIONS(3441), 1, + anon_sym_LPAREN, + STATE(1685), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64424] = 3, - ACTIONS(3794), 1, - anon_sym_LBRACE, - STATE(418), 1, - sym_field_declaration_list, + [64400] = 3, + ACTIONS(3441), 1, + anon_sym_LPAREN, + STATE(1354), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64435] = 3, - ACTIONS(5148), 1, - anon_sym_SEMI, - ACTIONS(5228), 1, - anon_sym_RPAREN, + [64411] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64446] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1057), 1, - sym_block, + ACTIONS(4792), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64420] = 3, + ACTIONS(3882), 1, + anon_sym_COLON, + STATE(2100), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64457] = 3, - ACTIONS(5148), 1, - anon_sym_SEMI, - ACTIONS(5230), 1, + [64431] = 3, + ACTIONS(3572), 1, + anon_sym_COLON_COLON, + ACTIONS(5232), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64468] = 2, + [64442] = 3, + ACTIONS(5234), 1, + anon_sym_LBRACK, + ACTIONS(5236), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4469), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64477] = 3, - ACTIONS(3441), 1, - anon_sym_LPAREN, - STATE(1665), 1, - sym_parameters, + [64453] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5238), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64488] = 3, - ACTIONS(3830), 1, + [64464] = 3, + ACTIONS(3778), 1, anon_sym_LBRACE, - STATE(950), 1, + STATE(815), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64499] = 2, + [64475] = 3, + ACTIONS(3999), 1, + anon_sym_COLON_COLON, + ACTIONS(5240), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5005), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64508] = 3, - ACTIONS(3441), 1, - anon_sym_LPAREN, - STATE(1364), 1, - sym_parameters, + [64486] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1062), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64519] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(48), 1, - sym_block, + [64497] = 3, + ACTIONS(3997), 1, + anon_sym_COLON_COLON, + ACTIONS(5240), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64530] = 3, - ACTIONS(4075), 1, + [64508] = 3, + ACTIONS(4073), 1, anon_sym_PLUS, - ACTIONS(5232), 1, + ACTIONS(5242), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64541] = 3, - ACTIONS(3830), 1, + [64519] = 3, + ACTIONS(3778), 1, anon_sym_LBRACE, - STATE(961), 1, + STATE(832), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64552] = 3, - ACTIONS(3830), 1, + [64530] = 3, + ACTIONS(3778), 1, anon_sym_LBRACE, - STATE(962), 1, + STATE(835), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64563] = 3, - ACTIONS(3900), 1, - anon_sym_COLON, - STATE(2100), 1, - sym_trait_bounds, + [64541] = 3, + ACTIONS(3983), 1, + anon_sym_RPAREN, + ACTIONS(5140), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64574] = 3, - ACTIONS(3580), 1, - anon_sym_COLON_COLON, - ACTIONS(5234), 1, + [64552] = 3, + ACTIONS(3979), 1, anon_sym_RPAREN, + ACTIONS(5140), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64585] = 3, - ACTIONS(5236), 1, - anon_sym_SEMI, - ACTIONS(5238), 1, - anon_sym_as, + [64563] = 3, + ACTIONS(3810), 1, + anon_sym_LBRACE, + STATE(313), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64596] = 3, - ACTIONS(5240), 1, - anon_sym_LBRACK, - ACTIONS(5242), 1, - anon_sym_BANG, + [64574] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64607] = 3, - ACTIONS(5148), 1, - anon_sym_SEMI, - ACTIONS(5244), 1, - anon_sym_RBRACE, + ACTIONS(4533), 2, + anon_sym_COMMA, + anon_sym_GT, + [64583] = 3, + ACTIONS(3810), 1, + anon_sym_LBRACE, + STATE(418), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64618] = 3, - ACTIONS(3441), 1, + [64594] = 3, + ACTIONS(2542), 1, anon_sym_LPAREN, - STATE(1373), 1, + STATE(936), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64629] = 3, + [64605] = 3, ACTIONS(15), 1, anon_sym_LBRACE, STATE(88), 1, @@ -124572,2045 +124538,2043 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64640] = 3, - ACTIONS(4033), 1, + [64616] = 3, + ACTIONS(3973), 1, anon_sym_RPAREN, - ACTIONS(5148), 1, + ACTIONS(5140), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64651] = 3, - ACTIONS(3794), 1, + [64627] = 3, + ACTIONS(3848), 1, anon_sym_LBRACE, - STATE(326), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64662] = 3, - ACTIONS(4013), 1, - anon_sym_COLON_COLON, - ACTIONS(5246), 1, - anon_sym_RPAREN, + STATE(356), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64673] = 3, - ACTIONS(4039), 1, - anon_sym_COLON_COLON, - ACTIONS(5246), 1, - anon_sym_RPAREN, + [64638] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64684] = 3, - ACTIONS(4027), 1, - anon_sym_RPAREN, - ACTIONS(5148), 1, - anon_sym_SEMI, + ACTIONS(4713), 2, + anon_sym_COMMA, + anon_sym_GT, + [64647] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64695] = 2, + ACTIONS(4694), 2, + anon_sym_COMMA, + anon_sym_GT, + [64656] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5248), 2, + ACTIONS(4675), 2, anon_sym_RBRACE, anon_sym_COMMA, - [64704] = 3, - ACTIONS(4195), 1, - anon_sym_LBRACE, - STATE(421), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64715] = 3, - ACTIONS(3802), 1, - anon_sym_LBRACE, - STATE(902), 1, - sym_field_declaration_list, + [64665] = 3, + ACTIONS(4047), 1, + anon_sym_RBRACE, + ACTIONS(5140), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64726] = 3, - ACTIONS(4025), 1, - anon_sym_RPAREN, - ACTIONS(5148), 1, - anon_sym_SEMI, + [64676] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64737] = 3, - ACTIONS(4706), 1, - sym_identifier, - ACTIONS(4710), 1, + ACTIONS(5244), 2, + anon_sym_const, sym_mutable_specifier, + [64685] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(774), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64748] = 3, - ACTIONS(3864), 1, - anon_sym_LBRACE, - STATE(259), 1, - sym_declaration_list, + [64696] = 3, + ACTIONS(4001), 1, + anon_sym_COLON_COLON, + ACTIONS(5240), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64759] = 3, - ACTIONS(4055), 1, - anon_sym_RBRACE, - ACTIONS(5148), 1, - anon_sym_SEMI, + [64707] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1083), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64770] = 3, - ACTIONS(3830), 1, - anon_sym_LBRACE, - STATE(916), 1, - sym_declaration_list, + [64718] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(98), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64781] = 3, - ACTIONS(3830), 1, + [64729] = 3, + ACTIONS(4135), 1, anon_sym_LBRACE, - STATE(1026), 1, - sym_declaration_list, + STATE(422), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64792] = 3, - ACTIONS(3802), 1, + [64740] = 3, + ACTIONS(632), 1, anon_sym_LBRACE, - STATE(922), 1, - sym_field_declaration_list, + STATE(245), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64803] = 3, - ACTIONS(3798), 1, - anon_sym_LT, - STATE(740), 1, - sym_type_parameters, + [64751] = 3, + ACTIONS(3778), 1, + anon_sym_LBRACE, + STATE(955), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64814] = 3, - ACTIONS(4011), 1, - anon_sym_COLON_COLON, - ACTIONS(5246), 1, - anon_sym_RPAREN, + [64762] = 3, + ACTIONS(874), 1, + anon_sym_LBRACE, + STATE(1441), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64825] = 3, + [64773] = 3, ACTIONS(85), 1, anon_sym_PIPE, - STATE(98), 1, + STATE(91), 1, sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64836] = 3, - ACTIONS(3441), 1, - anon_sym_LPAREN, - STATE(1626), 1, - sym_parameters, + [64784] = 3, + ACTIONS(3810), 1, + anon_sym_LBRACE, + STATE(400), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64847] = 3, + [64795] = 3, ACTIONS(3441), 1, anon_sym_LPAREN, - STATE(1614), 1, + STATE(1657), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64858] = 3, - ACTIONS(3794), 1, + [64806] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(441), 1, - sym_field_declaration_list, + STATE(1081), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64869] = 2, + [64817] = 3, + ACTIONS(3798), 1, + anon_sym_LT, + STATE(740), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4148), 2, + [64828] = 3, + ACTIONS(4029), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [64878] = 3, - ACTIONS(3441), 1, - anon_sym_LPAREN, - STATE(1634), 1, - sym_parameters, + ACTIONS(5140), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64839] = 3, + ACTIONS(5246), 1, + sym_identifier, + ACTIONS(5248), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64850] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64889] = 3, + ACTIONS(5250), 2, + anon_sym_const, + sym_mutable_specifier, + [64859] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(240), 1, + STATE(225), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64900] = 3, - ACTIONS(4195), 1, - anon_sym_LBRACE, - STATE(284), 1, - sym_enum_variant_list, + [64870] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64911] = 3, + ACTIONS(4291), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64879] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(232), 1, + STATE(233), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64922] = 3, - ACTIONS(2542), 1, + [64890] = 3, + ACTIONS(3441), 1, anon_sym_LPAREN, - STATE(980), 1, + STATE(1620), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64933] = 2, + [64901] = 3, + ACTIONS(3580), 1, + anon_sym_COLON_COLON, + ACTIONS(5252), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5250), 2, - sym_identifier, - sym_metavariable, - [64942] = 3, + [64912] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(245), 1, + STATE(238), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64953] = 3, + [64923] = 3, + ACTIONS(3578), 1, + anon_sym_COLON_COLON, ACTIONS(5252), 1, - anon_sym_LT, - STATE(681), 1, - sym_type_parameters, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64964] = 3, - ACTIONS(3574), 1, - anon_sym_COLON_COLON, - ACTIONS(5254), 1, - anon_sym_BANG, + [64934] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64975] = 3, + ACTIONS(4479), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64943] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(219), 1, + STATE(218), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64986] = 3, - ACTIONS(3569), 1, - anon_sym_COLON_COLON, - ACTIONS(5254), 1, - anon_sym_BANG, + [64954] = 3, + ACTIONS(3810), 1, + anon_sym_LBRACE, + STATE(442), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64997] = 3, - ACTIONS(4059), 1, - anon_sym_RPAREN, - ACTIONS(5148), 1, - anon_sym_SEMI, + [64965] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65008] = 3, + ACTIONS(4183), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64974] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(237), 1, + STATE(236), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65019] = 3, - ACTIONS(3794), 1, - anon_sym_LBRACE, - STATE(314), 1, - sym_field_declaration_list, + [64985] = 3, + ACTIONS(4059), 1, + anon_sym_COLON, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65030] = 2, + [64996] = 3, + ACTIONS(5254), 1, + anon_sym_LT, + STATE(680), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4910), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65039] = 3, - ACTIONS(4263), 1, - anon_sym_PIPE, - ACTIONS(5256), 1, - anon_sym_EQ, + [65007] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65050] = 3, - ACTIONS(5258), 1, + ACTIONS(4631), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65016] = 3, + ACTIONS(5256), 1, anon_sym_BANG, - ACTIONS(5260), 1, + ACTIONS(5258), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65061] = 3, - ACTIONS(3864), 1, + [65027] = 3, + ACTIONS(3848), 1, anon_sym_LBRACE, STATE(440), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65072] = 3, - ACTIONS(3864), 1, - anon_sym_LBRACE, - STATE(439), 1, - sym_declaration_list, + [65038] = 3, + ACTIONS(3441), 1, + anon_sym_LPAREN, + STATE(1361), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65083] = 3, - ACTIONS(2690), 1, - anon_sym_COLON_COLON, - ACTIONS(3898), 1, - anon_sym_BANG, + [65049] = 3, + ACTIONS(4023), 1, + anon_sym_RBRACE, + ACTIONS(5140), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65094] = 2, + [65060] = 3, + ACTIONS(2726), 1, + anon_sym_COLON_COLON, + ACTIONS(3902), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5262), 2, - anon_sym_const, - sym_mutable_specifier, - [65103] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5264), 1, - anon_sym_SEMI, + [65071] = 3, + ACTIONS(3848), 1, + anon_sym_LBRACE, + STATE(439), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65114] = 2, + [65082] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4269), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65123] = 3, - ACTIONS(3794), 1, + ACTIONS(5260), 2, + anon_sym_const, + sym_mutable_specifier, + [65091] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(400), 1, - sym_field_declaration_list, + STATE(47), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65134] = 2, + [65102] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4921), 2, + ACTIONS(4692), 2, anon_sym_COMMA, anon_sym_PIPE, - [65143] = 2, + [65111] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5262), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5266), 2, - anon_sym_const, - sym_mutable_specifier, - [65152] = 3, + [65122] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(234), 1, + STATE(242), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65163] = 3, - ACTIONS(5268), 1, - sym_identifier, - ACTIONS(5270), 1, - sym_mutable_specifier, + [65133] = 3, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5266), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65174] = 3, + [65144] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1107), 1, + STATE(1044), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65185] = 3, - ACTIONS(4263), 1, - anon_sym_PIPE, - ACTIONS(5272), 1, - anon_sym_in, + [65155] = 3, + ACTIONS(5268), 1, + anon_sym_LPAREN, + ACTIONS(5270), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65196] = 3, + [65166] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1090), 1, + STATE(1055), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65207] = 3, - ACTIONS(3864), 1, - anon_sym_LBRACE, - STATE(356), 1, - sym_declaration_list, + [65177] = 3, + ACTIONS(3542), 1, + anon_sym_COLON_COLON, + ACTIONS(3606), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65218] = 3, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, + [65188] = 3, + ACTIONS(3848), 1, anon_sym_LBRACE, + STATE(352), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65229] = 3, - ACTIONS(5278), 1, + [65199] = 3, + ACTIONS(3441), 1, anon_sym_LPAREN, - ACTIONS(5280), 1, - anon_sym_LBRACE, + STATE(1690), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65240] = 3, + [65210] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(228), 1, + STATE(224), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65251] = 3, - ACTIONS(4061), 1, - anon_sym_LBRACE, - STATE(1029), 1, - sym_enum_variant_list, + [65221] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5272), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65262] = 3, - ACTIONS(284), 1, + [65232] = 3, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(1102), 1, - sym_block, + STATE(435), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65273] = 3, - ACTIONS(3794), 1, + [65243] = 3, + ACTIONS(3848), 1, anon_sym_LBRACE, - STATE(434), 1, - sym_field_declaration_list, + STATE(325), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65284] = 2, + [65254] = 3, + ACTIONS(5274), 1, + anon_sym_SEMI, + ACTIONS(5276), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4853), 2, - anon_sym_COMMA, - anon_sym_GT, - [65293] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(91), 1, - sym_closure_parameters, + [65265] = 3, + ACTIONS(3810), 1, + anon_sym_LBRACE, + STATE(326), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65304] = 3, - ACTIONS(2550), 1, - anon_sym_LT2, - STATE(1070), 1, - sym_type_arguments, + [65276] = 3, + ACTIONS(3848), 1, + anon_sym_LBRACE, + STATE(343), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65315] = 3, - ACTIONS(3864), 1, + [65287] = 3, + ACTIONS(3848), 1, anon_sym_LBRACE, STATE(429), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65326] = 3, - ACTIONS(5282), 1, + [65298] = 3, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(5284), 1, + ACTIONS(5280), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65337] = 3, - ACTIONS(870), 1, - anon_sym_LBRACE, - STATE(1453), 1, - sym_block, + [65309] = 3, + ACTIONS(2949), 1, + anon_sym_COLON, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65348] = 3, - ACTIONS(632), 1, - anon_sym_LBRACE, - STATE(225), 1, - sym_block, + [65320] = 3, + ACTIONS(4073), 1, + anon_sym_PLUS, + ACTIONS(5282), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65359] = 3, - ACTIONS(284), 1, + [65331] = 3, + ACTIONS(3810), 1, anon_sym_LBRACE, - STATE(1118), 1, - sym_block, + STATE(328), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65370] = 3, - ACTIONS(3864), 1, + [65342] = 3, + ACTIONS(3848), 1, anon_sym_LBRACE, - STATE(365), 1, + STATE(342), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65381] = 3, - ACTIONS(4061), 1, - anon_sym_LBRACE, - STATE(806), 1, - sym_enum_variant_list, + [65353] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65392] = 3, - ACTIONS(5286), 1, + ACTIONS(2415), 2, + anon_sym_COMMA, + anon_sym_GT, + [65362] = 3, + ACTIONS(5284), 1, anon_sym_LPAREN, - ACTIONS(5288), 1, + ACTIONS(5286), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65403] = 3, - ACTIONS(284), 1, + [65373] = 3, + ACTIONS(4135), 1, anon_sym_LBRACE, - STATE(775), 1, - sym_block, + STATE(331), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65414] = 3, - ACTIONS(3965), 1, - anon_sym_RBRACE, - ACTIONS(5148), 1, - anon_sym_SEMI, + [65384] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65425] = 2, + ACTIONS(4583), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65393] = 3, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(5288), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5290), 2, - anon_sym_const, - sym_mutable_specifier, - [65434] = 3, - ACTIONS(2542), 1, - anon_sym_LPAREN, - STATE(982), 1, - sym_parameters, + [65404] = 3, + ACTIONS(2985), 1, + anon_sym_COLON, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65445] = 2, + [65415] = 3, + ACTIONS(2953), 1, + anon_sym_COLON, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4426), 2, - anon_sym_COMMA, - anon_sym_GT, - [65454] = 3, - ACTIONS(284), 1, + [65426] = 3, + ACTIONS(2560), 1, anon_sym_LBRACE, - STATE(1099), 1, - sym_block, + STATE(1133), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65465] = 2, + [65437] = 3, + ACTIONS(2977), 1, + anon_sym_COLON, + ACTIONS(4073), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4894), 2, + [65448] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4624), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [65474] = 3, - ACTIONS(2598), 1, - anon_sym_LBRACE, - STATE(1043), 1, - sym_field_initializer_list, + [65457] = 2, + ACTIONS(5290), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65485] = 2, + [65465] = 2, ACTIONS(5292), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65493] = 2, - ACTIONS(4637), 1, + [65473] = 2, + ACTIONS(5294), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65501] = 2, - ACTIONS(5294), 1, + [65481] = 2, + ACTIONS(5296), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65509] = 2, - ACTIONS(5296), 1, + [65489] = 2, + ACTIONS(4505), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65517] = 2, - ACTIONS(5298), 1, - anon_sym_RBRACK, + [65497] = 2, + ACTIONS(4610), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65525] = 2, - ACTIONS(4507), 1, + [65505] = 2, + ACTIONS(5298), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65533] = 2, + [65513] = 2, ACTIONS(5300), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65541] = 2, - ACTIONS(5302), 1, + [65521] = 2, + ACTIONS(4629), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65549] = 2, - ACTIONS(5304), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65557] = 2, - ACTIONS(5306), 1, - anon_sym_COLON, + [65529] = 2, + ACTIONS(5302), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65565] = 2, - ACTIONS(4013), 1, + [65537] = 2, + ACTIONS(3999), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65573] = 2, - ACTIONS(5308), 1, + [65545] = 2, + ACTIONS(5304), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65581] = 2, - ACTIONS(2445), 1, - anon_sym_PLUS, + [65553] = 2, + ACTIONS(5306), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65589] = 2, - ACTIONS(4840), 1, + [65561] = 2, + ACTIONS(4568), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65597] = 2, - ACTIONS(5310), 1, + [65569] = 2, + ACTIONS(5308), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65605] = 2, - ACTIONS(4873), 1, - sym_identifier, + [65577] = 2, + ACTIONS(5310), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65613] = 2, + [65585] = 2, ACTIONS(5312), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65621] = 2, - ACTIONS(4877), 1, - sym_identifier, + [65593] = 2, + ACTIONS(4606), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65629] = 2, + [65601] = 2, ACTIONS(5314), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65637] = 2, - ACTIONS(3475), 1, + [65609] = 2, + ACTIONS(3451), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65645] = 2, + [65617] = 2, ACTIONS(5316), 1, ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65653] = 2, + [65625] = 2, ACTIONS(5318), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65661] = 2, + [65633] = 2, ACTIONS(5320), 1, - anon_sym_RBRACK, + anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65669] = 2, + [65641] = 2, ACTIONS(5322), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65677] = 2, - ACTIONS(4639), 1, - sym_identifier, + [65649] = 2, + ACTIONS(2480), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65685] = 2, + [65657] = 2, ACTIONS(5324), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65693] = 2, + [65665] = 2, ACTIONS(5326), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65701] = 2, - ACTIONS(4819), 1, + [65673] = 2, + ACTIONS(4552), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65709] = 2, + [65681] = 2, ACTIONS(5328), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65717] = 2, - ACTIONS(4591), 1, - anon_sym_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65725] = 2, + [65689] = 2, ACTIONS(5330), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65733] = 2, + [65697] = 2, ACTIONS(5332), 1, - sym_identifier, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65741] = 2, - ACTIONS(2762), 1, - anon_sym_COLON_COLON, + [65705] = 2, + ACTIONS(5334), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65749] = 2, - ACTIONS(5334), 1, - sym_identifier, + [65713] = 2, + ACTIONS(2802), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65757] = 2, + [65721] = 2, ACTIONS(5336), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65765] = 2, + [65729] = 2, ACTIONS(5338), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65773] = 2, + [65737] = 2, + ACTIONS(5134), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65745] = 2, ACTIONS(5340), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65781] = 2, + [65753] = 2, ACTIONS(5342), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65789] = 2, + [65761] = 2, ACTIONS(5344), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65797] = 2, + [65769] = 2, ACTIONS(5346), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65805] = 2, + [65777] = 2, ACTIONS(5348), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65813] = 2, + [65785] = 2, ACTIONS(5350), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65821] = 2, + [65793] = 2, ACTIONS(5352), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65829] = 2, + [65801] = 2, ACTIONS(5354), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65837] = 2, - ACTIONS(3189), 1, + [65809] = 2, + ACTIONS(3199), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65845] = 2, + [65817] = 2, ACTIONS(5356), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65853] = 2, - ACTIONS(3499), 1, + [65825] = 2, + ACTIONS(3514), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65861] = 2, + [65833] = 2, ACTIONS(5358), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65869] = 2, + [65841] = 2, ACTIONS(5360), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65877] = 2, - ACTIONS(5362), 1, + [65849] = 2, + ACTIONS(4688), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65885] = 2, - ACTIONS(624), 1, - anon_sym_RBRACK, + [65857] = 2, + ACTIONS(5362), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65893] = 2, + [65865] = 2, ACTIONS(5364), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65901] = 2, + [65873] = 2, + ACTIONS(2393), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65881] = 2, ACTIONS(5366), 1, - anon_sym_LBRACK, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65909] = 2, + [65889] = 2, ACTIONS(5368), 1, - anon_sym_RBRACK, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65917] = 2, - ACTIONS(5370), 1, - sym_identifier, + [65897] = 2, + ACTIONS(3175), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65925] = 2, - ACTIONS(3173), 1, + [65905] = 2, + ACTIONS(5370), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65933] = 2, - ACTIONS(5372), 1, - anon_sym_COLON_COLON, + [65913] = 2, + ACTIONS(4618), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65941] = 2, - ACTIONS(5374), 1, - sym_identifier, + [65921] = 2, + ACTIONS(5372), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65949] = 2, - ACTIONS(4762), 1, - anon_sym_RBRACE, + [65929] = 2, + ACTIONS(5140), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65957] = 2, - ACTIONS(4915), 1, + [65937] = 2, + ACTIONS(5374), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65965] = 2, - ACTIONS(4919), 1, + [65945] = 2, + ACTIONS(4682), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65973] = 2, + [65953] = 2, ACTIONS(5376), 1, - anon_sym_COLON, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65981] = 2, + [65961] = 2, ACTIONS(5378), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65989] = 2, - ACTIONS(5380), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65997] = 2, - ACTIONS(5382), 1, + [65969] = 2, + ACTIONS(5380), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66005] = 2, - ACTIONS(5384), 1, - sym_identifier, + [65977] = 2, + ACTIONS(5382), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66013] = 2, - ACTIONS(378), 1, + [65985] = 2, + ACTIONS(374), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66021] = 2, - ACTIONS(3171), 1, - sym_identifier, + [65993] = 2, + ACTIONS(5384), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66029] = 2, + [66001] = 2, ACTIONS(5386), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66037] = 2, + [66009] = 2, ACTIONS(5388), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66045] = 2, + [66017] = 2, ACTIONS(5390), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66053] = 2, + [66025] = 2, + ACTIONS(3572), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66033] = 2, ACTIONS(5392), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66061] = 2, + [66041] = 2, ACTIONS(5394), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66069] = 2, + [66049] = 2, ACTIONS(5396), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66077] = 2, + [66057] = 2, ACTIONS(5398), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66085] = 2, + [66065] = 2, ACTIONS(5400), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66093] = 2, + [66073] = 2, ACTIONS(5402), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66101] = 2, + [66081] = 2, ACTIONS(5404), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66109] = 2, + [66089] = 2, ACTIONS(5406), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66117] = 2, + [66097] = 2, ACTIONS(5408), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66125] = 2, - ACTIONS(3580), 1, - anon_sym_COLON_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66133] = 2, + [66105] = 2, ACTIONS(5410), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66141] = 2, + [66113] = 2, ACTIONS(5412), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66149] = 2, + [66121] = 2, ACTIONS(5414), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66157] = 2, + [66129] = 2, ACTIONS(5416), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66165] = 2, - ACTIONS(5418), 1, - anon_sym_COLON, + [66137] = 2, + ACTIONS(4023), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66173] = 2, - ACTIONS(5420), 1, - anon_sym_RPAREN, + [66145] = 2, + ACTIONS(5418), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66181] = 2, - ACTIONS(2690), 1, + [66153] = 2, + ACTIONS(2726), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66189] = 2, - ACTIONS(5422), 1, + [66161] = 2, + ACTIONS(5420), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66197] = 2, - ACTIONS(5260), 1, + [66169] = 2, + ACTIONS(5258), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66205] = 2, - ACTIONS(3965), 1, - anon_sym_SEMI, + [66177] = 2, + ACTIONS(5422), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66213] = 2, + [66185] = 2, ACTIONS(5424), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66221] = 2, + [66193] = 2, ACTIONS(5426), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66229] = 2, - ACTIONS(4887), 1, + [66201] = 2, + ACTIONS(4653), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66237] = 2, + [66209] = 2, ACTIONS(5428), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66245] = 2, + [66217] = 2, ACTIONS(5430), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66253] = 2, - ACTIONS(4389), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66261] = 2, + [66225] = 2, ACTIONS(5432), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66269] = 2, + [66233] = 2, ACTIONS(5434), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66277] = 2, - ACTIONS(4107), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66285] = 2, + [66241] = 2, ACTIONS(5436), 1, - anon_sym_fn, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66293] = 2, + [66249] = 2, ACTIONS(5438), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66301] = 2, + [66257] = 2, ACTIONS(5440), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66309] = 2, + [66265] = 2, ACTIONS(5442), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66317] = 2, + [66273] = 2, ACTIONS(5444), 1, - anon_sym_SEMI, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66281] = 2, + ACTIONS(2452), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66325] = 2, + [66289] = 2, ACTIONS(5446), 1, - anon_sym_COLON, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66333] = 2, + [66297] = 2, ACTIONS(5448), 1, - anon_sym_EQ_GT, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66341] = 2, + [66305] = 2, ACTIONS(5450), 1, - anon_sym_fn, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66349] = 2, + [66313] = 2, ACTIONS(5452), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66321] = 2, + ACTIONS(5454), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66357] = 2, - ACTIONS(4319), 1, + [66329] = 2, + ACTIONS(4262), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66365] = 2, - ACTIONS(5454), 1, + [66337] = 2, + ACTIONS(4855), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66373] = 2, - ACTIONS(4055), 1, - anon_sym_SEMI, + [66345] = 2, + ACTIONS(5456), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66381] = 2, - ACTIONS(5456), 1, - anon_sym_RBRACK, + [66353] = 2, + ACTIONS(5458), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66389] = 2, - ACTIONS(5458), 1, - anon_sym_SEMI, + [66361] = 2, + ACTIONS(5082), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66397] = 2, + [66369] = 2, ACTIONS(5460), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66405] = 2, + [66377] = 2, ACTIONS(5462), 1, - sym_self, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66413] = 2, + [66385] = 2, ACTIONS(5464), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66421] = 2, + [66393] = 2, ACTIONS(5466), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66429] = 2, + [66401] = 2, ACTIONS(5468), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66437] = 2, + [66409] = 2, ACTIONS(5470), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66445] = 2, + [66417] = 2, ACTIONS(5472), 1, - anon_sym_SEMI, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66453] = 2, + [66425] = 2, ACTIONS(5474), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66461] = 2, + [66433] = 2, ACTIONS(5476), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66469] = 2, + [66441] = 2, ACTIONS(5478), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66477] = 2, - ACTIONS(4471), 1, - anon_sym_RBRACK, + [66449] = 2, + ACTIONS(5480), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66485] = 2, - ACTIONS(5480), 1, + [66457] = 2, + ACTIONS(5482), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66493] = 2, - ACTIONS(5482), 1, + [66465] = 2, + ACTIONS(4047), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66501] = 2, + [66473] = 2, ACTIONS(5484), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66509] = 2, + [66481] = 2, ACTIONS(5486), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66517] = 2, + [66489] = 2, ACTIONS(5488), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66525] = 2, - ACTIONS(5490), 1, - anon_sym_EQ_GT, + [66497] = 2, + ACTIONS(4903), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66533] = 2, - ACTIONS(5492), 1, - anon_sym_COLON_COLON, + [66505] = 2, + ACTIONS(5490), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66541] = 2, - ACTIONS(5494), 1, + [66513] = 2, + ACTIONS(5492), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66549] = 2, - ACTIONS(5496), 1, - anon_sym_EQ, + [66521] = 2, + ACTIONS(5494), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66557] = 2, - ACTIONS(4047), 1, - anon_sym_SEMI, + [66529] = 2, + ACTIONS(5496), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66565] = 2, - ACTIONS(3524), 1, - anon_sym_COLON_COLON, + [66537] = 2, + ACTIONS(3173), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66573] = 2, + [66545] = 2, ACTIONS(5498), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66581] = 2, - ACTIONS(4152), 1, - anon_sym_COLON_COLON, + [66553] = 2, + ACTIONS(5500), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66589] = 2, - ACTIONS(5500), 1, + [66561] = 2, + ACTIONS(5502), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66597] = 2, - ACTIONS(5502), 1, - anon_sym_COLON, + [66569] = 2, + ACTIONS(5288), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66605] = 2, + [66577] = 2, ACTIONS(5504), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66613] = 2, - ACTIONS(4045), 1, + [66585] = 2, + ACTIONS(5506), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66621] = 2, - ACTIONS(5506), 1, - anon_sym_RPAREN, + [66593] = 2, + ACTIONS(3542), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66629] = 2, + [66601] = 2, ACTIONS(5508), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66637] = 2, - ACTIONS(3195), 1, - anon_sym_RPAREN, + [66609] = 2, + ACTIONS(5510), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66645] = 2, - ACTIONS(5510), 1, - anon_sym_SEMI, + [66617] = 2, + ACTIONS(5512), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66653] = 2, - ACTIONS(4726), 1, - anon_sym_RBRACE, + [66625] = 2, + ACTIONS(5514), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66661] = 2, - ACTIONS(5512), 1, + [66633] = 2, + ACTIONS(5516), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66669] = 2, - ACTIONS(5514), 1, + [66641] = 2, + ACTIONS(5518), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66677] = 2, - ACTIONS(5516), 1, - anon_sym_fn, + [66649] = 2, + ACTIONS(5520), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66685] = 2, - ACTIONS(5518), 1, + [66657] = 2, + ACTIONS(5522), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66693] = 2, - ACTIONS(5044), 1, - anon_sym_RBRACE, + [66665] = 2, + ACTIONS(5524), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66701] = 2, - ACTIONS(5520), 1, - anon_sym_SEMI, + [66673] = 2, + ACTIONS(5526), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66709] = 2, - ACTIONS(5148), 1, - anon_sym_SEMI, + [66681] = 2, + ACTIONS(5528), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66717] = 2, - ACTIONS(5522), 1, - anon_sym_COLON, + [66689] = 2, + ACTIONS(5530), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66725] = 2, - ACTIONS(2473), 1, - anon_sym_PLUS, + [66697] = 2, + ACTIONS(5532), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66733] = 2, - ACTIONS(4654), 1, + [66705] = 2, + ACTIONS(4911), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66741] = 2, - ACTIONS(5030), 1, - sym_identifier, + [66713] = 2, + ACTIONS(5534), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66749] = 2, - ACTIONS(5524), 1, + [66721] = 2, + ACTIONS(5536), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66757] = 2, - ACTIONS(2638), 1, + [66729] = 2, + ACTIONS(2650), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66765] = 2, - ACTIONS(5526), 1, - anon_sym_SEMI, + [66737] = 2, + ACTIONS(5538), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66773] = 2, - ACTIONS(5528), 1, + [66745] = 2, + ACTIONS(5540), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66781] = 2, - ACTIONS(2692), 1, + [66753] = 2, + ACTIONS(2732), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66789] = 2, - ACTIONS(5530), 1, + [66761] = 2, + ACTIONS(5542), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66797] = 2, - ACTIONS(5532), 1, + [66769] = 2, + ACTIONS(4907), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66805] = 2, - ACTIONS(5534), 1, + [66777] = 2, + ACTIONS(3965), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66813] = 2, - ACTIONS(4539), 1, - anon_sym_RBRACE, + [66785] = 2, + ACTIONS(5544), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66821] = 2, - ACTIONS(4625), 1, - anon_sym_RPAREN, + [66793] = 2, + ACTIONS(5546), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66829] = 2, - ACTIONS(5536), 1, - sym_identifier, + [66801] = 2, + ACTIONS(4513), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66837] = 2, - ACTIONS(2708), 1, + [66809] = 2, + ACTIONS(2724), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66845] = 2, - ACTIONS(2405), 1, - anon_sym_EQ_GT, + [66817] = 2, + ACTIONS(5548), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66853] = 2, - ACTIONS(5538), 1, - anon_sym_SEMI, + [66825] = 2, + ACTIONS(3518), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66861] = 2, - ACTIONS(5540), 1, - sym_identifier, + [66833] = 2, + ACTIONS(4187), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66869] = 2, - ACTIONS(5542), 1, + [66841] = 2, + ACTIONS(5550), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66877] = 2, - ACTIONS(4288), 1, - anon_sym_RPAREN, + [66849] = 2, + ACTIONS(5552), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66885] = 2, - ACTIONS(5544), 1, - anon_sym_SEMI, + [66857] = 2, + ACTIONS(624), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66893] = 2, - ACTIONS(4091), 1, + [66865] = 2, + ACTIONS(4099), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66901] = 2, - ACTIONS(5546), 1, + [66873] = 2, + ACTIONS(5554), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66909] = 2, - ACTIONS(5548), 1, + [66881] = 2, + ACTIONS(5556), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66917] = 2, - ACTIONS(5550), 1, + [66889] = 2, + ACTIONS(5558), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66925] = 2, - ACTIONS(4168), 1, + [66897] = 2, + ACTIONS(4125), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66933] = 2, - ACTIONS(5552), 1, + [66905] = 2, + ACTIONS(5560), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66941] = 2, - ACTIONS(5554), 1, - anon_sym_SEMI, + [66913] = 2, + ACTIONS(5112), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66949] = 2, - ACTIONS(4115), 1, + [66921] = 2, + ACTIONS(4231), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66957] = 2, - ACTIONS(5556), 1, + [66929] = 2, + ACTIONS(5562), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66965] = 2, - ACTIONS(5558), 1, - sym_identifier, + [66937] = 2, + ACTIONS(3201), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66973] = 2, - ACTIONS(5560), 1, - sym_identifier, + [66945] = 2, + ACTIONS(3981), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66981] = 2, - ACTIONS(5562), 1, + [66953] = 2, + ACTIONS(5030), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66989] = 2, - ACTIONS(4617), 1, + [66961] = 2, + ACTIONS(4949), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66997] = 2, + [66969] = 2, ACTIONS(5564), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67005] = 2, + [66977] = 2, ACTIONS(5566), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67013] = 2, + [66985] = 2, ACTIONS(5568), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67021] = 2, - ACTIONS(5116), 1, - anon_sym_RBRACE, + [66993] = 2, + ACTIONS(2371), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67029] = 2, + [67001] = 2, ACTIONS(5570), 1, - anon_sym_COLON_COLON, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67037] = 2, + [67009] = 2, ACTIONS(5572), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67045] = 2, - ACTIONS(4257), 1, + [67017] = 2, + ACTIONS(4293), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67053] = 2, + [67025] = 2, ACTIONS(5574), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67061] = 2, + [67033] = 2, ACTIONS(5576), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67069] = 2, - ACTIONS(5578), 1, - anon_sym_SEMI, + [67041] = 2, + ACTIONS(4319), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67077] = 2, - ACTIONS(2421), 1, - anon_sym_EQ_GT, + [67049] = 2, + ACTIONS(4535), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67085] = 2, - ACTIONS(5580), 1, + [67057] = 2, + ACTIONS(4061), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67093] = 2, - ACTIONS(5582), 1, - anon_sym_LPAREN, + [67065] = 2, + ACTIONS(5578), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67101] = 2, - ACTIONS(5584), 1, - anon_sym_LBRACK, + [67073] = 2, + ACTIONS(5580), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67109] = 2, - ACTIONS(5586), 1, - anon_sym_RBRACK, + [67081] = 2, + ACTIONS(5582), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67117] = 2, - ACTIONS(5588), 1, + [67089] = 2, + ACTIONS(5584), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67125] = 2, - ACTIONS(3528), 1, - anon_sym_COLON_COLON, + [67097] = 2, + ACTIONS(5586), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67133] = 2, - ACTIONS(5590), 1, - anon_sym_COLON_COLON, + [67105] = 2, + ACTIONS(5588), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67141] = 2, - ACTIONS(5592), 1, - anon_sym_SEMI, + [67113] = 2, + ACTIONS(5590), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67149] = 2, - ACTIONS(5594), 1, + [67121] = 2, + ACTIONS(5592), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67157] = 2, - ACTIONS(5596), 1, - anon_sym_LPAREN, + [67129] = 2, + ACTIONS(5594), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67165] = 2, - ACTIONS(5598), 1, - sym_identifier, + [67137] = 2, + ACTIONS(5100), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67173] = 2, - ACTIONS(5600), 1, + [67145] = 2, + ACTIONS(5596), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67181] = 2, - ACTIONS(5602), 1, - anon_sym_COLON, + [67153] = 2, + ACTIONS(5598), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67189] = 2, - ACTIONS(5604), 1, - anon_sym_LT, + [67161] = 2, + ACTIONS(5016), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67197] = 2, - ACTIONS(5606), 1, - anon_sym_SEMI, + [67169] = 2, + ACTIONS(5600), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67205] = 2, - ACTIONS(5608), 1, + [67177] = 2, + ACTIONS(5602), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67213] = 2, - ACTIONS(5244), 1, + [67185] = 2, + ACTIONS(5210), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67221] = 2, - ACTIONS(5610), 1, + [67193] = 2, + ACTIONS(5604), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67229] = 2, - ACTIONS(5612), 1, + [67201] = 2, + ACTIONS(5606), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67237] = 2, - ACTIONS(5614), 1, + [67209] = 2, + ACTIONS(5608), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67245] = 2, - ACTIONS(5616), 1, + [67217] = 2, + ACTIONS(5610), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67253] = 2, - ACTIONS(5618), 1, + [67225] = 2, + ACTIONS(5158), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67261] = 2, - ACTIONS(5620), 1, - anon_sym_SEMI, + [67233] = 2, + ACTIONS(5612), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67269] = 2, - ACTIONS(5622), 1, - anon_sym_RBRACK, + [67241] = 2, + ACTIONS(5614), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67277] = 2, - ACTIONS(3451), 1, + [67249] = 2, + ACTIONS(3475), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67285] = 2, - ACTIONS(5216), 1, - anon_sym_COLON_COLON, + [67257] = 2, + ACTIONS(5154), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67293] = 2, - ACTIONS(5624), 1, + [67265] = 2, + ACTIONS(5616), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67301] = 2, - ACTIONS(5626), 1, - sym_identifier, + [67273] = 2, + ACTIONS(5618), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67309] = 2, - ACTIONS(5166), 1, + [67281] = 2, + ACTIONS(5620), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67317] = 2, - ACTIONS(5628), 1, + [67289] = 2, + ACTIONS(5622), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67325] = 2, - ACTIONS(5630), 1, + [67297] = 2, + ACTIONS(5624), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67333] = 2, - ACTIONS(5632), 1, + [67305] = 2, + ACTIONS(5626), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67341] = 2, - ACTIONS(5164), 1, + [67313] = 2, + ACTIONS(5142), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67349] = 2, - ACTIONS(5150), 1, - anon_sym_SEMI, + [67321] = 2, + ACTIONS(5628), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67357] = 2, - ACTIONS(5634), 1, + [67329] = 2, + ACTIONS(5630), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67365] = 2, - ACTIONS(5636), 1, - anon_sym_SEMI, + [67337] = 2, + ACTIONS(5632), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67373] = 2, - ACTIONS(4567), 1, - sym_identifier, + [67345] = 2, + ACTIONS(5634), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -126619,102 +126583,102 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(641)] = 0, [SMALL_STATE(642)] = 129, - [SMALL_STATE(643)] = 200, - [SMALL_STATE(644)] = 329, - [SMALL_STATE(645)] = 458, - [SMALL_STATE(646)] = 587, - [SMALL_STATE(647)] = 716, - [SMALL_STATE(648)] = 845, - [SMALL_STATE(649)] = 974, - [SMALL_STATE(650)] = 1103, - [SMALL_STATE(651)] = 1232, - [SMALL_STATE(652)] = 1361, - [SMALL_STATE(653)] = 1490, - [SMALL_STATE(654)] = 1619, - [SMALL_STATE(655)] = 1748, - [SMALL_STATE(656)] = 1877, - [SMALL_STATE(657)] = 2006, - [SMALL_STATE(658)] = 2135, - [SMALL_STATE(659)] = 2264, - [SMALL_STATE(660)] = 2393, - [SMALL_STATE(661)] = 2522, - [SMALL_STATE(662)] = 2651, - [SMALL_STATE(663)] = 2780, - [SMALL_STATE(664)] = 2909, - [SMALL_STATE(665)] = 3038, - [SMALL_STATE(666)] = 3167, - [SMALL_STATE(667)] = 3296, - [SMALL_STATE(668)] = 3425, - [SMALL_STATE(669)] = 3554, - [SMALL_STATE(670)] = 3683, - [SMALL_STATE(671)] = 3812, - [SMALL_STATE(672)] = 3941, - [SMALL_STATE(673)] = 4070, - [SMALL_STATE(674)] = 4199, - [SMALL_STATE(675)] = 4328, - [SMALL_STATE(676)] = 4457, - [SMALL_STATE(677)] = 4586, - [SMALL_STATE(678)] = 4715, - [SMALL_STATE(679)] = 4844, - [SMALL_STATE(680)] = 4973, - [SMALL_STATE(681)] = 5102, - [SMALL_STATE(682)] = 5231, - [SMALL_STATE(683)] = 5362, - [SMALL_STATE(684)] = 5491, - [SMALL_STATE(685)] = 5620, - [SMALL_STATE(686)] = 5749, - [SMALL_STATE(687)] = 5878, - [SMALL_STATE(688)] = 6007, - [SMALL_STATE(689)] = 6136, - [SMALL_STATE(690)] = 6265, - [SMALL_STATE(691)] = 6394, - [SMALL_STATE(692)] = 6523, - [SMALL_STATE(693)] = 6652, - [SMALL_STATE(694)] = 6781, - [SMALL_STATE(695)] = 6910, - [SMALL_STATE(696)] = 7039, - [SMALL_STATE(697)] = 7168, - [SMALL_STATE(698)] = 7297, - [SMALL_STATE(699)] = 7426, - [SMALL_STATE(700)] = 7555, - [SMALL_STATE(701)] = 7684, - [SMALL_STATE(702)] = 7813, - [SMALL_STATE(703)] = 7942, - [SMALL_STATE(704)] = 8071, - [SMALL_STATE(705)] = 8200, - [SMALL_STATE(706)] = 8329, - [SMALL_STATE(707)] = 8458, - [SMALL_STATE(708)] = 8587, - [SMALL_STATE(709)] = 8716, - [SMALL_STATE(710)] = 8845, - [SMALL_STATE(711)] = 8974, - [SMALL_STATE(712)] = 9103, - [SMALL_STATE(713)] = 9232, - [SMALL_STATE(714)] = 9361, - [SMALL_STATE(715)] = 9490, - [SMALL_STATE(716)] = 9619, - [SMALL_STATE(717)] = 9748, - [SMALL_STATE(718)] = 9877, - [SMALL_STATE(719)] = 10006, - [SMALL_STATE(720)] = 10135, - [SMALL_STATE(721)] = 10264, - [SMALL_STATE(722)] = 10393, - [SMALL_STATE(723)] = 10522, - [SMALL_STATE(724)] = 10651, - [SMALL_STATE(725)] = 10780, - [SMALL_STATE(726)] = 10909, - [SMALL_STATE(727)] = 11038, - [SMALL_STATE(728)] = 11167, - [SMALL_STATE(729)] = 11296, - [SMALL_STATE(730)] = 11425, - [SMALL_STATE(731)] = 11554, - [SMALL_STATE(732)] = 11683, - [SMALL_STATE(733)] = 11812, - [SMALL_STATE(734)] = 11941, - [SMALL_STATE(735)] = 12070, - [SMALL_STATE(736)] = 12199, - [SMALL_STATE(737)] = 12328, - [SMALL_STATE(738)] = 12457, + [SMALL_STATE(643)] = 258, + [SMALL_STATE(644)] = 387, + [SMALL_STATE(645)] = 516, + [SMALL_STATE(646)] = 645, + [SMALL_STATE(647)] = 774, + [SMALL_STATE(648)] = 903, + [SMALL_STATE(649)] = 1032, + [SMALL_STATE(650)] = 1161, + [SMALL_STATE(651)] = 1290, + [SMALL_STATE(652)] = 1419, + [SMALL_STATE(653)] = 1548, + [SMALL_STATE(654)] = 1679, + [SMALL_STATE(655)] = 1808, + [SMALL_STATE(656)] = 1937, + [SMALL_STATE(657)] = 2066, + [SMALL_STATE(658)] = 2195, + [SMALL_STATE(659)] = 2324, + [SMALL_STATE(660)] = 2453, + [SMALL_STATE(661)] = 2582, + [SMALL_STATE(662)] = 2711, + [SMALL_STATE(663)] = 2840, + [SMALL_STATE(664)] = 2969, + [SMALL_STATE(665)] = 3098, + [SMALL_STATE(666)] = 3227, + [SMALL_STATE(667)] = 3356, + [SMALL_STATE(668)] = 3485, + [SMALL_STATE(669)] = 3614, + [SMALL_STATE(670)] = 3743, + [SMALL_STATE(671)] = 3872, + [SMALL_STATE(672)] = 4001, + [SMALL_STATE(673)] = 4130, + [SMALL_STATE(674)] = 4259, + [SMALL_STATE(675)] = 4388, + [SMALL_STATE(676)] = 4517, + [SMALL_STATE(677)] = 4646, + [SMALL_STATE(678)] = 4775, + [SMALL_STATE(679)] = 4904, + [SMALL_STATE(680)] = 5033, + [SMALL_STATE(681)] = 5162, + [SMALL_STATE(682)] = 5291, + [SMALL_STATE(683)] = 5420, + [SMALL_STATE(684)] = 5549, + [SMALL_STATE(685)] = 5678, + [SMALL_STATE(686)] = 5807, + [SMALL_STATE(687)] = 5936, + [SMALL_STATE(688)] = 6065, + [SMALL_STATE(689)] = 6194, + [SMALL_STATE(690)] = 6323, + [SMALL_STATE(691)] = 6452, + [SMALL_STATE(692)] = 6581, + [SMALL_STATE(693)] = 6710, + [SMALL_STATE(694)] = 6839, + [SMALL_STATE(695)] = 6968, + [SMALL_STATE(696)] = 7097, + [SMALL_STATE(697)] = 7226, + [SMALL_STATE(698)] = 7355, + [SMALL_STATE(699)] = 7484, + [SMALL_STATE(700)] = 7613, + [SMALL_STATE(701)] = 7742, + [SMALL_STATE(702)] = 7871, + [SMALL_STATE(703)] = 8000, + [SMALL_STATE(704)] = 8129, + [SMALL_STATE(705)] = 8258, + [SMALL_STATE(706)] = 8387, + [SMALL_STATE(707)] = 8516, + [SMALL_STATE(708)] = 8645, + [SMALL_STATE(709)] = 8774, + [SMALL_STATE(710)] = 8903, + [SMALL_STATE(711)] = 9032, + [SMALL_STATE(712)] = 9161, + [SMALL_STATE(713)] = 9290, + [SMALL_STATE(714)] = 9419, + [SMALL_STATE(715)] = 9548, + [SMALL_STATE(716)] = 9677, + [SMALL_STATE(717)] = 9806, + [SMALL_STATE(718)] = 9935, + [SMALL_STATE(719)] = 10064, + [SMALL_STATE(720)] = 10193, + [SMALL_STATE(721)] = 10322, + [SMALL_STATE(722)] = 10451, + [SMALL_STATE(723)] = 10580, + [SMALL_STATE(724)] = 10709, + [SMALL_STATE(725)] = 10838, + [SMALL_STATE(726)] = 10967, + [SMALL_STATE(727)] = 11096, + [SMALL_STATE(728)] = 11225, + [SMALL_STATE(729)] = 11354, + [SMALL_STATE(730)] = 11483, + [SMALL_STATE(731)] = 11612, + [SMALL_STATE(732)] = 11741, + [SMALL_STATE(733)] = 11870, + [SMALL_STATE(734)] = 11999, + [SMALL_STATE(735)] = 12128, + [SMALL_STATE(736)] = 12257, + [SMALL_STATE(737)] = 12386, + [SMALL_STATE(738)] = 12515, [SMALL_STATE(739)] = 12586, [SMALL_STATE(740)] = 12715, [SMALL_STATE(741)] = 12844, @@ -126736,94 +126700,94 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(757)] = 14530, [SMALL_STATE(758)] = 14597, [SMALL_STATE(759)] = 14664, - [SMALL_STATE(760)] = 14724, + [SMALL_STATE(760)] = 14720, [SMALL_STATE(761)] = 14784, [SMALL_STATE(762)] = 14848, - [SMALL_STATE(763)] = 14908, - [SMALL_STATE(764)] = 14970, - [SMALL_STATE(765)] = 15026, - [SMALL_STATE(766)] = 15090, - [SMALL_STATE(767)] = 15154, - [SMALL_STATE(768)] = 15210, - [SMALL_STATE(769)] = 15266, - [SMALL_STATE(770)] = 15326, - [SMALL_STATE(771)] = 15382, - [SMALL_STATE(772)] = 15438, + [SMALL_STATE(763)] = 14904, + [SMALL_STATE(764)] = 14964, + [SMALL_STATE(765)] = 15028, + [SMALL_STATE(766)] = 15092, + [SMALL_STATE(767)] = 15148, + [SMALL_STATE(768)] = 15208, + [SMALL_STATE(769)] = 15268, + [SMALL_STATE(770)] = 15328, + [SMALL_STATE(771)] = 15384, + [SMALL_STATE(772)] = 15446, [SMALL_STATE(773)] = 15502, - [SMALL_STATE(774)] = 15561, + [SMALL_STATE(774)] = 15559, [SMALL_STATE(775)] = 15618, - [SMALL_STATE(776)] = 15677, - [SMALL_STATE(777)] = 15734, + [SMALL_STATE(776)] = 15675, + [SMALL_STATE(777)] = 15732, [SMALL_STATE(778)] = 15789, - [SMALL_STATE(779)] = 15846, + [SMALL_STATE(779)] = 15844, [SMALL_STATE(780)] = 15903, [SMALL_STATE(781)] = 15957, [SMALL_STATE(782)] = 16011, [SMALL_STATE(783)] = 16065, [SMALL_STATE(784)] = 16119, [SMALL_STATE(785)] = 16173, - [SMALL_STATE(786)] = 16231, - [SMALL_STATE(787)] = 16285, - [SMALL_STATE(788)] = 16339, - [SMALL_STATE(789)] = 16393, - [SMALL_STATE(790)] = 16447, - [SMALL_STATE(791)] = 16501, - [SMALL_STATE(792)] = 16555, - [SMALL_STATE(793)] = 16609, - [SMALL_STATE(794)] = 16663, - [SMALL_STATE(795)] = 16717, - [SMALL_STATE(796)] = 16771, - [SMALL_STATE(797)] = 16825, - [SMALL_STATE(798)] = 16879, - [SMALL_STATE(799)] = 16933, - [SMALL_STATE(800)] = 16987, - [SMALL_STATE(801)] = 17041, - [SMALL_STATE(802)] = 17095, - [SMALL_STATE(803)] = 17149, - [SMALL_STATE(804)] = 17203, - [SMALL_STATE(805)] = 17257, - [SMALL_STATE(806)] = 17311, - [SMALL_STATE(807)] = 17365, - [SMALL_STATE(808)] = 17419, - [SMALL_STATE(809)] = 17473, - [SMALL_STATE(810)] = 17527, - [SMALL_STATE(811)] = 17581, - [SMALL_STATE(812)] = 17635, - [SMALL_STATE(813)] = 17689, - [SMALL_STATE(814)] = 17743, - [SMALL_STATE(815)] = 17797, - [SMALL_STATE(816)] = 17851, + [SMALL_STATE(786)] = 16227, + [SMALL_STATE(787)] = 16281, + [SMALL_STATE(788)] = 16335, + [SMALL_STATE(789)] = 16389, + [SMALL_STATE(790)] = 16443, + [SMALL_STATE(791)] = 16497, + [SMALL_STATE(792)] = 16551, + [SMALL_STATE(793)] = 16605, + [SMALL_STATE(794)] = 16659, + [SMALL_STATE(795)] = 16713, + [SMALL_STATE(796)] = 16767, + [SMALL_STATE(797)] = 16821, + [SMALL_STATE(798)] = 16875, + [SMALL_STATE(799)] = 16929, + [SMALL_STATE(800)] = 16983, + [SMALL_STATE(801)] = 17037, + [SMALL_STATE(802)] = 17093, + [SMALL_STATE(803)] = 17147, + [SMALL_STATE(804)] = 17201, + [SMALL_STATE(805)] = 17255, + [SMALL_STATE(806)] = 17309, + [SMALL_STATE(807)] = 17363, + [SMALL_STATE(808)] = 17417, + [SMALL_STATE(809)] = 17471, + [SMALL_STATE(810)] = 17525, + [SMALL_STATE(811)] = 17579, + [SMALL_STATE(812)] = 17633, + [SMALL_STATE(813)] = 17687, + [SMALL_STATE(814)] = 17741, + [SMALL_STATE(815)] = 17795, + [SMALL_STATE(816)] = 17849, [SMALL_STATE(817)] = 17905, [SMALL_STATE(818)] = 17959, [SMALL_STATE(819)] = 18013, - [SMALL_STATE(820)] = 18069, - [SMALL_STATE(821)] = 18123, - [SMALL_STATE(822)] = 18177, - [SMALL_STATE(823)] = 18231, - [SMALL_STATE(824)] = 18285, - [SMALL_STATE(825)] = 18339, - [SMALL_STATE(826)] = 18393, - [SMALL_STATE(827)] = 18447, - [SMALL_STATE(828)] = 18501, + [SMALL_STATE(820)] = 18067, + [SMALL_STATE(821)] = 18121, + [SMALL_STATE(822)] = 18175, + [SMALL_STATE(823)] = 18229, + [SMALL_STATE(824)] = 18283, + [SMALL_STATE(825)] = 18337, + [SMALL_STATE(826)] = 18391, + [SMALL_STATE(827)] = 18445, + [SMALL_STATE(828)] = 18499, [SMALL_STATE(829)] = 18555, [SMALL_STATE(830)] = 18609, [SMALL_STATE(831)] = 18663, [SMALL_STATE(832)] = 18717, - [SMALL_STATE(833)] = 18773, - [SMALL_STATE(834)] = 18827, - [SMALL_STATE(835)] = 18881, - [SMALL_STATE(836)] = 18935, - [SMALL_STATE(837)] = 18989, - [SMALL_STATE(838)] = 19045, - [SMALL_STATE(839)] = 19099, + [SMALL_STATE(833)] = 18771, + [SMALL_STATE(834)] = 18825, + [SMALL_STATE(835)] = 18879, + [SMALL_STATE(836)] = 18933, + [SMALL_STATE(837)] = 18987, + [SMALL_STATE(838)] = 19041, + [SMALL_STATE(839)] = 19095, [SMALL_STATE(840)] = 19153, - [SMALL_STATE(841)] = 19207, - [SMALL_STATE(842)] = 19261, - [SMALL_STATE(843)] = 19315, - [SMALL_STATE(844)] = 19369, - [SMALL_STATE(845)] = 19423, - [SMALL_STATE(846)] = 19477, - [SMALL_STATE(847)] = 19531, + [SMALL_STATE(841)] = 19209, + [SMALL_STATE(842)] = 19263, + [SMALL_STATE(843)] = 19319, + [SMALL_STATE(844)] = 19373, + [SMALL_STATE(845)] = 19427, + [SMALL_STATE(846)] = 19481, + [SMALL_STATE(847)] = 19535, [SMALL_STATE(848)] = 19589, [SMALL_STATE(849)] = 19643, [SMALL_STATE(850)] = 19697, @@ -126851,17 +126815,17 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(872)] = 20885, [SMALL_STATE(873)] = 20939, [SMALL_STATE(874)] = 20993, - [SMALL_STATE(875)] = 21047, - [SMALL_STATE(876)] = 21101, - [SMALL_STATE(877)] = 21155, - [SMALL_STATE(878)] = 21209, - [SMALL_STATE(879)] = 21263, - [SMALL_STATE(880)] = 21317, - [SMALL_STATE(881)] = 21371, - [SMALL_STATE(882)] = 21425, - [SMALL_STATE(883)] = 21479, - [SMALL_STATE(884)] = 21537, - [SMALL_STATE(885)] = 21591, + [SMALL_STATE(875)] = 21049, + [SMALL_STATE(876)] = 21103, + [SMALL_STATE(877)] = 21157, + [SMALL_STATE(878)] = 21211, + [SMALL_STATE(879)] = 21265, + [SMALL_STATE(880)] = 21319, + [SMALL_STATE(881)] = 21373, + [SMALL_STATE(882)] = 21427, + [SMALL_STATE(883)] = 21481, + [SMALL_STATE(884)] = 21535, + [SMALL_STATE(885)] = 21589, [SMALL_STATE(886)] = 21645, [SMALL_STATE(887)] = 21699, [SMALL_STATE(888)] = 21753, @@ -126892,116 +126856,116 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(913)] = 23103, [SMALL_STATE(914)] = 23157, [SMALL_STATE(915)] = 23211, - [SMALL_STATE(916)] = 23265, - [SMALL_STATE(917)] = 23319, - [SMALL_STATE(918)] = 23373, - [SMALL_STATE(919)] = 23427, - [SMALL_STATE(920)] = 23481, - [SMALL_STATE(921)] = 23535, - [SMALL_STATE(922)] = 23589, - [SMALL_STATE(923)] = 23643, - [SMALL_STATE(924)] = 23697, - [SMALL_STATE(925)] = 23751, - [SMALL_STATE(926)] = 23805, - [SMALL_STATE(927)] = 23859, - [SMALL_STATE(928)] = 23913, - [SMALL_STATE(929)] = 23967, - [SMALL_STATE(930)] = 24021, - [SMALL_STATE(931)] = 24077, - [SMALL_STATE(932)] = 24131, - [SMALL_STATE(933)] = 24187, + [SMALL_STATE(916)] = 23269, + [SMALL_STATE(917)] = 23325, + [SMALL_STATE(918)] = 23379, + [SMALL_STATE(919)] = 23433, + [SMALL_STATE(920)] = 23487, + [SMALL_STATE(921)] = 23541, + [SMALL_STATE(922)] = 23595, + [SMALL_STATE(923)] = 23649, + [SMALL_STATE(924)] = 23703, + [SMALL_STATE(925)] = 23757, + [SMALL_STATE(926)] = 23811, + [SMALL_STATE(927)] = 23865, + [SMALL_STATE(928)] = 23919, + [SMALL_STATE(929)] = 23973, + [SMALL_STATE(930)] = 24027, + [SMALL_STATE(931)] = 24081, + [SMALL_STATE(932)] = 24135, + [SMALL_STATE(933)] = 24189, [SMALL_STATE(934)] = 24243, [SMALL_STATE(935)] = 24297, [SMALL_STATE(936)] = 24351, - [SMALL_STATE(937)] = 24405, - [SMALL_STATE(938)] = 24459, - [SMALL_STATE(939)] = 24513, - [SMALL_STATE(940)] = 24567, - [SMALL_STATE(941)] = 24621, - [SMALL_STATE(942)] = 24675, - [SMALL_STATE(943)] = 24729, - [SMALL_STATE(944)] = 24783, - [SMALL_STATE(945)] = 24837, - [SMALL_STATE(946)] = 24891, - [SMALL_STATE(947)] = 24945, - [SMALL_STATE(948)] = 24999, - [SMALL_STATE(949)] = 25053, + [SMALL_STATE(937)] = 24407, + [SMALL_STATE(938)] = 24461, + [SMALL_STATE(939)] = 24515, + [SMALL_STATE(940)] = 24569, + [SMALL_STATE(941)] = 24623, + [SMALL_STATE(942)] = 24677, + [SMALL_STATE(943)] = 24731, + [SMALL_STATE(944)] = 24785, + [SMALL_STATE(945)] = 24839, + [SMALL_STATE(946)] = 24893, + [SMALL_STATE(947)] = 24947, + [SMALL_STATE(948)] = 25001, + [SMALL_STATE(949)] = 25055, [SMALL_STATE(950)] = 25109, [SMALL_STATE(951)] = 25163, [SMALL_STATE(952)] = 25217, - [SMALL_STATE(953)] = 25273, - [SMALL_STATE(954)] = 25327, - [SMALL_STATE(955)] = 25381, - [SMALL_STATE(956)] = 25435, - [SMALL_STATE(957)] = 25489, - [SMALL_STATE(958)] = 25543, - [SMALL_STATE(959)] = 25597, - [SMALL_STATE(960)] = 25651, - [SMALL_STATE(961)] = 25705, - [SMALL_STATE(962)] = 25759, - [SMALL_STATE(963)] = 25813, - [SMALL_STATE(964)] = 25867, - [SMALL_STATE(965)] = 25921, - [SMALL_STATE(966)] = 25977, + [SMALL_STATE(953)] = 25271, + [SMALL_STATE(954)] = 25325, + [SMALL_STATE(955)] = 25379, + [SMALL_STATE(956)] = 25433, + [SMALL_STATE(957)] = 25487, + [SMALL_STATE(958)] = 25541, + [SMALL_STATE(959)] = 25595, + [SMALL_STATE(960)] = 25649, + [SMALL_STATE(961)] = 25703, + [SMALL_STATE(962)] = 25757, + [SMALL_STATE(963)] = 25811, + [SMALL_STATE(964)] = 25865, + [SMALL_STATE(965)] = 25919, + [SMALL_STATE(966)] = 25973, [SMALL_STATE(967)] = 26031, - [SMALL_STATE(968)] = 26085, - [SMALL_STATE(969)] = 26139, - [SMALL_STATE(970)] = 26193, - [SMALL_STATE(971)] = 26247, - [SMALL_STATE(972)] = 26301, - [SMALL_STATE(973)] = 26355, - [SMALL_STATE(974)] = 26409, - [SMALL_STATE(975)] = 26463, - [SMALL_STATE(976)] = 26517, - [SMALL_STATE(977)] = 26571, - [SMALL_STATE(978)] = 26625, - [SMALL_STATE(979)] = 26679, - [SMALL_STATE(980)] = 26733, + [SMALL_STATE(968)] = 26087, + [SMALL_STATE(969)] = 26141, + [SMALL_STATE(970)] = 26195, + [SMALL_STATE(971)] = 26249, + [SMALL_STATE(972)] = 26303, + [SMALL_STATE(973)] = 26357, + [SMALL_STATE(974)] = 26411, + [SMALL_STATE(975)] = 26465, + [SMALL_STATE(976)] = 26519, + [SMALL_STATE(977)] = 26573, + [SMALL_STATE(978)] = 26627, + [SMALL_STATE(979)] = 26681, + [SMALL_STATE(980)] = 26735, [SMALL_STATE(981)] = 26789, [SMALL_STATE(982)] = 26843, - [SMALL_STATE(983)] = 26899, - [SMALL_STATE(984)] = 26955, - [SMALL_STATE(985)] = 27009, - [SMALL_STATE(986)] = 27063, - [SMALL_STATE(987)] = 27119, - [SMALL_STATE(988)] = 27173, - [SMALL_STATE(989)] = 27227, - [SMALL_STATE(990)] = 27283, - [SMALL_STATE(991)] = 27337, - [SMALL_STATE(992)] = 27391, - [SMALL_STATE(993)] = 27445, - [SMALL_STATE(994)] = 27501, - [SMALL_STATE(995)] = 27555, - [SMALL_STATE(996)] = 27609, - [SMALL_STATE(997)] = 27663, - [SMALL_STATE(998)] = 27717, - [SMALL_STATE(999)] = 27771, - [SMALL_STATE(1000)] = 27825, - [SMALL_STATE(1001)] = 27879, - [SMALL_STATE(1002)] = 27933, - [SMALL_STATE(1003)] = 27987, - [SMALL_STATE(1004)] = 28041, - [SMALL_STATE(1005)] = 28095, - [SMALL_STATE(1006)] = 28149, - [SMALL_STATE(1007)] = 28203, - [SMALL_STATE(1008)] = 28257, - [SMALL_STATE(1009)] = 28311, - [SMALL_STATE(1010)] = 28365, - [SMALL_STATE(1011)] = 28419, - [SMALL_STATE(1012)] = 28473, - [SMALL_STATE(1013)] = 28527, - [SMALL_STATE(1014)] = 28581, - [SMALL_STATE(1015)] = 28635, - [SMALL_STATE(1016)] = 28689, - [SMALL_STATE(1017)] = 28743, - [SMALL_STATE(1018)] = 28797, - [SMALL_STATE(1019)] = 28851, - [SMALL_STATE(1020)] = 28905, - [SMALL_STATE(1021)] = 28959, - [SMALL_STATE(1022)] = 29013, - [SMALL_STATE(1023)] = 29067, - [SMALL_STATE(1024)] = 29121, - [SMALL_STATE(1025)] = 29175, + [SMALL_STATE(983)] = 26897, + [SMALL_STATE(984)] = 26951, + [SMALL_STATE(985)] = 27005, + [SMALL_STATE(986)] = 27059, + [SMALL_STATE(987)] = 27113, + [SMALL_STATE(988)] = 27169, + [SMALL_STATE(989)] = 27223, + [SMALL_STATE(990)] = 27277, + [SMALL_STATE(991)] = 27331, + [SMALL_STATE(992)] = 27385, + [SMALL_STATE(993)] = 27439, + [SMALL_STATE(994)] = 27493, + [SMALL_STATE(995)] = 27547, + [SMALL_STATE(996)] = 27601, + [SMALL_STATE(997)] = 27657, + [SMALL_STATE(998)] = 27711, + [SMALL_STATE(999)] = 27765, + [SMALL_STATE(1000)] = 27819, + [SMALL_STATE(1001)] = 27873, + [SMALL_STATE(1002)] = 27927, + [SMALL_STATE(1003)] = 27981, + [SMALL_STATE(1004)] = 28035, + [SMALL_STATE(1005)] = 28089, + [SMALL_STATE(1006)] = 28143, + [SMALL_STATE(1007)] = 28197, + [SMALL_STATE(1008)] = 28251, + [SMALL_STATE(1009)] = 28305, + [SMALL_STATE(1010)] = 28361, + [SMALL_STATE(1011)] = 28415, + [SMALL_STATE(1012)] = 28469, + [SMALL_STATE(1013)] = 28523, + [SMALL_STATE(1014)] = 28577, + [SMALL_STATE(1015)] = 28631, + [SMALL_STATE(1016)] = 28685, + [SMALL_STATE(1017)] = 28739, + [SMALL_STATE(1018)] = 28793, + [SMALL_STATE(1019)] = 28847, + [SMALL_STATE(1020)] = 28901, + [SMALL_STATE(1021)] = 28955, + [SMALL_STATE(1022)] = 29009, + [SMALL_STATE(1023)] = 29065, + [SMALL_STATE(1024)] = 29119, + [SMALL_STATE(1025)] = 29173, [SMALL_STATE(1026)] = 29229, [SMALL_STATE(1027)] = 29283, [SMALL_STATE(1028)] = 29337, @@ -127019,91 +126983,91 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1040)] = 29983, [SMALL_STATE(1041)] = 30036, [SMALL_STATE(1042)] = 30089, - [SMALL_STATE(1043)] = 30144, - [SMALL_STATE(1044)] = 30197, - [SMALL_STATE(1045)] = 30250, - [SMALL_STATE(1046)] = 30303, - [SMALL_STATE(1047)] = 30356, - [SMALL_STATE(1048)] = 30409, - [SMALL_STATE(1049)] = 30462, - [SMALL_STATE(1050)] = 30515, - [SMALL_STATE(1051)] = 30570, - [SMALL_STATE(1052)] = 30623, - [SMALL_STATE(1053)] = 30676, - [SMALL_STATE(1054)] = 30729, - [SMALL_STATE(1055)] = 30782, - [SMALL_STATE(1056)] = 30835, - [SMALL_STATE(1057)] = 30888, - [SMALL_STATE(1058)] = 30941, - [SMALL_STATE(1059)] = 30994, - [SMALL_STATE(1060)] = 31047, - [SMALL_STATE(1061)] = 31100, - [SMALL_STATE(1062)] = 31153, - [SMALL_STATE(1063)] = 31206, - [SMALL_STATE(1064)] = 31295, - [SMALL_STATE(1065)] = 31348, - [SMALL_STATE(1066)] = 31401, - [SMALL_STATE(1067)] = 31456, - [SMALL_STATE(1068)] = 31509, - [SMALL_STATE(1069)] = 31562, - [SMALL_STATE(1070)] = 31615, - [SMALL_STATE(1071)] = 31668, - [SMALL_STATE(1072)] = 31721, - [SMALL_STATE(1073)] = 31774, - [SMALL_STATE(1074)] = 31827, - [SMALL_STATE(1075)] = 31880, - [SMALL_STATE(1076)] = 31933, - [SMALL_STATE(1077)] = 31986, - [SMALL_STATE(1078)] = 32039, - [SMALL_STATE(1079)] = 32092, - [SMALL_STATE(1080)] = 32145, - [SMALL_STATE(1081)] = 32198, - [SMALL_STATE(1082)] = 32251, - [SMALL_STATE(1083)] = 32304, - [SMALL_STATE(1084)] = 32357, - [SMALL_STATE(1085)] = 32410, - [SMALL_STATE(1086)] = 32463, - [SMALL_STATE(1087)] = 32516, - [SMALL_STATE(1088)] = 32569, - [SMALL_STATE(1089)] = 32622, - [SMALL_STATE(1090)] = 32675, - [SMALL_STATE(1091)] = 32728, - [SMALL_STATE(1092)] = 32781, - [SMALL_STATE(1093)] = 32834, - [SMALL_STATE(1094)] = 32887, - [SMALL_STATE(1095)] = 32940, - [SMALL_STATE(1096)] = 32993, - [SMALL_STATE(1097)] = 33046, - [SMALL_STATE(1098)] = 33099, - [SMALL_STATE(1099)] = 33152, - [SMALL_STATE(1100)] = 33205, - [SMALL_STATE(1101)] = 33258, - [SMALL_STATE(1102)] = 33347, - [SMALL_STATE(1103)] = 33400, - [SMALL_STATE(1104)] = 33453, - [SMALL_STATE(1105)] = 33508, - [SMALL_STATE(1106)] = 33561, - [SMALL_STATE(1107)] = 33614, - [SMALL_STATE(1108)] = 33667, - [SMALL_STATE(1109)] = 33720, - [SMALL_STATE(1110)] = 33773, - [SMALL_STATE(1111)] = 33826, - [SMALL_STATE(1112)] = 33879, - [SMALL_STATE(1113)] = 33932, - [SMALL_STATE(1114)] = 33985, - [SMALL_STATE(1115)] = 34038, - [SMALL_STATE(1116)] = 34091, - [SMALL_STATE(1117)] = 34144, - [SMALL_STATE(1118)] = 34197, - [SMALL_STATE(1119)] = 34250, - [SMALL_STATE(1120)] = 34303, - [SMALL_STATE(1121)] = 34356, - [SMALL_STATE(1122)] = 34413, - [SMALL_STATE(1123)] = 34466, - [SMALL_STATE(1124)] = 34519, - [SMALL_STATE(1125)] = 34572, - [SMALL_STATE(1126)] = 34625, - [SMALL_STATE(1127)] = 34678, + [SMALL_STATE(1043)] = 30142, + [SMALL_STATE(1044)] = 30195, + [SMALL_STATE(1045)] = 30248, + [SMALL_STATE(1046)] = 30301, + [SMALL_STATE(1047)] = 30354, + [SMALL_STATE(1048)] = 30407, + [SMALL_STATE(1049)] = 30460, + [SMALL_STATE(1050)] = 30513, + [SMALL_STATE(1051)] = 30566, + [SMALL_STATE(1052)] = 30619, + [SMALL_STATE(1053)] = 30672, + [SMALL_STATE(1054)] = 30725, + [SMALL_STATE(1055)] = 30778, + [SMALL_STATE(1056)] = 30831, + [SMALL_STATE(1057)] = 30884, + [SMALL_STATE(1058)] = 30937, + [SMALL_STATE(1059)] = 30990, + [SMALL_STATE(1060)] = 31043, + [SMALL_STATE(1061)] = 31096, + [SMALL_STATE(1062)] = 31149, + [SMALL_STATE(1063)] = 31202, + [SMALL_STATE(1064)] = 31255, + [SMALL_STATE(1065)] = 31308, + [SMALL_STATE(1066)] = 31363, + [SMALL_STATE(1067)] = 31416, + [SMALL_STATE(1068)] = 31469, + [SMALL_STATE(1069)] = 31522, + [SMALL_STATE(1070)] = 31575, + [SMALL_STATE(1071)] = 31628, + [SMALL_STATE(1072)] = 31681, + [SMALL_STATE(1073)] = 31734, + [SMALL_STATE(1074)] = 31787, + [SMALL_STATE(1075)] = 31842, + [SMALL_STATE(1076)] = 31895, + [SMALL_STATE(1077)] = 31948, + [SMALL_STATE(1078)] = 32001, + [SMALL_STATE(1079)] = 32054, + [SMALL_STATE(1080)] = 32107, + [SMALL_STATE(1081)] = 32160, + [SMALL_STATE(1082)] = 32213, + [SMALL_STATE(1083)] = 32266, + [SMALL_STATE(1084)] = 32319, + [SMALL_STATE(1085)] = 32372, + [SMALL_STATE(1086)] = 32425, + [SMALL_STATE(1087)] = 32482, + [SMALL_STATE(1088)] = 32535, + [SMALL_STATE(1089)] = 32588, + [SMALL_STATE(1090)] = 32641, + [SMALL_STATE(1091)] = 32696, + [SMALL_STATE(1092)] = 32749, + [SMALL_STATE(1093)] = 32802, + [SMALL_STATE(1094)] = 32891, + [SMALL_STATE(1095)] = 32944, + [SMALL_STATE(1096)] = 32997, + [SMALL_STATE(1097)] = 33050, + [SMALL_STATE(1098)] = 33103, + [SMALL_STATE(1099)] = 33156, + [SMALL_STATE(1100)] = 33209, + [SMALL_STATE(1101)] = 33298, + [SMALL_STATE(1102)] = 33351, + [SMALL_STATE(1103)] = 33404, + [SMALL_STATE(1104)] = 33457, + [SMALL_STATE(1105)] = 33510, + [SMALL_STATE(1106)] = 33563, + [SMALL_STATE(1107)] = 33616, + [SMALL_STATE(1108)] = 33669, + [SMALL_STATE(1109)] = 33722, + [SMALL_STATE(1110)] = 33775, + [SMALL_STATE(1111)] = 33828, + [SMALL_STATE(1112)] = 33881, + [SMALL_STATE(1113)] = 33934, + [SMALL_STATE(1114)] = 33987, + [SMALL_STATE(1115)] = 34040, + [SMALL_STATE(1116)] = 34093, + [SMALL_STATE(1117)] = 34146, + [SMALL_STATE(1118)] = 34199, + [SMALL_STATE(1119)] = 34252, + [SMALL_STATE(1120)] = 34305, + [SMALL_STATE(1121)] = 34358, + [SMALL_STATE(1122)] = 34411, + [SMALL_STATE(1123)] = 34464, + [SMALL_STATE(1124)] = 34517, + [SMALL_STATE(1125)] = 34570, + [SMALL_STATE(1126)] = 34623, + [SMALL_STATE(1127)] = 34676, [SMALL_STATE(1128)] = 34731, [SMALL_STATE(1129)] = 34784, [SMALL_STATE(1130)] = 34837, @@ -127113,170 +127077,170 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1134)] = 35049, [SMALL_STATE(1135)] = 35102, [SMALL_STATE(1136)] = 35182, - [SMALL_STATE(1137)] = 35246, - [SMALL_STATE(1138)] = 35324, - [SMALL_STATE(1139)] = 35410, - [SMALL_STATE(1140)] = 35478, - [SMALL_STATE(1141)] = 35554, - [SMALL_STATE(1142)] = 35614, - [SMALL_STATE(1143)] = 35694, - [SMALL_STATE(1144)] = 35774, - [SMALL_STATE(1145)] = 35844, - [SMALL_STATE(1146)] = 35904, - [SMALL_STATE(1147)] = 35990, - [SMALL_STATE(1148)] = 36070, - [SMALL_STATE(1149)] = 36122, - [SMALL_STATE(1150)] = 36184, - [SMALL_STATE(1151)] = 36244, - [SMALL_STATE(1152)] = 36296, - [SMALL_STATE(1153)] = 36356, - [SMALL_STATE(1154)] = 36428, - [SMALL_STATE(1155)] = 36494, - [SMALL_STATE(1156)] = 36554, - [SMALL_STATE(1157)] = 36634, + [SMALL_STATE(1137)] = 35242, + [SMALL_STATE(1138)] = 35328, + [SMALL_STATE(1139)] = 35380, + [SMALL_STATE(1140)] = 35460, + [SMALL_STATE(1141)] = 35540, + [SMALL_STATE(1142)] = 35600, + [SMALL_STATE(1143)] = 35652, + [SMALL_STATE(1144)] = 35716, + [SMALL_STATE(1145)] = 35784, + [SMALL_STATE(1146)] = 35854, + [SMALL_STATE(1147)] = 35932, + [SMALL_STATE(1148)] = 35992, + [SMALL_STATE(1149)] = 36068, + [SMALL_STATE(1150)] = 36134, + [SMALL_STATE(1151)] = 36206, + [SMALL_STATE(1152)] = 36292, + [SMALL_STATE(1153)] = 36354, + [SMALL_STATE(1154)] = 36434, + [SMALL_STATE(1155)] = 36514, + [SMALL_STATE(1156)] = 36574, + [SMALL_STATE(1157)] = 36654, [SMALL_STATE(1158)] = 36714, [SMALL_STATE(1159)] = 36801, - [SMALL_STATE(1160)] = 36880, - [SMALL_STATE(1161)] = 36967, - [SMALL_STATE(1162)] = 37054, + [SMALL_STATE(1160)] = 36888, + [SMALL_STATE(1161)] = 36973, + [SMALL_STATE(1162)] = 37024, [SMALL_STATE(1163)] = 37111, - [SMALL_STATE(1164)] = 37196, + [SMALL_STATE(1164)] = 37198, [SMALL_STATE(1165)] = 37283, - [SMALL_STATE(1166)] = 37368, + [SMALL_STATE(1166)] = 37340, [SMALL_STATE(1167)] = 37419, [SMALL_STATE(1168)] = 37470, [SMALL_STATE(1169)] = 37546, [SMALL_STATE(1170)] = 37622, [SMALL_STATE(1171)] = 37698, [SMALL_STATE(1172)] = 37774, - [SMALL_STATE(1173)] = 37828, + [SMALL_STATE(1173)] = 37830, [SMALL_STATE(1174)] = 37884, - [SMALL_STATE(1175)] = 37933, - [SMALL_STATE(1176)] = 37982, - [SMALL_STATE(1177)] = 38071, - [SMALL_STATE(1178)] = 38120, - [SMALL_STATE(1179)] = 38171, - [SMALL_STATE(1180)] = 38220, - [SMALL_STATE(1181)] = 38269, - [SMALL_STATE(1182)] = 38342, - [SMALL_STATE(1183)] = 38391, - [SMALL_STATE(1184)] = 38480, - [SMALL_STATE(1185)] = 38529, - [SMALL_STATE(1186)] = 38580, - [SMALL_STATE(1187)] = 38629, - [SMALL_STATE(1188)] = 38682, + [SMALL_STATE(1175)] = 37937, + [SMALL_STATE(1176)] = 37986, + [SMALL_STATE(1177)] = 38035, + [SMALL_STATE(1178)] = 38084, + [SMALL_STATE(1179)] = 38133, + [SMALL_STATE(1180)] = 38222, + [SMALL_STATE(1181)] = 38271, + [SMALL_STATE(1182)] = 38320, + [SMALL_STATE(1183)] = 38371, + [SMALL_STATE(1184)] = 38424, + [SMALL_STATE(1185)] = 38513, + [SMALL_STATE(1186)] = 38564, + [SMALL_STATE(1187)] = 38613, + [SMALL_STATE(1188)] = 38662, [SMALL_STATE(1189)] = 38735, [SMALL_STATE(1190)] = 38784, - [SMALL_STATE(1191)] = 38834, - [SMALL_STATE(1192)] = 38912, + [SMALL_STATE(1191)] = 38870, + [SMALL_STATE(1192)] = 38948, [SMALL_STATE(1193)] = 38998, - [SMALL_STATE(1194)] = 39048, + [SMALL_STATE(1194)] = 39076, [SMALL_STATE(1195)] = 39126, [SMALL_STATE(1196)] = 39176, [SMALL_STATE(1197)] = 39226, [SMALL_STATE(1198)] = 39312, - [SMALL_STATE(1199)] = 39393, - [SMALL_STATE(1200)] = 39474, - [SMALL_STATE(1201)] = 39557, - [SMALL_STATE(1202)] = 39640, - [SMALL_STATE(1203)] = 39723, - [SMALL_STATE(1204)] = 39806, - [SMALL_STATE(1205)] = 39861, - [SMALL_STATE(1206)] = 39916, - [SMALL_STATE(1207)] = 39997, - [SMALL_STATE(1208)] = 40080, - [SMALL_STATE(1209)] = 40135, - [SMALL_STATE(1210)] = 40216, - [SMALL_STATE(1211)] = 40299, - [SMALL_STATE(1212)] = 40380, - [SMALL_STATE(1213)] = 40463, - [SMALL_STATE(1214)] = 40546, - [SMALL_STATE(1215)] = 40629, - [SMALL_STATE(1216)] = 40712, - [SMALL_STATE(1217)] = 40795, - [SMALL_STATE(1218)] = 40870, - [SMALL_STATE(1219)] = 40953, - [SMALL_STATE(1220)] = 41012, - [SMALL_STATE(1221)] = 41095, - [SMALL_STATE(1222)] = 41158, - [SMALL_STATE(1223)] = 41223, - [SMALL_STATE(1224)] = 41304, - [SMALL_STATE(1225)] = 41379, - [SMALL_STATE(1226)] = 41462, - [SMALL_STATE(1227)] = 41543, - [SMALL_STATE(1228)] = 41626, - [SMALL_STATE(1229)] = 41709, - [SMALL_STATE(1230)] = 41792, - [SMALL_STATE(1231)] = 41865, - [SMALL_STATE(1232)] = 41946, - [SMALL_STATE(1233)] = 42019, - [SMALL_STATE(1234)] = 42100, - [SMALL_STATE(1235)] = 42171, - [SMALL_STATE(1236)] = 42232, - [SMALL_STATE(1237)] = 42307, + [SMALL_STATE(1199)] = 39387, + [SMALL_STATE(1200)] = 39446, + [SMALL_STATE(1201)] = 39527, + [SMALL_STATE(1202)] = 39610, + [SMALL_STATE(1203)] = 39693, + [SMALL_STATE(1204)] = 39768, + [SMALL_STATE(1205)] = 39849, + [SMALL_STATE(1206)] = 39906, + [SMALL_STATE(1207)] = 39989, + [SMALL_STATE(1208)] = 40072, + [SMALL_STATE(1209)] = 40155, + [SMALL_STATE(1210)] = 40238, + [SMALL_STATE(1211)] = 40305, + [SMALL_STATE(1212)] = 40386, + [SMALL_STATE(1213)] = 40469, + [SMALL_STATE(1214)] = 40550, + [SMALL_STATE(1215)] = 40633, + [SMALL_STATE(1216)] = 40708, + [SMALL_STATE(1217)] = 40781, + [SMALL_STATE(1218)] = 40862, + [SMALL_STATE(1219)] = 40945, + [SMALL_STATE(1220)] = 41028, + [SMALL_STATE(1221)] = 41101, + [SMALL_STATE(1222)] = 41156, + [SMALL_STATE(1223)] = 41239, + [SMALL_STATE(1224)] = 41322, + [SMALL_STATE(1225)] = 41383, + [SMALL_STATE(1226)] = 41458, + [SMALL_STATE(1227)] = 41541, + [SMALL_STATE(1228)] = 41624, + [SMALL_STATE(1229)] = 41699, + [SMALL_STATE(1230)] = 41782, + [SMALL_STATE(1231)] = 41857, + [SMALL_STATE(1232)] = 41938, + [SMALL_STATE(1233)] = 42021, + [SMALL_STATE(1234)] = 42102, + [SMALL_STATE(1235)] = 42183, + [SMALL_STATE(1236)] = 42264, + [SMALL_STATE(1237)] = 42335, [SMALL_STATE(1238)] = 42390, - [SMALL_STATE(1239)] = 42473, - [SMALL_STATE(1240)] = 42556, - [SMALL_STATE(1241)] = 42623, - [SMALL_STATE(1242)] = 42706, - [SMALL_STATE(1243)] = 42787, - [SMALL_STATE(1244)] = 42870, - [SMALL_STATE(1245)] = 42951, - [SMALL_STATE(1246)] = 43026, - [SMALL_STATE(1247)] = 43081, - [SMALL_STATE(1248)] = 43156, - [SMALL_STATE(1249)] = 43213, - [SMALL_STATE(1250)] = 43296, - [SMALL_STATE(1251)] = 43379, - [SMALL_STATE(1252)] = 43462, - [SMALL_STATE(1253)] = 43535, - [SMALL_STATE(1254)] = 43618, - [SMALL_STATE(1255)] = 43699, - [SMALL_STATE(1256)] = 43770, - [SMALL_STATE(1257)] = 43851, - [SMALL_STATE(1258)] = 43934, - [SMALL_STATE(1259)] = 44015, - [SMALL_STATE(1260)] = 44098, - [SMALL_STATE(1261)] = 44181, + [SMALL_STATE(1239)] = 42453, + [SMALL_STATE(1240)] = 42536, + [SMALL_STATE(1241)] = 42607, + [SMALL_STATE(1242)] = 42688, + [SMALL_STATE(1243)] = 42771, + [SMALL_STATE(1244)] = 42854, + [SMALL_STATE(1245)] = 42935, + [SMALL_STATE(1246)] = 42990, + [SMALL_STATE(1247)] = 43071, + [SMALL_STATE(1248)] = 43154, + [SMALL_STATE(1249)] = 43209, + [SMALL_STATE(1250)] = 43292, + [SMALL_STATE(1251)] = 43375, + [SMALL_STATE(1252)] = 43458, + [SMALL_STATE(1253)] = 43541, + [SMALL_STATE(1254)] = 43622, + [SMALL_STATE(1255)] = 43705, + [SMALL_STATE(1256)] = 43788, + [SMALL_STATE(1257)] = 43853, + [SMALL_STATE(1258)] = 43936, + [SMALL_STATE(1259)] = 44019, + [SMALL_STATE(1260)] = 44100, + [SMALL_STATE(1261)] = 44173, [SMALL_STATE(1262)] = 44256, [SMALL_STATE(1263)] = 44336, [SMALL_STATE(1264)] = 44416, - [SMALL_STATE(1265)] = 44484, - [SMALL_STATE(1266)] = 44564, - [SMALL_STATE(1267)] = 44644, - [SMALL_STATE(1268)] = 44724, - [SMALL_STATE(1269)] = 44804, - [SMALL_STATE(1270)] = 44884, - [SMALL_STATE(1271)] = 44964, - [SMALL_STATE(1272)] = 45044, - [SMALL_STATE(1273)] = 45124, - [SMALL_STATE(1274)] = 45204, - [SMALL_STATE(1275)] = 45284, - [SMALL_STATE(1276)] = 45364, - [SMALL_STATE(1277)] = 45444, - [SMALL_STATE(1278)] = 45522, - [SMALL_STATE(1279)] = 45600, - [SMALL_STATE(1280)] = 45680, - [SMALL_STATE(1281)] = 45760, - [SMALL_STATE(1282)] = 45840, - [SMALL_STATE(1283)] = 45920, - [SMALL_STATE(1284)] = 46000, - [SMALL_STATE(1285)] = 46080, - [SMALL_STATE(1286)] = 46148, - [SMALL_STATE(1287)] = 46228, - [SMALL_STATE(1288)] = 46308, - [SMALL_STATE(1289)] = 46388, - [SMALL_STATE(1290)] = 46468, - [SMALL_STATE(1291)] = 46548, - [SMALL_STATE(1292)] = 46628, - [SMALL_STATE(1293)] = 46708, - [SMALL_STATE(1294)] = 46788, - [SMALL_STATE(1295)] = 46866, - [SMALL_STATE(1296)] = 46946, - [SMALL_STATE(1297)] = 47026, - [SMALL_STATE(1298)] = 47104, - [SMALL_STATE(1299)] = 47184, - [SMALL_STATE(1300)] = 47264, + [SMALL_STATE(1265)] = 44496, + [SMALL_STATE(1266)] = 44576, + [SMALL_STATE(1267)] = 44656, + [SMALL_STATE(1268)] = 44736, + [SMALL_STATE(1269)] = 44816, + [SMALL_STATE(1270)] = 44896, + [SMALL_STATE(1271)] = 44976, + [SMALL_STATE(1272)] = 45056, + [SMALL_STATE(1273)] = 45136, + [SMALL_STATE(1274)] = 45216, + [SMALL_STATE(1275)] = 45296, + [SMALL_STATE(1276)] = 45374, + [SMALL_STATE(1277)] = 45454, + [SMALL_STATE(1278)] = 45534, + [SMALL_STATE(1279)] = 45614, + [SMALL_STATE(1280)] = 45694, + [SMALL_STATE(1281)] = 45774, + [SMALL_STATE(1282)] = 45854, + [SMALL_STATE(1283)] = 45934, + [SMALL_STATE(1284)] = 46014, + [SMALL_STATE(1285)] = 46094, + [SMALL_STATE(1286)] = 46174, + [SMALL_STATE(1287)] = 46254, + [SMALL_STATE(1288)] = 46334, + [SMALL_STATE(1289)] = 46414, + [SMALL_STATE(1290)] = 46494, + [SMALL_STATE(1291)] = 46572, + [SMALL_STATE(1292)] = 46650, + [SMALL_STATE(1293)] = 46728, + [SMALL_STATE(1294)] = 46796, + [SMALL_STATE(1295)] = 46876, + [SMALL_STATE(1296)] = 46956, + [SMALL_STATE(1297)] = 47036, + [SMALL_STATE(1298)] = 47116, + [SMALL_STATE(1299)] = 47196, + [SMALL_STATE(1300)] = 47276, [SMALL_STATE(1301)] = 47344, [SMALL_STATE(1302)] = 47409, [SMALL_STATE(1303)] = 47474, @@ -127296,919 +127260,919 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1317)] = 48096, [SMALL_STATE(1318)] = 48125, [SMALL_STATE(1319)] = 48154, - [SMALL_STATE(1320)] = 48183, - [SMALL_STATE(1321)] = 48220, - [SMALL_STATE(1322)] = 48249, + [SMALL_STATE(1320)] = 48191, + [SMALL_STATE(1321)] = 48228, + [SMALL_STATE(1322)] = 48257, [SMALL_STATE(1323)] = 48286, [SMALL_STATE(1324)] = 48315, [SMALL_STATE(1325)] = 48344, [SMALL_STATE(1326)] = 48370, [SMALL_STATE(1327)] = 48402, - [SMALL_STATE(1328)] = 48456, + [SMALL_STATE(1328)] = 48434, [SMALL_STATE(1329)] = 48488, [SMALL_STATE(1330)] = 48514, [SMALL_STATE(1331)] = 48546, [SMALL_STATE(1332)] = 48600, [SMALL_STATE(1333)] = 48626, [SMALL_STATE(1334)] = 48651, - [SMALL_STATE(1335)] = 48684, + [SMALL_STATE(1335)] = 48676, [SMALL_STATE(1336)] = 48709, - [SMALL_STATE(1337)] = 48734, - [SMALL_STATE(1338)] = 48759, - [SMALL_STATE(1339)] = 48784, + [SMALL_STATE(1337)] = 48732, + [SMALL_STATE(1338)] = 48757, + [SMALL_STATE(1339)] = 48782, [SMALL_STATE(1340)] = 48807, [SMALL_STATE(1341)] = 48829, [SMALL_STATE(1342)] = 48853, [SMALL_STATE(1343)] = 48877, - [SMALL_STATE(1344)] = 48899, - [SMALL_STATE(1345)] = 48921, - [SMALL_STATE(1346)] = 48945, - [SMALL_STATE(1347)] = 48967, - [SMALL_STATE(1348)] = 48991, - [SMALL_STATE(1349)] = 49015, - [SMALL_STATE(1350)] = 49039, - [SMALL_STATE(1351)] = 49083, - [SMALL_STATE(1352)] = 49127, - [SMALL_STATE(1353)] = 49151, + [SMALL_STATE(1344)] = 48921, + [SMALL_STATE(1345)] = 48965, + [SMALL_STATE(1346)] = 48987, + [SMALL_STATE(1347)] = 49011, + [SMALL_STATE(1348)] = 49035, + [SMALL_STATE(1349)] = 49081, + [SMALL_STATE(1350)] = 49105, + [SMALL_STATE(1351)] = 49127, + [SMALL_STATE(1352)] = 49149, + [SMALL_STATE(1353)] = 49173, [SMALL_STATE(1354)] = 49197, - [SMALL_STATE(1355)] = 49218, - [SMALL_STATE(1356)] = 49245, - [SMALL_STATE(1357)] = 49266, - [SMALL_STATE(1358)] = 49291, - [SMALL_STATE(1359)] = 49316, - [SMALL_STATE(1360)] = 49337, - [SMALL_STATE(1361)] = 49360, - [SMALL_STATE(1362)] = 49385, - [SMALL_STATE(1363)] = 49408, - [SMALL_STATE(1364)] = 49433, - [SMALL_STATE(1365)] = 49456, - [SMALL_STATE(1366)] = 49479, - [SMALL_STATE(1367)] = 49502, - [SMALL_STATE(1368)] = 49547, - [SMALL_STATE(1369)] = 49568, - [SMALL_STATE(1370)] = 49591, - [SMALL_STATE(1371)] = 49616, + [SMALL_STATE(1355)] = 49220, + [SMALL_STATE(1356)] = 49241, + [SMALL_STATE(1357)] = 49262, + [SMALL_STATE(1358)] = 49287, + [SMALL_STATE(1359)] = 49308, + [SMALL_STATE(1360)] = 49333, + [SMALL_STATE(1361)] = 49378, + [SMALL_STATE(1362)] = 49401, + [SMALL_STATE(1363)] = 49428, + [SMALL_STATE(1364)] = 49453, + [SMALL_STATE(1365)] = 49476, + [SMALL_STATE(1366)] = 49501, + [SMALL_STATE(1367)] = 49526, + [SMALL_STATE(1368)] = 49551, + [SMALL_STATE(1369)] = 49572, + [SMALL_STATE(1370)] = 49595, + [SMALL_STATE(1371)] = 49618, [SMALL_STATE(1372)] = 49641, - [SMALL_STATE(1373)] = 49662, + [SMALL_STATE(1373)] = 49664, [SMALL_STATE(1374)] = 49685, [SMALL_STATE(1375)] = 49708, - [SMALL_STATE(1376)] = 49730, - [SMALL_STATE(1377)] = 49752, - [SMALL_STATE(1378)] = 49772, - [SMALL_STATE(1379)] = 49792, - [SMALL_STATE(1380)] = 49812, - [SMALL_STATE(1381)] = 49832, - [SMALL_STATE(1382)] = 49854, - [SMALL_STATE(1383)] = 49874, - [SMALL_STATE(1384)] = 49894, - [SMALL_STATE(1385)] = 49914, - [SMALL_STATE(1386)] = 49934, - [SMALL_STATE(1387)] = 49954, - [SMALL_STATE(1388)] = 49974, - [SMALL_STATE(1389)] = 49994, - [SMALL_STATE(1390)] = 50014, - [SMALL_STATE(1391)] = 50034, + [SMALL_STATE(1376)] = 49728, + [SMALL_STATE(1377)] = 49748, + [SMALL_STATE(1378)] = 49770, + [SMALL_STATE(1379)] = 49790, + [SMALL_STATE(1380)] = 49810, + [SMALL_STATE(1381)] = 49830, + [SMALL_STATE(1382)] = 49850, + [SMALL_STATE(1383)] = 49870, + [SMALL_STATE(1384)] = 49890, + [SMALL_STATE(1385)] = 49910, + [SMALL_STATE(1386)] = 49930, + [SMALL_STATE(1387)] = 49952, + [SMALL_STATE(1388)] = 49972, + [SMALL_STATE(1389)] = 49992, + [SMALL_STATE(1390)] = 50012, + [SMALL_STATE(1391)] = 50032, [SMALL_STATE(1392)] = 50054, [SMALL_STATE(1393)] = 50074, [SMALL_STATE(1394)] = 50094, [SMALL_STATE(1395)] = 50114, [SMALL_STATE(1396)] = 50134, - [SMALL_STATE(1397)] = 50154, - [SMALL_STATE(1398)] = 50174, - [SMALL_STATE(1399)] = 50194, + [SMALL_STATE(1397)] = 50158, + [SMALL_STATE(1398)] = 50178, + [SMALL_STATE(1399)] = 50198, [SMALL_STATE(1400)] = 50218, [SMALL_STATE(1401)] = 50238, [SMALL_STATE(1402)] = 50258, - [SMALL_STATE(1403)] = 50283, - [SMALL_STATE(1404)] = 50308, - [SMALL_STATE(1405)] = 50329, - [SMALL_STATE(1406)] = 50352, - [SMALL_STATE(1407)] = 50375, - [SMALL_STATE(1408)] = 50398, - [SMALL_STATE(1409)] = 50421, - [SMALL_STATE(1410)] = 50444, - [SMALL_STATE(1411)] = 50467, - [SMALL_STATE(1412)] = 50492, - [SMALL_STATE(1413)] = 50515, - [SMALL_STATE(1414)] = 50538, - [SMALL_STATE(1415)] = 50563, - [SMALL_STATE(1416)] = 50586, - [SMALL_STATE(1417)] = 50609, - [SMALL_STATE(1418)] = 50630, - [SMALL_STATE(1419)] = 50655, - [SMALL_STATE(1420)] = 50678, - [SMALL_STATE(1421)] = 50703, - [SMALL_STATE(1422)] = 50728, - [SMALL_STATE(1423)] = 50749, + [SMALL_STATE(1403)] = 50281, + [SMALL_STATE(1404)] = 50304, + [SMALL_STATE(1405)] = 50327, + [SMALL_STATE(1406)] = 50350, + [SMALL_STATE(1407)] = 50371, + [SMALL_STATE(1408)] = 50392, + [SMALL_STATE(1409)] = 50415, + [SMALL_STATE(1410)] = 50438, + [SMALL_STATE(1411)] = 50459, + [SMALL_STATE(1412)] = 50482, + [SMALL_STATE(1413)] = 50505, + [SMALL_STATE(1414)] = 50528, + [SMALL_STATE(1415)] = 50551, + [SMALL_STATE(1416)] = 50576, + [SMALL_STATE(1417)] = 50601, + [SMALL_STATE(1418)] = 50626, + [SMALL_STATE(1419)] = 50651, + [SMALL_STATE(1420)] = 50676, + [SMALL_STATE(1421)] = 50701, + [SMALL_STATE(1422)] = 50726, + [SMALL_STATE(1423)] = 50751, [SMALL_STATE(1424)] = 50774, [SMALL_STATE(1425)] = 50797, - [SMALL_STATE(1426)] = 50829, - [SMALL_STATE(1427)] = 50849, - [SMALL_STATE(1428)] = 50869, - [SMALL_STATE(1429)] = 50893, - [SMALL_STATE(1430)] = 50925, - [SMALL_STATE(1431)] = 50945, - [SMALL_STATE(1432)] = 50965, - [SMALL_STATE(1433)] = 50997, - [SMALL_STATE(1434)] = 51017, - [SMALL_STATE(1435)] = 51049, - [SMALL_STATE(1436)] = 51069, - [SMALL_STATE(1437)] = 51089, - [SMALL_STATE(1438)] = 51109, - [SMALL_STATE(1439)] = 51129, - [SMALL_STATE(1440)] = 51149, - [SMALL_STATE(1441)] = 51175, - [SMALL_STATE(1442)] = 51195, - [SMALL_STATE(1443)] = 51215, - [SMALL_STATE(1444)] = 51235, - [SMALL_STATE(1445)] = 51255, - [SMALL_STATE(1446)] = 51275, - [SMALL_STATE(1447)] = 51295, - [SMALL_STATE(1448)] = 51319, - [SMALL_STATE(1449)] = 51339, - [SMALL_STATE(1450)] = 51359, - [SMALL_STATE(1451)] = 51379, - [SMALL_STATE(1452)] = 51411, - [SMALL_STATE(1453)] = 51431, - [SMALL_STATE(1454)] = 51451, - [SMALL_STATE(1455)] = 51471, - [SMALL_STATE(1456)] = 51491, - [SMALL_STATE(1457)] = 51511, - [SMALL_STATE(1458)] = 51531, - [SMALL_STATE(1459)] = 51551, - [SMALL_STATE(1460)] = 51571, - [SMALL_STATE(1461)] = 51591, - [SMALL_STATE(1462)] = 51615, - [SMALL_STATE(1463)] = 51635, - [SMALL_STATE(1464)] = 51659, - [SMALL_STATE(1465)] = 51679, - [SMALL_STATE(1466)] = 51711, - [SMALL_STATE(1467)] = 51743, - [SMALL_STATE(1468)] = 51763, - [SMALL_STATE(1469)] = 51795, + [SMALL_STATE(1426)] = 50817, + [SMALL_STATE(1427)] = 50841, + [SMALL_STATE(1428)] = 50867, + [SMALL_STATE(1429)] = 50887, + [SMALL_STATE(1430)] = 50907, + [SMALL_STATE(1431)] = 50939, + [SMALL_STATE(1432)] = 50971, + [SMALL_STATE(1433)] = 50991, + [SMALL_STATE(1434)] = 51023, + [SMALL_STATE(1435)] = 51043, + [SMALL_STATE(1436)] = 51063, + [SMALL_STATE(1437)] = 51095, + [SMALL_STATE(1438)] = 51119, + [SMALL_STATE(1439)] = 51139, + [SMALL_STATE(1440)] = 51159, + [SMALL_STATE(1441)] = 51185, + [SMALL_STATE(1442)] = 51205, + [SMALL_STATE(1443)] = 51225, + [SMALL_STATE(1444)] = 51245, + [SMALL_STATE(1445)] = 51277, + [SMALL_STATE(1446)] = 51297, + [SMALL_STATE(1447)] = 51317, + [SMALL_STATE(1448)] = 51337, + [SMALL_STATE(1449)] = 51369, + [SMALL_STATE(1450)] = 51389, + [SMALL_STATE(1451)] = 51409, + [SMALL_STATE(1452)] = 51441, + [SMALL_STATE(1453)] = 51461, + [SMALL_STATE(1454)] = 51485, + [SMALL_STATE(1455)] = 51505, + [SMALL_STATE(1456)] = 51525, + [SMALL_STATE(1457)] = 51545, + [SMALL_STATE(1458)] = 51565, + [SMALL_STATE(1459)] = 51585, + [SMALL_STATE(1460)] = 51617, + [SMALL_STATE(1461)] = 51637, + [SMALL_STATE(1462)] = 51661, + [SMALL_STATE(1463)] = 51681, + [SMALL_STATE(1464)] = 51701, + [SMALL_STATE(1465)] = 51721, + [SMALL_STATE(1466)] = 51741, + [SMALL_STATE(1467)] = 51761, + [SMALL_STATE(1468)] = 51781, + [SMALL_STATE(1469)] = 51801, [SMALL_STATE(1470)] = 51821, - [SMALL_STATE(1471)] = 51844, - [SMALL_STATE(1472)] = 51869, - [SMALL_STATE(1473)] = 51896, - [SMALL_STATE(1474)] = 51929, - [SMALL_STATE(1475)] = 51962, - [SMALL_STATE(1476)] = 51991, - [SMALL_STATE(1477)] = 52014, - [SMALL_STATE(1478)] = 52047, - [SMALL_STATE(1479)] = 52080, - [SMALL_STATE(1480)] = 52111, + [SMALL_STATE(1471)] = 51852, + [SMALL_STATE(1472)] = 51885, + [SMALL_STATE(1473)] = 51918, + [SMALL_STATE(1474)] = 51941, + [SMALL_STATE(1475)] = 51970, + [SMALL_STATE(1476)] = 51993, + [SMALL_STATE(1477)] = 52016, + [SMALL_STATE(1478)] = 52049, + [SMALL_STATE(1479)] = 52076, + [SMALL_STATE(1480)] = 52101, [SMALL_STATE(1481)] = 52134, [SMALL_STATE(1482)] = 52156, [SMALL_STATE(1483)] = 52186, - [SMALL_STATE(1484)] = 52212, - [SMALL_STATE(1485)] = 52244, - [SMALL_STATE(1486)] = 52276, - [SMALL_STATE(1487)] = 52306, - [SMALL_STATE(1488)] = 52332, - [SMALL_STATE(1489)] = 52358, + [SMALL_STATE(1484)] = 52216, + [SMALL_STATE(1485)] = 52248, + [SMALL_STATE(1486)] = 52274, + [SMALL_STATE(1487)] = 52304, + [SMALL_STATE(1488)] = 52334, + [SMALL_STATE(1489)] = 52356, [SMALL_STATE(1490)] = 52388, - [SMALL_STATE(1491)] = 52418, - [SMALL_STATE(1492)] = 52448, - [SMALL_STATE(1493)] = 52478, - [SMALL_STATE(1494)] = 52504, - [SMALL_STATE(1495)] = 52530, - [SMALL_STATE(1496)] = 52560, - [SMALL_STATE(1497)] = 52586, - [SMALL_STATE(1498)] = 52616, - [SMALL_STATE(1499)] = 52638, - [SMALL_STATE(1500)] = 52668, - [SMALL_STATE(1501)] = 52694, - [SMALL_STATE(1502)] = 52724, - [SMALL_STATE(1503)] = 52754, - [SMALL_STATE(1504)] = 52784, - [SMALL_STATE(1505)] = 52814, - [SMALL_STATE(1506)] = 52844, - [SMALL_STATE(1507)] = 52874, - [SMALL_STATE(1508)] = 52906, - [SMALL_STATE(1509)] = 52936, - [SMALL_STATE(1510)] = 52966, - [SMALL_STATE(1511)] = 52992, - [SMALL_STATE(1512)] = 53022, - [SMALL_STATE(1513)] = 53052, - [SMALL_STATE(1514)] = 53074, - [SMALL_STATE(1515)] = 53096, - [SMALL_STATE(1516)] = 53128, - [SMALL_STATE(1517)] = 53158, - [SMALL_STATE(1518)] = 53188, - [SMALL_STATE(1519)] = 53210, - [SMALL_STATE(1520)] = 53236, - [SMALL_STATE(1521)] = 53258, - [SMALL_STATE(1522)] = 53284, + [SMALL_STATE(1491)] = 52420, + [SMALL_STATE(1492)] = 52450, + [SMALL_STATE(1493)] = 52480, + [SMALL_STATE(1494)] = 52506, + [SMALL_STATE(1495)] = 52532, + [SMALL_STATE(1496)] = 52562, + [SMALL_STATE(1497)] = 52592, + [SMALL_STATE(1498)] = 52618, + [SMALL_STATE(1499)] = 52648, + [SMALL_STATE(1500)] = 52678, + [SMALL_STATE(1501)] = 52708, + [SMALL_STATE(1502)] = 52738, + [SMALL_STATE(1503)] = 52764, + [SMALL_STATE(1504)] = 52794, + [SMALL_STATE(1505)] = 52820, + [SMALL_STATE(1506)] = 52852, + [SMALL_STATE(1507)] = 52882, + [SMALL_STATE(1508)] = 52904, + [SMALL_STATE(1509)] = 52934, + [SMALL_STATE(1510)] = 52956, + [SMALL_STATE(1511)] = 52978, + [SMALL_STATE(1512)] = 53000, + [SMALL_STATE(1513)] = 53030, + [SMALL_STATE(1514)] = 53060, + [SMALL_STATE(1515)] = 53090, + [SMALL_STATE(1516)] = 53116, + [SMALL_STATE(1517)] = 53142, + [SMALL_STATE(1518)] = 53168, + [SMALL_STATE(1519)] = 53198, + [SMALL_STATE(1520)] = 53224, + [SMALL_STATE(1521)] = 53250, + [SMALL_STATE(1522)] = 53280, [SMALL_STATE(1523)] = 53310, - [SMALL_STATE(1524)] = 53329, - [SMALL_STATE(1525)] = 53356, - [SMALL_STATE(1526)] = 53375, - [SMALL_STATE(1527)] = 53402, - [SMALL_STATE(1528)] = 53421, - [SMALL_STATE(1529)] = 53440, - [SMALL_STATE(1530)] = 53469, + [SMALL_STATE(1524)] = 53339, + [SMALL_STATE(1525)] = 53366, + [SMALL_STATE(1526)] = 53385, + [SMALL_STATE(1527)] = 53404, + [SMALL_STATE(1528)] = 53431, + [SMALL_STATE(1529)] = 53450, + [SMALL_STATE(1530)] = 53477, [SMALL_STATE(1531)] = 53496, - [SMALL_STATE(1532)] = 53519, - [SMALL_STATE(1533)] = 53548, - [SMALL_STATE(1534)] = 53575, - [SMALL_STATE(1535)] = 53594, - [SMALL_STATE(1536)] = 53621, - [SMALL_STATE(1537)] = 53648, - [SMALL_STATE(1538)] = 53677, - [SMALL_STATE(1539)] = 53704, - [SMALL_STATE(1540)] = 53729, - [SMALL_STATE(1541)] = 53756, - [SMALL_STATE(1542)] = 53775, - [SMALL_STATE(1543)] = 53802, - [SMALL_STATE(1544)] = 53817, - [SMALL_STATE(1545)] = 53846, - [SMALL_STATE(1546)] = 53869, - [SMALL_STATE(1547)] = 53892, - [SMALL_STATE(1548)] = 53911, - [SMALL_STATE(1549)] = 53932, - [SMALL_STATE(1550)] = 53955, - [SMALL_STATE(1551)] = 53974, - [SMALL_STATE(1552)] = 53995, - [SMALL_STATE(1553)] = 54022, - [SMALL_STATE(1554)] = 54051, - [SMALL_STATE(1555)] = 54078, - [SMALL_STATE(1556)] = 54105, - [SMALL_STATE(1557)] = 54132, - [SMALL_STATE(1558)] = 54151, + [SMALL_STATE(1532)] = 53515, + [SMALL_STATE(1533)] = 53542, + [SMALL_STATE(1534)] = 53561, + [SMALL_STATE(1535)] = 53588, + [SMALL_STATE(1536)] = 53615, + [SMALL_STATE(1537)] = 53634, + [SMALL_STATE(1538)] = 53663, + [SMALL_STATE(1539)] = 53688, + [SMALL_STATE(1540)] = 53707, + [SMALL_STATE(1541)] = 53726, + [SMALL_STATE(1542)] = 53753, + [SMALL_STATE(1543)] = 53768, + [SMALL_STATE(1544)] = 53795, + [SMALL_STATE(1545)] = 53814, + [SMALL_STATE(1546)] = 53841, + [SMALL_STATE(1547)] = 53870, + [SMALL_STATE(1548)] = 53897, + [SMALL_STATE(1549)] = 53920, + [SMALL_STATE(1550)] = 53949, + [SMALL_STATE(1551)] = 53976, + [SMALL_STATE(1552)] = 54005, + [SMALL_STATE(1553)] = 54032, + [SMALL_STATE(1554)] = 54059, + [SMALL_STATE(1555)] = 54080, + [SMALL_STATE(1556)] = 54107, + [SMALL_STATE(1557)] = 54130, + [SMALL_STATE(1558)] = 54153, [SMALL_STATE(1559)] = 54180, - [SMALL_STATE(1560)] = 54199, - [SMALL_STATE(1561)] = 54218, - [SMALL_STATE(1562)] = 54245, + [SMALL_STATE(1560)] = 54201, + [SMALL_STATE(1561)] = 54230, + [SMALL_STATE(1562)] = 54253, [SMALL_STATE(1563)] = 54272, - [SMALL_STATE(1564)] = 54286, - [SMALL_STATE(1565)] = 54312, - [SMALL_STATE(1566)] = 54338, - [SMALL_STATE(1567)] = 54364, - [SMALL_STATE(1568)] = 54390, - [SMALL_STATE(1569)] = 54406, - [SMALL_STATE(1570)] = 54432, - [SMALL_STATE(1571)] = 54448, - [SMALL_STATE(1572)] = 54474, - [SMALL_STATE(1573)] = 54500, - [SMALL_STATE(1574)] = 54526, - [SMALL_STATE(1575)] = 54550, - [SMALL_STATE(1576)] = 54576, - [SMALL_STATE(1577)] = 54590, - [SMALL_STATE(1578)] = 54616, - [SMALL_STATE(1579)] = 54632, - [SMALL_STATE(1580)] = 54656, - [SMALL_STATE(1581)] = 54682, - [SMALL_STATE(1582)] = 54708, - [SMALL_STATE(1583)] = 54734, - [SMALL_STATE(1584)] = 54756, - [SMALL_STATE(1585)] = 54770, - [SMALL_STATE(1586)] = 54786, - [SMALL_STATE(1587)] = 54812, - [SMALL_STATE(1588)] = 54836, - [SMALL_STATE(1589)] = 54862, - [SMALL_STATE(1590)] = 54888, - [SMALL_STATE(1591)] = 54902, - [SMALL_STATE(1592)] = 54926, - [SMALL_STATE(1593)] = 54940, - [SMALL_STATE(1594)] = 54954, - [SMALL_STATE(1595)] = 54970, - [SMALL_STATE(1596)] = 54986, - [SMALL_STATE(1597)] = 55012, - [SMALL_STATE(1598)] = 55034, - [SMALL_STATE(1599)] = 55060, - [SMALL_STATE(1600)] = 55086, - [SMALL_STATE(1601)] = 55102, - [SMALL_STATE(1602)] = 55128, - [SMALL_STATE(1603)] = 55154, - [SMALL_STATE(1604)] = 55170, - [SMALL_STATE(1605)] = 55196, - [SMALL_STATE(1606)] = 55220, - [SMALL_STATE(1607)] = 55246, - [SMALL_STATE(1608)] = 55260, + [SMALL_STATE(1564)] = 54298, + [SMALL_STATE(1565)] = 54322, + [SMALL_STATE(1566)] = 54348, + [SMALL_STATE(1567)] = 54374, + [SMALL_STATE(1568)] = 54400, + [SMALL_STATE(1569)] = 54426, + [SMALL_STATE(1570)] = 54452, + [SMALL_STATE(1571)] = 54478, + [SMALL_STATE(1572)] = 54504, + [SMALL_STATE(1573)] = 54530, + [SMALL_STATE(1574)] = 54556, + [SMALL_STATE(1575)] = 54582, + [SMALL_STATE(1576)] = 54608, + [SMALL_STATE(1577)] = 54634, + [SMALL_STATE(1578)] = 54660, + [SMALL_STATE(1579)] = 54686, + [SMALL_STATE(1580)] = 54710, + [SMALL_STATE(1581)] = 54736, + [SMALL_STATE(1582)] = 54762, + [SMALL_STATE(1583)] = 54776, + [SMALL_STATE(1584)] = 54792, + [SMALL_STATE(1585)] = 54818, + [SMALL_STATE(1586)] = 54844, + [SMALL_STATE(1587)] = 54870, + [SMALL_STATE(1588)] = 54886, + [SMALL_STATE(1589)] = 54902, + [SMALL_STATE(1590)] = 54916, + [SMALL_STATE(1591)] = 54930, + [SMALL_STATE(1592)] = 54944, + [SMALL_STATE(1593)] = 54958, + [SMALL_STATE(1594)] = 54984, + [SMALL_STATE(1595)] = 55000, + [SMALL_STATE(1596)] = 55024, + [SMALL_STATE(1597)] = 55038, + [SMALL_STATE(1598)] = 55064, + [SMALL_STATE(1599)] = 55088, + [SMALL_STATE(1600)] = 55110, + [SMALL_STATE(1601)] = 55134, + [SMALL_STATE(1602)] = 55150, + [SMALL_STATE(1603)] = 55176, + [SMALL_STATE(1604)] = 55202, + [SMALL_STATE(1605)] = 55218, + [SMALL_STATE(1606)] = 55234, + [SMALL_STATE(1607)] = 55250, + [SMALL_STATE(1608)] = 55272, [SMALL_STATE(1609)] = 55286, [SMALL_STATE(1610)] = 55309, [SMALL_STATE(1611)] = 55332, [SMALL_STATE(1612)] = 55355, [SMALL_STATE(1613)] = 55378, - [SMALL_STATE(1614)] = 55401, - [SMALL_STATE(1615)] = 55424, - [SMALL_STATE(1616)] = 55447, - [SMALL_STATE(1617)] = 55466, - [SMALL_STATE(1618)] = 55483, - [SMALL_STATE(1619)] = 55506, - [SMALL_STATE(1620)] = 55529, - [SMALL_STATE(1621)] = 55546, - [SMALL_STATE(1622)] = 55569, - [SMALL_STATE(1623)] = 55592, - [SMALL_STATE(1624)] = 55613, + [SMALL_STATE(1614)] = 55395, + [SMALL_STATE(1615)] = 55418, + [SMALL_STATE(1616)] = 55441, + [SMALL_STATE(1617)] = 55464, + [SMALL_STATE(1618)] = 55487, + [SMALL_STATE(1619)] = 55510, + [SMALL_STATE(1620)] = 55533, + [SMALL_STATE(1621)] = 55556, + [SMALL_STATE(1622)] = 55579, + [SMALL_STATE(1623)] = 55596, + [SMALL_STATE(1624)] = 55617, [SMALL_STATE(1625)] = 55636, - [SMALL_STATE(1626)] = 55653, - [SMALL_STATE(1627)] = 55676, - [SMALL_STATE(1628)] = 55699, - [SMALL_STATE(1629)] = 55716, - [SMALL_STATE(1630)] = 55733, - [SMALL_STATE(1631)] = 55756, - [SMALL_STATE(1632)] = 55779, - [SMALL_STATE(1633)] = 55802, - [SMALL_STATE(1634)] = 55819, - [SMALL_STATE(1635)] = 55842, - [SMALL_STATE(1636)] = 55865, - [SMALL_STATE(1637)] = 55888, - [SMALL_STATE(1638)] = 55905, - [SMALL_STATE(1639)] = 55926, - [SMALL_STATE(1640)] = 55949, - [SMALL_STATE(1641)] = 55970, - [SMALL_STATE(1642)] = 55993, - [SMALL_STATE(1643)] = 56010, - [SMALL_STATE(1644)] = 56031, - [SMALL_STATE(1645)] = 56054, - [SMALL_STATE(1646)] = 56075, - [SMALL_STATE(1647)] = 56094, - [SMALL_STATE(1648)] = 56117, - [SMALL_STATE(1649)] = 56140, - [SMALL_STATE(1650)] = 56163, - [SMALL_STATE(1651)] = 56186, - [SMALL_STATE(1652)] = 56209, - [SMALL_STATE(1653)] = 56232, - [SMALL_STATE(1654)] = 56255, - [SMALL_STATE(1655)] = 56278, - [SMALL_STATE(1656)] = 56301, - [SMALL_STATE(1657)] = 56318, - [SMALL_STATE(1658)] = 56335, - [SMALL_STATE(1659)] = 56354, - [SMALL_STATE(1660)] = 56371, - [SMALL_STATE(1661)] = 56394, - [SMALL_STATE(1662)] = 56411, - [SMALL_STATE(1663)] = 56434, - [SMALL_STATE(1664)] = 56457, - [SMALL_STATE(1665)] = 56480, - [SMALL_STATE(1666)] = 56503, - [SMALL_STATE(1667)] = 56526, - [SMALL_STATE(1668)] = 56549, + [SMALL_STATE(1626)] = 55659, + [SMALL_STATE(1627)] = 55680, + [SMALL_STATE(1628)] = 55697, + [SMALL_STATE(1629)] = 55720, + [SMALL_STATE(1630)] = 55741, + [SMALL_STATE(1631)] = 55762, + [SMALL_STATE(1632)] = 55785, + [SMALL_STATE(1633)] = 55808, + [SMALL_STATE(1634)] = 55823, + [SMALL_STATE(1635)] = 55840, + [SMALL_STATE(1636)] = 55857, + [SMALL_STATE(1637)] = 55880, + [SMALL_STATE(1638)] = 55897, + [SMALL_STATE(1639)] = 55920, + [SMALL_STATE(1640)] = 55943, + [SMALL_STATE(1641)] = 55960, + [SMALL_STATE(1642)] = 55977, + [SMALL_STATE(1643)] = 55996, + [SMALL_STATE(1644)] = 56019, + [SMALL_STATE(1645)] = 56036, + [SMALL_STATE(1646)] = 56059, + [SMALL_STATE(1647)] = 56082, + [SMALL_STATE(1648)] = 56105, + [SMALL_STATE(1649)] = 56128, + [SMALL_STATE(1650)] = 56151, + [SMALL_STATE(1651)] = 56174, + [SMALL_STATE(1652)] = 56197, + [SMALL_STATE(1653)] = 56220, + [SMALL_STATE(1654)] = 56237, + [SMALL_STATE(1655)] = 56260, + [SMALL_STATE(1656)] = 56283, + [SMALL_STATE(1657)] = 56300, + [SMALL_STATE(1658)] = 56323, + [SMALL_STATE(1659)] = 56346, + [SMALL_STATE(1660)] = 56369, + [SMALL_STATE(1661)] = 56392, + [SMALL_STATE(1662)] = 56409, + [SMALL_STATE(1663)] = 56432, + [SMALL_STATE(1664)] = 56455, + [SMALL_STATE(1665)] = 56472, + [SMALL_STATE(1666)] = 56495, + [SMALL_STATE(1667)] = 56518, + [SMALL_STATE(1668)] = 56541, [SMALL_STATE(1669)] = 56564, [SMALL_STATE(1670)] = 56587, [SMALL_STATE(1671)] = 56610, - [SMALL_STATE(1672)] = 56633, - [SMALL_STATE(1673)] = 56656, - [SMALL_STATE(1674)] = 56671, - [SMALL_STATE(1675)] = 56694, - [SMALL_STATE(1676)] = 56711, - [SMALL_STATE(1677)] = 56732, - [SMALL_STATE(1678)] = 56755, - [SMALL_STATE(1679)] = 56778, - [SMALL_STATE(1680)] = 56801, - [SMALL_STATE(1681)] = 56824, - [SMALL_STATE(1682)] = 56847, - [SMALL_STATE(1683)] = 56870, - [SMALL_STATE(1684)] = 56893, - [SMALL_STATE(1685)] = 56916, - [SMALL_STATE(1686)] = 56939, - [SMALL_STATE(1687)] = 56962, - [SMALL_STATE(1688)] = 56985, - [SMALL_STATE(1689)] = 57008, - [SMALL_STATE(1690)] = 57031, - [SMALL_STATE(1691)] = 57054, - [SMALL_STATE(1692)] = 57077, - [SMALL_STATE(1693)] = 57100, - [SMALL_STATE(1694)] = 57117, - [SMALL_STATE(1695)] = 57140, - [SMALL_STATE(1696)] = 57163, - [SMALL_STATE(1697)] = 57180, - [SMALL_STATE(1698)] = 57203, - [SMALL_STATE(1699)] = 57226, - [SMALL_STATE(1700)] = 57249, - [SMALL_STATE(1701)] = 57272, - [SMALL_STATE(1702)] = 57295, - [SMALL_STATE(1703)] = 57318, + [SMALL_STATE(1672)] = 56629, + [SMALL_STATE(1673)] = 56652, + [SMALL_STATE(1674)] = 56675, + [SMALL_STATE(1675)] = 56698, + [SMALL_STATE(1676)] = 56721, + [SMALL_STATE(1677)] = 56744, + [SMALL_STATE(1678)] = 56767, + [SMALL_STATE(1679)] = 56788, + [SMALL_STATE(1680)] = 56811, + [SMALL_STATE(1681)] = 56834, + [SMALL_STATE(1682)] = 56857, + [SMALL_STATE(1683)] = 56880, + [SMALL_STATE(1684)] = 56903, + [SMALL_STATE(1685)] = 56926, + [SMALL_STATE(1686)] = 56949, + [SMALL_STATE(1687)] = 56972, + [SMALL_STATE(1688)] = 56995, + [SMALL_STATE(1689)] = 57018, + [SMALL_STATE(1690)] = 57041, + [SMALL_STATE(1691)] = 57064, + [SMALL_STATE(1692)] = 57081, + [SMALL_STATE(1693)] = 57104, + [SMALL_STATE(1694)] = 57127, + [SMALL_STATE(1695)] = 57150, + [SMALL_STATE(1696)] = 57173, + [SMALL_STATE(1697)] = 57190, + [SMALL_STATE(1698)] = 57213, + [SMALL_STATE(1699)] = 57236, + [SMALL_STATE(1700)] = 57259, + [SMALL_STATE(1701)] = 57282, + [SMALL_STATE(1702)] = 57297, + [SMALL_STATE(1703)] = 57320, [SMALL_STATE(1704)] = 57341, [SMALL_STATE(1705)] = 57364, - [SMALL_STATE(1706)] = 57380, - [SMALL_STATE(1707)] = 57394, - [SMALL_STATE(1708)] = 57414, + [SMALL_STATE(1706)] = 57376, + [SMALL_STATE(1707)] = 57396, + [SMALL_STATE(1708)] = 57408, [SMALL_STATE(1709)] = 57426, - [SMALL_STATE(1710)] = 57446, + [SMALL_STATE(1710)] = 57444, [SMALL_STATE(1711)] = 57460, - [SMALL_STATE(1712)] = 57478, - [SMALL_STATE(1713)] = 57490, - [SMALL_STATE(1714)] = 57502, - [SMALL_STATE(1715)] = 57514, - [SMALL_STATE(1716)] = 57526, - [SMALL_STATE(1717)] = 57546, - [SMALL_STATE(1718)] = 57558, - [SMALL_STATE(1719)] = 57570, - [SMALL_STATE(1720)] = 57586, - [SMALL_STATE(1721)] = 57598, - [SMALL_STATE(1722)] = 57616, - [SMALL_STATE(1723)] = 57628, - [SMALL_STATE(1724)] = 57644, - [SMALL_STATE(1725)] = 57664, - [SMALL_STATE(1726)] = 57676, - [SMALL_STATE(1727)] = 57696, - [SMALL_STATE(1728)] = 57708, - [SMALL_STATE(1729)] = 57726, - [SMALL_STATE(1730)] = 57738, - [SMALL_STATE(1731)] = 57750, - [SMALL_STATE(1732)] = 57768, - [SMALL_STATE(1733)] = 57786, - [SMALL_STATE(1734)] = 57804, - [SMALL_STATE(1735)] = 57820, - [SMALL_STATE(1736)] = 57836, - [SMALL_STATE(1737)] = 57852, - [SMALL_STATE(1738)] = 57868, - [SMALL_STATE(1739)] = 57880, - [SMALL_STATE(1740)] = 57896, + [SMALL_STATE(1712)] = 57480, + [SMALL_STATE(1713)] = 57498, + [SMALL_STATE(1714)] = 57510, + [SMALL_STATE(1715)] = 57526, + [SMALL_STATE(1716)] = 57542, + [SMALL_STATE(1717)] = 57560, + [SMALL_STATE(1718)] = 57576, + [SMALL_STATE(1719)] = 57588, + [SMALL_STATE(1720)] = 57604, + [SMALL_STATE(1721)] = 57620, + [SMALL_STATE(1722)] = 57638, + [SMALL_STATE(1723)] = 57656, + [SMALL_STATE(1724)] = 57672, + [SMALL_STATE(1725)] = 57688, + [SMALL_STATE(1726)] = 57708, + [SMALL_STATE(1727)] = 57726, + [SMALL_STATE(1728)] = 57746, + [SMALL_STATE(1729)] = 57758, + [SMALL_STATE(1730)] = 57772, + [SMALL_STATE(1731)] = 57784, + [SMALL_STATE(1732)] = 57796, + [SMALL_STATE(1733)] = 57808, + [SMALL_STATE(1734)] = 57820, + [SMALL_STATE(1735)] = 57836, + [SMALL_STATE(1736)] = 57848, + [SMALL_STATE(1737)] = 57860, + [SMALL_STATE(1738)] = 57876, + [SMALL_STATE(1739)] = 57888, + [SMALL_STATE(1740)] = 57902, [SMALL_STATE(1741)] = 57914, - [SMALL_STATE(1742)] = 57926, - [SMALL_STATE(1743)] = 57944, - [SMALL_STATE(1744)] = 57956, - [SMALL_STATE(1745)] = 57968, - [SMALL_STATE(1746)] = 57984, - [SMALL_STATE(1747)] = 58000, - [SMALL_STATE(1748)] = 58016, + [SMALL_STATE(1742)] = 57934, + [SMALL_STATE(1743)] = 57948, + [SMALL_STATE(1744)] = 57966, + [SMALL_STATE(1745)] = 57978, + [SMALL_STATE(1746)] = 57990, + [SMALL_STATE(1747)] = 58002, + [SMALL_STATE(1748)] = 58014, [SMALL_STATE(1749)] = 58030, [SMALL_STATE(1750)] = 58046, - [SMALL_STATE(1751)] = 58064, - [SMALL_STATE(1752)] = 58082, - [SMALL_STATE(1753)] = 58094, - [SMALL_STATE(1754)] = 58106, - [SMALL_STATE(1755)] = 58118, - [SMALL_STATE(1756)] = 58138, + [SMALL_STATE(1751)] = 58058, + [SMALL_STATE(1752)] = 58070, + [SMALL_STATE(1753)] = 58082, + [SMALL_STATE(1754)] = 58100, + [SMALL_STATE(1755)] = 58112, + [SMALL_STATE(1756)] = 58130, [SMALL_STATE(1757)] = 58150, - [SMALL_STATE(1758)] = 58165, - [SMALL_STATE(1759)] = 58180, - [SMALL_STATE(1760)] = 58197, - [SMALL_STATE(1761)] = 58214, + [SMALL_STATE(1758)] = 58167, + [SMALL_STATE(1759)] = 58182, + [SMALL_STATE(1760)] = 58199, + [SMALL_STATE(1761)] = 58216, [SMALL_STATE(1762)] = 58231, [SMALL_STATE(1763)] = 58248, - [SMALL_STATE(1764)] = 58263, - [SMALL_STATE(1765)] = 58280, + [SMALL_STATE(1764)] = 58265, + [SMALL_STATE(1765)] = 58282, [SMALL_STATE(1766)] = 58297, - [SMALL_STATE(1767)] = 58314, - [SMALL_STATE(1768)] = 58331, + [SMALL_STATE(1767)] = 58312, + [SMALL_STATE(1768)] = 58329, [SMALL_STATE(1769)] = 58346, [SMALL_STATE(1770)] = 58363, [SMALL_STATE(1771)] = 58380, [SMALL_STATE(1772)] = 58397, [SMALL_STATE(1773)] = 58414, - [SMALL_STATE(1774)] = 58429, - [SMALL_STATE(1775)] = 58446, + [SMALL_STATE(1774)] = 58431, + [SMALL_STATE(1775)] = 58448, [SMALL_STATE(1776)] = 58463, [SMALL_STATE(1777)] = 58480, [SMALL_STATE(1778)] = 58497, [SMALL_STATE(1779)] = 58514, - [SMALL_STATE(1780)] = 58527, - [SMALL_STATE(1781)] = 58544, - [SMALL_STATE(1782)] = 58561, - [SMALL_STATE(1783)] = 58578, - [SMALL_STATE(1784)] = 58595, - [SMALL_STATE(1785)] = 58612, - [SMALL_STATE(1786)] = 58629, + [SMALL_STATE(1780)] = 58531, + [SMALL_STATE(1781)] = 58548, + [SMALL_STATE(1782)] = 58565, + [SMALL_STATE(1783)] = 58582, + [SMALL_STATE(1784)] = 58599, + [SMALL_STATE(1785)] = 58614, + [SMALL_STATE(1786)] = 58631, [SMALL_STATE(1787)] = 58646, - [SMALL_STATE(1788)] = 58663, - [SMALL_STATE(1789)] = 58680, - [SMALL_STATE(1790)] = 58697, - [SMALL_STATE(1791)] = 58714, - [SMALL_STATE(1792)] = 58731, - [SMALL_STATE(1793)] = 58748, - [SMALL_STATE(1794)] = 58765, - [SMALL_STATE(1795)] = 58778, - [SMALL_STATE(1796)] = 58795, - [SMALL_STATE(1797)] = 58812, - [SMALL_STATE(1798)] = 58829, - [SMALL_STATE(1799)] = 58844, - [SMALL_STATE(1800)] = 58861, - [SMALL_STATE(1801)] = 58878, - [SMALL_STATE(1802)] = 58895, - [SMALL_STATE(1803)] = 58912, + [SMALL_STATE(1788)] = 58661, + [SMALL_STATE(1789)] = 58676, + [SMALL_STATE(1790)] = 58691, + [SMALL_STATE(1791)] = 58708, + [SMALL_STATE(1792)] = 58725, + [SMALL_STATE(1793)] = 58740, + [SMALL_STATE(1794)] = 58757, + [SMALL_STATE(1795)] = 58774, + [SMALL_STATE(1796)] = 58791, + [SMALL_STATE(1797)] = 58808, + [SMALL_STATE(1798)] = 58825, + [SMALL_STATE(1799)] = 58842, + [SMALL_STATE(1800)] = 58859, + [SMALL_STATE(1801)] = 58876, + [SMALL_STATE(1802)] = 58893, + [SMALL_STATE(1803)] = 58910, [SMALL_STATE(1804)] = 58927, [SMALL_STATE(1805)] = 58942, - [SMALL_STATE(1806)] = 58959, - [SMALL_STATE(1807)] = 58974, - [SMALL_STATE(1808)] = 58991, - [SMALL_STATE(1809)] = 59008, - [SMALL_STATE(1810)] = 59021, - [SMALL_STATE(1811)] = 59036, - [SMALL_STATE(1812)] = 59049, - [SMALL_STATE(1813)] = 59066, - [SMALL_STATE(1814)] = 59081, + [SMALL_STATE(1806)] = 58957, + [SMALL_STATE(1807)] = 58972, + [SMALL_STATE(1808)] = 58987, + [SMALL_STATE(1809)] = 59002, + [SMALL_STATE(1810)] = 59015, + [SMALL_STATE(1811)] = 59030, + [SMALL_STATE(1812)] = 59047, + [SMALL_STATE(1813)] = 59062, + [SMALL_STATE(1814)] = 59079, [SMALL_STATE(1815)] = 59096, - [SMALL_STATE(1816)] = 59111, - [SMALL_STATE(1817)] = 59128, - [SMALL_STATE(1818)] = 59145, - [SMALL_STATE(1819)] = 59162, - [SMALL_STATE(1820)] = 59177, - [SMALL_STATE(1821)] = 59194, - [SMALL_STATE(1822)] = 59211, - [SMALL_STATE(1823)] = 59226, - [SMALL_STATE(1824)] = 59243, - [SMALL_STATE(1825)] = 59260, - [SMALL_STATE(1826)] = 59277, - [SMALL_STATE(1827)] = 59292, - [SMALL_STATE(1828)] = 59309, - [SMALL_STATE(1829)] = 59324, - [SMALL_STATE(1830)] = 59337, - [SMALL_STATE(1831)] = 59350, - [SMALL_STATE(1832)] = 59367, - [SMALL_STATE(1833)] = 59382, - [SMALL_STATE(1834)] = 59397, - [SMALL_STATE(1835)] = 59410, - [SMALL_STATE(1836)] = 59425, - [SMALL_STATE(1837)] = 59440, - [SMALL_STATE(1838)] = 59457, - [SMALL_STATE(1839)] = 59474, - [SMALL_STATE(1840)] = 59489, - [SMALL_STATE(1841)] = 59506, - [SMALL_STATE(1842)] = 59523, - [SMALL_STATE(1843)] = 59540, - [SMALL_STATE(1844)] = 59555, - [SMALL_STATE(1845)] = 59570, - [SMALL_STATE(1846)] = 59585, - [SMALL_STATE(1847)] = 59602, - [SMALL_STATE(1848)] = 59619, - [SMALL_STATE(1849)] = 59636, - [SMALL_STATE(1850)] = 59651, - [SMALL_STATE(1851)] = 59668, - [SMALL_STATE(1852)] = 59681, - [SMALL_STATE(1853)] = 59698, - [SMALL_STATE(1854)] = 59711, - [SMALL_STATE(1855)] = 59726, - [SMALL_STATE(1856)] = 59743, - [SMALL_STATE(1857)] = 59760, - [SMALL_STATE(1858)] = 59775, - [SMALL_STATE(1859)] = 59788, - [SMALL_STATE(1860)] = 59805, + [SMALL_STATE(1816)] = 59113, + [SMALL_STATE(1817)] = 59126, + [SMALL_STATE(1818)] = 59143, + [SMALL_STATE(1819)] = 59160, + [SMALL_STATE(1820)] = 59175, + [SMALL_STATE(1821)] = 59190, + [SMALL_STATE(1822)] = 59203, + [SMALL_STATE(1823)] = 59218, + [SMALL_STATE(1824)] = 59233, + [SMALL_STATE(1825)] = 59250, + [SMALL_STATE(1826)] = 59267, + [SMALL_STATE(1827)] = 59282, + [SMALL_STATE(1828)] = 59295, + [SMALL_STATE(1829)] = 59312, + [SMALL_STATE(1830)] = 59329, + [SMALL_STATE(1831)] = 59342, + [SMALL_STATE(1832)] = 59357, + [SMALL_STATE(1833)] = 59374, + [SMALL_STATE(1834)] = 59387, + [SMALL_STATE(1835)] = 59404, + [SMALL_STATE(1836)] = 59421, + [SMALL_STATE(1837)] = 59438, + [SMALL_STATE(1838)] = 59453, + [SMALL_STATE(1839)] = 59470, + [SMALL_STATE(1840)] = 59485, + [SMALL_STATE(1841)] = 59502, + [SMALL_STATE(1842)] = 59517, + [SMALL_STATE(1843)] = 59532, + [SMALL_STATE(1844)] = 59549, + [SMALL_STATE(1845)] = 59562, + [SMALL_STATE(1846)] = 59579, + [SMALL_STATE(1847)] = 59596, + [SMALL_STATE(1848)] = 59613, + [SMALL_STATE(1849)] = 59626, + [SMALL_STATE(1850)] = 59639, + [SMALL_STATE(1851)] = 59656, + [SMALL_STATE(1852)] = 59673, + [SMALL_STATE(1853)] = 59690, + [SMALL_STATE(1854)] = 59707, + [SMALL_STATE(1855)] = 59720, + [SMALL_STATE(1856)] = 59737, + [SMALL_STATE(1857)] = 59752, + [SMALL_STATE(1858)] = 59769, + [SMALL_STATE(1859)] = 59786, + [SMALL_STATE(1860)] = 59803, [SMALL_STATE(1861)] = 59820, [SMALL_STATE(1862)] = 59837, [SMALL_STATE(1863)] = 59851, [SMALL_STATE(1864)] = 59865, - [SMALL_STATE(1865)] = 59875, - [SMALL_STATE(1866)] = 59889, - [SMALL_STATE(1867)] = 59903, - [SMALL_STATE(1868)] = 59917, - [SMALL_STATE(1869)] = 59931, + [SMALL_STATE(1865)] = 59879, + [SMALL_STATE(1866)] = 59893, + [SMALL_STATE(1867)] = 59907, + [SMALL_STATE(1868)] = 59921, + [SMALL_STATE(1869)] = 59935, [SMALL_STATE(1870)] = 59945, [SMALL_STATE(1871)] = 59959, [SMALL_STATE(1872)] = 59969, - [SMALL_STATE(1873)] = 59983, - [SMALL_STATE(1874)] = 59997, - [SMALL_STATE(1875)] = 60007, - [SMALL_STATE(1876)] = 60021, - [SMALL_STATE(1877)] = 60035, - [SMALL_STATE(1878)] = 60049, - [SMALL_STATE(1879)] = 60063, - [SMALL_STATE(1880)] = 60077, - [SMALL_STATE(1881)] = 60091, - [SMALL_STATE(1882)] = 60105, - [SMALL_STATE(1883)] = 60119, - [SMALL_STATE(1884)] = 60131, + [SMALL_STATE(1873)] = 59979, + [SMALL_STATE(1874)] = 59989, + [SMALL_STATE(1875)] = 60003, + [SMALL_STATE(1876)] = 60017, + [SMALL_STATE(1877)] = 60031, + [SMALL_STATE(1878)] = 60045, + [SMALL_STATE(1879)] = 60059, + [SMALL_STATE(1880)] = 60073, + [SMALL_STATE(1881)] = 60087, + [SMALL_STATE(1882)] = 60101, + [SMALL_STATE(1883)] = 60115, + [SMALL_STATE(1884)] = 60129, [SMALL_STATE(1885)] = 60143, - [SMALL_STATE(1886)] = 60157, - [SMALL_STATE(1887)] = 60169, - [SMALL_STATE(1888)] = 60183, - [SMALL_STATE(1889)] = 60197, - [SMALL_STATE(1890)] = 60207, - [SMALL_STATE(1891)] = 60219, - [SMALL_STATE(1892)] = 60233, - [SMALL_STATE(1893)] = 60243, - [SMALL_STATE(1894)] = 60253, - [SMALL_STATE(1895)] = 60267, - [SMALL_STATE(1896)] = 60281, - [SMALL_STATE(1897)] = 60295, - [SMALL_STATE(1898)] = 60309, - [SMALL_STATE(1899)] = 60323, - [SMALL_STATE(1900)] = 60333, - [SMALL_STATE(1901)] = 60343, - [SMALL_STATE(1902)] = 60357, - [SMALL_STATE(1903)] = 60371, - [SMALL_STATE(1904)] = 60383, - [SMALL_STATE(1905)] = 60393, - [SMALL_STATE(1906)] = 60403, - [SMALL_STATE(1907)] = 60417, - [SMALL_STATE(1908)] = 60427, - [SMALL_STATE(1909)] = 60441, - [SMALL_STATE(1910)] = 60455, - [SMALL_STATE(1911)] = 60469, - [SMALL_STATE(1912)] = 60483, - [SMALL_STATE(1913)] = 60497, - [SMALL_STATE(1914)] = 60511, - [SMALL_STATE(1915)] = 60521, - [SMALL_STATE(1916)] = 60535, - [SMALL_STATE(1917)] = 60549, + [SMALL_STATE(1886)] = 60153, + [SMALL_STATE(1887)] = 60167, + [SMALL_STATE(1888)] = 60177, + [SMALL_STATE(1889)] = 60191, + [SMALL_STATE(1890)] = 60201, + [SMALL_STATE(1891)] = 60211, + [SMALL_STATE(1892)] = 60225, + [SMALL_STATE(1893)] = 60239, + [SMALL_STATE(1894)] = 60249, + [SMALL_STATE(1895)] = 60261, + [SMALL_STATE(1896)] = 60275, + [SMALL_STATE(1897)] = 60285, + [SMALL_STATE(1898)] = 60299, + [SMALL_STATE(1899)] = 60309, + [SMALL_STATE(1900)] = 60323, + [SMALL_STATE(1901)] = 60337, + [SMALL_STATE(1902)] = 60351, + [SMALL_STATE(1903)] = 60365, + [SMALL_STATE(1904)] = 60379, + [SMALL_STATE(1905)] = 60389, + [SMALL_STATE(1906)] = 60401, + [SMALL_STATE(1907)] = 60415, + [SMALL_STATE(1908)] = 60425, + [SMALL_STATE(1909)] = 60437, + [SMALL_STATE(1910)] = 60451, + [SMALL_STATE(1911)] = 60463, + [SMALL_STATE(1912)] = 60477, + [SMALL_STATE(1913)] = 60491, + [SMALL_STATE(1914)] = 60505, + [SMALL_STATE(1915)] = 60519, + [SMALL_STATE(1916)] = 60533, + [SMALL_STATE(1917)] = 60547, [SMALL_STATE(1918)] = 60561, [SMALL_STATE(1919)] = 60575, [SMALL_STATE(1920)] = 60589, - [SMALL_STATE(1921)] = 60603, + [SMALL_STATE(1921)] = 60601, [SMALL_STATE(1922)] = 60613, [SMALL_STATE(1923)] = 60627, - [SMALL_STATE(1924)] = 60641, - [SMALL_STATE(1925)] = 60655, - [SMALL_STATE(1926)] = 60669, - [SMALL_STATE(1927)] = 60683, - [SMALL_STATE(1928)] = 60697, - [SMALL_STATE(1929)] = 60711, - [SMALL_STATE(1930)] = 60723, - [SMALL_STATE(1931)] = 60737, - [SMALL_STATE(1932)] = 60751, - [SMALL_STATE(1933)] = 60765, - [SMALL_STATE(1934)] = 60777, - [SMALL_STATE(1935)] = 60791, - [SMALL_STATE(1936)] = 60805, - [SMALL_STATE(1937)] = 60819, - [SMALL_STATE(1938)] = 60833, - [SMALL_STATE(1939)] = 60847, - [SMALL_STATE(1940)] = 60859, - [SMALL_STATE(1941)] = 60873, - [SMALL_STATE(1942)] = 60887, - [SMALL_STATE(1943)] = 60901, - [SMALL_STATE(1944)] = 60915, - [SMALL_STATE(1945)] = 60929, - [SMALL_STATE(1946)] = 60941, - [SMALL_STATE(1947)] = 60955, - [SMALL_STATE(1948)] = 60969, - [SMALL_STATE(1949)] = 60983, - [SMALL_STATE(1950)] = 60995, - [SMALL_STATE(1951)] = 61009, - [SMALL_STATE(1952)] = 61023, - [SMALL_STATE(1953)] = 61037, - [SMALL_STATE(1954)] = 61049, - [SMALL_STATE(1955)] = 61063, - [SMALL_STATE(1956)] = 61077, - [SMALL_STATE(1957)] = 61091, - [SMALL_STATE(1958)] = 61105, - [SMALL_STATE(1959)] = 61119, - [SMALL_STATE(1960)] = 61133, + [SMALL_STATE(1924)] = 60639, + [SMALL_STATE(1925)] = 60653, + [SMALL_STATE(1926)] = 60667, + [SMALL_STATE(1927)] = 60679, + [SMALL_STATE(1928)] = 60693, + [SMALL_STATE(1929)] = 60705, + [SMALL_STATE(1930)] = 60717, + [SMALL_STATE(1931)] = 60731, + [SMALL_STATE(1932)] = 60743, + [SMALL_STATE(1933)] = 60757, + [SMALL_STATE(1934)] = 60771, + [SMALL_STATE(1935)] = 60785, + [SMALL_STATE(1936)] = 60799, + [SMALL_STATE(1937)] = 60813, + [SMALL_STATE(1938)] = 60827, + [SMALL_STATE(1939)] = 60841, + [SMALL_STATE(1940)] = 60853, + [SMALL_STATE(1941)] = 60867, + [SMALL_STATE(1942)] = 60881, + [SMALL_STATE(1943)] = 60895, + [SMALL_STATE(1944)] = 60909, + [SMALL_STATE(1945)] = 60923, + [SMALL_STATE(1946)] = 60937, + [SMALL_STATE(1947)] = 60949, + [SMALL_STATE(1948)] = 60963, + [SMALL_STATE(1949)] = 60977, + [SMALL_STATE(1950)] = 60991, + [SMALL_STATE(1951)] = 61005, + [SMALL_STATE(1952)] = 61019, + [SMALL_STATE(1953)] = 61033, + [SMALL_STATE(1954)] = 61047, + [SMALL_STATE(1955)] = 61061, + [SMALL_STATE(1956)] = 61075, + [SMALL_STATE(1957)] = 61089, + [SMALL_STATE(1958)] = 61103, + [SMALL_STATE(1959)] = 61115, + [SMALL_STATE(1960)] = 61129, [SMALL_STATE(1961)] = 61143, - [SMALL_STATE(1962)] = 61157, - [SMALL_STATE(1963)] = 61171, - [SMALL_STATE(1964)] = 61181, - [SMALL_STATE(1965)] = 61195, - [SMALL_STATE(1966)] = 61209, - [SMALL_STATE(1967)] = 61219, - [SMALL_STATE(1968)] = 61233, - [SMALL_STATE(1969)] = 61247, - [SMALL_STATE(1970)] = 61259, - [SMALL_STATE(1971)] = 61273, - [SMALL_STATE(1972)] = 61287, - [SMALL_STATE(1973)] = 61301, - [SMALL_STATE(1974)] = 61313, - [SMALL_STATE(1975)] = 61325, - [SMALL_STATE(1976)] = 61339, - [SMALL_STATE(1977)] = 61349, - [SMALL_STATE(1978)] = 61363, - [SMALL_STATE(1979)] = 61373, - [SMALL_STATE(1980)] = 61385, - [SMALL_STATE(1981)] = 61395, - [SMALL_STATE(1982)] = 61405, - [SMALL_STATE(1983)] = 61419, - [SMALL_STATE(1984)] = 61433, - [SMALL_STATE(1985)] = 61447, - [SMALL_STATE(1986)] = 61459, - [SMALL_STATE(1987)] = 61471, - [SMALL_STATE(1988)] = 61485, - [SMALL_STATE(1989)] = 61497, - [SMALL_STATE(1990)] = 61511, - [SMALL_STATE(1991)] = 61525, - [SMALL_STATE(1992)] = 61539, - [SMALL_STATE(1993)] = 61553, - [SMALL_STATE(1994)] = 61565, - [SMALL_STATE(1995)] = 61577, - [SMALL_STATE(1996)] = 61587, - [SMALL_STATE(1997)] = 61597, - [SMALL_STATE(1998)] = 61611, - [SMALL_STATE(1999)] = 61625, - [SMALL_STATE(2000)] = 61639, - [SMALL_STATE(2001)] = 61653, - [SMALL_STATE(2002)] = 61667, - [SMALL_STATE(2003)] = 61681, - [SMALL_STATE(2004)] = 61695, - [SMALL_STATE(2005)] = 61709, - [SMALL_STATE(2006)] = 61723, - [SMALL_STATE(2007)] = 61737, - [SMALL_STATE(2008)] = 61747, - [SMALL_STATE(2009)] = 61761, - [SMALL_STATE(2010)] = 61775, - [SMALL_STATE(2011)] = 61789, - [SMALL_STATE(2012)] = 61803, - [SMALL_STATE(2013)] = 61817, - [SMALL_STATE(2014)] = 61829, - [SMALL_STATE(2015)] = 61843, - [SMALL_STATE(2016)] = 61857, - [SMALL_STATE(2017)] = 61869, - [SMALL_STATE(2018)] = 61883, - [SMALL_STATE(2019)] = 61897, - [SMALL_STATE(2020)] = 61911, - [SMALL_STATE(2021)] = 61925, - [SMALL_STATE(2022)] = 61939, - [SMALL_STATE(2023)] = 61953, - [SMALL_STATE(2024)] = 61965, - [SMALL_STATE(2025)] = 61979, - [SMALL_STATE(2026)] = 61993, - [SMALL_STATE(2027)] = 62007, - [SMALL_STATE(2028)] = 62017, - [SMALL_STATE(2029)] = 62031, - [SMALL_STATE(2030)] = 62045, - [SMALL_STATE(2031)] = 62059, - [SMALL_STATE(2032)] = 62073, - [SMALL_STATE(2033)] = 62087, - [SMALL_STATE(2034)] = 62101, - [SMALL_STATE(2035)] = 62115, - [SMALL_STATE(2036)] = 62127, - [SMALL_STATE(2037)] = 62141, - [SMALL_STATE(2038)] = 62151, - [SMALL_STATE(2039)] = 62165, - [SMALL_STATE(2040)] = 62179, - [SMALL_STATE(2041)] = 62193, - [SMALL_STATE(2042)] = 62207, - [SMALL_STATE(2043)] = 62221, - [SMALL_STATE(2044)] = 62233, - [SMALL_STATE(2045)] = 62247, - [SMALL_STATE(2046)] = 62261, - [SMALL_STATE(2047)] = 62275, - [SMALL_STATE(2048)] = 62289, - [SMALL_STATE(2049)] = 62303, - [SMALL_STATE(2050)] = 62317, - [SMALL_STATE(2051)] = 62331, - [SMALL_STATE(2052)] = 62345, - [SMALL_STATE(2053)] = 62357, - [SMALL_STATE(2054)] = 62371, - [SMALL_STATE(2055)] = 62385, - [SMALL_STATE(2056)] = 62399, - [SMALL_STATE(2057)] = 62413, - [SMALL_STATE(2058)] = 62427, - [SMALL_STATE(2059)] = 62439, - [SMALL_STATE(2060)] = 62453, - [SMALL_STATE(2061)] = 62465, - [SMALL_STATE(2062)] = 62479, - [SMALL_STATE(2063)] = 62493, - [SMALL_STATE(2064)] = 62507, - [SMALL_STATE(2065)] = 62521, - [SMALL_STATE(2066)] = 62535, - [SMALL_STATE(2067)] = 62549, - [SMALL_STATE(2068)] = 62563, - [SMALL_STATE(2069)] = 62577, - [SMALL_STATE(2070)] = 62591, - [SMALL_STATE(2071)] = 62605, - [SMALL_STATE(2072)] = 62619, - [SMALL_STATE(2073)] = 62633, - [SMALL_STATE(2074)] = 62647, - [SMALL_STATE(2075)] = 62661, - [SMALL_STATE(2076)] = 62673, - [SMALL_STATE(2077)] = 62687, - [SMALL_STATE(2078)] = 62701, - [SMALL_STATE(2079)] = 62713, - [SMALL_STATE(2080)] = 62727, - [SMALL_STATE(2081)] = 62739, - [SMALL_STATE(2082)] = 62753, - [SMALL_STATE(2083)] = 62767, - [SMALL_STATE(2084)] = 62779, - [SMALL_STATE(2085)] = 62793, - [SMALL_STATE(2086)] = 62807, - [SMALL_STATE(2087)] = 62821, - [SMALL_STATE(2088)] = 62835, - [SMALL_STATE(2089)] = 62849, - [SMALL_STATE(2090)] = 62863, - [SMALL_STATE(2091)] = 62875, - [SMALL_STATE(2092)] = 62885, - [SMALL_STATE(2093)] = 62899, - [SMALL_STATE(2094)] = 62913, - [SMALL_STATE(2095)] = 62923, - [SMALL_STATE(2096)] = 62937, - [SMALL_STATE(2097)] = 62951, - [SMALL_STATE(2098)] = 62965, - [SMALL_STATE(2099)] = 62975, - [SMALL_STATE(2100)] = 62989, - [SMALL_STATE(2101)] = 62999, - [SMALL_STATE(2102)] = 63013, - [SMALL_STATE(2103)] = 63027, - [SMALL_STATE(2104)] = 63041, - [SMALL_STATE(2105)] = 63055, - [SMALL_STATE(2106)] = 63069, - [SMALL_STATE(2107)] = 63083, - [SMALL_STATE(2108)] = 63097, - [SMALL_STATE(2109)] = 63111, - [SMALL_STATE(2110)] = 63125, - [SMALL_STATE(2111)] = 63137, - [SMALL_STATE(2112)] = 63151, - [SMALL_STATE(2113)] = 63165, - [SMALL_STATE(2114)] = 63179, - [SMALL_STATE(2115)] = 63193, - [SMALL_STATE(2116)] = 63207, - [SMALL_STATE(2117)] = 63221, - [SMALL_STATE(2118)] = 63235, - [SMALL_STATE(2119)] = 63249, - [SMALL_STATE(2120)] = 63263, - [SMALL_STATE(2121)] = 63277, - [SMALL_STATE(2122)] = 63291, - [SMALL_STATE(2123)] = 63305, - [SMALL_STATE(2124)] = 63319, - [SMALL_STATE(2125)] = 63333, + [SMALL_STATE(1962)] = 61155, + [SMALL_STATE(1963)] = 61169, + [SMALL_STATE(1964)] = 61183, + [SMALL_STATE(1965)] = 61197, + [SMALL_STATE(1966)] = 61211, + [SMALL_STATE(1967)] = 61225, + [SMALL_STATE(1968)] = 61239, + [SMALL_STATE(1969)] = 61253, + [SMALL_STATE(1970)] = 61267, + [SMALL_STATE(1971)] = 61279, + [SMALL_STATE(1972)] = 61293, + [SMALL_STATE(1973)] = 61307, + [SMALL_STATE(1974)] = 61321, + [SMALL_STATE(1975)] = 61335, + [SMALL_STATE(1976)] = 61349, + [SMALL_STATE(1977)] = 61363, + [SMALL_STATE(1978)] = 61373, + [SMALL_STATE(1979)] = 61387, + [SMALL_STATE(1980)] = 61401, + [SMALL_STATE(1981)] = 61415, + [SMALL_STATE(1982)] = 61427, + [SMALL_STATE(1983)] = 61437, + [SMALL_STATE(1984)] = 61451, + [SMALL_STATE(1985)] = 61465, + [SMALL_STATE(1986)] = 61479, + [SMALL_STATE(1987)] = 61493, + [SMALL_STATE(1988)] = 61505, + [SMALL_STATE(1989)] = 61519, + [SMALL_STATE(1990)] = 61533, + [SMALL_STATE(1991)] = 61547, + [SMALL_STATE(1992)] = 61561, + [SMALL_STATE(1993)] = 61571, + [SMALL_STATE(1994)] = 61585, + [SMALL_STATE(1995)] = 61595, + [SMALL_STATE(1996)] = 61609, + [SMALL_STATE(1997)] = 61621, + [SMALL_STATE(1998)] = 61631, + [SMALL_STATE(1999)] = 61641, + [SMALL_STATE(2000)] = 61655, + [SMALL_STATE(2001)] = 61669, + [SMALL_STATE(2002)] = 61683, + [SMALL_STATE(2003)] = 61697, + [SMALL_STATE(2004)] = 61711, + [SMALL_STATE(2005)] = 61725, + [SMALL_STATE(2006)] = 61739, + [SMALL_STATE(2007)] = 61753, + [SMALL_STATE(2008)] = 61767, + [SMALL_STATE(2009)] = 61781, + [SMALL_STATE(2010)] = 61795, + [SMALL_STATE(2011)] = 61809, + [SMALL_STATE(2012)] = 61823, + [SMALL_STATE(2013)] = 61835, + [SMALL_STATE(2014)] = 61849, + [SMALL_STATE(2015)] = 61863, + [SMALL_STATE(2016)] = 61877, + [SMALL_STATE(2017)] = 61891, + [SMALL_STATE(2018)] = 61905, + [SMALL_STATE(2019)] = 61919, + [SMALL_STATE(2020)] = 61933, + [SMALL_STATE(2021)] = 61947, + [SMALL_STATE(2022)] = 61961, + [SMALL_STATE(2023)] = 61975, + [SMALL_STATE(2024)] = 61985, + [SMALL_STATE(2025)] = 61999, + [SMALL_STATE(2026)] = 62013, + [SMALL_STATE(2027)] = 62027, + [SMALL_STATE(2028)] = 62041, + [SMALL_STATE(2029)] = 62055, + [SMALL_STATE(2030)] = 62067, + [SMALL_STATE(2031)] = 62081, + [SMALL_STATE(2032)] = 62093, + [SMALL_STATE(2033)] = 62105, + [SMALL_STATE(2034)] = 62119, + [SMALL_STATE(2035)] = 62133, + [SMALL_STATE(2036)] = 62145, + [SMALL_STATE(2037)] = 62159, + [SMALL_STATE(2038)] = 62171, + [SMALL_STATE(2039)] = 62185, + [SMALL_STATE(2040)] = 62199, + [SMALL_STATE(2041)] = 62213, + [SMALL_STATE(2042)] = 62225, + [SMALL_STATE(2043)] = 62239, + [SMALL_STATE(2044)] = 62253, + [SMALL_STATE(2045)] = 62267, + [SMALL_STATE(2046)] = 62281, + [SMALL_STATE(2047)] = 62293, + [SMALL_STATE(2048)] = 62307, + [SMALL_STATE(2049)] = 62321, + [SMALL_STATE(2050)] = 62335, + [SMALL_STATE(2051)] = 62345, + [SMALL_STATE(2052)] = 62359, + [SMALL_STATE(2053)] = 62371, + [SMALL_STATE(2054)] = 62385, + [SMALL_STATE(2055)] = 62399, + [SMALL_STATE(2056)] = 62413, + [SMALL_STATE(2057)] = 62427, + [SMALL_STATE(2058)] = 62441, + [SMALL_STATE(2059)] = 62455, + [SMALL_STATE(2060)] = 62467, + [SMALL_STATE(2061)] = 62481, + [SMALL_STATE(2062)] = 62495, + [SMALL_STATE(2063)] = 62507, + [SMALL_STATE(2064)] = 62521, + [SMALL_STATE(2065)] = 62533, + [SMALL_STATE(2066)] = 62547, + [SMALL_STATE(2067)] = 62557, + [SMALL_STATE(2068)] = 62571, + [SMALL_STATE(2069)] = 62585, + [SMALL_STATE(2070)] = 62599, + [SMALL_STATE(2071)] = 62613, + [SMALL_STATE(2072)] = 62627, + [SMALL_STATE(2073)] = 62641, + [SMALL_STATE(2074)] = 62651, + [SMALL_STATE(2075)] = 62665, + [SMALL_STATE(2076)] = 62679, + [SMALL_STATE(2077)] = 62691, + [SMALL_STATE(2078)] = 62705, + [SMALL_STATE(2079)] = 62719, + [SMALL_STATE(2080)] = 62733, + [SMALL_STATE(2081)] = 62747, + [SMALL_STATE(2082)] = 62759, + [SMALL_STATE(2083)] = 62771, + [SMALL_STATE(2084)] = 62785, + [SMALL_STATE(2085)] = 62799, + [SMALL_STATE(2086)] = 62813, + [SMALL_STATE(2087)] = 62827, + [SMALL_STATE(2088)] = 62841, + [SMALL_STATE(2089)] = 62851, + [SMALL_STATE(2090)] = 62865, + [SMALL_STATE(2091)] = 62879, + [SMALL_STATE(2092)] = 62893, + [SMALL_STATE(2093)] = 62907, + [SMALL_STATE(2094)] = 62921, + [SMALL_STATE(2095)] = 62935, + [SMALL_STATE(2096)] = 62949, + [SMALL_STATE(2097)] = 62963, + [SMALL_STATE(2098)] = 62977, + [SMALL_STATE(2099)] = 62987, + [SMALL_STATE(2100)] = 63001, + [SMALL_STATE(2101)] = 63011, + [SMALL_STATE(2102)] = 63025, + [SMALL_STATE(2103)] = 63039, + [SMALL_STATE(2104)] = 63049, + [SMALL_STATE(2105)] = 63063, + [SMALL_STATE(2106)] = 63077, + [SMALL_STATE(2107)] = 63091, + [SMALL_STATE(2108)] = 63105, + [SMALL_STATE(2109)] = 63119, + [SMALL_STATE(2110)] = 63133, + [SMALL_STATE(2111)] = 63147, + [SMALL_STATE(2112)] = 63161, + [SMALL_STATE(2113)] = 63175, + [SMALL_STATE(2114)] = 63189, + [SMALL_STATE(2115)] = 63203, + [SMALL_STATE(2116)] = 63213, + [SMALL_STATE(2117)] = 63227, + [SMALL_STATE(2118)] = 63241, + [SMALL_STATE(2119)] = 63255, + [SMALL_STATE(2120)] = 63265, + [SMALL_STATE(2121)] = 63279, + [SMALL_STATE(2122)] = 63293, + [SMALL_STATE(2123)] = 63307, + [SMALL_STATE(2124)] = 63321, + [SMALL_STATE(2125)] = 63335, [SMALL_STATE(2126)] = 63347, [SMALL_STATE(2127)] = 63361, [SMALL_STATE(2128)] = 63375, [SMALL_STATE(2129)] = 63389, [SMALL_STATE(2130)] = 63403, - [SMALL_STATE(2131)] = 63413, + [SMALL_STATE(2131)] = 63417, [SMALL_STATE(2132)] = 63427, - [SMALL_STATE(2133)] = 63441, - [SMALL_STATE(2134)] = 63455, - [SMALL_STATE(2135)] = 63466, - [SMALL_STATE(2136)] = 63475, - [SMALL_STATE(2137)] = 63486, - [SMALL_STATE(2138)] = 63497, - [SMALL_STATE(2139)] = 63508, - [SMALL_STATE(2140)] = 63517, - [SMALL_STATE(2141)] = 63528, - [SMALL_STATE(2142)] = 63537, - [SMALL_STATE(2143)] = 63548, - [SMALL_STATE(2144)] = 63559, - [SMALL_STATE(2145)] = 63570, - [SMALL_STATE(2146)] = 63581, - [SMALL_STATE(2147)] = 63592, - [SMALL_STATE(2148)] = 63603, - [SMALL_STATE(2149)] = 63614, - [SMALL_STATE(2150)] = 63625, - [SMALL_STATE(2151)] = 63636, - [SMALL_STATE(2152)] = 63647, - [SMALL_STATE(2153)] = 63658, - [SMALL_STATE(2154)] = 63669, - [SMALL_STATE(2155)] = 63680, - [SMALL_STATE(2156)] = 63691, - [SMALL_STATE(2157)] = 63702, - [SMALL_STATE(2158)] = 63713, - [SMALL_STATE(2159)] = 63724, - [SMALL_STATE(2160)] = 63733, - [SMALL_STATE(2161)] = 63742, - [SMALL_STATE(2162)] = 63753, - [SMALL_STATE(2163)] = 63764, - [SMALL_STATE(2164)] = 63775, - [SMALL_STATE(2165)] = 63786, - [SMALL_STATE(2166)] = 63797, - [SMALL_STATE(2167)] = 63808, - [SMALL_STATE(2168)] = 63819, - [SMALL_STATE(2169)] = 63830, - [SMALL_STATE(2170)] = 63841, - [SMALL_STATE(2171)] = 63852, - [SMALL_STATE(2172)] = 63863, - [SMALL_STATE(2173)] = 63872, - [SMALL_STATE(2174)] = 63883, - [SMALL_STATE(2175)] = 63894, - [SMALL_STATE(2176)] = 63905, - [SMALL_STATE(2177)] = 63916, - [SMALL_STATE(2178)] = 63927, - [SMALL_STATE(2179)] = 63936, - [SMALL_STATE(2180)] = 63947, - [SMALL_STATE(2181)] = 63958, - [SMALL_STATE(2182)] = 63969, - [SMALL_STATE(2183)] = 63978, - [SMALL_STATE(2184)] = 63989, - [SMALL_STATE(2185)] = 64000, - [SMALL_STATE(2186)] = 64011, - [SMALL_STATE(2187)] = 64022, - [SMALL_STATE(2188)] = 64031, - [SMALL_STATE(2189)] = 64042, - [SMALL_STATE(2190)] = 64053, - [SMALL_STATE(2191)] = 64062, - [SMALL_STATE(2192)] = 64073, - [SMALL_STATE(2193)] = 64082, - [SMALL_STATE(2194)] = 64093, - [SMALL_STATE(2195)] = 64104, - [SMALL_STATE(2196)] = 64115, - [SMALL_STATE(2197)] = 64124, - [SMALL_STATE(2198)] = 64135, - [SMALL_STATE(2199)] = 64146, - [SMALL_STATE(2200)] = 64157, - [SMALL_STATE(2201)] = 64168, - [SMALL_STATE(2202)] = 64179, - [SMALL_STATE(2203)] = 64190, - [SMALL_STATE(2204)] = 64201, - [SMALL_STATE(2205)] = 64212, - [SMALL_STATE(2206)] = 64221, - [SMALL_STATE(2207)] = 64232, - [SMALL_STATE(2208)] = 64243, - [SMALL_STATE(2209)] = 64254, - [SMALL_STATE(2210)] = 64265, - [SMALL_STATE(2211)] = 64276, - [SMALL_STATE(2212)] = 64287, - [SMALL_STATE(2213)] = 64296, - [SMALL_STATE(2214)] = 64307, - [SMALL_STATE(2215)] = 64318, - [SMALL_STATE(2216)] = 64327, - [SMALL_STATE(2217)] = 64338, - [SMALL_STATE(2218)] = 64349, - [SMALL_STATE(2219)] = 64360, - [SMALL_STATE(2220)] = 64371, - [SMALL_STATE(2221)] = 64382, - [SMALL_STATE(2222)] = 64393, - [SMALL_STATE(2223)] = 64404, - [SMALL_STATE(2224)] = 64413, - [SMALL_STATE(2225)] = 64424, - [SMALL_STATE(2226)] = 64435, - [SMALL_STATE(2227)] = 64446, - [SMALL_STATE(2228)] = 64457, - [SMALL_STATE(2229)] = 64468, - [SMALL_STATE(2230)] = 64477, - [SMALL_STATE(2231)] = 64488, - [SMALL_STATE(2232)] = 64499, + [SMALL_STATE(2133)] = 63438, + [SMALL_STATE(2134)] = 63449, + [SMALL_STATE(2135)] = 63458, + [SMALL_STATE(2136)] = 63469, + [SMALL_STATE(2137)] = 63480, + [SMALL_STATE(2138)] = 63491, + [SMALL_STATE(2139)] = 63502, + [SMALL_STATE(2140)] = 63513, + [SMALL_STATE(2141)] = 63524, + [SMALL_STATE(2142)] = 63535, + [SMALL_STATE(2143)] = 63546, + [SMALL_STATE(2144)] = 63557, + [SMALL_STATE(2145)] = 63568, + [SMALL_STATE(2146)] = 63579, + [SMALL_STATE(2147)] = 63590, + [SMALL_STATE(2148)] = 63601, + [SMALL_STATE(2149)] = 63612, + [SMALL_STATE(2150)] = 63623, + [SMALL_STATE(2151)] = 63634, + [SMALL_STATE(2152)] = 63645, + [SMALL_STATE(2153)] = 63656, + [SMALL_STATE(2154)] = 63667, + [SMALL_STATE(2155)] = 63678, + [SMALL_STATE(2156)] = 63689, + [SMALL_STATE(2157)] = 63700, + [SMALL_STATE(2158)] = 63709, + [SMALL_STATE(2159)] = 63718, + [SMALL_STATE(2160)] = 63729, + [SMALL_STATE(2161)] = 63740, + [SMALL_STATE(2162)] = 63751, + [SMALL_STATE(2163)] = 63762, + [SMALL_STATE(2164)] = 63773, + [SMALL_STATE(2165)] = 63784, + [SMALL_STATE(2166)] = 63793, + [SMALL_STATE(2167)] = 63804, + [SMALL_STATE(2168)] = 63815, + [SMALL_STATE(2169)] = 63826, + [SMALL_STATE(2170)] = 63837, + [SMALL_STATE(2171)] = 63846, + [SMALL_STATE(2172)] = 63857, + [SMALL_STATE(2173)] = 63866, + [SMALL_STATE(2174)] = 63877, + [SMALL_STATE(2175)] = 63888, + [SMALL_STATE(2176)] = 63899, + [SMALL_STATE(2177)] = 63908, + [SMALL_STATE(2178)] = 63919, + [SMALL_STATE(2179)] = 63930, + [SMALL_STATE(2180)] = 63941, + [SMALL_STATE(2181)] = 63950, + [SMALL_STATE(2182)] = 63961, + [SMALL_STATE(2183)] = 63972, + [SMALL_STATE(2184)] = 63983, + [SMALL_STATE(2185)] = 63992, + [SMALL_STATE(2186)] = 64003, + [SMALL_STATE(2187)] = 64014, + [SMALL_STATE(2188)] = 64025, + [SMALL_STATE(2189)] = 64034, + [SMALL_STATE(2190)] = 64043, + [SMALL_STATE(2191)] = 64054, + [SMALL_STATE(2192)] = 64065, + [SMALL_STATE(2193)] = 64076, + [SMALL_STATE(2194)] = 64087, + [SMALL_STATE(2195)] = 64098, + [SMALL_STATE(2196)] = 64109, + [SMALL_STATE(2197)] = 64120, + [SMALL_STATE(2198)] = 64131, + [SMALL_STATE(2199)] = 64142, + [SMALL_STATE(2200)] = 64153, + [SMALL_STATE(2201)] = 64164, + [SMALL_STATE(2202)] = 64175, + [SMALL_STATE(2203)] = 64186, + [SMALL_STATE(2204)] = 64197, + [SMALL_STATE(2205)] = 64208, + [SMALL_STATE(2206)] = 64219, + [SMALL_STATE(2207)] = 64230, + [SMALL_STATE(2208)] = 64241, + [SMALL_STATE(2209)] = 64252, + [SMALL_STATE(2210)] = 64263, + [SMALL_STATE(2211)] = 64272, + [SMALL_STATE(2212)] = 64283, + [SMALL_STATE(2213)] = 64292, + [SMALL_STATE(2214)] = 64301, + [SMALL_STATE(2215)] = 64312, + [SMALL_STATE(2216)] = 64323, + [SMALL_STATE(2217)] = 64334, + [SMALL_STATE(2218)] = 64345, + [SMALL_STATE(2219)] = 64356, + [SMALL_STATE(2220)] = 64367, + [SMALL_STATE(2221)] = 64378, + [SMALL_STATE(2222)] = 64389, + [SMALL_STATE(2223)] = 64400, + [SMALL_STATE(2224)] = 64411, + [SMALL_STATE(2225)] = 64420, + [SMALL_STATE(2226)] = 64431, + [SMALL_STATE(2227)] = 64442, + [SMALL_STATE(2228)] = 64453, + [SMALL_STATE(2229)] = 64464, + [SMALL_STATE(2230)] = 64475, + [SMALL_STATE(2231)] = 64486, + [SMALL_STATE(2232)] = 64497, [SMALL_STATE(2233)] = 64508, [SMALL_STATE(2234)] = 64519, [SMALL_STATE(2235)] = 64530, @@ -128216,327 +128180,325 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2237)] = 64552, [SMALL_STATE(2238)] = 64563, [SMALL_STATE(2239)] = 64574, - [SMALL_STATE(2240)] = 64585, - [SMALL_STATE(2241)] = 64596, - [SMALL_STATE(2242)] = 64607, - [SMALL_STATE(2243)] = 64618, - [SMALL_STATE(2244)] = 64629, - [SMALL_STATE(2245)] = 64640, - [SMALL_STATE(2246)] = 64651, - [SMALL_STATE(2247)] = 64662, - [SMALL_STATE(2248)] = 64673, - [SMALL_STATE(2249)] = 64684, - [SMALL_STATE(2250)] = 64695, - [SMALL_STATE(2251)] = 64704, - [SMALL_STATE(2252)] = 64715, - [SMALL_STATE(2253)] = 64726, - [SMALL_STATE(2254)] = 64737, - [SMALL_STATE(2255)] = 64748, - [SMALL_STATE(2256)] = 64759, - [SMALL_STATE(2257)] = 64770, - [SMALL_STATE(2258)] = 64781, - [SMALL_STATE(2259)] = 64792, - [SMALL_STATE(2260)] = 64803, - [SMALL_STATE(2261)] = 64814, - [SMALL_STATE(2262)] = 64825, - [SMALL_STATE(2263)] = 64836, - [SMALL_STATE(2264)] = 64847, - [SMALL_STATE(2265)] = 64858, - [SMALL_STATE(2266)] = 64869, - [SMALL_STATE(2267)] = 64878, - [SMALL_STATE(2268)] = 64889, - [SMALL_STATE(2269)] = 64900, - [SMALL_STATE(2270)] = 64911, - [SMALL_STATE(2271)] = 64922, - [SMALL_STATE(2272)] = 64933, - [SMALL_STATE(2273)] = 64942, - [SMALL_STATE(2274)] = 64953, - [SMALL_STATE(2275)] = 64964, - [SMALL_STATE(2276)] = 64975, - [SMALL_STATE(2277)] = 64986, - [SMALL_STATE(2278)] = 64997, - [SMALL_STATE(2279)] = 65008, - [SMALL_STATE(2280)] = 65019, - [SMALL_STATE(2281)] = 65030, - [SMALL_STATE(2282)] = 65039, - [SMALL_STATE(2283)] = 65050, - [SMALL_STATE(2284)] = 65061, - [SMALL_STATE(2285)] = 65072, - [SMALL_STATE(2286)] = 65083, - [SMALL_STATE(2287)] = 65094, - [SMALL_STATE(2288)] = 65103, - [SMALL_STATE(2289)] = 65114, - [SMALL_STATE(2290)] = 65123, - [SMALL_STATE(2291)] = 65134, - [SMALL_STATE(2292)] = 65143, - [SMALL_STATE(2293)] = 65152, - [SMALL_STATE(2294)] = 65163, - [SMALL_STATE(2295)] = 65174, - [SMALL_STATE(2296)] = 65185, - [SMALL_STATE(2297)] = 65196, - [SMALL_STATE(2298)] = 65207, - [SMALL_STATE(2299)] = 65218, - [SMALL_STATE(2300)] = 65229, - [SMALL_STATE(2301)] = 65240, - [SMALL_STATE(2302)] = 65251, - [SMALL_STATE(2303)] = 65262, - [SMALL_STATE(2304)] = 65273, - [SMALL_STATE(2305)] = 65284, - [SMALL_STATE(2306)] = 65293, - [SMALL_STATE(2307)] = 65304, - [SMALL_STATE(2308)] = 65315, - [SMALL_STATE(2309)] = 65326, - [SMALL_STATE(2310)] = 65337, - [SMALL_STATE(2311)] = 65348, - [SMALL_STATE(2312)] = 65359, - [SMALL_STATE(2313)] = 65370, - [SMALL_STATE(2314)] = 65381, - [SMALL_STATE(2315)] = 65392, - [SMALL_STATE(2316)] = 65403, - [SMALL_STATE(2317)] = 65414, - [SMALL_STATE(2318)] = 65425, - [SMALL_STATE(2319)] = 65434, - [SMALL_STATE(2320)] = 65445, - [SMALL_STATE(2321)] = 65454, - [SMALL_STATE(2322)] = 65465, - [SMALL_STATE(2323)] = 65474, - [SMALL_STATE(2324)] = 65485, - [SMALL_STATE(2325)] = 65493, - [SMALL_STATE(2326)] = 65501, - [SMALL_STATE(2327)] = 65509, - [SMALL_STATE(2328)] = 65517, - [SMALL_STATE(2329)] = 65525, - [SMALL_STATE(2330)] = 65533, - [SMALL_STATE(2331)] = 65541, - [SMALL_STATE(2332)] = 65549, - [SMALL_STATE(2333)] = 65557, - [SMALL_STATE(2334)] = 65565, - [SMALL_STATE(2335)] = 65573, - [SMALL_STATE(2336)] = 65581, - [SMALL_STATE(2337)] = 65589, - [SMALL_STATE(2338)] = 65597, - [SMALL_STATE(2339)] = 65605, - [SMALL_STATE(2340)] = 65613, - [SMALL_STATE(2341)] = 65621, - [SMALL_STATE(2342)] = 65629, - [SMALL_STATE(2343)] = 65637, - [SMALL_STATE(2344)] = 65645, - [SMALL_STATE(2345)] = 65653, - [SMALL_STATE(2346)] = 65661, - [SMALL_STATE(2347)] = 65669, - [SMALL_STATE(2348)] = 65677, - [SMALL_STATE(2349)] = 65685, - [SMALL_STATE(2350)] = 65693, - [SMALL_STATE(2351)] = 65701, - [SMALL_STATE(2352)] = 65709, - [SMALL_STATE(2353)] = 65717, - [SMALL_STATE(2354)] = 65725, - [SMALL_STATE(2355)] = 65733, - [SMALL_STATE(2356)] = 65741, - [SMALL_STATE(2357)] = 65749, - [SMALL_STATE(2358)] = 65757, - [SMALL_STATE(2359)] = 65765, - [SMALL_STATE(2360)] = 65773, - [SMALL_STATE(2361)] = 65781, - [SMALL_STATE(2362)] = 65789, - [SMALL_STATE(2363)] = 65797, - [SMALL_STATE(2364)] = 65805, - [SMALL_STATE(2365)] = 65813, - [SMALL_STATE(2366)] = 65821, - [SMALL_STATE(2367)] = 65829, - [SMALL_STATE(2368)] = 65837, - [SMALL_STATE(2369)] = 65845, - [SMALL_STATE(2370)] = 65853, - [SMALL_STATE(2371)] = 65861, - [SMALL_STATE(2372)] = 65869, - [SMALL_STATE(2373)] = 65877, - [SMALL_STATE(2374)] = 65885, - [SMALL_STATE(2375)] = 65893, - [SMALL_STATE(2376)] = 65901, - [SMALL_STATE(2377)] = 65909, - [SMALL_STATE(2378)] = 65917, - [SMALL_STATE(2379)] = 65925, - [SMALL_STATE(2380)] = 65933, - [SMALL_STATE(2381)] = 65941, - [SMALL_STATE(2382)] = 65949, - [SMALL_STATE(2383)] = 65957, - [SMALL_STATE(2384)] = 65965, - [SMALL_STATE(2385)] = 65973, - [SMALL_STATE(2386)] = 65981, - [SMALL_STATE(2387)] = 65989, - [SMALL_STATE(2388)] = 65997, - [SMALL_STATE(2389)] = 66005, - [SMALL_STATE(2390)] = 66013, - [SMALL_STATE(2391)] = 66021, - [SMALL_STATE(2392)] = 66029, - [SMALL_STATE(2393)] = 66037, - [SMALL_STATE(2394)] = 66045, - [SMALL_STATE(2395)] = 66053, - [SMALL_STATE(2396)] = 66061, - [SMALL_STATE(2397)] = 66069, - [SMALL_STATE(2398)] = 66077, - [SMALL_STATE(2399)] = 66085, - [SMALL_STATE(2400)] = 66093, - [SMALL_STATE(2401)] = 66101, - [SMALL_STATE(2402)] = 66109, - [SMALL_STATE(2403)] = 66117, - [SMALL_STATE(2404)] = 66125, - [SMALL_STATE(2405)] = 66133, - [SMALL_STATE(2406)] = 66141, - [SMALL_STATE(2407)] = 66149, - [SMALL_STATE(2408)] = 66157, - [SMALL_STATE(2409)] = 66165, - [SMALL_STATE(2410)] = 66173, - [SMALL_STATE(2411)] = 66181, - [SMALL_STATE(2412)] = 66189, - [SMALL_STATE(2413)] = 66197, - [SMALL_STATE(2414)] = 66205, - [SMALL_STATE(2415)] = 66213, - [SMALL_STATE(2416)] = 66221, - [SMALL_STATE(2417)] = 66229, - [SMALL_STATE(2418)] = 66237, - [SMALL_STATE(2419)] = 66245, - [SMALL_STATE(2420)] = 66253, - [SMALL_STATE(2421)] = 66261, - [SMALL_STATE(2422)] = 66269, - [SMALL_STATE(2423)] = 66277, - [SMALL_STATE(2424)] = 66285, - [SMALL_STATE(2425)] = 66293, - [SMALL_STATE(2426)] = 66301, - [SMALL_STATE(2427)] = 66309, - [SMALL_STATE(2428)] = 66317, - [SMALL_STATE(2429)] = 66325, - [SMALL_STATE(2430)] = 66333, - [SMALL_STATE(2431)] = 66341, - [SMALL_STATE(2432)] = 66349, - [SMALL_STATE(2433)] = 66357, - [SMALL_STATE(2434)] = 66365, - [SMALL_STATE(2435)] = 66373, - [SMALL_STATE(2436)] = 66381, - [SMALL_STATE(2437)] = 66389, - [SMALL_STATE(2438)] = 66397, - [SMALL_STATE(2439)] = 66405, - [SMALL_STATE(2440)] = 66413, - [SMALL_STATE(2441)] = 66421, - [SMALL_STATE(2442)] = 66429, - [SMALL_STATE(2443)] = 66437, - [SMALL_STATE(2444)] = 66445, - [SMALL_STATE(2445)] = 66453, - [SMALL_STATE(2446)] = 66461, - [SMALL_STATE(2447)] = 66469, - [SMALL_STATE(2448)] = 66477, - [SMALL_STATE(2449)] = 66485, - [SMALL_STATE(2450)] = 66493, - [SMALL_STATE(2451)] = 66501, - [SMALL_STATE(2452)] = 66509, - [SMALL_STATE(2453)] = 66517, - [SMALL_STATE(2454)] = 66525, - [SMALL_STATE(2455)] = 66533, - [SMALL_STATE(2456)] = 66541, - [SMALL_STATE(2457)] = 66549, - [SMALL_STATE(2458)] = 66557, - [SMALL_STATE(2459)] = 66565, - [SMALL_STATE(2460)] = 66573, - [SMALL_STATE(2461)] = 66581, - [SMALL_STATE(2462)] = 66589, - [SMALL_STATE(2463)] = 66597, - [SMALL_STATE(2464)] = 66605, - [SMALL_STATE(2465)] = 66613, - [SMALL_STATE(2466)] = 66621, - [SMALL_STATE(2467)] = 66629, - [SMALL_STATE(2468)] = 66637, - [SMALL_STATE(2469)] = 66645, - [SMALL_STATE(2470)] = 66653, - [SMALL_STATE(2471)] = 66661, - [SMALL_STATE(2472)] = 66669, - [SMALL_STATE(2473)] = 66677, - [SMALL_STATE(2474)] = 66685, - [SMALL_STATE(2475)] = 66693, - [SMALL_STATE(2476)] = 66701, - [SMALL_STATE(2477)] = 66709, - [SMALL_STATE(2478)] = 66717, - [SMALL_STATE(2479)] = 66725, - [SMALL_STATE(2480)] = 66733, - [SMALL_STATE(2481)] = 66741, - [SMALL_STATE(2482)] = 66749, - [SMALL_STATE(2483)] = 66757, - [SMALL_STATE(2484)] = 66765, - [SMALL_STATE(2485)] = 66773, - [SMALL_STATE(2486)] = 66781, - [SMALL_STATE(2487)] = 66789, - [SMALL_STATE(2488)] = 66797, - [SMALL_STATE(2489)] = 66805, - [SMALL_STATE(2490)] = 66813, - [SMALL_STATE(2491)] = 66821, - [SMALL_STATE(2492)] = 66829, - [SMALL_STATE(2493)] = 66837, - [SMALL_STATE(2494)] = 66845, - [SMALL_STATE(2495)] = 66853, - [SMALL_STATE(2496)] = 66861, - [SMALL_STATE(2497)] = 66869, - [SMALL_STATE(2498)] = 66877, - [SMALL_STATE(2499)] = 66885, - [SMALL_STATE(2500)] = 66893, - [SMALL_STATE(2501)] = 66901, - [SMALL_STATE(2502)] = 66909, - [SMALL_STATE(2503)] = 66917, - [SMALL_STATE(2504)] = 66925, - [SMALL_STATE(2505)] = 66933, - [SMALL_STATE(2506)] = 66941, - [SMALL_STATE(2507)] = 66949, - [SMALL_STATE(2508)] = 66957, - [SMALL_STATE(2509)] = 66965, - [SMALL_STATE(2510)] = 66973, - [SMALL_STATE(2511)] = 66981, - [SMALL_STATE(2512)] = 66989, - [SMALL_STATE(2513)] = 66997, - [SMALL_STATE(2514)] = 67005, - [SMALL_STATE(2515)] = 67013, - [SMALL_STATE(2516)] = 67021, - [SMALL_STATE(2517)] = 67029, - [SMALL_STATE(2518)] = 67037, - [SMALL_STATE(2519)] = 67045, - [SMALL_STATE(2520)] = 67053, - [SMALL_STATE(2521)] = 67061, - [SMALL_STATE(2522)] = 67069, - [SMALL_STATE(2523)] = 67077, - [SMALL_STATE(2524)] = 67085, - [SMALL_STATE(2525)] = 67093, - [SMALL_STATE(2526)] = 67101, - [SMALL_STATE(2527)] = 67109, - [SMALL_STATE(2528)] = 67117, - [SMALL_STATE(2529)] = 67125, - [SMALL_STATE(2530)] = 67133, - [SMALL_STATE(2531)] = 67141, - [SMALL_STATE(2532)] = 67149, - [SMALL_STATE(2533)] = 67157, - [SMALL_STATE(2534)] = 67165, - [SMALL_STATE(2535)] = 67173, - [SMALL_STATE(2536)] = 67181, - [SMALL_STATE(2537)] = 67189, - [SMALL_STATE(2538)] = 67197, - [SMALL_STATE(2539)] = 67205, - [SMALL_STATE(2540)] = 67213, - [SMALL_STATE(2541)] = 67221, - [SMALL_STATE(2542)] = 67229, - [SMALL_STATE(2543)] = 67237, - [SMALL_STATE(2544)] = 67245, - [SMALL_STATE(2545)] = 67253, - [SMALL_STATE(2546)] = 67261, - [SMALL_STATE(2547)] = 67269, - [SMALL_STATE(2548)] = 67277, - [SMALL_STATE(2549)] = 67285, - [SMALL_STATE(2550)] = 67293, - [SMALL_STATE(2551)] = 67301, - [SMALL_STATE(2552)] = 67309, - [SMALL_STATE(2553)] = 67317, - [SMALL_STATE(2554)] = 67325, - [SMALL_STATE(2555)] = 67333, - [SMALL_STATE(2556)] = 67341, - [SMALL_STATE(2557)] = 67349, - [SMALL_STATE(2558)] = 67357, - [SMALL_STATE(2559)] = 67365, - [SMALL_STATE(2560)] = 67373, + [SMALL_STATE(2240)] = 64583, + [SMALL_STATE(2241)] = 64594, + [SMALL_STATE(2242)] = 64605, + [SMALL_STATE(2243)] = 64616, + [SMALL_STATE(2244)] = 64627, + [SMALL_STATE(2245)] = 64638, + [SMALL_STATE(2246)] = 64647, + [SMALL_STATE(2247)] = 64656, + [SMALL_STATE(2248)] = 64665, + [SMALL_STATE(2249)] = 64676, + [SMALL_STATE(2250)] = 64685, + [SMALL_STATE(2251)] = 64696, + [SMALL_STATE(2252)] = 64707, + [SMALL_STATE(2253)] = 64718, + [SMALL_STATE(2254)] = 64729, + [SMALL_STATE(2255)] = 64740, + [SMALL_STATE(2256)] = 64751, + [SMALL_STATE(2257)] = 64762, + [SMALL_STATE(2258)] = 64773, + [SMALL_STATE(2259)] = 64784, + [SMALL_STATE(2260)] = 64795, + [SMALL_STATE(2261)] = 64806, + [SMALL_STATE(2262)] = 64817, + [SMALL_STATE(2263)] = 64828, + [SMALL_STATE(2264)] = 64839, + [SMALL_STATE(2265)] = 64850, + [SMALL_STATE(2266)] = 64859, + [SMALL_STATE(2267)] = 64870, + [SMALL_STATE(2268)] = 64879, + [SMALL_STATE(2269)] = 64890, + [SMALL_STATE(2270)] = 64901, + [SMALL_STATE(2271)] = 64912, + [SMALL_STATE(2272)] = 64923, + [SMALL_STATE(2273)] = 64934, + [SMALL_STATE(2274)] = 64943, + [SMALL_STATE(2275)] = 64954, + [SMALL_STATE(2276)] = 64965, + [SMALL_STATE(2277)] = 64974, + [SMALL_STATE(2278)] = 64985, + [SMALL_STATE(2279)] = 64996, + [SMALL_STATE(2280)] = 65007, + [SMALL_STATE(2281)] = 65016, + [SMALL_STATE(2282)] = 65027, + [SMALL_STATE(2283)] = 65038, + [SMALL_STATE(2284)] = 65049, + [SMALL_STATE(2285)] = 65060, + [SMALL_STATE(2286)] = 65071, + [SMALL_STATE(2287)] = 65082, + [SMALL_STATE(2288)] = 65091, + [SMALL_STATE(2289)] = 65102, + [SMALL_STATE(2290)] = 65111, + [SMALL_STATE(2291)] = 65122, + [SMALL_STATE(2292)] = 65133, + [SMALL_STATE(2293)] = 65144, + [SMALL_STATE(2294)] = 65155, + [SMALL_STATE(2295)] = 65166, + [SMALL_STATE(2296)] = 65177, + [SMALL_STATE(2297)] = 65188, + [SMALL_STATE(2298)] = 65199, + [SMALL_STATE(2299)] = 65210, + [SMALL_STATE(2300)] = 65221, + [SMALL_STATE(2301)] = 65232, + [SMALL_STATE(2302)] = 65243, + [SMALL_STATE(2303)] = 65254, + [SMALL_STATE(2304)] = 65265, + [SMALL_STATE(2305)] = 65276, + [SMALL_STATE(2306)] = 65287, + [SMALL_STATE(2307)] = 65298, + [SMALL_STATE(2308)] = 65309, + [SMALL_STATE(2309)] = 65320, + [SMALL_STATE(2310)] = 65331, + [SMALL_STATE(2311)] = 65342, + [SMALL_STATE(2312)] = 65353, + [SMALL_STATE(2313)] = 65362, + [SMALL_STATE(2314)] = 65373, + [SMALL_STATE(2315)] = 65384, + [SMALL_STATE(2316)] = 65393, + [SMALL_STATE(2317)] = 65404, + [SMALL_STATE(2318)] = 65415, + [SMALL_STATE(2319)] = 65426, + [SMALL_STATE(2320)] = 65437, + [SMALL_STATE(2321)] = 65448, + [SMALL_STATE(2322)] = 65457, + [SMALL_STATE(2323)] = 65465, + [SMALL_STATE(2324)] = 65473, + [SMALL_STATE(2325)] = 65481, + [SMALL_STATE(2326)] = 65489, + [SMALL_STATE(2327)] = 65497, + [SMALL_STATE(2328)] = 65505, + [SMALL_STATE(2329)] = 65513, + [SMALL_STATE(2330)] = 65521, + [SMALL_STATE(2331)] = 65529, + [SMALL_STATE(2332)] = 65537, + [SMALL_STATE(2333)] = 65545, + [SMALL_STATE(2334)] = 65553, + [SMALL_STATE(2335)] = 65561, + [SMALL_STATE(2336)] = 65569, + [SMALL_STATE(2337)] = 65577, + [SMALL_STATE(2338)] = 65585, + [SMALL_STATE(2339)] = 65593, + [SMALL_STATE(2340)] = 65601, + [SMALL_STATE(2341)] = 65609, + [SMALL_STATE(2342)] = 65617, + [SMALL_STATE(2343)] = 65625, + [SMALL_STATE(2344)] = 65633, + [SMALL_STATE(2345)] = 65641, + [SMALL_STATE(2346)] = 65649, + [SMALL_STATE(2347)] = 65657, + [SMALL_STATE(2348)] = 65665, + [SMALL_STATE(2349)] = 65673, + [SMALL_STATE(2350)] = 65681, + [SMALL_STATE(2351)] = 65689, + [SMALL_STATE(2352)] = 65697, + [SMALL_STATE(2353)] = 65705, + [SMALL_STATE(2354)] = 65713, + [SMALL_STATE(2355)] = 65721, + [SMALL_STATE(2356)] = 65729, + [SMALL_STATE(2357)] = 65737, + [SMALL_STATE(2358)] = 65745, + [SMALL_STATE(2359)] = 65753, + [SMALL_STATE(2360)] = 65761, + [SMALL_STATE(2361)] = 65769, + [SMALL_STATE(2362)] = 65777, + [SMALL_STATE(2363)] = 65785, + [SMALL_STATE(2364)] = 65793, + [SMALL_STATE(2365)] = 65801, + [SMALL_STATE(2366)] = 65809, + [SMALL_STATE(2367)] = 65817, + [SMALL_STATE(2368)] = 65825, + [SMALL_STATE(2369)] = 65833, + [SMALL_STATE(2370)] = 65841, + [SMALL_STATE(2371)] = 65849, + [SMALL_STATE(2372)] = 65857, + [SMALL_STATE(2373)] = 65865, + [SMALL_STATE(2374)] = 65873, + [SMALL_STATE(2375)] = 65881, + [SMALL_STATE(2376)] = 65889, + [SMALL_STATE(2377)] = 65897, + [SMALL_STATE(2378)] = 65905, + [SMALL_STATE(2379)] = 65913, + [SMALL_STATE(2380)] = 65921, + [SMALL_STATE(2381)] = 65929, + [SMALL_STATE(2382)] = 65937, + [SMALL_STATE(2383)] = 65945, + [SMALL_STATE(2384)] = 65953, + [SMALL_STATE(2385)] = 65961, + [SMALL_STATE(2386)] = 65969, + [SMALL_STATE(2387)] = 65977, + [SMALL_STATE(2388)] = 65985, + [SMALL_STATE(2389)] = 65993, + [SMALL_STATE(2390)] = 66001, + [SMALL_STATE(2391)] = 66009, + [SMALL_STATE(2392)] = 66017, + [SMALL_STATE(2393)] = 66025, + [SMALL_STATE(2394)] = 66033, + [SMALL_STATE(2395)] = 66041, + [SMALL_STATE(2396)] = 66049, + [SMALL_STATE(2397)] = 66057, + [SMALL_STATE(2398)] = 66065, + [SMALL_STATE(2399)] = 66073, + [SMALL_STATE(2400)] = 66081, + [SMALL_STATE(2401)] = 66089, + [SMALL_STATE(2402)] = 66097, + [SMALL_STATE(2403)] = 66105, + [SMALL_STATE(2404)] = 66113, + [SMALL_STATE(2405)] = 66121, + [SMALL_STATE(2406)] = 66129, + [SMALL_STATE(2407)] = 66137, + [SMALL_STATE(2408)] = 66145, + [SMALL_STATE(2409)] = 66153, + [SMALL_STATE(2410)] = 66161, + [SMALL_STATE(2411)] = 66169, + [SMALL_STATE(2412)] = 66177, + [SMALL_STATE(2413)] = 66185, + [SMALL_STATE(2414)] = 66193, + [SMALL_STATE(2415)] = 66201, + [SMALL_STATE(2416)] = 66209, + [SMALL_STATE(2417)] = 66217, + [SMALL_STATE(2418)] = 66225, + [SMALL_STATE(2419)] = 66233, + [SMALL_STATE(2420)] = 66241, + [SMALL_STATE(2421)] = 66249, + [SMALL_STATE(2422)] = 66257, + [SMALL_STATE(2423)] = 66265, + [SMALL_STATE(2424)] = 66273, + [SMALL_STATE(2425)] = 66281, + [SMALL_STATE(2426)] = 66289, + [SMALL_STATE(2427)] = 66297, + [SMALL_STATE(2428)] = 66305, + [SMALL_STATE(2429)] = 66313, + [SMALL_STATE(2430)] = 66321, + [SMALL_STATE(2431)] = 66329, + [SMALL_STATE(2432)] = 66337, + [SMALL_STATE(2433)] = 66345, + [SMALL_STATE(2434)] = 66353, + [SMALL_STATE(2435)] = 66361, + [SMALL_STATE(2436)] = 66369, + [SMALL_STATE(2437)] = 66377, + [SMALL_STATE(2438)] = 66385, + [SMALL_STATE(2439)] = 66393, + [SMALL_STATE(2440)] = 66401, + [SMALL_STATE(2441)] = 66409, + [SMALL_STATE(2442)] = 66417, + [SMALL_STATE(2443)] = 66425, + [SMALL_STATE(2444)] = 66433, + [SMALL_STATE(2445)] = 66441, + [SMALL_STATE(2446)] = 66449, + [SMALL_STATE(2447)] = 66457, + [SMALL_STATE(2448)] = 66465, + [SMALL_STATE(2449)] = 66473, + [SMALL_STATE(2450)] = 66481, + [SMALL_STATE(2451)] = 66489, + [SMALL_STATE(2452)] = 66497, + [SMALL_STATE(2453)] = 66505, + [SMALL_STATE(2454)] = 66513, + [SMALL_STATE(2455)] = 66521, + [SMALL_STATE(2456)] = 66529, + [SMALL_STATE(2457)] = 66537, + [SMALL_STATE(2458)] = 66545, + [SMALL_STATE(2459)] = 66553, + [SMALL_STATE(2460)] = 66561, + [SMALL_STATE(2461)] = 66569, + [SMALL_STATE(2462)] = 66577, + [SMALL_STATE(2463)] = 66585, + [SMALL_STATE(2464)] = 66593, + [SMALL_STATE(2465)] = 66601, + [SMALL_STATE(2466)] = 66609, + [SMALL_STATE(2467)] = 66617, + [SMALL_STATE(2468)] = 66625, + [SMALL_STATE(2469)] = 66633, + [SMALL_STATE(2470)] = 66641, + [SMALL_STATE(2471)] = 66649, + [SMALL_STATE(2472)] = 66657, + [SMALL_STATE(2473)] = 66665, + [SMALL_STATE(2474)] = 66673, + [SMALL_STATE(2475)] = 66681, + [SMALL_STATE(2476)] = 66689, + [SMALL_STATE(2477)] = 66697, + [SMALL_STATE(2478)] = 66705, + [SMALL_STATE(2479)] = 66713, + [SMALL_STATE(2480)] = 66721, + [SMALL_STATE(2481)] = 66729, + [SMALL_STATE(2482)] = 66737, + [SMALL_STATE(2483)] = 66745, + [SMALL_STATE(2484)] = 66753, + [SMALL_STATE(2485)] = 66761, + [SMALL_STATE(2486)] = 66769, + [SMALL_STATE(2487)] = 66777, + [SMALL_STATE(2488)] = 66785, + [SMALL_STATE(2489)] = 66793, + [SMALL_STATE(2490)] = 66801, + [SMALL_STATE(2491)] = 66809, + [SMALL_STATE(2492)] = 66817, + [SMALL_STATE(2493)] = 66825, + [SMALL_STATE(2494)] = 66833, + [SMALL_STATE(2495)] = 66841, + [SMALL_STATE(2496)] = 66849, + [SMALL_STATE(2497)] = 66857, + [SMALL_STATE(2498)] = 66865, + [SMALL_STATE(2499)] = 66873, + [SMALL_STATE(2500)] = 66881, + [SMALL_STATE(2501)] = 66889, + [SMALL_STATE(2502)] = 66897, + [SMALL_STATE(2503)] = 66905, + [SMALL_STATE(2504)] = 66913, + [SMALL_STATE(2505)] = 66921, + [SMALL_STATE(2506)] = 66929, + [SMALL_STATE(2507)] = 66937, + [SMALL_STATE(2508)] = 66945, + [SMALL_STATE(2509)] = 66953, + [SMALL_STATE(2510)] = 66961, + [SMALL_STATE(2511)] = 66969, + [SMALL_STATE(2512)] = 66977, + [SMALL_STATE(2513)] = 66985, + [SMALL_STATE(2514)] = 66993, + [SMALL_STATE(2515)] = 67001, + [SMALL_STATE(2516)] = 67009, + [SMALL_STATE(2517)] = 67017, + [SMALL_STATE(2518)] = 67025, + [SMALL_STATE(2519)] = 67033, + [SMALL_STATE(2520)] = 67041, + [SMALL_STATE(2521)] = 67049, + [SMALL_STATE(2522)] = 67057, + [SMALL_STATE(2523)] = 67065, + [SMALL_STATE(2524)] = 67073, + [SMALL_STATE(2525)] = 67081, + [SMALL_STATE(2526)] = 67089, + [SMALL_STATE(2527)] = 67097, + [SMALL_STATE(2528)] = 67105, + [SMALL_STATE(2529)] = 67113, + [SMALL_STATE(2530)] = 67121, + [SMALL_STATE(2531)] = 67129, + [SMALL_STATE(2532)] = 67137, + [SMALL_STATE(2533)] = 67145, + [SMALL_STATE(2534)] = 67153, + [SMALL_STATE(2535)] = 67161, + [SMALL_STATE(2536)] = 67169, + [SMALL_STATE(2537)] = 67177, + [SMALL_STATE(2538)] = 67185, + [SMALL_STATE(2539)] = 67193, + [SMALL_STATE(2540)] = 67201, + [SMALL_STATE(2541)] = 67209, + [SMALL_STATE(2542)] = 67217, + [SMALL_STATE(2543)] = 67225, + [SMALL_STATE(2544)] = 67233, + [SMALL_STATE(2545)] = 67241, + [SMALL_STATE(2546)] = 67249, + [SMALL_STATE(2547)] = 67257, + [SMALL_STATE(2548)] = 67265, + [SMALL_STATE(2549)] = 67273, + [SMALL_STATE(2550)] = 67281, + [SMALL_STATE(2551)] = 67289, + [SMALL_STATE(2552)] = 67297, + [SMALL_STATE(2553)] = 67305, + [SMALL_STATE(2554)] = 67313, + [SMALL_STATE(2555)] = 67321, + [SMALL_STATE(2556)] = 67329, + [SMALL_STATE(2557)] = 67337, + [SMALL_STATE(2558)] = 67345, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -128544,212 +128506,212 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1150), - [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(442), - [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1884), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(43), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(33), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(130), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1104), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2497), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1518), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1481), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(773), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(763), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2482), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2205), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(621), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(40), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(628), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(589), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2208), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(181), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2472), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1335), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1913), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2462), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2460), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2456), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1162), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1471), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1301), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(36), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2241), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1463), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(631), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2418), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(96), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(561), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2262), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1053), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1833), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1048), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1042), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2356), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1345), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1042), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1136), + [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(270), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2062), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(39), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3), + [128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(35), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(130), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1074), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2495), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1509), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1510), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(779), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(771), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2480), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2188), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(617), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(42), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(629), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(613), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2194), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(178), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2470), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1337), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1862), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2460), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2458), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2454), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1165), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1479), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1304), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(36), + [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2227), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1453), + [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(640), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2416), + [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(96), + [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(562), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2253), + [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1046), + [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1839), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1110), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1065), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2354), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1349), + [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1065), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 19), - [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 19), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), [410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 94), - [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 94), - [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 28), - [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 28), - [428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), - [430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), - [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 137), - [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 137), - [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 32), - [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 32), - [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 35), - [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 35), - [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 14), - [446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 14), + [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), + [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), + [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), + [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), + [434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 133), + [436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 133), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), + [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), + [446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 219), - [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 219), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 215), + [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 215), [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), @@ -128760,2507 +128722,2506 @@ static const TSParseActionEntry ts_parse_actions[] = { [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(765), - [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(43), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(760), + [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(39), [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(8), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(33), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(10), + [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(35), [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(130), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1104), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2497), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2014), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1074), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2495), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1919), [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2297), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(773), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(785), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(613), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2295), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(779), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(839), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(620), [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(37), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2303), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2261), [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(179), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(24), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2295), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(23), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2293), [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(45), - [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(631), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2418), + [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(640), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2416), [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(96), [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(561), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(562), [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), - [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2262), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1053), - [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1833), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1048), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1042), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2356), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1042), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 102), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 102), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 62), - [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 62), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), - [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2253), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1046), + [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1839), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1110), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1065), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2354), + [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1065), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 58), + [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 58), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 98), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 98), [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 158), - [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 158), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 103), - [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 103), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 154), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 154), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 99), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 99), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(253), - [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(483), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(499), - [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(496), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2525), - [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(564), - [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1815), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(565), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(562), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2275), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(926), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1883), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2404), - [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1548), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1600), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1534), - [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2355), - [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2178), - [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(638), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(598), - [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2360), - [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1335), - [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1868), - [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2361), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2362), - [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2363), - [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1947), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1560), - [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1304), - [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2177), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1447), - [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(631), - [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2560), - [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2370), - [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1342), - [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2370), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 31), - [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 31), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 215), - [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 215), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 214), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 214), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 211), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 211), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 127), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 127), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 210), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 210), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 209), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 209), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 208), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 208), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 176), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 176), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 53), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 53), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 207), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 207), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 206), - [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 206), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 54), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 54), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 69), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 69), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 52), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 52), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 169), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 169), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 15), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 15), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 183), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 183), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 218), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 218), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 51), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 51), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 70), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 70), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 23), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 23), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 186), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 186), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 71), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 71), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 198), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 198), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 74), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 74), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 197), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 197), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 195), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 195), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 151), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 151), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 194), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 149), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 149), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 189), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 189), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 191), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 191), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 141), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 141), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 221), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 221), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 190), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 190), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 189), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 189), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 223), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 223), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(252), + [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(496), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), + [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(495), + [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(498), + [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2515), + [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(586), + [978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1822), + [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(581), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(563), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2272), + [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(949), + [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2064), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2393), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1559), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1594), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1525), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2353), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2172), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(634), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(597), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2358), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1337), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2126), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2359), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2360), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2361), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1945), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1528), + [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1301), + [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2169), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1426), + [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(640), + [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2357), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2368), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1352), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2368), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 236), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 236), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 210), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 210), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 209), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 209), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 208), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 208), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 207), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 207), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 123), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 123), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 206), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 206), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 205), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 205), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 204), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 204), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 172), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 172), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 203), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 203), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 220), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 220), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 165), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 165), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 212), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 212), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 199), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 199), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 198), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 198), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 197), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 197), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 213), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 213), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 162), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 162), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 182), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 182), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 214), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 214), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 194), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 194), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 193), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 193), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 191), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 191), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 147), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 147), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 190), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 190), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 145), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 145), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 187), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 187), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 186), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 186), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 185), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 185), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 185), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 185), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 217), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 217), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 219), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 219), [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 224), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 224), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 186), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 186), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 5), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 5), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 242), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 242), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 49), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 49), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 15), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 15), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 51), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 51), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 202), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 202), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 52), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 52), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 204), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 204), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 227), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 227), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 184), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 184), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 183), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 183), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 182), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 182), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 181), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 181), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 172), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 172), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 179), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 179), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 172), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 172), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 127), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 127), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 79), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 79), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 172), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 172), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 228), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 228), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 160), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 160), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 178), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 178), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 132), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 132), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 177), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 177), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 176), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 176), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 174), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 174), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 209), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 209), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 173), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 173), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 172), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 172), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 171), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 171), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 170), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 170), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 169), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 169), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 168), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 168), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 122), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 122), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 165), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 165), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 164), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 164), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 52), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 52), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 25), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 25), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 182), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 182), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 238), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 238), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 198), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 198), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 222), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 222), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 200), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 200), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 223), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 223), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 180), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 180), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 179), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 179), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 177), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 177), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 176), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 176), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 168), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 168), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 175), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 175), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 168), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 168), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 123), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 123), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 168), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 168), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 224), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 224), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 156), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 156), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 174), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 174), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 173), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 173), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 172), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 172), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 170), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 170), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 225), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 225), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 205), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 205), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 167), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 167), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 118), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 118), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 162), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 162), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 161), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 161), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 160), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 160), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 51), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 51), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 76), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 76), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 52), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 52), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 230), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 230), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 160), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 160), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 224), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 224), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 27), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 27), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 231), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 231), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 232), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 232), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 216), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 216), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 5), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 5), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 29), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 29), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 157), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 157), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 156), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 156), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 155), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 155), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 6), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 6), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 77), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 77), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 113), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 113), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 15), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 15), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 152), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 152), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 151), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 151), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 150), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 150), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 149), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 15), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 15), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 108), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 108), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 233), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 233), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 6), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 6), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 142), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 142), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 141), - [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 141), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 140), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 140), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 15), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 15), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 98), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 98), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 234), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 234), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 235), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 235), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 75), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 75), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 236), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 236), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 226), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 226), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 156), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 156), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 220), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 220), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 227), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 227), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 228), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 228), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 212), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 212), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 152), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 152), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 151), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 151), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 109), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 109), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 145), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 145), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 143), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 143), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 104), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 104), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 230), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 230), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 231), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 231), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 232), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 232), [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 228), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 228), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 5), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 5), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 51), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 51), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 52), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 52), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 64), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 64), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 49), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 49), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 237), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 237), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 78), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 78), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 238), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 234), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 234), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 216), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 216), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 136), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 136), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 135), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 135), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 241), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 241), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 127), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 127), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 125), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 125), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 127), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 127), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 134), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 134), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 125), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 125), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 79), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 79), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 127), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 127), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 125), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 125), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 238), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 133), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 133), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 132), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 132), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 224), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 224), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 233), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 233), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 234), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 234), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 235), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 235), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 230), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 230), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 211), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 211), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 237), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 237), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 121), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 121), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 121), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 121), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 234), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 234), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 121), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 121), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 127), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 127), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 126), - [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 126), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 125), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 125), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 124), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 124), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 64), - [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 64), - [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 123), - [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 123), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 122), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 122), - [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 97), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 97), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 121), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 121), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 120), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 120), - [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 119), - [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 119), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 97), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 97), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 118), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 118), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 97), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 97), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 52), - [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 52), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 15), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 15), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 117), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 117), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 79), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 79), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 96), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 96), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 5), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 5), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 86), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 86), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 103), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 103), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 116), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 116), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 114), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 114), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 49), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 49), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 113), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 113), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 111), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 111), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 69), - [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 69), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 79), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 79), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), - [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 90), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 90), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 100), - [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 100), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 53), - [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 53), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 99), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 99), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 40), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 40), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 98), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 98), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 91), - [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 91), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 79), - [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 79), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 79), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 79), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 92), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 92), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 49), - [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 49), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 97), - [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 97), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 5), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 5), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 99), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 99), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 110), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 110), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 107), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 107), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 105), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 105), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 96), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 96), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(485), - [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(507), + [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(506), [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(508), - [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(509), + [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(507), + [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(508), [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(485), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(599), - [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1804), - [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(600), + [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(596), + [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1788), + [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(610), [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(487), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(523), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(524), [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(539), - [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(505), - [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2533), - [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(564), - [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1815), - [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(565), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(523), + [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(522), + [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2474), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(586), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1822), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(581), [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(487), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1313), [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(560), - [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(563), - [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1355), - [2099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2310), - [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1757), - [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2376), - [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(619), - [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(631), - [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2544), - [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1457), - [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(591), - [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(618), - [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1427), - [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2212), - [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1375), - [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1814), - [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1360), - [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2078), - [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2078), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(558), + [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1362), + [2099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2257), + [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1823), + [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2372), + [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(616), + [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(640), + [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2542), + [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1466), + [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(615), + [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(588), + [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1443), + [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2170), + [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1391), + [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1775), + [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1364), + [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2076), + [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2076), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 185), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 185), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2376), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 181), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 181), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2372), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 4), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 4), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 21), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 21), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 21), - [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 21), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), - [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 41), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 41), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 22), - [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 22), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 37), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 37), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 36), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 36), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 22), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 22), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 42), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 37), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 6), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 13), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 38), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 48), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 38), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 47), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 47), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 46), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 46), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 112), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 112), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 73), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 73), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 72), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 72), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 39), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 17), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 17), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 20), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 20), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 26), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 26), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 108), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 108), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 154), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 154), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 64), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 64), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 9), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 9), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 64), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 64), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 63), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 63), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 158), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 158), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 158), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 130), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 130), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 115), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 115), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 103), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 103), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 103), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 44), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 44), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 65), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 65), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 138), - [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 138), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 93), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 93), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 110), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 110), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 23), - [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 23), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 65), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 65), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 146), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 146), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 107), - [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 107), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 104), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 104), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2514), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 148), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 148), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 95), - [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 95), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 153), - [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 153), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 65), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 65), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 196), - [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 196), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 149), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 149), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 144), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 144), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 142), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 142), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2512), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 154), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 154), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 154), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 111), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 111), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 106), + [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 106), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 103), + [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 103), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 100), + [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 100), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 99), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 99), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 99), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 192), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 192), + [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 43), - [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 43), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 34), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 11), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 43), - [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 43), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 7), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 7), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 33), - [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 33), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 45), - [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 45), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), + [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 117), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 117), - [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 33), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 128), - [3209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_let_chain, 1, .production_id = 3), REDUCE(sym__condition, 1, .dynamic_precedence = 1), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 131), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 158), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 220), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2, .production_id = 60), REDUCE(sym_binary_expression, 3, .production_id = 43), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 188), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 187), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 103), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 175), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 139), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 128), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 33), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2, .production_id = 60), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 3, .production_id = 33), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 103), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 216), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_let_chain, 1), REDUCE(sym__condition, 1, .dynamic_precedence = 1), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 154), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 184), + [3260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2), REDUCE(sym_binary_expression, 3, .production_id = 41), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 183), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 99), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 135), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 31), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 124), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 127), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 171), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 3, .production_id = 31), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 99), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 31), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 3, .production_id = 124), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 4), REDUCE(sym__pattern, 1), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 36), REDUCE(sym_scoped_type_identifier, 3, .production_id = 37), - [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 55), - [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 55), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [3582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 41), REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), - [3585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 59), - [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 59), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 56), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 56), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), - [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 57), - [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 57), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 56), - [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 56), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 57), - [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 57), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 56), - [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 56), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), - [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), - [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 57), - [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 57), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 57), - [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 57), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 56), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 56), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(611), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1551), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1547), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(501), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(490), - [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(493), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(500), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(483), + [3916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(493), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [3926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(594), + [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [3931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1554), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1544), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1, .production_id = 1), [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 1), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 5), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 50), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 69), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 56), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 56), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 199), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 65), - [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 64), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 23), - [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 23), - [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 199), - [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 161), - [4275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 225), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 64), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 107), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 225), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 107), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1359), - [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(188), - [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 161), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(592), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 89), - [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 88), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1828), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1163), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 129), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 116), - [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 1), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__built_in_attr_path, 1, .production_id = 1), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_chain, 2, .production_id = 18), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [4603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1549), - [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(52), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 58), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 30), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 45), - [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1303), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2, .production_id = 61), - [4660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2, .production_id = 61), SHIFT_REPEAT(83), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 66), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1555), - [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 29), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 67), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [4730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2, .production_id = 61), SHIFT_REPEAT(72), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(193), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 107), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 222), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [4798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(103), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 106), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1533), - [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 143), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 144), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 80), - [4834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 81), - [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 82), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1676), - [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 105), - [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 145), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(690), - [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [4868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 83), - [4870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(246), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2217), - [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 101), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 96), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), - [4912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1181), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [4923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(584), - [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 200), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 23), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 162), - [4986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 162), SHIFT_REPEAT(558), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 64), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 163), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [5007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1530), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 193), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 192), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 66), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 67), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 9), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 87), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [5212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 85), - [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 84), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1355), + [4256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(188), + [4259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 157), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 103), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [4288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 221), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), + [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 157), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 195), + [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 221), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 103), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 195), + [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 1), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), + [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1810), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1164), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(621), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 125), + [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 112), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(104), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), + [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(52), + [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [4585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1557), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), + [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), + [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), + [4624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1302), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [4633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1534), + [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(193), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), + [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [4677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1703), + [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 141), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [4694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [4696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(583), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(246), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [4710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2183), + [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 158), + [4771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 158), SHIFT_REPEAT(559), + [4774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 159), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [4794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1550), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 102), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1547), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [4840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(659), + [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__built_in_attr_path, 1, .production_id = 1), + [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2), SHIFT_REPEAT(72), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_chain, 2), + [4900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2), SHIFT_REPEAT(83), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 188), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 189), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 196), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), + [4967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1188), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 218), + [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 103), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), + [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 81), + [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 80), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 84), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 80), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 81), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [5310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 2, .production_id = 81), [5316] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_attr, 2, .production_id = 85), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [5416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 159), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_attr, 2, .production_id = 85), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [5462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 155), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), }; #ifdef __cplusplus From 0ff7ba968a3d949860c776feb95a8f34268821d5 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Thu, 3 Nov 2022 11:04:24 -0700 Subject: [PATCH 4/5] Avoid unnecessary conflict between let_chain and condition --- grammar.js | 9 +- src/grammar.json | 14 +- src/parser.c | 7419 +++++++++++++++++++++++----------------------- 3 files changed, 3719 insertions(+), 3723 deletions(-) diff --git a/grammar.js b/grammar.js index f9103cbf..96ffe7e2 100644 --- a/grammar.js +++ b/grammar.js @@ -77,7 +77,6 @@ module.exports = grammar({ [$.parameters, $._pattern], [$.parameters, $.tuple_struct_pattern], [$.type_parameters, $.for_lifetimes], - [$._condition, $.let_chain], [$.binary_expression, $.let_chain], ], @@ -1108,14 +1107,14 @@ module.exports = grammar({ field('value', prec.left(PREC.and, $._expression)) ), - let_chain: $ => sepBy1('&&', choice( + let_chain: $ => sepBy2('&&', choice( $.let_condition, prec.left(PREC.and, $._expression) )), _condition: $ => choice( prec.dynamic(1, $._expression), - prec.dynamic(1, $.let_condition), + $.let_condition, $.let_chain ), @@ -1476,6 +1475,10 @@ module.exports = grammar({ } }) +function sepBy2(sep, rule) { + return seq(rule, repeat1(seq(sep, rule))) +} + function sepBy1(sep, rule) { return seq(rule, repeat(seq(sep, rule))) } diff --git a/src/grammar.json b/src/grammar.json index 6c65d74d..fda2f07b 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -6409,7 +6409,7 @@ ] }, { - "type": "REPEAT", + "type": "REPEAT1", "content": { "type": "SEQ", "members": [ @@ -6451,12 +6451,8 @@ } }, { - "type": "PREC_DYNAMIC", - "value": 1, - "content": { - "type": "SYMBOL", - "name": "let_condition" - } + "type": "SYMBOL", + "name": "let_condition" }, { "type": "SYMBOL", @@ -8449,10 +8445,6 @@ "type_parameters", "for_lifetimes" ], - [ - "_condition", - "let_chain" - ], [ "binary_expression", "let_chain" diff --git a/src/parser.c b/src/parser.c index affdc018..53cd8a87 100644 --- a/src/parser.c +++ b/src/parser.c @@ -107689,11 +107689,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(3243), 1, anon_sym_LBRACE, - ACTIONS(3246), 1, + ACTIONS(3245), 1, anon_sym_EQ, - ACTIONS(3250), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, - ACTIONS(3252), 1, + ACTIONS(3251), 1, anon_sym_AMP_AMP, STATE(1867), 1, aux_sym_let_chain_repeat1, @@ -107709,7 +107709,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3207), 3, @@ -107721,7 +107721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107753,7 +107753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, + ACTIONS(3245), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, @@ -107782,7 +107782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107877,7 +107877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, ACTIONS(3229), 1, anon_sym_SEMI, - ACTIONS(3256), 1, + ACTIONS(3255), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, @@ -107937,7 +107937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, ACTIONS(3243), 1, anon_sym_EQ_GT, - ACTIONS(3258), 1, + ACTIONS(3257), 1, anon_sym_AMP_AMP, STATE(2023), 1, aux_sym_let_chain_repeat1, @@ -107999,9 +107999,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3260), 1, + ACTIONS(3259), 1, anon_sym_RBRACE, - ACTIONS(3262), 1, + ACTIONS(3261), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, @@ -108200,7 +108200,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3264), 2, + ACTIONS(3263), 2, anon_sym_RBRACE, anon_sym_COMMA, ACTIONS(2984), 3, @@ -108261,7 +108261,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3266), 2, + ACTIONS(3265), 2, anon_sym_RBRACE, anon_sym_COMMA, ACTIONS(2984), 3, @@ -108303,11 +108303,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, + ACTIONS(3245), 1, anon_sym_EQ, - ACTIONS(3250), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, - ACTIONS(3268), 1, + ACTIONS(3267), 1, anon_sym_LBRACE, STATE(1092), 1, sym_match_block, @@ -108323,7 +108323,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3207), 3, @@ -108335,7 +108335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108378,7 +108378,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3014), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3270), 2, + ACTIONS(3269), 2, anon_sym_EQ_GT, anon_sym_AMP_AMP, ACTIONS(2984), 3, @@ -108442,7 +108442,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3273), 2, + ACTIONS(3272), 2, anon_sym_RBRACE, anon_sym_COMMA, ACTIONS(2984), 3, @@ -108488,9 +108488,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3275), 1, + ACTIONS(3274), 1, anon_sym_RPAREN, - ACTIONS(3277), 1, + ACTIONS(3276), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, @@ -108609,9 +108609,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3279), 1, + ACTIONS(3278), 1, anon_sym_SEMI, - ACTIONS(3281), 1, + ACTIONS(3280), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, @@ -108686,7 +108686,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3283), 2, + ACTIONS(3282), 2, anon_sym_RBRACE, anon_sym_COMMA, ACTIONS(2984), 3, @@ -108734,7 +108734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, ACTIONS(3229), 1, anon_sym_SEMI, - ACTIONS(3285), 1, + ACTIONS(3284), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, @@ -108902,9 +108902,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, + ACTIONS(3245), 1, anon_sym_EQ, - ACTIONS(3250), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, STATE(218), 1, sym_block, @@ -108920,7 +108920,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3207), 3, @@ -108932,7 +108932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109023,9 +109023,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, + ACTIONS(3245), 1, anon_sym_EQ, - ACTIONS(3250), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, STATE(220), 1, sym_block, @@ -109041,7 +109041,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3207), 3, @@ -109053,7 +109053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109089,7 +109089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, ACTIONS(3229), 1, anon_sym_SEMI, - ACTIONS(3287), 1, + ACTIONS(3286), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, @@ -109149,9 +109149,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3289), 1, + ACTIONS(3288), 1, anon_sym_RBRACE, - ACTIONS(3291), 1, + ACTIONS(3290), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, @@ -109211,9 +109211,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3293), 1, + ACTIONS(3292), 1, anon_sym_SEMI, - ACTIONS(3295), 1, + ACTIONS(3294), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, @@ -109269,11 +109269,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, + ACTIONS(3245), 1, anon_sym_EQ, - ACTIONS(3250), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, - ACTIONS(3297), 1, + ACTIONS(3296), 1, anon_sym_LBRACE, STATE(81), 1, sym_match_block, @@ -109289,7 +109289,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3207), 3, @@ -109301,7 +109301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109337,7 +109337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, ACTIONS(3229), 1, anon_sym_SEMI, - ACTIONS(3299), 1, + ACTIONS(3298), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, @@ -109393,11 +109393,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, + ACTIONS(3245), 1, anon_sym_EQ, - ACTIONS(3250), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, - ACTIONS(3301), 1, + ACTIONS(3300), 1, anon_sym_LBRACE, STATE(221), 1, sym_match_block, @@ -109413,7 +109413,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3207), 3, @@ -109425,7 +109425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109598,19 +109598,19 @@ static const uint16_t ts_small_parse_table[] = { [43308] = 15, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3302), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3304), 1, anon_sym_LBRACE, - ACTIONS(3307), 1, + ACTIONS(3306), 1, anon_sym_RBRACE, - ACTIONS(3309), 1, + ACTIONS(3308), 1, anon_sym_STAR, - ACTIONS(3313), 1, + ACTIONS(3312), 1, anon_sym_COMMA, - ACTIONS(3315), 1, + ACTIONS(3314), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3318), 1, sym_metavariable, STATE(1709), 1, sym_scoped_identifier, @@ -109621,7 +109621,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3316), 3, sym_self, sym_super, sym_crate, @@ -109631,7 +109631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3310), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109683,7 +109683,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3270), 2, + ACTIONS(3269), 2, anon_sym_LBRACE, anon_sym_AMP_AMP, ACTIONS(3207), 3, @@ -109730,9 +109730,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, + ACTIONS(3245), 1, anon_sym_EQ, - ACTIONS(3250), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, STATE(879), 1, sym_block, @@ -109748,7 +109748,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3207), 3, @@ -109760,7 +109760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109794,9 +109794,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3321), 1, + ACTIONS(3320), 1, anon_sym_SEMI, - ACTIONS(3323), 1, + ACTIONS(3322), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, @@ -109854,9 +109854,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, + ACTIONS(3245), 1, anon_sym_EQ, - ACTIONS(3250), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, STATE(78), 1, sym_block, @@ -109872,7 +109872,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3207), 3, @@ -109884,7 +109884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109916,9 +109916,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, + ACTIONS(3245), 1, anon_sym_EQ, - ACTIONS(3250), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, STATE(1051), 1, sym_block, @@ -109934,7 +109934,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3207), 3, @@ -109946,7 +109946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109982,7 +109982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3277), 1, + ACTIONS(3276), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, @@ -110057,7 +110057,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3325), 2, + ACTIONS(3324), 2, anon_sym_RBRACE, anon_sym_COMMA, ACTIONS(2984), 3, @@ -110118,7 +110118,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 2, + ACTIONS(3326), 2, anon_sym_RPAREN, anon_sym_COMMA, ACTIONS(2984), 3, @@ -110164,9 +110164,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3329), 1, + ACTIONS(3328), 1, anon_sym_SEMI, - ACTIONS(3331), 1, + ACTIONS(3330), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, @@ -110228,7 +110228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3277), 1, + ACTIONS(3276), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, @@ -110288,9 +110288,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3333), 1, + ACTIONS(3332), 1, anon_sym_SEMI, - ACTIONS(3335), 1, + ACTIONS(3334), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, @@ -110348,9 +110348,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, + ACTIONS(3245), 1, anon_sym_EQ, - ACTIONS(3250), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, STATE(88), 1, sym_block, @@ -110366,7 +110366,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(3207), 3, @@ -110378,7 +110378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110469,7 +110469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, + ACTIONS(3245), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, @@ -110498,7 +110498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110547,7 +110547,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3337), 2, + ACTIONS(3336), 2, anon_sym_RBRACE, anon_sym_COMMA, ACTIONS(2984), 3, @@ -110608,7 +110608,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3339), 2, + ACTIONS(3338), 2, anon_sym_RBRACE, anon_sym_COMMA, ACTIONS(2984), 3, @@ -110669,7 +110669,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3341), 2, + ACTIONS(3340), 2, anon_sym_RBRACK, anon_sym_COMMA, ACTIONS(2984), 3, @@ -110715,9 +110715,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3343), 1, + ACTIONS(3342), 1, anon_sym_SEMI, - ACTIONS(3345), 1, + ACTIONS(3344), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, @@ -110790,7 +110790,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3347), 2, + ACTIONS(3346), 2, anon_sym_EQ_GT, anon_sym_AMP_AMP, ACTIONS(2984), 3, @@ -110836,7 +110836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3349), 1, + ACTIONS(3348), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, @@ -110896,7 +110896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3351), 1, + ACTIONS(3350), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, @@ -110956,7 +110956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3353), 1, + ACTIONS(3352), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, @@ -111016,7 +111016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3355), 1, + ACTIONS(3354), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -111070,9 +111070,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, + ACTIONS(3245), 1, anon_sym_EQ, - ACTIONS(3250), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, @@ -111086,10 +111086,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3357), 2, + ACTIONS(3356), 2, anon_sym_LBRACE, anon_sym_AMP_AMP, ACTIONS(3207), 3, @@ -111101,7 +111101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111115,17 +111115,17 @@ static const uint16_t ts_small_parse_table[] = { [45323] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3302), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3304), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3308), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3314), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3318), 1, sym_metavariable, - ACTIONS(3359), 1, + ACTIONS(3358), 1, anon_sym_RBRACE, STATE(1709), 1, sym_scoped_identifier, @@ -111136,7 +111136,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3316), 3, sym_self, sym_super, sym_crate, @@ -111146,7 +111146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3310), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111189,7 +111189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3361), 1, + ACTIONS(3360), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -111249,7 +111249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3363), 1, + ACTIONS(3362), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -111309,7 +111309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3365), 1, + ACTIONS(3364), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, @@ -111369,7 +111369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3367), 1, + ACTIONS(3366), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, @@ -111409,17 +111409,17 @@ static const uint16_t ts_small_parse_table[] = { [45711] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3302), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3304), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3308), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3314), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3318), 1, sym_metavariable, - ACTIONS(3369), 1, + ACTIONS(3368), 1, anon_sym_RBRACE, STATE(1709), 1, sym_scoped_identifier, @@ -111430,7 +111430,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3316), 3, sym_self, sym_super, sym_crate, @@ -111440,7 +111440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3310), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111483,7 +111483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3371), 1, + ACTIONS(3370), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, @@ -111543,7 +111543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3373), 1, + ACTIONS(3372), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -111603,7 +111603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3375), 1, + ACTIONS(3374), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -111663,7 +111663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3377), 1, + ACTIONS(3376), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, @@ -111723,7 +111723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3379), 1, + ACTIONS(3378), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, @@ -111843,7 +111843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3381), 1, + ACTIONS(3380), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -111916,7 +111916,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3357), 2, + ACTIONS(3356), 2, anon_sym_EQ_GT, anon_sym_AMP_AMP, ACTIONS(2984), 3, @@ -111962,7 +111962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3383), 1, + ACTIONS(3382), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -112022,7 +112022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3385), 1, + ACTIONS(3384), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, @@ -112082,7 +112082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3387), 1, + ACTIONS(3386), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, @@ -112142,7 +112142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3389), 1, + ACTIONS(3388), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -112202,7 +112202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3391), 1, + ACTIONS(3390), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -112262,7 +112262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3393), 1, + ACTIONS(3392), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -112322,7 +112322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3277), 1, + ACTIONS(3276), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, @@ -112382,7 +112382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3395), 1, + ACTIONS(3394), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -112436,9 +112436,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(3223), 1, anon_sym_CARET, - ACTIONS(3246), 1, + ACTIONS(3245), 1, anon_sym_EQ, - ACTIONS(3250), 1, + ACTIONS(3249), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, @@ -112452,10 +112452,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3248), 2, + ACTIONS(3247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3347), 2, + ACTIONS(3346), 2, anon_sym_LBRACE, anon_sym_AMP_AMP, ACTIONS(3207), 3, @@ -112467,7 +112467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3254), 10, + ACTIONS(3253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112501,7 +112501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3397), 1, + ACTIONS(3396), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -112541,15 +112541,15 @@ static const uint16_t ts_small_parse_table[] = { [47215] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3302), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3304), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3308), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3314), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3318), 1, sym_metavariable, STATE(1709), 1, sym_scoped_identifier, @@ -112560,7 +112560,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3316), 3, sym_self, sym_super, sym_crate, @@ -112570,7 +112570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3310), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112593,15 +112593,15 @@ static const uint16_t ts_small_parse_table[] = { [47280] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3302), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3304), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3308), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3314), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3318), 1, sym_metavariable, STATE(1709), 1, sym_scoped_identifier, @@ -112612,7 +112612,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3316), 3, sym_self, sym_super, sym_crate, @@ -112622,7 +112622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3310), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112645,15 +112645,15 @@ static const uint16_t ts_small_parse_table[] = { [47345] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3302), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3304), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3308), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3314), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3318), 1, sym_metavariable, STATE(1709), 1, sym_scoped_identifier, @@ -112664,7 +112664,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3316), 3, sym_self, sym_super, sym_crate, @@ -112674,7 +112674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3310), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112697,15 +112697,15 @@ static const uint16_t ts_small_parse_table[] = { [47410] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3302), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3304), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3308), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3314), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3318), 1, sym_metavariable, STATE(1709), 1, sym_scoped_identifier, @@ -112716,7 +112716,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3316), 3, sym_self, sym_super, sym_crate, @@ -112726,7 +112726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3310), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112749,15 +112749,15 @@ static const uint16_t ts_small_parse_table[] = { [47475] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3303), 1, + ACTIONS(3302), 1, sym_identifier, - ACTIONS(3305), 1, + ACTIONS(3304), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, + ACTIONS(3308), 1, anon_sym_STAR, - ACTIONS(3315), 1, + ACTIONS(3314), 1, anon_sym_COLON_COLON, - ACTIONS(3319), 1, + ACTIONS(3318), 1, sym_metavariable, STATE(1709), 1, sym_scoped_identifier, @@ -112768,7 +112768,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3317), 3, + ACTIONS(3316), 3, sym_self, sym_super, sym_crate, @@ -112778,7 +112778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3311), 19, + ACTIONS(3310), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112802,11 +112802,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3401), 3, + ACTIONS(3400), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3399), 28, + ACTIONS(3398), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112839,11 +112839,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3405), 3, + ACTIONS(3404), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3403), 28, + ACTIONS(3402), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112876,11 +112876,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3409), 3, + ACTIONS(3408), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3407), 28, + ACTIONS(3406), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112914,9 +112914,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(959), 1, anon_sym_COLON_COLON, - ACTIONS(3411), 1, + ACTIONS(3410), 1, sym_identifier, - ACTIONS(3417), 1, + ACTIONS(3416), 1, sym_metavariable, STATE(1576), 1, sym_scoped_identifier, @@ -112929,11 +112929,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3415), 3, + ACTIONS(3414), 3, sym_self, sym_super, sym_crate, - ACTIONS(3413), 19, + ACTIONS(3412), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112958,9 +112958,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(959), 1, anon_sym_COLON_COLON, - ACTIONS(3411), 1, + ACTIONS(3410), 1, sym_identifier, - ACTIONS(3417), 1, + ACTIONS(3416), 1, sym_metavariable, STATE(1576), 1, sym_scoped_identifier, @@ -112973,11 +112973,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3415), 3, + ACTIONS(3414), 3, sym_self, sym_super, sym_crate, - ACTIONS(3413), 19, + ACTIONS(3412), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113002,9 +113002,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(959), 1, anon_sym_COLON_COLON, - ACTIONS(3411), 1, + ACTIONS(3410), 1, sym_identifier, - ACTIONS(3417), 1, + ACTIONS(3416), 1, sym_metavariable, STATE(1576), 1, sym_scoped_identifier, @@ -113017,11 +113017,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3415), 3, + ACTIONS(3414), 3, sym_self, sym_super, sym_crate, - ACTIONS(3413), 19, + ACTIONS(3412), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113046,9 +113046,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(959), 1, anon_sym_COLON_COLON, - ACTIONS(3411), 1, + ACTIONS(3410), 1, sym_identifier, - ACTIONS(3417), 1, + ACTIONS(3416), 1, sym_metavariable, STATE(1576), 1, sym_scoped_identifier, @@ -113061,11 +113061,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3415), 3, + ACTIONS(3414), 3, sym_self, sym_super, sym_crate, - ACTIONS(3413), 19, + ACTIONS(3412), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113090,9 +113090,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(959), 1, anon_sym_COLON_COLON, - ACTIONS(3411), 1, + ACTIONS(3410), 1, sym_identifier, - ACTIONS(3417), 1, + ACTIONS(3416), 1, sym_metavariable, STATE(1576), 1, sym_scoped_identifier, @@ -113105,11 +113105,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3415), 3, + ACTIONS(3414), 3, sym_self, sym_super, sym_crate, - ACTIONS(3413), 19, + ACTIONS(3412), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113134,9 +113134,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(959), 1, anon_sym_COLON_COLON, - ACTIONS(3411), 1, + ACTIONS(3410), 1, sym_identifier, - ACTIONS(3417), 1, + ACTIONS(3416), 1, sym_metavariable, STATE(1576), 1, sym_scoped_identifier, @@ -113149,11 +113149,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3415), 3, + ACTIONS(3414), 3, sym_self, sym_super, sym_crate, - ACTIONS(3413), 19, + ACTIONS(3412), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113178,9 +113178,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(959), 1, anon_sym_COLON_COLON, - ACTIONS(3411), 1, + ACTIONS(3410), 1, sym_identifier, - ACTIONS(3417), 1, + ACTIONS(3416), 1, sym_metavariable, STATE(1576), 1, sym_scoped_identifier, @@ -113193,11 +113193,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3415), 3, + ACTIONS(3414), 3, sym_self, sym_super, sym_crate, - ACTIONS(3413), 19, + ACTIONS(3412), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113222,9 +113222,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(959), 1, anon_sym_COLON_COLON, - ACTIONS(3419), 1, + ACTIONS(3418), 1, sym_identifier, - ACTIONS(3425), 1, + ACTIONS(3424), 1, sym_metavariable, STATE(2132), 1, sym_scoped_identifier, @@ -113235,11 +113235,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3423), 3, + ACTIONS(3422), 3, sym_self, sym_super, sym_crate, - ACTIONS(3421), 19, + ACTIONS(3420), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113264,9 +113264,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(959), 1, anon_sym_COLON_COLON, - ACTIONS(3427), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(3433), 1, + ACTIONS(3432), 1, sym_metavariable, STATE(2143), 1, sym_scoped_identifier, @@ -113277,11 +113277,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3431), 3, + ACTIONS(3430), 3, sym_self, sym_super, sym_crate, - ACTIONS(3429), 19, + ACTIONS(3428), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113358,30 +113358,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [48211] = 11, - ACTIONS(3437), 1, + ACTIONS(3436), 1, anon_sym_LPAREN, - ACTIONS(3439), 1, + ACTIONS(3438), 1, anon_sym_LBRACE, - ACTIONS(3443), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3445), 1, + ACTIONS(3444), 1, anon_sym_COLON_COLON, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3451), 1, + ACTIONS(3450), 1, anon_sym_AT, STATE(1347), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 2, + ACTIONS(3440), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3435), 10, + ACTIONS(3434), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113395,13 +113395,13 @@ static const uint16_t ts_small_parse_table[] = { [48257] = 9, ACTIONS(2554), 1, anon_sym_COLON, - ACTIONS(3443), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, + ACTIONS(3454), 1, anon_sym_COLON_COLON, STATE(1347), 1, sym_type_arguments, @@ -113557,11 +113557,11 @@ static const uint16_t ts_small_parse_table[] = { [48448] = 8, ACTIONS(2568), 1, anon_sym_COLON, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, + ACTIONS(3454), 1, anon_sym_COLON_COLON, STATE(1347), 1, sym_type_arguments, @@ -113613,11 +113613,11 @@ static const uint16_t ts_small_parse_table[] = { [48516] = 8, ACTIONS(2564), 1, anon_sym_COLON, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, + ACTIONS(3454), 1, anon_sym_COLON_COLON, STATE(1347), 1, sym_type_arguments, @@ -113765,9 +113765,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [48695] = 6, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, STATE(1343), 1, sym_type_arguments, @@ -113792,9 +113792,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_PIPE, [48728] = 6, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, STATE(1343), 1, sym_type_arguments, @@ -113819,9 +113819,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_PIPE, [48761] = 6, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, STATE(1343), 1, sym_type_arguments, @@ -113915,29 +113915,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [48872] = 17, - ACTIONS(3459), 1, + ACTIONS(3458), 1, anon_sym_const, - ACTIONS(3461), 1, + ACTIONS(3460), 1, anon_sym_enum, - ACTIONS(3463), 1, + ACTIONS(3462), 1, anon_sym_fn, - ACTIONS(3465), 1, + ACTIONS(3464), 1, anon_sym_mod, - ACTIONS(3467), 1, + ACTIONS(3466), 1, anon_sym_static, - ACTIONS(3469), 1, + ACTIONS(3468), 1, anon_sym_struct, - ACTIONS(3471), 1, + ACTIONS(3470), 1, anon_sym_trait, - ACTIONS(3473), 1, + ACTIONS(3472), 1, anon_sym_type, - ACTIONS(3475), 1, + ACTIONS(3474), 1, anon_sym_union, - ACTIONS(3477), 1, + ACTIONS(3476), 1, anon_sym_unsafe, - ACTIONS(3479), 1, + ACTIONS(3478), 1, anon_sym_use, - ACTIONS(3481), 1, + ACTIONS(3480), 1, anon_sym_extern, STATE(1487), 1, sym_extern_modifier, @@ -113948,7 +113948,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, + ACTIONS(3456), 2, anon_sym_async, anon_sym_default, [48926] = 2, @@ -113997,29 +113997,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [48976] = 17, - ACTIONS(3483), 1, + ACTIONS(3482), 1, anon_sym_const, - ACTIONS(3485), 1, + ACTIONS(3484), 1, anon_sym_enum, - ACTIONS(3487), 1, + ACTIONS(3486), 1, anon_sym_fn, - ACTIONS(3489), 1, + ACTIONS(3488), 1, anon_sym_mod, - ACTIONS(3491), 1, + ACTIONS(3490), 1, anon_sym_static, - ACTIONS(3493), 1, + ACTIONS(3492), 1, anon_sym_struct, - ACTIONS(3495), 1, + ACTIONS(3494), 1, anon_sym_trait, - ACTIONS(3497), 1, + ACTIONS(3496), 1, anon_sym_type, - ACTIONS(3499), 1, + ACTIONS(3498), 1, anon_sym_union, - ACTIONS(3501), 1, + ACTIONS(3500), 1, anon_sym_unsafe, - ACTIONS(3503), 1, + ACTIONS(3502), 1, anon_sym_use, - ACTIONS(3505), 1, + ACTIONS(3504), 1, anon_sym_extern, STATE(1511), 1, sym_extern_modifier, @@ -114030,26 +114030,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3457), 2, + ACTIONS(3456), 2, anon_sym_async, anon_sym_default, [49030] = 7, - ACTIONS(3437), 1, + ACTIONS(3436), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3507), 1, + ACTIONS(3506), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3441), 2, + ACTIONS(3440), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3435), 10, + ACTIONS(3434), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114104,7 +114104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, sym_self, [49112] = 3, - ACTIONS(3509), 1, + ACTIONS(3508), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, @@ -114214,20 +114214,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_PIPE, [49237] = 6, - ACTIONS(3515), 1, + ACTIONS(3514), 1, anon_sym_BANG, - ACTIONS(3517), 1, + ACTIONS(3516), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3513), 2, + ACTIONS(3512), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3519), 2, + ACTIONS(3518), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3511), 10, + ACTIONS(3510), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114259,7 +114259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, sym_identifier, [49290] = 3, - ACTIONS(3521), 1, + ACTIONS(3520), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, @@ -114280,7 +114280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_PIPE, [49314] = 3, - ACTIONS(3523), 1, + ACTIONS(3522), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, @@ -114301,7 +114301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_PIPE, [49338] = 3, - ACTIONS(3525), 1, + ACTIONS(3524), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, @@ -114344,7 +114344,7 @@ static const uint16_t ts_small_parse_table[] = { [49384] = 4, ACTIONS(2616), 1, anon_sym_COLON, - ACTIONS(3527), 1, + ACTIONS(3526), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -114364,21 +114364,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_PIPE, [49410] = 13, - ACTIONS(3435), 1, + ACTIONS(3434), 1, anon_sym_PIPE, - ACTIONS(3439), 1, + ACTIONS(3438), 1, anon_sym_LBRACE, - ACTIONS(3441), 1, + ACTIONS(3440), 1, anon_sym_COLON, - ACTIONS(3443), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3451), 1, + ACTIONS(3450), 1, anon_sym_AT, - ACTIONS(3529), 1, + ACTIONS(3528), 1, anon_sym_LPAREN, - ACTIONS(3531), 1, + ACTIONS(3530), 1, anon_sym_COLON_COLON, STATE(1347), 1, sym_type_arguments, @@ -114387,7 +114387,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(2550), 3, @@ -114395,7 +114395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_COMMA, [49454] = 3, - ACTIONS(3533), 1, + ACTIONS(3532), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -114416,7 +114416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, [49478] = 3, - ACTIONS(3535), 1, + ACTIONS(3534), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, @@ -114439,7 +114439,7 @@ static const uint16_t ts_small_parse_table[] = { [49502] = 4, ACTIONS(2600), 1, anon_sym_COLON, - ACTIONS(3527), 1, + ACTIONS(3526), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -114481,7 +114481,7 @@ static const uint16_t ts_small_parse_table[] = { [49550] = 4, ACTIONS(2588), 1, anon_sym_COLON, - ACTIONS(3527), 1, + ACTIONS(3526), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -114503,7 +114503,7 @@ static const uint16_t ts_small_parse_table[] = { [49576] = 4, ACTIONS(2588), 1, anon_sym_COLON, - ACTIONS(3537), 1, + ACTIONS(3536), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -114523,18 +114523,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_PIPE, [49602] = 5, - ACTIONS(3517), 1, + ACTIONS(3516), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3513), 2, + ACTIONS(3512), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3519), 2, + ACTIONS(3518), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3511), 10, + ACTIONS(3510), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114650,7 +114650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, [49748] = 3, - ACTIONS(3539), 1, + ACTIONS(3538), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, @@ -114693,21 +114693,21 @@ static const uint16_t ts_small_parse_table[] = { [49794] = 14, ACTIONS(2550), 1, anon_sym_PLUS, - ACTIONS(3435), 1, + ACTIONS(3434), 1, anon_sym_PIPE, - ACTIONS(3439), 1, + ACTIONS(3438), 1, anon_sym_LBRACE, - ACTIONS(3441), 1, + ACTIONS(3440), 1, anon_sym_COLON, - ACTIONS(3443), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3451), 1, + ACTIONS(3450), 1, anon_sym_AT, - ACTIONS(3541), 1, + ACTIONS(3540), 1, anon_sym_LPAREN, - ACTIONS(3546), 1, + ACTIONS(3545), 1, anon_sym_COLON_COLON, STATE(1347), 1, sym_type_arguments, @@ -114716,26 +114716,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3543), 2, + ACTIONS(3542), 2, anon_sym_RPAREN, anon_sym_COMMA, [49840] = 13, - ACTIONS(3439), 1, + ACTIONS(3438), 1, anon_sym_LBRACE, - ACTIONS(3443), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3451), 1, + ACTIONS(3450), 1, anon_sym_AT, - ACTIONS(3543), 1, + ACTIONS(3542), 1, anon_sym_RBRACK, - ACTIONS(3548), 1, + ACTIONS(3547), 1, anon_sym_LPAREN, - ACTIONS(3550), 1, + ACTIONS(3549), 1, anon_sym_COLON_COLON, STATE(1347), 1, sym_type_arguments, @@ -114747,14 +114747,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2550), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3435), 2, + ACTIONS(3434), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, [49884] = 3, - ACTIONS(3552), 1, + ACTIONS(3551), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, @@ -114775,7 +114775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_PIPE, [49908] = 3, - ACTIONS(3554), 1, + ACTIONS(3553), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, @@ -114988,14 +114988,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_PIPE, [50144] = 4, - ACTIONS(3558), 1, + ACTIONS(3557), 1, anon_sym_pat, STATE(570), 1, sym_fragment_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3556), 12, + ACTIONS(3555), 12, anon_sym_block, anon_sym_expr, anon_sym_ident, @@ -115009,19 +115009,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ty, anon_sym_vis, [50169] = 7, - ACTIONS(3513), 1, + ACTIONS(3512), 1, anon_sym_COLON, - ACTIONS(3515), 1, + ACTIONS(3514), 1, anon_sym_BANG, - ACTIONS(3560), 1, + ACTIONS(3559), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3519), 2, + ACTIONS(3518), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3511), 3, + ACTIONS(3510), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, @@ -115033,15 +115033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, [50200] = 4, - ACTIONS(3441), 1, + ACTIONS(3440), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3435), 11, + ACTIONS(3434), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115130,12 +115130,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_PIPE, [50309] = 3, - ACTIONS(3564), 1, + ACTIONS(3563), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3562), 13, + ACTIONS(3561), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115264,21 +115264,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_PIPE, [50458] = 14, - ACTIONS(3443), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, + ACTIONS(3454), 1, anon_sym_COLON_COLON, - ACTIONS(3566), 1, + ACTIONS(3565), 1, anon_sym_COLON, - ACTIONS(3568), 1, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3570), 1, + ACTIONS(3569), 1, anon_sym_COMMA, - ACTIONS(3572), 1, + ACTIONS(3571), 1, anon_sym_GT, STATE(1347), 1, sym_type_arguments, @@ -115295,12 +115295,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_as, [50503] = 3, - ACTIONS(3576), 1, + ACTIONS(3575), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3574), 13, + ACTIONS(3573), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115430,15 +115430,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_PIPE, [50654] = 4, - ACTIONS(3582), 1, + ACTIONS(3581), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3580), 2, + ACTIONS(3579), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3578), 10, + ACTIONS(3577), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115450,15 +115450,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [50678] = 4, - ACTIONS(3588), 1, + ACTIONS(3587), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3586), 2, + ACTIONS(3585), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3584), 10, + ACTIONS(3583), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115470,15 +115470,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [50702] = 4, - ACTIONS(3594), 1, + ACTIONS(3593), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3592), 2, + ACTIONS(3591), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3590), 10, + ACTIONS(3589), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115490,15 +115490,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [50726] = 4, - ACTIONS(3533), 1, + ACTIONS(3532), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3580), 2, + ACTIONS(3579), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3578), 10, + ACTIONS(3577), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115510,15 +115510,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [50750] = 4, - ACTIONS(3533), 1, + ACTIONS(3532), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3592), 2, + ACTIONS(3591), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3590), 10, + ACTIONS(3589), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115549,15 +115549,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [50796] = 4, - ACTIONS(3594), 1, + ACTIONS(3593), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3580), 2, + ACTIONS(3579), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3578), 10, + ACTIONS(3577), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115569,15 +115569,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [50820] = 4, - ACTIONS(3588), 1, + ACTIONS(3587), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3598), 2, + ACTIONS(3597), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3596), 10, + ACTIONS(3595), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115589,17 +115589,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [50844] = 6, - ACTIONS(3515), 1, + ACTIONS(3514), 1, anon_sym_BANG, - ACTIONS(3600), 1, + ACTIONS(3599), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3519), 2, + ACTIONS(3518), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3511), 3, + ACTIONS(3510), 3, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_PIPE, @@ -115649,15 +115649,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [50916] = 4, - ACTIONS(3582), 1, + ACTIONS(3581), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3592), 2, + ACTIONS(3591), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3590), 10, + ACTIONS(3589), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115669,12 +115669,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [50940] = 3, - ACTIONS(3604), 1, + ACTIONS(3603), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3602), 11, + ACTIONS(3601), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115690,7 +115690,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3606), 2, + ACTIONS(3605), 2, anon_sym_LPAREN, anon_sym_RBRACK, ACTIONS(2606), 4, @@ -115706,12 +115706,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [50984] = 3, - ACTIONS(3611), 1, + ACTIONS(3610), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3609), 11, + ACTIONS(3608), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115724,12 +115724,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51005] = 3, - ACTIONS(3615), 1, + ACTIONS(3614), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3613), 11, + ACTIONS(3612), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115745,7 +115745,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3617), 2, + ACTIONS(3616), 2, anon_sym_LPAREN, anon_sym_RBRACK, ACTIONS(2590), 4, @@ -115761,12 +115761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [51049] = 3, - ACTIONS(3592), 1, + ACTIONS(3591), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3590), 11, + ACTIONS(3589), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115779,12 +115779,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51070] = 3, - ACTIONS(3622), 1, + ACTIONS(3621), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3620), 11, + ACTIONS(3619), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115797,12 +115797,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51091] = 3, - ACTIONS(3626), 1, + ACTIONS(3625), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3624), 11, + ACTIONS(3623), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115818,7 +115818,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3628), 2, + ACTIONS(3627), 2, anon_sym_LPAREN, anon_sym_RBRACK, ACTIONS(2578), 4, @@ -115834,12 +115834,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [51135] = 3, - ACTIONS(3633), 1, + ACTIONS(3632), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3631), 11, + ACTIONS(3630), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115861,7 +115861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3606), 3, + ACTIONS(3605), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -115881,7 +115881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3635), 3, + ACTIONS(3634), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -115892,12 +115892,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [51206] = 3, - ACTIONS(3640), 1, + ACTIONS(3639), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3638), 11, + ACTIONS(3637), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115910,12 +115910,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51227] = 3, - ACTIONS(3644), 1, + ACTIONS(3643), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3642), 11, + ACTIONS(3641), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115928,12 +115928,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51248] = 3, - ACTIONS(3648), 1, + ACTIONS(3647), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3646), 11, + ACTIONS(3645), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115948,7 +115948,7 @@ static const uint16_t ts_small_parse_table[] = { [51269] = 5, ACTIONS(2594), 1, anon_sym_COLON, - ACTIONS(3617), 1, + ACTIONS(3616), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, @@ -115966,12 +115966,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [51294] = 3, - ACTIONS(3652), 1, + ACTIONS(3651), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3650), 11, + ACTIONS(3649), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115984,12 +115984,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51315] = 3, - ACTIONS(3656), 1, + ACTIONS(3655), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3654), 11, + ACTIONS(3653), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116002,12 +116002,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51336] = 3, - ACTIONS(3660), 1, + ACTIONS(3659), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3658), 11, + ACTIONS(3657), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116020,12 +116020,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51357] = 3, - ACTIONS(3580), 1, + ACTIONS(3579), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3578), 11, + ACTIONS(3577), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116038,12 +116038,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51378] = 3, - ACTIONS(3664), 1, + ACTIONS(3663), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3662), 11, + ACTIONS(3661), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116056,12 +116056,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51399] = 3, - ACTIONS(3668), 1, + ACTIONS(3667), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3666), 11, + ACTIONS(3665), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116074,12 +116074,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51420] = 3, - ACTIONS(3672), 1, + ACTIONS(3671), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3670), 11, + ACTIONS(3669), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116094,7 +116094,7 @@ static const uint16_t ts_small_parse_table[] = { [51441] = 5, ACTIONS(2582), 1, anon_sym_COLON, - ACTIONS(3628), 1, + ACTIONS(3627), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, @@ -116112,12 +116112,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [51466] = 3, - ACTIONS(3676), 1, + ACTIONS(3675), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3674), 11, + ACTIONS(3673), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116139,7 +116139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3628), 3, + ACTIONS(3627), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -116152,7 +116152,7 @@ static const uint16_t ts_small_parse_table[] = { [51512] = 5, ACTIONS(2610), 1, anon_sym_COLON, - ACTIONS(3606), 1, + ACTIONS(3605), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, @@ -116170,12 +116170,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [51537] = 3, - ACTIONS(3680), 1, + ACTIONS(3679), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3678), 11, + ACTIONS(3677), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116190,7 +116190,7 @@ static const uint16_t ts_small_parse_table[] = { [51558] = 5, ACTIONS(2574), 1, anon_sym_COLON, - ACTIONS(3635), 1, + ACTIONS(3634), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, @@ -116208,12 +116208,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [51583] = 3, - ACTIONS(3684), 1, + ACTIONS(3683), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3682), 11, + ACTIONS(3681), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116229,7 +116229,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3635), 2, + ACTIONS(3634), 2, anon_sym_LPAREN, anon_sym_RBRACK, ACTIONS(2570), 4, @@ -116245,12 +116245,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [51627] = 3, - ACTIONS(3688), 1, + ACTIONS(3687), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3686), 11, + ACTIONS(3685), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116263,12 +116263,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51648] = 3, - ACTIONS(3692), 1, + ACTIONS(3691), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3690), 11, + ACTIONS(3689), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116281,12 +116281,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51669] = 3, - ACTIONS(3696), 1, + ACTIONS(3695), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3694), 11, + ACTIONS(3693), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116317,12 +116317,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51711] = 3, - ACTIONS(3700), 1, + ACTIONS(3699), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3698), 11, + ACTIONS(3697), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116335,12 +116335,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51732] = 3, - ACTIONS(3704), 1, + ACTIONS(3703), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3702), 11, + ACTIONS(3701), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116353,12 +116353,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51753] = 3, - ACTIONS(3708), 1, + ACTIONS(3707), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3706), 11, + ACTIONS(3705), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116371,12 +116371,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51774] = 3, - ACTIONS(3441), 1, + ACTIONS(3440), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 11, + ACTIONS(3434), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116389,18 +116389,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51795] = 7, - ACTIONS(3511), 1, + ACTIONS(3510), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3512), 1, anon_sym_COLON, - ACTIONS(3515), 1, + ACTIONS(3514), 1, anon_sym_BANG, - ACTIONS(3710), 1, + ACTIONS(3709), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3519), 2, + ACTIONS(3518), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(2630), 6, @@ -116420,7 +116420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3617), 3, + ACTIONS(3616), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -116431,12 +116431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [51849] = 3, - ACTIONS(3714), 1, + ACTIONS(3713), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3712), 11, + ACTIONS(3711), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116449,12 +116449,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51870] = 3, - ACTIONS(3718), 1, + ACTIONS(3717), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3716), 11, + ACTIONS(3715), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116467,12 +116467,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51891] = 3, - ACTIONS(3722), 1, + ACTIONS(3721), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3720), 11, + ACTIONS(3719), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116485,15 +116485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [51912] = 9, - ACTIONS(3443), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, + ACTIONS(3454), 1, anon_sym_COLON_COLON, - ACTIONS(3724), 1, + ACTIONS(3723), 1, anon_sym_for, STATE(1347), 1, sym_type_arguments, @@ -116508,15 +116508,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_where, [51944] = 9, - ACTIONS(3443), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, + ACTIONS(3454), 1, anon_sym_COLON_COLON, - ACTIONS(3726), 1, + ACTIONS(3725), 1, anon_sym_for, STATE(1347), 1, sym_type_arguments, @@ -116531,15 +116531,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_where, [51976] = 9, - ACTIONS(3443), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, + ACTIONS(3454), 1, anon_sym_COLON_COLON, - ACTIONS(3728), 1, + ACTIONS(3727), 1, anon_sym_for, STATE(1347), 1, sym_type_arguments, @@ -116554,15 +116554,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_where, [52008] = 9, - ACTIONS(3443), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, + ACTIONS(3454), 1, anon_sym_COLON_COLON, - ACTIONS(3730), 1, + ACTIONS(3729), 1, anon_sym_for, STATE(1347), 1, sym_type_arguments, @@ -116577,15 +116577,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_where, [52040] = 9, - ACTIONS(3443), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, + ACTIONS(3454), 1, anon_sym_COLON_COLON, - ACTIONS(3732), 1, + ACTIONS(3731), 1, anon_sym_for, STATE(1347), 1, sym_type_arguments, @@ -116602,14 +116602,14 @@ static const uint16_t ts_small_parse_table[] = { [52072] = 5, ACTIONS(706), 1, aux_sym_string_literal_token1, - ACTIONS(3736), 1, + ACTIONS(3735), 1, sym_crate, STATE(1552), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3734), 8, + ACTIONS(3733), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -116619,15 +116619,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, [52096] = 9, - ACTIONS(3443), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, + ACTIONS(3454), 1, anon_sym_COLON_COLON, - ACTIONS(3738), 1, + ACTIONS(3737), 1, anon_sym_for, STATE(1347), 1, sym_type_arguments, @@ -116644,14 +116644,14 @@ static const uint16_t ts_small_parse_table[] = { [52128] = 5, ACTIONS(706), 1, aux_sym_string_literal_token1, - ACTIONS(3740), 1, + ACTIONS(3739), 1, sym_crate, STATE(1552), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3734), 8, + ACTIONS(3733), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -116661,15 +116661,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, [52152] = 9, - ACTIONS(3443), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, + ACTIONS(3454), 1, anon_sym_COLON_COLON, - ACTIONS(3742), 1, + ACTIONS(3741), 1, anon_sym_for, STATE(1347), 1, sym_type_arguments, @@ -116684,15 +116684,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_where, [52184] = 9, - ACTIONS(3443), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, + ACTIONS(3454), 1, anon_sym_COLON_COLON, - ACTIONS(3744), 1, + ACTIONS(3743), 1, anon_sym_for, STATE(1347), 1, sym_type_arguments, @@ -116709,14 +116709,14 @@ static const uint16_t ts_small_parse_table[] = { [52216] = 5, ACTIONS(706), 1, aux_sym_string_literal_token1, - ACTIONS(3746), 1, + ACTIONS(3745), 1, sym_crate, STATE(1552), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3734), 8, + ACTIONS(3733), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -116728,14 +116728,14 @@ static const uint16_t ts_small_parse_table[] = { [52240] = 5, ACTIONS(706), 1, aux_sym_string_literal_token1, - ACTIONS(3748), 1, + ACTIONS(3747), 1, sym_crate, STATE(1552), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3734), 8, + ACTIONS(3733), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -116749,13 +116749,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3749), 1, sym_identifier, - ACTIONS(3752), 1, + ACTIONS(3751), 1, anon_sym_RBRACE, - ACTIONS(3754), 1, + ACTIONS(3753), 1, anon_sym_COMMA, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, STATE(2103), 1, sym_field_declaration, @@ -116770,9 +116770,9 @@ static const uint16_t ts_small_parse_table[] = { [52297] = 6, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3471), 1, + ACTIONS(3470), 1, anon_sym_trait, - ACTIONS(3758), 1, + ACTIONS(3757), 1, anon_sym_impl, STATE(75), 1, sym_block, @@ -116789,13 +116789,13 @@ static const uint16_t ts_small_parse_table[] = { [52322] = 8, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3760), 1, + ACTIONS(3759), 1, sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3761), 1, anon_sym_RBRACE, - ACTIONS(3764), 1, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(3766), 1, + ACTIONS(3765), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, @@ -116812,13 +116812,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, - ACTIONS(3768), 1, + ACTIONS(3767), 1, sym_identifier, - ACTIONS(3770), 1, + ACTIONS(3769), 1, anon_sym_RBRACE, - ACTIONS(3772), 1, + ACTIONS(3771), 1, anon_sym_COMMA, STATE(2077), 1, sym_enum_variant, @@ -116831,15 +116831,15 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_item, aux_sym_enum_variant_list_repeat1, [52384] = 9, - ACTIONS(3443), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, + ACTIONS(3454), 1, anon_sym_COLON_COLON, - ACTIONS(3774), 1, + ACTIONS(3773), 1, anon_sym_EQ, STATE(1354), 1, sym_parameters, @@ -116857,13 +116857,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3749), 1, sym_identifier, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, - ACTIONS(3776), 1, + ACTIONS(3775), 1, anon_sym_RBRACE, - ACTIONS(3778), 1, + ACTIONS(3777), 1, anon_sym_COMMA, STATE(2106), 1, sym_field_declaration, @@ -116880,13 +116880,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, - ACTIONS(3768), 1, + ACTIONS(3767), 1, sym_identifier, - ACTIONS(3780), 1, + ACTIONS(3779), 1, anon_sym_RBRACE, - ACTIONS(3782), 1, + ACTIONS(3781), 1, anon_sym_COMMA, STATE(1895), 1, sym_enum_variant, @@ -116899,11 +116899,11 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_item, aux_sym_enum_variant_list_repeat1, [52481] = 7, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3784), 1, + ACTIONS(3783), 1, anon_sym_LBRACE, STATE(1343), 1, sym_type_arguments, @@ -116921,13 +116921,13 @@ static const uint16_t ts_small_parse_table[] = { [52508] = 9, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3786), 1, + ACTIONS(3785), 1, sym_identifier, - ACTIONS(3788), 1, + ACTIONS(3787), 1, anon_sym_const, - ACTIONS(3790), 1, + ACTIONS(3789), 1, anon_sym_GT, - ACTIONS(3792), 1, + ACTIONS(3791), 1, sym_metavariable, STATE(1842), 1, sym_lifetime, @@ -116944,11 +116944,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, - ACTIONS(3768), 1, + ACTIONS(3767), 1, sym_identifier, - ACTIONS(3794), 1, + ACTIONS(3793), 1, anon_sym_RBRACE, STATE(2310), 1, sym_enum_variant, @@ -116961,11 +116961,11 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_item, aux_sym_enum_variant_list_repeat1, [52568] = 7, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3796), 1, + ACTIONS(3795), 1, anon_sym_for, STATE(1343), 1, sym_type_arguments, @@ -116980,9 +116980,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_where, [52594] = 5, - ACTIONS(3798), 1, + ACTIONS(3797), 1, anon_sym_SEMI, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, STATE(467), 1, sym_declaration_list, @@ -116997,15 +116997,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, [52616] = 10, - ACTIONS(3802), 1, + ACTIONS(3801), 1, anon_sym_SEMI, - ACTIONS(3804), 1, + ACTIONS(3803), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(3805), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3809), 1, anon_sym_LT, STATE(864), 1, sym_field_declaration_list, @@ -117019,34 +117019,34 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [52648] = 7, - ACTIONS(3437), 1, + ACTIONS(3436), 1, anon_sym_LPAREN, - ACTIONS(3441), 1, + ACTIONS(3440), 1, anon_sym_COLON, - ACTIONS(3443), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3812), 1, + ACTIONS(3811), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3435), 3, + ACTIONS(3434), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, [52674] = 10, - ACTIONS(3804), 1, + ACTIONS(3803), 1, anon_sym_LPAREN, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3809), 1, anon_sym_LT, - ACTIONS(3814), 1, + ACTIONS(3813), 1, anon_sym_SEMI, - ACTIONS(3816), 1, + ACTIONS(3815), 1, anon_sym_LBRACE, STATE(275), 1, sym_field_declaration_list, @@ -117062,11 +117062,11 @@ static const uint16_t ts_small_parse_table[] = { [52706] = 7, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3760), 1, + ACTIONS(3759), 1, sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3765), 1, anon_sym_DOT_DOT, - ACTIONS(3818), 1, + ACTIONS(3817), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, @@ -117083,11 +117083,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, - ACTIONS(3768), 1, + ACTIONS(3767), 1, sym_identifier, - ACTIONS(3820), 1, + ACTIONS(3819), 1, anon_sym_RBRACE, STATE(2310), 1, sym_enum_variant, @@ -117102,13 +117102,13 @@ static const uint16_t ts_small_parse_table[] = { [52762] = 9, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3786), 1, + ACTIONS(3785), 1, sym_identifier, - ACTIONS(3788), 1, + ACTIONS(3787), 1, anon_sym_const, - ACTIONS(3792), 1, + ACTIONS(3791), 1, sym_metavariable, - ACTIONS(3822), 1, + ACTIONS(3821), 1, anon_sym_GT, STATE(1842), 1, sym_lifetime, @@ -117123,7 +117123,7 @@ static const uint16_t ts_small_parse_table[] = { [52792] = 5, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3824), 1, + ACTIONS(3823), 1, anon_sym_move, STATE(64), 1, sym_block, @@ -117140,14 +117140,14 @@ static const uint16_t ts_small_parse_table[] = { [52814] = 5, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3826), 1, + ACTIONS(3825), 1, sym_identifier, STATE(60), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3828), 6, + ACTIONS(3827), 6, anon_sym_async, anon_sym_const, anon_sym_default, @@ -117157,13 +117157,13 @@ static const uint16_t ts_small_parse_table[] = { [52836] = 9, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3786), 1, + ACTIONS(3785), 1, sym_identifier, - ACTIONS(3788), 1, + ACTIONS(3787), 1, anon_sym_const, - ACTIONS(3792), 1, + ACTIONS(3791), 1, sym_metavariable, - ACTIONS(3830), 1, + ACTIONS(3829), 1, anon_sym_GT, STATE(1842), 1, sym_lifetime, @@ -117178,13 +117178,13 @@ static const uint16_t ts_small_parse_table[] = { [52866] = 9, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3786), 1, + ACTIONS(3785), 1, sym_identifier, - ACTIONS(3788), 1, + ACTIONS(3787), 1, anon_sym_const, - ACTIONS(3792), 1, + ACTIONS(3791), 1, sym_metavariable, - ACTIONS(3832), 1, + ACTIONS(3831), 1, anon_sym_GT, STATE(1842), 1, sym_lifetime, @@ -117197,11 +117197,11 @@ static const uint16_t ts_small_parse_table[] = { sym_const_parameter, sym_optional_type_parameter, [52896] = 7, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3834), 1, + ACTIONS(3833), 1, anon_sym_for, STATE(1343), 1, sym_type_arguments, @@ -117218,11 +117218,11 @@ static const uint16_t ts_small_parse_table[] = { [52922] = 7, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3760), 1, + ACTIONS(3759), 1, sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3765), 1, anon_sym_DOT_DOT, - ACTIONS(3836), 1, + ACTIONS(3835), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, @@ -117239,11 +117239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3749), 1, sym_identifier, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, - ACTIONS(3838), 1, + ACTIONS(3837), 1, anon_sym_RBRACE, STATE(2254), 1, sym_field_declaration, @@ -117256,11 +117256,11 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_item, aux_sym_enum_variant_list_repeat1, [52978] = 7, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3840), 1, + ACTIONS(3839), 1, anon_sym_for, STATE(1343), 1, sym_type_arguments, @@ -117277,13 +117277,13 @@ static const uint16_t ts_small_parse_table[] = { [53004] = 9, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3786), 1, + ACTIONS(3785), 1, sym_identifier, - ACTIONS(3788), 1, + ACTIONS(3787), 1, anon_sym_const, - ACTIONS(3792), 1, + ACTIONS(3791), 1, sym_metavariable, - ACTIONS(3842), 1, + ACTIONS(3841), 1, anon_sym_GT, STATE(1842), 1, sym_lifetime, @@ -117298,13 +117298,13 @@ static const uint16_t ts_small_parse_table[] = { [53034] = 9, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3786), 1, + ACTIONS(3785), 1, sym_identifier, - ACTIONS(3788), 1, + ACTIONS(3787), 1, anon_sym_const, - ACTIONS(3792), 1, + ACTIONS(3791), 1, sym_metavariable, - ACTIONS(3844), 1, + ACTIONS(3843), 1, anon_sym_GT, STATE(1842), 1, sym_lifetime, @@ -117317,11 +117317,11 @@ static const uint16_t ts_small_parse_table[] = { sym_const_parameter, sym_optional_type_parameter, [53064] = 7, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3846), 1, + ACTIONS(3845), 1, anon_sym_for, STATE(1343), 1, sym_type_arguments, @@ -117340,11 +117340,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, - ACTIONS(3768), 1, + ACTIONS(3767), 1, sym_identifier, - ACTIONS(3848), 1, + ACTIONS(3847), 1, anon_sym_RBRACE, STATE(2310), 1, sym_enum_variant, @@ -117357,9 +117357,9 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_item, aux_sym_enum_variant_list_repeat1, [53120] = 5, - ACTIONS(3850), 1, + ACTIONS(3849), 1, anon_sym_SEMI, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, STATE(1053), 1, sym_declaration_list, @@ -117376,13 +117376,13 @@ static const uint16_t ts_small_parse_table[] = { [53142] = 9, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3786), 1, + ACTIONS(3785), 1, sym_identifier, - ACTIONS(3788), 1, + ACTIONS(3787), 1, anon_sym_const, - ACTIONS(3792), 1, + ACTIONS(3791), 1, sym_metavariable, - ACTIONS(3854), 1, + ACTIONS(3853), 1, anon_sym_GT, STATE(1856), 1, sym_lifetime, @@ -117399,11 +117399,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3749), 1, sym_identifier, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, - ACTIONS(3856), 1, + ACTIONS(3855), 1, anon_sym_RBRACE, STATE(2254), 1, sym_field_declaration, @@ -117420,11 +117420,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3749), 1, sym_identifier, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, - ACTIONS(3858), 1, + ACTIONS(3857), 1, anon_sym_RBRACE, STATE(2254), 1, sym_field_declaration, @@ -117441,11 +117441,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, - ACTIONS(3768), 1, + ACTIONS(3767), 1, sym_identifier, - ACTIONS(3860), 1, + ACTIONS(3859), 1, anon_sym_RBRACE, STATE(2310), 1, sym_enum_variant, @@ -117458,9 +117458,9 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_item, aux_sym_enum_variant_list_repeat1, [53262] = 5, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(3862), 1, + ACTIONS(3861), 1, anon_sym_SEMI, STATE(815), 1, sym_declaration_list, @@ -117475,9 +117475,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, [53284] = 5, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3864), 1, + ACTIONS(3863), 1, anon_sym_SEMI, STATE(273), 1, sym_declaration_list, @@ -117492,15 +117492,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, [53306] = 10, - ACTIONS(3804), 1, + ACTIONS(3803), 1, anon_sym_LPAREN, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3809), 1, anon_sym_LT, - ACTIONS(3816), 1, + ACTIONS(3815), 1, anon_sym_LBRACE, - ACTIONS(3866), 1, + ACTIONS(3865), 1, anon_sym_SEMI, STATE(377), 1, sym_field_declaration_list, @@ -117518,11 +117518,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, - ACTIONS(3768), 1, + ACTIONS(3767), 1, sym_identifier, - ACTIONS(3868), 1, + ACTIONS(3867), 1, anon_sym_RBRACE, STATE(2310), 1, sym_enum_variant, @@ -117539,11 +117539,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3749), 1, sym_identifier, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, - ACTIONS(3870), 1, + ACTIONS(3869), 1, anon_sym_RBRACE, STATE(2254), 1, sym_field_declaration, @@ -117560,11 +117560,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, - ACTIONS(3768), 1, + ACTIONS(3767), 1, sym_identifier, - ACTIONS(3872), 1, + ACTIONS(3871), 1, anon_sym_RBRACE, STATE(2310), 1, sym_enum_variant, @@ -117581,11 +117581,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3749), 1, sym_identifier, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, - ACTIONS(3874), 1, + ACTIONS(3873), 1, anon_sym_RBRACE, STATE(2254), 1, sym_field_declaration, @@ -117598,11 +117598,11 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_item, aux_sym_enum_variant_list_repeat1, [53458] = 7, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3876), 1, + ACTIONS(3875), 1, anon_sym_for, STATE(1343), 1, sym_type_arguments, @@ -117617,15 +117617,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_where, [53484] = 10, - ACTIONS(3804), 1, + ACTIONS(3803), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(3805), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3809), 1, anon_sym_LT, - ACTIONS(3878), 1, + ACTIONS(3877), 1, anon_sym_SEMI, STATE(987), 1, sym_field_declaration_list, @@ -117639,11 +117639,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [53516] = 7, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3880), 1, + ACTIONS(3879), 1, anon_sym_for, STATE(1343), 1, sym_type_arguments, @@ -117660,13 +117660,13 @@ static const uint16_t ts_small_parse_table[] = { [53542] = 9, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3786), 1, + ACTIONS(3785), 1, sym_identifier, - ACTIONS(3788), 1, + ACTIONS(3787), 1, anon_sym_const, - ACTIONS(3792), 1, + ACTIONS(3791), 1, sym_metavariable, - ACTIONS(3882), 1, + ACTIONS(3881), 1, anon_sym_GT, STATE(1842), 1, sym_lifetime, @@ -117679,11 +117679,11 @@ static const uint16_t ts_small_parse_table[] = { sym_const_parameter, sym_optional_type_parameter, [53572] = 7, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3884), 1, + ACTIONS(3883), 1, anon_sym_for, STATE(1343), 1, sym_type_arguments, @@ -117698,11 +117698,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_where, [53598] = 7, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3886), 1, + ACTIONS(3885), 1, anon_sym_for, STATE(1343), 1, sym_type_arguments, @@ -117719,13 +117719,13 @@ static const uint16_t ts_small_parse_table[] = { [53624] = 9, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3786), 1, + ACTIONS(3785), 1, sym_identifier, - ACTIONS(3788), 1, + ACTIONS(3787), 1, anon_sym_const, - ACTIONS(3792), 1, + ACTIONS(3791), 1, sym_metavariable, - ACTIONS(3888), 1, + ACTIONS(3887), 1, anon_sym_GT, STATE(1842), 1, sym_lifetime, @@ -117742,11 +117742,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3749), 1, sym_identifier, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, - ACTIONS(3890), 1, + ACTIONS(3889), 1, anon_sym_RBRACE, STATE(2254), 1, sym_field_declaration, @@ -117761,15 +117761,15 @@ static const uint16_t ts_small_parse_table[] = { [53684] = 8, ACTIONS(786), 1, anon_sym_DOT_DOT, - ACTIONS(3892), 1, + ACTIONS(3891), 1, sym_identifier, - ACTIONS(3894), 1, + ACTIONS(3893), 1, anon_sym_RBRACE, - ACTIONS(3896), 1, + ACTIONS(3895), 1, anon_sym_COMMA, - ACTIONS(3898), 1, + ACTIONS(3897), 1, anon_sym_ref, - ACTIONS(3900), 1, + ACTIONS(3899), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, @@ -117780,15 +117780,15 @@ static const uint16_t ts_small_parse_table[] = { [53711] = 8, ACTIONS(786), 1, anon_sym_DOT_DOT, - ACTIONS(3892), 1, + ACTIONS(3891), 1, sym_identifier, - ACTIONS(3898), 1, + ACTIONS(3897), 1, anon_sym_ref, - ACTIONS(3900), 1, + ACTIONS(3899), 1, sym_mutable_specifier, - ACTIONS(3902), 1, + ACTIONS(3901), 1, anon_sym_RBRACE, - ACTIONS(3904), 1, + ACTIONS(3903), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, @@ -117799,11 +117799,11 @@ static const uint16_t ts_small_parse_table[] = { [53738] = 8, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3788), 1, + ACTIONS(3787), 1, anon_sym_const, - ACTIONS(3906), 1, + ACTIONS(3905), 1, sym_identifier, - ACTIONS(3908), 1, + ACTIONS(3907), 1, sym_metavariable, STATE(1666), 1, sym_lifetime, @@ -117820,9 +117820,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, - ACTIONS(3768), 1, + ACTIONS(3767), 1, sym_identifier, STATE(2080), 1, sym_enum_variant, @@ -117837,11 +117837,11 @@ static const uint16_t ts_small_parse_table[] = { [53792] = 8, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3788), 1, + ACTIONS(3787), 1, anon_sym_const, - ACTIONS(3910), 1, + ACTIONS(3909), 1, sym_identifier, - ACTIONS(3912), 1, + ACTIONS(3911), 1, sym_metavariable, STATE(1739), 1, sym_lifetime, @@ -117854,14 +117854,14 @@ static const uint16_t ts_small_parse_table[] = { sym_const_parameter, sym_optional_type_parameter, [53819] = 4, - ACTIONS(3916), 1, + ACTIONS(3915), 1, anon_sym_PLUS, STATE(1557), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3914), 6, + ACTIONS(3913), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, @@ -117869,13 +117869,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, [53838] = 9, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, - ACTIONS(3920), 1, + ACTIONS(3919), 1, anon_sym_LT, STATE(986), 1, sym_declaration_list, @@ -117893,9 +117893,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, - ACTIONS(3768), 1, + ACTIONS(3767), 1, sym_identifier, STATE(2310), 1, sym_enum_variant, @@ -117908,13 +117908,13 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_item, aux_sym_enum_variant_list_repeat1, [53894] = 9, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, - ACTIONS(3920), 1, + ACTIONS(3919), 1, anon_sym_LT, STATE(382), 1, sym_declaration_list, @@ -117928,9 +117928,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [53923] = 6, - ACTIONS(3600), 1, + ACTIONS(3599), 1, anon_sym_COLON_COLON, - ACTIONS(3922), 1, + ACTIONS(3921), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, @@ -117938,20 +117938,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2586), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3511), 2, + ACTIONS(3510), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(3519), 2, + ACTIONS(3518), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, [53946] = 9, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, - ACTIONS(3920), 1, + ACTIONS(3919), 1, anon_sym_LT, STATE(251), 1, sym_declaration_list, @@ -117965,14 +117965,14 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [53975] = 4, - ACTIONS(3927), 1, + ACTIONS(3926), 1, anon_sym_PLUS, STATE(1531), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3925), 6, + ACTIONS(3924), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, @@ -117980,13 +117980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, [53994] = 9, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, - ACTIONS(3920), 1, + ACTIONS(3919), 1, anon_sym_LT, STATE(857), 1, sym_declaration_list, @@ -118007,7 +118007,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3734), 6, + ACTIONS(3733), 6, anon_sym_async, anon_sym_const, anon_sym_default, @@ -118015,28 +118015,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, [54042] = 6, - ACTIONS(3513), 1, + ACTIONS(3512), 1, anon_sym_COLON, - ACTIONS(3515), 1, + ACTIONS(3514), 1, anon_sym_BANG, - ACTIONS(3560), 1, + ACTIONS(3559), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3519), 2, + ACTIONS(3518), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3511), 3, + ACTIONS(3510), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, [54065] = 6, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3760), 1, + ACTIONS(3759), 1, sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3765), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, @@ -118053,9 +118053,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, - ACTIONS(3768), 1, + ACTIONS(3767), 1, sym_identifier, STATE(2138), 1, sym_enum_variant, @@ -118068,9 +118068,9 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_item, aux_sym_enum_variant_list_repeat1, [54115] = 4, - ACTIONS(3588), 1, + ACTIONS(3587), 1, anon_sym_COLON_COLON, - ACTIONS(3929), 1, + ACTIONS(3928), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, @@ -118083,14 +118083,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, [54134] = 4, - ACTIONS(3931), 1, + ACTIONS(3930), 1, anon_sym_PLUS, STATE(1531), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3925), 6, + ACTIONS(3924), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, @@ -118098,14 +118098,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, [54153] = 4, - ACTIONS(3916), 1, + ACTIONS(3915), 1, anon_sym_PLUS, STATE(1531), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3925), 6, + ACTIONS(3924), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, @@ -118113,9 +118113,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, [54172] = 4, - ACTIONS(3515), 1, + ACTIONS(3514), 1, anon_sym_BANG, - ACTIONS(3537), 1, + ACTIONS(3536), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -118130,11 +118130,11 @@ static const uint16_t ts_small_parse_table[] = { [54191] = 8, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3788), 1, + ACTIONS(3787), 1, anon_sym_const, - ACTIONS(3906), 1, + ACTIONS(3905), 1, sym_identifier, - ACTIONS(3908), 1, + ACTIONS(3907), 1, sym_metavariable, STATE(1713), 1, sym_lifetime, @@ -118147,9 +118147,9 @@ static const uint16_t ts_small_parse_table[] = { sym_const_parameter, sym_optional_type_parameter, [54218] = 4, - ACTIONS(3495), 1, + ACTIONS(3494), 1, anon_sym_trait, - ACTIONS(3933), 1, + ACTIONS(3932), 1, anon_sym_impl, ACTIONS(3), 2, sym_block_comment, @@ -118162,13 +118162,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, [54237] = 9, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, - ACTIONS(3920), 1, + ACTIONS(3919), 1, anon_sym_LT, STATE(371), 1, sym_declaration_list, @@ -118186,9 +118186,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3749), 1, sym_identifier, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, STATE(1978), 1, sym_field_declaration, @@ -118201,13 +118201,13 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_item, aux_sym_enum_variant_list_repeat1, [54293] = 9, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, - ACTIONS(3920), 1, + ACTIONS(3919), 1, anon_sym_LT, STATE(926), 1, sym_declaration_list, @@ -118224,7 +118224,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3935), 8, + ACTIONS(3934), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -118234,9 +118234,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, [54337] = 5, - ACTIONS(3939), 1, + ACTIONS(3938), 1, anon_sym_fn, - ACTIONS(3941), 1, + ACTIONS(3940), 1, anon_sym_extern, ACTIONS(3), 2, sym_block_comment, @@ -118244,7 +118244,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(3937), 4, + ACTIONS(3936), 4, anon_sym_async, anon_sym_const, anon_sym_default, @@ -118254,9 +118254,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3749), 1, sym_identifier, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, STATE(2016), 1, sym_field_declaration, @@ -118284,9 +118284,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, [54404] = 5, - ACTIONS(3946), 1, + ACTIONS(3945), 1, anon_sym_fn, - ACTIONS(3948), 1, + ACTIONS(3947), 1, anon_sym_extern, ACTIONS(3), 2, sym_block_comment, @@ -118294,20 +118294,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(1556), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(3943), 4, + ACTIONS(3942), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, [54425] = 4, - ACTIONS(3953), 1, + ACTIONS(3952), 1, anon_sym_PLUS, STATE(1557), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3951), 6, + ACTIONS(3950), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, @@ -118317,7 +118317,7 @@ static const uint16_t ts_small_parse_table[] = { [54444] = 4, ACTIONS(2748), 1, anon_sym_COLON_COLON, - ACTIONS(3956), 1, + ACTIONS(3955), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, @@ -118330,16 +118330,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, [54463] = 6, - ACTIONS(3511), 1, + ACTIONS(3510), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3512), 1, anon_sym_COLON, - ACTIONS(3710), 1, + ACTIONS(3709), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3519), 2, + ACTIONS(3518), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(2586), 3, @@ -118349,11 +118349,11 @@ static const uint16_t ts_small_parse_table[] = { [54486] = 8, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3786), 1, + ACTIONS(3785), 1, sym_identifier, - ACTIONS(3788), 1, + ACTIONS(3787), 1, anon_sym_const, - ACTIONS(3792), 1, + ACTIONS(3791), 1, sym_metavariable, STATE(1842), 1, sym_lifetime, @@ -118366,11 +118366,11 @@ static const uint16_t ts_small_parse_table[] = { sym_const_parameter, sym_optional_type_parameter, [54513] = 8, - ACTIONS(3958), 1, + ACTIONS(3957), 1, anon_sym_LPAREN, - ACTIONS(3963), 1, + ACTIONS(3962), 1, anon_sym_LBRACE, - ACTIONS(3966), 1, + ACTIONS(3965), 1, anon_sym_LBRACK, STATE(1561), 1, aux_sym_macro_definition_repeat1, @@ -118381,7 +118381,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3961), 2, + ACTIONS(3960), 2, anon_sym_RPAREN, anon_sym_RBRACE, [54540] = 8, @@ -118389,9 +118389,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3749), 1, sym_identifier, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, STATE(2248), 1, sym_field_declaration, @@ -118408,9 +118408,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, - ACTIONS(3768), 1, + ACTIONS(3767), 1, sym_identifier, STATE(2047), 1, sym_enum_variant, @@ -118423,38 +118423,38 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_item, aux_sym_enum_variant_list_repeat1, [54594] = 6, - ACTIONS(3437), 1, + ACTIONS(3436), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3969), 1, + ACTIONS(3968), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3435), 3, + ACTIONS(3434), 3, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_PIPE, [54617] = 7, ACTIONS(2586), 1, anon_sym_PLUS, - ACTIONS(3511), 1, + ACTIONS(3510), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3512), 1, anon_sym_COLON, - ACTIONS(3560), 1, + ACTIONS(3559), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3519), 2, + ACTIONS(3518), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3922), 2, + ACTIONS(3921), 2, anon_sym_RPAREN, anon_sym_COMMA, [54642] = 8, @@ -118462,9 +118462,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3750), 1, + ACTIONS(3749), 1, sym_identifier, - ACTIONS(3756), 1, + ACTIONS(3755), 1, sym_crate, STATE(2254), 1, sym_field_declaration, @@ -118477,13 +118477,13 @@ static const uint16_t ts_small_parse_table[] = { sym_attribute_item, aux_sym_enum_variant_list_repeat1, [54669] = 8, - ACTIONS(3804), 1, + ACTIONS(3803), 1, anon_sym_LPAREN, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3816), 1, + ACTIONS(3815), 1, anon_sym_LBRACE, - ACTIONS(3971), 1, + ACTIONS(3970), 1, anon_sym_SEMI, STATE(385), 1, sym_field_declaration_list, @@ -118498,7 +118498,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3951), 7, + ACTIONS(3950), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -118507,13 +118507,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, [54709] = 8, - ACTIONS(3804), 1, + ACTIONS(3803), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(3805), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3973), 1, + ACTIONS(3972), 1, anon_sym_SEMI, STATE(923), 1, sym_field_declaration_list, @@ -118527,13 +118527,13 @@ static const uint16_t ts_small_parse_table[] = { [54735] = 7, ACTIONS(786), 1, anon_sym_DOT_DOT, - ACTIONS(3892), 1, + ACTIONS(3891), 1, sym_identifier, - ACTIONS(3898), 1, + ACTIONS(3897), 1, anon_sym_ref, - ACTIONS(3900), 1, + ACTIONS(3899), 1, sym_mutable_specifier, - ACTIONS(3975), 1, + ACTIONS(3974), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, @@ -118542,12 +118542,12 @@ static const uint16_t ts_small_parse_table[] = { sym_field_pattern, sym_remaining_field_pattern, [54759] = 3, - ACTIONS(3977), 1, + ACTIONS(3976), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3828), 6, + ACTIONS(3827), 6, anon_sym_async, anon_sym_const, anon_sym_default, @@ -118555,27 +118555,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, [54775] = 7, - ACTIONS(3435), 1, + ACTIONS(3434), 1, anon_sym_PIPE, - ACTIONS(3437), 1, + ACTIONS(3436), 1, anon_sym_LPAREN, - ACTIONS(3441), 1, + ACTIONS(3440), 1, anon_sym_COLON, - ACTIONS(3443), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(3979), 1, + ACTIONS(3978), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, [54799] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3951), 7, + ACTIONS(3950), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -118587,7 +118587,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3951), 7, + ACTIONS(3950), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -118596,12 +118596,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, [54827] = 3, - ACTIONS(3981), 1, + ACTIONS(3980), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3828), 6, + ACTIONS(3827), 6, anon_sym_async, anon_sym_const, anon_sym_default, @@ -118609,17 +118609,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, [54843] = 8, - ACTIONS(3983), 1, + ACTIONS(3982), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(3984), 1, anon_sym_LBRACE, - ACTIONS(3987), 1, + ACTIONS(3986), 1, anon_sym_LBRACK, - ACTIONS(3989), 1, + ACTIONS(3988), 1, anon_sym_RBRACK, - ACTIONS(3991), 1, + ACTIONS(3990), 1, anon_sym_EQ, - ACTIONS(3993), 1, + ACTIONS(3992), 1, anon_sym_COLON_COLON, STATE(2502), 1, sym_delim_token_tree, @@ -118627,17 +118627,17 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [54869] = 8, - ACTIONS(3983), 1, + ACTIONS(3982), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(3984), 1, anon_sym_LBRACE, - ACTIONS(3987), 1, + ACTIONS(3986), 1, anon_sym_LBRACK, - ACTIONS(3989), 1, + ACTIONS(3988), 1, anon_sym_RBRACK, - ACTIONS(3991), 1, + ACTIONS(3990), 1, anon_sym_EQ, - ACTIONS(3995), 1, + ACTIONS(3994), 1, anon_sym_COLON_COLON, STATE(2502), 1, sym_delim_token_tree, @@ -118645,33 +118645,33 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [54895] = 6, - ACTIONS(3804), 1, + ACTIONS(3803), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(3805), 1, anon_sym_LBRACE, - ACTIONS(3999), 1, + ACTIONS(3998), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3997), 2, + ACTIONS(3996), 2, anon_sym_RBRACE, anon_sym_COMMA, STATE(2014), 2, sym_field_declaration_list, sym_ordered_field_declaration_list, [54917] = 8, - ACTIONS(3983), 1, + ACTIONS(3982), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(3984), 1, anon_sym_LBRACE, - ACTIONS(3987), 1, + ACTIONS(3986), 1, anon_sym_LBRACK, - ACTIONS(3989), 1, + ACTIONS(3988), 1, anon_sym_RBRACK, - ACTIONS(3991), 1, + ACTIONS(3990), 1, anon_sym_EQ, - ACTIONS(4001), 1, + ACTIONS(4000), 1, anon_sym_COLON_COLON, STATE(2502), 1, sym_delim_token_tree, @@ -118679,17 +118679,17 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [54943] = 8, - ACTIONS(3588), 1, + ACTIONS(3587), 1, anon_sym_COLON_COLON, - ACTIONS(3983), 1, + ACTIONS(3982), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(3984), 1, anon_sym_LBRACE, - ACTIONS(3987), 1, + ACTIONS(3986), 1, anon_sym_LBRACK, - ACTIONS(4003), 1, + ACTIONS(4002), 1, anon_sym_RBRACK, - ACTIONS(4005), 1, + ACTIONS(4004), 1, anon_sym_EQ, STATE(2506), 1, sym_delim_token_tree, @@ -118700,7 +118700,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3951), 7, + ACTIONS(3950), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -118712,7 +118712,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3951), 7, + ACTIONS(3950), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -118721,13 +118721,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, [54997] = 8, - ACTIONS(4007), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4009), 1, + ACTIONS(4008), 1, anon_sym_RPAREN, - ACTIONS(4011), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, STATE(1561), 1, aux_sym_macro_definition_repeat1, @@ -118739,13 +118739,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55023] = 8, - ACTIONS(4007), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4015), 1, + ACTIONS(4014), 1, anon_sym_RBRACE, STATE(1561), 1, aux_sym_macro_definition_repeat1, @@ -118757,13 +118757,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55049] = 8, - ACTIONS(4007), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4017), 1, + ACTIONS(4016), 1, anon_sym_RPAREN, STATE(1601), 1, aux_sym_macro_definition_repeat1, @@ -118775,13 +118775,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55075] = 8, - ACTIONS(4007), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4019), 1, + ACTIONS(4018), 1, anon_sym_RPAREN, STATE(1602), 1, aux_sym_macro_definition_repeat1, @@ -118793,13 +118793,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55101] = 8, - ACTIONS(4007), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4021), 1, + ACTIONS(4020), 1, anon_sym_RPAREN, STATE(1561), 1, aux_sym_macro_definition_repeat1, @@ -118811,13 +118811,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55127] = 8, - ACTIONS(4007), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4023), 1, + ACTIONS(4022), 1, anon_sym_RBRACE, STATE(1561), 1, aux_sym_macro_definition_repeat1, @@ -118832,7 +118832,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4025), 7, + ACTIONS(4024), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -118843,13 +118843,13 @@ static const uint16_t ts_small_parse_table[] = { [55167] = 7, ACTIONS(786), 1, anon_sym_DOT_DOT, - ACTIONS(3892), 1, + ACTIONS(3891), 1, sym_identifier, - ACTIONS(3898), 1, + ACTIONS(3897), 1, anon_sym_ref, - ACTIONS(3900), 1, + ACTIONS(3899), 1, sym_mutable_specifier, - ACTIONS(4027), 1, + ACTIONS(4026), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, @@ -118858,13 +118858,13 @@ static const uint16_t ts_small_parse_table[] = { sym_field_pattern, sym_remaining_field_pattern, [55191] = 8, - ACTIONS(4007), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4029), 1, + ACTIONS(4028), 1, anon_sym_RBRACE, STATE(1561), 1, aux_sym_macro_definition_repeat1, @@ -118876,13 +118876,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55217] = 8, - ACTIONS(4007), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4031), 1, + ACTIONS(4030), 1, anon_sym_RBRACE, STATE(1561), 1, aux_sym_macro_definition_repeat1, @@ -118894,7 +118894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55243] = 3, - ACTIONS(4033), 1, + ACTIONS(4032), 1, anon_sym_trait, ACTIONS(3), 2, sym_block_comment, @@ -118907,13 +118907,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, [55259] = 8, - ACTIONS(3804), 1, + ACTIONS(3803), 1, anon_sym_LPAREN, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3816), 1, + ACTIONS(3815), 1, anon_sym_LBRACE, - ACTIONS(4035), 1, + ACTIONS(4034), 1, anon_sym_SEMI, STATE(280), 1, sym_field_declaration_list, @@ -118938,16 +118938,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, [55301] = 6, - ACTIONS(3804), 1, + ACTIONS(3803), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(3805), 1, anon_sym_LBRACE, - ACTIONS(4039), 1, + ACTIONS(4038), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4037), 2, + ACTIONS(4036), 2, anon_sym_RBRACE, anon_sym_COMMA, STATE(2035), 2, @@ -118956,13 +118956,13 @@ static const uint16_t ts_small_parse_table[] = { [55323] = 7, ACTIONS(786), 1, anon_sym_DOT_DOT, - ACTIONS(3892), 1, + ACTIONS(3891), 1, sym_identifier, - ACTIONS(3898), 1, + ACTIONS(3897), 1, anon_sym_ref, - ACTIONS(3900), 1, + ACTIONS(3899), 1, sym_mutable_specifier, - ACTIONS(4041), 1, + ACTIONS(4040), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, @@ -118971,12 +118971,12 @@ static const uint16_t ts_small_parse_table[] = { sym_field_pattern, sym_remaining_field_pattern, [55347] = 3, - ACTIONS(4043), 1, + ACTIONS(4042), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3828), 6, + ACTIONS(3827), 6, anon_sym_async, anon_sym_const, anon_sym_default, @@ -118984,7 +118984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, [55363] = 3, - ACTIONS(3537), 1, + ACTIONS(3536), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -118999,13 +118999,13 @@ static const uint16_t ts_small_parse_table[] = { [55379] = 7, ACTIONS(786), 1, anon_sym_DOT_DOT, - ACTIONS(3892), 1, + ACTIONS(3891), 1, sym_identifier, - ACTIONS(3898), 1, + ACTIONS(3897), 1, anon_sym_ref, - ACTIONS(3900), 1, + ACTIONS(3899), 1, sym_mutable_specifier, - ACTIONS(4045), 1, + ACTIONS(4044), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, @@ -119014,13 +119014,13 @@ static const uint16_t ts_small_parse_table[] = { sym_field_pattern, sym_remaining_field_pattern, [55403] = 8, - ACTIONS(4007), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4047), 1, + ACTIONS(4046), 1, anon_sym_RPAREN, STATE(1561), 1, aux_sym_macro_definition_repeat1, @@ -119032,13 +119032,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55429] = 8, - ACTIONS(4007), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4049), 1, + ACTIONS(4048), 1, anon_sym_RPAREN, STATE(1561), 1, aux_sym_macro_definition_repeat1, @@ -119050,12 +119050,12 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55455] = 3, - ACTIONS(4051), 1, + ACTIONS(4050), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3828), 6, + ACTIONS(3827), 6, anon_sym_async, anon_sym_const, anon_sym_default, @@ -119063,13 +119063,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, [55471] = 8, - ACTIONS(4007), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4053), 1, + ACTIONS(4052), 1, anon_sym_RBRACE, STATE(1584), 1, aux_sym_macro_definition_repeat1, @@ -119081,13 +119081,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55497] = 8, - ACTIONS(3804), 1, + ACTIONS(3803), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(3805), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4055), 1, + ACTIONS(4054), 1, anon_sym_SEMI, STATE(847), 1, sym_field_declaration_list, @@ -119099,7 +119099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55523] = 3, - ACTIONS(4057), 1, + ACTIONS(4056), 1, anon_sym_trait, ACTIONS(3), 2, sym_block_comment, @@ -119112,13 +119112,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_extern, [55539] = 8, - ACTIONS(4007), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4059), 1, + ACTIONS(4058), 1, anon_sym_RPAREN, STATE(1587), 1, aux_sym_macro_definition_repeat1, @@ -119133,7 +119133,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4061), 7, + ACTIONS(4060), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -119142,13 +119142,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, [55579] = 8, - ACTIONS(4007), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4063), 1, + ACTIONS(4062), 1, anon_sym_RBRACE, STATE(1588), 1, aux_sym_macro_definition_repeat1, @@ -119160,13 +119160,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55605] = 8, - ACTIONS(4007), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4065), 1, + ACTIONS(4064), 1, anon_sym_RBRACE, STATE(1592), 1, aux_sym_macro_definition_repeat1, @@ -119178,28 +119178,28 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55631] = 5, - ACTIONS(3515), 1, + ACTIONS(3514), 1, anon_sym_BANG, - ACTIONS(3600), 1, + ACTIONS(3599), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3519), 2, + ACTIONS(3518), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3511), 3, + ACTIONS(3510), 3, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_PIPE, [55651] = 8, - ACTIONS(4007), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4067), 1, + ACTIONS(4066), 1, anon_sym_RBRACE, STATE(1591), 1, aux_sym_macro_definition_repeat1, @@ -119211,13 +119211,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55677] = 8, - ACTIONS(4007), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4011), 1, + ACTIONS(4010), 1, anon_sym_LBRACE, - ACTIONS(4013), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4069), 1, + ACTIONS(4068), 1, anon_sym_RPAREN, STATE(1583), 1, aux_sym_macro_definition_repeat1, @@ -119229,13 +119229,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55703] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4071), 1, + ACTIONS(4070), 1, anon_sym_SEMI, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4074), 1, anon_sym_DASH_GT, STATE(398), 1, sym_block, @@ -119245,12 +119245,12 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55726] = 4, - ACTIONS(4077), 1, + ACTIONS(4076), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(2586), 3, @@ -119258,11 +119258,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_COMMA, [55743] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, STATE(850), 1, sym_declaration_list, @@ -119274,13 +119274,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55766] = 7, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4079), 1, + ACTIONS(4078), 1, anon_sym_SEMI, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, STATE(436), 1, sym_declaration_list, @@ -119290,9 +119290,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55789] = 4, - ACTIONS(3527), 1, + ACTIONS(3526), 1, anon_sym_COLON_COLON, - ACTIONS(3834), 1, + ACTIONS(3833), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, @@ -119303,13 +119303,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_where, [55806] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4083), 1, + ACTIONS(4082), 1, anon_sym_SEMI, STATE(951), 1, sym_declaration_list, @@ -119321,11 +119321,11 @@ static const uint16_t ts_small_parse_table[] = { [55829] = 6, ACTIONS(786), 1, anon_sym_DOT_DOT, - ACTIONS(3892), 1, + ACTIONS(3891), 1, sym_identifier, - ACTIONS(3898), 1, + ACTIONS(3897), 1, anon_sym_ref, - ACTIONS(3900), 1, + ACTIONS(3899), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, @@ -119334,13 +119334,13 @@ static const uint16_t ts_small_parse_table[] = { sym_field_pattern, sym_remaining_field_pattern, [55850] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4085), 1, + ACTIONS(4084), 1, anon_sym_SEMI, STATE(953), 1, sym_declaration_list, @@ -119350,13 +119350,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55873] = 7, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4087), 1, + ACTIONS(4086), 1, anon_sym_SEMI, STATE(428), 1, sym_declaration_list, @@ -119366,11 +119366,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55896] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, STATE(914), 1, sym_declaration_list, @@ -119382,11 +119382,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55919] = 7, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, STATE(422), 1, sym_declaration_list, @@ -119398,11 +119398,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55942] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3809), 1, anon_sym_LT, - ACTIONS(3816), 1, + ACTIONS(3815), 1, anon_sym_LBRACE, STATE(279), 1, sym_field_declaration_list, @@ -119414,13 +119414,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55965] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4089), 1, + ACTIONS(4088), 1, anon_sym_SEMI, STATE(837), 1, sym_declaration_list, @@ -119430,13 +119430,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [55988] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4091), 1, + ACTIONS(4090), 1, anon_sym_SEMI, - ACTIONS(4093), 1, + ACTIONS(4092), 1, anon_sym_DASH_GT, STATE(330), 1, sym_block, @@ -119446,13 +119446,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56011] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4095), 1, + ACTIONS(4094), 1, anon_sym_SEMI, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, + ACTIONS(4098), 1, anon_sym_DASH_GT, STATE(826), 1, sym_block, @@ -119462,13 +119462,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56034] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4101), 1, + ACTIONS(4100), 1, anon_sym_SEMI, STATE(973), 1, sym_declaration_list, @@ -119478,13 +119478,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56057] = 7, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4103), 1, + ACTIONS(4102), 1, anon_sym_SEMI, STATE(320), 1, sym_declaration_list, @@ -119494,13 +119494,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56080] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4105), 1, + ACTIONS(4104), 1, anon_sym_SEMI, STATE(977), 1, sym_declaration_list, @@ -119510,13 +119510,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56103] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4107), 1, + ACTIONS(4106), 1, anon_sym_SEMI, - ACTIONS(4109), 1, + ACTIONS(4108), 1, anon_sym_DASH_GT, STATE(983), 1, sym_block, @@ -119526,13 +119526,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56126] = 7, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4111), 1, + ACTIONS(4110), 1, anon_sym_SEMI, STATE(311), 1, sym_declaration_list, @@ -119542,11 +119542,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56149] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, STATE(999), 1, sym_declaration_list, @@ -119558,13 +119558,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56172] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4113), 1, + ACTIONS(4112), 1, anon_sym_SEMI, - ACTIONS(4115), 1, + ACTIONS(4114), 1, anon_sym_DASH_GT, STATE(1001), 1, sym_block, @@ -119574,11 +119574,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56195] = 7, - ACTIONS(3806), 1, + ACTIONS(3805), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3809), 1, anon_sym_LT, STATE(965), 1, sym_field_declaration_list, @@ -119590,13 +119590,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56218] = 7, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, - ACTIONS(3920), 1, + ACTIONS(3919), 1, anon_sym_LT, - ACTIONS(4117), 1, + ACTIONS(4116), 1, anon_sym_SEMI, - ACTIONS(4119), 1, + ACTIONS(4118), 1, anon_sym_EQ, STATE(1787), 1, sym_type_parameters, @@ -119606,11 +119606,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56241] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3809), 1, anon_sym_LT, - ACTIONS(3816), 1, + ACTIONS(3815), 1, anon_sym_LBRACE, STATE(390), 1, sym_field_declaration_list, @@ -119622,26 +119622,26 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56264] = 5, - ACTIONS(4123), 1, + ACTIONS(4122), 1, anon_sym_COLON, - ACTIONS(4125), 1, + ACTIONS(4124), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4121), 2, + ACTIONS(4120), 2, anon_sym_RPAREN, anon_sym_COMMA, [56283] = 4, - ACTIONS(4127), 1, + ACTIONS(4126), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(2586), 3, @@ -119649,13 +119649,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_PLUS, [56300] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4129), 1, + ACTIONS(4128), 1, anon_sym_SEMI, STATE(1094), 1, sym_declaration_list, @@ -119665,13 +119665,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56323] = 7, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, - ACTIONS(3920), 1, + ACTIONS(3919), 1, anon_sym_LT, - ACTIONS(4131), 1, + ACTIONS(4130), 1, anon_sym_SEMI, - ACTIONS(4133), 1, + ACTIONS(4132), 1, anon_sym_EQ, STATE(1811), 1, sym_type_parameters, @@ -119681,13 +119681,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56346] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4135), 1, + ACTIONS(4134), 1, anon_sym_SEMI, STATE(1008), 1, sym_block, @@ -119697,11 +119697,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56369] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3809), 1, anon_sym_LT, - ACTIONS(4137), 1, + ACTIONS(4136), 1, anon_sym_LBRACE, STATE(1122), 1, sym_enum_variant_list, @@ -119713,28 +119713,28 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56392] = 6, - ACTIONS(3511), 1, + ACTIONS(3510), 1, anon_sym_PIPE, - ACTIONS(3513), 1, + ACTIONS(3512), 1, anon_sym_COLON, - ACTIONS(3515), 1, + ACTIONS(3514), 1, anon_sym_BANG, - ACTIONS(3710), 1, + ACTIONS(3709), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3519), 2, + ACTIONS(3518), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, [56413] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4139), 1, + ACTIONS(4138), 1, anon_sym_SEMI, STATE(1030), 1, sym_declaration_list, @@ -119744,13 +119744,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56436] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4141), 1, + ACTIONS(4140), 1, anon_sym_SEMI, STATE(1000), 1, sym_declaration_list, @@ -119760,13 +119760,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56459] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4143), 1, + ACTIONS(4142), 1, anon_sym_SEMI, STATE(418), 1, sym_block, @@ -119776,11 +119776,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56482] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3809), 1, anon_sym_LT, - ACTIONS(4145), 1, + ACTIONS(4144), 1, anon_sym_LBRACE, STATE(259), 1, sym_enum_variant_list, @@ -119792,13 +119792,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56505] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4147), 1, + ACTIONS(4146), 1, anon_sym_SEMI, STATE(1039), 1, sym_block, @@ -119808,13 +119808,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56528] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4149), 1, + ACTIONS(4148), 1, anon_sym_SEMI, - ACTIONS(4151), 1, + ACTIONS(4150), 1, anon_sym_DASH_GT, STATE(1047), 1, sym_block, @@ -119824,13 +119824,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56551] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4153), 1, + ACTIONS(4152), 1, anon_sym_SEMI, STATE(908), 1, sym_declaration_list, @@ -119840,13 +119840,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56574] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4155), 1, + ACTIONS(4154), 1, anon_sym_SEMI, STATE(890), 1, sym_declaration_list, @@ -119856,13 +119856,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56597] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4157), 1, + ACTIONS(4156), 1, anon_sym_SEMI, STATE(885), 1, sym_declaration_list, @@ -119872,13 +119872,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56620] = 7, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4159), 1, + ACTIONS(4158), 1, anon_sym_SEMI, STATE(474), 1, sym_declaration_list, @@ -119888,13 +119888,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56643] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4161), 1, + ACTIONS(4160), 1, anon_sym_SEMI, - ACTIONS(4163), 1, + ACTIONS(4162), 1, anon_sym_DASH_GT, STATE(876), 1, sym_block, @@ -119910,20 +119910,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2750), 2, anon_sym_PLUS, anon_sym_DASH_GT, - ACTIONS(3602), 2, + ACTIONS(3601), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4165), 2, + ACTIONS(4164), 2, anon_sym_RPAREN, anon_sym_COMMA, [56683] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4168), 1, + ACTIONS(4167), 1, anon_sym_SEMI, - ACTIONS(4170), 1, + ACTIONS(4169), 1, anon_sym_DASH_GT, STATE(412), 1, sym_block, @@ -119933,13 +119933,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56706] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4172), 1, + ACTIONS(4171), 1, anon_sym_SEMI, STATE(1066), 1, sym_block, @@ -119949,13 +119949,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56729] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4174), 1, + ACTIONS(4173), 1, anon_sym_SEMI, STATE(1079), 1, sym_block, @@ -119965,13 +119965,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56752] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4176), 1, + ACTIONS(4175), 1, anon_sym_SEMI, STATE(362), 1, sym_block, @@ -119981,9 +119981,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56775] = 4, - ACTIONS(3527), 1, + ACTIONS(3526), 1, anon_sym_COLON_COLON, - ACTIONS(3886), 1, + ACTIONS(3885), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, @@ -119994,13 +119994,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_where, [56792] = 7, - ACTIONS(3305), 1, + ACTIONS(3304), 1, anon_sym_LBRACE, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(4178), 1, + ACTIONS(4177), 1, sym_identifier, - ACTIONS(4180), 1, + ACTIONS(4179), 1, anon_sym_STAR, STATE(1990), 1, sym_use_list, @@ -120010,13 +120010,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56815] = 7, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4182), 1, + ACTIONS(4181), 1, anon_sym_SEMI, STATE(290), 1, sym_declaration_list, @@ -120026,12 +120026,12 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56838] = 4, - ACTIONS(4165), 1, + ACTIONS(4164), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3602), 2, + ACTIONS(3601), 2, anon_sym_COMMA, anon_sym_PIPE, ACTIONS(2750), 3, @@ -120039,11 +120039,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH_GT, [56855] = 7, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, - ACTIONS(4184), 1, + ACTIONS(4183), 1, anon_sym_COMMA, - ACTIONS(4186), 1, + ACTIONS(4185), 1, anon_sym_GT, STATE(1883), 1, aux_sym_for_lifetimes_repeat1, @@ -120055,13 +120055,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56878] = 7, - ACTIONS(3305), 1, + ACTIONS(3304), 1, anon_sym_LBRACE, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(4178), 1, + ACTIONS(4177), 1, sym_identifier, - ACTIONS(4180), 1, + ACTIONS(4179), 1, anon_sym_STAR, STATE(1990), 1, sym_use_list, @@ -120071,13 +120071,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56901] = 7, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4188), 1, + ACTIONS(4187), 1, anon_sym_SEMI, STATE(470), 1, sym_declaration_list, @@ -120087,12 +120087,12 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56924] = 4, - ACTIONS(4190), 1, + ACTIONS(4189), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3650), 2, + ACTIONS(3649), 2, anon_sym_COMMA, anon_sym_PIPE, ACTIONS(2728), 3, @@ -120103,7 +120103,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3650), 2, + ACTIONS(3649), 2, anon_sym_COLON, anon_sym_PIPE, ACTIONS(2728), 4, @@ -120112,13 +120112,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DASH_GT, [56956] = 7, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4193), 1, + ACTIONS(4192), 1, anon_sym_SEMI, STATE(264), 1, sym_declaration_list, @@ -120128,13 +120128,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [56979] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4195), 1, + ACTIONS(4194), 1, anon_sym_SEMI, STATE(1085), 1, sym_block, @@ -120144,9 +120144,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57002] = 4, - ACTIONS(3527), 1, + ACTIONS(3526), 1, anon_sym_COLON_COLON, - ACTIONS(3840), 1, + ACTIONS(3839), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, @@ -120157,13 +120157,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_where, [57019] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4197), 1, + ACTIONS(4196), 1, anon_sym_SEMI, - ACTIONS(4199), 1, + ACTIONS(4198), 1, anon_sym_DASH_GT, STATE(373), 1, sym_block, @@ -120173,13 +120173,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57042] = 7, - ACTIONS(3568), 1, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, - ACTIONS(4201), 1, + ACTIONS(4200), 1, anon_sym_COMMA, - ACTIONS(4203), 1, + ACTIONS(4202), 1, anon_sym_GT, STATE(2015), 1, sym_trait_bounds, @@ -120189,13 +120189,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57065] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4205), 1, + ACTIONS(4204), 1, anon_sym_SEMI, STATE(341), 1, sym_block, @@ -120205,11 +120205,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57088] = 7, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, STATE(372), 1, sym_declaration_list, @@ -120221,13 +120221,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57111] = 7, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4207), 1, + ACTIONS(4206), 1, anon_sym_SEMI, STATE(253), 1, sym_declaration_list, @@ -120237,13 +120237,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57134] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4209), 1, + ACTIONS(4208), 1, anon_sym_SEMI, - ACTIONS(4211), 1, + ACTIONS(4210), 1, anon_sym_DASH_GT, STATE(342), 1, sym_block, @@ -120256,7 +120256,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3602), 2, + ACTIONS(3601), 2, anon_sym_COLON, anon_sym_PIPE, ACTIONS(2750), 4, @@ -120271,16 +120271,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2728), 2, anon_sym_PLUS, anon_sym_DASH_GT, - ACTIONS(3650), 2, + ACTIONS(3649), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4190), 2, + ACTIONS(4189), 2, anon_sym_RPAREN, anon_sym_COMMA, [57189] = 4, - ACTIONS(3527), 1, + ACTIONS(3526), 1, anon_sym_COLON_COLON, - ACTIONS(3796), 1, + ACTIONS(3795), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, @@ -120291,9 +120291,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_where, [57206] = 4, - ACTIONS(3527), 1, + ACTIONS(3526), 1, anon_sym_COLON_COLON, - ACTIONS(3876), 1, + ACTIONS(3875), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, @@ -120304,13 +120304,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_where, [57223] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4213), 1, + ACTIONS(4212), 1, anon_sym_SEMI, - ACTIONS(4215), 1, + ACTIONS(4214), 1, anon_sym_DASH_GT, STATE(384), 1, sym_block, @@ -120320,12 +120320,12 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57246] = 4, - ACTIONS(4217), 1, + ACTIONS(4216), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(2586), 3, @@ -120333,23 +120333,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_COMMA, [57263] = 5, - ACTIONS(4217), 1, + ACTIONS(4216), 1, anon_sym_COLON_COLON, - ACTIONS(4221), 1, + ACTIONS(4220), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4219), 2, + ACTIONS(4218), 2, anon_sym_RPAREN, anon_sym_COMMA, [57282] = 4, - ACTIONS(3527), 1, + ACTIONS(3526), 1, anon_sym_COLON_COLON, - ACTIONS(3884), 1, + ACTIONS(3883), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, @@ -120360,13 +120360,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_where, [57299] = 7, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4223), 1, + ACTIONS(4222), 1, anon_sym_SEMI, STATE(454), 1, sym_declaration_list, @@ -120376,25 +120376,25 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57322] = 5, - ACTIONS(4077), 1, + ACTIONS(4076), 1, anon_sym_COLON_COLON, - ACTIONS(4221), 1, + ACTIONS(4220), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4219), 2, + ACTIONS(4218), 2, anon_sym_RPAREN, anon_sym_COMMA, [57341] = 7, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, STATE(268), 1, sym_declaration_list, @@ -120406,11 +120406,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57364] = 7, - ACTIONS(3806), 1, + ACTIONS(3805), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3809), 1, anon_sym_LT, STATE(865), 1, sym_field_declaration_list, @@ -120422,13 +120422,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57387] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4225), 1, + ACTIONS(4224), 1, anon_sym_SEMI, STATE(434), 1, sym_block, @@ -120438,13 +120438,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57410] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4227), 1, + ACTIONS(4226), 1, anon_sym_SEMI, - ACTIONS(4229), 1, + ACTIONS(4228), 1, anon_sym_DASH_GT, STATE(917), 1, sym_block, @@ -120454,13 +120454,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57433] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4231), 1, + ACTIONS(4230), 1, anon_sym_SEMI, STATE(856), 1, sym_declaration_list, @@ -120470,13 +120470,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57456] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4233), 1, + ACTIONS(4232), 1, anon_sym_SEMI, STATE(245), 1, sym_block, @@ -120486,9 +120486,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57479] = 4, - ACTIONS(3527), 1, + ACTIONS(3526), 1, anon_sym_COLON_COLON, - ACTIONS(3846), 1, + ACTIONS(3845), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, @@ -120499,9 +120499,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_where, [57496] = 4, - ACTIONS(3527), 1, + ACTIONS(3526), 1, anon_sym_COLON_COLON, - ACTIONS(3880), 1, + ACTIONS(3879), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, @@ -120512,13 +120512,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_where, [57513] = 7, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4235), 1, + ACTIONS(4234), 1, anon_sym_SEMI, STATE(352), 1, sym_declaration_list, @@ -120528,11 +120528,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57536] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3809), 1, anon_sym_LT, - ACTIONS(4137), 1, + ACTIONS(4136), 1, anon_sym_LBRACE, STATE(860), 1, sym_enum_variant_list, @@ -120544,13 +120544,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57559] = 7, - ACTIONS(3568), 1, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3570), 1, + ACTIONS(3569), 1, anon_sym_COMMA, - ACTIONS(3572), 1, + ACTIONS(3571), 1, anon_sym_GT, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, STATE(2015), 1, sym_trait_bounds, @@ -120560,13 +120560,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57582] = 7, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4237), 1, + ACTIONS(4236), 1, anon_sym_SEMI, STATE(300), 1, sym_declaration_list, @@ -120576,13 +120576,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57605] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4239), 1, + ACTIONS(4238), 1, anon_sym_SEMI, STATE(328), 1, sym_block, @@ -120592,11 +120592,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57628] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3810), 1, + ACTIONS(3809), 1, anon_sym_LT, - ACTIONS(4145), 1, + ACTIONS(4144), 1, anon_sym_LBRACE, STATE(276), 1, sym_enum_variant_list, @@ -120608,13 +120608,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57651] = 7, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4241), 1, + ACTIONS(4240), 1, anon_sym_SEMI, STATE(938), 1, sym_block, @@ -120626,9 +120626,9 @@ static const uint16_t ts_small_parse_table[] = { [57674] = 6, ACTIONS(3173), 1, anon_sym_COLON_COLON, - ACTIONS(4243), 1, + ACTIONS(4242), 1, anon_sym_COMMA, - ACTIONS(4245), 1, + ACTIONS(4244), 1, anon_sym_GT, STATE(2036), 1, aux_sym_type_parameters_repeat1, @@ -120641,11 +120641,11 @@ static const uint16_t ts_small_parse_table[] = { [57695] = 7, ACTIONS(2483), 1, anon_sym_PLUS, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, - ACTIONS(4243), 1, + ACTIONS(4242), 1, anon_sym_COMMA, - ACTIONS(4245), 1, + ACTIONS(4244), 1, anon_sym_GT, STATE(1987), 1, sym_trait_bounds, @@ -120665,28 +120665,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, [57730] = 6, - ACTIONS(4247), 1, + ACTIONS(4246), 1, anon_sym_SEMI, - ACTIONS(4249), 1, + ACTIONS(4248), 1, anon_sym_COLON, - ACTIONS(4251), 1, + ACTIONS(4250), 1, anon_sym_EQ, - ACTIONS(4253), 1, + ACTIONS(4252), 1, anon_sym_else, - ACTIONS(4255), 1, + ACTIONS(4254), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [57750] = 4, - ACTIONS(4259), 1, + ACTIONS(4258), 1, anon_sym_as, - ACTIONS(4261), 1, + ACTIONS(4260), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4257), 3, + ACTIONS(4256), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, @@ -120701,7 +120701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, [57778] = 4, - ACTIONS(4263), 1, + ACTIONS(4262), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, @@ -120709,7 +120709,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2970), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3666), 2, + ACTIONS(3665), 2, anon_sym_COMMA, anon_sym_PIPE, [57794] = 2, @@ -120723,11 +120723,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, [57806] = 6, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, - ACTIONS(4243), 1, + ACTIONS(4242), 1, anon_sym_COMMA, - ACTIONS(4245), 1, + ACTIONS(4244), 1, anon_sym_GT, STATE(1987), 1, sym_trait_bounds, @@ -120737,14 +120737,14 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57826] = 4, - ACTIONS(4268), 1, + ACTIONS(4267), 1, anon_sym_as, - ACTIONS(4270), 1, + ACTIONS(4269), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4266), 3, + ACTIONS(4265), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, @@ -120752,7 +120752,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4272), 5, + ACTIONS(4271), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, @@ -120762,18 +120762,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3961), 5, + ACTIONS(3960), 5, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, [57866] = 6, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3455), 1, + ACTIONS(3454), 1, anon_sym_COLON_COLON, STATE(1347), 1, sym_type_arguments, @@ -120783,76 +120783,76 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [57886] = 6, - ACTIONS(3698), 1, + ACTIONS(3697), 1, anon_sym_PIPE, - ACTIONS(4274), 1, + ACTIONS(4273), 1, anon_sym_SEMI, - ACTIONS(4276), 1, + ACTIONS(4275), 1, anon_sym_COLON, - ACTIONS(4278), 1, + ACTIONS(4277), 1, anon_sym_EQ, - ACTIONS(4280), 1, + ACTIONS(4279), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [57906] = 5, - ACTIONS(4282), 1, + ACTIONS(4281), 1, anon_sym_RPAREN, - ACTIONS(4284), 1, + ACTIONS(4283), 1, anon_sym_COMMA, STATE(2111), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, + ACTIONS(3434), 2, anon_sym_COLON, anon_sym_PIPE, [57924] = 4, - ACTIONS(4077), 1, + ACTIONS(4076), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4286), 2, + ACTIONS(4285), 2, anon_sym_RPAREN, anon_sym_COMMA, [57940] = 5, ACTIONS(756), 1, anon_sym_RPAREN, - ACTIONS(4288), 1, + ACTIONS(4287), 1, anon_sym_COMMA, STATE(1976), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, + ACTIONS(3434), 2, anon_sym_COLON, anon_sym_PIPE, [57958] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4290), 5, + ACTIONS(4289), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, [57970] = 4, - ACTIONS(4259), 1, + ACTIONS(4258), 1, anon_sym_as, - ACTIONS(4292), 1, + ACTIONS(4291), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4257), 3, + ACTIONS(4256), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, @@ -120860,7 +120860,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4294), 5, + ACTIONS(4293), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, @@ -120870,7 +120870,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, + ACTIONS(3434), 2, anon_sym_COLON, anon_sym_PIPE, ACTIONS(2586), 3, @@ -120881,53 +120881,53 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4296), 5, + ACTIONS(4295), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, [58024] = 6, - ACTIONS(4255), 1, + ACTIONS(4254), 1, anon_sym_PIPE, - ACTIONS(4298), 1, + ACTIONS(4297), 1, anon_sym_SEMI, - ACTIONS(4300), 1, + ACTIONS(4299), 1, anon_sym_COLON, - ACTIONS(4302), 1, + ACTIONS(4301), 1, anon_sym_EQ, - ACTIONS(4304), 1, + ACTIONS(4303), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [58044] = 4, - ACTIONS(4259), 1, + ACTIONS(4258), 1, anon_sym_as, - ACTIONS(4306), 1, + ACTIONS(4305), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4257), 3, + ACTIONS(4256), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, [58060] = 5, - ACTIONS(3568), 1, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, STATE(2015), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4308), 2, + ACTIONS(4307), 2, anon_sym_COMMA, anon_sym_GT, [58078] = 4, - ACTIONS(4310), 1, + ACTIONS(4309), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, @@ -120935,11 +120935,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2586), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3435), 2, + ACTIONS(3434), 2, anon_sym_COMMA, anon_sym_PIPE, [58094] = 3, - ACTIONS(4313), 1, + ACTIONS(4312), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, @@ -120953,7 +120953,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4315), 5, + ACTIONS(4314), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, @@ -120963,7 +120963,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4317), 5, + ACTIONS(4316), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, @@ -121000,15 +121000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, [58168] = 4, - ACTIONS(4217), 1, + ACTIONS(4216), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4121), 2, + ACTIONS(4120), 2, anon_sym_RPAREN, anon_sym_COMMA, [58184] = 4, @@ -121017,18 +121017,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, + ACTIONS(3434), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4310), 2, + ACTIONS(4309), 2, anon_sym_RPAREN, anon_sym_COMMA, [58200] = 6, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, - ACTIONS(4319), 1, + ACTIONS(4318), 1, anon_sym_COMMA, - ACTIONS(4321), 1, + ACTIONS(4320), 1, anon_sym_GT, STATE(1987), 1, sym_trait_bounds, @@ -121038,13 +121038,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [58220] = 6, - ACTIONS(4255), 1, + ACTIONS(4254), 1, anon_sym_PIPE, - ACTIONS(4323), 1, + ACTIONS(4322), 1, anon_sym_RPAREN, - ACTIONS(4325), 1, + ACTIONS(4324), 1, anon_sym_COLON, - ACTIONS(4327), 1, + ACTIONS(4326), 1, anon_sym_COMMA, STATE(1898), 1, aux_sym_tuple_pattern_repeat1, @@ -121057,43 +121057,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3666), 2, + ACTIONS(3665), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4263), 2, + ACTIONS(4262), 2, anon_sym_RPAREN, anon_sym_COMMA, [58256] = 5, - ACTIONS(4329), 1, + ACTIONS(4328), 1, anon_sym_RPAREN, - ACTIONS(4332), 1, + ACTIONS(4331), 1, anon_sym_COMMA, STATE(2111), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, + ACTIONS(3434), 2, anon_sym_COLON, anon_sym_PIPE, [58274] = 5, - ACTIONS(4335), 1, + ACTIONS(4334), 1, anon_sym_RPAREN, - ACTIONS(4337), 1, + ACTIONS(4336), 1, anon_sym_COMMA, STATE(2069), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, + ACTIONS(3434), 2, anon_sym_COLON, anon_sym_PIPE, [58292] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4339), 5, + ACTIONS(4338), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, @@ -121103,29 +121103,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4341), 5, + ACTIONS(4340), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, [58316] = 4, - ACTIONS(4217), 1, + ACTIONS(4216), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4286), 2, + ACTIONS(4285), 2, anon_sym_RPAREN, anon_sym_COMMA, [58332] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4343), 5, + ACTIONS(4342), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, @@ -121134,21 +121134,21 @@ static const uint16_t ts_small_parse_table[] = { [58344] = 5, ACTIONS(768), 1, anon_sym_RPAREN, - ACTIONS(4345), 1, + ACTIONS(4344), 1, anon_sym_COMMA, STATE(1941), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, + ACTIONS(3434), 2, anon_sym_COLON, anon_sym_PIPE, [58362] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4347), 5, + ACTIONS(4346), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, @@ -121158,7 +121158,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3666), 2, + ACTIONS(3665), 2, anon_sym_COLON, anon_sym_PIPE, ACTIONS(2970), 3, @@ -121169,7 +121169,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4349), 5, + ACTIONS(4348), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, @@ -121179,7 +121179,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4351), 5, + ACTIONS(4350), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, @@ -121189,18 +121189,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4353), 5, + ACTIONS(4352), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, [58424] = 6, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3455), 1, + ACTIONS(3454), 1, anon_sym_COLON_COLON, - ACTIONS(3566), 1, + ACTIONS(3565), 1, anon_sym_COLON, STATE(1347), 1, sym_type_arguments, @@ -121213,7 +121213,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4355), 5, + ACTIONS(4354), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, @@ -121222,9 +121222,9 @@ static const uint16_t ts_small_parse_table[] = { [58456] = 6, ACTIONS(2552), 1, anon_sym_LPAREN, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3455), 1, + ACTIONS(3454), 1, anon_sym_COLON_COLON, STATE(802), 1, sym_parameters, @@ -121234,37 +121234,37 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [58476] = 6, - ACTIONS(3698), 1, + ACTIONS(3697), 1, anon_sym_PIPE, - ACTIONS(4357), 1, + ACTIONS(4356), 1, anon_sym_SEMI, - ACTIONS(4359), 1, + ACTIONS(4358), 1, anon_sym_COLON, - ACTIONS(4361), 1, + ACTIONS(4360), 1, anon_sym_EQ, - ACTIONS(4363), 1, + ACTIONS(4362), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [58496] = 4, - ACTIONS(4077), 1, + ACTIONS(4076), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4121), 2, + ACTIONS(4120), 2, anon_sym_RPAREN, anon_sym_COMMA, [58512] = 5, - ACTIONS(4365), 1, + ACTIONS(4364), 1, anon_sym_LPAREN, - ACTIONS(4367), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(4369), 1, + ACTIONS(4368), 1, anon_sym_LBRACK, STATE(1098), 1, sym_delim_token_tree, @@ -121272,9 +121272,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [58529] = 5, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3809), 1, anon_sym_LT, STATE(1693), 1, sym_parameters, @@ -121284,9 +121284,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [58546] = 5, - ACTIONS(3806), 1, + ACTIONS(3805), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, STATE(925), 1, sym_field_declaration_list, @@ -121296,9 +121296,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [58563] = 5, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3809), 1, anon_sym_LT, STATE(1628), 1, sym_parameters, @@ -121308,9 +121308,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [58580] = 5, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4137), 1, + ACTIONS(4136), 1, anon_sym_LBRACE, STATE(919), 1, sym_enum_variant_list, @@ -121320,11 +121320,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [58597] = 5, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4371), 1, + ACTIONS(4370), 1, anon_sym_RPAREN, - ACTIONS(4373), 1, + ACTIONS(4372), 1, anon_sym_COMMA, STATE(1950), 1, aux_sym_ordered_field_declaration_list_repeat1, @@ -121332,9 +121332,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [58614] = 5, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, STATE(913), 1, sym_declaration_list, @@ -121344,9 +121344,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [58631] = 5, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, STATE(903), 1, sym_declaration_list, @@ -121359,20 +121359,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, + ACTIONS(3434), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4375), 2, + ACTIONS(4374), 2, anon_sym_RPAREN, anon_sym_COMMA, [58661] = 5, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4377), 1, + ACTIONS(4376), 1, anon_sym_SEMI, - ACTIONS(4379), 1, + ACTIONS(4378), 1, anon_sym_EQ, - ACTIONS(4381), 1, + ACTIONS(4380), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, @@ -121380,7 +121380,7 @@ static const uint16_t ts_small_parse_table[] = { [58678] = 4, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4383), 1, + ACTIONS(4382), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, @@ -121389,20 +121389,20 @@ static const uint16_t ts_small_parse_table[] = { sym_if_expression, sym_block, [58693] = 4, - ACTIONS(4387), 1, + ACTIONS(4386), 1, anon_sym_COMMA, STATE(1770), 1, aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4385), 2, + ACTIONS(4384), 2, anon_sym_SEMI, anon_sym_LBRACE, [58708] = 5, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3809), 1, anon_sym_LT, STATE(1614), 1, sym_parameters, @@ -121414,7 +121414,7 @@ static const uint16_t ts_small_parse_table[] = { [58725] = 4, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(4390), 1, + ACTIONS(4389), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -121425,9 +121425,9 @@ static const uint16_t ts_small_parse_table[] = { [58740] = 5, ACTIONS(2483), 1, anon_sym_PLUS, - ACTIONS(4392), 1, + ACTIONS(4391), 1, anon_sym_COMMA, - ACTIONS(4394), 1, + ACTIONS(4393), 1, anon_sym_GT, STATE(2053), 1, aux_sym_type_arguments_repeat1, @@ -121435,11 +121435,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [58757] = 5, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4392), 1, + ACTIONS(4391), 1, anon_sym_COMMA, - ACTIONS(4394), 1, + ACTIONS(4393), 1, anon_sym_GT, STATE(2053), 1, aux_sym_type_arguments_repeat1, @@ -121447,11 +121447,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [58774] = 5, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4335), 1, + ACTIONS(4334), 1, anon_sym_RPAREN, - ACTIONS(4337), 1, + ACTIONS(4336), 1, anon_sym_COMMA, STATE(2069), 1, aux_sym_parameters_repeat1, @@ -121459,22 +121459,22 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [58791] = 4, - ACTIONS(4396), 1, + ACTIONS(4395), 1, anon_sym_DQUOTE, STATE(1776), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4398), 2, + ACTIONS(4397), 2, sym__string_content, sym_escape_sequence, [58806] = 5, - ACTIONS(4401), 1, + ACTIONS(4400), 1, anon_sym_LPAREN, - ACTIONS(4403), 1, + ACTIONS(4402), 1, anon_sym_LBRACE, - ACTIONS(4405), 1, + ACTIONS(4404), 1, anon_sym_LBRACK, STATE(1966), 1, sym_token_tree, @@ -121482,9 +121482,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [58823] = 5, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, STATE(448), 1, sym_declaration_list, @@ -121494,32 +121494,32 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [58840] = 3, - ACTIONS(4407), 1, + ACTIONS(4406), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3698), 3, + ACTIONS(3697), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, [58853] = 4, - ACTIONS(4123), 1, + ACTIONS(4122), 1, anon_sym_COLON, - ACTIONS(4125), 1, + ACTIONS(4124), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, [58868] = 5, ACTIONS(756), 1, anon_sym_RPAREN, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4288), 1, + ACTIONS(4287), 1, anon_sym_COMMA, STATE(1976), 1, aux_sym_parameters_repeat1, @@ -121527,21 +121527,21 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [58885] = 5, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4409), 1, + ACTIONS(4408), 1, anon_sym_SEMI, - ACTIONS(4411), 1, + ACTIONS(4410), 1, anon_sym_EQ, - ACTIONS(4413), 1, + ACTIONS(4412), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [58902] = 5, - ACTIONS(3806), 1, + ACTIONS(3805), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, STATE(854), 1, sym_field_declaration_list, @@ -121551,7 +121551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [58919] = 4, - ACTIONS(4415), 1, + ACTIONS(4414), 1, anon_sym_COMMA, STATE(1770), 1, aux_sym_where_clause_repeat1, @@ -121566,28 +121566,28 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(912), 1, sym_line_comment, - ACTIONS(4417), 1, + ACTIONS(4416), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4419), 3, + ACTIONS(4418), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, [58949] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4421), 3, + ACTIONS(4420), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, [58962] = 5, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, - ACTIONS(4423), 1, + ACTIONS(4422), 1, anon_sym_SEMI, - ACTIONS(4425), 1, + ACTIONS(4424), 1, anon_sym_EQ, STATE(2557), 1, sym_trait_bounds, @@ -121595,9 +121595,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [58979] = 5, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, STATE(849), 1, sym_declaration_list, @@ -121607,9 +121607,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [58996] = 5, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, STATE(424), 1, sym_declaration_list, @@ -121619,20 +121619,20 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59013] = 4, - ACTIONS(4125), 1, + ACTIONS(4124), 1, anon_sym_COLON_COLON, - ACTIONS(4221), 1, + ACTIONS(4220), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, [59028] = 5, ACTIONS(2552), 1, anon_sym_LPAREN, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, STATE(798), 1, sym_parameters, @@ -121642,11 +121642,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59045] = 5, - ACTIONS(4325), 1, + ACTIONS(4324), 1, anon_sym_COLON, - ACTIONS(4427), 1, + ACTIONS(4426), 1, anon_sym_COMMA, - ACTIONS(4429), 1, + ACTIONS(4428), 1, anon_sym_PIPE, STATE(2084), 1, aux_sym_closure_parameters_repeat1, @@ -121654,11 +121654,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59062] = 5, - ACTIONS(4319), 1, + ACTIONS(4318), 1, anon_sym_COMMA, - ACTIONS(4321), 1, + ACTIONS(4320), 1, anon_sym_GT, - ACTIONS(4431), 1, + ACTIONS(4430), 1, anon_sym_EQ, STATE(2096), 1, aux_sym_type_parameters_repeat1, @@ -121666,11 +121666,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59079] = 5, - ACTIONS(3305), 1, + ACTIONS(3304), 1, anon_sym_LBRACE, - ACTIONS(4178), 1, + ACTIONS(4177), 1, sym_identifier, - ACTIONS(4180), 1, + ACTIONS(4179), 1, anon_sym_STAR, STATE(1990), 1, sym_use_list, @@ -121678,11 +121678,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59096] = 5, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4433), 1, + ACTIONS(4432), 1, anon_sym_RPAREN, - ACTIONS(4435), 1, + ACTIONS(4434), 1, anon_sym_COMMA, STATE(2092), 1, aux_sym_tuple_type_repeat1, @@ -121690,34 +121690,34 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59113] = 5, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4437), 1, + ACTIONS(4436), 1, anon_sym_SEMI, - ACTIONS(4439), 1, + ACTIONS(4438), 1, anon_sym_EQ, - ACTIONS(4441), 1, + ACTIONS(4440), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [59130] = 4, - ACTIONS(4443), 1, + ACTIONS(4442), 1, anon_sym_DQUOTE, STATE(1776), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4445), 2, + ACTIONS(4444), 2, sym__string_content, sym_escape_sequence, [59145] = 5, ACTIONS(768), 1, anon_sym_RPAREN, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4345), 1, + ACTIONS(4344), 1, anon_sym_COMMA, STATE(1941), 1, aux_sym_parameters_repeat1, @@ -121725,11 +121725,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59162] = 5, - ACTIONS(3305), 1, + ACTIONS(3304), 1, anon_sym_LBRACE, - ACTIONS(4447), 1, + ACTIONS(4446), 1, sym_identifier, - ACTIONS(4449), 1, + ACTIONS(4448), 1, anon_sym_STAR, STATE(2004), 1, sym_use_list, @@ -121740,16 +121740,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3435), 2, + ACTIONS(3434), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4451), 2, + ACTIONS(4450), 2, anon_sym_RPAREN, anon_sym_COMMA, [59192] = 5, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4137), 1, + ACTIONS(4136), 1, anon_sym_LBRACE, STATE(824), 1, sym_enum_variant_list, @@ -121759,11 +121759,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59209] = 5, - ACTIONS(4453), 1, + ACTIONS(4452), 1, anon_sym_LPAREN, - ACTIONS(4455), 1, + ACTIONS(4454), 1, anon_sym_LBRACE, - ACTIONS(4457), 1, + ACTIONS(4456), 1, anon_sym_LBRACK, STATE(87), 1, sym_delim_token_tree, @@ -121771,9 +121771,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59226] = 5, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, STATE(980), 1, sym_declaration_list, @@ -121783,11 +121783,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59243] = 5, - ACTIONS(3983), 1, + ACTIONS(3982), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(3984), 1, anon_sym_LBRACE, - ACTIONS(3987), 1, + ACTIONS(3986), 1, anon_sym_LBRACK, STATE(934), 1, sym_delim_token_tree, @@ -121795,30 +121795,30 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59260] = 4, - ACTIONS(4459), 1, + ACTIONS(4458), 1, anon_sym_DQUOTE, STATE(1776), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4445), 2, + ACTIONS(4444), 2, sym__string_content, sym_escape_sequence, [59275] = 3, - ACTIONS(4461), 1, + ACTIONS(4460), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4463), 3, + ACTIONS(4462), 3, sym_self, sym_super, sym_crate, [59288] = 5, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, STATE(998), 1, sym_declaration_list, @@ -121830,7 +121830,7 @@ static const uint16_t ts_small_parse_table[] = { [59305] = 4, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(4465), 1, + ACTIONS(4464), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, @@ -121839,9 +121839,9 @@ static const uint16_t ts_small_parse_table[] = { sym_if_expression, sym_block, [59320] = 5, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3816), 1, + ACTIONS(3815), 1, anon_sym_LBRACE, STATE(257), 1, sym_field_declaration_list, @@ -121855,18 +121855,18 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(912), 1, sym_line_comment, - ACTIONS(4467), 1, + ACTIONS(4466), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4469), 3, + ACTIONS(4468), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, [59352] = 5, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, - ACTIONS(4471), 1, + ACTIONS(4470), 1, anon_sym_SEMI, - ACTIONS(4473), 1, + ACTIONS(4472), 1, anon_sym_EQ, STATE(2525), 1, sym_trait_bounds, @@ -121874,11 +121874,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59369] = 5, - ACTIONS(3983), 1, + ACTIONS(3982), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(3984), 1, anon_sym_LBRACE, - ACTIONS(3987), 1, + ACTIONS(3986), 1, anon_sym_LBRACK, STATE(1120), 1, sym_delim_token_tree, @@ -121888,9 +121888,9 @@ static const uint16_t ts_small_parse_table[] = { [59386] = 5, ACTIONS(2483), 1, anon_sym_PLUS, - ACTIONS(4475), 1, + ACTIONS(4474), 1, anon_sym_COMMA, - ACTIONS(4477), 1, + ACTIONS(4476), 1, anon_sym_GT, STATE(1862), 1, aux_sym_type_arguments_repeat1, @@ -121898,9 +121898,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59403] = 5, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, STATE(270), 1, sym_declaration_list, @@ -121910,22 +121910,22 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59420] = 4, - ACTIONS(4479), 1, + ACTIONS(4478), 1, anon_sym_DQUOTE, STATE(1805), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4481), 2, + ACTIONS(4480), 2, sym__string_content, sym_escape_sequence, [59435] = 5, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4475), 1, + ACTIONS(4474), 1, anon_sym_COMMA, - ACTIONS(4477), 1, + ACTIONS(4476), 1, anon_sym_GT, STATE(1862), 1, aux_sym_type_arguments_repeat1, @@ -121933,9 +121933,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59452] = 5, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, STATE(1044), 1, sym_declaration_list, @@ -121945,14 +121945,14 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59469] = 4, - ACTIONS(4483), 1, + ACTIONS(4482), 1, anon_sym_DQUOTE, STATE(1797), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4485), 2, + ACTIONS(4484), 2, sym__string_content, sym_escape_sequence, [59484] = 4, @@ -121960,28 +121960,28 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(912), 1, sym_line_comment, - ACTIONS(4487), 1, + ACTIONS(4486), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4489), 3, + ACTIONS(4488), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, [59499] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4491), 3, + ACTIONS(4490), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, [59512] = 5, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4493), 1, + ACTIONS(4492), 1, anon_sym_RPAREN, - ACTIONS(4495), 1, + ACTIONS(4494), 1, anon_sym_COMMA, STATE(1910), 1, aux_sym_ordered_field_declaration_list_repeat1, @@ -121989,9 +121989,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59529] = 5, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, STATE(419), 1, sym_declaration_list, @@ -122001,9 +122001,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59546] = 5, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, STATE(325), 1, sym_declaration_list, @@ -122013,23 +122013,23 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59563] = 5, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4497), 1, + ACTIONS(4496), 1, anon_sym_SEMI, - ACTIONS(4499), 1, + ACTIONS(4498), 1, anon_sym_EQ, - ACTIONS(4501), 1, + ACTIONS(4500), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [59580] = 5, - ACTIONS(4255), 1, + ACTIONS(4254), 1, anon_sym_PIPE, - ACTIONS(4323), 1, + ACTIONS(4322), 1, anon_sym_RPAREN, - ACTIONS(4327), 1, + ACTIONS(4326), 1, anon_sym_COMMA, STATE(1898), 1, aux_sym_tuple_pattern_repeat1, @@ -122037,9 +122037,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59597] = 5, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3809), 1, anon_sym_LT, STATE(1635), 1, sym_parameters, @@ -122049,9 +122049,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59614] = 5, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, STATE(1343), 1, sym_type_arguments, @@ -122061,11 +122061,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59631] = 5, - ACTIONS(4365), 1, + ACTIONS(4364), 1, anon_sym_LPAREN, - ACTIONS(4367), 1, + ACTIONS(4366), 1, anon_sym_LBRACE, - ACTIONS(4369), 1, + ACTIONS(4368), 1, anon_sym_LBRACK, STATE(1099), 1, sym_delim_token_tree, @@ -122073,9 +122073,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59648] = 5, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4145), 1, + ACTIONS(4144), 1, anon_sym_LBRACE, STATE(395), 1, sym_enum_variant_list, @@ -122085,9 +122085,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59665] = 5, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(3816), 1, + ACTIONS(3815), 1, anon_sym_LBRACE, STATE(376), 1, sym_field_declaration_list, @@ -122097,9 +122097,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59682] = 5, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4145), 1, + ACTIONS(4144), 1, anon_sym_LBRACE, STATE(403), 1, sym_enum_variant_list, @@ -122109,30 +122109,30 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59699] = 3, - ACTIONS(4503), 1, + ACTIONS(4502), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4505), 3, + ACTIONS(4504), 3, sym_self, sym_super, sym_crate, [59712] = 4, - ACTIONS(4507), 1, + ACTIONS(4506), 1, anon_sym_DQUOTE, STATE(1850), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4509), 2, + ACTIONS(4508), 2, sym__string_content, sym_escape_sequence, [59727] = 5, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, STATE(370), 1, sym_declaration_list, @@ -122142,41 +122142,41 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59744] = 4, - ACTIONS(4511), 1, + ACTIONS(4510), 1, anon_sym_DQUOTE, STATE(1776), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4445), 2, + ACTIONS(4444), 2, sym__string_content, sym_escape_sequence, [59759] = 3, - ACTIONS(4255), 1, + ACTIONS(4254), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4513), 3, + ACTIONS(4512), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, [59772] = 4, - ACTIONS(4515), 1, + ACTIONS(4514), 1, anon_sym_COMMA, STATE(1837), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4513), 2, + ACTIONS(4512), 2, anon_sym_RPAREN, anon_sym_RBRACK, [59787] = 5, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3809), 1, anon_sym_LT, STATE(1674), 1, sym_parameters, @@ -122186,11 +122186,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59804] = 5, - ACTIONS(4255), 1, + ACTIONS(4254), 1, anon_sym_PIPE, - ACTIONS(4518), 1, + ACTIONS(4517), 1, anon_sym_RPAREN, - ACTIONS(4520), 1, + ACTIONS(4519), 1, anon_sym_COMMA, STATE(1893), 1, aux_sym_tuple_pattern_repeat1, @@ -122198,9 +122198,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59821] = 5, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3810), 1, + ACTIONS(3809), 1, anon_sym_LT, STATE(1684), 1, sym_parameters, @@ -122210,11 +122210,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59838] = 5, - ACTIONS(4453), 1, + ACTIONS(4452), 1, anon_sym_LPAREN, - ACTIONS(4455), 1, + ACTIONS(4454), 1, anon_sym_LBRACE, - ACTIONS(4457), 1, + ACTIONS(4456), 1, anon_sym_LBRACK, STATE(68), 1, sym_delim_token_tree, @@ -122222,22 +122222,22 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59855] = 4, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, STATE(1987), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4522), 2, + ACTIONS(4521), 2, anon_sym_COMMA, anon_sym_GT, [59870] = 5, - ACTIONS(4243), 1, + ACTIONS(4242), 1, anon_sym_COMMA, - ACTIONS(4245), 1, + ACTIONS(4244), 1, anon_sym_GT, - ACTIONS(4431), 1, + ACTIONS(4430), 1, anon_sym_EQ, STATE(2036), 1, aux_sym_type_parameters_repeat1, @@ -122245,11 +122245,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59887] = 5, - ACTIONS(4524), 1, + ACTIONS(4523), 1, anon_sym_LPAREN, - ACTIONS(4526), 1, + ACTIONS(4525), 1, anon_sym_LBRACE, - ACTIONS(4528), 1, + ACTIONS(4527), 1, anon_sym_LBRACK, STATE(1335), 1, sym_delim_token_tree, @@ -122257,11 +122257,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59904] = 5, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4530), 1, + ACTIONS(4529), 1, anon_sym_RPAREN, - ACTIONS(4532), 1, + ACTIONS(4531), 1, anon_sym_COMMA, STATE(1940), 1, aux_sym_ordered_field_declaration_list_repeat1, @@ -122269,14 +122269,14 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59921] = 4, - ACTIONS(4536), 1, + ACTIONS(4535), 1, anon_sym_COMMA, STATE(1784), 1, aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4534), 2, + ACTIONS(4533), 2, anon_sym_SEMI, anon_sym_LBRACE, [59936] = 4, @@ -122284,18 +122284,18 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(912), 1, sym_line_comment, - ACTIONS(4538), 1, + ACTIONS(4537), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4540), 3, + ACTIONS(4539), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, [59951] = 5, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4542), 1, + ACTIONS(4541), 1, anon_sym_RPAREN, - ACTIONS(4544), 1, + ACTIONS(4543), 1, anon_sym_COMMA, STATE(2000), 1, aux_sym_tuple_type_repeat1, @@ -122303,33 +122303,33 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [59968] = 4, - ACTIONS(4546), 1, + ACTIONS(4545), 1, anon_sym_DQUOTE, STATE(1835), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4548), 2, + ACTIONS(4547), 2, sym__string_content, sym_escape_sequence, [59983] = 4, - ACTIONS(4550), 1, + ACTIONS(4549), 1, anon_sym_DQUOTE, STATE(1776), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4445), 2, + ACTIONS(4444), 2, sym__string_content, sym_escape_sequence, [59998] = 5, - ACTIONS(4524), 1, + ACTIONS(4523), 1, anon_sym_LPAREN, - ACTIONS(4526), 1, + ACTIONS(4525), 1, anon_sym_LBRACE, - ACTIONS(4528), 1, + ACTIONS(4527), 1, anon_sym_LBRACK, STATE(1337), 1, sym_delim_token_tree, @@ -122339,7 +122339,7 @@ static const uint16_t ts_small_parse_table[] = { [60015] = 4, ACTIONS(632), 1, anon_sym_LBRACE, - ACTIONS(4552), 1, + ACTIONS(4551), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, @@ -122348,9 +122348,9 @@ static const uint16_t ts_small_parse_table[] = { sym_if_expression, sym_block, [60030] = 5, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, STATE(1343), 1, sym_type_arguments, @@ -122360,11 +122360,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60047] = 5, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4282), 1, + ACTIONS(4281), 1, anon_sym_RPAREN, - ACTIONS(4284), 1, + ACTIONS(4283), 1, anon_sym_COMMA, STATE(2111), 1, aux_sym_parameters_repeat1, @@ -122372,11 +122372,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60064] = 5, - ACTIONS(4255), 1, + ACTIONS(4254), 1, anon_sym_PIPE, - ACTIONS(4554), 1, + ACTIONS(4553), 1, anon_sym_RBRACK, - ACTIONS(4556), 1, + ACTIONS(4555), 1, anon_sym_COMMA, STATE(1904), 1, aux_sym_tuple_pattern_repeat1, @@ -122384,29 +122384,29 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60081] = 4, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, STATE(1987), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4558), 2, + ACTIONS(4557), 2, anon_sym_COMMA, anon_sym_GT, [60096] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4561), 2, + ACTIONS(4560), 2, anon_sym_RBRACE, anon_sym_COMMA, [60108] = 4, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4563), 1, + ACTIONS(4562), 1, anon_sym_SEMI, STATE(332), 1, sym_block, @@ -122414,9 +122414,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60122] = 4, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4565), 1, + ACTIONS(4564), 1, anon_sym_SEMI, STATE(334), 1, sym_block, @@ -122424,9 +122424,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60136] = 4, - ACTIONS(4041), 1, + ACTIONS(4040), 1, anon_sym_RBRACE, - ACTIONS(4567), 1, + ACTIONS(4566), 1, anon_sym_COMMA, STATE(2113), 1, aux_sym_struct_pattern_repeat1, @@ -122434,9 +122434,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60150] = 4, - ACTIONS(3527), 1, + ACTIONS(3526), 1, anon_sym_COLON_COLON, - ACTIONS(3566), 1, + ACTIONS(3565), 1, anon_sym_COLON, STATE(2048), 1, sym_trait_bounds, @@ -122446,7 +122446,7 @@ static const uint16_t ts_small_parse_table[] = { [60164] = 4, ACTIONS(880), 1, anon_sym_GT, - ACTIONS(4569), 1, + ACTIONS(4568), 1, anon_sym_COMMA, STATE(2075), 1, aux_sym_type_arguments_repeat1, @@ -122456,7 +122456,7 @@ static const uint16_t ts_small_parse_table[] = { [60178] = 4, ACTIONS(392), 1, anon_sym_RPAREN, - ACTIONS(4571), 1, + ACTIONS(4570), 1, anon_sym_COMMA, STATE(1871), 1, aux_sym_arguments_repeat1, @@ -122464,9 +122464,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60192] = 4, - ACTIONS(4451), 1, + ACTIONS(4450), 1, anon_sym_RPAREN, - ACTIONS(4573), 1, + ACTIONS(4572), 1, anon_sym_COMMA, STATE(1864), 1, aux_sym_parameters_repeat1, @@ -122474,19 +122474,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60206] = 4, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4576), 1, + ACTIONS(4575), 1, anon_sym_SEMI, - ACTIONS(4578), 1, + ACTIONS(4577), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [60220] = 4, - ACTIONS(4045), 1, + ACTIONS(4044), 1, anon_sym_RBRACE, - ACTIONS(4580), 1, + ACTIONS(4579), 1, anon_sym_COMMA, STATE(2113), 1, aux_sym_struct_pattern_repeat1, @@ -122494,9 +122494,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60234] = 4, - ACTIONS(4582), 1, + ACTIONS(4581), 1, anon_sym_LBRACE, - ACTIONS(4584), 1, + ACTIONS(4583), 1, anon_sym_AMP_AMP, STATE(1989), 1, aux_sym_let_chain_repeat1, @@ -122507,23 +122507,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3357), 3, + ACTIONS(3356), 3, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_AMP_AMP, [60258] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4586), 2, + ACTIONS(4585), 2, anon_sym_RPAREN, anon_sym_COMMA, [60270] = 4, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(4588), 1, + ACTIONS(4587), 1, sym_identifier, STATE(2499), 1, sym_type_arguments, @@ -122533,7 +122533,7 @@ static const uint16_t ts_small_parse_table[] = { [60284] = 4, ACTIONS(3199), 1, anon_sym_RPAREN, - ACTIONS(4590), 1, + ACTIONS(4589), 1, anon_sym_COMMA, STATE(1871), 1, aux_sym_arguments_repeat1, @@ -122541,9 +122541,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60298] = 4, - ACTIONS(4282), 1, + ACTIONS(4281), 1, anon_sym_RPAREN, - ACTIONS(4284), 1, + ACTIONS(4283), 1, anon_sym_COMMA, STATE(2111), 1, aux_sym_parameters_repeat1, @@ -122551,9 +122551,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60312] = 4, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(4593), 1, + ACTIONS(4592), 1, sym_identifier, STATE(2499), 1, sym_type_arguments, @@ -122561,28 +122561,28 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60326] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4595), 2, + ACTIONS(4594), 2, anon_sym_RPAREN, anon_sym_COMMA, [60338] = 4, ACTIONS(2483), 1, anon_sym_PLUS, - ACTIONS(4597), 1, + ACTIONS(4596), 1, sym_mutable_specifier, - ACTIONS(4599), 1, + ACTIONS(4598), 1, sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [60352] = 4, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(4593), 1, + ACTIONS(4592), 1, sym_identifier, STATE(2475), 1, sym_type_arguments, @@ -122590,18 +122590,18 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60366] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4601), 2, + ACTIONS(4600), 2, anon_sym_RPAREN, anon_sym_COMMA, [60378] = 4, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(4588), 1, + ACTIONS(4587), 1, sym_identifier, STATE(2475), 1, sym_type_arguments, @@ -122609,12 +122609,12 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60392] = 3, - ACTIONS(4605), 1, + ACTIONS(4604), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4603), 2, + ACTIONS(4602), 2, anon_sym_RBRACE, anon_sym_COMMA, [60404] = 4, @@ -122628,18 +122628,18 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60418] = 3, - ACTIONS(4255), 1, + ACTIONS(4254), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4607), 2, + ACTIONS(4606), 2, anon_sym_RBRACE, anon_sym_COMMA, [60430] = 4, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(4609), 1, + ACTIONS(4608), 1, anon_sym_SEMI, STATE(366), 1, sym_declaration_list, @@ -122647,9 +122647,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60444] = 4, - ACTIONS(4611), 1, + ACTIONS(4610), 1, anon_sym_COMMA, - ACTIONS(4613), 1, + ACTIONS(4612), 1, anon_sym_GT, STATE(2059), 1, aux_sym_for_lifetimes_repeat1, @@ -122665,19 +122665,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, [60468] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4615), 2, + ACTIONS(4614), 2, anon_sym_COMMA, anon_sym_GT, [60480] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4617), 3, + ACTIONS(4616), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, @@ -122687,13 +122687,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4286), 2, + ACTIONS(4285), 2, anon_sym_RPAREN, anon_sym_COMMA, [60502] = 4, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4619), 1, + ACTIONS(4618), 1, anon_sym_SEMI, STATE(345), 1, sym_block, @@ -122701,18 +122701,18 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60516] = 3, - ACTIONS(4431), 1, + ACTIONS(4430), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4522), 2, + ACTIONS(4521), 2, anon_sym_COMMA, anon_sym_GT, [60528] = 4, - ACTIONS(4621), 1, + ACTIONS(4620), 1, anon_sym_RBRACE, - ACTIONS(4623), 1, + ACTIONS(4622), 1, anon_sym_COMMA, STATE(1890), 1, aux_sym_enum_variant_list_repeat2, @@ -122720,9 +122720,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60542] = 4, - ACTIONS(4243), 1, + ACTIONS(4242), 1, anon_sym_COMMA, - ACTIONS(4245), 1, + ACTIONS(4244), 1, anon_sym_GT, STATE(2036), 1, aux_sym_type_parameters_repeat1, @@ -122730,9 +122730,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60556] = 4, - ACTIONS(3537), 1, + ACTIONS(3536), 1, anon_sym_COLON_COLON, - ACTIONS(3566), 1, + ACTIONS(3565), 1, anon_sym_COLON, STATE(2048), 1, sym_trait_bounds, @@ -122742,7 +122742,7 @@ static const uint16_t ts_small_parse_table[] = { [60570] = 4, ACTIONS(2419), 1, anon_sym_RPAREN, - ACTIONS(4626), 1, + ACTIONS(4625), 1, anon_sym_COMMA, STATE(1837), 1, aux_sym_tuple_pattern_repeat1, @@ -122750,9 +122750,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60584] = 4, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4628), 1, + ACTIONS(4627), 1, anon_sym_SEMI, STATE(347), 1, sym_block, @@ -122760,9 +122760,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60598] = 4, - ACTIONS(4630), 1, + ACTIONS(4629), 1, anon_sym_RBRACE, - ACTIONS(4632), 1, + ACTIONS(4631), 1, anon_sym_COMMA, STATE(2037), 1, aux_sym_enum_variant_list_repeat2, @@ -122770,9 +122770,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60612] = 4, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(4634), 1, + ACTIONS(4633), 1, anon_sym_SEMI, STATE(368), 1, sym_declaration_list, @@ -122780,9 +122780,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60626] = 4, - ACTIONS(4522), 1, + ACTIONS(4521), 1, anon_sym_GT, - ACTIONS(4636), 1, + ACTIONS(4635), 1, anon_sym_COMMA, STATE(1897), 1, aux_sym_type_parameters_repeat1, @@ -122792,7 +122792,7 @@ static const uint16_t ts_small_parse_table[] = { [60640] = 4, ACTIONS(2379), 1, anon_sym_RPAREN, - ACTIONS(4639), 1, + ACTIONS(4638), 1, anon_sym_COMMA, STATE(1837), 1, aux_sym_tuple_pattern_repeat1, @@ -122800,9 +122800,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60654] = 4, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4641), 1, + ACTIONS(4640), 1, anon_sym_SEMI, STATE(317), 1, sym_block, @@ -122810,28 +122810,28 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60668] = 3, - ACTIONS(4643), 1, + ACTIONS(4642), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4645), 2, + ACTIONS(4644), 2, anon_sym_default, anon_sym_union, [60680] = 4, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4647), 1, + ACTIONS(4646), 1, anon_sym_SEMI, - ACTIONS(4649), 1, + ACTIONS(4648), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [60694] = 4, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4651), 1, + ACTIONS(4650), 1, anon_sym_SEMI, STATE(1091), 1, sym_block, @@ -122841,7 +122841,7 @@ static const uint16_t ts_small_parse_table[] = { [60708] = 4, ACTIONS(628), 1, anon_sym_RBRACK, - ACTIONS(4653), 1, + ACTIONS(4652), 1, anon_sym_COMMA, STATE(1907), 1, aux_sym_array_expression_repeat1, @@ -122851,7 +122851,7 @@ static const uint16_t ts_small_parse_table[] = { [60722] = 4, ACTIONS(2425), 1, anon_sym_RBRACK, - ACTIONS(4655), 1, + ACTIONS(4654), 1, anon_sym_COMMA, STATE(1837), 1, aux_sym_tuple_pattern_repeat1, @@ -122859,9 +122859,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60736] = 4, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4657), 1, + ACTIONS(4656), 1, anon_sym_SEMI, STATE(1087), 1, sym_block, @@ -122869,18 +122869,18 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60750] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4659), 2, + ACTIONS(4658), 2, anon_sym_COMMA, anon_sym_GT, [60762] = 4, - ACTIONS(3341), 1, + ACTIONS(3340), 1, anon_sym_RBRACK, - ACTIONS(4661), 1, + ACTIONS(4660), 1, anon_sym_COMMA, STATE(1907), 1, aux_sym_array_expression_repeat1, @@ -122888,9 +122888,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60776] = 4, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(4664), 1, + ACTIONS(4663), 1, anon_sym_SEMI, STATE(292), 1, sym_declaration_list, @@ -122900,7 +122900,7 @@ static const uint16_t ts_small_parse_table[] = { [60790] = 4, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4666), 1, + ACTIONS(4665), 1, anon_sym_move, STATE(821), 1, sym_block, @@ -122908,9 +122908,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60804] = 4, - ACTIONS(4668), 1, + ACTIONS(4667), 1, anon_sym_RPAREN, - ACTIONS(4670), 1, + ACTIONS(4669), 1, anon_sym_COMMA, STATE(1986), 1, aux_sym_ordered_field_declaration_list_repeat1, @@ -122918,19 +122918,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60818] = 4, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4672), 1, + ACTIONS(4671), 1, anon_sym_SEMI, - ACTIONS(4674), 1, + ACTIONS(4673), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [60832] = 4, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4676), 1, + ACTIONS(4675), 1, anon_sym_SEMI, STATE(2498), 1, sym_where_clause, @@ -122938,9 +122938,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60846] = 4, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(4678), 1, + ACTIONS(4677), 1, anon_sym_SEMI, STATE(295), 1, sym_declaration_list, @@ -122948,9 +122948,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60860] = 4, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4680), 1, + ACTIONS(4679), 1, anon_sym_SEMI, STATE(1083), 1, sym_block, @@ -122958,19 +122958,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60874] = 4, - ACTIONS(4682), 1, + ACTIONS(4681), 1, sym_identifier, - ACTIONS(4684), 1, + ACTIONS(4683), 1, anon_sym_await, - ACTIONS(4686), 1, + ACTIONS(4685), 1, sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [60888] = 4, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4688), 1, + ACTIONS(4687), 1, anon_sym_SEMI, STATE(354), 1, sym_block, @@ -122978,9 +122978,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60902] = 4, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(4690), 1, + ACTIONS(4689), 1, anon_sym_SEMI, STATE(302), 1, sym_declaration_list, @@ -122988,18 +122988,18 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60916] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4692), 2, + ACTIONS(4691), 2, anon_sym_RBRACE, anon_sym_COMMA, [60928] = 4, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4694), 1, + ACTIONS(4693), 1, anon_sym_SEMI, STATE(267), 1, sym_block, @@ -123007,18 +123007,18 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60942] = 3, - ACTIONS(4698), 1, + ACTIONS(4697), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4696), 2, + ACTIONS(4695), 2, anon_sym_RBRACE, anon_sym_COMMA, [60954] = 4, ACTIONS(2602), 1, anon_sym_LBRACE, - ACTIONS(4700), 1, + ACTIONS(4699), 1, anon_sym_COLON_COLON, STATE(1102), 1, sym_field_initializer_list, @@ -123026,28 +123026,28 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [60968] = 4, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4702), 1, + ACTIONS(4701), 1, anon_sym_SEMI, - ACTIONS(4704), 1, + ACTIONS(4703), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [60982] = 3, - ACTIONS(4708), 1, + ACTIONS(4707), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4706), 2, + ACTIONS(4705), 2, anon_sym_RBRACE, anon_sym_COMMA, [60994] = 4, - ACTIONS(4710), 1, + ACTIONS(4709), 1, anon_sym_RBRACE, - ACTIONS(4712), 1, + ACTIONS(4711), 1, anon_sym_COMMA, STATE(2032), 1, aux_sym_use_list_repeat1, @@ -123055,19 +123055,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61008] = 4, - ACTIONS(4714), 1, + ACTIONS(4713), 1, anon_sym_for, - ACTIONS(4716), 1, + ACTIONS(4715), 1, anon_sym_loop, - ACTIONS(4718), 1, + ACTIONS(4717), 1, anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [61022] = 4, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4720), 1, + ACTIONS(4719), 1, anon_sym_SEMI, STATE(1077), 1, sym_block, @@ -123077,7 +123077,7 @@ static const uint16_t ts_small_parse_table[] = { [61036] = 4, ACTIONS(2560), 1, anon_sym_LT2, - ACTIONS(4722), 1, + ACTIONS(4721), 1, sym_identifier, STATE(794), 1, sym_type_arguments, @@ -123085,28 +123085,28 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61050] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4451), 2, + ACTIONS(4450), 2, anon_sym_RPAREN, anon_sym_COMMA, [61062] = 4, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4724), 1, + ACTIONS(4723), 1, anon_sym_SEMI, - ACTIONS(4726), 1, + ACTIONS(4725), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [61076] = 4, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4728), 1, + ACTIONS(4727), 1, anon_sym_SEMI, STATE(1068), 1, sym_block, @@ -123114,9 +123114,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61090] = 4, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(4730), 1, + ACTIONS(4729), 1, anon_sym_SEMI, STATE(381), 1, sym_declaration_list, @@ -123124,9 +123124,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61104] = 4, - ACTIONS(4732), 1, + ACTIONS(4731), 1, anon_sym_RBRACE, - ACTIONS(4734), 1, + ACTIONS(4733), 1, anon_sym_COMMA, STATE(1860), 1, aux_sym_struct_pattern_repeat1, @@ -123134,9 +123134,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61118] = 4, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4736), 1, + ACTIONS(4735), 1, anon_sym_SEMI, STATE(1064), 1, sym_declaration_list, @@ -123144,9 +123144,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61132] = 4, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4738), 1, + ACTIONS(4737), 1, anon_sym_SEMI, STATE(1062), 1, sym_declaration_list, @@ -123157,7 +123157,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4740), 3, + ACTIONS(4739), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, @@ -123165,24 +123165,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4742), 3, + ACTIONS(4741), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, [61166] = 4, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4744), 1, + ACTIONS(4743), 1, anon_sym_SEMI, - ACTIONS(4746), 1, + ACTIONS(4745), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [61180] = 4, - ACTIONS(3836), 1, + ACTIONS(3835), 1, anon_sym_RBRACE, - ACTIONS(4748), 1, + ACTIONS(4747), 1, anon_sym_COMMA, STATE(2046), 1, aux_sym_field_initializer_list_repeat1, @@ -123190,9 +123190,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61194] = 4, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4750), 1, + ACTIONS(4749), 1, anon_sym_SEMI, STATE(1055), 1, sym_block, @@ -123200,9 +123200,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61208] = 4, - ACTIONS(4752), 1, + ACTIONS(4751), 1, anon_sym_RPAREN, - ACTIONS(4754), 1, + ACTIONS(4753), 1, anon_sym_COMMA, STATE(1986), 1, aux_sym_ordered_field_declaration_list_repeat1, @@ -123212,7 +123212,7 @@ static const uint16_t ts_small_parse_table[] = { [61222] = 4, ACTIONS(766), 1, anon_sym_RPAREN, - ACTIONS(4756), 1, + ACTIONS(4755), 1, anon_sym_COMMA, STATE(1864), 1, aux_sym_parameters_repeat1, @@ -123222,7 +123222,7 @@ static const uint16_t ts_small_parse_table[] = { [61236] = 4, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, STATE(1011), 1, sym_block, @@ -123230,9 +123230,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61250] = 4, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(4758), 1, + ACTIONS(4757), 1, sym_identifier, STATE(2475), 1, sym_type_arguments, @@ -123240,9 +123240,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61264] = 4, - ACTIONS(4760), 1, + ACTIONS(4759), 1, anon_sym_COMMA, - ACTIONS(4763), 1, + ACTIONS(4762), 1, anon_sym_PIPE, STATE(1944), 1, aux_sym_closure_parameters_repeat1, @@ -123250,9 +123250,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61278] = 4, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4765), 1, + ACTIONS(4764), 1, anon_sym_SEMI, STATE(405), 1, sym_block, @@ -123260,18 +123260,18 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61292] = 3, - ACTIONS(4325), 1, + ACTIONS(4324), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4763), 2, + ACTIONS(4762), 2, anon_sym_COMMA, anon_sym_PIPE, [61304] = 4, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4767), 1, + ACTIONS(4766), 1, anon_sym_SEMI, STATE(1050), 1, sym_block, @@ -123279,9 +123279,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61318] = 4, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(4758), 1, + ACTIONS(4757), 1, sym_identifier, STATE(2499), 1, sym_type_arguments, @@ -123289,18 +123289,18 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61332] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4769), 2, + ACTIONS(4768), 2, anon_sym_RPAREN, anon_sym_COMMA, [61344] = 4, - ACTIONS(4771), 1, + ACTIONS(4770), 1, anon_sym_RPAREN, - ACTIONS(4773), 1, + ACTIONS(4772), 1, anon_sym_COMMA, STATE(1986), 1, aux_sym_ordered_field_declaration_list_repeat1, @@ -123308,9 +123308,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61358] = 4, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4775), 1, + ACTIONS(4774), 1, anon_sym_SEMI, STATE(441), 1, sym_block, @@ -123318,19 +123318,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61372] = 4, - ACTIONS(4777), 1, + ACTIONS(4776), 1, sym_identifier, - ACTIONS(4779), 1, + ACTIONS(4778), 1, anon_sym_ref, - ACTIONS(4781), 1, + ACTIONS(4780), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [61386] = 4, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4783), 1, + ACTIONS(4782), 1, anon_sym_SEMI, STATE(2546), 1, sym_where_clause, @@ -123341,14 +123341,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4785), 3, + ACTIONS(4784), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, [61410] = 4, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4787), 1, + ACTIONS(4786), 1, anon_sym_SEMI, STATE(1037), 1, sym_block, @@ -123356,9 +123356,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61424] = 4, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4789), 1, + ACTIONS(4788), 1, anon_sym_SEMI, STATE(1034), 1, sym_declaration_list, @@ -123366,9 +123366,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61438] = 4, - ACTIONS(4791), 1, + ACTIONS(4790), 1, anon_sym_RBRACE, - ACTIONS(4793), 1, + ACTIONS(4792), 1, anon_sym_COMMA, STATE(1957), 1, aux_sym_field_declaration_list_repeat1, @@ -123376,9 +123376,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61452] = 4, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(4796), 1, + ACTIONS(4795), 1, anon_sym_SEMI, STATE(465), 1, sym_declaration_list, @@ -123388,7 +123388,7 @@ static const uint16_t ts_small_parse_table[] = { [61466] = 4, ACTIONS(632), 1, anon_sym_LBRACE, - ACTIONS(4798), 1, + ACTIONS(4797), 1, anon_sym_move, STATE(224), 1, sym_block, @@ -123396,9 +123396,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61480] = 4, - ACTIONS(4475), 1, + ACTIONS(4474), 1, anon_sym_COMMA, - ACTIONS(4477), 1, + ACTIONS(4476), 1, anon_sym_GT, STATE(1862), 1, aux_sym_type_arguments_repeat1, @@ -123406,9 +123406,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61494] = 4, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4800), 1, + ACTIONS(4799), 1, anon_sym_SEMI, STATE(423), 1, sym_block, @@ -123416,19 +123416,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61508] = 4, - ACTIONS(4802), 1, + ACTIONS(4801), 1, sym_identifier, - ACTIONS(4804), 1, + ACTIONS(4803), 1, anon_sym_ref, - ACTIONS(4806), 1, + ACTIONS(4805), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [61522] = 4, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4808), 1, + ACTIONS(4807), 1, anon_sym_SEMI, STATE(1027), 1, sym_declaration_list, @@ -123436,9 +123436,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61536] = 4, - ACTIONS(3890), 1, + ACTIONS(3889), 1, anon_sym_RBRACE, - ACTIONS(4810), 1, + ACTIONS(4809), 1, anon_sym_COMMA, STATE(1957), 1, aux_sym_field_declaration_list_repeat1, @@ -123446,9 +123446,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61550] = 4, - ACTIONS(3870), 1, + ACTIONS(3869), 1, anon_sym_RBRACE, - ACTIONS(4812), 1, + ACTIONS(4811), 1, anon_sym_COMMA, STATE(1957), 1, aux_sym_field_declaration_list_repeat1, @@ -123459,43 +123459,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4814), 3, + ACTIONS(4813), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, [61574] = 4, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4816), 1, + ACTIONS(4815), 1, anon_sym_SEMI, - ACTIONS(4818), 1, + ACTIONS(4817), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [61588] = 4, - ACTIONS(4820), 1, + ACTIONS(4819), 1, anon_sym_for, - ACTIONS(4822), 1, + ACTIONS(4821), 1, anon_sym_loop, - ACTIONS(4824), 1, + ACTIONS(4823), 1, anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [61602] = 3, - ACTIONS(4217), 1, + ACTIONS(4216), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, [61614] = 4, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4826), 1, + ACTIONS(4825), 1, anon_sym_SEMI, STATE(1018), 1, sym_declaration_list, @@ -123503,9 +123503,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61628] = 4, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4828), 1, + ACTIONS(4827), 1, anon_sym_SEMI, STATE(1016), 1, sym_declaration_list, @@ -123513,9 +123513,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61642] = 4, - ACTIONS(3243), 1, + ACTIONS(4829), 1, anon_sym_EQ_GT, - ACTIONS(4830), 1, + ACTIONS(4831), 1, anon_sym_AMP_AMP, STATE(2023), 1, aux_sym_let_chain_repeat1, @@ -123533,9 +123533,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61670] = 4, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4832), 1, + ACTIONS(4833), 1, anon_sym_SEMI, STATE(1012), 1, sym_block, @@ -123543,11 +123543,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61684] = 4, - ACTIONS(4834), 1, + ACTIONS(4835), 1, anon_sym_for, - ACTIONS(4836), 1, + ACTIONS(4837), 1, anon_sym_loop, - ACTIONS(4838), 1, + ACTIONS(4839), 1, anon_sym_while, ACTIONS(3), 2, sym_block_comment, @@ -123555,7 +123555,7 @@ static const uint16_t ts_small_parse_table[] = { [61698] = 4, ACTIONS(760), 1, anon_sym_RPAREN, - ACTIONS(4840), 1, + ACTIONS(4841), 1, anon_sym_COMMA, STATE(1864), 1, aux_sym_parameters_repeat1, @@ -123563,18 +123563,18 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61712] = 3, - ACTIONS(4844), 1, + ACTIONS(4845), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4842), 2, + ACTIONS(4843), 2, anon_sym_RBRACE, anon_sym_COMMA, [61724] = 4, - ACTIONS(3890), 1, + ACTIONS(3889), 1, anon_sym_RBRACE, - ACTIONS(4810), 1, + ACTIONS(4809), 1, anon_sym_COMMA, STATE(1995), 1, aux_sym_field_declaration_list_repeat1, @@ -123582,9 +123582,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61738] = 4, - ACTIONS(4846), 1, + ACTIONS(4847), 1, anon_sym_RBRACE, - ACTIONS(4848), 1, + ACTIONS(4849), 1, anon_sym_COMMA, STATE(1866), 1, aux_sym_struct_pattern_repeat1, @@ -123592,9 +123592,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61752] = 4, - ACTIONS(3860), 1, + ACTIONS(3859), 1, anon_sym_RBRACE, - ACTIONS(4850), 1, + ACTIONS(4851), 1, anon_sym_COMMA, STATE(1890), 1, aux_sym_enum_variant_list_repeat2, @@ -123602,9 +123602,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61766] = 4, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(4178), 1, + ACTIONS(4177), 1, sym_identifier, STATE(2475), 1, sym_type_arguments, @@ -123612,19 +123612,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61780] = 4, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4852), 1, + ACTIONS(4853), 1, anon_sym_SEMI, - ACTIONS(4854), 1, + ACTIONS(4855), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [61794] = 4, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(4856), 1, + ACTIONS(4857), 1, sym_identifier, STATE(2499), 1, sym_type_arguments, @@ -123632,9 +123632,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61808] = 4, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(4856), 1, + ACTIONS(4857), 1, sym_identifier, STATE(2475), 1, sym_type_arguments, @@ -123642,9 +123642,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61822] = 4, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4858), 1, + ACTIONS(4859), 1, anon_sym_SEMI, STATE(1025), 1, sym_declaration_list, @@ -123652,9 +123652,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61836] = 4, - ACTIONS(4860), 1, + ACTIONS(4861), 1, anon_sym_RPAREN, - ACTIONS(4862), 1, + ACTIONS(4863), 1, anon_sym_COMMA, STATE(1986), 1, aux_sym_ordered_field_declaration_list_repeat1, @@ -123665,14 +123665,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4865), 3, + ACTIONS(4866), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, [61860] = 4, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4867), 1, + ACTIONS(4868), 1, anon_sym_SEMI, STATE(2351), 1, sym_where_clause, @@ -123680,9 +123680,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61874] = 4, - ACTIONS(3357), 1, + ACTIONS(3356), 1, anon_sym_LBRACE, - ACTIONS(4869), 1, + ACTIONS(4870), 1, anon_sym_AMP_AMP, STATE(1989), 1, aux_sym_let_chain_repeat1, @@ -123693,31 +123693,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4872), 3, + ACTIONS(4873), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, [61898] = 3, - ACTIONS(4077), 1, + ACTIONS(4076), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, [61910] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4874), 3, + ACTIONS(4875), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, [61920] = 4, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(4876), 1, + ACTIONS(4877), 1, sym_identifier, STATE(2475), 1, sym_type_arguments, @@ -123725,9 +123725,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61934] = 4, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4878), 1, + ACTIONS(4879), 1, anon_sym_SEMI, STATE(2439), 1, sym_where_clause, @@ -123735,9 +123735,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61948] = 4, - ACTIONS(3858), 1, + ACTIONS(3857), 1, anon_sym_RBRACE, - ACTIONS(4880), 1, + ACTIONS(4881), 1, anon_sym_COMMA, STATE(1957), 1, aux_sym_field_declaration_list_repeat1, @@ -123745,9 +123745,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61962] = 4, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(4876), 1, + ACTIONS(4877), 1, sym_identifier, STATE(2499), 1, sym_type_arguments, @@ -123757,7 +123757,7 @@ static const uint16_t ts_small_parse_table[] = { [61976] = 4, ACTIONS(2560), 1, anon_sym_LT2, - ACTIONS(4882), 1, + ACTIONS(4883), 1, sym_identifier, STATE(1190), 1, sym_type_arguments, @@ -123765,19 +123765,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [61990] = 4, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4884), 1, + ACTIONS(4885), 1, anon_sym_SEMI, - ACTIONS(4886), 1, + ACTIONS(4887), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [62004] = 4, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(4888), 1, + ACTIONS(4889), 1, anon_sym_SEMI, STATE(985), 1, sym_block, @@ -123787,7 +123787,7 @@ static const uint16_t ts_small_parse_table[] = { [62018] = 4, ACTIONS(2528), 1, anon_sym_RPAREN, - ACTIONS(4890), 1, + ACTIONS(4891), 1, anon_sym_COMMA, STATE(2074), 1, aux_sym_tuple_type_repeat1, @@ -123798,14 +123798,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4892), 3, + ACTIONS(4893), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, [62042] = 4, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(4613), 1, + ACTIONS(4612), 1, anon_sym_GT, STATE(2158), 1, sym_lifetime, @@ -123815,7 +123815,7 @@ static const uint16_t ts_small_parse_table[] = { [62056] = 4, ACTIONS(2560), 1, anon_sym_LT2, - ACTIONS(4882), 1, + ACTIONS(4883), 1, sym_identifier, STATE(1191), 1, sym_type_arguments, @@ -123826,14 +123826,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4894), 3, + ACTIONS(4895), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, [62080] = 4, - ACTIONS(4896), 1, + ACTIONS(4897), 1, anon_sym_COMMA, - ACTIONS(4898), 1, + ACTIONS(4899), 1, anon_sym_GT, STATE(1883), 1, aux_sym_for_lifetimes_repeat1, @@ -123841,18 +123841,18 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62094] = 3, - ACTIONS(4127), 1, + ACTIONS(4126), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, [62106] = 4, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(4900), 1, + ACTIONS(4901), 1, anon_sym_SEMI, STATE(316), 1, sym_declaration_list, @@ -123862,7 +123862,7 @@ static const uint16_t ts_small_parse_table[] = { [62120] = 4, ACTIONS(2560), 1, anon_sym_LT2, - ACTIONS(4722), 1, + ACTIONS(4721), 1, sym_identifier, STATE(786), 1, sym_type_arguments, @@ -123873,14 +123873,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4902), 3, + ACTIONS(4903), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, [62144] = 4, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4904), 1, + ACTIONS(4905), 1, anon_sym_SEMI, STATE(975), 1, sym_declaration_list, @@ -123891,7 +123891,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4906), 3, + ACTIONS(4907), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, @@ -123899,41 +123899,41 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4908), 3, + ACTIONS(4909), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, [62178] = 4, - ACTIONS(3243), 1, - anon_sym_LBRACE, - ACTIONS(4584), 1, + ACTIONS(4583), 1, anon_sym_AMP_AMP, + ACTIONS(4829), 1, + anon_sym_LBRACE, STATE(1867), 1, aux_sym_let_chain_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [62192] = 3, - ACTIONS(4912), 1, + ACTIONS(4913), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4910), 2, + ACTIONS(4911), 2, anon_sym_RBRACE, anon_sym_COMMA, [62204] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4914), 3, + ACTIONS(4915), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, [62214] = 4, - ACTIONS(3838), 1, + ACTIONS(3837), 1, anon_sym_RBRACE, - ACTIONS(4916), 1, + ACTIONS(4917), 1, anon_sym_COMMA, STATE(1965), 1, aux_sym_field_declaration_list_repeat1, @@ -123941,9 +123941,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62228] = 4, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(4918), 1, + ACTIONS(4919), 1, sym_identifier, STATE(2475), 1, sym_type_arguments, @@ -123951,9 +123951,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62242] = 4, - ACTIONS(3838), 1, + ACTIONS(3837), 1, anon_sym_RBRACE, - ACTIONS(4916), 1, + ACTIONS(4917), 1, anon_sym_COMMA, STATE(1957), 1, aux_sym_field_declaration_list_repeat1, @@ -123961,19 +123961,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62256] = 4, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4920), 1, + ACTIONS(4921), 1, anon_sym_SEMI, - ACTIONS(4922), 1, + ACTIONS(4923), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [62270] = 4, - ACTIONS(3882), 1, + ACTIONS(3881), 1, anon_sym_GT, - ACTIONS(4924), 1, + ACTIONS(4925), 1, anon_sym_COMMA, STATE(1897), 1, aux_sym_type_parameters_repeat1, @@ -123981,9 +123981,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62284] = 4, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(4918), 1, + ACTIONS(4919), 1, sym_identifier, STATE(2499), 1, sym_type_arguments, @@ -123994,14 +123994,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4926), 3, + ACTIONS(4927), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, [62308] = 4, - ACTIONS(4582), 1, + ACTIONS(4581), 1, anon_sym_EQ_GT, - ACTIONS(4830), 1, + ACTIONS(4831), 1, anon_sym_AMP_AMP, STATE(2070), 1, aux_sym_let_chain_repeat1, @@ -124009,9 +124009,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62322] = 4, - ACTIONS(3820), 1, + ACTIONS(3819), 1, anon_sym_RBRACE, - ACTIONS(4928), 1, + ACTIONS(4929), 1, anon_sym_COMMA, STATE(1890), 1, aux_sym_enum_variant_list_repeat2, @@ -124019,28 +124019,28 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62336] = 4, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4930), 1, + ACTIONS(4931), 1, anon_sym_SEMI, - ACTIONS(4932), 1, + ACTIONS(4933), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [62350] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4934), 2, + ACTIONS(4935), 2, anon_sym_COMMA, anon_sym_GT, [62362] = 4, - ACTIONS(4319), 1, + ACTIONS(4318), 1, anon_sym_COMMA, - ACTIONS(4321), 1, + ACTIONS(4320), 1, anon_sym_GT, STATE(2096), 1, aux_sym_type_parameters_repeat1, @@ -124050,7 +124050,7 @@ static const uint16_t ts_small_parse_table[] = { [62376] = 4, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, STATE(811), 1, sym_block, @@ -124058,9 +124058,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62390] = 4, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(4936), 1, + ACTIONS(4937), 1, sym_identifier, STATE(2475), 1, sym_type_arguments, @@ -124068,9 +124068,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62404] = 4, - ACTIONS(4427), 1, + ACTIONS(4426), 1, anon_sym_COMMA, - ACTIONS(4938), 1, + ACTIONS(4939), 1, anon_sym_PIPE, STATE(2084), 1, aux_sym_closure_parameters_repeat1, @@ -124078,9 +124078,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62418] = 4, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4940), 1, + ACTIONS(4941), 1, anon_sym_SEMI, STATE(959), 1, sym_declaration_list, @@ -124088,9 +124088,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62432] = 4, - ACTIONS(3359), 1, + ACTIONS(3358), 1, anon_sym_RBRACE, - ACTIONS(4942), 1, + ACTIONS(4943), 1, anon_sym_COMMA, STATE(2093), 1, aux_sym_use_list_repeat1, @@ -124098,9 +124098,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62446] = 4, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4944), 1, + ACTIONS(4945), 1, anon_sym_SEMI, STATE(841), 1, sym_declaration_list, @@ -124111,23 +124111,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4946), 3, + ACTIONS(4947), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, [62470] = 3, - ACTIONS(4950), 1, + ACTIONS(4951), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4948), 2, + ACTIONS(4949), 2, anon_sym_RBRACE, anon_sym_COMMA, [62482] = 4, - ACTIONS(3888), 1, + ACTIONS(3887), 1, anon_sym_GT, - ACTIONS(4952), 1, + ACTIONS(4953), 1, anon_sym_COMMA, STATE(1897), 1, aux_sym_type_parameters_repeat1, @@ -124135,9 +124135,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62496] = 4, - ACTIONS(3794), 1, + ACTIONS(3793), 1, anon_sym_RBRACE, - ACTIONS(4954), 1, + ACTIONS(4955), 1, anon_sym_COMMA, STATE(1890), 1, aux_sym_enum_variant_list_repeat2, @@ -124145,9 +124145,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62510] = 4, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(4936), 1, + ACTIONS(4937), 1, sym_identifier, STATE(2499), 1, sym_type_arguments, @@ -124155,18 +124155,18 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62524] = 3, - ACTIONS(4255), 1, + ACTIONS(4254), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4956), 2, + ACTIONS(4957), 2, anon_sym_RBRACE, anon_sym_COMMA, [62536] = 4, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4959), 1, anon_sym_SEMI, STATE(2545), 1, sym_where_clause, @@ -124174,9 +124174,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62550] = 4, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(4960), 1, + ACTIONS(4961), 1, anon_sym_SEMI, STATE(437), 1, sym_declaration_list, @@ -124184,9 +124184,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62564] = 4, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(4963), 1, anon_sym_SEMI, STATE(432), 1, sym_declaration_list, @@ -124194,9 +124194,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62578] = 4, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4964), 1, + ACTIONS(4965), 1, anon_sym_SEMI, STATE(948), 1, sym_declaration_list, @@ -124207,14 +124207,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4966), 3, + ACTIONS(4967), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, [62602] = 4, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(4968), 1, + ACTIONS(4969), 1, anon_sym_SEMI, STATE(453), 1, sym_declaration_list, @@ -124222,9 +124222,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62616] = 4, - ACTIONS(4970), 1, + ACTIONS(4971), 1, anon_sym_RBRACE, - ACTIONS(4972), 1, + ACTIONS(4973), 1, anon_sym_COMMA, STATE(2046), 1, aux_sym_field_initializer_list_repeat1, @@ -124232,9 +124232,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62630] = 4, - ACTIONS(3794), 1, + ACTIONS(3793), 1, anon_sym_RBRACE, - ACTIONS(4954), 1, + ACTIONS(4955), 1, anon_sym_COMMA, STATE(2024), 1, aux_sym_enum_variant_list_repeat2, @@ -124245,7 +124245,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4975), 3, + ACTIONS(4976), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -124253,14 +124253,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4977), 3, + ACTIONS(4978), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, [62664] = 4, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(4979), 1, + ACTIONS(4980), 1, anon_sym_SEMI, STATE(444), 1, sym_declaration_list, @@ -124268,26 +124268,26 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62678] = 3, - ACTIONS(4255), 1, + ACTIONS(4254), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4981), 2, + ACTIONS(4982), 2, anon_sym_RBRACE, anon_sym_COMMA, [62690] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4983), 3, + ACTIONS(4984), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, [62700] = 4, ACTIONS(864), 1, anon_sym_GT, - ACTIONS(4985), 1, + ACTIONS(4986), 1, anon_sym_COMMA, STATE(2075), 1, aux_sym_type_arguments_repeat1, @@ -124295,18 +124295,18 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62714] = 3, - ACTIONS(4987), 1, + ACTIONS(4988), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4989), 2, + ACTIONS(4990), 2, anon_sym_default, anon_sym_union, [62726] = 4, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(3784), 1, + ACTIONS(3783), 1, anon_sym_LBRACE, STATE(1343), 1, sym_type_arguments, @@ -124314,18 +124314,18 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62740] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4991), 2, + ACTIONS(4992), 2, anon_sym_COMMA, anon_sym_GT, [62752] = 4, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(4993), 1, + ACTIONS(4994), 1, anon_sym_SEMI, STATE(862), 1, sym_declaration_list, @@ -124341,9 +124341,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, [62776] = 4, - ACTIONS(4995), 1, + ACTIONS(4996), 1, anon_sym_COMMA, - ACTIONS(4998), 1, + ACTIONS(4999), 1, anon_sym_GT, STATE(2059), 1, aux_sym_for_lifetimes_repeat1, @@ -124351,9 +124351,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62790] = 4, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(5000), 1, + ACTIONS(5001), 1, anon_sym_SEMI, STATE(936), 1, sym_block, @@ -124364,14 +124364,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5002), 3, + ACTIONS(5003), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, [62814] = 4, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(5004), 1, + ACTIONS(5005), 1, anon_sym_SEMI, STATE(475), 1, sym_declaration_list, @@ -124379,9 +124379,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62828] = 4, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(5006), 1, + ACTIONS(5007), 1, anon_sym_SEMI, STATE(399), 1, sym_block, @@ -124391,7 +124391,7 @@ static const uint16_t ts_small_parse_table[] = { [62842] = 4, ACTIONS(756), 1, anon_sym_RPAREN, - ACTIONS(4288), 1, + ACTIONS(4287), 1, anon_sym_COMMA, STATE(1976), 1, aux_sym_parameters_repeat1, @@ -124401,7 +124401,7 @@ static const uint16_t ts_small_parse_table[] = { [62856] = 4, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(5008), 1, + ACTIONS(5009), 1, anon_sym_GT, STATE(2158), 1, sym_lifetime, @@ -124409,9 +124409,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62870] = 4, - ACTIONS(3305), 1, + ACTIONS(3304), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(5011), 1, sym_identifier, STATE(2022), 1, sym_use_list, @@ -124419,9 +124419,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62884] = 4, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(5012), 1, + ACTIONS(5013), 1, anon_sym_SEMI, STATE(2464), 1, sym_where_clause, @@ -124429,11 +124429,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62898] = 4, - ACTIONS(4255), 1, + ACTIONS(4254), 1, anon_sym_PIPE, - ACTIONS(5014), 1, + ACTIONS(5015), 1, anon_sym_EQ_GT, - ACTIONS(5016), 1, + ACTIONS(5017), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, @@ -124441,7 +124441,7 @@ static const uint16_t ts_small_parse_table[] = { [62912] = 4, ACTIONS(756), 1, anon_sym_RPAREN, - ACTIONS(4288), 1, + ACTIONS(4287), 1, anon_sym_COMMA, STATE(1864), 1, aux_sym_parameters_repeat1, @@ -124449,9 +124449,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62926] = 4, - ACTIONS(3357), 1, + ACTIONS(3356), 1, anon_sym_EQ_GT, - ACTIONS(5018), 1, + ACTIONS(5019), 1, anon_sym_AMP_AMP, STATE(2070), 1, aux_sym_let_chain_repeat1, @@ -124461,7 +124461,7 @@ static const uint16_t ts_small_parse_table[] = { [62940] = 4, ACTIONS(768), 1, anon_sym_RPAREN, - ACTIONS(4345), 1, + ACTIONS(4344), 1, anon_sym_COMMA, STATE(1941), 1, aux_sym_parameters_repeat1, @@ -124469,29 +124469,29 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62954] = 4, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(5021), 1, + ACTIONS(5022), 1, anon_sym_SEMI, - ACTIONS(5023), 1, + ACTIONS(5024), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [62968] = 4, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(5025), 1, + ACTIONS(5026), 1, anon_sym_as, - ACTIONS(5027), 1, + ACTIONS(5028), 1, anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [62982] = 4, - ACTIONS(4601), 1, + ACTIONS(4600), 1, anon_sym_RPAREN, - ACTIONS(5029), 1, + ACTIONS(5030), 1, anon_sym_COMMA, STATE(2074), 1, aux_sym_tuple_type_repeat1, @@ -124499,9 +124499,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [62996] = 4, - ACTIONS(5032), 1, + ACTIONS(5033), 1, anon_sym_COMMA, - ACTIONS(5035), 1, + ACTIONS(5036), 1, anon_sym_GT, STATE(2075), 1, aux_sym_type_arguments_repeat1, @@ -124509,9 +124509,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63010] = 4, - ACTIONS(3449), 1, + ACTIONS(3448), 1, anon_sym_LT2, - ACTIONS(4178), 1, + ACTIONS(4177), 1, sym_identifier, STATE(2499), 1, sym_type_arguments, @@ -124519,9 +124519,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63024] = 4, - ACTIONS(5037), 1, + ACTIONS(5038), 1, anon_sym_RBRACE, - ACTIONS(5039), 1, + ACTIONS(5040), 1, anon_sym_COMMA, STATE(2081), 1, aux_sym_enum_variant_list_repeat2, @@ -124534,13 +124534,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5035), 2, + ACTIONS(5036), 2, anon_sym_COMMA, anon_sym_GT, [63050] = 4, - ACTIONS(3810), 1, + ACTIONS(3809), 1, anon_sym_LT, - ACTIONS(5041), 1, + ACTIONS(5042), 1, anon_sym_EQ, STATE(2547), 1, sym_type_parameters, @@ -124548,9 +124548,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63064] = 4, - ACTIONS(3848), 1, + ACTIONS(3847), 1, anon_sym_RBRACE, - ACTIONS(5043), 1, + ACTIONS(5044), 1, anon_sym_COMMA, STATE(1980), 1, aux_sym_enum_variant_list_repeat2, @@ -124558,9 +124558,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63078] = 4, - ACTIONS(3848), 1, + ACTIONS(3847), 1, anon_sym_RBRACE, - ACTIONS(5043), 1, + ACTIONS(5044), 1, anon_sym_COMMA, STATE(1890), 1, aux_sym_enum_variant_list_repeat2, @@ -124568,18 +124568,18 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63092] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5035), 2, + ACTIONS(5036), 2, anon_sym_COMMA, anon_sym_GT, [63104] = 4, - ACTIONS(4335), 1, + ACTIONS(4334), 1, anon_sym_RPAREN, - ACTIONS(4337), 1, + ACTIONS(4336), 1, anon_sym_COMMA, STATE(2069), 1, aux_sym_parameters_repeat1, @@ -124587,9 +124587,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63118] = 4, - ACTIONS(4427), 1, + ACTIONS(4426), 1, anon_sym_COMMA, - ACTIONS(5045), 1, + ACTIONS(5046), 1, anon_sym_PIPE, STATE(1944), 1, aux_sym_closure_parameters_repeat1, @@ -124597,18 +124597,18 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63132] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5047), 2, + ACTIONS(5048), 2, anon_sym_COMMA, anon_sym_GT, [63144] = 4, - ACTIONS(4097), 1, + ACTIONS(4096), 1, anon_sym_LBRACE, - ACTIONS(5049), 1, + ACTIONS(5050), 1, anon_sym_SEMI, STATE(878), 1, sym_block, @@ -124619,23 +124619,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4385), 3, + ACTIONS(4384), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, [63168] = 3, - ACTIONS(5053), 1, + ACTIONS(5054), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5051), 2, + ACTIONS(5052), 2, anon_sym_RBRACE, anon_sym_COMMA, [63180] = 4, - ACTIONS(4392), 1, + ACTIONS(4391), 1, anon_sym_COMMA, - ACTIONS(4394), 1, + ACTIONS(4393), 1, anon_sym_GT, STATE(2053), 1, aux_sym_type_arguments_repeat1, @@ -124648,13 +124648,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5055), 2, + ACTIONS(5056), 2, anon_sym_RPAREN, anon_sym_COMMA, [63206] = 4, - ACTIONS(5057), 1, + ACTIONS(5058), 1, anon_sym_RBRACE, - ACTIONS(5059), 1, + ACTIONS(5060), 1, anon_sym_COMMA, STATE(1938), 1, aux_sym_field_initializer_list_repeat1, @@ -124664,7 +124664,7 @@ static const uint16_t ts_small_parse_table[] = { [63220] = 4, ACTIONS(2516), 1, anon_sym_RPAREN, - ACTIONS(5061), 1, + ACTIONS(5062), 1, anon_sym_COMMA, STATE(2074), 1, aux_sym_tuple_type_repeat1, @@ -124672,9 +124672,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63234] = 4, - ACTIONS(5063), 1, + ACTIONS(5064), 1, anon_sym_RBRACE, - ACTIONS(5065), 1, + ACTIONS(5066), 1, anon_sym_COMMA, STATE(2093), 1, aux_sym_use_list_repeat1, @@ -124682,9 +124682,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63248] = 4, - ACTIONS(3844), 1, + ACTIONS(3843), 1, anon_sym_GT, - ACTIONS(5068), 1, + ACTIONS(5069), 1, anon_sym_COMMA, STATE(1897), 1, aux_sym_type_parameters_repeat1, @@ -124692,18 +124692,18 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63262] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4375), 2, + ACTIONS(4374), 2, anon_sym_RPAREN, anon_sym_COMMA, [63274] = 4, - ACTIONS(3842), 1, + ACTIONS(3841), 1, anon_sym_GT, - ACTIONS(5070), 1, + ACTIONS(5071), 1, anon_sym_COMMA, STATE(1897), 1, aux_sym_type_parameters_repeat1, @@ -124711,19 +124711,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63288] = 4, - ACTIONS(5072), 1, + ACTIONS(5073), 1, sym_identifier, - ACTIONS(5074), 1, + ACTIONS(5075), 1, anon_sym_ref, - ACTIONS(5076), 1, + ACTIONS(5077), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63302] = 4, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(5078), 1, + ACTIONS(5079), 1, anon_sym_SEMI, STATE(888), 1, sym_declaration_list, @@ -124731,29 +124731,29 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63316] = 4, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(5080), 1, + ACTIONS(5081), 1, anon_sym_SEMI, - ACTIONS(5082), 1, + ACTIONS(5083), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63330] = 4, - ACTIONS(3588), 1, + ACTIONS(3587), 1, anon_sym_COLON_COLON, - ACTIONS(3929), 1, + ACTIONS(3928), 1, anon_sym_BANG, - ACTIONS(5084), 1, + ACTIONS(5085), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63344] = 4, - ACTIONS(4073), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(5086), 1, + ACTIONS(5087), 1, anon_sym_SEMI, STATE(305), 1, sym_block, @@ -124761,19 +124761,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63358] = 4, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(5088), 1, + ACTIONS(5089), 1, anon_sym_SEMI, - ACTIONS(5090), 1, + ACTIONS(5091), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63372] = 4, - ACTIONS(5092), 1, + ACTIONS(5093), 1, anon_sym_RBRACE, - ACTIONS(5094), 1, + ACTIONS(5095), 1, anon_sym_COMMA, STATE(2018), 1, aux_sym_field_declaration_list_repeat1, @@ -124781,9 +124781,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63386] = 4, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(5096), 1, + ACTIONS(5097), 1, anon_sym_SEMI, STATE(2500), 1, sym_where_clause, @@ -124793,7 +124793,7 @@ static const uint16_t ts_small_parse_table[] = { [63400] = 4, ACTIONS(2602), 1, anon_sym_LBRACE, - ACTIONS(5098), 1, + ACTIONS(5099), 1, anon_sym_COLON_COLON, STATE(1102), 1, sym_field_initializer_list, @@ -124801,9 +124801,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63414] = 4, - ACTIONS(5100), 1, + ACTIONS(5101), 1, anon_sym_RBRACE, - ACTIONS(5102), 1, + ACTIONS(5103), 1, anon_sym_COMMA, STATE(1964), 1, aux_sym_field_declaration_list_repeat1, @@ -124811,9 +124811,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63428] = 4, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, - ACTIONS(5104), 1, + ACTIONS(5105), 1, anon_sym_SEMI, STATE(911), 1, sym_declaration_list, @@ -124821,18 +124821,18 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63442] = 3, - ACTIONS(4125), 1, + ACTIONS(4124), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3447), 2, + ACTIONS(3446), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, [63454] = 4, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, - ACTIONS(5106), 1, + ACTIONS(5107), 1, anon_sym_SEMI, STATE(269), 1, sym_declaration_list, @@ -124840,11 +124840,11 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63468] = 4, - ACTIONS(5108), 1, + ACTIONS(5109), 1, sym_identifier, - ACTIONS(5110), 1, + ACTIONS(5111), 1, anon_sym_ref, - ACTIONS(5112), 1, + ACTIONS(5113), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, @@ -124852,7 +124852,7 @@ static const uint16_t ts_small_parse_table[] = { [63482] = 4, ACTIONS(768), 1, anon_sym_RPAREN, - ACTIONS(4345), 1, + ACTIONS(4344), 1, anon_sym_COMMA, STATE(1864), 1, aux_sym_parameters_repeat1, @@ -124860,9 +124860,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63496] = 4, - ACTIONS(3808), 1, + ACTIONS(3807), 1, anon_sym_where, - ACTIONS(5114), 1, + ACTIONS(5115), 1, anon_sym_SEMI, STATE(2482), 1, sym_where_clause, @@ -124870,9 +124870,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63510] = 4, - ACTIONS(5116), 1, + ACTIONS(5117), 1, anon_sym_RBRACE, - ACTIONS(5118), 1, + ACTIONS(5119), 1, anon_sym_COMMA, STATE(2113), 1, aux_sym_struct_pattern_repeat1, @@ -124880,9 +124880,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63524] = 4, - ACTIONS(3810), 1, + ACTIONS(3809), 1, anon_sym_LT, - ACTIONS(5121), 1, + ACTIONS(5122), 1, anon_sym_EQ, STATE(2451), 1, sym_type_parameters, @@ -124890,9 +124890,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63538] = 3, - ACTIONS(4031), 1, + ACTIONS(4030), 1, anon_sym_RBRACE, - ACTIONS(5123), 1, + ACTIONS(5124), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -124906,7 +124906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63560] = 3, - ACTIONS(3806), 1, + ACTIONS(3805), 1, anon_sym_LBRACE, STATE(900), 1, sym_field_declaration_list, @@ -124914,7 +124914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63571] = 3, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, STATE(901), 1, sym_declaration_list, @@ -124922,7 +124922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63582] = 3, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, STATE(902), 1, sym_declaration_list, @@ -124930,31 +124930,31 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63593] = 3, - ACTIONS(5125), 1, + ACTIONS(5126), 1, sym_identifier, - ACTIONS(5127), 1, + ACTIONS(5128), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63604] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(5129), 1, + ACTIONS(5130), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63615] = 3, - ACTIONS(5108), 1, + ACTIONS(5109), 1, sym_identifier, - ACTIONS(5112), 1, + ACTIONS(5113), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63626] = 3, - ACTIONS(3806), 1, + ACTIONS(3805), 1, anon_sym_LBRACE, STATE(906), 1, sym_field_declaration_list, @@ -124962,7 +124962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63637] = 3, - ACTIONS(5131), 1, + ACTIONS(5132), 1, anon_sym_LT, STATE(707), 1, sym_type_parameters, @@ -124970,15 +124970,15 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63648] = 3, - ACTIONS(4255), 1, + ACTIONS(4254), 1, anon_sym_PIPE, - ACTIONS(5133), 1, + ACTIONS(5134), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63659] = 3, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, STATE(912), 1, sym_declaration_list, @@ -124986,39 +124986,39 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63670] = 3, - ACTIONS(3588), 1, + ACTIONS(3587), 1, anon_sym_COLON_COLON, - ACTIONS(5135), 1, + ACTIONS(5136), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63681] = 3, - ACTIONS(4001), 1, + ACTIONS(4000), 1, anon_sym_COLON_COLON, - ACTIONS(5137), 1, + ACTIONS(5138), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63692] = 3, - ACTIONS(4255), 1, + ACTIONS(4254), 1, anon_sym_PIPE, - ACTIONS(5139), 1, + ACTIONS(5140), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63703] = 3, - ACTIONS(3995), 1, + ACTIONS(3994), 1, anon_sym_COLON_COLON, - ACTIONS(5137), 1, + ACTIONS(5138), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63714] = 3, - ACTIONS(4137), 1, + ACTIONS(4136), 1, anon_sym_LBRACE, STATE(918), 1, sym_enum_variant_list, @@ -125026,9 +125026,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63725] = 3, - ACTIONS(3993), 1, + ACTIONS(3992), 1, anon_sym_COLON_COLON, - ACTIONS(5137), 1, + ACTIONS(5138), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, @@ -125042,7 +125042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63747] = 3, - ACTIONS(3806), 1, + ACTIONS(3805), 1, anon_sym_LBRACE, STATE(921), 1, sym_field_declaration_list, @@ -125050,15 +125050,15 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63758] = 3, - ACTIONS(4255), 1, + ACTIONS(4254), 1, anon_sym_PIPE, - ACTIONS(5141), 1, + ACTIONS(5142), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63769] = 3, - ACTIONS(3806), 1, + ACTIONS(3805), 1, anon_sym_LBRACE, STATE(924), 1, sym_field_declaration_list, @@ -125069,20 +125069,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4375), 2, + ACTIONS(4374), 2, anon_sym_RPAREN, anon_sym_COMMA, [63789] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5143), 2, + ACTIONS(5144), 2, anon_sym_RBRACE, anon_sym_COMMA, [63798] = 3, - ACTIONS(5145), 1, + ACTIONS(5146), 1, anon_sym_SEMI, - ACTIONS(5147), 1, + ACTIONS(5148), 1, anon_sym_as, ACTIONS(3), 2, sym_block_comment, @@ -125104,7 +125104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63831] = 3, - ACTIONS(3816), 1, + ACTIONS(3815), 1, anon_sym_LBRACE, STATE(458), 1, sym_field_declaration_list, @@ -125112,9 +125112,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63842] = 3, - ACTIONS(3993), 1, + ACTIONS(3992), 1, anon_sym_COLON_COLON, - ACTIONS(5149), 1, + ACTIONS(5150), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, @@ -125123,35 +125123,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5151), 2, + ACTIONS(5152), 2, sym_identifier, sym_metavariable, [63862] = 3, - ACTIONS(5123), 1, + ACTIONS(5124), 1, anon_sym_SEMI, - ACTIONS(5153), 1, + ACTIONS(5154), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63873] = 3, - ACTIONS(3995), 1, + ACTIONS(3994), 1, anon_sym_COLON_COLON, - ACTIONS(5149), 1, + ACTIONS(5150), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63884] = 3, - ACTIONS(5123), 1, + ACTIONS(5124), 1, anon_sym_SEMI, - ACTIONS(5155), 1, + ACTIONS(5156), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63895] = 3, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, STATE(450), 1, sym_declaration_list, @@ -125167,9 +125167,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63917] = 3, - ACTIONS(4001), 1, + ACTIONS(4000), 1, anon_sym_COLON_COLON, - ACTIONS(5149), 1, + ACTIONS(5150), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, @@ -125178,11 +125178,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5035), 2, + ACTIONS(5036), 2, anon_sym_COMMA, anon_sym_GT, [63937] = 3, - ACTIONS(4137), 1, + ACTIONS(4136), 1, anon_sym_LBRACE, STATE(873), 1, sym_enum_variant_list, @@ -125190,7 +125190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63948] = 3, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, STATE(449), 1, sym_declaration_list, @@ -125198,25 +125198,25 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [63959] = 3, - ACTIONS(4023), 1, + ACTIONS(4022), 1, anon_sym_RBRACE, - ACTIONS(5123), 1, + ACTIONS(5124), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63970] = 3, - ACTIONS(3588), 1, + ACTIONS(3587), 1, anon_sym_COLON_COLON, - ACTIONS(5157), 1, + ACTIONS(5158), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [63981] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(5159), 1, + ACTIONS(5160), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -125225,14 +125225,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5063), 2, + ACTIONS(5064), 2, anon_sym_RBRACE, anon_sym_COMMA, [64001] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4998), 2, + ACTIONS(4999), 2, anon_sym_COMMA, anon_sym_GT, [64010] = 3, @@ -125247,11 +125247,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5161), 2, + ACTIONS(5162), 2, sym_identifier, sym_metavariable, [64030] = 3, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, STATE(322), 1, sym_declaration_list, @@ -125259,7 +125259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64041] = 3, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, STATE(321), 1, sym_declaration_list, @@ -125267,17 +125267,17 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64052] = 3, - ACTIONS(5163), 1, + ACTIONS(5164), 1, anon_sym_SEMI, - ACTIONS(5165), 1, + ACTIONS(5166), 1, anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [64063] = 3, - ACTIONS(4255), 1, + ACTIONS(4254), 1, anon_sym_PIPE, - ACTIONS(5167), 1, + ACTIONS(5168), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, @@ -125286,11 +125286,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4970), 2, + ACTIONS(4971), 2, anon_sym_RBRACE, anon_sym_COMMA, [64083] = 3, - ACTIONS(3806), 1, + ACTIONS(3805), 1, anon_sym_LBRACE, STATE(853), 1, sym_field_declaration_list, @@ -125306,7 +125306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64105] = 3, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, STATE(848), 1, sym_declaration_list, @@ -125314,7 +125314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64116] = 3, - ACTIONS(3806), 1, + ACTIONS(3805), 1, anon_sym_LBRACE, STATE(845), 1, sym_field_declaration_list, @@ -125322,9 +125322,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64127] = 3, - ACTIONS(5169), 1, + ACTIONS(5170), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5172), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, @@ -125338,9 +125338,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64149] = 3, - ACTIONS(4255), 1, + ACTIONS(4254), 1, anon_sym_PIPE, - ACTIONS(5173), 1, + ACTIONS(5174), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, @@ -125349,11 +125349,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5175), 2, + ACTIONS(5176), 2, sym_identifier, sym_metavariable, [64169] = 3, - ACTIONS(3816), 1, + ACTIONS(3815), 1, anon_sym_LBRACE, STATE(442), 1, sym_field_declaration_list, @@ -125361,7 +125361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64180] = 3, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, STATE(1359), 1, sym_parameters, @@ -125369,7 +125369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64191] = 3, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, STATE(425), 1, sym_declaration_list, @@ -125380,7 +125380,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5177), 2, + ACTIONS(5178), 2, sym_identifier, sym_metavariable, [64211] = 3, @@ -125400,7 +125400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64233] = 3, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, STATE(970), 1, sym_declaration_list, @@ -125408,9 +125408,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64244] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(5179), 1, + ACTIONS(5180), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -125424,7 +125424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64266] = 3, - ACTIONS(4137), 1, + ACTIONS(4136), 1, anon_sym_LBRACE, STATE(822), 1, sym_enum_variant_list, @@ -125440,7 +125440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64288] = 3, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, STATE(978), 1, sym_declaration_list, @@ -125448,7 +125448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64299] = 3, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, STATE(979), 1, sym_declaration_list, @@ -125456,7 +125456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64310] = 3, - ACTIONS(3816), 1, + ACTIONS(3815), 1, anon_sym_LBRACE, STATE(378), 1, sym_field_declaration_list, @@ -125480,9 +125480,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64343] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(5181), 1, + ACTIONS(5182), 1, anon_sym_GT, ACTIONS(3), 2, sym_block_comment, @@ -125491,11 +125491,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5183), 2, + ACTIONS(5184), 2, sym_identifier, sym_metavariable, [64363] = 3, - ACTIONS(4137), 1, + ACTIONS(4136), 1, anon_sym_LBRACE, STATE(989), 1, sym_enum_variant_list, @@ -125503,9 +125503,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64374] = 3, - ACTIONS(5185), 1, + ACTIONS(5186), 1, anon_sym_LBRACK, - ACTIONS(5187), 1, + ACTIONS(5188), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, @@ -125514,11 +125514,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4286), 2, + ACTIONS(4285), 2, anon_sym_RPAREN, anon_sym_COMMA, [64394] = 3, - ACTIONS(3806), 1, + ACTIONS(3805), 1, anon_sym_LBRACE, STATE(993), 1, sym_field_declaration_list, @@ -125526,15 +125526,15 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64405] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(5189), 1, + ACTIONS(5190), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [64416] = 3, - ACTIONS(3806), 1, + ACTIONS(3805), 1, anon_sym_LBRACE, STATE(996), 1, sym_field_declaration_list, @@ -125542,7 +125542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64427] = 3, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, STATE(997), 1, sym_declaration_list, @@ -125550,15 +125550,15 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64438] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(5191), 1, + ACTIONS(5192), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [64449] = 3, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, STATE(306), 1, sym_declaration_list, @@ -125601,11 +125601,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4763), 2, + ACTIONS(4762), 2, anon_sym_COMMA, anon_sym_PIPE, [64513] = 3, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, STATE(1651), 1, sym_parameters, @@ -125613,9 +125613,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64524] = 3, - ACTIONS(5193), 1, + ACTIONS(5194), 1, sym_identifier, - ACTIONS(5195), 1, + ACTIONS(5196), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, @@ -125645,7 +125645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64568] = 3, - ACTIONS(4145), 1, + ACTIONS(4144), 1, anon_sym_LBRACE, STATE(346), 1, sym_enum_variant_list, @@ -125653,7 +125653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64579] = 3, - ACTIONS(4145), 1, + ACTIONS(4144), 1, anon_sym_LBRACE, STATE(396), 1, sym_enum_variant_list, @@ -125669,9 +125669,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64601] = 3, - ACTIONS(5123), 1, + ACTIONS(5124), 1, anon_sym_SEMI, - ACTIONS(5197), 1, + ACTIONS(5198), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, @@ -125680,13 +125680,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5199), 2, + ACTIONS(5200), 2, anon_sym_const, sym_mutable_specifier, [64621] = 3, - ACTIONS(5123), 1, + ACTIONS(5124), 1, anon_sym_SEMI, - ACTIONS(5201), 1, + ACTIONS(5202), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, @@ -125700,7 +125700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64643] = 3, - ACTIONS(3816), 1, + ACTIONS(3815), 1, anon_sym_LBRACE, STATE(389), 1, sym_field_declaration_list, @@ -125708,7 +125708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64654] = 3, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, STATE(1632), 1, sym_parameters, @@ -125716,25 +125716,25 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64665] = 3, - ACTIONS(5203), 1, + ACTIONS(5204), 1, anon_sym_LPAREN, - ACTIONS(5205), 1, + ACTIONS(5206), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [64676] = 3, - ACTIONS(5207), 1, + ACTIONS(5208), 1, anon_sym_LPAREN, - ACTIONS(5209), 1, + ACTIONS(5210), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [64687] = 3, - ACTIONS(5211), 1, + ACTIONS(5212), 1, anon_sym_SEMI, - ACTIONS(5213), 1, + ACTIONS(5214), 1, anon_sym_as, ACTIONS(3), 2, sym_block_comment, @@ -125748,7 +125748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64709] = 3, - ACTIONS(3816), 1, + ACTIONS(3815), 1, anon_sym_LBRACE, STATE(357), 1, sym_field_declaration_list, @@ -125796,7 +125796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64775] = 3, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, STATE(1035), 1, sym_declaration_list, @@ -125815,27 +125815,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5116), 2, + ACTIONS(5117), 2, anon_sym_RBRACE, anon_sym_COMMA, [64806] = 3, - ACTIONS(4255), 1, + ACTIONS(4254), 1, anon_sym_PIPE, - ACTIONS(5215), 1, + ACTIONS(5216), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [64817] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(5217), 1, + ACTIONS(5218), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [64828] = 3, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, STATE(1042), 1, sym_declaration_list, @@ -125843,7 +125843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64839] = 3, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, STATE(1043), 1, sym_declaration_list, @@ -125862,35 +125862,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5219), 2, + ACTIONS(5220), 2, anon_sym_RPAREN, anon_sym_COMMA, [64870] = 3, - ACTIONS(4049), 1, + ACTIONS(4048), 1, anon_sym_RPAREN, - ACTIONS(5123), 1, + ACTIONS(5124), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [64881] = 3, - ACTIONS(4047), 1, + ACTIONS(4046), 1, anon_sym_RPAREN, - ACTIONS(5123), 1, + ACTIONS(5124), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [64892] = 3, - ACTIONS(4255), 1, + ACTIONS(4254), 1, anon_sym_PIPE, - ACTIONS(4325), 1, + ACTIONS(4324), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [64903] = 3, - ACTIONS(3918), 1, + ACTIONS(3917), 1, anon_sym_COLON, STATE(2048), 1, sym_trait_bounds, @@ -125906,23 +125906,23 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64925] = 3, - ACTIONS(4777), 1, + ACTIONS(4776), 1, sym_identifier, - ACTIONS(4781), 1, + ACTIONS(4780), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [64936] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(5221), 1, + ACTIONS(5222), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [64947] = 3, - ACTIONS(3816), 1, + ACTIONS(3815), 1, anon_sym_LBRACE, STATE(364), 1, sym_field_declaration_list, @@ -125930,7 +125930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [64958] = 3, - ACTIONS(3810), 1, + ACTIONS(3809), 1, anon_sym_LT, STATE(642), 1, sym_type_parameters, @@ -125941,13 +125941,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5223), 2, + ACTIONS(5224), 2, anon_sym_RBRACE, anon_sym_COMMA, [64978] = 3, - ACTIONS(5123), 1, + ACTIONS(5124), 1, anon_sym_SEMI, - ACTIONS(5225), 1, + ACTIONS(5226), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, @@ -125961,23 +125961,23 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [65000] = 3, - ACTIONS(5123), 1, + ACTIONS(5124), 1, anon_sym_SEMI, - ACTIONS(5227), 1, + ACTIONS(5228), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65011] = 3, - ACTIONS(4029), 1, + ACTIONS(4028), 1, anon_sym_RBRACE, - ACTIONS(5123), 1, + ACTIONS(5124), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65022] = 3, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, STATE(1656), 1, sym_parameters, @@ -125988,27 +125988,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4791), 2, + ACTIONS(4790), 2, anon_sym_RBRACE, anon_sym_COMMA, [65042] = 3, - ACTIONS(4021), 1, + ACTIONS(4020), 1, anon_sym_RPAREN, - ACTIONS(5123), 1, + ACTIONS(5124), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65053] = 3, - ACTIONS(4015), 1, + ACTIONS(4014), 1, anon_sym_RBRACE, - ACTIONS(5123), 1, + ACTIONS(5124), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65064] = 3, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, STATE(421), 1, sym_declaration_list, @@ -126024,7 +126024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [65086] = 3, - ACTIONS(3852), 1, + ACTIONS(3851), 1, anon_sym_LBRACE, STATE(1075), 1, sym_declaration_list, @@ -126043,19 +126043,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4451), 2, + ACTIONS(4450), 2, anon_sym_RPAREN, anon_sym_COMMA, [65117] = 3, - ACTIONS(4009), 1, + ACTIONS(4008), 1, anon_sym_RPAREN, - ACTIONS(5123), 1, + ACTIONS(5124), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65128] = 3, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, STATE(369), 1, sym_declaration_list, @@ -126081,21 +126081,21 @@ static const uint16_t ts_small_parse_table[] = { [65161] = 3, ACTIONS(2816), 1, anon_sym_COLON, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65172] = 3, - ACTIONS(5229), 1, + ACTIONS(5230), 1, anon_sym_BANG, - ACTIONS(5231), 1, + ACTIONS(5232), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65183] = 3, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, STATE(426), 1, sym_declaration_list, @@ -126103,7 +126103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [65194] = 3, - ACTIONS(4145), 1, + ACTIONS(4144), 1, anon_sym_LBRACE, STATE(404), 1, sym_enum_variant_list, @@ -126111,7 +126111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [65205] = 3, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, STATE(1679), 1, sym_parameters, @@ -126127,7 +126127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [65227] = 3, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, STATE(349), 1, sym_declaration_list, @@ -126145,7 +126145,7 @@ static const uint16_t ts_small_parse_table[] = { [65249] = 3, ACTIONS(2792), 1, anon_sym_COLON, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, @@ -126153,7 +126153,7 @@ static const uint16_t ts_small_parse_table[] = { [65260] = 3, ACTIONS(2788), 1, anon_sym_COLON, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, @@ -126167,17 +126167,17 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [65282] = 3, - ACTIONS(5123), 1, + ACTIONS(5124), 1, anon_sym_SEMI, - ACTIONS(5233), 1, + ACTIONS(5234), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65293] = 3, - ACTIONS(5123), 1, + ACTIONS(5124), 1, anon_sym_SEMI, - ACTIONS(5235), 1, + ACTIONS(5236), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, @@ -126193,7 +126193,7 @@ static const uint16_t ts_small_parse_table[] = { [65315] = 3, ACTIONS(2748), 1, anon_sym_COLON_COLON, - ACTIONS(3956), 1, + ACTIONS(3955), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, @@ -126202,7 +126202,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5237), 2, + ACTIONS(5238), 2, anon_sym_const, sym_mutable_specifier, [65335] = 3, @@ -126217,27 +126217,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4522), 2, + ACTIONS(4521), 2, anon_sym_COMMA, anon_sym_GT, [65355] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5239), 2, + ACTIONS(5240), 2, sym_float_literal, sym_integer_literal, [65364] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5241), 2, + ACTIONS(5242), 2, sym_identifier, sym_metavariable, [65373] = 3, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(5243), 1, + ACTIONS(5244), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -126245,13 +126245,13 @@ static const uint16_t ts_small_parse_table[] = { [65384] = 3, ACTIONS(2944), 1, anon_sym_COLON, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65395] = 3, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, STATE(1658), 1, sym_parameters, @@ -126259,9 +126259,9 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [65406] = 3, - ACTIONS(5245), 1, + ACTIONS(5246), 1, sym_identifier, - ACTIONS(5247), 1, + ACTIONS(5248), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, @@ -126275,41 +126275,41 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [65428] = 3, - ACTIONS(5249), 1, + ACTIONS(5250), 1, anon_sym_LPAREN, - ACTIONS(5251), 1, + ACTIONS(5252), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65439] = 3, - ACTIONS(5253), 1, + ACTIONS(5254), 1, anon_sym_LPAREN, - ACTIONS(5255), 1, + ACTIONS(5256), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65450] = 3, - ACTIONS(3582), 1, + ACTIONS(3581), 1, anon_sym_COLON_COLON, - ACTIONS(5257), 1, + ACTIONS(5258), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65461] = 3, - ACTIONS(3443), 1, + ACTIONS(3442), 1, anon_sym_BANG, - ACTIONS(5259), 1, + ACTIONS(5260), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65472] = 3, - ACTIONS(3594), 1, + ACTIONS(3593), 1, anon_sym_COLON_COLON, - ACTIONS(5257), 1, + ACTIONS(5258), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, @@ -126323,25 +126323,25 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [65494] = 3, - ACTIONS(5261), 1, + ACTIONS(5262), 1, anon_sym_SEMI, - ACTIONS(5263), 1, + ACTIONS(5264), 1, anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65505] = 3, - ACTIONS(4255), 1, + ACTIONS(4254), 1, anon_sym_PIPE, - ACTIONS(5265), 1, + ACTIONS(5266), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65516] = 3, - ACTIONS(4025), 1, + ACTIONS(4024), 1, anon_sym_COLON, - ACTIONS(4081), 1, + ACTIONS(4080), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, @@ -126365,14 +126365,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5267), 2, + ACTIONS(5268), 2, anon_sym_const, sym_mutable_specifier, [65556] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4121), 2, + ACTIONS(4120), 2, anon_sym_RPAREN, anon_sym_COMMA, [65565] = 3, @@ -126384,15 +126384,15 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [65576] = 3, - ACTIONS(4255), 1, + ACTIONS(4254), 1, anon_sym_PIPE, - ACTIONS(5269), 1, + ACTIONS(5270), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65587] = 3, - ACTIONS(3816), 1, + ACTIONS(3815), 1, anon_sym_LBRACE, STATE(258), 1, sym_field_declaration_list, @@ -126400,7 +126400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [65598] = 3, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, STATE(271), 1, sym_declaration_list, @@ -126416,7 +126416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [65620] = 3, - ACTIONS(3816), 1, + ACTIONS(3815), 1, anon_sym_LBRACE, STATE(285), 1, sym_field_declaration_list, @@ -126427,11 +126427,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4621), 2, + ACTIONS(4620), 2, anon_sym_RBRACE, anon_sym_COMMA, [65640] = 3, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, STATE(1352), 1, sym_parameters, @@ -126439,7 +126439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [65651] = 3, - ACTIONS(3800), 1, + ACTIONS(3799), 1, anon_sym_LBRACE, STATE(462), 1, sym_declaration_list, @@ -126447,7 +126447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [65662] = 3, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, STATE(1627), 1, sym_parameters, @@ -126463,7 +126463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [65684] = 3, - ACTIONS(4145), 1, + ACTIONS(4144), 1, anon_sym_LBRACE, STATE(315), 1, sym_enum_variant_list, @@ -126471,7 +126471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [65695] = 3, - ACTIONS(3453), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, STATE(1375), 1, sym_parameters, @@ -126479,93 +126479,93 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [65706] = 3, - ACTIONS(3515), 1, + ACTIONS(3514), 1, anon_sym_BANG, - ACTIONS(3537), 1, + ACTIONS(3536), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65717] = 2, - ACTIONS(5271), 1, + ACTIONS(5272), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65725] = 2, - ACTIONS(5123), 1, + ACTIONS(5124), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65733] = 2, - ACTIONS(5273), 1, + ACTIONS(5274), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65741] = 2, - ACTIONS(5275), 1, + ACTIONS(5276), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65749] = 2, - ACTIONS(5277), 1, + ACTIONS(5278), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65757] = 2, - ACTIONS(4758), 1, + ACTIONS(4757), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65765] = 2, - ACTIONS(5279), 1, + ACTIONS(5280), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65773] = 2, - ACTIONS(5281), 1, + ACTIONS(5282), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65781] = 2, - ACTIONS(5283), 1, + ACTIONS(5284), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65789] = 2, - ACTIONS(5285), 1, + ACTIONS(5286), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65797] = 2, - ACTIONS(5287), 1, + ACTIONS(5288), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65805] = 2, - ACTIONS(5289), 1, + ACTIONS(5290), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65813] = 2, - ACTIONS(5291), 1, + ACTIONS(5292), 1, anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65821] = 2, - ACTIONS(5293), 1, + ACTIONS(5294), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, @@ -126577,73 +126577,73 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [65837] = 2, - ACTIONS(5295), 1, + ACTIONS(5296), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65845] = 2, - ACTIONS(3537), 1, + ACTIONS(3536), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65853] = 2, - ACTIONS(5297), 1, + ACTIONS(5298), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65861] = 2, - ACTIONS(5299), 1, + ACTIONS(5300), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65869] = 2, - ACTIONS(5301), 1, + ACTIONS(5302), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65877] = 2, - ACTIONS(5303), 1, + ACTIONS(5304), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65885] = 2, - ACTIONS(5305), 1, + ACTIONS(5306), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65893] = 2, - ACTIONS(4876), 1, + ACTIONS(4877), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65901] = 2, - ACTIONS(5307), 1, + ACTIONS(5308), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65909] = 2, - ACTIONS(5309), 1, + ACTIONS(5310), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65917] = 2, - ACTIONS(5311), 1, + ACTIONS(5312), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65925] = 2, - ACTIONS(5313), 1, + ACTIONS(5314), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -126655,151 +126655,151 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [65941] = 2, - ACTIONS(5315), 1, + ACTIONS(5316), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65949] = 2, - ACTIONS(4710), 1, + ACTIONS(4709), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65957] = 2, - ACTIONS(5317), 1, + ACTIONS(5318), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65965] = 2, - ACTIONS(5319), 1, + ACTIONS(5320), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65973] = 2, - ACTIONS(5321), 1, + ACTIONS(5322), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65981] = 2, - ACTIONS(5323), 1, + ACTIONS(5324), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65989] = 2, - ACTIONS(5325), 1, + ACTIONS(5326), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [65997] = 2, - ACTIONS(5327), 1, + ACTIONS(5328), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66005] = 2, - ACTIONS(4936), 1, + ACTIONS(4937), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66013] = 2, - ACTIONS(5329), 1, + ACTIONS(5330), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66021] = 2, - ACTIONS(5331), 1, + ACTIONS(5332), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66029] = 2, - ACTIONS(5010), 1, + ACTIONS(5011), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66037] = 2, - ACTIONS(5333), 1, + ACTIONS(5334), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66045] = 2, - ACTIONS(5335), 1, + ACTIONS(5336), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66053] = 2, - ACTIONS(5337), 1, + ACTIONS(5338), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66061] = 2, - ACTIONS(4588), 1, + ACTIONS(4587), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66069] = 2, - ACTIONS(5339), 1, + ACTIONS(5340), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66077] = 2, - ACTIONS(5341), 1, + ACTIONS(5342), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66085] = 2, - ACTIONS(5343), 1, + ACTIONS(5344), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66093] = 2, - ACTIONS(5345), 1, + ACTIONS(5346), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66101] = 2, - ACTIONS(5347), 1, + ACTIONS(5348), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66109] = 2, - ACTIONS(5349), 1, + ACTIONS(5350), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66117] = 2, - ACTIONS(3527), 1, + ACTIONS(3526), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66125] = 2, - ACTIONS(4125), 1, + ACTIONS(4124), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66133] = 2, - ACTIONS(5057), 1, + ACTIONS(5058), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, @@ -126811,61 +126811,61 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [66149] = 2, - ACTIONS(3588), 1, + ACTIONS(3587), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66157] = 2, - ACTIONS(3533), 1, + ACTIONS(3532), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66165] = 2, - ACTIONS(5351), 1, + ACTIONS(5352), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66173] = 2, - ACTIONS(5353), 1, + ACTIONS(5354), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66181] = 2, - ACTIONS(5355), 1, + ACTIONS(5356), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66189] = 2, - ACTIONS(4593), 1, + ACTIONS(4592), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66197] = 2, - ACTIONS(5357), 1, + ACTIONS(5358), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66205] = 2, - ACTIONS(5359), 1, + ACTIONS(5360), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66213] = 2, - ACTIONS(5361), 1, + ACTIONS(5362), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66221] = 2, - ACTIONS(5363), 1, + ACTIONS(5364), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -126877,31 +126877,31 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [66237] = 2, - ACTIONS(5365), 1, + ACTIONS(5366), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66245] = 2, - ACTIONS(5367), 1, + ACTIONS(5368), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66253] = 2, - ACTIONS(5369), 1, + ACTIONS(5370), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66261] = 2, - ACTIONS(5371), 1, + ACTIONS(5372), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66269] = 2, - ACTIONS(4554), 1, + ACTIONS(4553), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, @@ -126913,31 +126913,31 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [66285] = 2, - ACTIONS(5373), 1, + ACTIONS(5374), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66293] = 2, - ACTIONS(5375), 1, + ACTIONS(5376), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66301] = 2, - ACTIONS(5377), 1, + ACTIONS(5378), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66309] = 2, - ACTIONS(4518), 1, + ACTIONS(4517), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66317] = 2, - ACTIONS(5379), 1, + ACTIONS(5380), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -126949,109 +126949,109 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [66333] = 2, - ACTIONS(4015), 1, + ACTIONS(4014), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66341] = 2, - ACTIONS(5381), 1, + ACTIONS(5382), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66349] = 2, - ACTIONS(5383), 1, + ACTIONS(5384), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66357] = 2, - ACTIONS(5385), 1, + ACTIONS(5386), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66365] = 2, - ACTIONS(5387), 1, + ACTIONS(5388), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66373] = 2, - ACTIONS(5389), 1, + ACTIONS(5390), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66381] = 2, - ACTIONS(5391), 1, + ACTIONS(5392), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66389] = 2, - ACTIONS(5393), 1, + ACTIONS(5394), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66397] = 2, - ACTIONS(5395), 1, + ACTIONS(5396), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66405] = 2, - ACTIONS(5397), 1, + ACTIONS(5398), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66413] = 2, - ACTIONS(5399), 1, + ACTIONS(5400), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66421] = 2, - ACTIONS(5401), 1, + ACTIONS(5402), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66429] = 2, - ACTIONS(4029), 1, + ACTIONS(4028), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66437] = 2, - ACTIONS(5403), 1, + ACTIONS(5404), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66445] = 2, - ACTIONS(5405), 1, + ACTIONS(5406), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66453] = 2, - ACTIONS(4178), 1, + ACTIONS(4177), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66461] = 2, - ACTIONS(5407), 1, + ACTIONS(5408), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66469] = 2, - ACTIONS(5235), 1, + ACTIONS(5236), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -127063,25 +127063,25 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [66485] = 2, - ACTIONS(5409), 1, + ACTIONS(5410), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66493] = 2, - ACTIONS(5231), 1, + ACTIONS(5232), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66501] = 2, - ACTIONS(4630), 1, + ACTIONS(4629), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66509] = 2, - ACTIONS(5411), 1, + ACTIONS(5412), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, @@ -127093,109 +127093,109 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [66525] = 2, - ACTIONS(5413), 1, + ACTIONS(5414), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66533] = 2, - ACTIONS(5415), 1, + ACTIONS(5416), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66541] = 2, - ACTIONS(5417), 1, + ACTIONS(5418), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66549] = 2, - ACTIONS(5419), 1, + ACTIONS(5420), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66557] = 2, - ACTIONS(5421), 1, + ACTIONS(5422), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66565] = 2, - ACTIONS(5423), 1, + ACTIONS(5424), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66573] = 2, - ACTIONS(5425), 1, + ACTIONS(5426), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66581] = 2, - ACTIONS(5427), 1, + ACTIONS(5428), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66589] = 2, - ACTIONS(5429), 1, + ACTIONS(5430), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66597] = 2, - ACTIONS(5431), 1, + ACTIONS(5432), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66605] = 2, - ACTIONS(5433), 1, + ACTIONS(5434), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66613] = 2, - ACTIONS(5435), 1, + ACTIONS(5436), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66621] = 2, - ACTIONS(5437), 1, + ACTIONS(5438), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66629] = 2, - ACTIONS(5227), 1, + ACTIONS(5228), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66637] = 2, - ACTIONS(5439), 1, + ACTIONS(5440), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66645] = 2, - ACTIONS(5441), 1, + ACTIONS(5442), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66653] = 2, - ACTIONS(4282), 1, + ACTIONS(4281), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66661] = 2, - ACTIONS(5443), 1, + ACTIONS(5444), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -127207,13 +127207,13 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [66677] = 2, - ACTIONS(5259), 1, + ACTIONS(5260), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66685] = 2, - ACTIONS(5445), 1, + ACTIONS(5446), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -127225,145 +127225,145 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [66701] = 2, - ACTIONS(5447), 1, + ACTIONS(5448), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66709] = 2, - ACTIONS(5449), 1, + ACTIONS(5450), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66717] = 2, - ACTIONS(5451), 1, + ACTIONS(5452), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66725] = 2, - ACTIONS(5453), 1, + ACTIONS(5454), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66733] = 2, - ACTIONS(5455), 1, + ACTIONS(5456), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66741] = 2, - ACTIONS(5457), 1, + ACTIONS(5458), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66749] = 2, - ACTIONS(5459), 1, + ACTIONS(5460), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66757] = 2, - ACTIONS(5461), 1, + ACTIONS(5462), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66765] = 2, - ACTIONS(5463), 1, + ACTIONS(5464), 1, sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66773] = 2, - ACTIONS(5465), 1, + ACTIONS(5466), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66781] = 2, - ACTIONS(5467), 1, + ACTIONS(5468), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66789] = 2, - ACTIONS(5469), 1, + ACTIONS(5470), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66797] = 2, - ACTIONS(5471), 1, + ACTIONS(5472), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66805] = 2, - ACTIONS(5473), 1, + ACTIONS(5474), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66813] = 2, - ACTIONS(5475), 1, + ACTIONS(5476), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66821] = 2, - ACTIONS(5477), 1, + ACTIONS(5478), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66829] = 2, - ACTIONS(5479), 1, + ACTIONS(5480), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66837] = 2, - ACTIONS(5481), 1, + ACTIONS(5482), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66845] = 2, - ACTIONS(5483), 1, + ACTIONS(5484), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66853] = 2, - ACTIONS(5485), 1, + ACTIONS(5486), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66861] = 2, - ACTIONS(5487), 1, + ACTIONS(5488), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66869] = 2, - ACTIONS(4323), 1, + ACTIONS(4322), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66877] = 2, - ACTIONS(3995), 1, + ACTIONS(3994), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66885] = 2, - ACTIONS(5489), 1, + ACTIONS(5490), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -127375,31 +127375,31 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [66901] = 2, - ACTIONS(4732), 1, + ACTIONS(4731), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66909] = 2, - ACTIONS(5491), 1, + ACTIONS(5492), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66917] = 2, - ACTIONS(3463), 1, + ACTIONS(3462), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66925] = 2, - ACTIONS(5493), 1, + ACTIONS(5494), 1, ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66933] = 2, - ACTIONS(5495), 1, + ACTIONS(5496), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -127411,19 +127411,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [66949] = 2, - ACTIONS(5497), 1, + ACTIONS(5498), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66957] = 2, - ACTIONS(5499), 1, + ACTIONS(5500), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66965] = 2, - ACTIONS(5501), 1, + ACTIONS(5502), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, @@ -127435,115 +127435,115 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [66981] = 2, - ACTIONS(5503), 1, + ACTIONS(5504), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66989] = 2, - ACTIONS(5505), 1, + ACTIONS(5506), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [66997] = 2, - ACTIONS(5507), 1, + ACTIONS(5508), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67005] = 2, - ACTIONS(5509), 1, + ACTIONS(5510), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67013] = 2, - ACTIONS(5511), 1, + ACTIONS(5512), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67021] = 2, - ACTIONS(4882), 1, + ACTIONS(4883), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67029] = 2, - ACTIONS(5513), 1, + ACTIONS(5514), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67037] = 2, - ACTIONS(4856), 1, + ACTIONS(4857), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67045] = 2, - ACTIONS(5515), 1, + ACTIONS(5516), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67053] = 2, - ACTIONS(5517), 1, + ACTIONS(5518), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67061] = 2, - ACTIONS(5519), 1, + ACTIONS(5520), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67069] = 2, - ACTIONS(5521), 1, + ACTIONS(5522), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67077] = 2, - ACTIONS(5523), 1, + ACTIONS(5524), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67085] = 2, - ACTIONS(5525), 1, + ACTIONS(5526), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67093] = 2, - ACTIONS(5527), 1, + ACTIONS(5528), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67101] = 2, - ACTIONS(5529), 1, + ACTIONS(5530), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67109] = 2, - ACTIONS(5531), 1, + ACTIONS(5532), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67117] = 2, - ACTIONS(5533), 1, + ACTIONS(5534), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67125] = 2, - ACTIONS(4722), 1, + ACTIONS(4721), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -127555,19 +127555,19 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [67141] = 2, - ACTIONS(5535), 1, + ACTIONS(5536), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67149] = 2, - ACTIONS(5537), 1, + ACTIONS(5538), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67157] = 2, - ACTIONS(5539), 1, + ACTIONS(5540), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, @@ -127579,415 +127579,415 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, sym_line_comment, [67173] = 2, - ACTIONS(5541), 1, + ACTIONS(5542), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67181] = 2, - ACTIONS(5543), 1, + ACTIONS(5544), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67189] = 2, - ACTIONS(5545), 1, + ACTIONS(5546), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67197] = 2, - ACTIONS(4846), 1, + ACTIONS(4847), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67205] = 2, - ACTIONS(4918), 1, + ACTIONS(4919), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67213] = 2, - ACTIONS(5547), 1, + ACTIONS(5548), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67221] = 2, - ACTIONS(5549), 1, + ACTIONS(5550), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67229] = 2, - ACTIONS(4447), 1, + ACTIONS(4446), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67237] = 2, - ACTIONS(4077), 1, + ACTIONS(4076), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67245] = 2, - ACTIONS(5551), 1, + ACTIONS(5552), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67253] = 2, - ACTIONS(5553), 1, + ACTIONS(5554), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67261] = 2, - ACTIONS(5555), 1, + ACTIONS(5556), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67269] = 2, - ACTIONS(4217), 1, + ACTIONS(4216), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67277] = 2, - ACTIONS(5557), 1, + ACTIONS(5558), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67285] = 2, - ACTIONS(5559), 1, + ACTIONS(5560), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67293] = 2, - ACTIONS(4127), 1, + ACTIONS(4126), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67301] = 2, - ACTIONS(5561), 1, + ACTIONS(5562), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67309] = 2, - ACTIONS(5563), 1, + ACTIONS(5564), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67317] = 2, - ACTIONS(5565), 1, + ACTIONS(5566), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67325] = 2, - ACTIONS(5567), 1, + ACTIONS(5568), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67333] = 2, - ACTIONS(5569), 1, + ACTIONS(5570), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67341] = 2, - ACTIONS(5571), 1, + ACTIONS(5572), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67349] = 2, - ACTIONS(5573), 1, + ACTIONS(5574), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67357] = 2, - ACTIONS(5575), 1, + ACTIONS(5576), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67365] = 2, - ACTIONS(5577), 1, + ACTIONS(5578), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67373] = 2, - ACTIONS(5579), 1, + ACTIONS(5580), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67381] = 2, - ACTIONS(5581), 1, + ACTIONS(5582), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67389] = 2, - ACTIONS(5583), 1, + ACTIONS(5584), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67397] = 2, - ACTIONS(5585), 1, + ACTIONS(5586), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67405] = 2, - ACTIONS(5587), 1, + ACTIONS(5588), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67413] = 2, - ACTIONS(5589), 1, + ACTIONS(5590), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67421] = 2, - ACTIONS(5591), 1, + ACTIONS(5592), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67429] = 2, - ACTIONS(4031), 1, + ACTIONS(4030), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67437] = 2, - ACTIONS(5027), 1, + ACTIONS(5028), 1, anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67445] = 2, - ACTIONS(4023), 1, + ACTIONS(4022), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67453] = 2, - ACTIONS(5037), 1, + ACTIONS(5038), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67461] = 2, - ACTIONS(5593), 1, + ACTIONS(5594), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67469] = 2, - ACTIONS(5595), 1, + ACTIONS(5596), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67477] = 2, - ACTIONS(5597), 1, + ACTIONS(5598), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67485] = 2, - ACTIONS(5599), 1, + ACTIONS(5600), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67493] = 2, - ACTIONS(5601), 1, + ACTIONS(5602), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67501] = 2, - ACTIONS(5155), 1, + ACTIONS(5156), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67509] = 2, - ACTIONS(5153), 1, + ACTIONS(5154), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67517] = 2, - ACTIONS(5603), 1, + ACTIONS(5604), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67525] = 2, - ACTIONS(5605), 1, + ACTIONS(5606), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67533] = 2, - ACTIONS(5607), 1, + ACTIONS(5608), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67541] = 2, - ACTIONS(5609), 1, + ACTIONS(5610), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67549] = 2, - ACTIONS(5611), 1, + ACTIONS(5612), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67557] = 2, - ACTIONS(5092), 1, + ACTIONS(5093), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67565] = 2, - ACTIONS(5613), 1, + ACTIONS(5614), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67573] = 2, - ACTIONS(5615), 1, + ACTIONS(5616), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67581] = 2, - ACTIONS(5617), 1, + ACTIONS(5618), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67589] = 2, - ACTIONS(5619), 1, + ACTIONS(5620), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67597] = 2, - ACTIONS(5621), 1, + ACTIONS(5622), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67605] = 2, - ACTIONS(5623), 1, + ACTIONS(5624), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67613] = 2, - ACTIONS(5625), 1, + ACTIONS(5626), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67621] = 2, - ACTIONS(3487), 1, + ACTIONS(3486), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67629] = 2, - ACTIONS(5627), 1, + ACTIONS(5628), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67637] = 2, - ACTIONS(5629), 1, + ACTIONS(5630), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67645] = 2, - ACTIONS(5631), 1, + ACTIONS(5632), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67653] = 2, - ACTIONS(5633), 1, + ACTIONS(5634), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67661] = 2, - ACTIONS(5635), 1, + ACTIONS(5636), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67669] = 2, - ACTIONS(5637), 1, + ACTIONS(5638), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67677] = 2, - ACTIONS(5639), 1, + ACTIONS(5640), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67685] = 2, - ACTIONS(4335), 1, + ACTIONS(4334), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67693] = 2, - ACTIONS(5100), 1, + ACTIONS(5101), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67701] = 2, - ACTIONS(5641), 1, + ACTIONS(5642), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67709] = 2, - ACTIONS(5643), 1, + ACTIONS(5644), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [67717] = 2, - ACTIONS(5645), 1, + ACTIONS(5646), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -131472,1188 +131472,1189 @@ static const TSParseActionEntry ts_parse_actions[] = { [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_let_chain, 1), REDUCE(sym__condition, 1, .dynamic_precedence = 1), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 98), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 218), - [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 134), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2), REDUCE(sym_binary_expression, 3, .production_id = 41), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 171), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 126), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 154), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 184), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 183), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 98), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 31), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 124), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1556), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1539), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(601), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(497), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(481), - [3966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(499), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [4263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 157), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 225), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 102), - [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 197), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), - [4310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1361), - [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(189), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 102), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 225), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 157), - [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), - [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 197), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1165), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1776), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 111), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(600), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 198), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(190), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_chain, 2), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [4590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(51), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 102), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 96), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 220), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1533), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1560), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), - [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(151), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 159), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(582), - [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1566), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 138), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 158), - [4862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 158), SHIFT_REPEAT(556), - [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2), SHIFT_REPEAT(72), - [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), - [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), - [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), - [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 189), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [4972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1541), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 188), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 91), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2149), - [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [5018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2), SHIFT_REPEAT(62), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [5029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(745), - [5032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(236), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 140), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [5065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1298), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [5118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1620), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [5181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [5493] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 155), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [5545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 81), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 80), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, .dynamic_precedence = 1), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 98), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 218), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 134), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2), REDUCE(sym_binary_expression, 3, .production_id = 41), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 171), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 126), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 154), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 184), + [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 183), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 98), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 31), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 124), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), + [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), + [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), + [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), + [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), + [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [3942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1556), + [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1539), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(601), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(497), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [3962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(481), + [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(499), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 157), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 225), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 102), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 197), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), + [4309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1361), + [4331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(189), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 102), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 225), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 157), + [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 197), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1165), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1776), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 111), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(600), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 198), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(190), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_chain, 2), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(51), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 102), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 96), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 220), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [4622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1533), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1560), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), + [4660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(151), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 159), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(582), + [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [4792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1566), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 138), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 158), + [4863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 158), SHIFT_REPEAT(556), + [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2), SHIFT_REPEAT(72), + [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), + [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), + [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [4909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), + [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 189), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [4973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1541), + [4976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), + [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 188), + [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 91), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2149), + [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2), SHIFT_REPEAT(62), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(745), + [5033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(236), + [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 140), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1298), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [5119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1620), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5494] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 155), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 81), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 80), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), }; #ifdef __cplusplus From e367ff2de00a9b96242f8036a371cc5e4667d2e0 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Thu, 3 Nov 2022 11:49:57 -0700 Subject: [PATCH 5/5] Avoid conflict for binary expressions within if expressions --- corpus/expressions.txt | 31 + grammar.js | 14 +- src/grammar.json | 138 +- src/parser.c | 129282 +++++++++++++++++++------------------- 4 files changed, 64690 insertions(+), 64775 deletions(-) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 69777b69..06670521 100644 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -540,6 +540,37 @@ if foo && bar || baz {} right: (identifier)) consequence: (block)))) +================================================================================ +Basic if let expressions +================================================================================ + +if let Some(a) = b + && c + && d + && let Some(e) = f +{ +} + +-------------------------------------------------------------------------------- + +(source_file + (expression_statement + (if_expression + condition: (let_chain + (let_condition + pattern: (tuple_struct_pattern + type: (identifier) + (identifier)) + value: (identifier)) + (identifier) + (identifier) + (let_condition + pattern: (tuple_struct_pattern + type: (identifier) + (identifier)) + value: (identifier))) + consequence: (block)))) + ================================================================================ If let expressions ================================================================================ diff --git a/grammar.js b/grammar.js index 96ffe7e2..49c0b299 100644 --- a/grammar.js +++ b/grammar.js @@ -77,7 +77,6 @@ module.exports = grammar({ [$.parameters, $._pattern], [$.parameters, $.tuple_struct_pattern], [$.type_parameters, $.for_lifetimes], - [$.binary_expression, $.let_chain], ], word: $ => $.identifier, @@ -1107,15 +1106,18 @@ module.exports = grammar({ field('value', prec.left(PREC.and, $._expression)) ), - let_chain: $ => sepBy2('&&', choice( - $.let_condition, - prec.left(PREC.and, $._expression) + _let_chain: $ => prec.left(PREC.and, choice( + seq($._let_chain, '&&', $.let_condition), + seq($._let_chain, '&&', $._expression), + seq($.let_condition, '&&', $._expression), + seq($.let_condition, '&&', $.let_condition), + seq($._expression, '&&', $.let_condition), )), _condition: $ => choice( - prec.dynamic(1, $._expression), + $._expression, $.let_condition, - $.let_chain + alias($._let_chain, $.let_chain), ), else_clause: $ => seq( diff --git a/src/grammar.json b/src/grammar.json index fda2f07b..867f2683 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -6388,75 +6388,119 @@ } ] }, - "let_chain": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "let_condition" - }, - { - "type": "PREC_LEFT", - "value": 3, - "content": { + "_let_chain": { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_let_chain" + }, + { + "type": "STRING", + "value": "&&" + }, + { + "type": "SYMBOL", + "name": "let_condition" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_let_chain" + }, + { + "type": "STRING", + "value": "&&" + }, + { "type": "SYMBOL", "name": "_expression" } - } - ] - }, - { - "type": "REPEAT1", - "content": { + ] + }, + { "type": "SEQ", "members": [ + { + "type": "SYMBOL", + "name": "let_condition" + }, { "type": "STRING", "value": "&&" }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "let_condition" - }, - { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "let_condition" + }, + { + "type": "STRING", + "value": "&&" + }, + { + "type": "SYMBOL", + "name": "let_condition" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "&&" + }, + { + "type": "SYMBOL", + "name": "let_condition" } ] } - } - ] + ] + } }, "_condition": { "type": "CHOICE", "members": [ { - "type": "PREC_DYNAMIC", - "value": 1, - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "type": "SYMBOL", + "name": "_expression" }, { "type": "SYMBOL", "name": "let_condition" }, { - "type": "SYMBOL", - "name": "let_chain" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_let_chain" + }, + "named": true, + "value": "let_chain" } ] }, @@ -8444,10 +8488,6 @@ [ "type_parameters", "for_lifetimes" - ], - [ - "binary_expression", - "let_chain" ] ], "precedences": [], diff --git a/src/parser.c b/src/parser.c index 53cd8a87..ede5d573 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2569 +#define STATE_COUNT 2565 #define LARGE_STATE_COUNT 639 -#define SYMBOL_COUNT 320 -#define ALIAS_COUNT 3 +#define SYMBOL_COUNT 319 +#define ALIAS_COUNT 4 #define TOKEN_COUNT 139 #define EXTERNAL_TOKEN_COUNT 4 #define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 245 +#define PRODUCTION_ID_COUNT 246 enum { sym_identifier = 1, @@ -266,7 +266,7 @@ enum { sym_base_field_initializer = 247, sym_if_expression = 248, sym_let_condition = 249, - sym_let_chain = 250, + sym__let_chain = 250, sym__condition = 251, sym_else_clause = 252, sym_match_expression = 253, @@ -330,13 +330,13 @@ enum { aux_sym_array_expression_repeat1 = 311, aux_sym_tuple_expression_repeat1 = 312, aux_sym_field_initializer_list_repeat1 = 313, - aux_sym_let_chain_repeat1 = 314, - aux_sym_match_block_repeat1 = 315, - aux_sym_closure_parameters_repeat1 = 316, - aux_sym_tuple_pattern_repeat1 = 317, - aux_sym_struct_pattern_repeat1 = 318, - aux_sym_string_literal_repeat1 = 319, - alias_sym_field_identifier = 320, + aux_sym_match_block_repeat1 = 314, + aux_sym_closure_parameters_repeat1 = 315, + aux_sym_tuple_pattern_repeat1 = 316, + aux_sym_struct_pattern_repeat1 = 317, + aux_sym_string_literal_repeat1 = 318, + alias_sym_field_identifier = 319, + alias_sym_let_chain = 320, alias_sym_shorthand_field_identifier = 321, alias_sym_type_identifier = 322, }; @@ -592,7 +592,7 @@ static const char * const ts_symbol_names[] = { [sym_base_field_initializer] = "base_field_initializer", [sym_if_expression] = "if_expression", [sym_let_condition] = "let_condition", - [sym_let_chain] = "let_chain", + [sym__let_chain] = "_let_chain", [sym__condition] = "_condition", [sym_else_clause] = "else_clause", [sym_match_expression] = "match_expression", @@ -656,13 +656,13 @@ static const char * const ts_symbol_names[] = { [aux_sym_array_expression_repeat1] = "array_expression_repeat1", [aux_sym_tuple_expression_repeat1] = "tuple_expression_repeat1", [aux_sym_field_initializer_list_repeat1] = "field_initializer_list_repeat1", - [aux_sym_let_chain_repeat1] = "let_chain_repeat1", [aux_sym_match_block_repeat1] = "match_block_repeat1", [aux_sym_closure_parameters_repeat1] = "closure_parameters_repeat1", [aux_sym_tuple_pattern_repeat1] = "tuple_pattern_repeat1", [aux_sym_struct_pattern_repeat1] = "struct_pattern_repeat1", [aux_sym_string_literal_repeat1] = "string_literal_repeat1", [alias_sym_field_identifier] = "field_identifier", + [alias_sym_let_chain] = "let_chain", [alias_sym_shorthand_field_identifier] = "shorthand_field_identifier", [alias_sym_type_identifier] = "type_identifier", }; @@ -918,7 +918,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_base_field_initializer] = sym_base_field_initializer, [sym_if_expression] = sym_if_expression, [sym_let_condition] = sym_let_condition, - [sym_let_chain] = sym_let_chain, + [sym__let_chain] = sym__let_chain, [sym__condition] = sym__condition, [sym_else_clause] = sym_else_clause, [sym_match_expression] = sym_match_expression, @@ -982,13 +982,13 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_array_expression_repeat1] = aux_sym_array_expression_repeat1, [aux_sym_tuple_expression_repeat1] = aux_sym_tuple_expression_repeat1, [aux_sym_field_initializer_list_repeat1] = aux_sym_field_initializer_list_repeat1, - [aux_sym_let_chain_repeat1] = aux_sym_let_chain_repeat1, [aux_sym_match_block_repeat1] = aux_sym_match_block_repeat1, [aux_sym_closure_parameters_repeat1] = aux_sym_closure_parameters_repeat1, [aux_sym_tuple_pattern_repeat1] = aux_sym_tuple_pattern_repeat1, [aux_sym_struct_pattern_repeat1] = aux_sym_struct_pattern_repeat1, [aux_sym_string_literal_repeat1] = aux_sym_string_literal_repeat1, [alias_sym_field_identifier] = alias_sym_field_identifier, + [alias_sym_let_chain] = alias_sym_let_chain, [alias_sym_shorthand_field_identifier] = alias_sym_shorthand_field_identifier, [alias_sym_type_identifier] = alias_sym_type_identifier, }; @@ -1996,8 +1996,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_let_chain] = { - .visible = true, + [sym__let_chain] = { + .visible = false, .named = true, }, [sym__condition] = { @@ -2255,10 +2255,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_let_chain_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_match_block_repeat1] = { .visible = false, .named = false, @@ -2283,6 +2279,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [alias_sym_let_chain] = { + .visible = true, + .named = true, + }, [alias_sym_shorthand_field_identifier] = { .visible = true, .named = true, @@ -2358,243 +2358,243 @@ static const char * const ts_field_names[] = { static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [2] = {.index = 0, .length = 1}, - [4] = {.index = 1, .length = 1}, [5] = {.index = 1, .length = 1}, - [6] = {.index = 2, .length = 1}, - [7] = {.index = 3, .length = 2}, + [6] = {.index = 1, .length = 1}, + [7] = {.index = 2, .length = 1}, [8] = {.index = 3, .length = 2}, - [9] = {.index = 5, .length = 2}, - [10] = {.index = 7, .length = 2}, - [11] = {.index = 9, .length = 2}, + [9] = {.index = 3, .length = 2}, + [10] = {.index = 5, .length = 2}, + [11] = {.index = 7, .length = 2}, [12] = {.index = 9, .length = 2}, - [13] = {.index = 11, .length = 1}, - [14] = {.index = 12, .length = 2}, - [15] = {.index = 14, .length = 2}, + [13] = {.index = 9, .length = 2}, + [14] = {.index = 11, .length = 1}, + [15] = {.index = 12, .length = 2}, [16] = {.index = 14, .length = 2}, - [17] = {.index = 16, .length = 2}, - [18] = {.index = 18, .length = 1}, - [19] = {.index = 19, .length = 1}, + [17] = {.index = 14, .length = 2}, + [18] = {.index = 16, .length = 2}, + [19] = {.index = 18, .length = 1}, [20] = {.index = 19, .length = 1}, - [21] = {.index = 20, .length = 1}, - [22] = {.index = 21, .length = 2}, - [23] = {.index = 23, .length = 2}, - [24] = {.index = 21, .length = 2}, - [25] = {.index = 25, .length = 1}, - [26] = {.index = 26, .length = 2}, - [27] = {.index = 12, .length = 2}, - [28] = {.index = 28, .length = 1}, - [29] = {.index = 29, .length = 1}, - [30] = {.index = 30, .length = 2}, - [31] = {.index = 32, .length = 1}, - [32] = {.index = 33, .length = 2}, - [33] = {.index = 11, .length = 1}, - [34] = {.index = 9, .length = 2}, + [21] = {.index = 19, .length = 1}, + [22] = {.index = 20, .length = 1}, + [23] = {.index = 21, .length = 2}, + [24] = {.index = 23, .length = 2}, + [25] = {.index = 21, .length = 2}, + [26] = {.index = 25, .length = 1}, + [27] = {.index = 26, .length = 2}, + [28] = {.index = 12, .length = 2}, + [29] = {.index = 28, .length = 1}, + [30] = {.index = 29, .length = 1}, + [31] = {.index = 30, .length = 2}, + [32] = {.index = 32, .length = 1}, + [33] = {.index = 33, .length = 2}, + [34] = {.index = 11, .length = 1}, [35] = {.index = 9, .length = 2}, - [36] = {.index = 35, .length = 2}, - [37] = {.index = 37, .length = 2}, - [38] = {.index = 39, .length = 1}, - [39] = {.index = 9, .length = 2}, + [36] = {.index = 9, .length = 2}, + [37] = {.index = 35, .length = 2}, + [38] = {.index = 37, .length = 2}, + [39] = {.index = 39, .length = 1}, [40] = {.index = 9, .length = 2}, - [41] = {.index = 40, .length = 3}, - [42] = {.index = 43, .length = 2}, - [43] = {.index = 45, .length = 2}, - [44] = {.index = 47, .length = 2}, + [41] = {.index = 9, .length = 2}, + [42] = {.index = 40, .length = 3}, + [43] = {.index = 43, .length = 2}, + [44] = {.index = 45, .length = 2}, [45] = {.index = 47, .length = 2}, - [46] = {.index = 37, .length = 2}, - [47] = {.index = 1, .length = 1}, - [48] = {.index = 49, .length = 1}, - [49] = {.index = 50, .length = 2}, - [50] = {.index = 52, .length = 3}, - [51] = {.index = 55, .length = 2}, - [52] = {.index = 57, .length = 3}, - [54] = {.index = 60, .length = 1}, + [46] = {.index = 47, .length = 2}, + [47] = {.index = 37, .length = 2}, + [48] = {.index = 1, .length = 1}, + [49] = {.index = 49, .length = 1}, + [50] = {.index = 50, .length = 2}, + [51] = {.index = 52, .length = 3}, + [52] = {.index = 55, .length = 2}, + [53] = {.index = 57, .length = 3}, [55] = {.index = 60, .length = 1}, - [56] = {.index = 49, .length = 1}, - [58] = {.index = 61, .length = 3}, - [59] = {.index = 64, .length = 1}, - [60] = {.index = 65, .length = 1}, - [62] = {.index = 66, .length = 2}, + [56] = {.index = 60, .length = 1}, + [57] = {.index = 49, .length = 1}, + [59] = {.index = 61, .length = 3}, + [60] = {.index = 64, .length = 1}, + [61] = {.index = 65, .length = 1}, [63] = {.index = 66, .length = 2}, - [64] = {.index = 68, .length = 1}, - [65] = {.index = 69, .length = 2}, - [66] = {.index = 71, .length = 3}, - [67] = {.index = 74, .length = 2}, - [68] = {.index = 76, .length = 2}, + [64] = {.index = 66, .length = 2}, + [65] = {.index = 68, .length = 1}, + [66] = {.index = 69, .length = 2}, + [67] = {.index = 71, .length = 3}, + [68] = {.index = 74, .length = 2}, [69] = {.index = 76, .length = 2}, - [70] = {.index = 78, .length = 1}, - [71] = {.index = 79, .length = 2}, - [72] = {.index = 81, .length = 3}, - [73] = {.index = 84, .length = 2}, - [74] = {.index = 86, .length = 2}, - [75] = {.index = 88, .length = 2}, - [76] = {.index = 90, .length = 2}, - [77] = {.index = 92, .length = 2}, - [78] = {.index = 90, .length = 2}, - [79] = {.index = 92, .length = 2}, - [80] = {.index = 94, .length = 1}, + [70] = {.index = 76, .length = 2}, + [71] = {.index = 78, .length = 1}, + [72] = {.index = 79, .length = 2}, + [73] = {.index = 81, .length = 3}, + [74] = {.index = 84, .length = 2}, + [75] = {.index = 86, .length = 2}, + [76] = {.index = 88, .length = 2}, + [77] = {.index = 90, .length = 2}, + [78] = {.index = 92, .length = 2}, + [79] = {.index = 90, .length = 2}, + [80] = {.index = 92, .length = 2}, [81] = {.index = 94, .length = 1}, - [82] = {.index = 95, .length = 1}, - [83] = {.index = 96, .length = 2}, - [84] = {.index = 98, .length = 2}, - [85] = {.index = 88, .length = 2}, - [86] = {.index = 95, .length = 1}, - [87] = {.index = 100, .length = 1}, - [88] = {.index = 101, .length = 3}, - [89] = {.index = 104, .length = 1}, - [90] = {.index = 105, .length = 1}, - [91] = {.index = 106, .length = 2}, - [92] = {.index = 108, .length = 3}, - [93] = {.index = 111, .length = 3}, - [94] = {.index = 114, .length = 4}, - [95] = {.index = 118, .length = 3}, - [96] = {.index = 1, .length = 1}, - [97] = {.index = 121, .length = 3}, - [98] = {.index = 124, .length = 2}, - [99] = {.index = 126, .length = 2}, - [100] = {.index = 128, .length = 2}, + [82] = {.index = 94, .length = 1}, + [83] = {.index = 95, .length = 1}, + [84] = {.index = 96, .length = 2}, + [85] = {.index = 98, .length = 2}, + [86] = {.index = 88, .length = 2}, + [87] = {.index = 95, .length = 1}, + [88] = {.index = 100, .length = 1}, + [89] = {.index = 101, .length = 3}, + [90] = {.index = 104, .length = 1}, + [91] = {.index = 105, .length = 1}, + [92] = {.index = 106, .length = 2}, + [93] = {.index = 108, .length = 3}, + [94] = {.index = 111, .length = 3}, + [95] = {.index = 114, .length = 4}, + [96] = {.index = 118, .length = 3}, + [97] = {.index = 1, .length = 1}, + [98] = {.index = 121, .length = 3}, + [99] = {.index = 124, .length = 2}, + [100] = {.index = 126, .length = 2}, [101] = {.index = 128, .length = 2}, - [102] = {.index = 130, .length = 1}, - [103] = {.index = 131, .length = 2}, - [104] = {.index = 133, .length = 3}, - [105] = {.index = 136, .length = 3}, - [106] = {.index = 139, .length = 3}, - [107] = {.index = 142, .length = 1}, - [108] = {.index = 131, .length = 2}, - [109] = {.index = 133, .length = 3}, - [110] = {.index = 136, .length = 3}, - [111] = {.index = 143, .length = 2}, - [112] = {.index = 145, .length = 2}, - [114] = {.index = 147, .length = 3}, - [115] = {.index = 150, .length = 4}, - [116] = {.index = 106, .length = 2}, - [117] = {.index = 154, .length = 3}, - [118] = {.index = 157, .length = 2}, - [119] = {.index = 159, .length = 3}, - [120] = {.index = 162, .length = 2}, - [121] = {.index = 164, .length = 2}, - [122] = {.index = 166, .length = 3}, - [123] = {.index = 169, .length = 3}, - [124] = {.index = 32, .length = 1}, - [125] = {.index = 172, .length = 3}, - [126] = {.index = 175, .length = 2}, - [127] = {.index = 177, .length = 2}, - [128] = {.index = 179, .length = 3}, - [129] = {.index = 182, .length = 2}, - [130] = {.index = 184, .length = 2}, - [131] = {.index = 186, .length = 1}, - [132] = {.index = 187, .length = 2}, - [133] = {.index = 189, .length = 1}, - [134] = {.index = 175, .length = 2}, - [135] = {.index = 190, .length = 4}, - [136] = {.index = 194, .length = 3}, - [137] = {.index = 197, .length = 4}, - [138] = {.index = 95, .length = 1}, - [139] = {.index = 201, .length = 2}, - [140] = {.index = 203, .length = 2}, - [141] = {.index = 205, .length = 2}, - [142] = {.index = 207, .length = 3}, - [143] = {.index = 210, .length = 2}, - [144] = {.index = 212, .length = 3}, - [145] = {.index = 215, .length = 4}, - [146] = {.index = 212, .length = 3}, - [147] = {.index = 215, .length = 4}, - [148] = {.index = 219, .length = 3}, + [102] = {.index = 128, .length = 2}, + [103] = {.index = 130, .length = 1}, + [104] = {.index = 131, .length = 2}, + [105] = {.index = 133, .length = 3}, + [106] = {.index = 136, .length = 3}, + [107] = {.index = 139, .length = 3}, + [108] = {.index = 142, .length = 1}, + [109] = {.index = 131, .length = 2}, + [110] = {.index = 133, .length = 3}, + [111] = {.index = 136, .length = 3}, + [112] = {.index = 143, .length = 2}, + [113] = {.index = 145, .length = 2}, + [115] = {.index = 147, .length = 3}, + [116] = {.index = 150, .length = 4}, + [117] = {.index = 106, .length = 2}, + [118] = {.index = 154, .length = 3}, + [119] = {.index = 157, .length = 2}, + [120] = {.index = 159, .length = 3}, + [121] = {.index = 162, .length = 2}, + [122] = {.index = 164, .length = 2}, + [123] = {.index = 166, .length = 3}, + [124] = {.index = 169, .length = 3}, + [125] = {.index = 32, .length = 1}, + [126] = {.index = 172, .length = 3}, + [127] = {.index = 175, .length = 2}, + [128] = {.index = 177, .length = 2}, + [129] = {.index = 179, .length = 3}, + [130] = {.index = 182, .length = 2}, + [131] = {.index = 184, .length = 2}, + [132] = {.index = 186, .length = 1}, + [133] = {.index = 187, .length = 2}, + [134] = {.index = 189, .length = 1}, + [135] = {.index = 175, .length = 2}, + [136] = {.index = 190, .length = 4}, + [137] = {.index = 194, .length = 3}, + [138] = {.index = 197, .length = 4}, + [139] = {.index = 95, .length = 1}, + [140] = {.index = 201, .length = 2}, + [141] = {.index = 203, .length = 2}, + [142] = {.index = 205, .length = 2}, + [143] = {.index = 207, .length = 3}, + [144] = {.index = 210, .length = 2}, + [145] = {.index = 212, .length = 3}, + [146] = {.index = 215, .length = 4}, + [147] = {.index = 212, .length = 3}, + [148] = {.index = 215, .length = 4}, [149] = {.index = 219, .length = 3}, - [150] = {.index = 207, .length = 3}, - [151] = {.index = 222, .length = 2}, - [152] = {.index = 224, .length = 2}, - [153] = {.index = 226, .length = 2}, - [154] = {.index = 228, .length = 2}, - [155] = {.index = 230, .length = 1}, - [156] = {.index = 231, .length = 2}, - [157] = {.index = 233, .length = 2}, - [158] = {.index = 235, .length = 2}, - [159] = {.index = 203, .length = 2}, - [160] = {.index = 237, .length = 4}, - [161] = {.index = 241, .length = 3}, - [162] = {.index = 244, .length = 2}, - [163] = {.index = 246, .length = 3}, - [164] = {.index = 249, .length = 3}, - [165] = {.index = 244, .length = 2}, - [166] = {.index = 246, .length = 3}, - [167] = {.index = 252, .length = 3}, - [168] = {.index = 255, .length = 3}, - [169] = {.index = 258, .length = 4}, - [170] = {.index = 262, .length = 2}, - [171] = {.index = 264, .length = 2}, - [172] = {.index = 266, .length = 3}, - [173] = {.index = 269, .length = 4}, - [174] = {.index = 273, .length = 3}, - [175] = {.index = 231, .length = 2}, - [176] = {.index = 276, .length = 2}, - [177] = {.index = 278, .length = 3}, - [178] = {.index = 281, .length = 3}, - [179] = {.index = 284, .length = 2}, - [180] = {.index = 286, .length = 3}, - [181] = {.index = 203, .length = 2}, - [182] = {.index = 289, .length = 3}, - [183] = {.index = 292, .length = 3}, - [184] = {.index = 264, .length = 2}, - [185] = {.index = 295, .length = 4}, - [186] = {.index = 299, .length = 5}, - [187] = {.index = 304, .length = 4}, - [188] = {.index = 308, .length = 2}, - [189] = {.index = 310, .length = 3}, - [190] = {.index = 313, .length = 4}, + [150] = {.index = 219, .length = 3}, + [151] = {.index = 207, .length = 3}, + [152] = {.index = 222, .length = 2}, + [153] = {.index = 224, .length = 2}, + [154] = {.index = 226, .length = 2}, + [155] = {.index = 228, .length = 2}, + [156] = {.index = 230, .length = 1}, + [157] = {.index = 231, .length = 2}, + [158] = {.index = 233, .length = 2}, + [159] = {.index = 235, .length = 2}, + [160] = {.index = 203, .length = 2}, + [161] = {.index = 237, .length = 4}, + [162] = {.index = 241, .length = 3}, + [163] = {.index = 244, .length = 2}, + [164] = {.index = 246, .length = 3}, + [165] = {.index = 249, .length = 3}, + [166] = {.index = 244, .length = 2}, + [167] = {.index = 246, .length = 3}, + [168] = {.index = 252, .length = 3}, + [169] = {.index = 255, .length = 3}, + [170] = {.index = 258, .length = 4}, + [171] = {.index = 262, .length = 2}, + [172] = {.index = 264, .length = 2}, + [173] = {.index = 266, .length = 3}, + [174] = {.index = 269, .length = 4}, + [175] = {.index = 273, .length = 3}, + [176] = {.index = 231, .length = 2}, + [177] = {.index = 276, .length = 2}, + [178] = {.index = 278, .length = 3}, + [179] = {.index = 281, .length = 3}, + [180] = {.index = 284, .length = 2}, + [181] = {.index = 286, .length = 3}, + [182] = {.index = 203, .length = 2}, + [183] = {.index = 289, .length = 3}, + [184] = {.index = 292, .length = 3}, + [185] = {.index = 264, .length = 2}, + [186] = {.index = 295, .length = 4}, + [187] = {.index = 299, .length = 5}, + [188] = {.index = 304, .length = 4}, + [189] = {.index = 308, .length = 2}, + [190] = {.index = 310, .length = 3}, [191] = {.index = 313, .length = 4}, - [192] = {.index = 317, .length = 2}, - [193] = {.index = 319, .length = 3}, - [194] = {.index = 322, .length = 3}, - [195] = {.index = 325, .length = 3}, - [196] = {.index = 328, .length = 2}, - [197] = {.index = 330, .length = 2}, - [198] = {.index = 106, .length = 2}, - [199] = {.index = 332, .length = 3}, - [200] = {.index = 335, .length = 3}, - [201] = {.index = 338, .length = 4}, - [202] = {.index = 335, .length = 3}, - [203] = {.index = 338, .length = 4}, - [204] = {.index = 332, .length = 3}, - [205] = {.index = 342, .length = 4}, - [206] = {.index = 346, .length = 4}, - [207] = {.index = 350, .length = 3}, - [208] = {.index = 353, .length = 4}, - [209] = {.index = 357, .length = 3}, - [210] = {.index = 360, .length = 3}, - [211] = {.index = 363, .length = 3}, - [212] = {.index = 366, .length = 4}, - [213] = {.index = 370, .length = 2}, - [214] = {.index = 372, .length = 3}, - [215] = {.index = 375, .length = 4}, - [216] = {.index = 379, .length = 3}, - [217] = {.index = 382, .length = 3}, - [218] = {.index = 385, .length = 3}, - [219] = {.index = 388, .length = 5}, - [220] = {.index = 393, .length = 2}, - [221] = {.index = 395, .length = 3}, - [222] = {.index = 398, .length = 3}, - [223] = {.index = 401, .length = 3}, - [224] = {.index = 404, .length = 3}, - [225] = {.index = 407, .length = 2}, - [226] = {.index = 409, .length = 4}, + [192] = {.index = 313, .length = 4}, + [193] = {.index = 317, .length = 2}, + [194] = {.index = 319, .length = 3}, + [195] = {.index = 322, .length = 3}, + [196] = {.index = 325, .length = 3}, + [197] = {.index = 328, .length = 2}, + [198] = {.index = 330, .length = 2}, + [199] = {.index = 106, .length = 2}, + [200] = {.index = 332, .length = 3}, + [201] = {.index = 335, .length = 3}, + [202] = {.index = 338, .length = 4}, + [203] = {.index = 335, .length = 3}, + [204] = {.index = 338, .length = 4}, + [205] = {.index = 332, .length = 3}, + [206] = {.index = 342, .length = 4}, + [207] = {.index = 346, .length = 4}, + [208] = {.index = 350, .length = 3}, + [209] = {.index = 353, .length = 4}, + [210] = {.index = 357, .length = 3}, + [211] = {.index = 360, .length = 3}, + [212] = {.index = 363, .length = 3}, + [213] = {.index = 366, .length = 4}, + [214] = {.index = 370, .length = 2}, + [215] = {.index = 372, .length = 3}, + [216] = {.index = 375, .length = 4}, + [217] = {.index = 379, .length = 3}, + [218] = {.index = 382, .length = 3}, + [219] = {.index = 385, .length = 3}, + [220] = {.index = 388, .length = 5}, + [221] = {.index = 393, .length = 2}, + [222] = {.index = 395, .length = 3}, + [223] = {.index = 398, .length = 3}, + [224] = {.index = 401, .length = 3}, + [225] = {.index = 404, .length = 3}, + [226] = {.index = 407, .length = 2}, [227] = {.index = 409, .length = 4}, - [228] = {.index = 413, .length = 4}, - [229] = {.index = 417, .length = 5}, - [230] = {.index = 422, .length = 4}, - [231] = {.index = 426, .length = 2}, - [232] = {.index = 428, .length = 4}, - [233] = {.index = 432, .length = 4}, - [234] = {.index = 436, .length = 3}, - [235] = {.index = 439, .length = 4}, - [236] = {.index = 443, .length = 4}, - [237] = {.index = 447, .length = 3}, - [238] = {.index = 450, .length = 5}, - [239] = {.index = 455, .length = 4}, - [240] = {.index = 459, .length = 5}, - [241] = {.index = 464, .length = 4}, - [242] = {.index = 468, .length = 4}, - [243] = {.index = 472, .length = 3}, - [244] = {.index = 475, .length = 5}, + [228] = {.index = 409, .length = 4}, + [229] = {.index = 413, .length = 4}, + [230] = {.index = 417, .length = 5}, + [231] = {.index = 422, .length = 4}, + [232] = {.index = 426, .length = 2}, + [233] = {.index = 428, .length = 4}, + [234] = {.index = 432, .length = 4}, + [235] = {.index = 436, .length = 3}, + [236] = {.index = 439, .length = 4}, + [237] = {.index = 443, .length = 4}, + [238] = {.index = 447, .length = 3}, + [239] = {.index = 450, .length = 5}, + [240] = {.index = 455, .length = 4}, + [241] = {.index = 459, .length = 5}, + [242] = {.index = 464, .length = 4}, + [243] = {.index = 468, .length = 4}, + [244] = {.index = 472, .length = 3}, + [245] = {.index = 475, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3275,84 +3275,84 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = sym_identifier, }, [3] = { + [0] = alias_sym_let_chain, + }, + [4] = { [0] = alias_sym_type_identifier, }, - [5] = { + [6] = { [1] = alias_sym_type_identifier, }, - [7] = { + [8] = { [0] = alias_sym_type_identifier, }, - [11] = { - [0] = sym_identifier, - }, [12] = { [0] = sym_identifier, - [2] = alias_sym_type_identifier, }, [13] = { [0] = sym_identifier, + [2] = alias_sym_type_identifier, }, [14] = { - [1] = alias_sym_type_identifier, + [0] = sym_identifier, }, [15] = { + [1] = alias_sym_type_identifier, + }, + [16] = { [0] = alias_sym_type_identifier, }, - [19] = { + [20] = { [1] = alias_sym_type_identifier, }, - [22] = { + [23] = { [0] = alias_sym_type_identifier, }, - [35] = { + [36] = { [2] = alias_sym_type_identifier, }, - [37] = { + [38] = { [0] = alias_sym_type_identifier, }, - [39] = { + [40] = { [0] = sym_generic_type, }, - [40] = { + [41] = { [0] = sym_generic_type, [2] = alias_sym_type_identifier, }, - [45] = { + [46] = { [2] = alias_sym_field_identifier, }, - [47] = { + [48] = { [1] = sym_identifier, }, - [49] = { + [50] = { [1] = alias_sym_type_identifier, }, - [50] = { + [51] = { [1] = alias_sym_type_identifier, }, - [53] = { + [54] = { [0] = sym_identifier, [2] = sym_identifier, }, - [55] = { + [56] = { [0] = alias_sym_type_identifier, }, - [56] = { + [57] = { [0] = alias_sym_shorthand_field_identifier, }, - [57] = { + [58] = { [2] = sym_identifier, }, - [61] = { + [62] = { [1] = alias_sym_type_identifier, }, - [62] = { + [63] = { [0] = alias_sym_type_identifier, }, - [68] = { - [1] = alias_sym_type_identifier, - }, - [71] = { + [69] = { [1] = alias_sym_type_identifier, }, [72] = { @@ -3361,44 +3361,44 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [73] = { [1] = alias_sym_type_identifier, }, - [75] = { - [2] = alias_sym_type_identifier, + [74] = { + [1] = alias_sym_type_identifier, }, [76] = { - [0] = sym_identifier, + [2] = alias_sym_type_identifier, }, [77] = { [0] = sym_identifier, }, - [80] = { + [78] = { [0] = sym_identifier, }, - [86] = { + [81] = { + [0] = sym_identifier, + }, + [87] = { [2] = alias_sym_type_identifier, }, - [92] = { + [93] = { [1] = alias_sym_type_identifier, }, - [96] = { + [97] = { [1] = alias_sym_shorthand_field_identifier, }, - [100] = { + [101] = { [0] = alias_sym_type_identifier, }, - [103] = { - [1] = alias_sym_type_identifier, - }, [104] = { [1] = alias_sym_type_identifier, }, [105] = { - [0] = alias_sym_type_identifier, + [1] = alias_sym_type_identifier, }, - [113] = { - [3] = sym_identifier, + [106] = { + [0] = alias_sym_type_identifier, }, [114] = { - [1] = alias_sym_type_identifier, + [3] = sym_identifier, }, [115] = { [1] = alias_sym_type_identifier, @@ -3409,8 +3409,8 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [117] = { [1] = alias_sym_type_identifier, }, - [121] = { - [2] = alias_sym_type_identifier, + [118] = { + [1] = alias_sym_type_identifier, }, [122] = { [2] = alias_sym_type_identifier, @@ -3419,54 +3419,54 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [2] = alias_sym_type_identifier, }, [124] = { + [2] = alias_sym_type_identifier, + }, + [125] = { [0] = sym_identifier, }, - [126] = { + [127] = { [0] = alias_sym_field_identifier, }, - [129] = { + [130] = { [2] = alias_sym_type_identifier, }, - [130] = { + [131] = { [3] = alias_sym_type_identifier, }, - [138] = { + [139] = { [2] = alias_sym_shorthand_field_identifier, }, - [139] = { + [140] = { [0] = alias_sym_field_identifier, }, - [140] = { + [141] = { [0] = alias_sym_type_identifier, }, - [142] = { + [143] = { [1] = alias_sym_type_identifier, }, - [144] = { + [145] = { [2] = alias_sym_type_identifier, }, - [145] = { + [146] = { [2] = alias_sym_type_identifier, }, - [148] = { + [149] = { [1] = alias_sym_type_identifier, }, - [159] = { - [0] = alias_sym_field_identifier, - }, [160] = { - [1] = alias_sym_type_identifier, + [0] = alias_sym_field_identifier, }, [161] = { [1] = alias_sym_type_identifier, }, [162] = { - [2] = alias_sym_type_identifier, + [1] = alias_sym_type_identifier, }, [163] = { [2] = alias_sym_type_identifier, }, - [167] = { + [164] = { [2] = alias_sym_type_identifier, }, [168] = { @@ -3475,14 +3475,14 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [169] = { [2] = alias_sym_type_identifier, }, - [171] = { - [1] = alias_sym_field_identifier, - }, - [175] = { + [170] = { [2] = alias_sym_type_identifier, }, + [172] = { + [1] = alias_sym_field_identifier, + }, [176] = { - [3] = alias_sym_type_identifier, + [2] = alias_sym_type_identifier, }, [177] = { [3] = alias_sym_type_identifier, @@ -3490,35 +3490,35 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [178] = { [3] = alias_sym_type_identifier, }, - [188] = { - [1] = alias_sym_field_identifier, + [179] = { + [3] = alias_sym_type_identifier, }, [189] = { - [0] = alias_sym_type_identifier, + [1] = alias_sym_field_identifier, }, [190] = { - [2] = alias_sym_type_identifier, + [0] = alias_sym_type_identifier, }, - [198] = { - [1] = alias_sym_field_identifier, + [191] = { + [2] = alias_sym_type_identifier, }, [199] = { - [2] = alias_sym_type_identifier, + [1] = alias_sym_field_identifier, }, [200] = { - [3] = alias_sym_type_identifier, + [2] = alias_sym_type_identifier, }, [201] = { [3] = alias_sym_type_identifier, }, - [205] = { - [2] = alias_sym_type_identifier, + [202] = { + [3] = alias_sym_type_identifier, }, - [209] = { + [206] = { [2] = alias_sym_type_identifier, }, [210] = { - [3] = alias_sym_type_identifier, + [2] = alias_sym_type_identifier, }, [211] = { [3] = alias_sym_type_identifier, @@ -3526,13 +3526,16 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [212] = { [3] = alias_sym_type_identifier, }, - [220] = { + [213] = { + [3] = alias_sym_type_identifier, + }, + [221] = { [2] = alias_sym_field_identifier, }, - [226] = { + [227] = { [3] = alias_sym_type_identifier, }, - [232] = { + [233] = { [3] = alias_sym_type_identifier, }, }; @@ -3541,6 +3544,9 @@ static const uint16_t ts_non_terminal_alias_map[] = { sym_generic_type_with_turbofish, 2, sym_generic_type_with_turbofish, sym_generic_type, + sym__let_chain, 2, + sym__let_chain, + alias_sym_let_chain, 0, }; @@ -3549,35 +3555,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 4, + [4] = 3, [5] = 2, - [6] = 6, + [6] = 2, [7] = 2, - [8] = 6, - [9] = 6, + [8] = 8, + [9] = 9, [10] = 2, - [11] = 2, - [12] = 6, + [11] = 3, + [12] = 8, [13] = 3, - [14] = 6, - [15] = 2, - [16] = 6, + [14] = 3, + [15] = 3, + [16] = 2, [17] = 17, [18] = 18, [19] = 19, - [20] = 20, - [21] = 21, - [22] = 20, + [20] = 19, + [21] = 18, + [22] = 22, [23] = 23, - [24] = 23, + [24] = 24, [25] = 17, [26] = 18, - [27] = 20, + [27] = 23, [28] = 19, - [29] = 21, - [30] = 23, - [31] = 23, - [32] = 20, + [29] = 24, + [30] = 22, + [31] = 18, + [32] = 19, [33] = 33, [34] = 34, [35] = 35, @@ -3586,16 +3592,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [38] = 38, [39] = 39, [40] = 40, - [41] = 36, + [41] = 37, [42] = 42, - [43] = 38, - [44] = 38, - [45] = 36, - [46] = 46, - [47] = 42, + [43] = 39, + [44] = 40, + [45] = 45, + [46] = 40, + [47] = 47, [48] = 48, - [49] = 49, - [50] = 42, + [49] = 39, + [50] = 37, [51] = 51, [52] = 52, [53] = 53, @@ -3604,7 +3610,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [56] = 56, [57] = 57, [58] = 58, - [59] = 59, + [59] = 58, [60] = 60, [61] = 61, [62] = 62, @@ -3616,8 +3622,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [68] = 68, [69] = 69, [70] = 70, - [71] = 61, - [72] = 62, + [71] = 71, + [72] = 72, [73] = 73, [74] = 74, [75] = 75, @@ -3627,7 +3633,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [79] = 79, [80] = 80, [81] = 81, - [82] = 82, + [82] = 80, [83] = 83, [84] = 84, [85] = 85, @@ -3637,13 +3643,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [89] = 89, [90] = 90, [91] = 91, - [92] = 74, + [92] = 92, [93] = 93, - [94] = 90, - [95] = 93, - [96] = 96, - [97] = 97, - [98] = 91, + [94] = 94, + [95] = 91, + [96] = 68, + [97] = 94, + [98] = 90, [99] = 99, [100] = 100, [101] = 101, @@ -3656,84 +3662,84 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [108] = 108, [109] = 109, [110] = 110, - [111] = 104, + [111] = 111, [112] = 112, [113] = 113, [114] = 114, [115] = 115, - [116] = 116, + [116] = 111, [117] = 117, [118] = 118, [119] = 112, [120] = 120, - [121] = 101, - [122] = 122, + [121] = 121, + [122] = 117, [123] = 123, [124] = 124, - [125] = 125, + [125] = 111, [126] = 126, - [127] = 115, + [127] = 127, [128] = 128, - [129] = 106, - [130] = 130, + [129] = 105, + [130] = 113, [131] = 131, - [132] = 132, + [132] = 106, [133] = 133, [134] = 134, [135] = 135, [136] = 136, - [137] = 109, + [137] = 137, [138] = 138, - [139] = 133, - [140] = 140, - [141] = 141, - [142] = 142, - [143] = 138, - [144] = 132, + [139] = 109, + [140] = 124, + [141] = 110, + [142] = 120, + [143] = 128, + [144] = 103, [145] = 145, - [146] = 131, + [146] = 136, [147] = 147, - [148] = 103, + [148] = 148, [149] = 149, - [150] = 136, - [151] = 151, - [152] = 114, - [153] = 122, + [150] = 149, + [151] = 103, + [152] = 152, + [153] = 153, [154] = 154, - [155] = 110, + [155] = 120, [156] = 156, - [157] = 105, - [158] = 108, - [159] = 122, - [160] = 135, - [161] = 120, - [162] = 156, - [163] = 135, - [164] = 130, - [165] = 118, - [166] = 126, - [167] = 167, - [168] = 168, + [157] = 108, + [158] = 100, + [159] = 126, + [160] = 160, + [161] = 148, + [162] = 100, + [163] = 100, + [164] = 133, + [165] = 165, + [166] = 166, + [167] = 165, + [168] = 121, [169] = 169, - [170] = 107, - [171] = 100, - [172] = 124, - [173] = 110, - [174] = 125, - [175] = 142, + [170] = 115, + [171] = 169, + [172] = 166, + [173] = 127, + [174] = 107, + [175] = 153, [176] = 135, - [177] = 120, - [178] = 113, + [177] = 152, + [178] = 178, [179] = 179, [180] = 179, - [181] = 181, - [182] = 181, - [183] = 181, + [181] = 179, + [182] = 182, + [183] = 182, [184] = 184, [185] = 185, [186] = 186, - [187] = 186, - [188] = 185, + [187] = 185, + [188] = 186, [189] = 184, [190] = 190, [191] = 191, @@ -3741,46 +3747,46 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [193] = 192, [194] = 194, [195] = 195, - [196] = 194, - [197] = 194, + [196] = 195, + [197] = 195, [198] = 198, [199] = 199, [200] = 200, - [201] = 201, + [201] = 200, [202] = 202, - [203] = 199, - [204] = 201, + [203] = 202, + [204] = 204, [205] = 202, - [206] = 200, - [207] = 202, - [208] = 199, + [206] = 199, + [207] = 200, + [208] = 204, [209] = 209, - [210] = 49, + [210] = 48, [211] = 53, - [212] = 52, + [212] = 56, [213] = 54, - [214] = 75, - [215] = 79, - [216] = 216, - [217] = 217, - [218] = 88, - [219] = 67, - [220] = 78, - [221] = 81, - [222] = 85, - [223] = 223, - [224] = 64, - [225] = 223, - [226] = 70, - [227] = 65, - [228] = 217, - [229] = 66, - [230] = 80, - [231] = 83, - [232] = 73, - [233] = 233, - [234] = 76, - [235] = 60, + [214] = 214, + [215] = 60, + [216] = 85, + [217] = 72, + [218] = 218, + [219] = 75, + [220] = 62, + [221] = 74, + [222] = 77, + [223] = 76, + [224] = 69, + [225] = 73, + [226] = 63, + [227] = 67, + [228] = 61, + [229] = 65, + [230] = 230, + [231] = 230, + [232] = 232, + [233] = 66, + [234] = 84, + [235] = 232, [236] = 236, [237] = 237, [238] = 237, @@ -3788,18 +3794,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [240] = 240, [241] = 241, [242] = 242, - [243] = 240, - [244] = 242, - [245] = 245, + [243] = 242, + [244] = 241, + [245] = 56, [246] = 246, - [247] = 53, + [247] = 247, [248] = 248, [249] = 249, [250] = 250, [251] = 251, - [252] = 52, + [252] = 252, [253] = 253, - [254] = 54, + [254] = 254, [255] = 255, [256] = 256, [257] = 257, @@ -3875,14 +3881,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [327] = 327, [328] = 328, [329] = 329, - [330] = 330, + [330] = 53, [331] = 331, [332] = 332, [333] = 333, [334] = 334, [335] = 335, [336] = 336, - [337] = 337, + [337] = 54, [338] = 338, [339] = 339, [340] = 340, @@ -3910,7 +3916,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [362] = 362, [363] = 363, [364] = 364, - [365] = 297, + [365] = 365, [366] = 366, [367] = 367, [368] = 368, @@ -3936,7 +3942,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [388] = 388, [389] = 389, [390] = 390, - [391] = 391, + [391] = 365, [392] = 392, [393] = 393, [394] = 394, @@ -3961,7 +3967,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [413] = 413, [414] = 414, [415] = 415, - [416] = 297, + [416] = 416, [417] = 417, [418] = 418, [419] = 419, @@ -4014,7 +4020,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [466] = 466, [467] = 467, [468] = 468, - [469] = 469, + [469] = 365, [470] = 470, [471] = 471, [472] = 472, @@ -4031,65 +4037,65 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [483] = 483, [484] = 484, [485] = 485, - [486] = 486, - [487] = 483, - [488] = 483, + [486] = 484, + [487] = 487, + [488] = 488, [489] = 489, - [490] = 481, + [490] = 484, [491] = 491, [492] = 492, - [493] = 484, - [494] = 485, - [495] = 495, - [496] = 486, - [497] = 489, - [498] = 498, - [499] = 491, + [493] = 489, + [494] = 494, + [495] = 487, + [496] = 492, + [497] = 488, + [498] = 481, + [499] = 494, [500] = 500, [501] = 501, [502] = 502, [503] = 503, [504] = 504, - [505] = 501, - [506] = 503, - [507] = 507, - [508] = 502, + [505] = 505, + [506] = 506, + [507] = 505, + [508] = 508, [509] = 509, - [510] = 510, - [511] = 511, - [512] = 509, - [513] = 513, + [510] = 504, + [511] = 505, + [512] = 501, + [513] = 502, [514] = 514, [515] = 515, - [516] = 504, - [517] = 515, - [518] = 502, - [519] = 510, - [520] = 520, - [521] = 521, - [522] = 521, - [523] = 513, - [524] = 510, - [525] = 510, - [526] = 521, - [527] = 502, - [528] = 503, - [529] = 513, - [530] = 502, - [531] = 520, - [532] = 521, - [533] = 510, - [534] = 503, - [535] = 520, - [536] = 513, - [537] = 520, - [538] = 514, + [516] = 516, + [517] = 508, + [518] = 506, + [519] = 502, + [520] = 508, + [521] = 505, + [522] = 509, + [523] = 509, + [524] = 504, + [525] = 525, + [526] = 508, + [527] = 504, + [528] = 501, + [529] = 502, + [530] = 508, + [531] = 509, + [532] = 509, + [533] = 514, + [534] = 505, + [535] = 516, + [536] = 502, + [537] = 537, + [538] = 525, [539] = 539, - [540] = 520, - [541] = 513, - [542] = 521, - [543] = 503, - [544] = 511, + [540] = 504, + [541] = 503, + [542] = 501, + [543] = 501, + [544] = 515, [545] = 545, [546] = 546, [547] = 547, @@ -4134,42 +4140,42 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [586] = 586, [587] = 587, [588] = 588, - [589] = 589, - [590] = 586, - [591] = 591, - [592] = 589, - [593] = 591, + [589] = 584, + [590] = 590, + [591] = 587, + [592] = 585, + [593] = 593, [594] = 594, [595] = 595, - [596] = 591, + [596] = 596, [597] = 597, [598] = 598, - [599] = 562, + [599] = 599, [600] = 600, - [601] = 601, + [601] = 567, [602] = 602, [603] = 603, [604] = 604, - [605] = 605, + [605] = 64, [606] = 606, - [607] = 568, - [608] = 577, + [607] = 607, + [608] = 608, [609] = 609, - [610] = 605, + [610] = 610, [611] = 611, - [612] = 598, - [613] = 613, - [614] = 59, - [615] = 589, - [616] = 616, - [617] = 617, - [618] = 69, - [619] = 585, + [612] = 597, + [613] = 600, + [614] = 575, + [615] = 88, + [616] = 598, + [617] = 597, + [618] = 587, + [619] = 611, [620] = 620, - [621] = 620, + [621] = 621, [622] = 622, - [623] = 620, - [624] = 624, + [623] = 622, + [624] = 622, [625] = 625, [626] = 626, [627] = 626, @@ -4177,12 +4183,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [629] = 629, [630] = 630, [631] = 631, - [632] = 632, - [633] = 630, - [634] = 632, - [635] = 635, - [636] = 625, - [637] = 629, + [632] = 629, + [633] = 633, + [634] = 634, + [635] = 630, + [636] = 626, + [637] = 633, [638] = 631, [639] = 639, [640] = 640, @@ -4194,109 +4200,109 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [646] = 646, [647] = 647, [648] = 648, - [649] = 644, + [649] = 640, [650] = 650, [651] = 651, [652] = 652, - [653] = 646, + [653] = 653, [654] = 654, [655] = 655, [656] = 656, [657] = 657, [658] = 658, - [659] = 656, - [660] = 658, + [659] = 659, + [660] = 650, [661] = 661, - [662] = 662, - [663] = 654, - [664] = 652, - [665] = 650, - [666] = 662, + [662] = 643, + [663] = 663, + [664] = 664, + [665] = 665, + [666] = 666, [667] = 667, - [668] = 643, + [668] = 668, [669] = 669, [670] = 670, [671] = 671, - [672] = 672, + [672] = 639, [673] = 673, - [674] = 674, + [674] = 644, [675] = 675, [676] = 676, [677] = 677, - [678] = 640, - [679] = 679, - [680] = 676, + [678] = 678, + [679] = 648, + [680] = 652, [681] = 681, - [682] = 661, - [683] = 670, + [682] = 663, + [683] = 681, [684] = 684, - [685] = 685, + [685] = 654, [686] = 686, - [687] = 687, - [688] = 688, + [687] = 676, + [688] = 642, [689] = 689, [690] = 690, [691] = 691, - [692] = 692, + [692] = 651, [693] = 693, [694] = 694, - [695] = 647, + [695] = 695, [696] = 696, - [697] = 677, + [697] = 697, [698] = 698, - [699] = 699, - [700] = 250, + [699] = 665, + [700] = 700, [701] = 701, [702] = 702, - [703] = 679, + [703] = 703, [704] = 704, - [705] = 696, - [706] = 698, - [707] = 642, - [708] = 681, - [709] = 701, - [710] = 693, + [705] = 705, + [706] = 655, + [707] = 698, + [708] = 708, + [709] = 709, + [710] = 710, [711] = 711, - [712] = 712, - [713] = 713, - [714] = 692, - [715] = 671, - [716] = 716, - [717] = 713, - [718] = 639, - [719] = 719, - [720] = 720, - [721] = 721, - [722] = 722, - [723] = 672, - [724] = 724, - [725] = 722, - [726] = 699, - [727] = 694, - [728] = 691, - [729] = 711, - [730] = 712, - [731] = 674, - [732] = 673, + [712] = 704, + [713] = 658, + [714] = 711, + [715] = 667, + [716] = 689, + [717] = 708, + [718] = 661, + [719] = 670, + [720] = 675, + [721] = 694, + [722] = 657, + [723] = 659, + [724] = 646, + [725] = 644, + [726] = 664, + [727] = 653, + [728] = 696, + [729] = 695, + [730] = 666, + [731] = 701, + [732] = 318, [733] = 733, - [734] = 648, - [735] = 719, - [736] = 675, - [737] = 696, + [734] = 710, + [735] = 735, + [736] = 703, + [737] = 705, [738] = 738, - [739] = 721, - [740] = 655, - [741] = 733, + [739] = 709, + [740] = 640, + [741] = 741, [742] = 742, - [743] = 743, - [744] = 677, - [745] = 745, - [746] = 652, + [743] = 690, + [744] = 678, + [745] = 653, + [746] = 746, [747] = 747, [748] = 748, [749] = 749, [750] = 750, - [751] = 250, + [751] = 318, [752] = 752, [753] = 753, [754] = 754, @@ -4308,18 +4314,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [760] = 760, [761] = 761, [762] = 762, - [763] = 288, - [764] = 469, + [763] = 461, + [764] = 764, [765] = 765, [766] = 766, - [767] = 767, - [768] = 768, - [769] = 283, + [767] = 464, + [768] = 320, + [769] = 769, [770] = 770, - [771] = 472, - [772] = 387, - [773] = 773, - [774] = 774, + [771] = 771, + [772] = 772, + [773] = 256, + [774] = 326, [775] = 775, [776] = 776, [777] = 777, @@ -4327,9 +4333,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [779] = 779, [780] = 780, [781] = 781, - [782] = 195, + [782] = 782, [783] = 783, - [784] = 784, + [784] = 198, [785] = 785, [786] = 786, [787] = 787, @@ -4340,339 +4346,339 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [792] = 792, [793] = 793, [794] = 794, - [795] = 49, + [795] = 795, [796] = 796, [797] = 797, [798] = 798, [799] = 799, [800] = 800, - [801] = 801, + [801] = 48, [802] = 802, [803] = 803, [804] = 804, [805] = 805, [806] = 806, [807] = 807, - [808] = 808, - [809] = 261, - [810] = 810, - [811] = 811, - [812] = 812, - [813] = 466, - [814] = 60, - [815] = 467, - [816] = 463, - [817] = 451, - [818] = 53, - [819] = 69, - [820] = 430, - [821] = 64, + [808] = 290, + [809] = 306, + [810] = 369, + [811] = 384, + [812] = 387, + [813] = 813, + [814] = 392, + [815] = 585, + [816] = 816, + [817] = 817, + [818] = 62, + [819] = 401, + [820] = 402, + [821] = 403, [822] = 404, - [823] = 54, - [824] = 403, - [825] = 375, - [826] = 373, - [827] = 70, - [828] = 828, - [829] = 829, - [830] = 830, - [831] = 831, - [832] = 832, - [833] = 833, - [834] = 834, - [835] = 301, - [836] = 248, - [837] = 300, + [823] = 405, + [824] = 406, + [825] = 407, + [826] = 408, + [827] = 411, + [828] = 413, + [829] = 414, + [830] = 415, + [831] = 419, + [832] = 423, + [833] = 425, + [834] = 426, + [835] = 428, + [836] = 431, + [837] = 433, [838] = 838, - [839] = 839, - [840] = 296, - [841] = 295, - [842] = 294, - [843] = 79, - [844] = 286, - [845] = 285, - [846] = 281, - [847] = 280, - [848] = 271, - [849] = 270, - [850] = 268, - [851] = 263, - [852] = 262, - [853] = 258, - [854] = 257, - [855] = 255, - [856] = 253, - [857] = 251, - [858] = 249, - [859] = 256, - [860] = 259, - [861] = 265, - [862] = 269, - [863] = 272, - [864] = 275, - [865] = 279, - [866] = 287, - [867] = 66, - [868] = 289, - [869] = 291, - [870] = 299, - [871] = 59, - [872] = 303, - [873] = 315, - [874] = 80, - [875] = 339, - [876] = 342, - [877] = 344, - [878] = 345, - [879] = 78, - [880] = 73, - [881] = 881, - [882] = 882, - [883] = 883, - [884] = 427, - [885] = 428, - [886] = 886, - [887] = 435, - [888] = 437, - [889] = 452, - [890] = 454, + [839] = 434, + [840] = 435, + [841] = 436, + [842] = 842, + [843] = 843, + [844] = 440, + [845] = 246, + [846] = 443, + [847] = 444, + [848] = 450, + [849] = 452, + [850] = 456, + [851] = 468, + [852] = 77, + [853] = 476, + [854] = 477, + [855] = 479, + [856] = 856, + [857] = 480, + [858] = 412, + [859] = 475, + [860] = 471, + [861] = 470, + [862] = 862, + [863] = 465, + [864] = 463, + [865] = 865, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 66, + [870] = 69, + [871] = 871, + [872] = 872, + [873] = 453, + [874] = 451, + [875] = 447, + [876] = 446, + [877] = 420, + [878] = 416, + [879] = 88, + [880] = 398, + [881] = 375, + [882] = 373, + [883] = 75, + [884] = 357, + [885] = 338, + [886] = 335, + [887] = 327, + [888] = 325, + [889] = 324, + [890] = 323, [891] = 891, - [892] = 479, - [893] = 477, - [894] = 246, - [895] = 76, - [896] = 478, - [897] = 274, - [898] = 461, - [899] = 460, - [900] = 458, - [901] = 450, - [902] = 449, - [903] = 448, - [904] = 446, - [905] = 443, - [906] = 442, - [907] = 438, - [908] = 436, - [909] = 433, - [910] = 910, - [911] = 432, - [912] = 425, - [913] = 424, + [892] = 321, + [893] = 319, + [894] = 388, + [895] = 383, + [896] = 317, + [897] = 314, + [898] = 898, + [899] = 311, + [900] = 304, + [901] = 302, + [902] = 301, + [903] = 297, + [904] = 293, + [905] = 905, + [906] = 417, + [907] = 418, + [908] = 273, + [909] = 272, + [910] = 271, + [911] = 270, + [912] = 257, + [913] = 362, [914] = 422, - [915] = 410, - [916] = 401, - [917] = 398, - [918] = 396, - [919] = 395, - [920] = 391, - [921] = 389, - [922] = 388, - [923] = 385, - [924] = 378, - [925] = 376, - [926] = 371, - [927] = 360, - [928] = 928, - [929] = 380, - [930] = 930, - [931] = 337, - [932] = 329, - [933] = 323, - [934] = 87, - [935] = 266, - [936] = 267, - [937] = 278, - [938] = 245, - [939] = 939, - [940] = 940, + [915] = 73, + [916] = 254, + [917] = 360, + [918] = 83, + [919] = 424, + [920] = 432, + [921] = 342, + [922] = 922, + [923] = 349, + [924] = 924, + [925] = 437, + [926] = 252, + [927] = 389, + [928] = 251, + [929] = 348, + [930] = 81, + [931] = 931, + [932] = 932, + [933] = 250, + [934] = 249, + [935] = 935, + [936] = 347, + [937] = 438, + [938] = 439, + [939] = 346, + [940] = 454, [941] = 941, [942] = 942, - [943] = 282, - [944] = 83, - [945] = 85, - [946] = 75, - [947] = 947, - [948] = 292, + [943] = 457, + [944] = 458, + [945] = 345, + [946] = 946, + [947] = 344, + [948] = 948, [949] = 949, - [950] = 277, - [951] = 264, - [952] = 314, - [953] = 290, - [954] = 954, - [955] = 955, - [956] = 956, - [957] = 957, - [958] = 293, - [959] = 302, - [960] = 324, - [961] = 298, - [962] = 284, - [963] = 963, - [964] = 409, - [965] = 390, - [966] = 65, - [967] = 445, - [968] = 386, - [969] = 304, - [970] = 306, - [971] = 307, - [972] = 308, - [973] = 311, - [974] = 313, - [975] = 316, - [976] = 318, - [977] = 320, - [978] = 321, - [979] = 322, - [980] = 325, - [981] = 326, - [982] = 327, - [983] = 330, - [984] = 331, - [985] = 332, - [986] = 382, - [987] = 377, - [988] = 340, - [989] = 346, - [990] = 355, - [991] = 356, - [992] = 992, - [993] = 357, - [994] = 585, - [995] = 359, - [996] = 364, - [997] = 369, - [998] = 370, - [999] = 372, - [1000] = 470, - [1001] = 384, - [1002] = 407, - [1003] = 408, - [1004] = 411, - [1005] = 413, - [1006] = 67, - [1007] = 417, - [1008] = 418, + [950] = 950, + [951] = 951, + [952] = 74, + [953] = 953, + [954] = 343, + [955] = 247, + [956] = 331, + [957] = 356, + [958] = 341, + [959] = 339, + [960] = 336, + [961] = 85, + [962] = 329, + [963] = 394, + [964] = 395, + [965] = 427, + [966] = 64, + [967] = 54, + [968] = 448, + [969] = 455, + [970] = 467, + [971] = 466, + [972] = 445, + [973] = 81, + [974] = 72, + [975] = 409, + [976] = 390, + [977] = 386, + [978] = 382, + [979] = 979, + [980] = 377, + [981] = 309, + [982] = 374, + [983] = 368, + [984] = 367, + [985] = 60, + [986] = 308, + [987] = 987, + [988] = 361, + [989] = 567, + [990] = 307, + [991] = 460, + [992] = 364, + [993] = 305, + [994] = 303, + [995] = 300, + [996] = 298, + [997] = 352, + [998] = 350, + [999] = 296, + [1000] = 294, + [1001] = 292, + [1002] = 1002, + [1003] = 462, + [1004] = 291, + [1005] = 1005, + [1006] = 289, + [1007] = 288, + [1008] = 287, [1009] = 1009, - [1010] = 420, + [1010] = 286, [1011] = 1011, - [1012] = 423, - [1013] = 1013, - [1014] = 374, - [1015] = 440, - [1016] = 444, - [1017] = 447, - [1018] = 453, - [1019] = 1019, - [1020] = 456, - [1021] = 457, - [1022] = 459, - [1023] = 464, - [1024] = 471, - [1025] = 368, - [1026] = 473, - [1027] = 475, - [1028] = 476, + [1012] = 1012, + [1013] = 285, + [1014] = 284, + [1015] = 1015, + [1016] = 282, + [1017] = 1017, + [1018] = 281, + [1019] = 279, + [1020] = 276, + [1021] = 275, + [1022] = 277, + [1023] = 83, + [1024] = 84, + [1025] = 53, + [1026] = 478, + [1027] = 474, + [1028] = 584, [1029] = 1029, - [1030] = 474, - [1031] = 480, - [1032] = 1032, - [1033] = 468, - [1034] = 465, - [1035] = 462, - [1036] = 455, - [1037] = 441, - [1038] = 439, - [1039] = 434, - [1040] = 431, - [1041] = 429, - [1042] = 426, - [1043] = 421, - [1044] = 419, - [1045] = 415, - [1046] = 414, - [1047] = 412, - [1048] = 1048, - [1049] = 406, - [1050] = 405, - [1051] = 88, - [1052] = 402, - [1053] = 273, - [1054] = 400, - [1055] = 399, - [1056] = 397, - [1057] = 394, - [1058] = 393, - [1059] = 392, - [1060] = 367, - [1061] = 383, - [1062] = 381, - [1063] = 379, - [1064] = 366, - [1065] = 363, - [1066] = 362, - [1067] = 358, - [1068] = 354, + [1030] = 269, + [1031] = 1031, + [1032] = 280, + [1033] = 283, + [1034] = 268, + [1035] = 266, + [1036] = 264, + [1037] = 259, + [1038] = 61, + [1039] = 63, + [1040] = 1040, + [1041] = 255, + [1042] = 1042, + [1043] = 248, + [1044] = 473, + [1045] = 67, + [1046] = 1046, + [1047] = 76, + [1048] = 400, + [1049] = 56, + [1050] = 442, + [1051] = 1051, + [1052] = 1052, + [1053] = 472, + [1054] = 1054, + [1055] = 253, + [1056] = 261, + [1057] = 262, + [1058] = 381, + [1059] = 263, + [1060] = 1060, + [1061] = 1061, + [1062] = 265, + [1063] = 370, + [1064] = 359, + [1065] = 459, + [1066] = 267, + [1067] = 1067, + [1068] = 376, [1069] = 1069, - [1070] = 353, + [1070] = 1070, [1071] = 1071, - [1072] = 1072, + [1072] = 358, [1073] = 1073, - [1074] = 351, - [1075] = 349, - [1076] = 348, - [1077] = 347, - [1078] = 343, - [1079] = 341, - [1080] = 338, - [1081] = 336, - [1082] = 335, - [1083] = 334, - [1084] = 333, - [1085] = 328, - [1086] = 319, - [1087] = 317, - [1088] = 312, - [1089] = 310, - [1090] = 309, - [1091] = 305, - [1092] = 81, - [1093] = 361, - [1094] = 352, - [1095] = 350, - [1096] = 1096, - [1097] = 1097, - [1098] = 68, - [1099] = 87, - [1100] = 1100, - [1101] = 1101, - [1102] = 1102, - [1103] = 250, - [1104] = 69, - [1105] = 59, - [1106] = 54, - [1107] = 52, - [1108] = 53, - [1109] = 1109, - [1110] = 577, + [1074] = 322, + [1075] = 274, + [1076] = 278, + [1077] = 295, + [1078] = 299, + [1079] = 1079, + [1080] = 318, + [1081] = 1081, + [1082] = 1082, + [1083] = 1083, + [1084] = 310, + [1085] = 449, + [1086] = 312, + [1087] = 1087, + [1088] = 313, + [1089] = 315, + [1090] = 441, + [1091] = 316, + [1092] = 328, + [1093] = 332, + [1094] = 333, + [1095] = 334, + [1096] = 340, + [1097] = 351, + [1098] = 353, + [1099] = 54, + [1100] = 354, + [1101] = 355, + [1102] = 53, + [1103] = 363, + [1104] = 366, + [1105] = 430, + [1106] = 371, + [1107] = 56, + [1108] = 372, + [1109] = 429, + [1110] = 258, [1111] = 1111, - [1112] = 562, - [1113] = 1113, - [1114] = 1114, - [1115] = 1115, - [1116] = 1116, - [1117] = 1117, - [1118] = 1118, + [1112] = 378, + [1113] = 379, + [1114] = 88, + [1115] = 380, + [1116] = 385, + [1117] = 421, + [1118] = 575, [1119] = 1119, - [1120] = 68, + [1120] = 393, [1121] = 1121, - [1122] = 276, - [1123] = 1123, - [1124] = 568, - [1125] = 1125, - [1126] = 52, - [1127] = 1127, + [1122] = 396, + [1123] = 397, + [1124] = 64, + [1125] = 399, + [1126] = 410, + [1127] = 65, [1128] = 1128, [1129] = 1129, [1130] = 1130, @@ -4683,7 +4689,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1135] = 1135, [1136] = 1136, [1137] = 1137, - [1138] = 624, + [1138] = 1138, [1139] = 1139, [1140] = 1140, [1141] = 1141, @@ -4698,7 +4704,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1150] = 1150, [1151] = 1151, [1152] = 1152, - [1153] = 1153, + [1153] = 621, [1154] = 1154, [1155] = 1155, [1156] = 1156, @@ -4706,113 +4712,113 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1158] = 1158, [1159] = 1159, [1160] = 1160, - [1161] = 760, + [1161] = 758, [1162] = 1162, - [1163] = 1163, + [1163] = 318, [1164] = 1164, [1165] = 1165, - [1166] = 1163, - [1167] = 1167, - [1168] = 1164, - [1169] = 1118, - [1170] = 250, - [1171] = 1171, - [1172] = 760, + [1166] = 1166, + [1167] = 1165, + [1168] = 1168, + [1169] = 1164, + [1170] = 1015, + [1171] = 758, + [1172] = 792, [1173] = 1173, - [1174] = 780, + [1174] = 1174, [1175] = 1175, - [1176] = 1176, - [1177] = 1177, + [1176] = 792, + [1177] = 780, [1178] = 1178, - [1179] = 785, + [1179] = 1179, [1180] = 1180, - [1181] = 1181, + [1181] = 769, [1182] = 1182, - [1183] = 773, - [1184] = 774, + [1183] = 1183, + [1184] = 1184, [1185] = 1185, - [1186] = 1186, - [1187] = 770, - [1188] = 765, - [1189] = 780, - [1190] = 786, - [1191] = 794, - [1192] = 1192, - [1193] = 1127, - [1194] = 1194, - [1195] = 1123, - [1196] = 1196, - [1197] = 1196, - [1198] = 1198, + [1186] = 766, + [1187] = 764, + [1188] = 1188, + [1189] = 772, + [1190] = 793, + [1191] = 796, + [1192] = 1031, + [1193] = 1193, + [1194] = 1119, + [1195] = 1195, + [1196] = 1195, + [1197] = 1197, + [1198] = 1136, [1199] = 1199, - [1200] = 1144, - [1201] = 1146, - [1202] = 1147, - [1203] = 1203, + [1200] = 1155, + [1201] = 1201, + [1202] = 1199, + [1203] = 1157, [1204] = 1204, - [1205] = 1149, - [1206] = 1151, - [1207] = 1152, - [1208] = 1208, - [1209] = 1153, - [1210] = 1154, - [1211] = 1157, + [1205] = 1154, + [1206] = 1206, + [1207] = 1207, + [1208] = 1130, + [1209] = 1209, + [1210] = 1210, + [1211] = 1211, [1212] = 1212, - [1213] = 1129, - [1214] = 1203, - [1215] = 1135, - [1216] = 1212, - [1217] = 1217, - [1218] = 1155, - [1219] = 1134, - [1220] = 1203, - [1221] = 1217, - [1222] = 1222, - [1223] = 1212, - [1224] = 1212, + [1213] = 1213, + [1214] = 1201, + [1215] = 1215, + [1216] = 1213, + [1217] = 1210, + [1218] = 1218, + [1219] = 1206, + [1220] = 1206, + [1221] = 1148, + [1222] = 1211, + [1223] = 1223, + [1224] = 1140, [1225] = 1225, [1226] = 1226, [1227] = 1227, - [1228] = 1228, + [1228] = 1213, [1229] = 1229, - [1230] = 1230, - [1231] = 1130, - [1232] = 1232, - [1233] = 1233, - [1234] = 1203, - [1235] = 1132, - [1236] = 1212, - [1237] = 1237, - [1238] = 1133, - [1239] = 1239, - [1240] = 1203, - [1241] = 1241, - [1242] = 1242, - [1243] = 1227, - [1244] = 1203, - [1245] = 1227, - [1246] = 1212, - [1247] = 1145, - [1248] = 1158, - [1249] = 1249, - [1250] = 1228, - [1251] = 1239, - [1252] = 1232, - [1253] = 1239, - [1254] = 1237, + [1230] = 1213, + [1231] = 1209, + [1232] = 1143, + [1233] = 1204, + [1234] = 1234, + [1235] = 1144, + [1236] = 1146, + [1237] = 1211, + [1238] = 1138, + [1239] = 1206, + [1240] = 1147, + [1241] = 1129, + [1242] = 1206, + [1243] = 1243, + [1244] = 1128, + [1245] = 1245, + [1246] = 1246, + [1247] = 1152, + [1248] = 1210, + [1249] = 1158, + [1250] = 1250, + [1251] = 1246, + [1252] = 1252, + [1253] = 1142, + [1254] = 1254, [1255] = 1255, - [1256] = 1256, - [1257] = 1257, - [1258] = 1242, - [1259] = 1259, - [1260] = 1199, - [1261] = 1237, - [1262] = 1140, - [1263] = 1139, + [1256] = 1145, + [1257] = 1206, + [1258] = 1258, + [1259] = 1201, + [1260] = 1213, + [1261] = 1213, + [1262] = 1156, + [1263] = 1132, [1264] = 1264, [1265] = 1265, [1266] = 1266, - [1267] = 1204, + [1267] = 1267, [1268] = 1268, [1269] = 1269, [1270] = 1270, @@ -4823,301 +4829,301 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1275] = 1275, [1276] = 1276, [1277] = 1277, - [1278] = 1278, - [1279] = 1279, - [1280] = 1280, - [1281] = 1272, + [1278] = 1269, + [1279] = 1265, + [1280] = 1270, + [1281] = 1275, [1282] = 1282, - [1283] = 1283, - [1284] = 1284, - [1285] = 1285, + [1283] = 1268, + [1284] = 1271, + [1285] = 1274, [1286] = 1286, - [1287] = 1273, - [1288] = 1276, - [1289] = 1271, + [1287] = 1272, + [1288] = 1277, + [1289] = 1289, [1290] = 1290, - [1291] = 1286, - [1292] = 1275, + [1291] = 1291, + [1292] = 1292, [1293] = 1293, - [1294] = 1294, - [1295] = 1282, - [1296] = 1268, - [1297] = 1293, - [1298] = 1298, + [1294] = 1267, + [1295] = 1295, + [1296] = 1296, + [1297] = 1297, + [1298] = 1297, [1299] = 1299, - [1300] = 1300, - [1301] = 1299, - [1302] = 1300, + [1300] = 1299, + [1301] = 1301, + [1302] = 1302, [1303] = 1303, [1304] = 1304, [1305] = 1305, - [1306] = 1306, - [1307] = 1307, - [1308] = 1306, - [1309] = 1306, - [1310] = 1306, - [1311] = 1306, - [1312] = 1307, - [1313] = 1313, - [1314] = 1313, - [1315] = 577, - [1316] = 585, - [1317] = 1317, - [1318] = 752, - [1319] = 758, - [1320] = 755, - [1321] = 761, - [1322] = 756, - [1323] = 758, - [1324] = 754, - [1325] = 756, - [1326] = 753, - [1327] = 761, - [1328] = 755, - [1329] = 1329, + [1306] = 1305, + [1307] = 1304, + [1308] = 1305, + [1309] = 1305, + [1310] = 1305, + [1311] = 1311, + [1312] = 1311, + [1313] = 567, + [1314] = 575, + [1315] = 1315, + [1316] = 752, + [1317] = 762, + [1318] = 755, + [1319] = 753, + [1320] = 756, + [1321] = 755, + [1322] = 762, + [1323] = 756, + [1324] = 761, + [1325] = 761, + [1326] = 754, + [1327] = 759, + [1328] = 1328, + [1329] = 757, [1330] = 1330, - [1331] = 1331, - [1332] = 762, - [1333] = 757, - [1334] = 759, - [1335] = 68, - [1336] = 69, - [1337] = 87, - [1338] = 1338, - [1339] = 803, - [1340] = 59, - [1341] = 1338, - [1342] = 1342, - [1343] = 779, - [1344] = 1118, - [1345] = 1185, - [1346] = 796, - [1347] = 801, - [1348] = 781, - [1349] = 783, - [1350] = 1350, - [1351] = 1177, - [1352] = 790, - [1353] = 778, - [1354] = 777, - [1355] = 797, - [1356] = 792, - [1357] = 1357, - [1358] = 1358, - [1359] = 807, - [1360] = 789, - [1361] = 806, - [1362] = 791, - [1363] = 805, + [1331] = 760, + [1332] = 1332, + [1333] = 81, + [1334] = 1334, + [1335] = 88, + [1336] = 83, + [1337] = 1337, + [1338] = 64, + [1339] = 1334, + [1340] = 789, + [1341] = 1183, + [1342] = 797, + [1343] = 1015, + [1344] = 804, + [1345] = 782, + [1346] = 785, + [1347] = 799, + [1348] = 1348, + [1349] = 803, + [1350] = 791, + [1351] = 1351, + [1352] = 779, + [1353] = 781, + [1354] = 776, + [1355] = 805, + [1356] = 783, + [1357] = 802, + [1358] = 584, + [1359] = 790, + [1360] = 1180, + [1361] = 807, + [1362] = 786, + [1363] = 798, [1364] = 1364, - [1365] = 1186, - [1366] = 784, - [1367] = 568, - [1368] = 799, + [1365] = 795, + [1366] = 1366, + [1367] = 806, + [1368] = 788, [1369] = 1369, - [1370] = 798, - [1371] = 800, - [1372] = 1357, - [1373] = 1357, - [1374] = 802, - [1375] = 804, - [1376] = 775, - [1377] = 1176, - [1378] = 1019, - [1379] = 881, - [1380] = 940, - [1381] = 839, - [1382] = 1096, - [1383] = 838, - [1384] = 808, - [1385] = 832, - [1386] = 1386, - [1387] = 1387, - [1388] = 1388, - [1389] = 942, - [1390] = 949, - [1391] = 955, - [1392] = 882, + [1370] = 775, + [1371] = 1184, + [1372] = 1185, + [1373] = 1369, + [1374] = 787, + [1375] = 1369, + [1376] = 950, + [1377] = 1042, + [1378] = 868, + [1379] = 867, + [1380] = 1380, + [1381] = 932, + [1382] = 931, + [1383] = 865, + [1384] = 1012, + [1385] = 946, + [1386] = 949, + [1387] = 862, + [1388] = 1017, + [1389] = 1389, + [1390] = 1040, + [1391] = 771, + [1392] = 935, [1393] = 1393, - [1394] = 831, - [1395] = 830, - [1396] = 956, - [1397] = 828, - [1398] = 1113, - [1399] = 891, - [1400] = 1400, - [1401] = 1401, - [1402] = 766, - [1403] = 1114, - [1404] = 883, - [1405] = 1125, - [1406] = 812, - [1407] = 886, - [1408] = 1408, + [1394] = 1083, + [1395] = 1395, + [1396] = 1396, + [1397] = 1397, + [1398] = 941, + [1399] = 1005, + [1400] = 951, + [1401] = 1002, + [1402] = 953, + [1403] = 922, + [1404] = 905, + [1405] = 856, + [1406] = 1406, + [1407] = 56, + [1408] = 1395, [1409] = 1409, [1410] = 1410, [1411] = 1411, [1412] = 1412, - [1413] = 54, - [1414] = 1414, - [1415] = 1415, - [1416] = 1387, - [1417] = 52, - [1418] = 53, - [1419] = 1419, + [1413] = 1413, + [1414] = 54, + [1415] = 53, + [1416] = 1416, + [1417] = 1417, + [1418] = 1418, + [1419] = 762, [1420] = 1420, - [1421] = 761, + [1421] = 1421, [1422] = 1422, - [1423] = 1423, - [1424] = 758, + [1423] = 756, + [1424] = 761, [1425] = 1425, [1426] = 1426, [1427] = 1427, - [1428] = 756, + [1428] = 1428, [1429] = 1429, - [1430] = 761, - [1431] = 755, + [1430] = 756, + [1431] = 762, [1432] = 1432, - [1433] = 1433, + [1433] = 755, [1434] = 1434, - [1435] = 758, + [1435] = 755, [1436] = 1436, [1437] = 1437, [1438] = 1438, - [1439] = 1439, + [1439] = 1395, [1440] = 1440, [1441] = 1441, [1442] = 1442, - [1443] = 756, + [1443] = 1443, [1444] = 1444, - [1445] = 756, - [1446] = 761, + [1445] = 761, + [1446] = 1446, [1447] = 1447, - [1448] = 755, - [1449] = 1449, - [1450] = 755, + [1448] = 1448, + [1449] = 761, + [1450] = 1450, [1451] = 1451, [1452] = 1452, [1453] = 1453, - [1454] = 60, - [1455] = 1455, + [1454] = 1454, + [1455] = 67, [1456] = 1456, - [1457] = 1457, + [1457] = 755, [1458] = 1458, - [1459] = 1387, - [1460] = 758, - [1461] = 1461, + [1459] = 756, + [1460] = 1460, + [1461] = 762, [1462] = 1462, - [1463] = 1463, + [1463] = 1462, [1464] = 1464, [1465] = 1465, - [1466] = 1464, - [1467] = 1467, + [1466] = 1465, + [1467] = 1464, [1468] = 1468, [1469] = 1469, - [1470] = 1465, + [1470] = 1469, [1471] = 1471, - [1472] = 1468, - [1473] = 1467, - [1474] = 1471, - [1475] = 1469, + [1472] = 1471, + [1473] = 1468, + [1474] = 1474, + [1475] = 1475, [1476] = 1476, [1477] = 1477, [1478] = 1478, - [1479] = 1479, + [1479] = 1478, [1480] = 1480, - [1481] = 1476, - [1482] = 1479, + [1481] = 1480, + [1482] = 1482, [1483] = 1483, [1484] = 1484, [1485] = 1485, [1486] = 1486, [1487] = 1487, [1488] = 1488, - [1489] = 1342, - [1490] = 1488, - [1491] = 1491, + [1489] = 1487, + [1490] = 1490, + [1491] = 1483, [1492] = 1492, [1493] = 1493, [1494] = 1494, [1495] = 1495, - [1496] = 1484, - [1497] = 1493, - [1498] = 1498, - [1499] = 1499, + [1496] = 1486, + [1497] = 1497, + [1498] = 1495, + [1499] = 1493, [1500] = 1500, - [1501] = 1486, - [1502] = 1502, - [1503] = 1503, + [1501] = 1484, + [1502] = 1490, + [1503] = 1494, [1504] = 1504, - [1505] = 1485, - [1506] = 1506, - [1507] = 1507, + [1505] = 1337, + [1506] = 1482, + [1507] = 1497, [1508] = 1508, [1509] = 1509, - [1510] = 1492, - [1511] = 1487, - [1512] = 1506, - [1513] = 1513, - [1514] = 1514, - [1515] = 1509, - [1516] = 1514, - [1517] = 1508, - [1518] = 1518, - [1519] = 1513, - [1520] = 1518, - [1521] = 1503, - [1522] = 1504, - [1523] = 1498, - [1524] = 1502, - [1525] = 1500, + [1510] = 1510, + [1511] = 1511, + [1512] = 1512, + [1513] = 1512, + [1514] = 1485, + [1515] = 1500, + [1516] = 1516, + [1517] = 1511, + [1518] = 1508, + [1519] = 1509, + [1520] = 1492, + [1521] = 1516, + [1522] = 1522, + [1523] = 1523, + [1524] = 1524, + [1525] = 1525, [1526] = 1526, [1527] = 1527, - [1528] = 1528, + [1528] = 1337, [1529] = 1529, [1530] = 1530, [1531] = 1531, [1532] = 1532, - [1533] = 1533, - [1534] = 1532, + [1533] = 1531, + [1534] = 1534, [1535] = 1535, [1536] = 1536, [1537] = 1537, - [1538] = 1536, + [1538] = 1538, [1539] = 1539, - [1540] = 1350, + [1540] = 1540, [1541] = 1541, [1542] = 1542, - [1543] = 1543, + [1543] = 1542, [1544] = 1544, [1545] = 1545, - [1546] = 1546, - [1547] = 1530, + [1546] = 1545, + [1547] = 1547, [1548] = 1548, [1549] = 1549, [1550] = 1550, - [1551] = 1549, - [1552] = 1552, + [1551] = 1551, + [1552] = 1545, [1553] = 1553, - [1554] = 1550, - [1555] = 1555, + [1554] = 1554, + [1555] = 1534, [1556] = 1556, - [1557] = 1557, - [1558] = 1546, - [1559] = 1535, - [1560] = 1560, + [1557] = 1348, + [1558] = 1558, + [1559] = 1559, + [1560] = 1559, [1561] = 1561, - [1562] = 1562, - [1563] = 1529, - [1564] = 1342, - [1565] = 1535, + [1562] = 1527, + [1563] = 1532, + [1564] = 1538, + [1565] = 1337, [1566] = 1566, [1567] = 1567, [1568] = 1568, - [1569] = 1567, + [1569] = 1569, [1570] = 1570, [1571] = 1571, - [1572] = 1342, + [1572] = 1572, [1573] = 1573, [1574] = 1574, [1575] = 1575, @@ -5126,39 +5132,39 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1578] = 1578, [1579] = 1579, [1580] = 1580, - [1581] = 1581, - [1582] = 1582, - [1583] = 1583, + [1581] = 1579, + [1582] = 1576, + [1583] = 1569, [1584] = 1584, - [1585] = 1585, + [1585] = 1573, [1586] = 1586, [1587] = 1587, [1588] = 1588, [1589] = 1589, [1590] = 1590, - [1591] = 1588, - [1592] = 1584, + [1591] = 1591, + [1592] = 1580, [1593] = 1593, [1594] = 1594, [1595] = 1595, - [1596] = 1596, + [1596] = 1348, [1597] = 1597, - [1598] = 1598, - [1599] = 1595, - [1600] = 1600, - [1601] = 1583, - [1602] = 1587, - [1603] = 1575, + [1598] = 1594, + [1599] = 1599, + [1600] = 1586, + [1601] = 1584, + [1602] = 1597, + [1603] = 1603, [1604] = 1604, - [1605] = 1594, - [1606] = 1593, - [1607] = 1586, + [1605] = 1587, + [1606] = 1606, + [1607] = 1607, [1608] = 1608, - [1609] = 1609, - [1610] = 1604, - [1611] = 1350, - [1612] = 1609, - [1613] = 1585, + [1609] = 1571, + [1610] = 1590, + [1611] = 1588, + [1612] = 1612, + [1613] = 1613, [1614] = 1614, [1615] = 1615, [1616] = 1616, @@ -5169,100 +5175,100 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1621] = 1621, [1622] = 1622, [1623] = 1623, - [1624] = 1623, - [1625] = 1625, + [1624] = 1624, + [1625] = 1613, [1626] = 1626, - [1627] = 1627, + [1627] = 1612, [1628] = 1628, [1629] = 1629, [1630] = 1630, - [1631] = 1630, - [1632] = 1627, - [1633] = 1629, + [1631] = 1631, + [1632] = 1632, + [1633] = 1633, [1634] = 1634, [1635] = 1635, - [1636] = 1636, + [1636] = 1624, [1637] = 1637, - [1638] = 1636, + [1638] = 1638, [1639] = 1639, - [1640] = 1615, - [1641] = 1641, - [1642] = 1637, - [1643] = 1643, - [1644] = 1644, - [1645] = 1350, + [1640] = 1640, + [1641] = 1635, + [1642] = 1640, + [1643] = 1637, + [1644] = 1620, + [1645] = 1645, [1646] = 1646, [1647] = 1647, - [1648] = 1643, - [1649] = 1649, + [1648] = 1626, + [1649] = 1646, [1650] = 1650, - [1651] = 1651, - [1652] = 1617, - [1653] = 1653, - [1654] = 1622, - [1655] = 1646, + [1651] = 1639, + [1652] = 1623, + [1653] = 1348, + [1654] = 1654, + [1655] = 1619, [1656] = 1656, [1657] = 1657, - [1658] = 1651, - [1659] = 1659, - [1660] = 1660, - [1661] = 1659, - [1662] = 1618, + [1658] = 1658, + [1659] = 1650, + [1660] = 1647, + [1661] = 1661, + [1662] = 1645, [1663] = 1663, - [1664] = 1621, - [1665] = 1657, - [1666] = 1666, + [1664] = 1616, + [1665] = 1665, + [1666] = 1615, [1667] = 1667, - [1668] = 1647, + [1668] = 1656, [1669] = 1669, - [1670] = 1669, - [1671] = 1619, + [1670] = 1614, + [1671] = 1671, [1672] = 1672, [1673] = 1673, - [1674] = 1628, - [1675] = 1675, - [1676] = 1660, - [1677] = 1634, - [1678] = 1678, - [1679] = 1656, - [1680] = 1657, - [1681] = 1669, + [1674] = 1674, + [1675] = 1638, + [1676] = 1632, + [1677] = 1677, + [1678] = 1631, + [1679] = 1679, + [1680] = 1661, + [1681] = 1615, [1682] = 1673, [1683] = 1683, - [1684] = 1635, - [1685] = 1615, - [1686] = 1686, - [1687] = 1687, - [1688] = 1653, - [1689] = 1686, - [1690] = 1616, - [1691] = 1625, - [1692] = 1650, - [1693] = 1614, - [1694] = 1678, + [1684] = 1663, + [1685] = 1657, + [1686] = 1679, + [1687] = 1677, + [1688] = 1669, + [1689] = 1683, + [1690] = 1690, + [1691] = 1628, + [1692] = 1622, + [1693] = 1667, + [1694] = 1633, [1695] = 1695, - [1696] = 1687, - [1697] = 1683, - [1698] = 1641, - [1699] = 1649, - [1700] = 1675, - [1701] = 1626, - [1702] = 1672, - [1703] = 1644, - [1704] = 1695, + [1696] = 1673, + [1697] = 1618, + [1698] = 1672, + [1699] = 1658, + [1700] = 1628, + [1701] = 1617, + [1702] = 1674, + [1703] = 1621, + [1704] = 1671, [1705] = 1705, [1706] = 1706, - [1707] = 1141, - [1708] = 1708, - [1709] = 1709, - [1710] = 1136, + [1707] = 1707, + [1708] = 1707, + [1709] = 1139, + [1710] = 1710, [1711] = 1711, - [1712] = 1128, + [1712] = 1712, [1713] = 1713, [1714] = 1714, - [1715] = 1715, + [1715] = 1711, [1716] = 1716, - [1717] = 1717, + [1717] = 1707, [1718] = 1718, [1719] = 1719, [1720] = 1720, @@ -5270,40 +5276,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1722] = 1722, [1723] = 1723, [1724] = 1724, - [1725] = 1725, - [1726] = 1726, - [1727] = 1708, - [1728] = 1728, + [1725] = 1135, + [1726] = 1134, + [1727] = 1727, + [1728] = 1710, [1729] = 1729, - [1730] = 1725, - [1731] = 1731, + [1730] = 1710, + [1731] = 1723, [1732] = 1732, [1733] = 1733, - [1734] = 1148, - [1735] = 1150, - [1736] = 1142, + [1734] = 1734, + [1735] = 1735, + [1736] = 1736, [1737] = 1737, - [1738] = 1725, - [1739] = 1713, + [1738] = 1716, + [1739] = 1739, [1740] = 1740, - [1741] = 1711, - [1742] = 1719, - [1743] = 1719, - [1744] = 1744, + [1741] = 1150, + [1742] = 1141, + [1743] = 1718, + [1744] = 1740, [1745] = 1745, - [1746] = 1720, + [1746] = 1735, [1747] = 1747, - [1748] = 1721, + [1748] = 1748, [1749] = 1749, - [1750] = 1711, - [1751] = 1751, + [1750] = 1720, + [1751] = 1736, [1752] = 1752, - [1753] = 1753, - [1754] = 1754, + [1753] = 1151, + [1754] = 1716, [1755] = 1755, - [1756] = 1717, - [1757] = 1718, - [1758] = 1737, + [1756] = 1756, + [1757] = 1757, + [1758] = 1758, [1759] = 1759, [1760] = 1760, [1761] = 1761, @@ -5313,93 +5319,93 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1765] = 1765, [1766] = 1766, [1767] = 1767, - [1768] = 1768, + [1768] = 1764, [1769] = 1769, [1770] = 1770, - [1771] = 1760, + [1771] = 1771, [1772] = 1772, [1773] = 1773, [1774] = 1774, [1775] = 1775, - [1776] = 1776, + [1776] = 1761, [1777] = 1777, - [1778] = 1766, - [1779] = 1779, + [1778] = 1765, + [1779] = 1769, [1780] = 1780, [1781] = 1781, - [1782] = 1768, + [1782] = 1782, [1783] = 1783, [1784] = 1784, [1785] = 1785, [1786] = 1786, - [1787] = 1787, + [1787] = 1781, [1788] = 1788, - [1789] = 1765, + [1789] = 1789, [1790] = 1790, [1791] = 1791, [1792] = 1792, - [1793] = 1793, + [1793] = 1774, [1794] = 1794, - [1795] = 1795, - [1796] = 1796, - [1797] = 1797, - [1798] = 1781, - [1799] = 1799, + [1795] = 1786, + [1796] = 1780, + [1797] = 1771, + [1798] = 1798, + [1799] = 1785, [1800] = 1800, - [1801] = 1801, - [1802] = 1802, - [1803] = 1803, - [1804] = 1802, - [1805] = 1797, + [1801] = 1762, + [1802] = 1767, + [1803] = 1760, + [1804] = 1804, + [1805] = 1774, [1806] = 1806, [1807] = 1807, [1808] = 1769, - [1809] = 1783, - [1810] = 1810, - [1811] = 1787, - [1812] = 1759, - [1813] = 1773, - [1814] = 1788, - [1815] = 1815, - [1816] = 1774, - [1817] = 1817, - [1818] = 1815, - [1819] = 1819, + [1809] = 1809, + [1810] = 1777, + [1811] = 1811, + [1812] = 1812, + [1813] = 1813, + [1814] = 1814, + [1815] = 1807, + [1816] = 1812, + [1817] = 1782, + [1818] = 1792, + [1819] = 1809, [1820] = 1820, [1821] = 1821, - [1822] = 1817, - [1823] = 1803, - [1824] = 1796, + [1822] = 1758, + [1823] = 1823, + [1824] = 1824, [1825] = 1825, - [1826] = 1826, - [1827] = 1791, - [1828] = 1802, - [1829] = 1763, - [1830] = 1761, - [1831] = 1801, - [1832] = 1806, - [1833] = 1815, - [1834] = 1807, - [1835] = 1797, + [1826] = 1780, + [1827] = 1827, + [1828] = 1783, + [1829] = 1762, + [1830] = 1814, + [1831] = 1827, + [1832] = 1832, + [1833] = 1833, + [1834] = 1760, + [1835] = 1775, [1836] = 1836, [1837] = 1837, - [1838] = 1762, + [1838] = 1838, [1839] = 1839, - [1840] = 1826, - [1841] = 1759, + [1840] = 1811, + [1841] = 1772, [1842] = 1842, - [1843] = 1793, - [1844] = 1759, - [1845] = 1845, + [1843] = 1843, + [1844] = 1800, + [1845] = 1760, [1846] = 1846, [1847] = 1847, - [1848] = 1795, - [1849] = 1815, - [1850] = 1797, - [1851] = 1802, - [1852] = 1769, - [1853] = 1853, - [1854] = 1775, + [1848] = 1769, + [1849] = 1774, + [1850] = 1813, + [1851] = 1851, + [1852] = 1833, + [1853] = 1762, + [1854] = 1854, [1855] = 1855, [1856] = 1856, [1857] = 1857, @@ -5416,453 +5422,453 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1868] = 1868, [1869] = 1869, [1870] = 1870, - [1871] = 1871, + [1871] = 574, [1872] = 1872, - [1873] = 1870, + [1873] = 1873, [1874] = 1874, [1875] = 1875, [1876] = 1876, [1877] = 1877, - [1878] = 1876, + [1878] = 1878, [1879] = 1879, [1880] = 1880, [1881] = 1881, [1882] = 1882, [1883] = 1883, - [1884] = 576, - [1885] = 1885, + [1884] = 1884, + [1885] = 1863, [1886] = 1886, [1887] = 1887, - [1888] = 1888, + [1888] = 1862, [1889] = 1889, [1890] = 1890, [1891] = 1891, [1892] = 1892, [1893] = 1893, - [1894] = 1894, + [1894] = 1862, [1895] = 1895, - [1896] = 1896, + [1896] = 1863, [1897] = 1897, [1898] = 1898, - [1899] = 1899, + [1899] = 571, [1900] = 1900, [1901] = 1901, [1902] = 1902, [1903] = 1903, [1904] = 1904, - [1905] = 1899, - [1906] = 1906, + [1905] = 1905, + [1906] = 1863, [1907] = 1907, [1908] = 1908, - [1909] = 1909, + [1909] = 1862, [1910] = 1910, [1911] = 1911, [1912] = 1912, [1913] = 1913, - [1914] = 1859, + [1914] = 1914, [1915] = 1915, [1916] = 1916, [1917] = 1917, [1918] = 1918, [1919] = 1919, [1920] = 1920, - [1921] = 1921, + [1921] = 1898, [1922] = 1922, - [1923] = 1923, - [1924] = 1924, + [1923] = 1881, + [1924] = 1861, [1925] = 1925, - [1926] = 1894, + [1926] = 1926, [1927] = 1927, [1928] = 1928, - [1929] = 1911, - [1930] = 1916, + [1929] = 1929, + [1930] = 1930, [1931] = 1931, [1932] = 1932, - [1933] = 1882, - [1934] = 1931, + [1933] = 1933, + [1934] = 1934, [1935] = 1935, [1936] = 1936, [1937] = 1937, - [1938] = 1938, + [1938] = 1865, [1939] = 1939, [1940] = 1940, [1941] = 1941, [1942] = 1942, - [1943] = 1876, - [1944] = 1944, + [1943] = 1943, + [1944] = 1858, [1945] = 1945, [1946] = 1946, - [1947] = 1945, - [1948] = 1870, - [1949] = 1949, - [1950] = 1950, + [1947] = 1947, + [1948] = 1948, + [1949] = 1873, + [1950] = 1875, [1951] = 1951, - [1952] = 1952, + [1952] = 1876, [1953] = 1953, [1954] = 1954, - [1955] = 1951, - [1956] = 1956, - [1957] = 1957, - [1958] = 1956, - [1959] = 1909, + [1955] = 1856, + [1956] = 1877, + [1957] = 1878, + [1958] = 1958, + [1959] = 1959, [1960] = 1960, - [1961] = 1961, + [1961] = 1942, [1962] = 1962, [1963] = 1963, [1964] = 1964, [1965] = 1965, [1966] = 1966, - [1967] = 1922, - [1968] = 1925, + [1967] = 1891, + [1968] = 1968, [1969] = 1969, [1970] = 1970, [1971] = 1971, [1972] = 1972, - [1973] = 1973, - [1974] = 1961, - [1975] = 1925, - [1976] = 1941, + [1973] = 1900, + [1974] = 1974, + [1975] = 1975, + [1976] = 1976, [1977] = 1977, - [1978] = 1978, - [1979] = 1979, + [1978] = 1907, + [1979] = 1910, [1980] = 1980, [1981] = 1981, [1982] = 1982, - [1983] = 1983, - [1984] = 1981, - [1985] = 1896, + [1983] = 1911, + [1984] = 1912, + [1985] = 1919, [1986] = 1986, [1987] = 1987, - [1988] = 1988, - [1989] = 1989, - [1990] = 1990, - [1991] = 1969, + [1988] = 1965, + [1989] = 1926, + [1990] = 1927, + [1991] = 1941, [1992] = 1992, - [1993] = 1876, - [1994] = 1988, - [1995] = 1965, - [1996] = 1870, + [1993] = 1993, + [1994] = 1994, + [1995] = 1943, + [1996] = 1996, [1997] = 1997, - [1998] = 1982, - [1999] = 1858, + [1998] = 1998, + [1999] = 1999, [2000] = 2000, - [2001] = 2001, + [2001] = 1965, [2002] = 2002, - [2003] = 1927, + [2003] = 1998, [2004] = 2004, - [2005] = 2005, - [2006] = 1969, + [2005] = 1958, + [2006] = 2006, [2007] = 2007, - [2008] = 1997, + [2008] = 2008, [2009] = 2009, - [2010] = 2007, - [2011] = 2011, + [2010] = 2010, + [2011] = 1965, [2012] = 2012, - [2013] = 1972, - [2014] = 2014, - [2015] = 2015, - [2016] = 1978, - [2017] = 1876, - [2018] = 1964, - [2019] = 1937, + [2013] = 2013, + [2014] = 1863, + [2015] = 1925, + [2016] = 1862, + [2017] = 1992, + [2018] = 1862, + [2019] = 1993, [2020] = 2020, - [2021] = 1870, + [2021] = 2009, [2022] = 2022, - [2023] = 1867, - [2024] = 1980, - [2025] = 1865, - [2026] = 2026, - [2027] = 1891, - [2028] = 2028, - [2029] = 1876, - [2030] = 2030, - [2031] = 1917, + [2023] = 2006, + [2024] = 2024, + [2025] = 2025, + [2026] = 2007, + [2027] = 1863, + [2028] = 2012, + [2029] = 1997, + [2030] = 2022, + [2031] = 2025, [2032] = 2032, - [2033] = 1913, + [2033] = 2033, [2034] = 2034, [2035] = 2035, - [2036] = 2036, - [2037] = 2037, - [2038] = 1870, + [2036] = 1987, + [2037] = 2033, + [2038] = 2038, [2039] = 2039, - [2040] = 1953, + [2040] = 2040, [2041] = 2041, [2042] = 2042, - [2043] = 1908, + [2043] = 2035, [2044] = 2044, - [2045] = 1970, + [2045] = 2045, [2046] = 2046, [2047] = 2047, - [2048] = 2048, + [2048] = 1975, [2049] = 2049, - [2050] = 1971, + [2050] = 2050, [2051] = 2051, [2052] = 2052, - [2053] = 1862, - [2054] = 1900, + [2053] = 1892, + [2054] = 2054, [2055] = 2055, [2056] = 2056, [2057] = 2057, - [2058] = 566, + [2058] = 2047, [2059] = 2059, - [2060] = 1919, + [2060] = 2060, [2061] = 2061, - [2062] = 1963, - [2063] = 1939, + [2062] = 2062, + [2063] = 2062, [2064] = 2064, - [2065] = 2065, + [2065] = 2032, [2066] = 2066, - [2067] = 2067, - [2068] = 2068, - [2069] = 2069, - [2070] = 1989, - [2071] = 2064, - [2072] = 1901, - [2073] = 2073, + [2067] = 1982, + [2068] = 1869, + [2069] = 2064, + [2070] = 2066, + [2071] = 2071, + [2072] = 1998, + [2073] = 1880, [2074] = 2074, [2075] = 2075, - [2076] = 1983, - [2077] = 1895, + [2076] = 1857, + [2077] = 2077, [2078] = 2078, [2079] = 2079, - [2080] = 2047, - [2081] = 2037, - [2082] = 2082, - [2083] = 1872, - [2084] = 2084, + [2080] = 1901, + [2081] = 2000, + [2082] = 2075, + [2083] = 1903, + [2084] = 2077, [2085] = 2085, - [2086] = 1888, - [2087] = 2087, + [2086] = 1948, + [2087] = 1884, [2088] = 2088, - [2089] = 1960, - [2090] = 2090, + [2089] = 2089, + [2090] = 1963, [2091] = 2091, - [2092] = 2000, + [2092] = 1969, [2093] = 2093, - [2094] = 2020, + [2094] = 1855, [2095] = 2095, - [2096] = 2036, - [2097] = 1962, - [2098] = 2041, + [2096] = 2096, + [2097] = 2020, + [2098] = 2098, [2099] = 2099, - [2100] = 2100, - [2101] = 1902, - [2102] = 2099, + [2100] = 2034, + [2101] = 2098, + [2102] = 1994, [2103] = 2103, - [2104] = 2067, - [2105] = 1921, - [2106] = 2103, - [2107] = 2042, - [2108] = 1969, - [2109] = 2057, - [2110] = 1952, - [2111] = 2069, - [2112] = 1912, + [2104] = 1999, + [2105] = 2010, + [2106] = 2008, + [2107] = 2107, + [2108] = 2108, + [2109] = 2109, + [2110] = 2110, + [2111] = 2111, + [2112] = 2112, [2113] = 2113, - [2114] = 2079, + [2114] = 2114, [2115] = 2115, [2116] = 2116, [2117] = 2117, - [2118] = 2118, + [2118] = 2107, [2119] = 2119, [2120] = 2120, [2121] = 2121, [2122] = 2122, [2123] = 2123, - [2124] = 2124, + [2124] = 2115, [2125] = 2125, - [2126] = 2126, + [2126] = 2112, [2127] = 2127, [2128] = 2128, [2129] = 2129, - [2130] = 2130, + [2130] = 2116, [2131] = 2131, - [2132] = 2132, + [2132] = 2128, [2133] = 2133, [2134] = 2134, - [2135] = 2125, - [2136] = 2136, + [2135] = 2129, + [2136] = 2134, [2137] = 2137, [2138] = 2138, [2139] = 2139, [2140] = 2140, [2141] = 2141, - [2142] = 2117, - [2143] = 2132, - [2144] = 2144, - [2145] = 2145, - [2146] = 2130, - [2147] = 2147, - [2148] = 2118, + [2142] = 2142, + [2143] = 2143, + [2144] = 2120, + [2145] = 2141, + [2146] = 2146, + [2147] = 2121, + [2148] = 2143, [2149] = 2149, - [2150] = 2128, + [2150] = 2150, [2151] = 2151, [2152] = 2152, - [2153] = 2119, + [2153] = 2153, [2154] = 2154, - [2155] = 2127, - [2156] = 2121, + [2155] = 2155, + [2156] = 2156, [2157] = 2157, [2158] = 2158, [2159] = 2159, [2160] = 2160, - [2161] = 2161, + [2161] = 2127, [2162] = 2162, [2163] = 2163, - [2164] = 2129, + [2164] = 2164, [2165] = 2165, [2166] = 2166, - [2167] = 2167, + [2167] = 2122, [2168] = 2168, [2169] = 2169, [2170] = 2170, [2171] = 2171, - [2172] = 2172, - [2173] = 2173, - [2174] = 2123, - [2175] = 2133, - [2176] = 2126, - [2177] = 2173, + [2172] = 2119, + [2173] = 2140, + [2174] = 2146, + [2175] = 2175, + [2176] = 2176, + [2177] = 2177, [2178] = 2178, [2179] = 2179, - [2180] = 2180, + [2180] = 2117, [2181] = 2181, [2182] = 2182, [2183] = 2183, - [2184] = 2178, - [2185] = 2162, - [2186] = 2161, - [2187] = 2136, + [2184] = 2184, + [2185] = 2114, + [2186] = 2186, + [2187] = 2187, [2188] = 2188, [2189] = 2189, [2190] = 2190, - [2191] = 2160, + [2191] = 2191, [2192] = 2192, - [2193] = 2170, + [2193] = 2193, [2194] = 2194, [2195] = 2195, - [2196] = 2196, + [2196] = 2113, [2197] = 2197, - [2198] = 2198, - [2199] = 2181, - [2200] = 2180, - [2201] = 2141, - [2202] = 2202, - [2203] = 2182, + [2198] = 2187, + [2199] = 2176, + [2200] = 2170, + [2201] = 2201, + [2202] = 2175, + [2203] = 2177, [2204] = 2179, - [2205] = 2205, - [2206] = 2206, + [2205] = 2181, + [2206] = 2182, [2207] = 2207, - [2208] = 2189, + [2208] = 2208, [2209] = 2209, - [2210] = 2210, - [2211] = 2192, - [2212] = 2131, - [2213] = 2213, + [2210] = 2184, + [2211] = 2211, + [2212] = 2111, + [2213] = 2188, [2214] = 2214, - [2215] = 2215, - [2216] = 2216, - [2217] = 2217, - [2218] = 2134, - [2219] = 2219, - [2220] = 2220, - [2221] = 2221, - [2222] = 2139, - [2223] = 2167, - [2224] = 2195, - [2225] = 2225, + [2215] = 2110, + [2216] = 2157, + [2217] = 2137, + [2218] = 2218, + [2219] = 2109, + [2220] = 2108, + [2221] = 2191, + [2222] = 2192, + [2223] = 2193, + [2224] = 2142, + [2225] = 2194, [2226] = 2226, [2227] = 2227, - [2228] = 2227, - [2229] = 2226, + [2228] = 2168, + [2229] = 2171, [2230] = 2230, - [2231] = 2202, + [2231] = 2231, [2232] = 2232, - [2233] = 2125, - [2234] = 2234, - [2235] = 2235, - [2236] = 2236, - [2237] = 2140, - [2238] = 2238, - [2239] = 2239, - [2240] = 2240, - [2241] = 2241, - [2242] = 2242, - [2243] = 2225, - [2244] = 2122, - [2245] = 2196, + [2233] = 2166, + [2234] = 2153, + [2235] = 2125, + [2236] = 2165, + [2237] = 2131, + [2238] = 2214, + [2239] = 2171, + [2240] = 2183, + [2241] = 2159, + [2242] = 2163, + [2243] = 2190, + [2244] = 2244, + [2245] = 2245, [2246] = 2197, [2247] = 2247, [2248] = 2248, - [2249] = 2216, - [2250] = 2250, - [2251] = 2145, - [2252] = 2154, + [2249] = 2211, + [2250] = 2186, + [2251] = 2218, + [2252] = 1595, [2253] = 2253, - [2254] = 2254, - [2255] = 2239, - [2256] = 2115, - [2257] = 2236, - [2258] = 2209, - [2259] = 2259, - [2260] = 2210, - [2261] = 2261, - [2262] = 2240, - [2263] = 2198, + [2254] = 2123, + [2255] = 2255, + [2256] = 2256, + [2257] = 2227, + [2258] = 2245, + [2259] = 2253, + [2260] = 2260, + [2261] = 2244, + [2262] = 2262, + [2263] = 2263, [2264] = 2264, - [2265] = 2159, - [2266] = 883, - [2267] = 2267, - [2268] = 2235, - [2269] = 2183, - [2270] = 2253, - [2271] = 2178, - [2272] = 2259, - [2273] = 2226, - [2274] = 832, - [2275] = 831, - [2276] = 2225, - [2277] = 2214, - [2278] = 2147, - [2279] = 2217, - [2280] = 2280, - [2281] = 2215, - [2282] = 2141, - [2283] = 2283, + [2265] = 2265, + [2266] = 2160, + [2267] = 2256, + [2268] = 2162, + [2269] = 2218, + [2270] = 2270, + [2271] = 2271, + [2272] = 2211, + [2273] = 2133, + [2274] = 2274, + [2275] = 2183, + [2276] = 2226, + [2277] = 2197, + [2278] = 2137, + [2279] = 2230, + [2280] = 2231, + [2281] = 2281, + [2282] = 865, + [2283] = 2232, [2284] = 2284, - [2285] = 2144, - [2286] = 2234, - [2287] = 1113, - [2288] = 2206, - [2289] = 2120, - [2290] = 2188, - [2291] = 2221, - [2292] = 2220, - [2293] = 2293, - [2294] = 2267, + [2285] = 2133, + [2286] = 2286, + [2287] = 2287, + [2288] = 2288, + [2289] = 941, + [2290] = 2290, + [2291] = 946, + [2292] = 2159, + [2293] = 2149, + [2294] = 2158, [2295] = 2295, - [2296] = 2159, - [2297] = 2163, - [2298] = 2129, - [2299] = 1589, - [2300] = 2217, - [2301] = 562, - [2302] = 2215, - [2303] = 2303, - [2304] = 2140, - [2305] = 2172, - [2306] = 2166, - [2307] = 2168, - [2308] = 2308, - [2309] = 2169, - [2310] = 2310, - [2311] = 2213, - [2312] = 2230, - [2313] = 2219, - [2314] = 2250, - [2315] = 2152, - [2316] = 2171, - [2317] = 2280, + [2296] = 2296, + [2297] = 2297, + [2298] = 2150, + [2299] = 2256, + [2300] = 2134, + [2301] = 2301, + [2302] = 2178, + [2303] = 2271, + [2304] = 2304, + [2305] = 1005, + [2306] = 2255, + [2307] = 2189, + [2308] = 2151, + [2309] = 2154, + [2310] = 2156, + [2311] = 2169, + [2312] = 2301, + [2313] = 585, + [2314] = 2314, + [2315] = 2315, + [2316] = 2316, + [2317] = 2317, [2318] = 2318, [2319] = 2319, [2320] = 2320, @@ -5874,41 +5880,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2326] = 2326, [2327] = 2327, [2328] = 2328, - [2329] = 2329, + [2329] = 2324, [2330] = 2330, [2331] = 2331, - [2332] = 565, - [2333] = 2322, - [2334] = 2334, + [2332] = 2332, + [2333] = 2333, + [2334] = 2317, [2335] = 2335, - [2336] = 2336, - [2337] = 2337, - [2338] = 2321, - [2339] = 2339, - [2340] = 2323, - [2341] = 2324, - [2342] = 2342, - [2343] = 2326, - [2344] = 2324, + [2336] = 2319, + [2337] = 2320, + [2338] = 2338, + [2339] = 2322, + [2340] = 2340, + [2341] = 2341, + [2342] = 2322, + [2343] = 2343, + [2344] = 2320, [2345] = 2345, - [2346] = 2346, - [2347] = 2347, - [2348] = 2348, - [2349] = 2349, - [2350] = 2322, - [2351] = 2351, - [2352] = 2321, - [2353] = 2353, - [2354] = 2323, - [2355] = 2324, + [2346] = 2324, + [2347] = 2319, + [2348] = 2317, + [2349] = 2317, + [2350] = 2319, + [2351] = 2320, + [2352] = 2352, + [2353] = 2324, + [2354] = 2354, + [2355] = 2355, [2356] = 2356, [2357] = 2357, [2358] = 2358, [2359] = 2359, - [2360] = 2326, - [2361] = 2323, + [2360] = 2360, + [2361] = 2361, [2362] = 2362, - [2363] = 2363, + [2363] = 2322, [2364] = 2364, [2365] = 2365, [2366] = 2366, @@ -5919,201 +5925,197 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2371] = 2371, [2372] = 2372, [2373] = 2373, - [2374] = 2326, + [2374] = 2374, [2375] = 2375, - [2376] = 2324, - [2377] = 2323, + [2376] = 2376, + [2377] = 2377, [2378] = 2378, - [2379] = 2321, + [2379] = 2379, [2380] = 2380, [2381] = 2381, - [2382] = 2369, - [2383] = 2362, + [2382] = 2382, + [2383] = 2383, [2384] = 2384, - [2385] = 2385, - [2386] = 2321, + [2385] = 2338, + [2386] = 2386, [2387] = 2387, [2388] = 2388, - [2389] = 2336, - [2390] = 2335, - [2391] = 2322, + [2389] = 2389, + [2390] = 2390, + [2391] = 2391, [2392] = 2392, - [2393] = 2346, + [2393] = 2393, [2394] = 2394, [2395] = 2395, - [2396] = 2322, + [2396] = 2396, [2397] = 2397, - [2398] = 2375, + [2398] = 2398, [2399] = 2399, [2400] = 2400, - [2401] = 2401, + [2401] = 2332, [2402] = 2402, [2403] = 2403, [2404] = 2404, [2405] = 2405, [2406] = 2406, [2407] = 2407, - [2408] = 2339, - [2409] = 2409, + [2408] = 2408, + [2409] = 2405, [2410] = 2410, - [2411] = 2411, + [2411] = 2404, [2412] = 2412, - [2413] = 2334, - [2414] = 2414, + [2413] = 2394, + [2414] = 2320, [2415] = 2415, - [2416] = 2416, - [2417] = 2331, + [2416] = 2319, + [2417] = 2417, [2418] = 2418, - [2419] = 2419, + [2419] = 2317, [2420] = 2420, [2421] = 2421, [2422] = 2422, - [2423] = 2403, - [2424] = 2424, - [2425] = 2425, + [2423] = 2423, + [2424] = 2331, + [2425] = 2328, [2426] = 2426, - [2427] = 2427, - [2428] = 2380, - [2429] = 2384, + [2427] = 2333, + [2428] = 2399, + [2429] = 2314, [2430] = 2430, - [2431] = 2402, + [2431] = 2431, [2432] = 2432, [2433] = 2433, [2434] = 2434, [2435] = 2435, - [2436] = 2414, - [2437] = 563, - [2438] = 2415, - [2439] = 2351, + [2436] = 2436, + [2437] = 2422, + [2438] = 2438, + [2439] = 2398, [2440] = 2440, - [2441] = 2441, + [2441] = 2397, [2442] = 2442, - [2443] = 2443, - [2444] = 2401, - [2445] = 2425, + [2443] = 2396, + [2444] = 2433, + [2445] = 2445, [2446] = 2446, - [2447] = 2322, + [2447] = 2447, [2448] = 2448, - [2449] = 2449, - [2450] = 2450, - [2451] = 2451, - [2452] = 2452, + [2449] = 2377, + [2450] = 2412, + [2451] = 2403, + [2452] = 2395, [2453] = 2453, - [2454] = 2454, - [2455] = 2455, + [2454] = 2338, + [2455] = 2383, [2456] = 2456, [2457] = 2457, - [2458] = 2400, - [2459] = 2336, - [2460] = 2337, - [2461] = 2337, - [2462] = 2462, - [2463] = 2373, + [2458] = 2458, + [2459] = 564, + [2460] = 2460, + [2461] = 2442, + [2462] = 2440, + [2463] = 2393, [2464] = 2464, - [2465] = 2345, - [2466] = 2466, - [2467] = 2421, + [2465] = 2465, + [2466] = 2343, + [2467] = 2316, [2468] = 2468, [2469] = 2469, - [2470] = 2470, - [2471] = 2371, - [2472] = 2385, - [2473] = 2327, + [2470] = 2321, + [2471] = 2471, + [2472] = 2386, + [2473] = 2323, [2474] = 2474, - [2475] = 2475, - [2476] = 2318, - [2477] = 2422, - [2478] = 2397, - [2479] = 2479, - [2480] = 2442, + [2475] = 2330, + [2476] = 2476, + [2477] = 2322, + [2478] = 2352, + [2479] = 2318, + [2480] = 2391, [2481] = 2481, - [2482] = 2482, - [2483] = 2410, - [2484] = 2409, - [2485] = 2485, - [2486] = 2453, - [2487] = 2487, - [2488] = 2366, - [2489] = 2365, - [2490] = 2364, - [2491] = 2491, - [2492] = 2448, - [2493] = 2450, - [2494] = 2481, - [2495] = 2369, - [2496] = 2362, - [2497] = 2321, - [2498] = 2482, + [2482] = 2333, + [2483] = 2483, + [2484] = 2320, + [2485] = 2415, + [2486] = 2319, + [2487] = 2379, + [2488] = 2488, + [2489] = 2378, + [2490] = 2317, + [2491] = 2378, + [2492] = 2379, + [2493] = 2423, + [2494] = 2418, + [2495] = 2434, + [2496] = 2324, + [2497] = 2497, + [2498] = 2435, [2499] = 2499, - [2500] = 2464, - [2501] = 2363, - [2502] = 2502, - [2503] = 2503, - [2504] = 2323, - [2505] = 2359, - [2506] = 2506, - [2507] = 2507, - [2508] = 2369, - [2509] = 2362, - [2510] = 2510, - [2511] = 2511, - [2512] = 2369, - [2513] = 2362, - [2514] = 2324, - [2515] = 2369, - [2516] = 2362, - [2517] = 2339, - [2518] = 2404, - [2519] = 2325, - [2520] = 2348, - [2521] = 2452, - [2522] = 2443, - [2523] = 2420, - [2524] = 2326, - [2525] = 2525, - [2526] = 2526, - [2527] = 2342, - [2528] = 2426, - [2529] = 2455, - [2530] = 2381, + [2500] = 2500, + [2501] = 2501, + [2502] = 2445, + [2503] = 2370, + [2504] = 2378, + [2505] = 2379, + [2506] = 2458, + [2507] = 2417, + [2508] = 2378, + [2509] = 2379, + [2510] = 2468, + [2511] = 2378, + [2512] = 2379, + [2513] = 2471, + [2514] = 568, + [2515] = 2352, + [2516] = 2408, + [2517] = 2517, + [2518] = 2501, + [2519] = 2497, + [2520] = 2324, + [2521] = 2517, + [2522] = 2522, + [2523] = 2407, + [2524] = 2464, + [2525] = 2453, + [2526] = 2499, + [2527] = 2369, + [2528] = 2528, + [2529] = 2529, + [2530] = 2367, [2531] = 2531, - [2532] = 2395, - [2533] = 2533, - [2534] = 2407, - [2535] = 2416, - [2536] = 2329, - [2537] = 2479, - [2538] = 2399, - [2539] = 2487, - [2540] = 2378, - [2541] = 2412, - [2542] = 2432, - [2543] = 2543, + [2532] = 2388, + [2533] = 2531, + [2534] = 2534, + [2535] = 2362, + [2536] = 2341, + [2537] = 2332, + [2538] = 2392, + [2539] = 2400, + [2540] = 2361, + [2541] = 2360, + [2542] = 2389, + [2543] = 2456, [2544] = 2544, - [2545] = 2545, - [2546] = 2545, - [2547] = 2451, + [2545] = 2447, + [2546] = 2517, + [2547] = 2501, [2548] = 2548, - [2549] = 2454, - [2550] = 2452, - [2551] = 2443, - [2552] = 2491, - [2553] = 2342, - [2554] = 2358, - [2555] = 2526, - [2556] = 2468, - [2557] = 2525, - [2558] = 2424, - [2559] = 2543, + [2549] = 2384, + [2550] = 2359, + [2551] = 2382, + [2552] = 2528, + [2553] = 2553, + [2554] = 2465, + [2555] = 2380, + [2556] = 2325, + [2557] = 2438, + [2558] = 2436, + [2559] = 2390, [2560] = 2560, - [2561] = 2430, - [2562] = 2411, - [2563] = 2328, - [2564] = 2435, - [2565] = 2548, - [2566] = 2457, - [2567] = 2567, - [2568] = 2433, + [2561] = 2373, + [2562] = 2446, + [2563] = 2354, + [2564] = 2534, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -14685,22 +14687,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [45] = {.lex_state = 5, .external_lex_state = 2}, [46] = {.lex_state = 5, .external_lex_state = 2}, [47] = {.lex_state = 5, .external_lex_state = 2}, - [48] = {.lex_state = 5, .external_lex_state = 2}, - [49] = {.lex_state = 57, .external_lex_state = 2}, + [48] = {.lex_state = 57, .external_lex_state = 2}, + [49] = {.lex_state = 5, .external_lex_state = 2}, [50] = {.lex_state = 5, .external_lex_state = 2}, [51] = {.lex_state = 5, .external_lex_state = 2}, - [52] = {.lex_state = 57, .external_lex_state = 2}, + [52] = {.lex_state = 5, .external_lex_state = 2}, [53] = {.lex_state = 57, .external_lex_state = 2}, [54] = {.lex_state = 57, .external_lex_state = 2}, [55] = {.lex_state = 5, .external_lex_state = 2}, - [56] = {.lex_state = 5, .external_lex_state = 2}, + [56] = {.lex_state = 57, .external_lex_state = 2}, [57] = {.lex_state = 5, .external_lex_state = 2}, [58] = {.lex_state = 5, .external_lex_state = 2}, - [59] = {.lex_state = 57, .external_lex_state = 2}, + [59] = {.lex_state = 5, .external_lex_state = 2}, [60] = {.lex_state = 57, .external_lex_state = 2}, - [61] = {.lex_state = 5, .external_lex_state = 2}, - [62] = {.lex_state = 5, .external_lex_state = 2}, - [63] = {.lex_state = 5, .external_lex_state = 2}, + [61] = {.lex_state = 57, .external_lex_state = 2}, + [62] = {.lex_state = 57, .external_lex_state = 2}, + [63] = {.lex_state = 57, .external_lex_state = 2}, [64] = {.lex_state = 57, .external_lex_state = 2}, [65] = {.lex_state = 57, .external_lex_state = 2}, [66] = {.lex_state = 57, .external_lex_state = 2}, @@ -14709,31 +14711,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [69] = {.lex_state = 57, .external_lex_state = 2}, [70] = {.lex_state = 57, .external_lex_state = 2}, [71] = {.lex_state = 5, .external_lex_state = 2}, - [72] = {.lex_state = 5, .external_lex_state = 2}, + [72] = {.lex_state = 57, .external_lex_state = 2}, [73] = {.lex_state = 57, .external_lex_state = 2}, [74] = {.lex_state = 57, .external_lex_state = 2}, [75] = {.lex_state = 57, .external_lex_state = 2}, [76] = {.lex_state = 57, .external_lex_state = 2}, [77] = {.lex_state = 57, .external_lex_state = 2}, - [78] = {.lex_state = 57, .external_lex_state = 2}, - [79] = {.lex_state = 57, .external_lex_state = 2}, - [80] = {.lex_state = 57, .external_lex_state = 2}, + [78] = {.lex_state = 5, .external_lex_state = 2}, + [79] = {.lex_state = 5, .external_lex_state = 2}, + [80] = {.lex_state = 5, .external_lex_state = 2}, [81] = {.lex_state = 57, .external_lex_state = 2}, [82] = {.lex_state = 5, .external_lex_state = 2}, [83] = {.lex_state = 57, .external_lex_state = 2}, - [84] = {.lex_state = 5, .external_lex_state = 2}, + [84] = {.lex_state = 57, .external_lex_state = 2}, [85] = {.lex_state = 57, .external_lex_state = 2}, [86] = {.lex_state = 5, .external_lex_state = 2}, - [87] = {.lex_state = 57, .external_lex_state = 2}, + [87] = {.lex_state = 5, .external_lex_state = 2}, [88] = {.lex_state = 57, .external_lex_state = 2}, [89] = {.lex_state = 5, .external_lex_state = 2}, [90] = {.lex_state = 5, .external_lex_state = 2}, [91] = {.lex_state = 5, .external_lex_state = 2}, - [92] = {.lex_state = 57, .external_lex_state = 2}, + [92] = {.lex_state = 5, .external_lex_state = 2}, [93] = {.lex_state = 5, .external_lex_state = 2}, [94] = {.lex_state = 5, .external_lex_state = 2}, [95] = {.lex_state = 5, .external_lex_state = 2}, - [96] = {.lex_state = 5, .external_lex_state = 2}, + [96] = {.lex_state = 57, .external_lex_state = 2}, [97] = {.lex_state = 5, .external_lex_state = 2}, [98] = {.lex_state = 5, .external_lex_state = 2}, [99] = {.lex_state = 5, .external_lex_state = 2}, @@ -14832,10 +14834,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [192] = {.lex_state = 6, .external_lex_state = 2}, [193] = {.lex_state = 6, .external_lex_state = 2}, [194] = {.lex_state = 5, .external_lex_state = 2}, - [195] = {.lex_state = 1, .external_lex_state = 2}, + [195] = {.lex_state = 5, .external_lex_state = 2}, [196] = {.lex_state = 5, .external_lex_state = 2}, [197] = {.lex_state = 5, .external_lex_state = 2}, - [198] = {.lex_state = 5, .external_lex_state = 2}, + [198] = {.lex_state = 1, .external_lex_state = 2}, [199] = {.lex_state = 5, .external_lex_state = 2}, [200] = {.lex_state = 5, .external_lex_state = 2}, [201] = {.lex_state = 5, .external_lex_state = 2}, @@ -14854,25 +14856,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [214] = {.lex_state = 1, .external_lex_state = 2}, [215] = {.lex_state = 1, .external_lex_state = 2}, [216] = {.lex_state = 1, .external_lex_state = 2}, - [217] = {.lex_state = 5, .external_lex_state = 2}, + [217] = {.lex_state = 1, .external_lex_state = 2}, [218] = {.lex_state = 1, .external_lex_state = 2}, [219] = {.lex_state = 1, .external_lex_state = 2}, [220] = {.lex_state = 1, .external_lex_state = 2}, [221] = {.lex_state = 1, .external_lex_state = 2}, [222] = {.lex_state = 1, .external_lex_state = 2}, - [223] = {.lex_state = 5, .external_lex_state = 2}, + [223] = {.lex_state = 1, .external_lex_state = 2}, [224] = {.lex_state = 1, .external_lex_state = 2}, - [225] = {.lex_state = 5, .external_lex_state = 2}, + [225] = {.lex_state = 1, .external_lex_state = 2}, [226] = {.lex_state = 1, .external_lex_state = 2}, [227] = {.lex_state = 1, .external_lex_state = 2}, - [228] = {.lex_state = 5, .external_lex_state = 2}, + [228] = {.lex_state = 1, .external_lex_state = 2}, [229] = {.lex_state = 1, .external_lex_state = 2}, - [230] = {.lex_state = 1, .external_lex_state = 2}, - [231] = {.lex_state = 1, .external_lex_state = 2}, - [232] = {.lex_state = 1, .external_lex_state = 2}, + [230] = {.lex_state = 5, .external_lex_state = 2}, + [231] = {.lex_state = 5, .external_lex_state = 2}, + [232] = {.lex_state = 5, .external_lex_state = 2}, [233] = {.lex_state = 1, .external_lex_state = 2}, [234] = {.lex_state = 1, .external_lex_state = 2}, - [235] = {.lex_state = 1, .external_lex_state = 2}, + [235] = {.lex_state = 5, .external_lex_state = 2}, [236] = {.lex_state = 5, .external_lex_state = 2}, [237] = {.lex_state = 5, .external_lex_state = 2}, [238] = {.lex_state = 5, .external_lex_state = 2}, @@ -14934,7 +14936,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [294] = {.lex_state = 58, .external_lex_state = 2}, [295] = {.lex_state = 58, .external_lex_state = 2}, [296] = {.lex_state = 58, .external_lex_state = 2}, - [297] = {.lex_state = 5, .external_lex_state = 2}, + [297] = {.lex_state = 58, .external_lex_state = 2}, [298] = {.lex_state = 58, .external_lex_state = 2}, [299] = {.lex_state = 58, .external_lex_state = 2}, [300] = {.lex_state = 58, .external_lex_state = 2}, @@ -15028,7 +15030,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [388] = {.lex_state = 58, .external_lex_state = 2}, [389] = {.lex_state = 58, .external_lex_state = 2}, [390] = {.lex_state = 58, .external_lex_state = 2}, - [391] = {.lex_state = 58, .external_lex_state = 2}, + [391] = {.lex_state = 5, .external_lex_state = 2}, [392] = {.lex_state = 58, .external_lex_state = 2}, [393] = {.lex_state = 58, .external_lex_state = 2}, [394] = {.lex_state = 58, .external_lex_state = 2}, @@ -15053,7 +15055,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [413] = {.lex_state = 58, .external_lex_state = 2}, [414] = {.lex_state = 58, .external_lex_state = 2}, [415] = {.lex_state = 58, .external_lex_state = 2}, - [416] = {.lex_state = 5, .external_lex_state = 2}, + [416] = {.lex_state = 58, .external_lex_state = 2}, [417] = {.lex_state = 58, .external_lex_state = 2}, [418] = {.lex_state = 58, .external_lex_state = 2}, [419] = {.lex_state = 58, .external_lex_state = 2}, @@ -15106,7 +15108,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [466] = {.lex_state = 58, .external_lex_state = 2}, [467] = {.lex_state = 58, .external_lex_state = 2}, [468] = {.lex_state = 58, .external_lex_state = 2}, - [469] = {.lex_state = 58, .external_lex_state = 2}, + [469] = {.lex_state = 5, .external_lex_state = 2}, [470] = {.lex_state = 58, .external_lex_state = 2}, [471] = {.lex_state = 58, .external_lex_state = 2}, [472] = {.lex_state = 58, .external_lex_state = 2}, @@ -15120,16 +15122,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [480] = {.lex_state = 58, .external_lex_state = 2}, [481] = {.lex_state = 12, .external_lex_state = 2}, [482] = {.lex_state = 12, .external_lex_state = 2}, - [483] = {.lex_state = 5, .external_lex_state = 2}, - [484] = {.lex_state = 12, .external_lex_state = 2}, + [483] = {.lex_state = 13, .external_lex_state = 2}, + [484] = {.lex_state = 5, .external_lex_state = 2}, [485] = {.lex_state = 12, .external_lex_state = 2}, - [486] = {.lex_state = 12, .external_lex_state = 2}, - [487] = {.lex_state = 5, .external_lex_state = 2}, - [488] = {.lex_state = 5, .external_lex_state = 2}, + [486] = {.lex_state = 5, .external_lex_state = 2}, + [487] = {.lex_state = 12, .external_lex_state = 2}, + [488] = {.lex_state = 12, .external_lex_state = 2}, [489] = {.lex_state = 12, .external_lex_state = 2}, - [490] = {.lex_state = 12, .external_lex_state = 2}, + [490] = {.lex_state = 5, .external_lex_state = 2}, [491] = {.lex_state = 12, .external_lex_state = 2}, - [492] = {.lex_state = 13, .external_lex_state = 2}, + [492] = {.lex_state = 12, .external_lex_state = 2}, [493] = {.lex_state = 12, .external_lex_state = 2}, [494] = {.lex_state = 12, .external_lex_state = 2}, [495] = {.lex_state = 12, .external_lex_state = 2}, @@ -15138,31 +15140,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [498] = {.lex_state = 12, .external_lex_state = 2}, [499] = {.lex_state = 12, .external_lex_state = 2}, [500] = {.lex_state = 5, .external_lex_state = 2}, - [501] = {.lex_state = 12, .external_lex_state = 2}, + [501] = {.lex_state = 13, .external_lex_state = 2}, [502] = {.lex_state = 13, .external_lex_state = 2}, - [503] = {.lex_state = 13, .external_lex_state = 2}, - [504] = {.lex_state = 12, .external_lex_state = 2}, - [505] = {.lex_state = 12, .external_lex_state = 2}, - [506] = {.lex_state = 13, .external_lex_state = 2}, - [507] = {.lex_state = 12, .external_lex_state = 2}, + [503] = {.lex_state = 12, .external_lex_state = 2}, + [504] = {.lex_state = 13, .external_lex_state = 2}, + [505] = {.lex_state = 13, .external_lex_state = 2}, + [506] = {.lex_state = 12, .external_lex_state = 2}, + [507] = {.lex_state = 13, .external_lex_state = 2}, [508] = {.lex_state = 13, .external_lex_state = 2}, - [509] = {.lex_state = 12, .external_lex_state = 2}, + [509] = {.lex_state = 13, .external_lex_state = 2}, [510] = {.lex_state = 13, .external_lex_state = 2}, - [511] = {.lex_state = 12, .external_lex_state = 2}, - [512] = {.lex_state = 12, .external_lex_state = 2}, + [511] = {.lex_state = 13, .external_lex_state = 2}, + [512] = {.lex_state = 13, .external_lex_state = 2}, [513] = {.lex_state = 13, .external_lex_state = 2}, [514] = {.lex_state = 12, .external_lex_state = 2}, [515] = {.lex_state = 12, .external_lex_state = 2}, [516] = {.lex_state = 12, .external_lex_state = 2}, - [517] = {.lex_state = 12, .external_lex_state = 2}, - [518] = {.lex_state = 13, .external_lex_state = 2}, + [517] = {.lex_state = 13, .external_lex_state = 2}, + [518] = {.lex_state = 12, .external_lex_state = 2}, [519] = {.lex_state = 13, .external_lex_state = 2}, [520] = {.lex_state = 13, .external_lex_state = 2}, [521] = {.lex_state = 13, .external_lex_state = 2}, [522] = {.lex_state = 13, .external_lex_state = 2}, [523] = {.lex_state = 13, .external_lex_state = 2}, [524] = {.lex_state = 13, .external_lex_state = 2}, - [525] = {.lex_state = 13, .external_lex_state = 2}, + [525] = {.lex_state = 12, .external_lex_state = 2}, [526] = {.lex_state = 13, .external_lex_state = 2}, [527] = {.lex_state = 13, .external_lex_state = 2}, [528] = {.lex_state = 13, .external_lex_state = 2}, @@ -15170,20 +15172,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [530] = {.lex_state = 13, .external_lex_state = 2}, [531] = {.lex_state = 13, .external_lex_state = 2}, [532] = {.lex_state = 13, .external_lex_state = 2}, - [533] = {.lex_state = 13, .external_lex_state = 2}, + [533] = {.lex_state = 12, .external_lex_state = 2}, [534] = {.lex_state = 13, .external_lex_state = 2}, - [535] = {.lex_state = 13, .external_lex_state = 2}, + [535] = {.lex_state = 12, .external_lex_state = 2}, [536] = {.lex_state = 13, .external_lex_state = 2}, - [537] = {.lex_state = 13, .external_lex_state = 2}, + [537] = {.lex_state = 12, .external_lex_state = 2}, [538] = {.lex_state = 12, .external_lex_state = 2}, [539] = {.lex_state = 12, .external_lex_state = 2}, [540] = {.lex_state = 13, .external_lex_state = 2}, - [541] = {.lex_state = 13, .external_lex_state = 2}, + [541] = {.lex_state = 12, .external_lex_state = 2}, [542] = {.lex_state = 13, .external_lex_state = 2}, [543] = {.lex_state = 13, .external_lex_state = 2}, [544] = {.lex_state = 12, .external_lex_state = 2}, - [545] = {.lex_state = 5, .external_lex_state = 2}, - [546] = {.lex_state = 7, .external_lex_state = 3}, + [545] = {.lex_state = 7, .external_lex_state = 3}, + [546] = {.lex_state = 5, .external_lex_state = 2}, [547] = {.lex_state = 5, .external_lex_state = 2}, [548] = {.lex_state = 7, .external_lex_state = 3}, [549] = {.lex_state = 7, .external_lex_state = 3}, @@ -15191,77 +15193,77 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [551] = {.lex_state = 7, .external_lex_state = 3}, [552] = {.lex_state = 7, .external_lex_state = 3}, [553] = {.lex_state = 7, .external_lex_state = 3}, - [554] = {.lex_state = 5, .external_lex_state = 2}, - [555] = {.lex_state = 5, .external_lex_state = 2}, - [556] = {.lex_state = 7, .external_lex_state = 3}, - [557] = {.lex_state = 11, .external_lex_state = 2}, - [558] = {.lex_state = 7, .external_lex_state = 3}, - [559] = {.lex_state = 7, .external_lex_state = 3}, + [554] = {.lex_state = 7, .external_lex_state = 3}, + [555] = {.lex_state = 7, .external_lex_state = 3}, + [556] = {.lex_state = 5, .external_lex_state = 2}, + [557] = {.lex_state = 7, .external_lex_state = 3}, + [558] = {.lex_state = 11, .external_lex_state = 2}, + [559] = {.lex_state = 5, .external_lex_state = 2}, [560] = {.lex_state = 5, .external_lex_state = 2}, [561] = {.lex_state = 5, .external_lex_state = 2}, - [562] = {.lex_state = 12, .external_lex_state = 2}, + [562] = {.lex_state = 5, .external_lex_state = 2}, [563] = {.lex_state = 12, .external_lex_state = 2}, [564] = {.lex_state = 12, .external_lex_state = 2}, [565] = {.lex_state = 12, .external_lex_state = 2}, - [566] = {.lex_state = 12, .external_lex_state = 2}, - [567] = {.lex_state = 5, .external_lex_state = 2}, + [566] = {.lex_state = 5, .external_lex_state = 2}, + [567] = {.lex_state = 12, .external_lex_state = 2}, [568] = {.lex_state = 12, .external_lex_state = 2}, - [569] = {.lex_state = 5, .external_lex_state = 2}, - [570] = {.lex_state = 12, .external_lex_state = 2}, - [571] = {.lex_state = 7, .external_lex_state = 3}, - [572] = {.lex_state = 5, .external_lex_state = 2}, - [573] = {.lex_state = 12, .external_lex_state = 2}, + [569] = {.lex_state = 7, .external_lex_state = 3}, + [570] = {.lex_state = 5, .external_lex_state = 2}, + [571] = {.lex_state = 12, .external_lex_state = 2}, + [572] = {.lex_state = 12, .external_lex_state = 2}, + [573] = {.lex_state = 5, .external_lex_state = 2}, [574] = {.lex_state = 12, .external_lex_state = 2}, - [575] = {.lex_state = 5, .external_lex_state = 2}, - [576] = {.lex_state = 12, .external_lex_state = 2}, + [575] = {.lex_state = 12, .external_lex_state = 2}, + [576] = {.lex_state = 5, .external_lex_state = 2}, [577] = {.lex_state = 12, .external_lex_state = 2}, [578] = {.lex_state = 12, .external_lex_state = 2}, [579] = {.lex_state = 12, .external_lex_state = 2}, [580] = {.lex_state = 5, .external_lex_state = 2}, - [581] = {.lex_state = 12, .external_lex_state = 2}, - [582] = {.lex_state = 5, .external_lex_state = 2}, - [583] = {.lex_state = 5, .external_lex_state = 2}, + [581] = {.lex_state = 5, .external_lex_state = 2}, + [582] = {.lex_state = 12, .external_lex_state = 2}, + [583] = {.lex_state = 12, .external_lex_state = 2}, [584] = {.lex_state = 12, .external_lex_state = 2}, [585] = {.lex_state = 12, .external_lex_state = 2}, [586] = {.lex_state = 5, .external_lex_state = 2}, [587] = {.lex_state = 5, .external_lex_state = 2}, [588] = {.lex_state = 5, .external_lex_state = 2}, - [589] = {.lex_state = 5, .external_lex_state = 2}, + [589] = {.lex_state = 13, .external_lex_state = 2}, [590] = {.lex_state = 5, .external_lex_state = 2}, [591] = {.lex_state = 5, .external_lex_state = 2}, - [592] = {.lex_state = 5, .external_lex_state = 2}, + [592] = {.lex_state = 13, .external_lex_state = 2}, [593] = {.lex_state = 5, .external_lex_state = 2}, - [594] = {.lex_state = 5, .external_lex_state = 2}, + [594] = {.lex_state = 7, .external_lex_state = 3}, [595] = {.lex_state = 7, .external_lex_state = 3}, - [596] = {.lex_state = 5, .external_lex_state = 2}, + [596] = {.lex_state = 7, .external_lex_state = 3}, [597] = {.lex_state = 5, .external_lex_state = 2}, [598] = {.lex_state = 5, .external_lex_state = 2}, - [599] = {.lex_state = 13, .external_lex_state = 2}, + [599] = {.lex_state = 5, .external_lex_state = 2}, [600] = {.lex_state = 5, .external_lex_state = 2}, - [601] = {.lex_state = 7, .external_lex_state = 3}, - [602] = {.lex_state = 7, .external_lex_state = 3}, + [601] = {.lex_state = 13, .external_lex_state = 2}, + [602] = {.lex_state = 5, .external_lex_state = 2}, [603] = {.lex_state = 5, .external_lex_state = 2}, [604] = {.lex_state = 5, .external_lex_state = 2}, - [605] = {.lex_state = 5, .external_lex_state = 2}, - [606] = {.lex_state = 7, .external_lex_state = 3}, - [607] = {.lex_state = 13, .external_lex_state = 2}, - [608] = {.lex_state = 13, .external_lex_state = 2}, + [605] = {.lex_state = 13, .external_lex_state = 2}, + [606] = {.lex_state = 5, .external_lex_state = 2}, + [607] = {.lex_state = 5, .external_lex_state = 2}, + [608] = {.lex_state = 5, .external_lex_state = 2}, [609] = {.lex_state = 5, .external_lex_state = 2}, - [610] = {.lex_state = 5, .external_lex_state = 2}, + [610] = {.lex_state = 7, .external_lex_state = 3}, [611] = {.lex_state = 5, .external_lex_state = 2}, [612] = {.lex_state = 5, .external_lex_state = 2}, [613] = {.lex_state = 5, .external_lex_state = 2}, [614] = {.lex_state = 13, .external_lex_state = 2}, - [615] = {.lex_state = 5, .external_lex_state = 2}, + [615] = {.lex_state = 13, .external_lex_state = 2}, [616] = {.lex_state = 5, .external_lex_state = 2}, [617] = {.lex_state = 5, .external_lex_state = 2}, - [618] = {.lex_state = 13, .external_lex_state = 2}, - [619] = {.lex_state = 13, .external_lex_state = 2}, + [618] = {.lex_state = 5, .external_lex_state = 2}, + [619] = {.lex_state = 5, .external_lex_state = 2}, [620] = {.lex_state = 7, .external_lex_state = 3}, - [621] = {.lex_state = 7, .external_lex_state = 3}, + [621] = {.lex_state = 5, .external_lex_state = 2}, [622] = {.lex_state = 7, .external_lex_state = 3}, [623] = {.lex_state = 7, .external_lex_state = 3}, - [624] = {.lex_state = 5, .external_lex_state = 2}, + [624] = {.lex_state = 7, .external_lex_state = 3}, [625] = {.lex_state = 7, .external_lex_state = 3}, [626] = {.lex_state = 7, .external_lex_state = 3}, [627] = {.lex_state = 7, .external_lex_state = 3}, @@ -15337,7 +15339,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [697] = {.lex_state = 7, .external_lex_state = 3}, [698] = {.lex_state = 7, .external_lex_state = 3}, [699] = {.lex_state = 7, .external_lex_state = 3}, - [700] = {.lex_state = 5, .external_lex_state = 2}, + [700] = {.lex_state = 7, .external_lex_state = 3}, [701] = {.lex_state = 7, .external_lex_state = 3}, [702] = {.lex_state = 7, .external_lex_state = 3}, [703] = {.lex_state = 7, .external_lex_state = 3}, @@ -15369,7 +15371,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [729] = {.lex_state = 7, .external_lex_state = 3}, [730] = {.lex_state = 7, .external_lex_state = 3}, [731] = {.lex_state = 7, .external_lex_state = 3}, - [732] = {.lex_state = 7, .external_lex_state = 3}, + [732] = {.lex_state = 5, .external_lex_state = 2}, [733] = {.lex_state = 7, .external_lex_state = 3}, [734] = {.lex_state = 7, .external_lex_state = 3}, [735] = {.lex_state = 7, .external_lex_state = 3}, @@ -15395,23 +15397,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [755] = {.lex_state = 3, .external_lex_state = 3}, [756] = {.lex_state = 3, .external_lex_state = 3}, [757] = {.lex_state = 3, .external_lex_state = 3}, - [758] = {.lex_state = 3, .external_lex_state = 3}, + [758] = {.lex_state = 2, .external_lex_state = 3}, [759] = {.lex_state = 3, .external_lex_state = 3}, - [760] = {.lex_state = 2, .external_lex_state = 3}, + [760] = {.lex_state = 3, .external_lex_state = 3}, [761] = {.lex_state = 3, .external_lex_state = 3}, [762] = {.lex_state = 3, .external_lex_state = 3}, [763] = {.lex_state = 4, .external_lex_state = 3}, - [764] = {.lex_state = 4, .external_lex_state = 3}, + [764] = {.lex_state = 2, .external_lex_state = 3}, [765] = {.lex_state = 2, .external_lex_state = 3}, [766] = {.lex_state = 2, .external_lex_state = 3}, - [767] = {.lex_state = 2, .external_lex_state = 3}, - [768] = {.lex_state = 2, .external_lex_state = 3}, - [769] = {.lex_state = 4, .external_lex_state = 3}, + [767] = {.lex_state = 4, .external_lex_state = 3}, + [768] = {.lex_state = 4, .external_lex_state = 3}, + [769] = {.lex_state = 2, .external_lex_state = 3}, [770] = {.lex_state = 2, .external_lex_state = 3}, - [771] = {.lex_state = 4, .external_lex_state = 3}, - [772] = {.lex_state = 4, .external_lex_state = 3}, - [773] = {.lex_state = 2, .external_lex_state = 3}, - [774] = {.lex_state = 2, .external_lex_state = 3}, + [771] = {.lex_state = 2, .external_lex_state = 3}, + [772] = {.lex_state = 2, .external_lex_state = 3}, + [773] = {.lex_state = 4, .external_lex_state = 3}, + [774] = {.lex_state = 4, .external_lex_state = 3}, [775] = {.lex_state = 2, .external_lex_state = 3}, [776] = {.lex_state = 2, .external_lex_state = 3}, [777] = {.lex_state = 2, .external_lex_state = 3}, @@ -15419,14 +15421,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [779] = {.lex_state = 2, .external_lex_state = 3}, [780] = {.lex_state = 2, .external_lex_state = 3}, [781] = {.lex_state = 2, .external_lex_state = 3}, - [782] = {.lex_state = 10, .external_lex_state = 3}, + [782] = {.lex_state = 2, .external_lex_state = 3}, [783] = {.lex_state = 2, .external_lex_state = 3}, - [784] = {.lex_state = 2, .external_lex_state = 3}, + [784] = {.lex_state = 10, .external_lex_state = 3}, [785] = {.lex_state = 2, .external_lex_state = 3}, [786] = {.lex_state = 2, .external_lex_state = 3}, [787] = {.lex_state = 2, .external_lex_state = 3}, [788] = {.lex_state = 2, .external_lex_state = 3}, - [789] = {.lex_state = 2, .external_lex_state = 3}, + [789] = {.lex_state = 3, .external_lex_state = 3}, [790] = {.lex_state = 2, .external_lex_state = 3}, [791] = {.lex_state = 2, .external_lex_state = 3}, [792] = {.lex_state = 2, .external_lex_state = 3}, @@ -15440,46 +15442,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [800] = {.lex_state = 2, .external_lex_state = 3}, [801] = {.lex_state = 2, .external_lex_state = 3}, [802] = {.lex_state = 2, .external_lex_state = 3}, - [803] = {.lex_state = 3, .external_lex_state = 3}, + [803] = {.lex_state = 2, .external_lex_state = 3}, [804] = {.lex_state = 2, .external_lex_state = 3}, [805] = {.lex_state = 2, .external_lex_state = 3}, [806] = {.lex_state = 2, .external_lex_state = 3}, [807] = {.lex_state = 2, .external_lex_state = 3}, - [808] = {.lex_state = 2, .external_lex_state = 3}, + [808] = {.lex_state = 4, .external_lex_state = 3}, [809] = {.lex_state = 4, .external_lex_state = 3}, - [810] = {.lex_state = 2, .external_lex_state = 3}, - [811] = {.lex_state = 2, .external_lex_state = 3}, - [812] = {.lex_state = 2, .external_lex_state = 3}, - [813] = {.lex_state = 4, .external_lex_state = 3}, - [814] = {.lex_state = 2, .external_lex_state = 3}, - [815] = {.lex_state = 4, .external_lex_state = 3}, - [816] = {.lex_state = 4, .external_lex_state = 3}, - [817] = {.lex_state = 4, .external_lex_state = 3}, + [810] = {.lex_state = 4, .external_lex_state = 3}, + [811] = {.lex_state = 4, .external_lex_state = 3}, + [812] = {.lex_state = 4, .external_lex_state = 3}, + [813] = {.lex_state = 2, .external_lex_state = 3}, + [814] = {.lex_state = 4, .external_lex_state = 3}, + [815] = {.lex_state = 2, .external_lex_state = 3}, + [816] = {.lex_state = 2, .external_lex_state = 3}, + [817] = {.lex_state = 2, .external_lex_state = 3}, [818] = {.lex_state = 2, .external_lex_state = 3}, - [819] = {.lex_state = 2, .external_lex_state = 3}, + [819] = {.lex_state = 4, .external_lex_state = 3}, [820] = {.lex_state = 4, .external_lex_state = 3}, - [821] = {.lex_state = 2, .external_lex_state = 3}, + [821] = {.lex_state = 4, .external_lex_state = 3}, [822] = {.lex_state = 4, .external_lex_state = 3}, - [823] = {.lex_state = 2, .external_lex_state = 3}, + [823] = {.lex_state = 4, .external_lex_state = 3}, [824] = {.lex_state = 4, .external_lex_state = 3}, [825] = {.lex_state = 4, .external_lex_state = 3}, [826] = {.lex_state = 4, .external_lex_state = 3}, - [827] = {.lex_state = 2, .external_lex_state = 3}, - [828] = {.lex_state = 2, .external_lex_state = 3}, - [829] = {.lex_state = 2, .external_lex_state = 3}, - [830] = {.lex_state = 2, .external_lex_state = 3}, - [831] = {.lex_state = 2, .external_lex_state = 3}, - [832] = {.lex_state = 2, .external_lex_state = 3}, - [833] = {.lex_state = 2, .external_lex_state = 3}, - [834] = {.lex_state = 2, .external_lex_state = 3}, + [827] = {.lex_state = 4, .external_lex_state = 3}, + [828] = {.lex_state = 4, .external_lex_state = 3}, + [829] = {.lex_state = 4, .external_lex_state = 3}, + [830] = {.lex_state = 4, .external_lex_state = 3}, + [831] = {.lex_state = 4, .external_lex_state = 3}, + [832] = {.lex_state = 4, .external_lex_state = 3}, + [833] = {.lex_state = 4, .external_lex_state = 3}, + [834] = {.lex_state = 4, .external_lex_state = 3}, [835] = {.lex_state = 4, .external_lex_state = 3}, [836] = {.lex_state = 4, .external_lex_state = 3}, [837] = {.lex_state = 4, .external_lex_state = 3}, [838] = {.lex_state = 2, .external_lex_state = 3}, - [839] = {.lex_state = 2, .external_lex_state = 3}, + [839] = {.lex_state = 4, .external_lex_state = 3}, [840] = {.lex_state = 4, .external_lex_state = 3}, [841] = {.lex_state = 4, .external_lex_state = 3}, - [842] = {.lex_state = 4, .external_lex_state = 3}, + [842] = {.lex_state = 2, .external_lex_state = 3}, [843] = {.lex_state = 2, .external_lex_state = 3}, [844] = {.lex_state = 4, .external_lex_state = 3}, [845] = {.lex_state = 4, .external_lex_state = 3}, @@ -15489,41 +15491,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [849] = {.lex_state = 4, .external_lex_state = 3}, [850] = {.lex_state = 4, .external_lex_state = 3}, [851] = {.lex_state = 4, .external_lex_state = 3}, - [852] = {.lex_state = 4, .external_lex_state = 3}, + [852] = {.lex_state = 2, .external_lex_state = 3}, [853] = {.lex_state = 4, .external_lex_state = 3}, [854] = {.lex_state = 4, .external_lex_state = 3}, [855] = {.lex_state = 4, .external_lex_state = 3}, - [856] = {.lex_state = 4, .external_lex_state = 3}, + [856] = {.lex_state = 2, .external_lex_state = 3}, [857] = {.lex_state = 4, .external_lex_state = 3}, [858] = {.lex_state = 4, .external_lex_state = 3}, [859] = {.lex_state = 4, .external_lex_state = 3}, [860] = {.lex_state = 4, .external_lex_state = 3}, [861] = {.lex_state = 4, .external_lex_state = 3}, - [862] = {.lex_state = 4, .external_lex_state = 3}, + [862] = {.lex_state = 2, .external_lex_state = 3}, [863] = {.lex_state = 4, .external_lex_state = 3}, [864] = {.lex_state = 4, .external_lex_state = 3}, - [865] = {.lex_state = 4, .external_lex_state = 3}, - [866] = {.lex_state = 4, .external_lex_state = 3}, + [865] = {.lex_state = 2, .external_lex_state = 3}, + [866] = {.lex_state = 2, .external_lex_state = 3}, [867] = {.lex_state = 2, .external_lex_state = 3}, - [868] = {.lex_state = 4, .external_lex_state = 3}, - [869] = {.lex_state = 4, .external_lex_state = 3}, - [870] = {.lex_state = 4, .external_lex_state = 3}, + [868] = {.lex_state = 2, .external_lex_state = 3}, + [869] = {.lex_state = 2, .external_lex_state = 3}, + [870] = {.lex_state = 2, .external_lex_state = 3}, [871] = {.lex_state = 2, .external_lex_state = 3}, - [872] = {.lex_state = 4, .external_lex_state = 3}, + [872] = {.lex_state = 2, .external_lex_state = 3}, [873] = {.lex_state = 4, .external_lex_state = 3}, - [874] = {.lex_state = 2, .external_lex_state = 3}, + [874] = {.lex_state = 4, .external_lex_state = 3}, [875] = {.lex_state = 4, .external_lex_state = 3}, [876] = {.lex_state = 4, .external_lex_state = 3}, [877] = {.lex_state = 4, .external_lex_state = 3}, [878] = {.lex_state = 4, .external_lex_state = 3}, [879] = {.lex_state = 2, .external_lex_state = 3}, - [880] = {.lex_state = 2, .external_lex_state = 3}, - [881] = {.lex_state = 2, .external_lex_state = 3}, - [882] = {.lex_state = 2, .external_lex_state = 3}, + [880] = {.lex_state = 4, .external_lex_state = 3}, + [881] = {.lex_state = 4, .external_lex_state = 3}, + [882] = {.lex_state = 4, .external_lex_state = 3}, [883] = {.lex_state = 2, .external_lex_state = 3}, [884] = {.lex_state = 4, .external_lex_state = 3}, [885] = {.lex_state = 4, .external_lex_state = 3}, - [886] = {.lex_state = 2, .external_lex_state = 3}, + [886] = {.lex_state = 4, .external_lex_state = 3}, [887] = {.lex_state = 4, .external_lex_state = 3}, [888] = {.lex_state = 4, .external_lex_state = 3}, [889] = {.lex_state = 4, .external_lex_state = 3}, @@ -15532,106 +15534,106 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [892] = {.lex_state = 4, .external_lex_state = 3}, [893] = {.lex_state = 4, .external_lex_state = 3}, [894] = {.lex_state = 4, .external_lex_state = 3}, - [895] = {.lex_state = 2, .external_lex_state = 3}, + [895] = {.lex_state = 4, .external_lex_state = 3}, [896] = {.lex_state = 4, .external_lex_state = 3}, [897] = {.lex_state = 4, .external_lex_state = 3}, - [898] = {.lex_state = 4, .external_lex_state = 3}, + [898] = {.lex_state = 2, .external_lex_state = 3}, [899] = {.lex_state = 4, .external_lex_state = 3}, [900] = {.lex_state = 4, .external_lex_state = 3}, [901] = {.lex_state = 4, .external_lex_state = 3}, [902] = {.lex_state = 4, .external_lex_state = 3}, [903] = {.lex_state = 4, .external_lex_state = 3}, [904] = {.lex_state = 4, .external_lex_state = 3}, - [905] = {.lex_state = 4, .external_lex_state = 3}, + [905] = {.lex_state = 2, .external_lex_state = 3}, [906] = {.lex_state = 4, .external_lex_state = 3}, [907] = {.lex_state = 4, .external_lex_state = 3}, [908] = {.lex_state = 4, .external_lex_state = 3}, [909] = {.lex_state = 4, .external_lex_state = 3}, - [910] = {.lex_state = 2, .external_lex_state = 3}, + [910] = {.lex_state = 4, .external_lex_state = 3}, [911] = {.lex_state = 4, .external_lex_state = 3}, [912] = {.lex_state = 4, .external_lex_state = 3}, [913] = {.lex_state = 4, .external_lex_state = 3}, [914] = {.lex_state = 4, .external_lex_state = 3}, - [915] = {.lex_state = 4, .external_lex_state = 3}, + [915] = {.lex_state = 2, .external_lex_state = 3}, [916] = {.lex_state = 4, .external_lex_state = 3}, [917] = {.lex_state = 4, .external_lex_state = 3}, [918] = {.lex_state = 4, .external_lex_state = 3}, [919] = {.lex_state = 4, .external_lex_state = 3}, [920] = {.lex_state = 4, .external_lex_state = 3}, [921] = {.lex_state = 4, .external_lex_state = 3}, - [922] = {.lex_state = 4, .external_lex_state = 3}, + [922] = {.lex_state = 2, .external_lex_state = 3}, [923] = {.lex_state = 4, .external_lex_state = 3}, - [924] = {.lex_state = 4, .external_lex_state = 3}, + [924] = {.lex_state = 2, .external_lex_state = 3}, [925] = {.lex_state = 4, .external_lex_state = 3}, [926] = {.lex_state = 4, .external_lex_state = 3}, [927] = {.lex_state = 4, .external_lex_state = 3}, - [928] = {.lex_state = 2, .external_lex_state = 3}, + [928] = {.lex_state = 4, .external_lex_state = 3}, [929] = {.lex_state = 4, .external_lex_state = 3}, - [930] = {.lex_state = 2, .external_lex_state = 3}, - [931] = {.lex_state = 4, .external_lex_state = 3}, - [932] = {.lex_state = 4, .external_lex_state = 3}, + [930] = {.lex_state = 4, .external_lex_state = 3}, + [931] = {.lex_state = 2, .external_lex_state = 3}, + [932] = {.lex_state = 2, .external_lex_state = 3}, [933] = {.lex_state = 4, .external_lex_state = 3}, - [934] = {.lex_state = 2, .external_lex_state = 3}, - [935] = {.lex_state = 4, .external_lex_state = 3}, + [934] = {.lex_state = 4, .external_lex_state = 3}, + [935] = {.lex_state = 2, .external_lex_state = 3}, [936] = {.lex_state = 4, .external_lex_state = 3}, [937] = {.lex_state = 4, .external_lex_state = 3}, [938] = {.lex_state = 4, .external_lex_state = 3}, - [939] = {.lex_state = 2, .external_lex_state = 3}, - [940] = {.lex_state = 2, .external_lex_state = 3}, + [939] = {.lex_state = 4, .external_lex_state = 3}, + [940] = {.lex_state = 4, .external_lex_state = 3}, [941] = {.lex_state = 2, .external_lex_state = 3}, [942] = {.lex_state = 2, .external_lex_state = 3}, [943] = {.lex_state = 4, .external_lex_state = 3}, - [944] = {.lex_state = 2, .external_lex_state = 3}, - [945] = {.lex_state = 2, .external_lex_state = 3}, + [944] = {.lex_state = 4, .external_lex_state = 3}, + [945] = {.lex_state = 4, .external_lex_state = 3}, [946] = {.lex_state = 2, .external_lex_state = 3}, - [947] = {.lex_state = 2, .external_lex_state = 3}, - [948] = {.lex_state = 4, .external_lex_state = 3}, + [947] = {.lex_state = 4, .external_lex_state = 3}, + [948] = {.lex_state = 2, .external_lex_state = 3}, [949] = {.lex_state = 2, .external_lex_state = 3}, - [950] = {.lex_state = 4, .external_lex_state = 3}, - [951] = {.lex_state = 4, .external_lex_state = 3}, - [952] = {.lex_state = 4, .external_lex_state = 3}, - [953] = {.lex_state = 4, .external_lex_state = 3}, - [954] = {.lex_state = 2, .external_lex_state = 3}, - [955] = {.lex_state = 2, .external_lex_state = 3}, - [956] = {.lex_state = 2, .external_lex_state = 3}, - [957] = {.lex_state = 2, .external_lex_state = 3}, + [950] = {.lex_state = 2, .external_lex_state = 3}, + [951] = {.lex_state = 2, .external_lex_state = 3}, + [952] = {.lex_state = 2, .external_lex_state = 3}, + [953] = {.lex_state = 2, .external_lex_state = 3}, + [954] = {.lex_state = 4, .external_lex_state = 3}, + [955] = {.lex_state = 4, .external_lex_state = 3}, + [956] = {.lex_state = 4, .external_lex_state = 3}, + [957] = {.lex_state = 4, .external_lex_state = 3}, [958] = {.lex_state = 4, .external_lex_state = 3}, [959] = {.lex_state = 4, .external_lex_state = 3}, [960] = {.lex_state = 4, .external_lex_state = 3}, - [961] = {.lex_state = 4, .external_lex_state = 3}, + [961] = {.lex_state = 2, .external_lex_state = 3}, [962] = {.lex_state = 4, .external_lex_state = 3}, - [963] = {.lex_state = 2, .external_lex_state = 3}, + [963] = {.lex_state = 4, .external_lex_state = 3}, [964] = {.lex_state = 4, .external_lex_state = 3}, [965] = {.lex_state = 4, .external_lex_state = 3}, [966] = {.lex_state = 2, .external_lex_state = 3}, - [967] = {.lex_state = 4, .external_lex_state = 3}, + [967] = {.lex_state = 2, .external_lex_state = 3}, [968] = {.lex_state = 4, .external_lex_state = 3}, [969] = {.lex_state = 4, .external_lex_state = 3}, [970] = {.lex_state = 4, .external_lex_state = 3}, [971] = {.lex_state = 4, .external_lex_state = 3}, [972] = {.lex_state = 4, .external_lex_state = 3}, - [973] = {.lex_state = 4, .external_lex_state = 3}, - [974] = {.lex_state = 4, .external_lex_state = 3}, + [973] = {.lex_state = 2, .external_lex_state = 3}, + [974] = {.lex_state = 2, .external_lex_state = 3}, [975] = {.lex_state = 4, .external_lex_state = 3}, [976] = {.lex_state = 4, .external_lex_state = 3}, [977] = {.lex_state = 4, .external_lex_state = 3}, [978] = {.lex_state = 4, .external_lex_state = 3}, - [979] = {.lex_state = 4, .external_lex_state = 3}, + [979] = {.lex_state = 2, .external_lex_state = 3}, [980] = {.lex_state = 4, .external_lex_state = 3}, [981] = {.lex_state = 4, .external_lex_state = 3}, [982] = {.lex_state = 4, .external_lex_state = 3}, [983] = {.lex_state = 4, .external_lex_state = 3}, [984] = {.lex_state = 4, .external_lex_state = 3}, - [985] = {.lex_state = 4, .external_lex_state = 3}, + [985] = {.lex_state = 2, .external_lex_state = 3}, [986] = {.lex_state = 4, .external_lex_state = 3}, - [987] = {.lex_state = 4, .external_lex_state = 3}, + [987] = {.lex_state = 2, .external_lex_state = 3}, [988] = {.lex_state = 4, .external_lex_state = 3}, - [989] = {.lex_state = 4, .external_lex_state = 3}, + [989] = {.lex_state = 2, .external_lex_state = 3}, [990] = {.lex_state = 4, .external_lex_state = 3}, [991] = {.lex_state = 4, .external_lex_state = 3}, - [992] = {.lex_state = 2, .external_lex_state = 3}, + [992] = {.lex_state = 4, .external_lex_state = 3}, [993] = {.lex_state = 4, .external_lex_state = 3}, - [994] = {.lex_state = 2, .external_lex_state = 3}, + [994] = {.lex_state = 4, .external_lex_state = 3}, [995] = {.lex_state = 4, .external_lex_state = 3}, [996] = {.lex_state = 4, .external_lex_state = 3}, [997] = {.lex_state = 4, .external_lex_state = 3}, @@ -15639,161 +15641,161 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [999] = {.lex_state = 4, .external_lex_state = 3}, [1000] = {.lex_state = 4, .external_lex_state = 3}, [1001] = {.lex_state = 4, .external_lex_state = 3}, - [1002] = {.lex_state = 4, .external_lex_state = 3}, + [1002] = {.lex_state = 2, .external_lex_state = 3}, [1003] = {.lex_state = 4, .external_lex_state = 3}, [1004] = {.lex_state = 4, .external_lex_state = 3}, - [1005] = {.lex_state = 4, .external_lex_state = 3}, - [1006] = {.lex_state = 2, .external_lex_state = 3}, + [1005] = {.lex_state = 2, .external_lex_state = 3}, + [1006] = {.lex_state = 4, .external_lex_state = 3}, [1007] = {.lex_state = 4, .external_lex_state = 3}, [1008] = {.lex_state = 4, .external_lex_state = 3}, [1009] = {.lex_state = 2, .external_lex_state = 3}, [1010] = {.lex_state = 4, .external_lex_state = 3}, [1011] = {.lex_state = 2, .external_lex_state = 3}, - [1012] = {.lex_state = 4, .external_lex_state = 3}, - [1013] = {.lex_state = 2, .external_lex_state = 3}, + [1012] = {.lex_state = 2, .external_lex_state = 3}, + [1013] = {.lex_state = 4, .external_lex_state = 3}, [1014] = {.lex_state = 4, .external_lex_state = 3}, - [1015] = {.lex_state = 4, .external_lex_state = 3}, + [1015] = {.lex_state = 2, .external_lex_state = 3}, [1016] = {.lex_state = 4, .external_lex_state = 3}, - [1017] = {.lex_state = 4, .external_lex_state = 3}, + [1017] = {.lex_state = 2, .external_lex_state = 3}, [1018] = {.lex_state = 4, .external_lex_state = 3}, - [1019] = {.lex_state = 2, .external_lex_state = 3}, + [1019] = {.lex_state = 4, .external_lex_state = 3}, [1020] = {.lex_state = 4, .external_lex_state = 3}, [1021] = {.lex_state = 4, .external_lex_state = 3}, [1022] = {.lex_state = 4, .external_lex_state = 3}, - [1023] = {.lex_state = 4, .external_lex_state = 3}, - [1024] = {.lex_state = 4, .external_lex_state = 3}, - [1025] = {.lex_state = 4, .external_lex_state = 3}, + [1023] = {.lex_state = 2, .external_lex_state = 3}, + [1024] = {.lex_state = 2, .external_lex_state = 3}, + [1025] = {.lex_state = 2, .external_lex_state = 3}, [1026] = {.lex_state = 4, .external_lex_state = 3}, [1027] = {.lex_state = 4, .external_lex_state = 3}, - [1028] = {.lex_state = 4, .external_lex_state = 3}, + [1028] = {.lex_state = 2, .external_lex_state = 3}, [1029] = {.lex_state = 2, .external_lex_state = 3}, [1030] = {.lex_state = 4, .external_lex_state = 3}, - [1031] = {.lex_state = 4, .external_lex_state = 3}, - [1032] = {.lex_state = 2, .external_lex_state = 3}, + [1031] = {.lex_state = 2, .external_lex_state = 3}, + [1032] = {.lex_state = 4, .external_lex_state = 3}, [1033] = {.lex_state = 4, .external_lex_state = 3}, [1034] = {.lex_state = 4, .external_lex_state = 3}, [1035] = {.lex_state = 4, .external_lex_state = 3}, [1036] = {.lex_state = 4, .external_lex_state = 3}, [1037] = {.lex_state = 4, .external_lex_state = 3}, - [1038] = {.lex_state = 4, .external_lex_state = 3}, - [1039] = {.lex_state = 4, .external_lex_state = 3}, - [1040] = {.lex_state = 4, .external_lex_state = 3}, + [1038] = {.lex_state = 2, .external_lex_state = 3}, + [1039] = {.lex_state = 2, .external_lex_state = 3}, + [1040] = {.lex_state = 2, .external_lex_state = 3}, [1041] = {.lex_state = 4, .external_lex_state = 3}, - [1042] = {.lex_state = 4, .external_lex_state = 3}, + [1042] = {.lex_state = 2, .external_lex_state = 3}, [1043] = {.lex_state = 4, .external_lex_state = 3}, [1044] = {.lex_state = 4, .external_lex_state = 3}, - [1045] = {.lex_state = 4, .external_lex_state = 3}, - [1046] = {.lex_state = 4, .external_lex_state = 3}, - [1047] = {.lex_state = 4, .external_lex_state = 3}, - [1048] = {.lex_state = 2, .external_lex_state = 3}, - [1049] = {.lex_state = 4, .external_lex_state = 3}, + [1045] = {.lex_state = 2, .external_lex_state = 3}, + [1046] = {.lex_state = 2, .external_lex_state = 3}, + [1047] = {.lex_state = 2, .external_lex_state = 3}, + [1048] = {.lex_state = 4, .external_lex_state = 3}, + [1049] = {.lex_state = 2, .external_lex_state = 3}, [1050] = {.lex_state = 4, .external_lex_state = 3}, [1051] = {.lex_state = 2, .external_lex_state = 3}, - [1052] = {.lex_state = 4, .external_lex_state = 3}, + [1052] = {.lex_state = 2, .external_lex_state = 3}, [1053] = {.lex_state = 4, .external_lex_state = 3}, - [1054] = {.lex_state = 4, .external_lex_state = 3}, + [1054] = {.lex_state = 2, .external_lex_state = 3}, [1055] = {.lex_state = 4, .external_lex_state = 3}, [1056] = {.lex_state = 4, .external_lex_state = 3}, [1057] = {.lex_state = 4, .external_lex_state = 3}, [1058] = {.lex_state = 4, .external_lex_state = 3}, [1059] = {.lex_state = 4, .external_lex_state = 3}, - [1060] = {.lex_state = 4, .external_lex_state = 3}, - [1061] = {.lex_state = 4, .external_lex_state = 3}, + [1060] = {.lex_state = 2, .external_lex_state = 3}, + [1061] = {.lex_state = 2, .external_lex_state = 3}, [1062] = {.lex_state = 4, .external_lex_state = 3}, [1063] = {.lex_state = 4, .external_lex_state = 3}, [1064] = {.lex_state = 4, .external_lex_state = 3}, [1065] = {.lex_state = 4, .external_lex_state = 3}, [1066] = {.lex_state = 4, .external_lex_state = 3}, - [1067] = {.lex_state = 4, .external_lex_state = 3}, + [1067] = {.lex_state = 2, .external_lex_state = 3}, [1068] = {.lex_state = 4, .external_lex_state = 3}, [1069] = {.lex_state = 2, .external_lex_state = 3}, - [1070] = {.lex_state = 4, .external_lex_state = 3}, + [1070] = {.lex_state = 2, .external_lex_state = 3}, [1071] = {.lex_state = 2, .external_lex_state = 3}, - [1072] = {.lex_state = 2, .external_lex_state = 3}, + [1072] = {.lex_state = 4, .external_lex_state = 3}, [1073] = {.lex_state = 2, .external_lex_state = 3}, [1074] = {.lex_state = 4, .external_lex_state = 3}, [1075] = {.lex_state = 4, .external_lex_state = 3}, [1076] = {.lex_state = 4, .external_lex_state = 3}, [1077] = {.lex_state = 4, .external_lex_state = 3}, [1078] = {.lex_state = 4, .external_lex_state = 3}, - [1079] = {.lex_state = 4, .external_lex_state = 3}, + [1079] = {.lex_state = 2, .external_lex_state = 3}, [1080] = {.lex_state = 4, .external_lex_state = 3}, - [1081] = {.lex_state = 4, .external_lex_state = 3}, - [1082] = {.lex_state = 4, .external_lex_state = 3}, - [1083] = {.lex_state = 4, .external_lex_state = 3}, + [1081] = {.lex_state = 2, .external_lex_state = 3}, + [1082] = {.lex_state = 2, .external_lex_state = 3}, + [1083] = {.lex_state = 2, .external_lex_state = 3}, [1084] = {.lex_state = 4, .external_lex_state = 3}, [1085] = {.lex_state = 4, .external_lex_state = 3}, [1086] = {.lex_state = 4, .external_lex_state = 3}, - [1087] = {.lex_state = 4, .external_lex_state = 3}, + [1087] = {.lex_state = 2, .external_lex_state = 3}, [1088] = {.lex_state = 4, .external_lex_state = 3}, [1089] = {.lex_state = 4, .external_lex_state = 3}, [1090] = {.lex_state = 4, .external_lex_state = 3}, [1091] = {.lex_state = 4, .external_lex_state = 3}, - [1092] = {.lex_state = 2, .external_lex_state = 3}, + [1092] = {.lex_state = 4, .external_lex_state = 3}, [1093] = {.lex_state = 4, .external_lex_state = 3}, [1094] = {.lex_state = 4, .external_lex_state = 3}, [1095] = {.lex_state = 4, .external_lex_state = 3}, - [1096] = {.lex_state = 2, .external_lex_state = 3}, - [1097] = {.lex_state = 2, .external_lex_state = 3}, + [1096] = {.lex_state = 4, .external_lex_state = 3}, + [1097] = {.lex_state = 4, .external_lex_state = 3}, [1098] = {.lex_state = 4, .external_lex_state = 3}, [1099] = {.lex_state = 4, .external_lex_state = 3}, - [1100] = {.lex_state = 2, .external_lex_state = 3}, - [1101] = {.lex_state = 2, .external_lex_state = 3}, - [1102] = {.lex_state = 2, .external_lex_state = 3}, + [1100] = {.lex_state = 4, .external_lex_state = 3}, + [1101] = {.lex_state = 4, .external_lex_state = 3}, + [1102] = {.lex_state = 4, .external_lex_state = 3}, [1103] = {.lex_state = 4, .external_lex_state = 3}, [1104] = {.lex_state = 4, .external_lex_state = 3}, [1105] = {.lex_state = 4, .external_lex_state = 3}, [1106] = {.lex_state = 4, .external_lex_state = 3}, [1107] = {.lex_state = 4, .external_lex_state = 3}, [1108] = {.lex_state = 4, .external_lex_state = 3}, - [1109] = {.lex_state = 2, .external_lex_state = 3}, - [1110] = {.lex_state = 2, .external_lex_state = 3}, + [1109] = {.lex_state = 4, .external_lex_state = 3}, + [1110] = {.lex_state = 4, .external_lex_state = 3}, [1111] = {.lex_state = 2, .external_lex_state = 3}, - [1112] = {.lex_state = 2, .external_lex_state = 3}, - [1113] = {.lex_state = 2, .external_lex_state = 3}, - [1114] = {.lex_state = 2, .external_lex_state = 3}, - [1115] = {.lex_state = 2, .external_lex_state = 3}, - [1116] = {.lex_state = 2, .external_lex_state = 3}, - [1117] = {.lex_state = 2, .external_lex_state = 3}, + [1112] = {.lex_state = 4, .external_lex_state = 3}, + [1113] = {.lex_state = 4, .external_lex_state = 3}, + [1114] = {.lex_state = 4, .external_lex_state = 3}, + [1115] = {.lex_state = 4, .external_lex_state = 3}, + [1116] = {.lex_state = 4, .external_lex_state = 3}, + [1117] = {.lex_state = 4, .external_lex_state = 3}, [1118] = {.lex_state = 2, .external_lex_state = 3}, [1119] = {.lex_state = 2, .external_lex_state = 3}, - [1120] = {.lex_state = 2, .external_lex_state = 3}, + [1120] = {.lex_state = 4, .external_lex_state = 3}, [1121] = {.lex_state = 2, .external_lex_state = 3}, [1122] = {.lex_state = 4, .external_lex_state = 3}, - [1123] = {.lex_state = 2, .external_lex_state = 3}, - [1124] = {.lex_state = 2, .external_lex_state = 3}, - [1125] = {.lex_state = 2, .external_lex_state = 3}, - [1126] = {.lex_state = 2, .external_lex_state = 3}, + [1123] = {.lex_state = 4, .external_lex_state = 3}, + [1124] = {.lex_state = 4, .external_lex_state = 3}, + [1125] = {.lex_state = 4, .external_lex_state = 3}, + [1126] = {.lex_state = 4, .external_lex_state = 3}, [1127] = {.lex_state = 2, .external_lex_state = 3}, - [1128] = {.lex_state = 7, .external_lex_state = 3}, + [1128] = {.lex_state = 2, .external_lex_state = 3}, [1129] = {.lex_state = 2, .external_lex_state = 3}, [1130] = {.lex_state = 2, .external_lex_state = 3}, [1131] = {.lex_state = 7, .external_lex_state = 3}, [1132] = {.lex_state = 2, .external_lex_state = 3}, - [1133] = {.lex_state = 2, .external_lex_state = 3}, - [1134] = {.lex_state = 2, .external_lex_state = 3}, - [1135] = {.lex_state = 2, .external_lex_state = 3}, - [1136] = {.lex_state = 7, .external_lex_state = 3}, + [1133] = {.lex_state = 7, .external_lex_state = 3}, + [1134] = {.lex_state = 7, .external_lex_state = 3}, + [1135] = {.lex_state = 7, .external_lex_state = 3}, + [1136] = {.lex_state = 2, .external_lex_state = 3}, [1137] = {.lex_state = 5, .external_lex_state = 2}, - [1138] = {.lex_state = 7, .external_lex_state = 3}, - [1139] = {.lex_state = 2, .external_lex_state = 3}, + [1138] = {.lex_state = 2, .external_lex_state = 3}, + [1139] = {.lex_state = 7, .external_lex_state = 3}, [1140] = {.lex_state = 2, .external_lex_state = 3}, [1141] = {.lex_state = 7, .external_lex_state = 3}, - [1142] = {.lex_state = 7, .external_lex_state = 3}, - [1143] = {.lex_state = 5, .external_lex_state = 2}, + [1142] = {.lex_state = 2, .external_lex_state = 3}, + [1143] = {.lex_state = 2, .external_lex_state = 3}, [1144] = {.lex_state = 2, .external_lex_state = 3}, [1145] = {.lex_state = 2, .external_lex_state = 3}, [1146] = {.lex_state = 2, .external_lex_state = 3}, [1147] = {.lex_state = 2, .external_lex_state = 3}, - [1148] = {.lex_state = 7, .external_lex_state = 3}, - [1149] = {.lex_state = 2, .external_lex_state = 3}, + [1148] = {.lex_state = 2, .external_lex_state = 3}, + [1149] = {.lex_state = 5, .external_lex_state = 2}, [1150] = {.lex_state = 7, .external_lex_state = 3}, - [1151] = {.lex_state = 2, .external_lex_state = 3}, + [1151] = {.lex_state = 7, .external_lex_state = 3}, [1152] = {.lex_state = 2, .external_lex_state = 3}, - [1153] = {.lex_state = 2, .external_lex_state = 3}, + [1153] = {.lex_state = 7, .external_lex_state = 3}, [1154] = {.lex_state = 2, .external_lex_state = 3}, [1155] = {.lex_state = 2, .external_lex_state = 3}, - [1156] = {.lex_state = 7, .external_lex_state = 3}, + [1156] = {.lex_state = 2, .external_lex_state = 3}, [1157] = {.lex_state = 2, .external_lex_state = 3}, [1158] = {.lex_state = 2, .external_lex_state = 3}, [1159] = {.lex_state = 5, .external_lex_state = 2}, @@ -15803,38 +15805,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1163] = {.lex_state = 7, .external_lex_state = 3}, [1164] = {.lex_state = 7, .external_lex_state = 3}, [1165] = {.lex_state = 7, .external_lex_state = 3}, - [1166] = {.lex_state = 7, .external_lex_state = 3}, - [1167] = {.lex_state = 2, .external_lex_state = 3}, + [1166] = {.lex_state = 2, .external_lex_state = 3}, + [1167] = {.lex_state = 7, .external_lex_state = 3}, [1168] = {.lex_state = 7, .external_lex_state = 3}, [1169] = {.lex_state = 7, .external_lex_state = 3}, [1170] = {.lex_state = 7, .external_lex_state = 3}, - [1171] = {.lex_state = 5, .external_lex_state = 2}, + [1171] = {.lex_state = 2, .external_lex_state = 3}, [1172] = {.lex_state = 2, .external_lex_state = 3}, [1173] = {.lex_state = 5, .external_lex_state = 2}, - [1174] = {.lex_state = 2, .external_lex_state = 3}, + [1174] = {.lex_state = 5, .external_lex_state = 2}, [1175] = {.lex_state = 2, .external_lex_state = 3}, - [1176] = {.lex_state = 7, .external_lex_state = 3}, - [1177] = {.lex_state = 7, .external_lex_state = 3}, + [1176] = {.lex_state = 2, .external_lex_state = 3}, + [1177] = {.lex_state = 2, .external_lex_state = 3}, [1178] = {.lex_state = 7, .external_lex_state = 3}, - [1179] = {.lex_state = 2, .external_lex_state = 3}, + [1179] = {.lex_state = 7, .external_lex_state = 3}, [1180] = {.lex_state = 7, .external_lex_state = 3}, [1181] = {.lex_state = 2, .external_lex_state = 3}, - [1182] = {.lex_state = 7, .external_lex_state = 3}, - [1183] = {.lex_state = 2, .external_lex_state = 3}, - [1184] = {.lex_state = 2, .external_lex_state = 3}, + [1182] = {.lex_state = 2, .external_lex_state = 3}, + [1183] = {.lex_state = 7, .external_lex_state = 3}, + [1184] = {.lex_state = 7, .external_lex_state = 3}, [1185] = {.lex_state = 7, .external_lex_state = 3}, - [1186] = {.lex_state = 7, .external_lex_state = 3}, + [1186] = {.lex_state = 2, .external_lex_state = 3}, [1187] = {.lex_state = 2, .external_lex_state = 3}, - [1188] = {.lex_state = 2, .external_lex_state = 3}, + [1188] = {.lex_state = 7, .external_lex_state = 3}, [1189] = {.lex_state = 2, .external_lex_state = 3}, [1190] = {.lex_state = 2, .external_lex_state = 3}, [1191] = {.lex_state = 2, .external_lex_state = 3}, [1192] = {.lex_state = 2, .external_lex_state = 3}, [1193] = {.lex_state = 2, .external_lex_state = 3}, [1194] = {.lex_state = 2, .external_lex_state = 3}, - [1195] = {.lex_state = 2, .external_lex_state = 3}, + [1195] = {.lex_state = 7, .external_lex_state = 3}, [1196] = {.lex_state = 7, .external_lex_state = 3}, - [1197] = {.lex_state = 7, .external_lex_state = 3}, + [1197] = {.lex_state = 2, .external_lex_state = 3}, [1198] = {.lex_state = 2, .external_lex_state = 3}, [1199] = {.lex_state = 2, .external_lex_state = 3}, [1200] = {.lex_state = 2, .external_lex_state = 3}, @@ -15844,7 +15846,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1204] = {.lex_state = 2, .external_lex_state = 3}, [1205] = {.lex_state = 2, .external_lex_state = 3}, [1206] = {.lex_state = 2, .external_lex_state = 3}, - [1207] = {.lex_state = 2, .external_lex_state = 3}, + [1207] = {.lex_state = 7, .external_lex_state = 3}, [1208] = {.lex_state = 2, .external_lex_state = 3}, [1209] = {.lex_state = 2, .external_lex_state = 3}, [1210] = {.lex_state = 2, .external_lex_state = 3}, @@ -15886,7 +15888,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1246] = {.lex_state = 2, .external_lex_state = 3}, [1247] = {.lex_state = 2, .external_lex_state = 3}, [1248] = {.lex_state = 2, .external_lex_state = 3}, - [1249] = {.lex_state = 7, .external_lex_state = 3}, + [1249] = {.lex_state = 2, .external_lex_state = 3}, [1250] = {.lex_state = 2, .external_lex_state = 3}, [1251] = {.lex_state = 2, .external_lex_state = 3}, [1252] = {.lex_state = 2, .external_lex_state = 3}, @@ -15911,12 +15913,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1271] = {.lex_state = 2, .external_lex_state = 3}, [1272] = {.lex_state = 2, .external_lex_state = 3}, [1273] = {.lex_state = 2, .external_lex_state = 3}, - [1274] = {.lex_state = 7, .external_lex_state = 3}, + [1274] = {.lex_state = 2, .external_lex_state = 3}, [1275] = {.lex_state = 2, .external_lex_state = 3}, [1276] = {.lex_state = 2, .external_lex_state = 3}, [1277] = {.lex_state = 2, .external_lex_state = 3}, [1278] = {.lex_state = 2, .external_lex_state = 3}, - [1279] = {.lex_state = 7, .external_lex_state = 3}, + [1279] = {.lex_state = 2, .external_lex_state = 3}, [1280] = {.lex_state = 2, .external_lex_state = 3}, [1281] = {.lex_state = 2, .external_lex_state = 3}, [1282] = {.lex_state = 2, .external_lex_state = 3}, @@ -15926,15 +15928,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1286] = {.lex_state = 2, .external_lex_state = 3}, [1287] = {.lex_state = 2, .external_lex_state = 3}, [1288] = {.lex_state = 2, .external_lex_state = 3}, - [1289] = {.lex_state = 2, .external_lex_state = 3}, + [1289] = {.lex_state = 7, .external_lex_state = 3}, [1290] = {.lex_state = 2, .external_lex_state = 3}, [1291] = {.lex_state = 2, .external_lex_state = 3}, [1292] = {.lex_state = 2, .external_lex_state = 3}, [1293] = {.lex_state = 2, .external_lex_state = 3}, [1294] = {.lex_state = 2, .external_lex_state = 3}, - [1295] = {.lex_state = 2, .external_lex_state = 3}, - [1296] = {.lex_state = 2, .external_lex_state = 3}, - [1297] = {.lex_state = 2, .external_lex_state = 3}, + [1295] = {.lex_state = 7, .external_lex_state = 3}, + [1296] = {.lex_state = 7, .external_lex_state = 3}, + [1297] = {.lex_state = 7, .external_lex_state = 3}, [1298] = {.lex_state = 7, .external_lex_state = 3}, [1299] = {.lex_state = 7, .external_lex_state = 3}, [1300] = {.lex_state = 7, .external_lex_state = 3}, @@ -15950,10 +15952,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1310] = {.lex_state = 7, .external_lex_state = 3}, [1311] = {.lex_state = 7, .external_lex_state = 3}, [1312] = {.lex_state = 7, .external_lex_state = 3}, - [1313] = {.lex_state = 7, .external_lex_state = 3}, - [1314] = {.lex_state = 7, .external_lex_state = 3}, - [1315] = {.lex_state = 18, .external_lex_state = 3}, - [1316] = {.lex_state = 18, .external_lex_state = 3}, + [1313] = {.lex_state = 18, .external_lex_state = 3}, + [1314] = {.lex_state = 18, .external_lex_state = 3}, + [1315] = {.lex_state = 9, .external_lex_state = 3}, + [1316] = {.lex_state = 9, .external_lex_state = 3}, [1317] = {.lex_state = 9, .external_lex_state = 3}, [1318] = {.lex_state = 9, .external_lex_state = 3}, [1319] = {.lex_state = 9, .external_lex_state = 3}, @@ -15964,187 +15966,187 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1324] = {.lex_state = 9, .external_lex_state = 3}, [1325] = {.lex_state = 9, .external_lex_state = 3}, [1326] = {.lex_state = 9, .external_lex_state = 3}, - [1327] = {.lex_state = 9, .external_lex_state = 3}, - [1328] = {.lex_state = 9, .external_lex_state = 3}, - [1329] = {.lex_state = 7, .external_lex_state = 3}, + [1327] = {.lex_state = 18, .external_lex_state = 3}, + [1328] = {.lex_state = 7, .external_lex_state = 3}, + [1329] = {.lex_state = 18, .external_lex_state = 3}, [1330] = {.lex_state = 7, .external_lex_state = 3}, - [1331] = {.lex_state = 7, .external_lex_state = 3}, - [1332] = {.lex_state = 18, .external_lex_state = 3}, + [1331] = {.lex_state = 18, .external_lex_state = 3}, + [1332] = {.lex_state = 7, .external_lex_state = 3}, [1333] = {.lex_state = 18, .external_lex_state = 3}, - [1334] = {.lex_state = 18, .external_lex_state = 3}, + [1334] = {.lex_state = 7, .external_lex_state = 3}, [1335] = {.lex_state = 18, .external_lex_state = 3}, [1336] = {.lex_state = 18, .external_lex_state = 3}, - [1337] = {.lex_state = 18, .external_lex_state = 3}, - [1338] = {.lex_state = 7, .external_lex_state = 3}, - [1339] = {.lex_state = 18, .external_lex_state = 3}, + [1337] = {.lex_state = 7, .external_lex_state = 3}, + [1338] = {.lex_state = 18, .external_lex_state = 3}, + [1339] = {.lex_state = 7, .external_lex_state = 3}, [1340] = {.lex_state = 18, .external_lex_state = 3}, [1341] = {.lex_state = 7, .external_lex_state = 3}, [1342] = {.lex_state = 7, .external_lex_state = 3}, - [1343] = {.lex_state = 7, .external_lex_state = 3}, - [1344] = {.lex_state = 18, .external_lex_state = 3}, + [1343] = {.lex_state = 18, .external_lex_state = 3}, + [1344] = {.lex_state = 7, .external_lex_state = 3}, [1345] = {.lex_state = 7, .external_lex_state = 3}, [1346] = {.lex_state = 7, .external_lex_state = 3}, [1347] = {.lex_state = 7, .external_lex_state = 3}, [1348] = {.lex_state = 7, .external_lex_state = 3}, - [1349] = {.lex_state = 7, .external_lex_state = 3}, - [1350] = {.lex_state = 7, .external_lex_state = 3}, + [1349] = {.lex_state = 18, .external_lex_state = 3}, + [1350] = {.lex_state = 18, .external_lex_state = 3}, [1351] = {.lex_state = 7, .external_lex_state = 3}, [1352] = {.lex_state = 18, .external_lex_state = 3}, [1353] = {.lex_state = 18, .external_lex_state = 3}, [1354] = {.lex_state = 18, .external_lex_state = 3}, - [1355] = {.lex_state = 18, .external_lex_state = 3}, - [1356] = {.lex_state = 7, .external_lex_state = 3}, - [1357] = {.lex_state = 9, .external_lex_state = 3}, - [1358] = {.lex_state = 7, .external_lex_state = 3}, - [1359] = {.lex_state = 18, .external_lex_state = 3}, + [1355] = {.lex_state = 7, .external_lex_state = 3}, + [1356] = {.lex_state = 18, .external_lex_state = 3}, + [1357] = {.lex_state = 18, .external_lex_state = 3}, + [1358] = {.lex_state = 18, .external_lex_state = 3}, + [1359] = {.lex_state = 7, .external_lex_state = 3}, [1360] = {.lex_state = 7, .external_lex_state = 3}, [1361] = {.lex_state = 18, .external_lex_state = 3}, [1362] = {.lex_state = 7, .external_lex_state = 3}, - [1363] = {.lex_state = 7, .external_lex_state = 3}, + [1363] = {.lex_state = 18, .external_lex_state = 3}, [1364] = {.lex_state = 7, .external_lex_state = 3}, - [1365] = {.lex_state = 7, .external_lex_state = 3}, - [1366] = {.lex_state = 18, .external_lex_state = 3}, + [1365] = {.lex_state = 18, .external_lex_state = 3}, + [1366] = {.lex_state = 7, .external_lex_state = 3}, [1367] = {.lex_state = 18, .external_lex_state = 3}, [1368] = {.lex_state = 7, .external_lex_state = 3}, - [1369] = {.lex_state = 7, .external_lex_state = 3}, + [1369] = {.lex_state = 9, .external_lex_state = 3}, [1370] = {.lex_state = 18, .external_lex_state = 3}, - [1371] = {.lex_state = 18, .external_lex_state = 3}, - [1372] = {.lex_state = 9, .external_lex_state = 3}, + [1371] = {.lex_state = 7, .external_lex_state = 3}, + [1372] = {.lex_state = 7, .external_lex_state = 3}, [1373] = {.lex_state = 9, .external_lex_state = 3}, - [1374] = {.lex_state = 18, .external_lex_state = 3}, - [1375] = {.lex_state = 18, .external_lex_state = 3}, + [1374] = {.lex_state = 7, .external_lex_state = 3}, + [1375] = {.lex_state = 9, .external_lex_state = 3}, [1376] = {.lex_state = 18, .external_lex_state = 3}, - [1377] = {.lex_state = 7, .external_lex_state = 3}, + [1377] = {.lex_state = 18, .external_lex_state = 3}, [1378] = {.lex_state = 18, .external_lex_state = 3}, [1379] = {.lex_state = 18, .external_lex_state = 3}, - [1380] = {.lex_state = 18, .external_lex_state = 3}, + [1380] = {.lex_state = 9, .external_lex_state = 3}, [1381] = {.lex_state = 18, .external_lex_state = 3}, [1382] = {.lex_state = 18, .external_lex_state = 3}, [1383] = {.lex_state = 18, .external_lex_state = 3}, [1384] = {.lex_state = 18, .external_lex_state = 3}, [1385] = {.lex_state = 18, .external_lex_state = 3}, - [1386] = {.lex_state = 7, .external_lex_state = 3}, - [1387] = {.lex_state = 7, .external_lex_state = 3}, + [1386] = {.lex_state = 18, .external_lex_state = 3}, + [1387] = {.lex_state = 18, .external_lex_state = 3}, [1388] = {.lex_state = 18, .external_lex_state = 3}, - [1389] = {.lex_state = 18, .external_lex_state = 3}, + [1389] = {.lex_state = 7, .external_lex_state = 3}, [1390] = {.lex_state = 18, .external_lex_state = 3}, - [1391] = {.lex_state = 18, .external_lex_state = 3}, + [1391] = {.lex_state = 7, .external_lex_state = 3}, [1392] = {.lex_state = 18, .external_lex_state = 3}, [1393] = {.lex_state = 18, .external_lex_state = 3}, [1394] = {.lex_state = 18, .external_lex_state = 3}, - [1395] = {.lex_state = 18, .external_lex_state = 3}, + [1395] = {.lex_state = 7, .external_lex_state = 3}, [1396] = {.lex_state = 18, .external_lex_state = 3}, [1397] = {.lex_state = 18, .external_lex_state = 3}, [1398] = {.lex_state = 18, .external_lex_state = 3}, [1399] = {.lex_state = 18, .external_lex_state = 3}, - [1400] = {.lex_state = 9, .external_lex_state = 3}, + [1400] = {.lex_state = 18, .external_lex_state = 3}, [1401] = {.lex_state = 18, .external_lex_state = 3}, - [1402] = {.lex_state = 7, .external_lex_state = 3}, + [1402] = {.lex_state = 18, .external_lex_state = 3}, [1403] = {.lex_state = 18, .external_lex_state = 3}, [1404] = {.lex_state = 18, .external_lex_state = 3}, [1405] = {.lex_state = 18, .external_lex_state = 3}, - [1406] = {.lex_state = 18, .external_lex_state = 3}, + [1406] = {.lex_state = 7, .external_lex_state = 3}, [1407] = {.lex_state = 18, .external_lex_state = 3}, [1408] = {.lex_state = 7, .external_lex_state = 3}, [1409] = {.lex_state = 7, .external_lex_state = 3}, [1410] = {.lex_state = 7, .external_lex_state = 3}, [1411] = {.lex_state = 7, .external_lex_state = 3}, [1412] = {.lex_state = 7, .external_lex_state = 3}, - [1413] = {.lex_state = 18, .external_lex_state = 3}, - [1414] = {.lex_state = 7, .external_lex_state = 3}, - [1415] = {.lex_state = 7, .external_lex_state = 3}, + [1413] = {.lex_state = 7, .external_lex_state = 3}, + [1414] = {.lex_state = 18, .external_lex_state = 3}, + [1415] = {.lex_state = 18, .external_lex_state = 3}, [1416] = {.lex_state = 7, .external_lex_state = 3}, - [1417] = {.lex_state = 18, .external_lex_state = 3}, + [1417] = {.lex_state = 7, .external_lex_state = 3}, [1418] = {.lex_state = 18, .external_lex_state = 3}, - [1419] = {.lex_state = 7, .external_lex_state = 3}, + [1419] = {.lex_state = 9, .external_lex_state = 3}, [1420] = {.lex_state = 18, .external_lex_state = 3}, - [1421] = {.lex_state = 9, .external_lex_state = 3}, + [1421] = {.lex_state = 18, .external_lex_state = 3}, [1422] = {.lex_state = 18, .external_lex_state = 3}, - [1423] = {.lex_state = 18, .external_lex_state = 3}, + [1423] = {.lex_state = 9, .external_lex_state = 3}, [1424] = {.lex_state = 9, .external_lex_state = 3}, [1425] = {.lex_state = 18, .external_lex_state = 3}, [1426] = {.lex_state = 18, .external_lex_state = 3}, [1427] = {.lex_state = 18, .external_lex_state = 3}, - [1428] = {.lex_state = 9, .external_lex_state = 3}, + [1428] = {.lex_state = 18, .external_lex_state = 3}, [1429] = {.lex_state = 18, .external_lex_state = 3}, [1430] = {.lex_state = 9, .external_lex_state = 3}, [1431] = {.lex_state = 9, .external_lex_state = 3}, [1432] = {.lex_state = 18, .external_lex_state = 3}, - [1433] = {.lex_state = 18, .external_lex_state = 3}, + [1433] = {.lex_state = 9, .external_lex_state = 3}, [1434] = {.lex_state = 18, .external_lex_state = 3}, [1435] = {.lex_state = 9, .external_lex_state = 3}, [1436] = {.lex_state = 18, .external_lex_state = 3}, [1437] = {.lex_state = 18, .external_lex_state = 3}, [1438] = {.lex_state = 18, .external_lex_state = 3}, - [1439] = {.lex_state = 18, .external_lex_state = 3}, + [1439] = {.lex_state = 7, .external_lex_state = 3}, [1440] = {.lex_state = 18, .external_lex_state = 3}, [1441] = {.lex_state = 18, .external_lex_state = 3}, [1442] = {.lex_state = 18, .external_lex_state = 3}, - [1443] = {.lex_state = 9, .external_lex_state = 3}, + [1443] = {.lex_state = 18, .external_lex_state = 3}, [1444] = {.lex_state = 18, .external_lex_state = 3}, [1445] = {.lex_state = 9, .external_lex_state = 3}, - [1446] = {.lex_state = 9, .external_lex_state = 3}, + [1446] = {.lex_state = 18, .external_lex_state = 3}, [1447] = {.lex_state = 18, .external_lex_state = 3}, - [1448] = {.lex_state = 9, .external_lex_state = 3}, - [1449] = {.lex_state = 18, .external_lex_state = 3}, - [1450] = {.lex_state = 9, .external_lex_state = 3}, + [1448] = {.lex_state = 18, .external_lex_state = 3}, + [1449] = {.lex_state = 9, .external_lex_state = 3}, + [1450] = {.lex_state = 18, .external_lex_state = 3}, [1451] = {.lex_state = 18, .external_lex_state = 3}, [1452] = {.lex_state = 18, .external_lex_state = 3}, [1453] = {.lex_state = 18, .external_lex_state = 3}, [1454] = {.lex_state = 18, .external_lex_state = 3}, [1455] = {.lex_state = 18, .external_lex_state = 3}, [1456] = {.lex_state = 18, .external_lex_state = 3}, - [1457] = {.lex_state = 18, .external_lex_state = 3}, + [1457] = {.lex_state = 9, .external_lex_state = 3}, [1458] = {.lex_state = 18, .external_lex_state = 3}, - [1459] = {.lex_state = 7, .external_lex_state = 3}, - [1460] = {.lex_state = 9, .external_lex_state = 3}, - [1461] = {.lex_state = 18, .external_lex_state = 3}, - [1462] = {.lex_state = 18, .external_lex_state = 3}, - [1463] = {.lex_state = 18, .external_lex_state = 3}, - [1464] = {.lex_state = 9, .external_lex_state = 3}, + [1459] = {.lex_state = 9, .external_lex_state = 3}, + [1460] = {.lex_state = 18, .external_lex_state = 3}, + [1461] = {.lex_state = 9, .external_lex_state = 3}, + [1462] = {.lex_state = 9, .external_lex_state = 3}, + [1463] = {.lex_state = 9, .external_lex_state = 3}, + [1464] = {.lex_state = 14, .external_lex_state = 3}, [1465] = {.lex_state = 9, .external_lex_state = 3}, [1466] = {.lex_state = 9, .external_lex_state = 3}, - [1467] = {.lex_state = 9, .external_lex_state = 3}, + [1467] = {.lex_state = 14, .external_lex_state = 3}, [1468] = {.lex_state = 9, .external_lex_state = 3}, - [1469] = {.lex_state = 14, .external_lex_state = 3}, + [1469] = {.lex_state = 9, .external_lex_state = 3}, [1470] = {.lex_state = 9, .external_lex_state = 3}, [1471] = {.lex_state = 14, .external_lex_state = 3}, - [1472] = {.lex_state = 9, .external_lex_state = 3}, + [1472] = {.lex_state = 14, .external_lex_state = 3}, [1473] = {.lex_state = 9, .external_lex_state = 3}, - [1474] = {.lex_state = 14, .external_lex_state = 3}, - [1475] = {.lex_state = 14, .external_lex_state = 3}, + [1474] = {.lex_state = 18, .external_lex_state = 3}, + [1475] = {.lex_state = 15, .external_lex_state = 3}, [1476] = {.lex_state = 7, .external_lex_state = 3}, - [1477] = {.lex_state = 7, .external_lex_state = 3}, - [1478] = {.lex_state = 15, .external_lex_state = 3}, + [1477] = {.lex_state = 9, .external_lex_state = 3}, + [1478] = {.lex_state = 7, .external_lex_state = 3}, [1479] = {.lex_state = 7, .external_lex_state = 3}, - [1480] = {.lex_state = 9, .external_lex_state = 3}, + [1480] = {.lex_state = 7, .external_lex_state = 3}, [1481] = {.lex_state = 7, .external_lex_state = 3}, - [1482] = {.lex_state = 7, .external_lex_state = 3}, + [1482] = {.lex_state = 18, .external_lex_state = 3}, [1483] = {.lex_state = 18, .external_lex_state = 3}, [1484] = {.lex_state = 7, .external_lex_state = 3}, [1485] = {.lex_state = 7, .external_lex_state = 3}, - [1486] = {.lex_state = 18, .external_lex_state = 3}, + [1486] = {.lex_state = 7, .external_lex_state = 3}, [1487] = {.lex_state = 7, .external_lex_state = 3}, [1488] = {.lex_state = 7, .external_lex_state = 3}, - [1489] = {.lex_state = 4, .external_lex_state = 3}, + [1489] = {.lex_state = 7, .external_lex_state = 3}, [1490] = {.lex_state = 7, .external_lex_state = 3}, - [1491] = {.lex_state = 15, .external_lex_state = 3}, + [1491] = {.lex_state = 18, .external_lex_state = 3}, [1492] = {.lex_state = 7, .external_lex_state = 3}, - [1493] = {.lex_state = 7, .external_lex_state = 3}, + [1493] = {.lex_state = 18, .external_lex_state = 3}, [1494] = {.lex_state = 7, .external_lex_state = 3}, [1495] = {.lex_state = 7, .external_lex_state = 3}, [1496] = {.lex_state = 7, .external_lex_state = 3}, - [1497] = {.lex_state = 7, .external_lex_state = 3}, - [1498] = {.lex_state = 18, .external_lex_state = 3}, - [1499] = {.lex_state = 15, .external_lex_state = 3}, + [1497] = {.lex_state = 18, .external_lex_state = 3}, + [1498] = {.lex_state = 7, .external_lex_state = 3}, + [1499] = {.lex_state = 18, .external_lex_state = 3}, [1500] = {.lex_state = 7, .external_lex_state = 3}, - [1501] = {.lex_state = 18, .external_lex_state = 3}, + [1501] = {.lex_state = 7, .external_lex_state = 3}, [1502] = {.lex_state = 7, .external_lex_state = 3}, [1503] = {.lex_state = 7, .external_lex_state = 3}, - [1504] = {.lex_state = 18, .external_lex_state = 3}, - [1505] = {.lex_state = 7, .external_lex_state = 3}, - [1506] = {.lex_state = 7, .external_lex_state = 3}, - [1507] = {.lex_state = 7, .external_lex_state = 3}, + [1504] = {.lex_state = 15, .external_lex_state = 3}, + [1505] = {.lex_state = 4, .external_lex_state = 3}, + [1506] = {.lex_state = 18, .external_lex_state = 3}, + [1507] = {.lex_state = 18, .external_lex_state = 3}, [1508] = {.lex_state = 7, .external_lex_state = 3}, [1509] = {.lex_state = 7, .external_lex_state = 3}, [1510] = {.lex_state = 7, .external_lex_state = 3}, @@ -16155,134 +16157,134 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1515] = {.lex_state = 7, .external_lex_state = 3}, [1516] = {.lex_state = 7, .external_lex_state = 3}, [1517] = {.lex_state = 7, .external_lex_state = 3}, - [1518] = {.lex_state = 18, .external_lex_state = 3}, + [1518] = {.lex_state = 7, .external_lex_state = 3}, [1519] = {.lex_state = 7, .external_lex_state = 3}, - [1520] = {.lex_state = 18, .external_lex_state = 3}, + [1520] = {.lex_state = 7, .external_lex_state = 3}, [1521] = {.lex_state = 7, .external_lex_state = 3}, - [1522] = {.lex_state = 18, .external_lex_state = 3}, - [1523] = {.lex_state = 18, .external_lex_state = 3}, + [1522] = {.lex_state = 15, .external_lex_state = 3}, + [1523] = {.lex_state = 7, .external_lex_state = 3}, [1524] = {.lex_state = 7, .external_lex_state = 3}, [1525] = {.lex_state = 7, .external_lex_state = 3}, - [1526] = {.lex_state = 15, .external_lex_state = 3}, - [1527] = {.lex_state = 15, .external_lex_state = 3}, - [1528] = {.lex_state = 7, .external_lex_state = 3}, - [1529] = {.lex_state = 7, .external_lex_state = 3}, + [1526] = {.lex_state = 7, .external_lex_state = 3}, + [1527] = {.lex_state = 7, .external_lex_state = 3}, + [1528] = {.lex_state = 4, .external_lex_state = 3}, + [1529] = {.lex_state = 15, .external_lex_state = 3}, [1530] = {.lex_state = 7, .external_lex_state = 3}, - [1531] = {.lex_state = 7, .external_lex_state = 3}, + [1531] = {.lex_state = 15, .external_lex_state = 3}, [1532] = {.lex_state = 15, .external_lex_state = 3}, - [1533] = {.lex_state = 7, .external_lex_state = 3}, + [1533] = {.lex_state = 15, .external_lex_state = 3}, [1534] = {.lex_state = 15, .external_lex_state = 3}, - [1535] = {.lex_state = 4, .external_lex_state = 3}, + [1535] = {.lex_state = 7, .external_lex_state = 3}, [1536] = {.lex_state = 15, .external_lex_state = 3}, [1537] = {.lex_state = 7, .external_lex_state = 3}, - [1538] = {.lex_state = 15, .external_lex_state = 3}, - [1539] = {.lex_state = 14, .external_lex_state = 3}, - [1540] = {.lex_state = 4, .external_lex_state = 3}, - [1541] = {.lex_state = 15, .external_lex_state = 3}, + [1538] = {.lex_state = 7, .external_lex_state = 3}, + [1539] = {.lex_state = 7, .external_lex_state = 3}, + [1540] = {.lex_state = 7, .external_lex_state = 3}, + [1541] = {.lex_state = 7, .external_lex_state = 3}, [1542] = {.lex_state = 7, .external_lex_state = 3}, [1543] = {.lex_state = 7, .external_lex_state = 3}, - [1544] = {.lex_state = 7, .external_lex_state = 3}, - [1545] = {.lex_state = 7, .external_lex_state = 3}, - [1546] = {.lex_state = 7, .external_lex_state = 3}, + [1544] = {.lex_state = 0, .external_lex_state = 3}, + [1545] = {.lex_state = 4, .external_lex_state = 3}, + [1546] = {.lex_state = 4, .external_lex_state = 3}, [1547] = {.lex_state = 7, .external_lex_state = 3}, - [1548] = {.lex_state = 7, .external_lex_state = 3}, - [1549] = {.lex_state = 15, .external_lex_state = 3}, + [1548] = {.lex_state = 15, .external_lex_state = 3}, + [1549] = {.lex_state = 7, .external_lex_state = 3}, [1550] = {.lex_state = 7, .external_lex_state = 3}, - [1551] = {.lex_state = 15, .external_lex_state = 3}, - [1552] = {.lex_state = 7, .external_lex_state = 3}, + [1551] = {.lex_state = 7, .external_lex_state = 3}, + [1552] = {.lex_state = 4, .external_lex_state = 3}, [1553] = {.lex_state = 7, .external_lex_state = 3}, [1554] = {.lex_state = 7, .external_lex_state = 3}, - [1555] = {.lex_state = 7, .external_lex_state = 3}, + [1555] = {.lex_state = 15, .external_lex_state = 3}, [1556] = {.lex_state = 7, .external_lex_state = 3}, - [1557] = {.lex_state = 7, .external_lex_state = 3}, + [1557] = {.lex_state = 4, .external_lex_state = 3}, [1558] = {.lex_state = 7, .external_lex_state = 3}, - [1559] = {.lex_state = 4, .external_lex_state = 3}, + [1559] = {.lex_state = 7, .external_lex_state = 3}, [1560] = {.lex_state = 7, .external_lex_state = 3}, - [1561] = {.lex_state = 0, .external_lex_state = 3}, + [1561] = {.lex_state = 14, .external_lex_state = 3}, [1562] = {.lex_state = 7, .external_lex_state = 3}, - [1563] = {.lex_state = 7, .external_lex_state = 3}, - [1564] = {.lex_state = 4, .external_lex_state = 3}, + [1563] = {.lex_state = 15, .external_lex_state = 3}, + [1564] = {.lex_state = 7, .external_lex_state = 3}, [1565] = {.lex_state = 4, .external_lex_state = 3}, - [1566] = {.lex_state = 7, .external_lex_state = 3}, + [1566] = {.lex_state = 0, .external_lex_state = 3}, [1567] = {.lex_state = 7, .external_lex_state = 3}, [1568] = {.lex_state = 7, .external_lex_state = 3}, [1569] = {.lex_state = 7, .external_lex_state = 3}, - [1570] = {.lex_state = 15, .external_lex_state = 3}, + [1570] = {.lex_state = 7, .external_lex_state = 3}, [1571] = {.lex_state = 7, .external_lex_state = 3}, - [1572] = {.lex_state = 4, .external_lex_state = 3}, + [1572] = {.lex_state = 7, .external_lex_state = 3}, [1573] = {.lex_state = 7, .external_lex_state = 3}, - [1574] = {.lex_state = 7, .external_lex_state = 3}, + [1574] = {.lex_state = 15, .external_lex_state = 3}, [1575] = {.lex_state = 7, .external_lex_state = 3}, [1576] = {.lex_state = 0, .external_lex_state = 3}, - [1577] = {.lex_state = 0, .external_lex_state = 3}, + [1577] = {.lex_state = 7, .external_lex_state = 3}, [1578] = {.lex_state = 0, .external_lex_state = 3}, [1579] = {.lex_state = 0, .external_lex_state = 3}, [1580] = {.lex_state = 0, .external_lex_state = 3}, - [1581] = {.lex_state = 7, .external_lex_state = 3}, - [1582] = {.lex_state = 7, .external_lex_state = 3}, - [1583] = {.lex_state = 0, .external_lex_state = 3}, + [1581] = {.lex_state = 0, .external_lex_state = 3}, + [1582] = {.lex_state = 0, .external_lex_state = 3}, + [1583] = {.lex_state = 7, .external_lex_state = 3}, [1584] = {.lex_state = 0, .external_lex_state = 3}, - [1585] = {.lex_state = 0, .external_lex_state = 3}, - [1586] = {.lex_state = 0, .external_lex_state = 3}, + [1585] = {.lex_state = 7, .external_lex_state = 3}, + [1586] = {.lex_state = 7, .external_lex_state = 3}, [1587] = {.lex_state = 0, .external_lex_state = 3}, - [1588] = {.lex_state = 0, .external_lex_state = 3}, - [1589] = {.lex_state = 7, .external_lex_state = 3}, - [1590] = {.lex_state = 15, .external_lex_state = 3}, - [1591] = {.lex_state = 0, .external_lex_state = 3}, + [1588] = {.lex_state = 7, .external_lex_state = 3}, + [1589] = {.lex_state = 15, .external_lex_state = 3}, + [1590] = {.lex_state = 0, .external_lex_state = 3}, + [1591] = {.lex_state = 7, .external_lex_state = 3}, [1592] = {.lex_state = 0, .external_lex_state = 3}, [1593] = {.lex_state = 7, .external_lex_state = 3}, - [1594] = {.lex_state = 7, .external_lex_state = 3}, + [1594] = {.lex_state = 0, .external_lex_state = 3}, [1595] = {.lex_state = 7, .external_lex_state = 3}, - [1596] = {.lex_state = 0, .external_lex_state = 3}, - [1597] = {.lex_state = 15, .external_lex_state = 3}, - [1598] = {.lex_state = 7, .external_lex_state = 3}, - [1599] = {.lex_state = 7, .external_lex_state = 3}, - [1600] = {.lex_state = 15, .external_lex_state = 3}, + [1596] = {.lex_state = 4, .external_lex_state = 3}, + [1597] = {.lex_state = 0, .external_lex_state = 3}, + [1598] = {.lex_state = 0, .external_lex_state = 3}, + [1599] = {.lex_state = 0, .external_lex_state = 3}, + [1600] = {.lex_state = 7, .external_lex_state = 3}, [1601] = {.lex_state = 0, .external_lex_state = 3}, [1602] = {.lex_state = 0, .external_lex_state = 3}, - [1603] = {.lex_state = 7, .external_lex_state = 3}, - [1604] = {.lex_state = 0, .external_lex_state = 3}, - [1605] = {.lex_state = 7, .external_lex_state = 3}, - [1606] = {.lex_state = 7, .external_lex_state = 3}, - [1607] = {.lex_state = 0, .external_lex_state = 3}, - [1608] = {.lex_state = 7, .external_lex_state = 3}, - [1609] = {.lex_state = 0, .external_lex_state = 3}, + [1603] = {.lex_state = 0, .external_lex_state = 3}, + [1604] = {.lex_state = 15, .external_lex_state = 3}, + [1605] = {.lex_state = 0, .external_lex_state = 3}, + [1606] = {.lex_state = 0, .external_lex_state = 3}, + [1607] = {.lex_state = 15, .external_lex_state = 3}, + [1608] = {.lex_state = 0, .external_lex_state = 3}, + [1609] = {.lex_state = 7, .external_lex_state = 3}, [1610] = {.lex_state = 0, .external_lex_state = 3}, - [1611] = {.lex_state = 4, .external_lex_state = 3}, - [1612] = {.lex_state = 0, .external_lex_state = 3}, - [1613] = {.lex_state = 0, .external_lex_state = 3}, + [1611] = {.lex_state = 7, .external_lex_state = 3}, + [1612] = {.lex_state = 7, .external_lex_state = 3}, + [1613] = {.lex_state = 7, .external_lex_state = 3}, [1614] = {.lex_state = 7, .external_lex_state = 3}, - [1615] = {.lex_state = 4, .external_lex_state = 3}, - [1616] = {.lex_state = 10, .external_lex_state = 3}, + [1615] = {.lex_state = 18, .external_lex_state = 3}, + [1616] = {.lex_state = 7, .external_lex_state = 3}, [1617] = {.lex_state = 7, .external_lex_state = 3}, - [1618] = {.lex_state = 7, .external_lex_state = 3}, + [1618] = {.lex_state = 10, .external_lex_state = 3}, [1619] = {.lex_state = 7, .external_lex_state = 3}, - [1620] = {.lex_state = 15, .external_lex_state = 3}, + [1620] = {.lex_state = 10, .external_lex_state = 3}, [1621] = {.lex_state = 7, .external_lex_state = 3}, [1622] = {.lex_state = 7, .external_lex_state = 3}, - [1623] = {.lex_state = 10, .external_lex_state = 3}, - [1624] = {.lex_state = 10, .external_lex_state = 3}, + [1623] = {.lex_state = 7, .external_lex_state = 3}, + [1624] = {.lex_state = 7, .external_lex_state = 3}, [1625] = {.lex_state = 7, .external_lex_state = 3}, [1626] = {.lex_state = 7, .external_lex_state = 3}, [1627] = {.lex_state = 7, .external_lex_state = 3}, - [1628] = {.lex_state = 7, .external_lex_state = 3}, - [1629] = {.lex_state = 7, .external_lex_state = 3}, - [1630] = {.lex_state = 7, .external_lex_state = 3}, + [1628] = {.lex_state = 58, .external_lex_state = 3}, + [1629] = {.lex_state = 18, .external_lex_state = 3}, + [1630] = {.lex_state = 18, .external_lex_state = 3}, [1631] = {.lex_state = 7, .external_lex_state = 3}, [1632] = {.lex_state = 7, .external_lex_state = 3}, [1633] = {.lex_state = 7, .external_lex_state = 3}, - [1634] = {.lex_state = 10, .external_lex_state = 3}, - [1635] = {.lex_state = 7, .external_lex_state = 3}, + [1634] = {.lex_state = 7, .external_lex_state = 3}, + [1635] = {.lex_state = 14, .external_lex_state = 3}, [1636] = {.lex_state = 7, .external_lex_state = 3}, - [1637] = {.lex_state = 14, .external_lex_state = 3}, + [1637] = {.lex_state = 7, .external_lex_state = 3}, [1638] = {.lex_state = 7, .external_lex_state = 3}, - [1639] = {.lex_state = 0, .external_lex_state = 3}, - [1640] = {.lex_state = 4, .external_lex_state = 3}, - [1641] = {.lex_state = 7, .external_lex_state = 3}, - [1642] = {.lex_state = 14, .external_lex_state = 3}, + [1639] = {.lex_state = 7, .external_lex_state = 3}, + [1640] = {.lex_state = 7, .external_lex_state = 3}, + [1641] = {.lex_state = 14, .external_lex_state = 3}, + [1642] = {.lex_state = 7, .external_lex_state = 3}, [1643] = {.lex_state = 7, .external_lex_state = 3}, - [1644] = {.lex_state = 7, .external_lex_state = 3}, - [1645] = {.lex_state = 4, .external_lex_state = 3}, + [1644] = {.lex_state = 10, .external_lex_state = 3}, + [1645] = {.lex_state = 7, .external_lex_state = 3}, [1646] = {.lex_state = 7, .external_lex_state = 3}, [1647] = {.lex_state = 7, .external_lex_state = 3}, [1648] = {.lex_state = 7, .external_lex_state = 3}, @@ -16290,479 +16292,479 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1650] = {.lex_state = 7, .external_lex_state = 3}, [1651] = {.lex_state = 7, .external_lex_state = 3}, [1652] = {.lex_state = 7, .external_lex_state = 3}, - [1653] = {.lex_state = 7, .external_lex_state = 3}, - [1654] = {.lex_state = 7, .external_lex_state = 3}, + [1653] = {.lex_state = 4, .external_lex_state = 3}, + [1654] = {.lex_state = 18, .external_lex_state = 3}, [1655] = {.lex_state = 7, .external_lex_state = 3}, [1656] = {.lex_state = 7, .external_lex_state = 3}, - [1657] = {.lex_state = 18, .external_lex_state = 3}, - [1658] = {.lex_state = 7, .external_lex_state = 3}, + [1657] = {.lex_state = 7, .external_lex_state = 3}, + [1658] = {.lex_state = 0, .external_lex_state = 3}, [1659] = {.lex_state = 7, .external_lex_state = 3}, [1660] = {.lex_state = 7, .external_lex_state = 3}, - [1661] = {.lex_state = 7, .external_lex_state = 3}, + [1661] = {.lex_state = 10, .external_lex_state = 3}, [1662] = {.lex_state = 7, .external_lex_state = 3}, - [1663] = {.lex_state = 18, .external_lex_state = 3}, + [1663] = {.lex_state = 7, .external_lex_state = 3}, [1664] = {.lex_state = 7, .external_lex_state = 3}, - [1665] = {.lex_state = 58, .external_lex_state = 3}, + [1665] = {.lex_state = 0, .external_lex_state = 3}, [1666] = {.lex_state = 18, .external_lex_state = 3}, - [1667] = {.lex_state = 18, .external_lex_state = 3}, + [1667] = {.lex_state = 7, .external_lex_state = 3}, [1668] = {.lex_state = 7, .external_lex_state = 3}, - [1669] = {.lex_state = 58, .external_lex_state = 3}, - [1670] = {.lex_state = 18, .external_lex_state = 3}, + [1669] = {.lex_state = 7, .external_lex_state = 3}, + [1670] = {.lex_state = 7, .external_lex_state = 3}, [1671] = {.lex_state = 7, .external_lex_state = 3}, [1672] = {.lex_state = 7, .external_lex_state = 3}, - [1673] = {.lex_state = 7, .external_lex_state = 3}, + [1673] = {.lex_state = 4, .external_lex_state = 3}, [1674] = {.lex_state = 7, .external_lex_state = 3}, - [1675] = {.lex_state = 18, .external_lex_state = 3}, + [1675] = {.lex_state = 7, .external_lex_state = 3}, [1676] = {.lex_state = 7, .external_lex_state = 3}, - [1677] = {.lex_state = 10, .external_lex_state = 3}, + [1677] = {.lex_state = 18, .external_lex_state = 3}, [1678] = {.lex_state = 7, .external_lex_state = 3}, [1679] = {.lex_state = 7, .external_lex_state = 3}, - [1680] = {.lex_state = 18, .external_lex_state = 3}, - [1681] = {.lex_state = 18, .external_lex_state = 3}, - [1682] = {.lex_state = 7, .external_lex_state = 3}, + [1680] = {.lex_state = 10, .external_lex_state = 3}, + [1681] = {.lex_state = 58, .external_lex_state = 3}, + [1682] = {.lex_state = 4, .external_lex_state = 3}, [1683] = {.lex_state = 7, .external_lex_state = 3}, [1684] = {.lex_state = 7, .external_lex_state = 3}, - [1685] = {.lex_state = 4, .external_lex_state = 3}, - [1686] = {.lex_state = 0, .external_lex_state = 3}, - [1687] = {.lex_state = 7, .external_lex_state = 3}, + [1685] = {.lex_state = 7, .external_lex_state = 3}, + [1686] = {.lex_state = 7, .external_lex_state = 3}, + [1687] = {.lex_state = 18, .external_lex_state = 3}, [1688] = {.lex_state = 7, .external_lex_state = 3}, - [1689] = {.lex_state = 0, .external_lex_state = 3}, - [1690] = {.lex_state = 10, .external_lex_state = 3}, - [1691] = {.lex_state = 7, .external_lex_state = 3}, + [1689] = {.lex_state = 7, .external_lex_state = 3}, + [1690] = {.lex_state = 18, .external_lex_state = 3}, + [1691] = {.lex_state = 18, .external_lex_state = 3}, [1692] = {.lex_state = 7, .external_lex_state = 3}, [1693] = {.lex_state = 7, .external_lex_state = 3}, [1694] = {.lex_state = 7, .external_lex_state = 3}, - [1695] = {.lex_state = 7, .external_lex_state = 3}, - [1696] = {.lex_state = 7, .external_lex_state = 3}, - [1697] = {.lex_state = 7, .external_lex_state = 3}, + [1695] = {.lex_state = 15, .external_lex_state = 3}, + [1696] = {.lex_state = 4, .external_lex_state = 3}, + [1697] = {.lex_state = 10, .external_lex_state = 3}, [1698] = {.lex_state = 7, .external_lex_state = 3}, - [1699] = {.lex_state = 7, .external_lex_state = 3}, + [1699] = {.lex_state = 0, .external_lex_state = 3}, [1700] = {.lex_state = 18, .external_lex_state = 3}, [1701] = {.lex_state = 7, .external_lex_state = 3}, [1702] = {.lex_state = 7, .external_lex_state = 3}, [1703] = {.lex_state = 7, .external_lex_state = 3}, [1704] = {.lex_state = 7, .external_lex_state = 3}, [1705] = {.lex_state = 7, .external_lex_state = 3}, - [1706] = {.lex_state = 18, .external_lex_state = 3}, - [1707] = {.lex_state = 10, .external_lex_state = 3}, + [1706] = {.lex_state = 7, .external_lex_state = 3}, + [1707] = {.lex_state = 18, .external_lex_state = 3}, [1708] = {.lex_state = 18, .external_lex_state = 3}, - [1709] = {.lex_state = 7, .external_lex_state = 3}, - [1710] = {.lex_state = 10, .external_lex_state = 3}, - [1711] = {.lex_state = 58, .external_lex_state = 3}, - [1712] = {.lex_state = 10, .external_lex_state = 3}, - [1713] = {.lex_state = 18, .external_lex_state = 3}, + [1709] = {.lex_state = 10, .external_lex_state = 3}, + [1710] = {.lex_state = 18, .external_lex_state = 3}, + [1711] = {.lex_state = 18, .external_lex_state = 3}, + [1712] = {.lex_state = 0, .external_lex_state = 3}, + [1713] = {.lex_state = 7, .external_lex_state = 3}, [1714] = {.lex_state = 7, .external_lex_state = 3}, - [1715] = {.lex_state = 7, .external_lex_state = 3}, - [1716] = {.lex_state = 0, .external_lex_state = 3}, - [1717] = {.lex_state = 0, .external_lex_state = 3}, - [1718] = {.lex_state = 18, .external_lex_state = 3}, - [1719] = {.lex_state = 18, .external_lex_state = 3}, + [1715] = {.lex_state = 18, .external_lex_state = 3}, + [1716] = {.lex_state = 18, .external_lex_state = 3}, + [1717] = {.lex_state = 18, .external_lex_state = 3}, + [1718] = {.lex_state = 0, .external_lex_state = 3}, + [1719] = {.lex_state = 7, .external_lex_state = 3}, [1720] = {.lex_state = 0, .external_lex_state = 3}, - [1721] = {.lex_state = 18, .external_lex_state = 3}, + [1721] = {.lex_state = 7, .external_lex_state = 3}, [1722] = {.lex_state = 7, .external_lex_state = 3}, - [1723] = {.lex_state = 7, .external_lex_state = 3}, + [1723] = {.lex_state = 18, .external_lex_state = 3}, [1724] = {.lex_state = 7, .external_lex_state = 3}, - [1725] = {.lex_state = 18, .external_lex_state = 3}, - [1726] = {.lex_state = 7, .external_lex_state = 3}, - [1727] = {.lex_state = 18, .external_lex_state = 3}, - [1728] = {.lex_state = 7, .external_lex_state = 3}, - [1729] = {.lex_state = 18, .external_lex_state = 3}, + [1725] = {.lex_state = 10, .external_lex_state = 3}, + [1726] = {.lex_state = 10, .external_lex_state = 3}, + [1727] = {.lex_state = 7, .external_lex_state = 3}, + [1728] = {.lex_state = 18, .external_lex_state = 3}, + [1729] = {.lex_state = 7, .external_lex_state = 3}, [1730] = {.lex_state = 58, .external_lex_state = 3}, - [1731] = {.lex_state = 58, .external_lex_state = 3}, + [1731] = {.lex_state = 18, .external_lex_state = 3}, [1732] = {.lex_state = 7, .external_lex_state = 3}, [1733] = {.lex_state = 7, .external_lex_state = 3}, - [1734] = {.lex_state = 10, .external_lex_state = 3}, - [1735] = {.lex_state = 10, .external_lex_state = 3}, - [1736] = {.lex_state = 10, .external_lex_state = 3}, - [1737] = {.lex_state = 0, .external_lex_state = 3}, + [1734] = {.lex_state = 7, .external_lex_state = 3}, + [1735] = {.lex_state = 18, .external_lex_state = 3}, + [1736] = {.lex_state = 18, .external_lex_state = 3}, + [1737] = {.lex_state = 7, .external_lex_state = 3}, [1738] = {.lex_state = 18, .external_lex_state = 3}, - [1739] = {.lex_state = 18, .external_lex_state = 3}, - [1740] = {.lex_state = 18, .external_lex_state = 3}, - [1741] = {.lex_state = 18, .external_lex_state = 3}, - [1742] = {.lex_state = 18, .external_lex_state = 3}, - [1743] = {.lex_state = 18, .external_lex_state = 3}, - [1744] = {.lex_state = 7, .external_lex_state = 3}, + [1739] = {.lex_state = 7, .external_lex_state = 3}, + [1740] = {.lex_state = 0, .external_lex_state = 3}, + [1741] = {.lex_state = 10, .external_lex_state = 3}, + [1742] = {.lex_state = 10, .external_lex_state = 3}, + [1743] = {.lex_state = 0, .external_lex_state = 3}, + [1744] = {.lex_state = 0, .external_lex_state = 3}, [1745] = {.lex_state = 7, .external_lex_state = 3}, - [1746] = {.lex_state = 0, .external_lex_state = 3}, - [1747] = {.lex_state = 7, .external_lex_state = 3}, + [1746] = {.lex_state = 18, .external_lex_state = 3}, + [1747] = {.lex_state = 58, .external_lex_state = 3}, [1748] = {.lex_state = 18, .external_lex_state = 3}, [1749] = {.lex_state = 7, .external_lex_state = 3}, - [1750] = {.lex_state = 18, .external_lex_state = 3}, - [1751] = {.lex_state = 7, .external_lex_state = 3}, - [1752] = {.lex_state = 7, .external_lex_state = 3}, - [1753] = {.lex_state = 7, .external_lex_state = 3}, - [1754] = {.lex_state = 0, .external_lex_state = 3}, - [1755] = {.lex_state = 7, .external_lex_state = 3}, - [1756] = {.lex_state = 0, .external_lex_state = 3}, - [1757] = {.lex_state = 18, .external_lex_state = 3}, - [1758] = {.lex_state = 0, .external_lex_state = 3}, - [1759] = {.lex_state = 0, .external_lex_state = 3}, - [1760] = {.lex_state = 58, .external_lex_state = 3}, + [1750] = {.lex_state = 0, .external_lex_state = 3}, + [1751] = {.lex_state = 18, .external_lex_state = 3}, + [1752] = {.lex_state = 0, .external_lex_state = 3}, + [1753] = {.lex_state = 10, .external_lex_state = 3}, + [1754] = {.lex_state = 58, .external_lex_state = 3}, + [1755] = {.lex_state = 18, .external_lex_state = 3}, + [1756] = {.lex_state = 7, .external_lex_state = 3}, + [1757] = {.lex_state = 0, .external_lex_state = 3}, + [1758] = {.lex_state = 58, .external_lex_state = 3}, + [1759] = {.lex_state = 58, .external_lex_state = 3}, + [1760] = {.lex_state = 0, .external_lex_state = 3}, [1761] = {.lex_state = 7, .external_lex_state = 3}, - [1762] = {.lex_state = 58, .external_lex_state = 3}, - [1763] = {.lex_state = 7, .external_lex_state = 3}, - [1764] = {.lex_state = 58, .external_lex_state = 3}, + [1762] = {.lex_state = 4, .external_lex_state = 4}, + [1763] = {.lex_state = 19, .external_lex_state = 3}, + [1764] = {.lex_state = 7, .external_lex_state = 3}, [1765] = {.lex_state = 7, .external_lex_state = 3}, - [1766] = {.lex_state = 7, .external_lex_state = 3}, - [1767] = {.lex_state = 18, .external_lex_state = 3}, + [1766] = {.lex_state = 58, .external_lex_state = 3}, + [1767] = {.lex_state = 58, .external_lex_state = 3}, [1768] = {.lex_state = 7, .external_lex_state = 3}, - [1769] = {.lex_state = 7, .external_lex_state = 3}, - [1770] = {.lex_state = 0, .external_lex_state = 3}, - [1771] = {.lex_state = 58, .external_lex_state = 3}, + [1769] = {.lex_state = 0, .external_lex_state = 3}, + [1770] = {.lex_state = 18, .external_lex_state = 3}, + [1771] = {.lex_state = 7, .external_lex_state = 3}, [1772] = {.lex_state = 7, .external_lex_state = 3}, - [1773] = {.lex_state = 58, .external_lex_state = 3}, - [1774] = {.lex_state = 58, .external_lex_state = 3}, + [1773] = {.lex_state = 18, .external_lex_state = 3}, + [1774] = {.lex_state = 4, .external_lex_state = 4}, [1775] = {.lex_state = 58, .external_lex_state = 3}, - [1776] = {.lex_state = 4, .external_lex_state = 4}, - [1777] = {.lex_state = 0, .external_lex_state = 3}, + [1776] = {.lex_state = 7, .external_lex_state = 3}, + [1777] = {.lex_state = 58, .external_lex_state = 3}, [1778] = {.lex_state = 7, .external_lex_state = 3}, - [1779] = {.lex_state = 18, .external_lex_state = 3}, - [1780] = {.lex_state = 0, .external_lex_state = 3}, + [1779] = {.lex_state = 0, .external_lex_state = 3}, + [1780] = {.lex_state = 7, .external_lex_state = 3}, [1781] = {.lex_state = 58, .external_lex_state = 3}, [1782] = {.lex_state = 7, .external_lex_state = 3}, [1783] = {.lex_state = 7, .external_lex_state = 3}, [1784] = {.lex_state = 0, .external_lex_state = 3}, - [1785] = {.lex_state = 19, .external_lex_state = 3}, + [1785] = {.lex_state = 58, .external_lex_state = 3}, [1786] = {.lex_state = 58, .external_lex_state = 3}, - [1787] = {.lex_state = 10, .external_lex_state = 3}, - [1788] = {.lex_state = 7, .external_lex_state = 3}, - [1789] = {.lex_state = 7, .external_lex_state = 3}, + [1787] = {.lex_state = 58, .external_lex_state = 3}, + [1788] = {.lex_state = 18, .external_lex_state = 3}, + [1789] = {.lex_state = 58, .external_lex_state = 3}, [1790] = {.lex_state = 0, .external_lex_state = 3}, - [1791] = {.lex_state = 0, .external_lex_state = 3}, - [1792] = {.lex_state = 18, .external_lex_state = 3}, - [1793] = {.lex_state = 58, .external_lex_state = 3}, - [1794] = {.lex_state = 7, .external_lex_state = 3}, + [1791] = {.lex_state = 58, .external_lex_state = 3}, + [1792] = {.lex_state = 0, .external_lex_state = 3}, + [1793] = {.lex_state = 4, .external_lex_state = 4}, + [1794] = {.lex_state = 0, .external_lex_state = 3}, [1795] = {.lex_state = 58, .external_lex_state = 3}, [1796] = {.lex_state = 7, .external_lex_state = 3}, - [1797] = {.lex_state = 4, .external_lex_state = 4}, - [1798] = {.lex_state = 58, .external_lex_state = 3}, - [1799] = {.lex_state = 7, .external_lex_state = 3}, - [1800] = {.lex_state = 18, .external_lex_state = 3}, - [1801] = {.lex_state = 7, .external_lex_state = 3}, - [1802] = {.lex_state = 0, .external_lex_state = 3}, - [1803] = {.lex_state = 7, .external_lex_state = 3}, - [1804] = {.lex_state = 0, .external_lex_state = 3}, + [1797] = {.lex_state = 7, .external_lex_state = 3}, + [1798] = {.lex_state = 18, .external_lex_state = 3}, + [1799] = {.lex_state = 58, .external_lex_state = 3}, + [1800] = {.lex_state = 7, .external_lex_state = 3}, + [1801] = {.lex_state = 4, .external_lex_state = 4}, + [1802] = {.lex_state = 58, .external_lex_state = 3}, + [1803] = {.lex_state = 0, .external_lex_state = 3}, + [1804] = {.lex_state = 58, .external_lex_state = 3}, [1805] = {.lex_state = 4, .external_lex_state = 4}, - [1806] = {.lex_state = 7, .external_lex_state = 3}, + [1806] = {.lex_state = 0, .external_lex_state = 3}, [1807] = {.lex_state = 7, .external_lex_state = 3}, - [1808] = {.lex_state = 7, .external_lex_state = 3}, + [1808] = {.lex_state = 0, .external_lex_state = 3}, [1809] = {.lex_state = 7, .external_lex_state = 3}, - [1810] = {.lex_state = 19, .external_lex_state = 3}, - [1811] = {.lex_state = 10, .external_lex_state = 3}, - [1812] = {.lex_state = 0, .external_lex_state = 3}, - [1813] = {.lex_state = 58, .external_lex_state = 3}, + [1810] = {.lex_state = 58, .external_lex_state = 3}, + [1811] = {.lex_state = 7, .external_lex_state = 3}, + [1812] = {.lex_state = 7, .external_lex_state = 3}, + [1813] = {.lex_state = 10, .external_lex_state = 3}, [1814] = {.lex_state = 7, .external_lex_state = 3}, - [1815] = {.lex_state = 4, .external_lex_state = 4}, - [1816] = {.lex_state = 58, .external_lex_state = 3}, + [1815] = {.lex_state = 7, .external_lex_state = 3}, + [1816] = {.lex_state = 7, .external_lex_state = 3}, [1817] = {.lex_state = 7, .external_lex_state = 3}, - [1818] = {.lex_state = 4, .external_lex_state = 4}, - [1819] = {.lex_state = 19, .external_lex_state = 3}, - [1820] = {.lex_state = 58, .external_lex_state = 3}, + [1818] = {.lex_state = 0, .external_lex_state = 3}, + [1819] = {.lex_state = 7, .external_lex_state = 3}, + [1820] = {.lex_state = 18, .external_lex_state = 3}, [1821] = {.lex_state = 58, .external_lex_state = 3}, - [1822] = {.lex_state = 7, .external_lex_state = 3}, - [1823] = {.lex_state = 7, .external_lex_state = 3}, - [1824] = {.lex_state = 7, .external_lex_state = 3}, - [1825] = {.lex_state = 58, .external_lex_state = 3}, - [1826] = {.lex_state = 58, .external_lex_state = 3}, - [1827] = {.lex_state = 0, .external_lex_state = 3}, - [1828] = {.lex_state = 0, .external_lex_state = 3}, - [1829] = {.lex_state = 7, .external_lex_state = 3}, + [1822] = {.lex_state = 58, .external_lex_state = 3}, + [1823] = {.lex_state = 58, .external_lex_state = 3}, + [1824] = {.lex_state = 19, .external_lex_state = 3}, + [1825] = {.lex_state = 0, .external_lex_state = 3}, + [1826] = {.lex_state = 7, .external_lex_state = 3}, + [1827] = {.lex_state = 58, .external_lex_state = 3}, + [1828] = {.lex_state = 7, .external_lex_state = 3}, + [1829] = {.lex_state = 4, .external_lex_state = 4}, [1830] = {.lex_state = 7, .external_lex_state = 3}, - [1831] = {.lex_state = 7, .external_lex_state = 3}, - [1832] = {.lex_state = 7, .external_lex_state = 3}, - [1833] = {.lex_state = 4, .external_lex_state = 4}, - [1834] = {.lex_state = 7, .external_lex_state = 3}, - [1835] = {.lex_state = 4, .external_lex_state = 4}, - [1836] = {.lex_state = 58, .external_lex_state = 3}, - [1837] = {.lex_state = 0, .external_lex_state = 3}, - [1838] = {.lex_state = 58, .external_lex_state = 3}, - [1839] = {.lex_state = 58, .external_lex_state = 3}, - [1840] = {.lex_state = 58, .external_lex_state = 3}, - [1841] = {.lex_state = 0, .external_lex_state = 3}, + [1831] = {.lex_state = 58, .external_lex_state = 3}, + [1832] = {.lex_state = 18, .external_lex_state = 3}, + [1833] = {.lex_state = 58, .external_lex_state = 3}, + [1834] = {.lex_state = 0, .external_lex_state = 3}, + [1835] = {.lex_state = 58, .external_lex_state = 3}, + [1836] = {.lex_state = 19, .external_lex_state = 3}, + [1837] = {.lex_state = 58, .external_lex_state = 3}, + [1838] = {.lex_state = 7, .external_lex_state = 3}, + [1839] = {.lex_state = 4, .external_lex_state = 4}, + [1840] = {.lex_state = 7, .external_lex_state = 3}, + [1841] = {.lex_state = 7, .external_lex_state = 3}, [1842] = {.lex_state = 18, .external_lex_state = 3}, - [1843] = {.lex_state = 58, .external_lex_state = 3}, - [1844] = {.lex_state = 0, .external_lex_state = 3}, - [1845] = {.lex_state = 58, .external_lex_state = 3}, - [1846] = {.lex_state = 0, .external_lex_state = 3}, + [1843] = {.lex_state = 0, .external_lex_state = 3}, + [1844] = {.lex_state = 7, .external_lex_state = 3}, + [1845] = {.lex_state = 0, .external_lex_state = 3}, + [1846] = {.lex_state = 58, .external_lex_state = 3}, [1847] = {.lex_state = 19, .external_lex_state = 3}, - [1848] = {.lex_state = 58, .external_lex_state = 3}, + [1848] = {.lex_state = 0, .external_lex_state = 3}, [1849] = {.lex_state = 4, .external_lex_state = 4}, - [1850] = {.lex_state = 4, .external_lex_state = 4}, - [1851] = {.lex_state = 0, .external_lex_state = 3}, - [1852] = {.lex_state = 7, .external_lex_state = 3}, - [1853] = {.lex_state = 18, .external_lex_state = 3}, - [1854] = {.lex_state = 58, .external_lex_state = 3}, + [1850] = {.lex_state = 10, .external_lex_state = 3}, + [1851] = {.lex_state = 7, .external_lex_state = 3}, + [1852] = {.lex_state = 58, .external_lex_state = 3}, + [1853] = {.lex_state = 4, .external_lex_state = 4}, + [1854] = {.lex_state = 7, .external_lex_state = 3}, [1855] = {.lex_state = 58, .external_lex_state = 3}, - [1856] = {.lex_state = 18, .external_lex_state = 3}, - [1857] = {.lex_state = 58, .external_lex_state = 3}, + [1856] = {.lex_state = 7, .external_lex_state = 3}, + [1857] = {.lex_state = 3, .external_lex_state = 3}, [1858] = {.lex_state = 0, .external_lex_state = 3}, - [1859] = {.lex_state = 0, .external_lex_state = 3}, - [1860] = {.lex_state = 0, .external_lex_state = 3}, + [1859] = {.lex_state = 58, .external_lex_state = 3}, + [1860] = {.lex_state = 58, .external_lex_state = 3}, [1861] = {.lex_state = 0, .external_lex_state = 3}, - [1862] = {.lex_state = 58, .external_lex_state = 3}, - [1863] = {.lex_state = 0, .external_lex_state = 3}, - [1864] = {.lex_state = 0, .external_lex_state = 3}, - [1865] = {.lex_state = 58, .external_lex_state = 3}, + [1862] = {.lex_state = 3, .external_lex_state = 3}, + [1863] = {.lex_state = 3, .external_lex_state = 3}, + [1864] = {.lex_state = 58, .external_lex_state = 3}, + [1865] = {.lex_state = 0, .external_lex_state = 3}, [1866] = {.lex_state = 0, .external_lex_state = 3}, - [1867] = {.lex_state = 0, .external_lex_state = 3}, + [1867] = {.lex_state = 58, .external_lex_state = 3}, [1868] = {.lex_state = 0, .external_lex_state = 3}, [1869] = {.lex_state = 58, .external_lex_state = 3}, - [1870] = {.lex_state = 3, .external_lex_state = 3}, + [1870] = {.lex_state = 58, .external_lex_state = 3}, [1871] = {.lex_state = 0, .external_lex_state = 3}, - [1872] = {.lex_state = 0, .external_lex_state = 3}, - [1873] = {.lex_state = 3, .external_lex_state = 3}, + [1872] = {.lex_state = 58, .external_lex_state = 3}, + [1873] = {.lex_state = 0, .external_lex_state = 3}, [1874] = {.lex_state = 58, .external_lex_state = 3}, - [1875] = {.lex_state = 7, .external_lex_state = 3}, - [1876] = {.lex_state = 3, .external_lex_state = 3}, - [1877] = {.lex_state = 58, .external_lex_state = 3}, - [1878] = {.lex_state = 3, .external_lex_state = 3}, - [1879] = {.lex_state = 10, .external_lex_state = 3}, + [1875] = {.lex_state = 58, .external_lex_state = 3}, + [1876] = {.lex_state = 0, .external_lex_state = 3}, + [1877] = {.lex_state = 0, .external_lex_state = 3}, + [1878] = {.lex_state = 0, .external_lex_state = 3}, + [1879] = {.lex_state = 58, .external_lex_state = 3}, [1880] = {.lex_state = 0, .external_lex_state = 3}, [1881] = {.lex_state = 58, .external_lex_state = 3}, [1882] = {.lex_state = 0, .external_lex_state = 3}, [1883] = {.lex_state = 58, .external_lex_state = 3}, - [1884] = {.lex_state = 0, .external_lex_state = 3}, - [1885] = {.lex_state = 58, .external_lex_state = 3}, - [1886] = {.lex_state = 58, .external_lex_state = 3}, + [1884] = {.lex_state = 7, .external_lex_state = 3}, + [1885] = {.lex_state = 3, .external_lex_state = 3}, + [1886] = {.lex_state = 0, .external_lex_state = 3}, [1887] = {.lex_state = 0, .external_lex_state = 3}, - [1888] = {.lex_state = 0, .external_lex_state = 3}, + [1888] = {.lex_state = 3, .external_lex_state = 3}, [1889] = {.lex_state = 58, .external_lex_state = 3}, - [1890] = {.lex_state = 0, .external_lex_state = 3}, - [1891] = {.lex_state = 58, .external_lex_state = 3}, + [1890] = {.lex_state = 58, .external_lex_state = 3}, + [1891] = {.lex_state = 0, .external_lex_state = 3}, [1892] = {.lex_state = 0, .external_lex_state = 3}, - [1893] = {.lex_state = 0, .external_lex_state = 3}, - [1894] = {.lex_state = 0, .external_lex_state = 3}, - [1895] = {.lex_state = 0, .external_lex_state = 3}, - [1896] = {.lex_state = 0, .external_lex_state = 3}, - [1897] = {.lex_state = 58, .external_lex_state = 3}, - [1898] = {.lex_state = 0, .external_lex_state = 3}, + [1893] = {.lex_state = 58, .external_lex_state = 3}, + [1894] = {.lex_state = 3, .external_lex_state = 3}, + [1895] = {.lex_state = 7, .external_lex_state = 3}, + [1896] = {.lex_state = 3, .external_lex_state = 3}, + [1897] = {.lex_state = 0, .external_lex_state = 3}, + [1898] = {.lex_state = 7, .external_lex_state = 3}, [1899] = {.lex_state = 0, .external_lex_state = 3}, - [1900] = {.lex_state = 7, .external_lex_state = 3}, - [1901] = {.lex_state = 58, .external_lex_state = 3}, - [1902] = {.lex_state = 0, .external_lex_state = 3}, + [1900] = {.lex_state = 0, .external_lex_state = 3}, + [1901] = {.lex_state = 0, .external_lex_state = 3}, + [1902] = {.lex_state = 7, .external_lex_state = 3}, [1903] = {.lex_state = 0, .external_lex_state = 3}, [1904] = {.lex_state = 0, .external_lex_state = 3}, [1905] = {.lex_state = 0, .external_lex_state = 3}, - [1906] = {.lex_state = 58, .external_lex_state = 3}, + [1906] = {.lex_state = 3, .external_lex_state = 3}, [1907] = {.lex_state = 0, .external_lex_state = 3}, [1908] = {.lex_state = 0, .external_lex_state = 3}, - [1909] = {.lex_state = 7, .external_lex_state = 3}, + [1909] = {.lex_state = 3, .external_lex_state = 3}, [1910] = {.lex_state = 0, .external_lex_state = 3}, - [1911] = {.lex_state = 58, .external_lex_state = 3}, - [1912] = {.lex_state = 7, .external_lex_state = 3}, + [1911] = {.lex_state = 0, .external_lex_state = 3}, + [1912] = {.lex_state = 0, .external_lex_state = 3}, [1913] = {.lex_state = 0, .external_lex_state = 3}, - [1914] = {.lex_state = 0, .external_lex_state = 3}, - [1915] = {.lex_state = 7, .external_lex_state = 3}, + [1914] = {.lex_state = 10, .external_lex_state = 3}, + [1915] = {.lex_state = 58, .external_lex_state = 3}, [1916] = {.lex_state = 0, .external_lex_state = 3}, - [1917] = {.lex_state = 0, .external_lex_state = 3}, - [1918] = {.lex_state = 58, .external_lex_state = 3}, - [1919] = {.lex_state = 0, .external_lex_state = 3}, - [1920] = {.lex_state = 10, .external_lex_state = 3}, - [1921] = {.lex_state = 0, .external_lex_state = 3}, - [1922] = {.lex_state = 58, .external_lex_state = 3}, - [1923] = {.lex_state = 10, .external_lex_state = 3}, + [1917] = {.lex_state = 58, .external_lex_state = 3}, + [1918] = {.lex_state = 0, .external_lex_state = 3}, + [1919] = {.lex_state = 58, .external_lex_state = 3}, + [1920] = {.lex_state = 58, .external_lex_state = 3}, + [1921] = {.lex_state = 7, .external_lex_state = 3}, + [1922] = {.lex_state = 10, .external_lex_state = 3}, + [1923] = {.lex_state = 58, .external_lex_state = 3}, [1924] = {.lex_state = 0, .external_lex_state = 3}, [1925] = {.lex_state = 7, .external_lex_state = 3}, [1926] = {.lex_state = 0, .external_lex_state = 3}, - [1927] = {.lex_state = 3, .external_lex_state = 3}, + [1927] = {.lex_state = 0, .external_lex_state = 3}, [1928] = {.lex_state = 58, .external_lex_state = 3}, [1929] = {.lex_state = 58, .external_lex_state = 3}, - [1930] = {.lex_state = 0, .external_lex_state = 3}, + [1930] = {.lex_state = 4, .external_lex_state = 3}, [1931] = {.lex_state = 0, .external_lex_state = 3}, - [1932] = {.lex_state = 0, .external_lex_state = 3}, + [1932] = {.lex_state = 58, .external_lex_state = 3}, [1933] = {.lex_state = 0, .external_lex_state = 3}, - [1934] = {.lex_state = 0, .external_lex_state = 3}, + [1934] = {.lex_state = 58, .external_lex_state = 3}, [1935] = {.lex_state = 58, .external_lex_state = 3}, [1936] = {.lex_state = 58, .external_lex_state = 3}, - [1937] = {.lex_state = 58, .external_lex_state = 3}, + [1937] = {.lex_state = 0, .external_lex_state = 3}, [1938] = {.lex_state = 0, .external_lex_state = 3}, - [1939] = {.lex_state = 0, .external_lex_state = 3}, - [1940] = {.lex_state = 0, .external_lex_state = 3}, + [1939] = {.lex_state = 58, .external_lex_state = 3}, + [1940] = {.lex_state = 10, .external_lex_state = 3}, [1941] = {.lex_state = 0, .external_lex_state = 3}, - [1942] = {.lex_state = 58, .external_lex_state = 3}, - [1943] = {.lex_state = 3, .external_lex_state = 3}, - [1944] = {.lex_state = 58, .external_lex_state = 3}, + [1942] = {.lex_state = 0, .external_lex_state = 3}, + [1943] = {.lex_state = 0, .external_lex_state = 3}, + [1944] = {.lex_state = 0, .external_lex_state = 3}, [1945] = {.lex_state = 0, .external_lex_state = 3}, - [1946] = {.lex_state = 18, .external_lex_state = 3}, - [1947] = {.lex_state = 0, .external_lex_state = 3}, - [1948] = {.lex_state = 3, .external_lex_state = 3}, - [1949] = {.lex_state = 58, .external_lex_state = 3}, - [1950] = {.lex_state = 0, .external_lex_state = 3}, + [1946] = {.lex_state = 0, .external_lex_state = 3}, + [1947] = {.lex_state = 58, .external_lex_state = 3}, + [1948] = {.lex_state = 58, .external_lex_state = 3}, + [1949] = {.lex_state = 0, .external_lex_state = 3}, + [1950] = {.lex_state = 58, .external_lex_state = 3}, [1951] = {.lex_state = 0, .external_lex_state = 3}, - [1952] = {.lex_state = 7, .external_lex_state = 3}, - [1953] = {.lex_state = 7, .external_lex_state = 3}, + [1952] = {.lex_state = 0, .external_lex_state = 3}, + [1953] = {.lex_state = 0, .external_lex_state = 3}, [1954] = {.lex_state = 0, .external_lex_state = 3}, - [1955] = {.lex_state = 0, .external_lex_state = 3}, + [1955] = {.lex_state = 7, .external_lex_state = 3}, [1956] = {.lex_state = 0, .external_lex_state = 3}, [1957] = {.lex_state = 0, .external_lex_state = 3}, [1958] = {.lex_state = 0, .external_lex_state = 3}, - [1959] = {.lex_state = 7, .external_lex_state = 3}, - [1960] = {.lex_state = 58, .external_lex_state = 3}, + [1959] = {.lex_state = 0, .external_lex_state = 3}, + [1960] = {.lex_state = 0, .external_lex_state = 3}, [1961] = {.lex_state = 0, .external_lex_state = 3}, - [1962] = {.lex_state = 7, .external_lex_state = 3}, + [1962] = {.lex_state = 0, .external_lex_state = 3}, [1963] = {.lex_state = 0, .external_lex_state = 3}, [1964] = {.lex_state = 0, .external_lex_state = 3}, [1965] = {.lex_state = 0, .external_lex_state = 3}, - [1966] = {.lex_state = 0, .external_lex_state = 3}, - [1967] = {.lex_state = 58, .external_lex_state = 3}, - [1968] = {.lex_state = 7, .external_lex_state = 3}, - [1969] = {.lex_state = 0, .external_lex_state = 3}, - [1970] = {.lex_state = 0, .external_lex_state = 3}, + [1966] = {.lex_state = 58, .external_lex_state = 3}, + [1967] = {.lex_state = 0, .external_lex_state = 3}, + [1968] = {.lex_state = 58, .external_lex_state = 3}, + [1969] = {.lex_state = 58, .external_lex_state = 3}, + [1970] = {.lex_state = 58, .external_lex_state = 3}, [1971] = {.lex_state = 0, .external_lex_state = 3}, [1972] = {.lex_state = 0, .external_lex_state = 3}, [1973] = {.lex_state = 0, .external_lex_state = 3}, [1974] = {.lex_state = 0, .external_lex_state = 3}, [1975] = {.lex_state = 7, .external_lex_state = 3}, [1976] = {.lex_state = 0, .external_lex_state = 3}, - [1977] = {.lex_state = 10, .external_lex_state = 3}, + [1977] = {.lex_state = 0, .external_lex_state = 3}, [1978] = {.lex_state = 0, .external_lex_state = 3}, [1979] = {.lex_state = 0, .external_lex_state = 3}, - [1980] = {.lex_state = 0, .external_lex_state = 3}, - [1981] = {.lex_state = 3, .external_lex_state = 3}, - [1982] = {.lex_state = 58, .external_lex_state = 3}, - [1983] = {.lex_state = 3, .external_lex_state = 3}, - [1984] = {.lex_state = 3, .external_lex_state = 3}, - [1985] = {.lex_state = 0, .external_lex_state = 3}, - [1986] = {.lex_state = 0, .external_lex_state = 3}, - [1987] = {.lex_state = 58, .external_lex_state = 3}, - [1988] = {.lex_state = 7, .external_lex_state = 3}, + [1980] = {.lex_state = 58, .external_lex_state = 3}, + [1981] = {.lex_state = 7, .external_lex_state = 3}, + [1982] = {.lex_state = 0, .external_lex_state = 3}, + [1983] = {.lex_state = 0, .external_lex_state = 3}, + [1984] = {.lex_state = 0, .external_lex_state = 3}, + [1985] = {.lex_state = 58, .external_lex_state = 3}, + [1986] = {.lex_state = 4, .external_lex_state = 3}, + [1987] = {.lex_state = 7, .external_lex_state = 3}, + [1988] = {.lex_state = 0, .external_lex_state = 3}, [1989] = {.lex_state = 0, .external_lex_state = 3}, [1990] = {.lex_state = 0, .external_lex_state = 3}, [1991] = {.lex_state = 0, .external_lex_state = 3}, - [1992] = {.lex_state = 0, .external_lex_state = 3}, - [1993] = {.lex_state = 3, .external_lex_state = 3}, - [1994] = {.lex_state = 7, .external_lex_state = 3}, + [1992] = {.lex_state = 58, .external_lex_state = 3}, + [1993] = {.lex_state = 0, .external_lex_state = 3}, + [1994] = {.lex_state = 3, .external_lex_state = 3}, [1995] = {.lex_state = 0, .external_lex_state = 3}, - [1996] = {.lex_state = 3, .external_lex_state = 3}, - [1997] = {.lex_state = 3, .external_lex_state = 3}, - [1998] = {.lex_state = 58, .external_lex_state = 3}, - [1999] = {.lex_state = 0, .external_lex_state = 3}, - [2000] = {.lex_state = 0, .external_lex_state = 3}, + [1996] = {.lex_state = 0, .external_lex_state = 3}, + [1997] = {.lex_state = 0, .external_lex_state = 3}, + [1998] = {.lex_state = 7, .external_lex_state = 3}, + [1999] = {.lex_state = 58, .external_lex_state = 3}, + [2000] = {.lex_state = 3, .external_lex_state = 3}, [2001] = {.lex_state = 0, .external_lex_state = 3}, - [2002] = {.lex_state = 4, .external_lex_state = 3}, - [2003] = {.lex_state = 3, .external_lex_state = 3}, + [2002] = {.lex_state = 0, .external_lex_state = 3}, + [2003] = {.lex_state = 7, .external_lex_state = 3}, [2004] = {.lex_state = 0, .external_lex_state = 3}, - [2005] = {.lex_state = 58, .external_lex_state = 3}, - [2006] = {.lex_state = 0, .external_lex_state = 3}, + [2005] = {.lex_state = 0, .external_lex_state = 3}, + [2006] = {.lex_state = 58, .external_lex_state = 3}, [2007] = {.lex_state = 0, .external_lex_state = 3}, - [2008] = {.lex_state = 3, .external_lex_state = 3}, - [2009] = {.lex_state = 0, .external_lex_state = 3}, - [2010] = {.lex_state = 0, .external_lex_state = 3}, + [2008] = {.lex_state = 0, .external_lex_state = 3}, + [2009] = {.lex_state = 58, .external_lex_state = 3}, + [2010] = {.lex_state = 7, .external_lex_state = 3}, [2011] = {.lex_state = 0, .external_lex_state = 3}, [2012] = {.lex_state = 0, .external_lex_state = 3}, [2013] = {.lex_state = 0, .external_lex_state = 3}, - [2014] = {.lex_state = 0, .external_lex_state = 3}, - [2015] = {.lex_state = 58, .external_lex_state = 3}, - [2016] = {.lex_state = 0, .external_lex_state = 3}, - [2017] = {.lex_state = 3, .external_lex_state = 3}, - [2018] = {.lex_state = 0, .external_lex_state = 3}, - [2019] = {.lex_state = 58, .external_lex_state = 3}, - [2020] = {.lex_state = 58, .external_lex_state = 3}, - [2021] = {.lex_state = 3, .external_lex_state = 3}, + [2014] = {.lex_state = 3, .external_lex_state = 3}, + [2015] = {.lex_state = 7, .external_lex_state = 3}, + [2016] = {.lex_state = 3, .external_lex_state = 3}, + [2017] = {.lex_state = 58, .external_lex_state = 3}, + [2018] = {.lex_state = 3, .external_lex_state = 3}, + [2019] = {.lex_state = 0, .external_lex_state = 3}, + [2020] = {.lex_state = 0, .external_lex_state = 3}, + [2021] = {.lex_state = 58, .external_lex_state = 3}, [2022] = {.lex_state = 0, .external_lex_state = 3}, - [2023] = {.lex_state = 0, .external_lex_state = 3}, + [2023] = {.lex_state = 58, .external_lex_state = 3}, [2024] = {.lex_state = 0, .external_lex_state = 3}, [2025] = {.lex_state = 58, .external_lex_state = 3}, - [2026] = {.lex_state = 58, .external_lex_state = 3}, - [2027] = {.lex_state = 58, .external_lex_state = 3}, - [2028] = {.lex_state = 58, .external_lex_state = 3}, - [2029] = {.lex_state = 3, .external_lex_state = 3}, - [2030] = {.lex_state = 58, .external_lex_state = 3}, - [2031] = {.lex_state = 0, .external_lex_state = 3}, - [2032] = {.lex_state = 0, .external_lex_state = 3}, + [2026] = {.lex_state = 0, .external_lex_state = 3}, + [2027] = {.lex_state = 3, .external_lex_state = 3}, + [2028] = {.lex_state = 0, .external_lex_state = 3}, + [2029] = {.lex_state = 0, .external_lex_state = 3}, + [2030] = {.lex_state = 0, .external_lex_state = 3}, + [2031] = {.lex_state = 58, .external_lex_state = 3}, + [2032] = {.lex_state = 3, .external_lex_state = 3}, [2033] = {.lex_state = 0, .external_lex_state = 3}, [2034] = {.lex_state = 0, .external_lex_state = 3}, [2035] = {.lex_state = 0, .external_lex_state = 3}, - [2036] = {.lex_state = 58, .external_lex_state = 3}, + [2036] = {.lex_state = 7, .external_lex_state = 3}, [2037] = {.lex_state = 0, .external_lex_state = 3}, - [2038] = {.lex_state = 3, .external_lex_state = 3}, - [2039] = {.lex_state = 58, .external_lex_state = 3}, - [2040] = {.lex_state = 7, .external_lex_state = 3}, - [2041] = {.lex_state = 0, .external_lex_state = 3}, + [2038] = {.lex_state = 58, .external_lex_state = 3}, + [2039] = {.lex_state = 0, .external_lex_state = 3}, + [2040] = {.lex_state = 58, .external_lex_state = 3}, + [2041] = {.lex_state = 58, .external_lex_state = 3}, [2042] = {.lex_state = 0, .external_lex_state = 3}, [2043] = {.lex_state = 0, .external_lex_state = 3}, - [2044] = {.lex_state = 58, .external_lex_state = 3}, - [2045] = {.lex_state = 0, .external_lex_state = 3}, - [2046] = {.lex_state = 0, .external_lex_state = 3}, - [2047] = {.lex_state = 0, .external_lex_state = 3}, - [2048] = {.lex_state = 0, .external_lex_state = 3}, + [2044] = {.lex_state = 0, .external_lex_state = 3}, + [2045] = {.lex_state = 58, .external_lex_state = 3}, + [2046] = {.lex_state = 58, .external_lex_state = 3}, + [2047] = {.lex_state = 58, .external_lex_state = 3}, + [2048] = {.lex_state = 7, .external_lex_state = 3}, [2049] = {.lex_state = 0, .external_lex_state = 3}, [2050] = {.lex_state = 0, .external_lex_state = 3}, [2051] = {.lex_state = 58, .external_lex_state = 3}, [2052] = {.lex_state = 0, .external_lex_state = 3}, - [2053] = {.lex_state = 58, .external_lex_state = 3}, - [2054] = {.lex_state = 7, .external_lex_state = 3}, + [2053] = {.lex_state = 0, .external_lex_state = 3}, + [2054] = {.lex_state = 0, .external_lex_state = 3}, [2055] = {.lex_state = 0, .external_lex_state = 3}, - [2056] = {.lex_state = 58, .external_lex_state = 3}, - [2057] = {.lex_state = 0, .external_lex_state = 3}, - [2058] = {.lex_state = 0, .external_lex_state = 3}, - [2059] = {.lex_state = 58, .external_lex_state = 3}, + [2056] = {.lex_state = 0, .external_lex_state = 3}, + [2057] = {.lex_state = 10, .external_lex_state = 3}, + [2058] = {.lex_state = 58, .external_lex_state = 3}, + [2059] = {.lex_state = 0, .external_lex_state = 3}, [2060] = {.lex_state = 0, .external_lex_state = 3}, [2061] = {.lex_state = 0, .external_lex_state = 3}, [2062] = {.lex_state = 0, .external_lex_state = 3}, [2063] = {.lex_state = 0, .external_lex_state = 3}, [2064] = {.lex_state = 0, .external_lex_state = 3}, - [2065] = {.lex_state = 4, .external_lex_state = 3}, - [2066] = {.lex_state = 7, .external_lex_state = 3}, - [2067] = {.lex_state = 7, .external_lex_state = 3}, - [2068] = {.lex_state = 7, .external_lex_state = 3}, + [2065] = {.lex_state = 3, .external_lex_state = 3}, + [2066] = {.lex_state = 0, .external_lex_state = 3}, + [2067] = {.lex_state = 0, .external_lex_state = 3}, + [2068] = {.lex_state = 58, .external_lex_state = 3}, [2069] = {.lex_state = 0, .external_lex_state = 3}, [2070] = {.lex_state = 0, .external_lex_state = 3}, [2071] = {.lex_state = 0, .external_lex_state = 3}, - [2072] = {.lex_state = 58, .external_lex_state = 3}, - [2073] = {.lex_state = 7, .external_lex_state = 3}, + [2072] = {.lex_state = 7, .external_lex_state = 3}, + [2073] = {.lex_state = 0, .external_lex_state = 3}, [2074] = {.lex_state = 0, .external_lex_state = 3}, - [2075] = {.lex_state = 58, .external_lex_state = 3}, + [2075] = {.lex_state = 0, .external_lex_state = 3}, [2076] = {.lex_state = 3, .external_lex_state = 3}, [2077] = {.lex_state = 0, .external_lex_state = 3}, - [2078] = {.lex_state = 58, .external_lex_state = 3}, - [2079] = {.lex_state = 58, .external_lex_state = 3}, + [2078] = {.lex_state = 0, .external_lex_state = 3}, + [2079] = {.lex_state = 0, .external_lex_state = 3}, [2080] = {.lex_state = 0, .external_lex_state = 3}, - [2081] = {.lex_state = 0, .external_lex_state = 3}, - [2082] = {.lex_state = 58, .external_lex_state = 3}, + [2081] = {.lex_state = 3, .external_lex_state = 3}, + [2082] = {.lex_state = 0, .external_lex_state = 3}, [2083] = {.lex_state = 0, .external_lex_state = 3}, - [2084] = {.lex_state = 58, .external_lex_state = 3}, - [2085] = {.lex_state = 58, .external_lex_state = 3}, - [2086] = {.lex_state = 0, .external_lex_state = 3}, - [2087] = {.lex_state = 0, .external_lex_state = 3}, - [2088] = {.lex_state = 10, .external_lex_state = 3}, - [2089] = {.lex_state = 58, .external_lex_state = 3}, + [2084] = {.lex_state = 0, .external_lex_state = 3}, + [2085] = {.lex_state = 7, .external_lex_state = 3}, + [2086] = {.lex_state = 58, .external_lex_state = 3}, + [2087] = {.lex_state = 7, .external_lex_state = 3}, + [2088] = {.lex_state = 18, .external_lex_state = 3}, + [2089] = {.lex_state = 7, .external_lex_state = 3}, [2090] = {.lex_state = 0, .external_lex_state = 3}, - [2091] = {.lex_state = 0, .external_lex_state = 3}, - [2092] = {.lex_state = 0, .external_lex_state = 3}, - [2093] = {.lex_state = 0, .external_lex_state = 3}, + [2091] = {.lex_state = 58, .external_lex_state = 3}, + [2092] = {.lex_state = 58, .external_lex_state = 3}, + [2093] = {.lex_state = 58, .external_lex_state = 3}, [2094] = {.lex_state = 58, .external_lex_state = 3}, - [2095] = {.lex_state = 58, .external_lex_state = 3}, - [2096] = {.lex_state = 58, .external_lex_state = 3}, - [2097] = {.lex_state = 7, .external_lex_state = 3}, - [2098] = {.lex_state = 0, .external_lex_state = 3}, - [2099] = {.lex_state = 58, .external_lex_state = 3}, - [2100] = {.lex_state = 7, .external_lex_state = 3}, - [2101] = {.lex_state = 0, .external_lex_state = 3}, - [2102] = {.lex_state = 58, .external_lex_state = 3}, - [2103] = {.lex_state = 0, .external_lex_state = 3}, - [2104] = {.lex_state = 7, .external_lex_state = 3}, - [2105] = {.lex_state = 0, .external_lex_state = 3}, + [2095] = {.lex_state = 0, .external_lex_state = 3}, + [2096] = {.lex_state = 0, .external_lex_state = 3}, + [2097] = {.lex_state = 0, .external_lex_state = 3}, + [2098] = {.lex_state = 7, .external_lex_state = 3}, + [2099] = {.lex_state = 10, .external_lex_state = 3}, + [2100] = {.lex_state = 0, .external_lex_state = 3}, + [2101] = {.lex_state = 7, .external_lex_state = 3}, + [2102] = {.lex_state = 3, .external_lex_state = 3}, + [2103] = {.lex_state = 7, .external_lex_state = 3}, + [2104] = {.lex_state = 58, .external_lex_state = 3}, + [2105] = {.lex_state = 7, .external_lex_state = 3}, [2106] = {.lex_state = 0, .external_lex_state = 3}, [2107] = {.lex_state = 0, .external_lex_state = 3}, [2108] = {.lex_state = 0, .external_lex_state = 3}, [2109] = {.lex_state = 0, .external_lex_state = 3}, - [2110] = {.lex_state = 7, .external_lex_state = 3}, + [2110] = {.lex_state = 0, .external_lex_state = 3}, [2111] = {.lex_state = 0, .external_lex_state = 3}, - [2112] = {.lex_state = 7, .external_lex_state = 3}, + [2112] = {.lex_state = 0, .external_lex_state = 3}, [2113] = {.lex_state = 0, .external_lex_state = 3}, - [2114] = {.lex_state = 58, .external_lex_state = 3}, + [2114] = {.lex_state = 0, .external_lex_state = 3}, [2115] = {.lex_state = 0, .external_lex_state = 3}, [2116] = {.lex_state = 0, .external_lex_state = 3}, - [2117] = {.lex_state = 0, .external_lex_state = 3}, + [2117] = {.lex_state = 58, .external_lex_state = 3}, [2118] = {.lex_state = 0, .external_lex_state = 3}, [2119] = {.lex_state = 0, .external_lex_state = 3}, - [2120] = {.lex_state = 7, .external_lex_state = 3}, - [2121] = {.lex_state = 58, .external_lex_state = 3}, - [2122] = {.lex_state = 7, .external_lex_state = 3}, - [2123] = {.lex_state = 0, .external_lex_state = 3}, - [2124] = {.lex_state = 58, .external_lex_state = 3}, - [2125] = {.lex_state = 7, .external_lex_state = 3}, + [2120] = {.lex_state = 0, .external_lex_state = 3}, + [2121] = {.lex_state = 0, .external_lex_state = 3}, + [2122] = {.lex_state = 0, .external_lex_state = 3}, + [2123] = {.lex_state = 7, .external_lex_state = 3}, + [2124] = {.lex_state = 0, .external_lex_state = 3}, + [2125] = {.lex_state = 0, .external_lex_state = 3}, [2126] = {.lex_state = 0, .external_lex_state = 3}, [2127] = {.lex_state = 0, .external_lex_state = 3}, [2128] = {.lex_state = 0, .external_lex_state = 3}, @@ -16770,442 +16772,438 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2130] = {.lex_state = 0, .external_lex_state = 3}, [2131] = {.lex_state = 0, .external_lex_state = 3}, [2132] = {.lex_state = 0, .external_lex_state = 3}, - [2133] = {.lex_state = 0, .external_lex_state = 3}, + [2133] = {.lex_state = 7, .external_lex_state = 3}, [2134] = {.lex_state = 0, .external_lex_state = 3}, [2135] = {.lex_state = 7, .external_lex_state = 3}, [2136] = {.lex_state = 0, .external_lex_state = 3}, [2137] = {.lex_state = 0, .external_lex_state = 3}, - [2138] = {.lex_state = 0, .external_lex_state = 3}, - [2139] = {.lex_state = 7, .external_lex_state = 3}, + [2138] = {.lex_state = 58, .external_lex_state = 3}, + [2139] = {.lex_state = 58, .external_lex_state = 3}, [2140] = {.lex_state = 0, .external_lex_state = 3}, [2141] = {.lex_state = 0, .external_lex_state = 3}, - [2142] = {.lex_state = 0, .external_lex_state = 3}, + [2142] = {.lex_state = 58, .external_lex_state = 3}, [2143] = {.lex_state = 0, .external_lex_state = 3}, - [2144] = {.lex_state = 7, .external_lex_state = 3}, + [2144] = {.lex_state = 0, .external_lex_state = 3}, [2145] = {.lex_state = 0, .external_lex_state = 3}, [2146] = {.lex_state = 0, .external_lex_state = 3}, [2147] = {.lex_state = 0, .external_lex_state = 3}, [2148] = {.lex_state = 0, .external_lex_state = 3}, - [2149] = {.lex_state = 4, .external_lex_state = 3}, - [2150] = {.lex_state = 0, .external_lex_state = 3}, - [2151] = {.lex_state = 58, .external_lex_state = 3}, + [2149] = {.lex_state = 0, .external_lex_state = 3}, + [2150] = {.lex_state = 7, .external_lex_state = 3}, + [2151] = {.lex_state = 0, .external_lex_state = 3}, [2152] = {.lex_state = 0, .external_lex_state = 3}, [2153] = {.lex_state = 0, .external_lex_state = 3}, [2154] = {.lex_state = 0, .external_lex_state = 3}, [2155] = {.lex_state = 0, .external_lex_state = 3}, - [2156] = {.lex_state = 58, .external_lex_state = 3}, - [2157] = {.lex_state = 0, .external_lex_state = 3}, - [2158] = {.lex_state = 58, .external_lex_state = 3}, + [2156] = {.lex_state = 0, .external_lex_state = 3}, + [2157] = {.lex_state = 58, .external_lex_state = 3}, + [2158] = {.lex_state = 0, .external_lex_state = 3}, [2159] = {.lex_state = 0, .external_lex_state = 3}, - [2160] = {.lex_state = 7, .external_lex_state = 3}, + [2160] = {.lex_state = 0, .external_lex_state = 3}, [2161] = {.lex_state = 0, .external_lex_state = 3}, - [2162] = {.lex_state = 0, .external_lex_state = 3}, - [2163] = {.lex_state = 7, .external_lex_state = 3}, - [2164] = {.lex_state = 7, .external_lex_state = 3}, + [2162] = {.lex_state = 7, .external_lex_state = 3}, + [2163] = {.lex_state = 0, .external_lex_state = 3}, + [2164] = {.lex_state = 58, .external_lex_state = 3}, [2165] = {.lex_state = 0, .external_lex_state = 3}, [2166] = {.lex_state = 0, .external_lex_state = 3}, [2167] = {.lex_state = 0, .external_lex_state = 3}, [2168] = {.lex_state = 0, .external_lex_state = 3}, [2169] = {.lex_state = 0, .external_lex_state = 3}, - [2170] = {.lex_state = 58, .external_lex_state = 3}, - [2171] = {.lex_state = 0, .external_lex_state = 3}, - [2172] = {.lex_state = 58, .external_lex_state = 3}, - [2173] = {.lex_state = 7, .external_lex_state = 3}, + [2170] = {.lex_state = 0, .external_lex_state = 3}, + [2171] = {.lex_state = 7, .external_lex_state = 3}, + [2172] = {.lex_state = 0, .external_lex_state = 3}, + [2173] = {.lex_state = 0, .external_lex_state = 3}, [2174] = {.lex_state = 0, .external_lex_state = 3}, [2175] = {.lex_state = 0, .external_lex_state = 3}, [2176] = {.lex_state = 0, .external_lex_state = 3}, - [2177] = {.lex_state = 7, .external_lex_state = 3}, + [2177] = {.lex_state = 58, .external_lex_state = 3}, [2178] = {.lex_state = 0, .external_lex_state = 3}, [2179] = {.lex_state = 0, .external_lex_state = 3}, - [2180] = {.lex_state = 0, .external_lex_state = 3}, - [2181] = {.lex_state = 58, .external_lex_state = 3}, + [2180] = {.lex_state = 58, .external_lex_state = 3}, + [2181] = {.lex_state = 0, .external_lex_state = 3}, [2182] = {.lex_state = 0, .external_lex_state = 3}, [2183] = {.lex_state = 0, .external_lex_state = 3}, [2184] = {.lex_state = 0, .external_lex_state = 3}, [2185] = {.lex_state = 0, .external_lex_state = 3}, [2186] = {.lex_state = 0, .external_lex_state = 3}, - [2187] = {.lex_state = 0, .external_lex_state = 3}, + [2187] = {.lex_state = 58, .external_lex_state = 3}, [2188] = {.lex_state = 0, .external_lex_state = 3}, [2189] = {.lex_state = 0, .external_lex_state = 3}, - [2190] = {.lex_state = 58, .external_lex_state = 3}, - [2191] = {.lex_state = 7, .external_lex_state = 3}, - [2192] = {.lex_state = 0, .external_lex_state = 3}, - [2193] = {.lex_state = 58, .external_lex_state = 3}, + [2190] = {.lex_state = 0, .external_lex_state = 3}, + [2191] = {.lex_state = 0, .external_lex_state = 3}, + [2192] = {.lex_state = 58, .external_lex_state = 3}, + [2193] = {.lex_state = 0, .external_lex_state = 3}, [2194] = {.lex_state = 0, .external_lex_state = 3}, - [2195] = {.lex_state = 0, .external_lex_state = 3}, - [2196] = {.lex_state = 58, .external_lex_state = 3}, - [2197] = {.lex_state = 0, .external_lex_state = 3}, - [2198] = {.lex_state = 0, .external_lex_state = 3}, - [2199] = {.lex_state = 58, .external_lex_state = 3}, + [2195] = {.lex_state = 58, .external_lex_state = 3}, + [2196] = {.lex_state = 0, .external_lex_state = 3}, + [2197] = {.lex_state = 7, .external_lex_state = 3}, + [2198] = {.lex_state = 58, .external_lex_state = 3}, + [2199] = {.lex_state = 0, .external_lex_state = 3}, [2200] = {.lex_state = 0, .external_lex_state = 3}, - [2201] = {.lex_state = 0, .external_lex_state = 3}, - [2202] = {.lex_state = 58, .external_lex_state = 3}, - [2203] = {.lex_state = 0, .external_lex_state = 3}, + [2201] = {.lex_state = 4, .external_lex_state = 3}, + [2202] = {.lex_state = 0, .external_lex_state = 3}, + [2203] = {.lex_state = 58, .external_lex_state = 3}, [2204] = {.lex_state = 0, .external_lex_state = 3}, - [2205] = {.lex_state = 58, .external_lex_state = 3}, + [2205] = {.lex_state = 0, .external_lex_state = 3}, [2206] = {.lex_state = 0, .external_lex_state = 3}, - [2207] = {.lex_state = 7, .external_lex_state = 3}, - [2208] = {.lex_state = 0, .external_lex_state = 3}, + [2207] = {.lex_state = 0, .external_lex_state = 3}, + [2208] = {.lex_state = 0, .external_lex_state = 5}, [2209] = {.lex_state = 0, .external_lex_state = 3}, [2210] = {.lex_state = 0, .external_lex_state = 3}, [2211] = {.lex_state = 0, .external_lex_state = 3}, [2212] = {.lex_state = 0, .external_lex_state = 3}, [2213] = {.lex_state = 0, .external_lex_state = 3}, - [2214] = {.lex_state = 0, .external_lex_state = 3}, - [2215] = {.lex_state = 7, .external_lex_state = 3}, - [2216] = {.lex_state = 0, .external_lex_state = 3}, + [2214] = {.lex_state = 7, .external_lex_state = 3}, + [2215] = {.lex_state = 0, .external_lex_state = 3}, + [2216] = {.lex_state = 58, .external_lex_state = 3}, [2217] = {.lex_state = 0, .external_lex_state = 3}, [2218] = {.lex_state = 0, .external_lex_state = 3}, [2219] = {.lex_state = 0, .external_lex_state = 3}, [2220] = {.lex_state = 0, .external_lex_state = 3}, [2221] = {.lex_state = 0, .external_lex_state = 3}, - [2222] = {.lex_state = 7, .external_lex_state = 3}, + [2222] = {.lex_state = 58, .external_lex_state = 3}, [2223] = {.lex_state = 0, .external_lex_state = 3}, - [2224] = {.lex_state = 0, .external_lex_state = 3}, + [2224] = {.lex_state = 58, .external_lex_state = 3}, [2225] = {.lex_state = 0, .external_lex_state = 3}, [2226] = {.lex_state = 0, .external_lex_state = 3}, [2227] = {.lex_state = 0, .external_lex_state = 3}, [2228] = {.lex_state = 0, .external_lex_state = 3}, - [2229] = {.lex_state = 0, .external_lex_state = 3}, - [2230] = {.lex_state = 0, .external_lex_state = 3}, - [2231] = {.lex_state = 58, .external_lex_state = 3}, + [2229] = {.lex_state = 7, .external_lex_state = 3}, + [2230] = {.lex_state = 58, .external_lex_state = 3}, + [2231] = {.lex_state = 0, .external_lex_state = 3}, [2232] = {.lex_state = 0, .external_lex_state = 3}, - [2233] = {.lex_state = 7, .external_lex_state = 3}, - [2234] = {.lex_state = 58, .external_lex_state = 3}, + [2233] = {.lex_state = 0, .external_lex_state = 3}, + [2234] = {.lex_state = 0, .external_lex_state = 3}, [2235] = {.lex_state = 0, .external_lex_state = 3}, [2236] = {.lex_state = 0, .external_lex_state = 3}, [2237] = {.lex_state = 0, .external_lex_state = 3}, - [2238] = {.lex_state = 0, .external_lex_state = 3}, - [2239] = {.lex_state = 0, .external_lex_state = 3}, + [2238] = {.lex_state = 7, .external_lex_state = 3}, + [2239] = {.lex_state = 7, .external_lex_state = 3}, [2240] = {.lex_state = 0, .external_lex_state = 3}, - [2241] = {.lex_state = 18, .external_lex_state = 3}, - [2242] = {.lex_state = 10, .external_lex_state = 3}, + [2241] = {.lex_state = 0, .external_lex_state = 3}, + [2242] = {.lex_state = 0, .external_lex_state = 3}, [2243] = {.lex_state = 0, .external_lex_state = 3}, - [2244] = {.lex_state = 7, .external_lex_state = 3}, - [2245] = {.lex_state = 58, .external_lex_state = 3}, - [2246] = {.lex_state = 0, .external_lex_state = 3}, - [2247] = {.lex_state = 58, .external_lex_state = 3}, + [2244] = {.lex_state = 58, .external_lex_state = 3}, + [2245] = {.lex_state = 0, .external_lex_state = 3}, + [2246] = {.lex_state = 7, .external_lex_state = 3}, + [2247] = {.lex_state = 0, .external_lex_state = 3}, [2248] = {.lex_state = 0, .external_lex_state = 3}, [2249] = {.lex_state = 0, .external_lex_state = 3}, [2250] = {.lex_state = 0, .external_lex_state = 3}, [2251] = {.lex_state = 0, .external_lex_state = 3}, - [2252] = {.lex_state = 0, .external_lex_state = 3}, - [2253] = {.lex_state = 0, .external_lex_state = 3}, - [2254] = {.lex_state = 0, .external_lex_state = 3}, + [2252] = {.lex_state = 18, .external_lex_state = 3}, + [2253] = {.lex_state = 58, .external_lex_state = 3}, + [2254] = {.lex_state = 7, .external_lex_state = 3}, [2255] = {.lex_state = 0, .external_lex_state = 3}, [2256] = {.lex_state = 0, .external_lex_state = 3}, [2257] = {.lex_state = 0, .external_lex_state = 3}, [2258] = {.lex_state = 0, .external_lex_state = 3}, - [2259] = {.lex_state = 0, .external_lex_state = 3}, + [2259] = {.lex_state = 58, .external_lex_state = 3}, [2260] = {.lex_state = 0, .external_lex_state = 3}, - [2261] = {.lex_state = 0, .external_lex_state = 3}, + [2261] = {.lex_state = 58, .external_lex_state = 3}, [2262] = {.lex_state = 0, .external_lex_state = 3}, [2263] = {.lex_state = 0, .external_lex_state = 3}, - [2264] = {.lex_state = 0, .external_lex_state = 3}, - [2265] = {.lex_state = 0, .external_lex_state = 3}, - [2266] = {.lex_state = 18, .external_lex_state = 3}, - [2267] = {.lex_state = 58, .external_lex_state = 3}, - [2268] = {.lex_state = 0, .external_lex_state = 3}, + [2264] = {.lex_state = 58, .external_lex_state = 3}, + [2265] = {.lex_state = 58, .external_lex_state = 3}, + [2266] = {.lex_state = 0, .external_lex_state = 3}, + [2267] = {.lex_state = 0, .external_lex_state = 3}, + [2268] = {.lex_state = 7, .external_lex_state = 3}, [2269] = {.lex_state = 0, .external_lex_state = 3}, - [2270] = {.lex_state = 0, .external_lex_state = 3}, - [2271] = {.lex_state = 0, .external_lex_state = 3}, + [2270] = {.lex_state = 7, .external_lex_state = 3}, + [2271] = {.lex_state = 7, .external_lex_state = 3}, [2272] = {.lex_state = 0, .external_lex_state = 3}, - [2273] = {.lex_state = 0, .external_lex_state = 3}, - [2274] = {.lex_state = 18, .external_lex_state = 3}, - [2275] = {.lex_state = 18, .external_lex_state = 3}, + [2273] = {.lex_state = 7, .external_lex_state = 3}, + [2274] = {.lex_state = 0, .external_lex_state = 3}, + [2275] = {.lex_state = 0, .external_lex_state = 3}, [2276] = {.lex_state = 0, .external_lex_state = 3}, - [2277] = {.lex_state = 0, .external_lex_state = 3}, + [2277] = {.lex_state = 7, .external_lex_state = 3}, [2278] = {.lex_state = 0, .external_lex_state = 3}, - [2279] = {.lex_state = 0, .external_lex_state = 3}, - [2280] = {.lex_state = 58, .external_lex_state = 3}, - [2281] = {.lex_state = 7, .external_lex_state = 3}, - [2282] = {.lex_state = 0, .external_lex_state = 3}, - [2283] = {.lex_state = 58, .external_lex_state = 3}, - [2284] = {.lex_state = 0, .external_lex_state = 5}, + [2279] = {.lex_state = 58, .external_lex_state = 3}, + [2280] = {.lex_state = 0, .external_lex_state = 3}, + [2281] = {.lex_state = 18, .external_lex_state = 3}, + [2282] = {.lex_state = 18, .external_lex_state = 3}, + [2283] = {.lex_state = 0, .external_lex_state = 3}, + [2284] = {.lex_state = 0, .external_lex_state = 3}, [2285] = {.lex_state = 7, .external_lex_state = 3}, - [2286] = {.lex_state = 58, .external_lex_state = 3}, - [2287] = {.lex_state = 18, .external_lex_state = 3}, - [2288] = {.lex_state = 0, .external_lex_state = 3}, - [2289] = {.lex_state = 7, .external_lex_state = 3}, - [2290] = {.lex_state = 0, .external_lex_state = 3}, - [2291] = {.lex_state = 0, .external_lex_state = 3}, + [2286] = {.lex_state = 0, .external_lex_state = 3}, + [2287] = {.lex_state = 0, .external_lex_state = 3}, + [2288] = {.lex_state = 58, .external_lex_state = 3}, + [2289] = {.lex_state = 18, .external_lex_state = 3}, + [2290] = {.lex_state = 58, .external_lex_state = 3}, + [2291] = {.lex_state = 18, .external_lex_state = 3}, [2292] = {.lex_state = 0, .external_lex_state = 3}, - [2293] = {.lex_state = 58, .external_lex_state = 3}, - [2294] = {.lex_state = 58, .external_lex_state = 3}, - [2295] = {.lex_state = 58, .external_lex_state = 3}, - [2296] = {.lex_state = 0, .external_lex_state = 3}, - [2297] = {.lex_state = 7, .external_lex_state = 3}, + [2293] = {.lex_state = 0, .external_lex_state = 3}, + [2294] = {.lex_state = 0, .external_lex_state = 3}, + [2295] = {.lex_state = 4, .external_lex_state = 3}, + [2296] = {.lex_state = 10, .external_lex_state = 3}, + [2297] = {.lex_state = 58, .external_lex_state = 3}, [2298] = {.lex_state = 7, .external_lex_state = 3}, - [2299] = {.lex_state = 18, .external_lex_state = 3}, + [2299] = {.lex_state = 0, .external_lex_state = 3}, [2300] = {.lex_state = 0, .external_lex_state = 3}, - [2301] = {.lex_state = 58, .external_lex_state = 3}, - [2302] = {.lex_state = 7, .external_lex_state = 3}, - [2303] = {.lex_state = 0, .external_lex_state = 3}, + [2301] = {.lex_state = 7, .external_lex_state = 3}, + [2302] = {.lex_state = 0, .external_lex_state = 3}, + [2303] = {.lex_state = 7, .external_lex_state = 3}, [2304] = {.lex_state = 0, .external_lex_state = 3}, - [2305] = {.lex_state = 58, .external_lex_state = 3}, + [2305] = {.lex_state = 18, .external_lex_state = 3}, [2306] = {.lex_state = 0, .external_lex_state = 3}, [2307] = {.lex_state = 0, .external_lex_state = 3}, - [2308] = {.lex_state = 4, .external_lex_state = 3}, + [2308] = {.lex_state = 0, .external_lex_state = 3}, [2309] = {.lex_state = 0, .external_lex_state = 3}, [2310] = {.lex_state = 0, .external_lex_state = 3}, [2311] = {.lex_state = 0, .external_lex_state = 3}, - [2312] = {.lex_state = 0, .external_lex_state = 3}, - [2313] = {.lex_state = 0, .external_lex_state = 3}, + [2312] = {.lex_state = 7, .external_lex_state = 3}, + [2313] = {.lex_state = 58, .external_lex_state = 3}, [2314] = {.lex_state = 0, .external_lex_state = 3}, [2315] = {.lex_state = 0, .external_lex_state = 3}, [2316] = {.lex_state = 0, .external_lex_state = 3}, - [2317] = {.lex_state = 58, .external_lex_state = 3}, + [2317] = {.lex_state = 7, .external_lex_state = 3}, [2318] = {.lex_state = 0, .external_lex_state = 3}, - [2319] = {.lex_state = 0, .external_lex_state = 3}, + [2319] = {.lex_state = 7, .external_lex_state = 3}, [2320] = {.lex_state = 7, .external_lex_state = 3}, - [2321] = {.lex_state = 7, .external_lex_state = 3}, - [2322] = {.lex_state = 7, .external_lex_state = 3}, - [2323] = {.lex_state = 7, .external_lex_state = 3}, + [2321] = {.lex_state = 0, .external_lex_state = 3}, + [2322] = {.lex_state = 0, .external_lex_state = 3}, + [2323] = {.lex_state = 0, .external_lex_state = 3}, [2324] = {.lex_state = 7, .external_lex_state = 3}, [2325] = {.lex_state = 0, .external_lex_state = 3}, [2326] = {.lex_state = 0, .external_lex_state = 3}, - [2327] = {.lex_state = 0, .external_lex_state = 3}, + [2327] = {.lex_state = 7, .external_lex_state = 3}, [2328] = {.lex_state = 7, .external_lex_state = 3}, - [2329] = {.lex_state = 10, .external_lex_state = 3}, - [2330] = {.lex_state = 58, .external_lex_state = 3}, + [2329] = {.lex_state = 7, .external_lex_state = 3}, + [2330] = {.lex_state = 0, .external_lex_state = 3}, [2331] = {.lex_state = 7, .external_lex_state = 3}, [2332] = {.lex_state = 0, .external_lex_state = 3}, - [2333] = {.lex_state = 7, .external_lex_state = 3}, - [2334] = {.lex_state = 0, .external_lex_state = 3}, + [2333] = {.lex_state = 0, .external_lex_state = 3}, + [2334] = {.lex_state = 7, .external_lex_state = 3}, [2335] = {.lex_state = 7, .external_lex_state = 3}, [2336] = {.lex_state = 7, .external_lex_state = 3}, - [2337] = {.lex_state = 0, .external_lex_state = 3}, - [2338] = {.lex_state = 7, .external_lex_state = 3}, + [2337] = {.lex_state = 7, .external_lex_state = 3}, + [2338] = {.lex_state = 0, .external_lex_state = 3}, [2339] = {.lex_state = 0, .external_lex_state = 3}, [2340] = {.lex_state = 7, .external_lex_state = 3}, - [2341] = {.lex_state = 7, .external_lex_state = 3}, + [2341] = {.lex_state = 10, .external_lex_state = 3}, [2342] = {.lex_state = 0, .external_lex_state = 3}, [2343] = {.lex_state = 0, .external_lex_state = 3}, [2344] = {.lex_state = 7, .external_lex_state = 3}, - [2345] = {.lex_state = 58, .external_lex_state = 3}, - [2346] = {.lex_state = 0, .external_lex_state = 3}, - [2347] = {.lex_state = 0, .external_lex_state = 3}, - [2348] = {.lex_state = 0, .external_lex_state = 3}, + [2345] = {.lex_state = 0, .external_lex_state = 3}, + [2346] = {.lex_state = 7, .external_lex_state = 3}, + [2347] = {.lex_state = 7, .external_lex_state = 3}, + [2348] = {.lex_state = 7, .external_lex_state = 3}, [2349] = {.lex_state = 7, .external_lex_state = 3}, [2350] = {.lex_state = 7, .external_lex_state = 3}, - [2351] = {.lex_state = 0, .external_lex_state = 3}, + [2351] = {.lex_state = 7, .external_lex_state = 3}, [2352] = {.lex_state = 7, .external_lex_state = 3}, [2353] = {.lex_state = 7, .external_lex_state = 3}, [2354] = {.lex_state = 7, .external_lex_state = 3}, - [2355] = {.lex_state = 7, .external_lex_state = 3}, - [2356] = {.lex_state = 7, .external_lex_state = 3}, - [2357] = {.lex_state = 7, .external_lex_state = 3}, - [2358] = {.lex_state = 7, .external_lex_state = 3}, + [2355] = {.lex_state = 0, .external_lex_state = 3}, + [2356] = {.lex_state = 0, .external_lex_state = 3}, + [2357] = {.lex_state = 0, .external_lex_state = 3}, + [2358] = {.lex_state = 0, .external_lex_state = 3}, [2359] = {.lex_state = 7, .external_lex_state = 3}, - [2360] = {.lex_state = 0, .external_lex_state = 3}, + [2360] = {.lex_state = 7, .external_lex_state = 3}, [2361] = {.lex_state = 7, .external_lex_state = 3}, - [2362] = {.lex_state = 0, .external_lex_state = 3}, - [2363] = {.lex_state = 7, .external_lex_state = 3}, + [2362] = {.lex_state = 7, .external_lex_state = 3}, + [2363] = {.lex_state = 0, .external_lex_state = 3}, [2364] = {.lex_state = 7, .external_lex_state = 3}, [2365] = {.lex_state = 7, .external_lex_state = 3}, [2366] = {.lex_state = 7, .external_lex_state = 3}, [2367] = {.lex_state = 0, .external_lex_state = 3}, - [2368] = {.lex_state = 0, .external_lex_state = 3}, + [2368] = {.lex_state = 7, .external_lex_state = 3}, [2369] = {.lex_state = 0, .external_lex_state = 3}, [2370] = {.lex_state = 0, .external_lex_state = 3}, - [2371] = {.lex_state = 0, .external_lex_state = 3}, + [2371] = {.lex_state = 7, .external_lex_state = 3}, [2372] = {.lex_state = 0, .external_lex_state = 3}, [2373] = {.lex_state = 0, .external_lex_state = 3}, [2374] = {.lex_state = 0, .external_lex_state = 3}, [2375] = {.lex_state = 0, .external_lex_state = 3}, - [2376] = {.lex_state = 7, .external_lex_state = 3}, + [2376] = {.lex_state = 0, .external_lex_state = 3}, [2377] = {.lex_state = 7, .external_lex_state = 3}, - [2378] = {.lex_state = 10, .external_lex_state = 3}, - [2379] = {.lex_state = 7, .external_lex_state = 3}, - [2380] = {.lex_state = 7, .external_lex_state = 3}, - [2381] = {.lex_state = 0, .external_lex_state = 3}, + [2378] = {.lex_state = 0, .external_lex_state = 3}, + [2379] = {.lex_state = 0, .external_lex_state = 3}, + [2380] = {.lex_state = 0, .external_lex_state = 3}, + [2381] = {.lex_state = 10, .external_lex_state = 3}, [2382] = {.lex_state = 0, .external_lex_state = 3}, [2383] = {.lex_state = 0, .external_lex_state = 3}, - [2384] = {.lex_state = 7, .external_lex_state = 3}, - [2385] = {.lex_state = 7, .external_lex_state = 3}, + [2384] = {.lex_state = 0, .external_lex_state = 3}, + [2385] = {.lex_state = 0, .external_lex_state = 3}, [2386] = {.lex_state = 7, .external_lex_state = 3}, [2387] = {.lex_state = 0, .external_lex_state = 3}, - [2388] = {.lex_state = 0, .external_lex_state = 3}, - [2389] = {.lex_state = 7, .external_lex_state = 3}, + [2388] = {.lex_state = 10, .external_lex_state = 3}, + [2389] = {.lex_state = 0, .external_lex_state = 3}, [2390] = {.lex_state = 7, .external_lex_state = 3}, - [2391] = {.lex_state = 7, .external_lex_state = 3}, + [2391] = {.lex_state = 0, .external_lex_state = 3}, [2392] = {.lex_state = 0, .external_lex_state = 3}, - [2393] = {.lex_state = 0, .external_lex_state = 3}, - [2394] = {.lex_state = 0, .external_lex_state = 3}, - [2395] = {.lex_state = 0, .external_lex_state = 3}, + [2393] = {.lex_state = 7, .external_lex_state = 3}, + [2394] = {.lex_state = 7, .external_lex_state = 3}, + [2395] = {.lex_state = 7, .external_lex_state = 3}, [2396] = {.lex_state = 7, .external_lex_state = 3}, [2397] = {.lex_state = 7, .external_lex_state = 3}, - [2398] = {.lex_state = 0, .external_lex_state = 3}, + [2398] = {.lex_state = 7, .external_lex_state = 3}, [2399] = {.lex_state = 7, .external_lex_state = 3}, - [2400] = {.lex_state = 7, .external_lex_state = 3}, - [2401] = {.lex_state = 7, .external_lex_state = 3}, - [2402] = {.lex_state = 7, .external_lex_state = 3}, - [2403] = {.lex_state = 7, .external_lex_state = 3}, + [2400] = {.lex_state = 10, .external_lex_state = 3}, + [2401] = {.lex_state = 0, .external_lex_state = 3}, + [2402] = {.lex_state = 0, .external_lex_state = 3}, + [2403] = {.lex_state = 0, .external_lex_state = 3}, [2404] = {.lex_state = 0, .external_lex_state = 3}, [2405] = {.lex_state = 0, .external_lex_state = 3}, - [2406] = {.lex_state = 0, .external_lex_state = 3}, + [2406] = {.lex_state = 10, .external_lex_state = 3}, [2407] = {.lex_state = 0, .external_lex_state = 3}, [2408] = {.lex_state = 0, .external_lex_state = 3}, - [2409] = {.lex_state = 7, .external_lex_state = 3}, + [2409] = {.lex_state = 0, .external_lex_state = 3}, [2410] = {.lex_state = 7, .external_lex_state = 3}, - [2411] = {.lex_state = 7, .external_lex_state = 3}, + [2411] = {.lex_state = 0, .external_lex_state = 3}, [2412] = {.lex_state = 0, .external_lex_state = 3}, - [2413] = {.lex_state = 0, .external_lex_state = 3}, - [2414] = {.lex_state = 0, .external_lex_state = 3}, - [2415] = {.lex_state = 0, .external_lex_state = 3}, - [2416] = {.lex_state = 0, .external_lex_state = 3}, - [2417] = {.lex_state = 7, .external_lex_state = 3}, - [2418] = {.lex_state = 7, .external_lex_state = 3}, + [2413] = {.lex_state = 7, .external_lex_state = 3}, + [2414] = {.lex_state = 7, .external_lex_state = 3}, + [2415] = {.lex_state = 7, .external_lex_state = 3}, + [2416] = {.lex_state = 7, .external_lex_state = 3}, + [2417] = {.lex_state = 0, .external_lex_state = 3}, + [2418] = {.lex_state = 0, .external_lex_state = 3}, [2419] = {.lex_state = 7, .external_lex_state = 3}, - [2420] = {.lex_state = 10, .external_lex_state = 3}, + [2420] = {.lex_state = 0, .external_lex_state = 3}, [2421] = {.lex_state = 0, .external_lex_state = 3}, [2422] = {.lex_state = 0, .external_lex_state = 3}, - [2423] = {.lex_state = 7, .external_lex_state = 3}, + [2423] = {.lex_state = 0, .external_lex_state = 3}, [2424] = {.lex_state = 7, .external_lex_state = 3}, [2425] = {.lex_state = 7, .external_lex_state = 3}, - [2426] = {.lex_state = 10, .external_lex_state = 3}, - [2427] = {.lex_state = 7, .external_lex_state = 3}, + [2426] = {.lex_state = 0, .external_lex_state = 3}, + [2427] = {.lex_state = 0, .external_lex_state = 3}, [2428] = {.lex_state = 7, .external_lex_state = 3}, - [2429] = {.lex_state = 7, .external_lex_state = 3}, + [2429] = {.lex_state = 0, .external_lex_state = 3}, [2430] = {.lex_state = 7, .external_lex_state = 3}, - [2431] = {.lex_state = 7, .external_lex_state = 3}, + [2431] = {.lex_state = 0, .external_lex_state = 3}, [2432] = {.lex_state = 0, .external_lex_state = 3}, - [2433] = {.lex_state = 7, .external_lex_state = 3}, - [2434] = {.lex_state = 0, .external_lex_state = 3}, - [2435] = {.lex_state = 0, .external_lex_state = 3}, - [2436] = {.lex_state = 0, .external_lex_state = 3}, + [2433] = {.lex_state = 0, .external_lex_state = 3}, + [2434] = {.lex_state = 7, .external_lex_state = 3}, + [2435] = {.lex_state = 7, .external_lex_state = 3}, + [2436] = {.lex_state = 7, .external_lex_state = 3}, [2437] = {.lex_state = 0, .external_lex_state = 3}, - [2438] = {.lex_state = 0, .external_lex_state = 3}, - [2439] = {.lex_state = 0, .external_lex_state = 3}, + [2438] = {.lex_state = 7, .external_lex_state = 3}, + [2439] = {.lex_state = 7, .external_lex_state = 3}, [2440] = {.lex_state = 0, .external_lex_state = 3}, [2441] = {.lex_state = 7, .external_lex_state = 3}, - [2442] = {.lex_state = 7, .external_lex_state = 3}, - [2443] = {.lex_state = 0, .external_lex_state = 3}, - [2444] = {.lex_state = 7, .external_lex_state = 3}, + [2442] = {.lex_state = 0, .external_lex_state = 3}, + [2443] = {.lex_state = 7, .external_lex_state = 3}, + [2444] = {.lex_state = 0, .external_lex_state = 3}, [2445] = {.lex_state = 7, .external_lex_state = 3}, - [2446] = {.lex_state = 10, .external_lex_state = 3}, - [2447] = {.lex_state = 7, .external_lex_state = 3}, - [2448] = {.lex_state = 0, .external_lex_state = 3}, + [2446] = {.lex_state = 7, .external_lex_state = 3}, + [2447] = {.lex_state = 10, .external_lex_state = 3}, + [2448] = {.lex_state = 58, .external_lex_state = 3}, [2449] = {.lex_state = 7, .external_lex_state = 3}, [2450] = {.lex_state = 0, .external_lex_state = 3}, [2451] = {.lex_state = 0, .external_lex_state = 3}, - [2452] = {.lex_state = 10, .external_lex_state = 3}, - [2453] = {.lex_state = 7, .external_lex_state = 3}, - [2454] = {.lex_state = 10, .external_lex_state = 3}, + [2452] = {.lex_state = 7, .external_lex_state = 3}, + [2453] = {.lex_state = 0, .external_lex_state = 3}, + [2454] = {.lex_state = 0, .external_lex_state = 3}, [2455] = {.lex_state = 0, .external_lex_state = 3}, [2456] = {.lex_state = 0, .external_lex_state = 3}, - [2457] = {.lex_state = 7, .external_lex_state = 3}, - [2458] = {.lex_state = 7, .external_lex_state = 3}, - [2459] = {.lex_state = 7, .external_lex_state = 3}, + [2457] = {.lex_state = 0, .external_lex_state = 3}, + [2458] = {.lex_state = 0, .external_lex_state = 3}, + [2459] = {.lex_state = 0, .external_lex_state = 3}, [2460] = {.lex_state = 0, .external_lex_state = 3}, [2461] = {.lex_state = 0, .external_lex_state = 3}, [2462] = {.lex_state = 0, .external_lex_state = 3}, - [2463] = {.lex_state = 0, .external_lex_state = 3}, - [2464] = {.lex_state = 0, .external_lex_state = 3}, - [2465] = {.lex_state = 58, .external_lex_state = 3}, + [2463] = {.lex_state = 7, .external_lex_state = 3}, + [2464] = {.lex_state = 10, .external_lex_state = 3}, + [2465] = {.lex_state = 7, .external_lex_state = 3}, [2466] = {.lex_state = 0, .external_lex_state = 3}, [2467] = {.lex_state = 0, .external_lex_state = 3}, [2468] = {.lex_state = 7, .external_lex_state = 3}, - [2469] = {.lex_state = 0, .external_lex_state = 3}, - [2470] = {.lex_state = 7, .external_lex_state = 3}, - [2471] = {.lex_state = 0, .external_lex_state = 3}, + [2469] = {.lex_state = 7, .external_lex_state = 3}, + [2470] = {.lex_state = 0, .external_lex_state = 3}, + [2471] = {.lex_state = 58, .external_lex_state = 3}, [2472] = {.lex_state = 7, .external_lex_state = 3}, [2473] = {.lex_state = 0, .external_lex_state = 3}, - [2474] = {.lex_state = 0, .external_lex_state = 3}, + [2474] = {.lex_state = 7, .external_lex_state = 3}, [2475] = {.lex_state = 0, .external_lex_state = 3}, - [2476] = {.lex_state = 0, .external_lex_state = 3}, + [2476] = {.lex_state = 58, .external_lex_state = 3}, [2477] = {.lex_state = 0, .external_lex_state = 3}, [2478] = {.lex_state = 7, .external_lex_state = 3}, [2479] = {.lex_state = 0, .external_lex_state = 3}, - [2480] = {.lex_state = 7, .external_lex_state = 3}, - [2481] = {.lex_state = 7, .external_lex_state = 3}, + [2480] = {.lex_state = 0, .external_lex_state = 3}, + [2481] = {.lex_state = 0, .external_lex_state = 3}, [2482] = {.lex_state = 0, .external_lex_state = 3}, - [2483] = {.lex_state = 7, .external_lex_state = 3}, + [2483] = {.lex_state = 10, .external_lex_state = 3}, [2484] = {.lex_state = 7, .external_lex_state = 3}, - [2485] = {.lex_state = 0, .external_lex_state = 3}, + [2485] = {.lex_state = 7, .external_lex_state = 3}, [2486] = {.lex_state = 7, .external_lex_state = 3}, [2487] = {.lex_state = 0, .external_lex_state = 3}, - [2488] = {.lex_state = 7, .external_lex_state = 3}, - [2489] = {.lex_state = 7, .external_lex_state = 3}, + [2488] = {.lex_state = 0, .external_lex_state = 3}, + [2489] = {.lex_state = 0, .external_lex_state = 3}, [2490] = {.lex_state = 7, .external_lex_state = 3}, [2491] = {.lex_state = 0, .external_lex_state = 3}, [2492] = {.lex_state = 0, .external_lex_state = 3}, [2493] = {.lex_state = 0, .external_lex_state = 3}, - [2494] = {.lex_state = 7, .external_lex_state = 3}, - [2495] = {.lex_state = 0, .external_lex_state = 3}, - [2496] = {.lex_state = 0, .external_lex_state = 3}, - [2497] = {.lex_state = 7, .external_lex_state = 3}, - [2498] = {.lex_state = 0, .external_lex_state = 3}, - [2499] = {.lex_state = 0, .external_lex_state = 3}, + [2494] = {.lex_state = 0, .external_lex_state = 3}, + [2495] = {.lex_state = 7, .external_lex_state = 3}, + [2496] = {.lex_state = 7, .external_lex_state = 3}, + [2497] = {.lex_state = 10, .external_lex_state = 3}, + [2498] = {.lex_state = 7, .external_lex_state = 3}, + [2499] = {.lex_state = 7, .external_lex_state = 3}, [2500] = {.lex_state = 0, .external_lex_state = 3}, - [2501] = {.lex_state = 7, .external_lex_state = 3}, - [2502] = {.lex_state = 0, .external_lex_state = 3}, + [2501] = {.lex_state = 0, .external_lex_state = 3}, + [2502] = {.lex_state = 7, .external_lex_state = 3}, [2503] = {.lex_state = 0, .external_lex_state = 3}, - [2504] = {.lex_state = 7, .external_lex_state = 3}, - [2505] = {.lex_state = 7, .external_lex_state = 3}, + [2504] = {.lex_state = 0, .external_lex_state = 3}, + [2505] = {.lex_state = 0, .external_lex_state = 3}, [2506] = {.lex_state = 0, .external_lex_state = 3}, - [2507] = {.lex_state = 7, .external_lex_state = 3}, + [2507] = {.lex_state = 0, .external_lex_state = 3}, [2508] = {.lex_state = 0, .external_lex_state = 3}, [2509] = {.lex_state = 0, .external_lex_state = 3}, - [2510] = {.lex_state = 10, .external_lex_state = 3}, + [2510] = {.lex_state = 7, .external_lex_state = 3}, [2511] = {.lex_state = 0, .external_lex_state = 3}, [2512] = {.lex_state = 0, .external_lex_state = 3}, - [2513] = {.lex_state = 0, .external_lex_state = 3}, - [2514] = {.lex_state = 7, .external_lex_state = 3}, - [2515] = {.lex_state = 0, .external_lex_state = 3}, + [2513] = {.lex_state = 58, .external_lex_state = 3}, + [2514] = {.lex_state = 0, .external_lex_state = 3}, + [2515] = {.lex_state = 7, .external_lex_state = 3}, [2516] = {.lex_state = 0, .external_lex_state = 3}, - [2517] = {.lex_state = 0, .external_lex_state = 3}, + [2517] = {.lex_state = 10, .external_lex_state = 3}, [2518] = {.lex_state = 0, .external_lex_state = 3}, - [2519] = {.lex_state = 0, .external_lex_state = 3}, - [2520] = {.lex_state = 0, .external_lex_state = 3}, + [2519] = {.lex_state = 10, .external_lex_state = 3}, + [2520] = {.lex_state = 7, .external_lex_state = 3}, [2521] = {.lex_state = 10, .external_lex_state = 3}, [2522] = {.lex_state = 0, .external_lex_state = 3}, - [2523] = {.lex_state = 10, .external_lex_state = 3}, - [2524] = {.lex_state = 0, .external_lex_state = 3}, + [2523] = {.lex_state = 0, .external_lex_state = 3}, + [2524] = {.lex_state = 10, .external_lex_state = 3}, [2525] = {.lex_state = 0, .external_lex_state = 3}, - [2526] = {.lex_state = 0, .external_lex_state = 3}, + [2526] = {.lex_state = 7, .external_lex_state = 3}, [2527] = {.lex_state = 0, .external_lex_state = 3}, - [2528] = {.lex_state = 10, .external_lex_state = 3}, + [2528] = {.lex_state = 7, .external_lex_state = 3}, [2529] = {.lex_state = 0, .external_lex_state = 3}, [2530] = {.lex_state = 0, .external_lex_state = 3}, - [2531] = {.lex_state = 0, .external_lex_state = 3}, - [2532] = {.lex_state = 0, .external_lex_state = 3}, - [2533] = {.lex_state = 58, .external_lex_state = 3}, - [2534] = {.lex_state = 0, .external_lex_state = 3}, - [2535] = {.lex_state = 0, .external_lex_state = 3}, + [2531] = {.lex_state = 7, .external_lex_state = 3}, + [2532] = {.lex_state = 10, .external_lex_state = 3}, + [2533] = {.lex_state = 7, .external_lex_state = 3}, + [2534] = {.lex_state = 7, .external_lex_state = 3}, + [2535] = {.lex_state = 7, .external_lex_state = 3}, [2536] = {.lex_state = 10, .external_lex_state = 3}, [2537] = {.lex_state = 0, .external_lex_state = 3}, - [2538] = {.lex_state = 7, .external_lex_state = 3}, - [2539] = {.lex_state = 0, .external_lex_state = 3}, - [2540] = {.lex_state = 10, .external_lex_state = 3}, - [2541] = {.lex_state = 0, .external_lex_state = 3}, + [2538] = {.lex_state = 0, .external_lex_state = 3}, + [2539] = {.lex_state = 10, .external_lex_state = 3}, + [2540] = {.lex_state = 7, .external_lex_state = 3}, + [2541] = {.lex_state = 7, .external_lex_state = 3}, [2542] = {.lex_state = 0, .external_lex_state = 3}, - [2543] = {.lex_state = 10, .external_lex_state = 3}, + [2543] = {.lex_state = 0, .external_lex_state = 3}, [2544] = {.lex_state = 0, .external_lex_state = 3}, - [2545] = {.lex_state = 0, .external_lex_state = 3}, - [2546] = {.lex_state = 0, .external_lex_state = 3}, + [2545] = {.lex_state = 10, .external_lex_state = 3}, + [2546] = {.lex_state = 10, .external_lex_state = 3}, [2547] = {.lex_state = 0, .external_lex_state = 3}, [2548] = {.lex_state = 0, .external_lex_state = 3}, - [2549] = {.lex_state = 10, .external_lex_state = 3}, - [2550] = {.lex_state = 10, .external_lex_state = 3}, + [2549] = {.lex_state = 0, .external_lex_state = 3}, + [2550] = {.lex_state = 7, .external_lex_state = 3}, [2551] = {.lex_state = 0, .external_lex_state = 3}, - [2552] = {.lex_state = 0, .external_lex_state = 3}, + [2552] = {.lex_state = 7, .external_lex_state = 3}, [2553] = {.lex_state = 0, .external_lex_state = 3}, [2554] = {.lex_state = 7, .external_lex_state = 3}, [2555] = {.lex_state = 0, .external_lex_state = 3}, - [2556] = {.lex_state = 7, .external_lex_state = 3}, - [2557] = {.lex_state = 0, .external_lex_state = 3}, + [2556] = {.lex_state = 0, .external_lex_state = 3}, + [2557] = {.lex_state = 7, .external_lex_state = 3}, [2558] = {.lex_state = 7, .external_lex_state = 3}, - [2559] = {.lex_state = 10, .external_lex_state = 3}, + [2559] = {.lex_state = 7, .external_lex_state = 3}, [2560] = {.lex_state = 0, .external_lex_state = 3}, - [2561] = {.lex_state = 7, .external_lex_state = 3}, + [2561] = {.lex_state = 0, .external_lex_state = 3}, [2562] = {.lex_state = 7, .external_lex_state = 3}, [2563] = {.lex_state = 7, .external_lex_state = 3}, - [2564] = {.lex_state = 0, .external_lex_state = 3}, - [2565] = {.lex_state = 0, .external_lex_state = 3}, - [2566] = {.lex_state = 7, .external_lex_state = 3}, - [2567] = {.lex_state = 10, .external_lex_state = 3}, - [2568] = {.lex_state = 7, .external_lex_state = 3}, + [2564] = {.lex_state = 7, .external_lex_state = 3}, }; enum { @@ -17388,78 +17386,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(2469), - [sym__statement] = STATE(4), - [sym_empty_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_macro_definition] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_foreign_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_union_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_extern_crate_declaration] = STATE(4), - [sym_const_item] = STATE(4), - [sym_static_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function_modifiers] = STATE(2468), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_extern_modifier] = STATE(1512), - [sym_visibility_modifier] = STATE(1338), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1285), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_source_file] = STATE(2529), + [sym__statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_macro_definition] = STATE(9), + [sym_attribute_item] = STATE(9), + [sym_inner_attribute_item] = STATE(9), + [sym_mod_item] = STATE(9), + [sym_foreign_mod_item] = STATE(9), + [sym_struct_item] = STATE(9), + [sym_union_item] = STATE(9), + [sym_enum_item] = STATE(9), + [sym_extern_crate_declaration] = STATE(9), + [sym_const_item] = STATE(9), + [sym_static_item] = STATE(9), + [sym_type_item] = STATE(9), + [sym_function_item] = STATE(9), + [sym_function_signature_item] = STATE(9), + [sym_function_modifiers] = STATE(2528), + [sym_impl_item] = STATE(9), + [sym_trait_item] = STATE(9), + [sym_associated_type] = STATE(9), + [sym_let_declaration] = STATE(9), + [sym_use_declaration] = STATE(9), + [sym_extern_modifier] = STATE(1484), + [sym_visibility_modifier] = STATE(1339), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1266), + [sym_macro_invocation] = STATE(68), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(70), + [sym_match_expression] = STATE(70), + [sym_while_expression] = STATE(70), + [sym_loop_expression] = STATE(70), + [sym_for_expression] = STATE(70), + [sym_const_block] = STATE(70), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2521), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(70), + [sym_async_block] = STATE(70), + [sym_block] = STATE(70), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -17536,77 +17534,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(2468), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(1512), - [sym_visibility_modifier] = STATE(1338), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1246), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_function_modifiers] = STATE(2528), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1484), + [sym_visibility_modifier] = STATE(1339), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(68), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(70), + [sym_match_expression] = STATE(70), + [sym_while_expression] = STATE(70), + [sym_loop_expression] = STATE(70), + [sym_for_expression] = STATE(70), + [sym_const_block] = STATE(70), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2521), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(70), + [sym_async_block] = STATE(70), + [sym_block] = STATE(70), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17683,230 +17681,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [3] = { - [sym__statement] = STATE(3), - [sym_empty_statement] = STATE(3), - [sym_expression_statement] = STATE(3), - [sym_macro_definition] = STATE(3), - [sym_attribute_item] = STATE(3), - [sym_inner_attribute_item] = STATE(3), - [sym_mod_item] = STATE(3), - [sym_foreign_mod_item] = STATE(3), - [sym_struct_item] = STATE(3), - [sym_union_item] = STATE(3), - [sym_enum_item] = STATE(3), - [sym_extern_crate_declaration] = STATE(3), - [sym_const_item] = STATE(3), - [sym_static_item] = STATE(3), - [sym_type_item] = STATE(3), - [sym_function_item] = STATE(3), - [sym_function_signature_item] = STATE(3), - [sym_function_modifiers] = STATE(2468), - [sym_impl_item] = STATE(3), - [sym_trait_item] = STATE(3), - [sym_associated_type] = STATE(3), - [sym_let_declaration] = STATE(3), - [sym_use_declaration] = STATE(3), - [sym_extern_modifier] = STATE(1512), - [sym_visibility_modifier] = STATE(1338), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1285), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [ts_builtin_sym_end] = ACTIONS(107), - [sym_identifier] = ACTIONS(109), - [anon_sym_SEMI] = ACTIONS(112), - [anon_sym_macro_rules_BANG] = ACTIONS(115), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(124), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_u8] = ACTIONS(130), - [anon_sym_i8] = ACTIONS(130), - [anon_sym_u16] = ACTIONS(130), - [anon_sym_i16] = ACTIONS(130), - [anon_sym_u32] = ACTIONS(130), - [anon_sym_i32] = ACTIONS(130), - [anon_sym_u64] = ACTIONS(130), - [anon_sym_i64] = ACTIONS(130), - [anon_sym_u128] = ACTIONS(130), - [anon_sym_i128] = ACTIONS(130), - [anon_sym_isize] = ACTIONS(130), - [anon_sym_usize] = ACTIONS(130), - [anon_sym_f32] = ACTIONS(130), - [anon_sym_f64] = ACTIONS(130), - [anon_sym_bool] = ACTIONS(130), - [anon_sym_str] = ACTIONS(130), - [anon_sym_char] = ACTIONS(130), - [anon_sym_SQUOTE] = ACTIONS(133), - [anon_sym_async] = ACTIONS(136), - [anon_sym_break] = ACTIONS(139), - [anon_sym_const] = ACTIONS(142), - [anon_sym_continue] = ACTIONS(145), - [anon_sym_default] = ACTIONS(148), - [anon_sym_enum] = ACTIONS(151), - [anon_sym_fn] = ACTIONS(154), - [anon_sym_for] = ACTIONS(157), - [anon_sym_if] = ACTIONS(160), - [anon_sym_impl] = ACTIONS(163), - [anon_sym_let] = ACTIONS(166), - [anon_sym_loop] = ACTIONS(169), - [anon_sym_match] = ACTIONS(172), - [anon_sym_mod] = ACTIONS(175), - [anon_sym_pub] = ACTIONS(178), - [anon_sym_return] = ACTIONS(181), - [anon_sym_static] = ACTIONS(184), - [anon_sym_struct] = ACTIONS(187), - [anon_sym_trait] = ACTIONS(190), - [anon_sym_type] = ACTIONS(193), - [anon_sym_union] = ACTIONS(196), - [anon_sym_unsafe] = ACTIONS(199), - [anon_sym_use] = ACTIONS(202), - [anon_sym_while] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(208), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_COLON_COLON] = ACTIONS(217), - [anon_sym_AMP] = ACTIONS(220), - [anon_sym_DOT_DOT] = ACTIONS(223), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(226), - [anon_sym_yield] = ACTIONS(229), - [anon_sym_move] = ACTIONS(232), - [sym_integer_literal] = ACTIONS(235), - [aux_sym_string_literal_token1] = ACTIONS(238), - [sym_char_literal] = ACTIONS(235), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(244), - [sym_super] = ACTIONS(247), - [sym_crate] = ACTIONS(250), - [sym_metavariable] = ACTIONS(253), - [sym_raw_string_literal] = ACTIONS(235), - [sym_float_literal] = ACTIONS(235), - [sym_block_comment] = ACTIONS(3), - }, - [4] = { - [sym__statement] = STATE(3), - [sym_empty_statement] = STATE(3), - [sym_expression_statement] = STATE(3), - [sym_macro_definition] = STATE(3), - [sym_attribute_item] = STATE(3), - [sym_inner_attribute_item] = STATE(3), - [sym_mod_item] = STATE(3), - [sym_foreign_mod_item] = STATE(3), - [sym_struct_item] = STATE(3), - [sym_union_item] = STATE(3), - [sym_enum_item] = STATE(3), - [sym_extern_crate_declaration] = STATE(3), - [sym_const_item] = STATE(3), - [sym_static_item] = STATE(3), - [sym_type_item] = STATE(3), - [sym_function_item] = STATE(3), - [sym_function_signature_item] = STATE(3), - [sym_function_modifiers] = STATE(2468), - [sym_impl_item] = STATE(3), - [sym_trait_item] = STATE(3), - [sym_associated_type] = STATE(3), - [sym_let_declaration] = STATE(3), - [sym_use_declaration] = STATE(3), - [sym_extern_modifier] = STATE(1512), - [sym_visibility_modifier] = STATE(1338), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1285), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [ts_builtin_sym_end] = ACTIONS(256), + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_macro_definition] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_foreign_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_union_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_extern_crate_declaration] = STATE(12), + [sym_const_item] = STATE(12), + [sym_static_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2528), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_extern_modifier] = STATE(1484), + [sym_visibility_modifier] = STATE(1339), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1239), + [sym_macro_invocation] = STATE(68), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(70), + [sym_match_expression] = STATE(70), + [sym_while_expression] = STATE(70), + [sym_loop_expression] = STATE(70), + [sym_for_expression] = STATE(70), + [sym_const_block] = STATE(70), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2521), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(70), + [sym_async_block] = STATE(70), + [sym_block] = STATE(70), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(107), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -17976,84 +17827,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [5] = { - [sym__statement] = STATE(6), - [sym_empty_statement] = STATE(6), - [sym_expression_statement] = STATE(6), - [sym_macro_definition] = STATE(6), - [sym_attribute_item] = STATE(6), - [sym_inner_attribute_item] = STATE(6), - [sym_mod_item] = STATE(6), - [sym_foreign_mod_item] = STATE(6), - [sym_struct_item] = STATE(6), - [sym_union_item] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_extern_crate_declaration] = STATE(6), - [sym_const_item] = STATE(6), - [sym_static_item] = STATE(6), - [sym_type_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function_modifiers] = STATE(2468), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_extern_modifier] = STATE(1512), - [sym_visibility_modifier] = STATE(1338), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1224), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [4] = { + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_macro_definition] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_foreign_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_union_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_extern_crate_declaration] = STATE(12), + [sym_const_item] = STATE(12), + [sym_static_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2528), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_extern_modifier] = STATE(1484), + [sym_visibility_modifier] = STATE(1339), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1242), + [sym_macro_invocation] = STATE(68), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(70), + [sym_match_expression] = STATE(70), + [sym_while_expression] = STATE(70), + [sym_loop_expression] = STATE(70), + [sym_for_expression] = STATE(70), + [sym_const_block] = STATE(70), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2521), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(70), + [sym_async_block] = STATE(70), + [sym_block] = STATE(70), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(258), + [anon_sym_RBRACE] = ACTIONS(109), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -18123,84 +17974,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [6] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2468), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1512), - [sym_visibility_modifier] = STATE(1338), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1203), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [5] = { + [sym__statement] = STATE(11), + [sym_empty_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_macro_definition] = STATE(11), + [sym_attribute_item] = STATE(11), + [sym_inner_attribute_item] = STATE(11), + [sym_mod_item] = STATE(11), + [sym_foreign_mod_item] = STATE(11), + [sym_struct_item] = STATE(11), + [sym_union_item] = STATE(11), + [sym_enum_item] = STATE(11), + [sym_extern_crate_declaration] = STATE(11), + [sym_const_item] = STATE(11), + [sym_static_item] = STATE(11), + [sym_type_item] = STATE(11), + [sym_function_item] = STATE(11), + [sym_function_signature_item] = STATE(11), + [sym_function_modifiers] = STATE(2528), + [sym_impl_item] = STATE(11), + [sym_trait_item] = STATE(11), + [sym_associated_type] = STATE(11), + [sym_let_declaration] = STATE(11), + [sym_use_declaration] = STATE(11), + [sym_extern_modifier] = STATE(1484), + [sym_visibility_modifier] = STATE(1339), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1213), + [sym_macro_invocation] = STATE(68), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(70), + [sym_match_expression] = STATE(70), + [sym_while_expression] = STATE(70), + [sym_loop_expression] = STATE(70), + [sym_for_expression] = STATE(70), + [sym_const_block] = STATE(70), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2521), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(70), + [sym_async_block] = STATE(70), + [sym_block] = STATE(70), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(260), + [anon_sym_RBRACE] = ACTIONS(111), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -18270,84 +18121,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [7] = { - [sym__statement] = STATE(8), - [sym_empty_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_macro_definition] = STATE(8), - [sym_attribute_item] = STATE(8), - [sym_inner_attribute_item] = STATE(8), - [sym_mod_item] = STATE(8), - [sym_foreign_mod_item] = STATE(8), - [sym_struct_item] = STATE(8), - [sym_union_item] = STATE(8), - [sym_enum_item] = STATE(8), - [sym_extern_crate_declaration] = STATE(8), - [sym_const_item] = STATE(8), - [sym_static_item] = STATE(8), - [sym_type_item] = STATE(8), - [sym_function_item] = STATE(8), - [sym_function_signature_item] = STATE(8), - [sym_function_modifiers] = STATE(2468), - [sym_impl_item] = STATE(8), - [sym_trait_item] = STATE(8), - [sym_associated_type] = STATE(8), - [sym_let_declaration] = STATE(8), - [sym_use_declaration] = STATE(8), - [sym_extern_modifier] = STATE(1512), - [sym_visibility_modifier] = STATE(1338), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1216), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [6] = { + [sym__statement] = STATE(14), + [sym_empty_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_macro_definition] = STATE(14), + [sym_attribute_item] = STATE(14), + [sym_inner_attribute_item] = STATE(14), + [sym_mod_item] = STATE(14), + [sym_foreign_mod_item] = STATE(14), + [sym_struct_item] = STATE(14), + [sym_union_item] = STATE(14), + [sym_enum_item] = STATE(14), + [sym_extern_crate_declaration] = STATE(14), + [sym_const_item] = STATE(14), + [sym_static_item] = STATE(14), + [sym_type_item] = STATE(14), + [sym_function_item] = STATE(14), + [sym_function_signature_item] = STATE(14), + [sym_function_modifiers] = STATE(2528), + [sym_impl_item] = STATE(14), + [sym_trait_item] = STATE(14), + [sym_associated_type] = STATE(14), + [sym_let_declaration] = STATE(14), + [sym_use_declaration] = STATE(14), + [sym_extern_modifier] = STATE(1484), + [sym_visibility_modifier] = STATE(1339), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1230), + [sym_macro_invocation] = STATE(68), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(70), + [sym_match_expression] = STATE(70), + [sym_while_expression] = STATE(70), + [sym_loop_expression] = STATE(70), + [sym_for_expression] = STATE(70), + [sym_const_block] = STATE(70), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2521), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(70), + [sym_async_block] = STATE(70), + [sym_block] = STATE(70), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(113), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -18417,84 +18268,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [8] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2468), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1512), - [sym_visibility_modifier] = STATE(1338), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1214), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [7] = { + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2528), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1484), + [sym_visibility_modifier] = STATE(1339), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1260), + [sym_macro_invocation] = STATE(68), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(70), + [sym_match_expression] = STATE(70), + [sym_while_expression] = STATE(70), + [sym_loop_expression] = STATE(70), + [sym_for_expression] = STATE(70), + [sym_const_block] = STATE(70), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2521), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(70), + [sym_async_block] = STATE(70), + [sym_block] = STATE(70), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(264), + [anon_sym_RBRACE] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -18564,84 +18415,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [8] = { + [sym__statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_macro_definition] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_foreign_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_union_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_extern_crate_declaration] = STATE(8), + [sym_const_item] = STATE(8), + [sym_static_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function_modifiers] = STATE(2528), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_extern_modifier] = STATE(1484), + [sym_visibility_modifier] = STATE(1339), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1266), + [sym_macro_invocation] = STATE(68), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(70), + [sym_match_expression] = STATE(70), + [sym_while_expression] = STATE(70), + [sym_loop_expression] = STATE(70), + [sym_for_expression] = STATE(70), + [sym_const_block] = STATE(70), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2521), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(70), + [sym_async_block] = STATE(70), + [sym_block] = STATE(70), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [ts_builtin_sym_end] = ACTIONS(117), + [sym_identifier] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(122), + [anon_sym_macro_rules_BANG] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(134), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_u8] = ACTIONS(140), + [anon_sym_i8] = ACTIONS(140), + [anon_sym_u16] = ACTIONS(140), + [anon_sym_i16] = ACTIONS(140), + [anon_sym_u32] = ACTIONS(140), + [anon_sym_i32] = ACTIONS(140), + [anon_sym_u64] = ACTIONS(140), + [anon_sym_i64] = ACTIONS(140), + [anon_sym_u128] = ACTIONS(140), + [anon_sym_i128] = ACTIONS(140), + [anon_sym_isize] = ACTIONS(140), + [anon_sym_usize] = ACTIONS(140), + [anon_sym_f32] = ACTIONS(140), + [anon_sym_f64] = ACTIONS(140), + [anon_sym_bool] = ACTIONS(140), + [anon_sym_str] = ACTIONS(140), + [anon_sym_char] = ACTIONS(140), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_async] = ACTIONS(146), + [anon_sym_break] = ACTIONS(149), + [anon_sym_const] = ACTIONS(152), + [anon_sym_continue] = ACTIONS(155), + [anon_sym_default] = ACTIONS(158), + [anon_sym_enum] = ACTIONS(161), + [anon_sym_fn] = ACTIONS(164), + [anon_sym_for] = ACTIONS(167), + [anon_sym_if] = ACTIONS(170), + [anon_sym_impl] = ACTIONS(173), + [anon_sym_let] = ACTIONS(176), + [anon_sym_loop] = ACTIONS(179), + [anon_sym_match] = ACTIONS(182), + [anon_sym_mod] = ACTIONS(185), + [anon_sym_pub] = ACTIONS(188), + [anon_sym_return] = ACTIONS(191), + [anon_sym_static] = ACTIONS(194), + [anon_sym_struct] = ACTIONS(197), + [anon_sym_trait] = ACTIONS(200), + [anon_sym_type] = ACTIONS(203), + [anon_sym_union] = ACTIONS(206), + [anon_sym_unsafe] = ACTIONS(209), + [anon_sym_use] = ACTIONS(212), + [anon_sym_while] = ACTIONS(215), + [anon_sym_POUND] = ACTIONS(218), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(224), + [anon_sym_COLON_COLON] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(230), + [anon_sym_DOT_DOT] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PIPE] = ACTIONS(236), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_move] = ACTIONS(242), + [sym_integer_literal] = ACTIONS(245), + [aux_sym_string_literal_token1] = ACTIONS(248), + [sym_char_literal] = ACTIONS(245), + [anon_sym_true] = ACTIONS(251), + [anon_sym_false] = ACTIONS(251), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(254), + [sym_super] = ACTIONS(257), + [sym_crate] = ACTIONS(260), + [sym_metavariable] = ACTIONS(263), + [sym_raw_string_literal] = ACTIONS(245), + [sym_float_literal] = ACTIONS(245), + [sym_block_comment] = ACTIONS(3), + }, [9] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2468), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1512), - [sym_visibility_modifier] = STATE(1338), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1220), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym__statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_macro_definition] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_foreign_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_union_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_extern_crate_declaration] = STATE(8), + [sym_const_item] = STATE(8), + [sym_static_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function_modifiers] = STATE(2528), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_extern_modifier] = STATE(1484), + [sym_visibility_modifier] = STATE(1339), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1266), + [sym_macro_invocation] = STATE(68), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(70), + [sym_match_expression] = STATE(70), + [sym_while_expression] = STATE(70), + [sym_loop_expression] = STATE(70), + [sym_for_expression] = STATE(70), + [sym_const_block] = STATE(70), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2521), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(70), + [sym_async_block] = STATE(70), + [sym_block] = STATE(70), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [ts_builtin_sym_end] = ACTIONS(266), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(266), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -18712,77 +18710,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [10] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2468), - [sym_impl_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_associated_type] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_extern_modifier] = STATE(1512), - [sym_visibility_modifier] = STATE(1338), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym__statement] = STATE(3), + [sym_empty_statement] = STATE(3), + [sym_expression_statement] = STATE(3), + [sym_macro_definition] = STATE(3), + [sym_attribute_item] = STATE(3), + [sym_inner_attribute_item] = STATE(3), + [sym_mod_item] = STATE(3), + [sym_foreign_mod_item] = STATE(3), + [sym_struct_item] = STATE(3), + [sym_union_item] = STATE(3), + [sym_enum_item] = STATE(3), + [sym_extern_crate_declaration] = STATE(3), + [sym_const_item] = STATE(3), + [sym_static_item] = STATE(3), + [sym_type_item] = STATE(3), + [sym_function_item] = STATE(3), + [sym_function_signature_item] = STATE(3), + [sym_function_modifiers] = STATE(2528), + [sym_impl_item] = STATE(3), + [sym_trait_item] = STATE(3), + [sym_associated_type] = STATE(3), + [sym_let_declaration] = STATE(3), + [sym_use_declaration] = STATE(3), + [sym_extern_modifier] = STATE(1484), + [sym_visibility_modifier] = STATE(1339), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1228), + [sym_macro_invocation] = STATE(68), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(70), + [sym_match_expression] = STATE(70), + [sym_while_expression] = STATE(70), + [sym_loop_expression] = STATE(70), + [sym_for_expression] = STATE(70), + [sym_const_block] = STATE(70), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2521), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(70), + [sym_async_block] = STATE(70), + [sym_block] = STATE(70), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -18859,77 +18857,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [11] = { - [sym__statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_macro_definition] = STATE(9), - [sym_attribute_item] = STATE(9), - [sym_inner_attribute_item] = STATE(9), - [sym_mod_item] = STATE(9), - [sym_foreign_mod_item] = STATE(9), - [sym_struct_item] = STATE(9), - [sym_union_item] = STATE(9), - [sym_enum_item] = STATE(9), - [sym_extern_crate_declaration] = STATE(9), - [sym_const_item] = STATE(9), - [sym_static_item] = STATE(9), - [sym_type_item] = STATE(9), - [sym_function_item] = STATE(9), - [sym_function_signature_item] = STATE(9), - [sym_function_modifiers] = STATE(2468), - [sym_impl_item] = STATE(9), - [sym_trait_item] = STATE(9), - [sym_associated_type] = STATE(9), - [sym_let_declaration] = STATE(9), - [sym_use_declaration] = STATE(9), - [sym_extern_modifier] = STATE(1512), - [sym_visibility_modifier] = STATE(1338), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1223), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_macro_definition] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_foreign_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_union_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_extern_crate_declaration] = STATE(12), + [sym_const_item] = STATE(12), + [sym_static_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2528), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_extern_modifier] = STATE(1484), + [sym_visibility_modifier] = STATE(1339), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1206), + [sym_macro_invocation] = STATE(68), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(70), + [sym_match_expression] = STATE(70), + [sym_while_expression] = STATE(70), + [sym_loop_expression] = STATE(70), + [sym_for_expression] = STATE(70), + [sym_const_block] = STATE(70), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2521), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(70), + [sym_async_block] = STATE(70), + [sym_block] = STATE(70), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -19006,77 +19004,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [12] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2468), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1512), - [sym_visibility_modifier] = STATE(1338), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1240), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_macro_definition] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_foreign_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_union_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_extern_crate_declaration] = STATE(12), + [sym_const_item] = STATE(12), + [sym_static_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2528), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_extern_modifier] = STATE(1484), + [sym_visibility_modifier] = STATE(1339), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1266), + [sym_macro_invocation] = STATE(96), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(70), + [sym_match_expression] = STATE(70), + [sym_while_expression] = STATE(70), + [sym_loop_expression] = STATE(70), + [sym_for_expression] = STATE(70), + [sym_const_block] = STATE(70), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2521), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(70), + [sym_async_block] = STATE(70), + [sym_block] = STATE(70), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(119), + [anon_sym_SEMI] = ACTIONS(122), + [anon_sym_macro_rules_BANG] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(134), + [anon_sym_STAR] = ACTIONS(137), + [anon_sym_u8] = ACTIONS(140), + [anon_sym_i8] = ACTIONS(140), + [anon_sym_u16] = ACTIONS(140), + [anon_sym_i16] = ACTIONS(140), + [anon_sym_u32] = ACTIONS(140), + [anon_sym_i32] = ACTIONS(140), + [anon_sym_u64] = ACTIONS(140), + [anon_sym_i64] = ACTIONS(140), + [anon_sym_u128] = ACTIONS(140), + [anon_sym_i128] = ACTIONS(140), + [anon_sym_isize] = ACTIONS(140), + [anon_sym_usize] = ACTIONS(140), + [anon_sym_f32] = ACTIONS(140), + [anon_sym_f64] = ACTIONS(140), + [anon_sym_bool] = ACTIONS(140), + [anon_sym_str] = ACTIONS(140), + [anon_sym_char] = ACTIONS(140), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_async] = ACTIONS(146), + [anon_sym_break] = ACTIONS(149), + [anon_sym_const] = ACTIONS(152), + [anon_sym_continue] = ACTIONS(155), + [anon_sym_default] = ACTIONS(158), + [anon_sym_enum] = ACTIONS(161), + [anon_sym_fn] = ACTIONS(164), + [anon_sym_for] = ACTIONS(167), + [anon_sym_if] = ACTIONS(170), + [anon_sym_impl] = ACTIONS(173), + [anon_sym_let] = ACTIONS(176), + [anon_sym_loop] = ACTIONS(179), + [anon_sym_match] = ACTIONS(182), + [anon_sym_mod] = ACTIONS(185), + [anon_sym_pub] = ACTIONS(188), + [anon_sym_return] = ACTIONS(191), + [anon_sym_static] = ACTIONS(194), + [anon_sym_struct] = ACTIONS(197), + [anon_sym_trait] = ACTIONS(200), + [anon_sym_type] = ACTIONS(203), + [anon_sym_union] = ACTIONS(206), + [anon_sym_unsafe] = ACTIONS(209), + [anon_sym_use] = ACTIONS(212), + [anon_sym_while] = ACTIONS(215), + [anon_sym_POUND] = ACTIONS(218), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(224), + [anon_sym_COLON_COLON] = ACTIONS(227), + [anon_sym_AMP] = ACTIONS(230), + [anon_sym_DOT_DOT] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_PIPE] = ACTIONS(236), + [anon_sym_yield] = ACTIONS(239), + [anon_sym_move] = ACTIONS(242), + [sym_integer_literal] = ACTIONS(245), + [aux_sym_string_literal_token1] = ACTIONS(248), + [sym_char_literal] = ACTIONS(245), + [anon_sym_true] = ACTIONS(251), + [anon_sym_false] = ACTIONS(251), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(254), + [sym_super] = ACTIONS(257), + [sym_crate] = ACTIONS(260), + [sym_metavariable] = ACTIONS(263), + [sym_raw_string_literal] = ACTIONS(245), + [sym_float_literal] = ACTIONS(245), + [sym_block_comment] = ACTIONS(3), + }, + [13] = { + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_macro_definition] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_foreign_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_union_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_extern_crate_declaration] = STATE(12), + [sym_const_item] = STATE(12), + [sym_static_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2528), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_extern_modifier] = STATE(1484), + [sym_visibility_modifier] = STATE(1339), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1220), + [sym_macro_invocation] = STATE(68), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(70), + [sym_match_expression] = STATE(70), + [sym_while_expression] = STATE(70), + [sym_loop_expression] = STATE(70), + [sym_for_expression] = STATE(70), + [sym_const_block] = STATE(70), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2521), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(70), + [sym_async_block] = STATE(70), + [sym_block] = STATE(70), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -19152,225 +19297,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [13] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2468), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1512), - [sym_visibility_modifier] = STATE(1338), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1285), - [sym_macro_invocation] = STATE(92), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(109), - [anon_sym_SEMI] = ACTIONS(112), - [anon_sym_macro_rules_BANG] = ACTIONS(115), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(121), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(124), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_u8] = ACTIONS(130), - [anon_sym_i8] = ACTIONS(130), - [anon_sym_u16] = ACTIONS(130), - [anon_sym_i16] = ACTIONS(130), - [anon_sym_u32] = ACTIONS(130), - [anon_sym_i32] = ACTIONS(130), - [anon_sym_u64] = ACTIONS(130), - [anon_sym_i64] = ACTIONS(130), - [anon_sym_u128] = ACTIONS(130), - [anon_sym_i128] = ACTIONS(130), - [anon_sym_isize] = ACTIONS(130), - [anon_sym_usize] = ACTIONS(130), - [anon_sym_f32] = ACTIONS(130), - [anon_sym_f64] = ACTIONS(130), - [anon_sym_bool] = ACTIONS(130), - [anon_sym_str] = ACTIONS(130), - [anon_sym_char] = ACTIONS(130), - [anon_sym_SQUOTE] = ACTIONS(133), - [anon_sym_async] = ACTIONS(136), - [anon_sym_break] = ACTIONS(139), - [anon_sym_const] = ACTIONS(142), - [anon_sym_continue] = ACTIONS(145), - [anon_sym_default] = ACTIONS(148), - [anon_sym_enum] = ACTIONS(151), - [anon_sym_fn] = ACTIONS(154), - [anon_sym_for] = ACTIONS(157), - [anon_sym_if] = ACTIONS(160), - [anon_sym_impl] = ACTIONS(163), - [anon_sym_let] = ACTIONS(166), - [anon_sym_loop] = ACTIONS(169), - [anon_sym_match] = ACTIONS(172), - [anon_sym_mod] = ACTIONS(175), - [anon_sym_pub] = ACTIONS(178), - [anon_sym_return] = ACTIONS(181), - [anon_sym_static] = ACTIONS(184), - [anon_sym_struct] = ACTIONS(187), - [anon_sym_trait] = ACTIONS(190), - [anon_sym_type] = ACTIONS(193), - [anon_sym_union] = ACTIONS(196), - [anon_sym_unsafe] = ACTIONS(199), - [anon_sym_use] = ACTIONS(202), - [anon_sym_while] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(208), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_extern] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_COLON_COLON] = ACTIONS(217), - [anon_sym_AMP] = ACTIONS(220), - [anon_sym_DOT_DOT] = ACTIONS(223), - [anon_sym_DASH] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(226), - [anon_sym_yield] = ACTIONS(229), - [anon_sym_move] = ACTIONS(232), - [sym_integer_literal] = ACTIONS(235), - [aux_sym_string_literal_token1] = ACTIONS(238), - [sym_char_literal] = ACTIONS(235), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(244), - [sym_super] = ACTIONS(247), - [sym_crate] = ACTIONS(250), - [sym_metavariable] = ACTIONS(253), - [sym_raw_string_literal] = ACTIONS(235), - [sym_float_literal] = ACTIONS(235), - [sym_block_comment] = ACTIONS(3), - }, [14] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2468), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1512), - [sym_visibility_modifier] = STATE(1338), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1234), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_macro_definition] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_foreign_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_union_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_extern_crate_declaration] = STATE(12), + [sym_const_item] = STATE(12), + [sym_static_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2528), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_extern_modifier] = STATE(1484), + [sym_visibility_modifier] = STATE(1339), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1219), + [sym_macro_invocation] = STATE(68), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(70), + [sym_match_expression] = STATE(70), + [sym_while_expression] = STATE(70), + [sym_loop_expression] = STATE(70), + [sym_for_expression] = STATE(70), + [sym_const_block] = STATE(70), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2521), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(70), + [sym_async_block] = STATE(70), + [sym_block] = STATE(70), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -19447,77 +19445,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [15] = { - [sym__statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_macro_definition] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_foreign_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_union_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_extern_crate_declaration] = STATE(14), - [sym_const_item] = STATE(14), - [sym_static_item] = STATE(14), - [sym_type_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2468), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_extern_modifier] = STATE(1512), - [sym_visibility_modifier] = STATE(1338), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1236), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_macro_definition] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_foreign_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_union_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_extern_crate_declaration] = STATE(12), + [sym_const_item] = STATE(12), + [sym_static_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2528), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_extern_modifier] = STATE(1484), + [sym_visibility_modifier] = STATE(1339), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1257), + [sym_macro_invocation] = STATE(68), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(70), + [sym_match_expression] = STATE(70), + [sym_while_expression] = STATE(70), + [sym_loop_expression] = STATE(70), + [sym_for_expression] = STATE(70), + [sym_const_block] = STATE(70), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2521), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(70), + [sym_async_block] = STATE(70), + [sym_block] = STATE(70), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -19594,77 +19592,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [16] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2468), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1512), - [sym_visibility_modifier] = STATE(1338), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1244), - [sym_macro_invocation] = STATE(74), - [sym_scoped_identifier] = STATE(1174), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(77), - [sym_match_expression] = STATE(77), - [sym_while_expression] = STATE(77), - [sym_loop_expression] = STATE(77), - [sym_for_expression] = STATE(77), - [sym_const_block] = STATE(77), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2452), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(77), - [sym_async_block] = STATE(77), - [sym_block] = STATE(77), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2528), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1484), + [sym_visibility_modifier] = STATE(1339), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1261), + [sym_macro_invocation] = STATE(68), + [sym_scoped_identifier] = STATE(1172), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(70), + [sym_match_expression] = STATE(70), + [sym_while_expression] = STATE(70), + [sym_loop_expression] = STATE(70), + [sym_for_expression] = STATE(70), + [sym_const_block] = STATE(70), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2521), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(70), + [sym_async_block] = STATE(70), + [sym_block] = STATE(70), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -19741,50 +19739,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1140), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1154), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(282), [anon_sym_LPAREN] = ACTIONS(282), @@ -19882,50 +19880,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1133), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(871), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(310), [anon_sym_LPAREN] = ACTIONS(13), @@ -19933,10 +19931,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_RBRACE] = ACTIONS(310), [anon_sym_EQ_GT] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(310), [anon_sym_RBRACK] = ACTIONS(310), [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(308), + [anon_sym_STAR] = ACTIONS(312), [anon_sym_QMARK] = ACTIONS(310), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -19973,18 +19971,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(308), [anon_sym_EQ] = ACTIONS(312), [anon_sym_COMMA] = ACTIONS(310), - [anon_sym_LT] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(312), [anon_sym_GT] = ACTIONS(312), [anon_sym_else] = ACTIONS(312), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(316), + [anon_sym_AMP] = ACTIONS(312), [anon_sym_DOT_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT] = ACTIONS(312), [anon_sym_DOT_DOT_EQ] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(308), + [anon_sym_DASH] = ACTIONS(312), [anon_sym_AMP_AMP] = ACTIONS(310), [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(312), [anon_sym_CARET] = ACTIONS(312), [anon_sym_EQ_EQ] = ACTIONS(310), [anon_sym_BANG_EQ] = ACTIONS(310), @@ -20022,62 +20020,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1134), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(17), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1111), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(322), - [anon_sym_RPAREN] = ACTIONS(322), + [anon_sym_SEMI] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_RPAREN] = ACTIONS(314), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(322), - [anon_sym_EQ_GT] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_RBRACK] = ACTIONS(322), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(324), - [anon_sym_QMARK] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(314), + [anon_sym_EQ_GT] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_RBRACK] = ACTIONS(314), + [anon_sym_PLUS] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(314), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -20095,8 +20093,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(21), [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(326), - [anon_sym_as] = ACTIONS(324), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(316), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -20111,42 +20109,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(324), - [anon_sym_COMMA] = ACTIONS(322), - [anon_sym_LT] = ACTIONS(324), - [anon_sym_GT] = ACTIONS(324), - [anon_sym_else] = ACTIONS(324), + [anon_sym_EQ] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_else] = ACTIONS(316), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(322), - [anon_sym_DOT_DOT] = ACTIONS(324), - [anon_sym_DOT_DOT_EQ] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_AMP_AMP] = ACTIONS(322), - [anon_sym_PIPE_PIPE] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(324), - [anon_sym_CARET] = ACTIONS(324), - [anon_sym_EQ_EQ] = ACTIONS(322), - [anon_sym_BANG_EQ] = ACTIONS(322), - [anon_sym_LT_EQ] = ACTIONS(322), - [anon_sym_GT_EQ] = ACTIONS(322), - [anon_sym_LT_LT] = ACTIONS(324), - [anon_sym_GT_GT] = ACTIONS(324), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PERCENT] = ACTIONS(324), - [anon_sym_PLUS_EQ] = ACTIONS(322), - [anon_sym_DASH_EQ] = ACTIONS(322), - [anon_sym_STAR_EQ] = ACTIONS(322), - [anon_sym_SLASH_EQ] = ACTIONS(322), - [anon_sym_PERCENT_EQ] = ACTIONS(322), - [anon_sym_AMP_EQ] = ACTIONS(322), - [anon_sym_PIPE_EQ] = ACTIONS(322), - [anon_sym_CARET_EQ] = ACTIONS(322), - [anon_sym_LT_LT_EQ] = ACTIONS(322), - [anon_sym_GT_GT_EQ] = ACTIONS(322), + [anon_sym_AMP] = ACTIONS(316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(314), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_PIPE_PIPE] = ACTIONS(314), + [anon_sym_PIPE] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(314), + [anon_sym_BANG_EQ] = ACTIONS(314), + [anon_sym_LT_EQ] = ACTIONS(314), + [anon_sym_GT_EQ] = ACTIONS(314), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(316), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_PLUS_EQ] = ACTIONS(314), + [anon_sym_DASH_EQ] = ACTIONS(314), + [anon_sym_STAR_EQ] = ACTIONS(314), + [anon_sym_SLASH_EQ] = ACTIONS(314), + [anon_sym_PERCENT_EQ] = ACTIONS(314), + [anon_sym_AMP_EQ] = ACTIONS(314), + [anon_sym_PIPE_EQ] = ACTIONS(314), + [anon_sym_CARET_EQ] = ACTIONS(314), + [anon_sym_LT_LT_EQ] = ACTIONS(314), + [anon_sym_GT_GT_EQ] = ACTIONS(314), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(324), + [anon_sym_DOT] = ACTIONS(316), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20162,62 +20160,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(954), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1111), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(328), - [anon_sym_RPAREN] = ACTIONS(328), + [anon_sym_SEMI] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(314), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(328), - [anon_sym_EQ_GT] = ACTIONS(328), - [anon_sym_LBRACK] = ACTIONS(328), - [anon_sym_RBRACK] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_STAR] = ACTIONS(330), - [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_RBRACE] = ACTIONS(314), + [anon_sym_EQ_GT] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_RBRACK] = ACTIONS(314), + [anon_sym_PLUS] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(314), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -20236,7 +20234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(330), + [anon_sym_as] = ACTIONS(316), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -20251,42 +20249,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(330), - [anon_sym_COMMA] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(330), - [anon_sym_GT] = ACTIONS(330), - [anon_sym_else] = ACTIONS(330), + [anon_sym_EQ] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_else] = ACTIONS(316), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT] = ACTIONS(330), - [anon_sym_DOT_DOT_EQ] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_AMP_AMP] = ACTIONS(328), - [anon_sym_PIPE_PIPE] = ACTIONS(328), - [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(330), - [anon_sym_EQ_EQ] = ACTIONS(328), - [anon_sym_BANG_EQ] = ACTIONS(328), - [anon_sym_LT_EQ] = ACTIONS(328), - [anon_sym_GT_EQ] = ACTIONS(328), - [anon_sym_LT_LT] = ACTIONS(330), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_SLASH] = ACTIONS(330), - [anon_sym_PERCENT] = ACTIONS(330), - [anon_sym_PLUS_EQ] = ACTIONS(328), - [anon_sym_DASH_EQ] = ACTIONS(328), - [anon_sym_STAR_EQ] = ACTIONS(328), - [anon_sym_SLASH_EQ] = ACTIONS(328), - [anon_sym_PERCENT_EQ] = ACTIONS(328), - [anon_sym_AMP_EQ] = ACTIONS(328), - [anon_sym_PIPE_EQ] = ACTIONS(328), - [anon_sym_CARET_EQ] = ACTIONS(328), - [anon_sym_LT_LT_EQ] = ACTIONS(328), - [anon_sym_GT_GT_EQ] = ACTIONS(328), + [anon_sym_AMP] = ACTIONS(316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(314), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_PIPE_PIPE] = ACTIONS(314), + [anon_sym_PIPE] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(314), + [anon_sym_BANG_EQ] = ACTIONS(314), + [anon_sym_LT_EQ] = ACTIONS(314), + [anon_sym_GT_EQ] = ACTIONS(314), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(316), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_PLUS_EQ] = ACTIONS(314), + [anon_sym_DASH_EQ] = ACTIONS(314), + [anon_sym_STAR_EQ] = ACTIONS(314), + [anon_sym_SLASH_EQ] = ACTIONS(314), + [anon_sym_PERCENT_EQ] = ACTIONS(314), + [anon_sym_AMP_EQ] = ACTIONS(314), + [anon_sym_PIPE_EQ] = ACTIONS(314), + [anon_sym_CARET_EQ] = ACTIONS(314), + [anon_sym_LT_LT_EQ] = ACTIONS(314), + [anon_sym_GT_GT_EQ] = ACTIONS(314), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(330), + [anon_sym_DOT] = ACTIONS(316), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20302,62 +20300,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1130), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(871), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(332), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(332), + [anon_sym_SEMI] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_RPAREN] = ACTIONS(310), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(332), - [anon_sym_EQ_GT] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(332), - [anon_sym_PLUS] = ACTIONS(334), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_QMARK] = ACTIONS(332), + [anon_sym_RBRACE] = ACTIONS(310), + [anon_sym_EQ_GT] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_RBRACK] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_STAR] = ACTIONS(312), + [anon_sym_QMARK] = ACTIONS(310), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -20376,7 +20374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(334), + [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -20391,42 +20389,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(334), - [anon_sym_COMMA] = ACTIONS(332), - [anon_sym_LT] = ACTIONS(314), - [anon_sym_GT] = ACTIONS(334), - [anon_sym_else] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(312), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_LT] = ACTIONS(312), + [anon_sym_GT] = ACTIONS(312), + [anon_sym_else] = ACTIONS(312), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(316), - [anon_sym_DOT_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(318), - [anon_sym_DOT_DOT_EQ] = ACTIONS(332), - [anon_sym_DASH] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(332), - [anon_sym_PIPE_PIPE] = ACTIONS(332), - [anon_sym_PIPE] = ACTIONS(320), - [anon_sym_CARET] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(332), - [anon_sym_BANG_EQ] = ACTIONS(332), - [anon_sym_LT_EQ] = ACTIONS(332), - [anon_sym_GT_EQ] = ACTIONS(332), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(334), - [anon_sym_SLASH] = ACTIONS(334), - [anon_sym_PERCENT] = ACTIONS(334), - [anon_sym_PLUS_EQ] = ACTIONS(332), - [anon_sym_DASH_EQ] = ACTIONS(332), - [anon_sym_STAR_EQ] = ACTIONS(332), - [anon_sym_SLASH_EQ] = ACTIONS(332), - [anon_sym_PERCENT_EQ] = ACTIONS(332), - [anon_sym_AMP_EQ] = ACTIONS(332), - [anon_sym_PIPE_EQ] = ACTIONS(332), - [anon_sym_CARET_EQ] = ACTIONS(332), - [anon_sym_LT_LT_EQ] = ACTIONS(332), - [anon_sym_GT_GT_EQ] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_DOT_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(310), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(310), + [anon_sym_PIPE] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_EQ_EQ] = ACTIONS(310), + [anon_sym_BANG_EQ] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(312), + [anon_sym_SLASH] = ACTIONS(312), + [anon_sym_PERCENT] = ACTIONS(312), + [anon_sym_PLUS_EQ] = ACTIONS(310), + [anon_sym_DASH_EQ] = ACTIONS(310), + [anon_sym_STAR_EQ] = ACTIONS(310), + [anon_sym_SLASH_EQ] = ACTIONS(310), + [anon_sym_PERCENT_EQ] = ACTIONS(310), + [anon_sym_AMP_EQ] = ACTIONS(310), + [anon_sym_PIPE_EQ] = ACTIONS(310), + [anon_sym_CARET_EQ] = ACTIONS(310), + [anon_sym_LT_LT_EQ] = ACTIONS(310), + [anon_sym_GT_GT_EQ] = ACTIONS(310), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(334), + [anon_sym_DOT] = ACTIONS(312), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20442,62 +20440,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(954), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1138), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(17), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(328), + [anon_sym_SEMI] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(318), + [anon_sym_RPAREN] = ACTIONS(318), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(328), - [anon_sym_EQ_GT] = ACTIONS(328), - [anon_sym_LBRACK] = ACTIONS(328), - [anon_sym_RBRACK] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_STAR] = ACTIONS(330), - [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_RBRACE] = ACTIONS(318), + [anon_sym_EQ_GT] = ACTIONS(318), + [anon_sym_LBRACK] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(320), + [anon_sym_STAR] = ACTIONS(320), + [anon_sym_QMARK] = ACTIONS(318), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -20515,8 +20513,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(21), [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(330), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_as] = ACTIONS(320), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -20531,42 +20529,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(330), - [anon_sym_COMMA] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(330), - [anon_sym_GT] = ACTIONS(330), - [anon_sym_else] = ACTIONS(330), + [anon_sym_EQ] = ACTIONS(320), + [anon_sym_COMMA] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(320), + [anon_sym_GT] = ACTIONS(320), + [anon_sym_else] = ACTIONS(320), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT] = ACTIONS(330), - [anon_sym_DOT_DOT_EQ] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_AMP_AMP] = ACTIONS(328), - [anon_sym_PIPE_PIPE] = ACTIONS(328), - [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(330), - [anon_sym_EQ_EQ] = ACTIONS(328), - [anon_sym_BANG_EQ] = ACTIONS(328), - [anon_sym_LT_EQ] = ACTIONS(328), - [anon_sym_GT_EQ] = ACTIONS(328), - [anon_sym_LT_LT] = ACTIONS(330), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_SLASH] = ACTIONS(330), - [anon_sym_PERCENT] = ACTIONS(330), - [anon_sym_PLUS_EQ] = ACTIONS(328), - [anon_sym_DASH_EQ] = ACTIONS(328), - [anon_sym_STAR_EQ] = ACTIONS(328), - [anon_sym_SLASH_EQ] = ACTIONS(328), - [anon_sym_PERCENT_EQ] = ACTIONS(328), - [anon_sym_AMP_EQ] = ACTIONS(328), - [anon_sym_PIPE_EQ] = ACTIONS(328), - [anon_sym_CARET_EQ] = ACTIONS(328), - [anon_sym_LT_LT_EQ] = ACTIONS(328), - [anon_sym_GT_GT_EQ] = ACTIONS(328), + [anon_sym_AMP] = ACTIONS(320), + [anon_sym_DOT_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT_EQ] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(320), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(320), + [anon_sym_CARET] = ACTIONS(320), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(318), + [anon_sym_GT_EQ] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(320), + [anon_sym_PERCENT] = ACTIONS(320), + [anon_sym_PLUS_EQ] = ACTIONS(318), + [anon_sym_DASH_EQ] = ACTIONS(318), + [anon_sym_STAR_EQ] = ACTIONS(318), + [anon_sym_SLASH_EQ] = ACTIONS(318), + [anon_sym_PERCENT_EQ] = ACTIONS(318), + [anon_sym_AMP_EQ] = ACTIONS(318), + [anon_sym_PIPE_EQ] = ACTIONS(318), + [anon_sym_CARET_EQ] = ACTIONS(318), + [anon_sym_LT_LT_EQ] = ACTIONS(318), + [anon_sym_GT_GT_EQ] = ACTIONS(318), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(330), + [anon_sym_DOT] = ACTIONS(320), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20582,62 +20580,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1111), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1148), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(336), + [anon_sym_SEMI] = ACTIONS(324), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(336), + [anon_sym_RPAREN] = ACTIONS(324), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(336), - [anon_sym_EQ_GT] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_RBRACK] = ACTIONS(336), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(338), - [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_RBRACE] = ACTIONS(324), + [anon_sym_EQ_GT] = ACTIONS(324), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(324), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_STAR] = ACTIONS(308), + [anon_sym_QMARK] = ACTIONS(324), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -20656,7 +20654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(338), + [anon_sym_as] = ACTIONS(326), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -20671,42 +20669,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_COMMA] = ACTIONS(336), - [anon_sym_LT] = ACTIONS(338), - [anon_sym_GT] = ACTIONS(338), - [anon_sym_else] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(326), + [anon_sym_COMMA] = ACTIONS(324), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(326), + [anon_sym_else] = ACTIONS(326), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(338), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(338), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(338), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(338), - [anon_sym_CARET] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_PERCENT] = ACTIONS(338), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(324), + [anon_sym_DOT_DOT] = ACTIONS(332), + [anon_sym_DOT_DOT_EQ] = ACTIONS(324), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_AMP_AMP] = ACTIONS(324), + [anon_sym_PIPE_PIPE] = ACTIONS(324), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_CARET] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(324), + [anon_sym_LT_EQ] = ACTIONS(324), + [anon_sym_GT_EQ] = ACTIONS(324), + [anon_sym_LT_LT] = ACTIONS(326), + [anon_sym_GT_GT] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PERCENT] = ACTIONS(326), + [anon_sym_PLUS_EQ] = ACTIONS(324), + [anon_sym_DASH_EQ] = ACTIONS(324), + [anon_sym_STAR_EQ] = ACTIONS(324), + [anon_sym_SLASH_EQ] = ACTIONS(324), + [anon_sym_PERCENT_EQ] = ACTIONS(324), + [anon_sym_AMP_EQ] = ACTIONS(324), + [anon_sym_PIPE_EQ] = ACTIONS(324), + [anon_sym_CARET_EQ] = ACTIONS(324), + [anon_sym_LT_LT_EQ] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(324), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(326), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20722,61 +20720,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [24] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1111), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1132), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(336), - [anon_sym_LPAREN] = ACTIONS(336), + [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(336), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_RBRACE] = ACTIONS(336), [anon_sym_EQ_GT] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(336), [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(308), [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -20813,18 +20811,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(308), [anon_sym_EQ] = ACTIONS(338), [anon_sym_COMMA] = ACTIONS(336), - [anon_sym_LT] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(328), [anon_sym_GT] = ACTIONS(338), [anon_sym_else] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(330), [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT] = ACTIONS(332), [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(308), [anon_sym_AMP_AMP] = ACTIONS(336), [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(334), [anon_sym_CARET] = ACTIONS(338), [anon_sym_EQ_EQ] = ACTIONS(336), [anon_sym_BANG_EQ] = ACTIONS(336), @@ -20862,50 +20860,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [25] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1262), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1205), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(282), [anon_sym_LBRACE] = ACTIONS(282), @@ -20996,56 +20994,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1238), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(871), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(310), [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(350), + [anon_sym_STAR] = ACTIONS(312), [anon_sym_QMARK] = ACTIONS(310), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), @@ -21081,17 +21079,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), [anon_sym_EQ] = ACTIONS(312), - [anon_sym_LT] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(312), [anon_sym_GT] = ACTIONS(312), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(364), + [anon_sym_AMP] = ACTIONS(312), [anon_sym_DOT_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(366), + [anon_sym_DOT_DOT] = ACTIONS(312), [anon_sym_DOT_DOT_EQ] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(350), + [anon_sym_DASH] = ACTIONS(312), [anon_sym_AMP_AMP] = ACTIONS(310), [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(312), [anon_sym_CARET] = ACTIONS(312), [anon_sym_EQ_EQ] = ACTIONS(310), [anon_sym_BANG_EQ] = ACTIONS(310), @@ -21129,57 +21127,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(954), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1221), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(328), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_LBRACK] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_STAR] = ACTIONS(330), - [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_STAR] = ACTIONS(350), + [anon_sym_QMARK] = ACTIONS(324), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -21198,7 +21196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(330), + [anon_sym_as] = ACTIONS(326), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -21213,40 +21211,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(330), - [anon_sym_LT] = ACTIONS(330), - [anon_sym_GT] = ACTIONS(330), + [anon_sym_EQ] = ACTIONS(326), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(326), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT] = ACTIONS(330), - [anon_sym_DOT_DOT_EQ] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_AMP_AMP] = ACTIONS(328), - [anon_sym_PIPE_PIPE] = ACTIONS(328), - [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(330), - [anon_sym_EQ_EQ] = ACTIONS(328), - [anon_sym_BANG_EQ] = ACTIONS(328), - [anon_sym_LT_EQ] = ACTIONS(328), - [anon_sym_GT_EQ] = ACTIONS(328), - [anon_sym_LT_LT] = ACTIONS(330), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_SLASH] = ACTIONS(330), - [anon_sym_PERCENT] = ACTIONS(330), - [anon_sym_PLUS_EQ] = ACTIONS(328), - [anon_sym_DASH_EQ] = ACTIONS(328), - [anon_sym_STAR_EQ] = ACTIONS(328), - [anon_sym_SLASH_EQ] = ACTIONS(328), - [anon_sym_PERCENT_EQ] = ACTIONS(328), - [anon_sym_AMP_EQ] = ACTIONS(328), - [anon_sym_PIPE_EQ] = ACTIONS(328), - [anon_sym_CARET_EQ] = ACTIONS(328), - [anon_sym_LT_LT_EQ] = ACTIONS(328), - [anon_sym_GT_GT_EQ] = ACTIONS(328), + [anon_sym_AMP] = ACTIONS(364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(324), + [anon_sym_DOT_DOT] = ACTIONS(366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(324), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(324), + [anon_sym_PIPE_PIPE] = ACTIONS(324), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_CARET] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(324), + [anon_sym_LT_EQ] = ACTIONS(324), + [anon_sym_GT_EQ] = ACTIONS(324), + [anon_sym_LT_LT] = ACTIONS(326), + [anon_sym_GT_GT] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PERCENT] = ACTIONS(326), + [anon_sym_PLUS_EQ] = ACTIONS(324), + [anon_sym_DASH_EQ] = ACTIONS(324), + [anon_sym_STAR_EQ] = ACTIONS(324), + [anon_sym_SLASH_EQ] = ACTIONS(324), + [anon_sym_PERCENT_EQ] = ACTIONS(324), + [anon_sym_AMP_EQ] = ACTIONS(324), + [anon_sym_PIPE_EQ] = ACTIONS(324), + [anon_sym_CARET_EQ] = ACTIONS(324), + [anon_sym_LT_LT_EQ] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(324), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(330), + [anon_sym_DOT] = ACTIONS(326), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -21262,190 +21260,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [28] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1219), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(25), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(322), - [anon_sym_LBRACE] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(322), - [anon_sym_PLUS] = ACTIONS(324), - [anon_sym_STAR] = ACTIONS(324), - [anon_sym_QMARK] = ACTIONS(322), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(326), - [anon_sym_as] = ACTIONS(324), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(324), - [anon_sym_LT] = ACTIONS(324), - [anon_sym_GT] = ACTIONS(324), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(322), - [anon_sym_DOT_DOT] = ACTIONS(324), - [anon_sym_DOT_DOT_EQ] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(324), - [anon_sym_AMP_AMP] = ACTIONS(322), - [anon_sym_PIPE_PIPE] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(324), - [anon_sym_CARET] = ACTIONS(324), - [anon_sym_EQ_EQ] = ACTIONS(322), - [anon_sym_BANG_EQ] = ACTIONS(322), - [anon_sym_LT_EQ] = ACTIONS(322), - [anon_sym_GT_EQ] = ACTIONS(322), - [anon_sym_LT_LT] = ACTIONS(324), - [anon_sym_GT_GT] = ACTIONS(324), - [anon_sym_SLASH] = ACTIONS(324), - [anon_sym_PERCENT] = ACTIONS(324), - [anon_sym_PLUS_EQ] = ACTIONS(322), - [anon_sym_DASH_EQ] = ACTIONS(322), - [anon_sym_STAR_EQ] = ACTIONS(322), - [anon_sym_SLASH_EQ] = ACTIONS(322), - [anon_sym_PERCENT_EQ] = ACTIONS(322), - [anon_sym_AMP_EQ] = ACTIONS(322), - [anon_sym_PIPE_EQ] = ACTIONS(322), - [anon_sym_CARET_EQ] = ACTIONS(322), - [anon_sym_LT_LT_EQ] = ACTIONS(322), - [anon_sym_GT_GT_EQ] = ACTIONS(322), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(324), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [29] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1231), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1111), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(334), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(332), + [anon_sym_LBRACE] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_PLUS] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(314), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -21464,7 +21329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(334), + [anon_sym_as] = ACTIONS(316), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -21479,40 +21344,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(334), - [anon_sym_LT] = ACTIONS(314), - [anon_sym_GT] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT] = ACTIONS(316), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(332), - [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(332), - [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(332), - [anon_sym_PIPE_PIPE] = ACTIONS(332), - [anon_sym_PIPE] = ACTIONS(320), - [anon_sym_CARET] = ACTIONS(334), - [anon_sym_EQ_EQ] = ACTIONS(332), - [anon_sym_BANG_EQ] = ACTIONS(332), - [anon_sym_LT_EQ] = ACTIONS(332), - [anon_sym_GT_EQ] = ACTIONS(332), - [anon_sym_LT_LT] = ACTIONS(334), - [anon_sym_GT_GT] = ACTIONS(334), - [anon_sym_SLASH] = ACTIONS(334), - [anon_sym_PERCENT] = ACTIONS(334), - [anon_sym_PLUS_EQ] = ACTIONS(332), - [anon_sym_DASH_EQ] = ACTIONS(332), - [anon_sym_STAR_EQ] = ACTIONS(332), - [anon_sym_SLASH_EQ] = ACTIONS(332), - [anon_sym_PERCENT_EQ] = ACTIONS(332), - [anon_sym_AMP_EQ] = ACTIONS(332), - [anon_sym_PIPE_EQ] = ACTIONS(332), - [anon_sym_CARET_EQ] = ACTIONS(332), - [anon_sym_LT_LT_EQ] = ACTIONS(332), - [anon_sym_GT_GT_EQ] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(314), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_PIPE_PIPE] = ACTIONS(314), + [anon_sym_PIPE] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(314), + [anon_sym_BANG_EQ] = ACTIONS(314), + [anon_sym_LT_EQ] = ACTIONS(314), + [anon_sym_GT_EQ] = ACTIONS(314), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(316), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_PLUS_EQ] = ACTIONS(314), + [anon_sym_DASH_EQ] = ACTIONS(314), + [anon_sym_STAR_EQ] = ACTIONS(314), + [anon_sym_SLASH_EQ] = ACTIONS(314), + [anon_sym_PERCENT_EQ] = ACTIONS(314), + [anon_sym_AMP_EQ] = ACTIONS(314), + [anon_sym_PIPE_EQ] = ACTIONS(314), + [anon_sym_CARET_EQ] = ACTIONS(314), + [anon_sym_LT_LT_EQ] = ACTIONS(314), + [anon_sym_GT_GT_EQ] = ACTIONS(314), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(334), + [anon_sym_DOT] = ACTIONS(316), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -21527,57 +21392,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [30] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1111), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [29] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1263), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(350), [anon_sym_QMARK] = ACTIONS(336), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), @@ -21613,17 +21478,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), [anon_sym_EQ] = ACTIONS(338), - [anon_sym_LT] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(328), [anon_sym_GT] = ACTIONS(338), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(364), [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT] = ACTIONS(366), [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(350), [anon_sym_AMP_AMP] = ACTIONS(336), [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(334), [anon_sym_CARET] = ACTIONS(338), [anon_sym_EQ_EQ] = ACTIONS(336), [anon_sym_BANG_EQ] = ACTIONS(336), @@ -21660,58 +21525,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [30] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1238), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(25), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(318), + [anon_sym_LBRACE] = ACTIONS(318), + [anon_sym_LBRACK] = ACTIONS(318), + [anon_sym_PLUS] = ACTIONS(320), + [anon_sym_STAR] = ACTIONS(320), + [anon_sym_QMARK] = ACTIONS(318), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(322), + [anon_sym_as] = ACTIONS(320), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_EQ] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(320), + [anon_sym_GT] = ACTIONS(320), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(320), + [anon_sym_DOT_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT_EQ] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(320), + [anon_sym_AMP_AMP] = ACTIONS(318), + [anon_sym_PIPE_PIPE] = ACTIONS(318), + [anon_sym_PIPE] = ACTIONS(320), + [anon_sym_CARET] = ACTIONS(320), + [anon_sym_EQ_EQ] = ACTIONS(318), + [anon_sym_BANG_EQ] = ACTIONS(318), + [anon_sym_LT_EQ] = ACTIONS(318), + [anon_sym_GT_EQ] = ACTIONS(318), + [anon_sym_LT_LT] = ACTIONS(320), + [anon_sym_GT_GT] = ACTIONS(320), + [anon_sym_SLASH] = ACTIONS(320), + [anon_sym_PERCENT] = ACTIONS(320), + [anon_sym_PLUS_EQ] = ACTIONS(318), + [anon_sym_DASH_EQ] = ACTIONS(318), + [anon_sym_STAR_EQ] = ACTIONS(318), + [anon_sym_SLASH_EQ] = ACTIONS(318), + [anon_sym_PERCENT_EQ] = ACTIONS(318), + [anon_sym_AMP_EQ] = ACTIONS(318), + [anon_sym_PIPE_EQ] = ACTIONS(318), + [anon_sym_CARET_EQ] = ACTIONS(318), + [anon_sym_LT_LT_EQ] = ACTIONS(318), + [anon_sym_GT_GT_EQ] = ACTIONS(318), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [anon_sym_DOT] = ACTIONS(320), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, [31] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1111), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(871), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_PLUS] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(338), - [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_STAR] = ACTIONS(312), + [anon_sym_QMARK] = ACTIONS(310), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -21730,7 +21728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(338), + [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -21745,40 +21743,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(338), - [anon_sym_LT] = ACTIONS(338), - [anon_sym_GT] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(312), + [anon_sym_LT] = ACTIONS(312), + [anon_sym_GT] = ACTIONS(312), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(338), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT] = ACTIONS(338), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_DASH] = ACTIONS(338), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(338), - [anon_sym_CARET] = ACTIONS(338), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(338), - [anon_sym_GT_GT] = ACTIONS(338), - [anon_sym_SLASH] = ACTIONS(338), - [anon_sym_PERCENT] = ACTIONS(338), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_AMP] = ACTIONS(312), + [anon_sym_DOT_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(312), + [anon_sym_DOT_DOT_EQ] = ACTIONS(310), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_AMP_AMP] = ACTIONS(310), + [anon_sym_PIPE_PIPE] = ACTIONS(310), + [anon_sym_PIPE] = ACTIONS(312), + [anon_sym_CARET] = ACTIONS(312), + [anon_sym_EQ_EQ] = ACTIONS(310), + [anon_sym_BANG_EQ] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(312), + [anon_sym_GT_GT] = ACTIONS(312), + [anon_sym_SLASH] = ACTIONS(312), + [anon_sym_PERCENT] = ACTIONS(312), + [anon_sym_PLUS_EQ] = ACTIONS(310), + [anon_sym_DASH_EQ] = ACTIONS(310), + [anon_sym_STAR_EQ] = ACTIONS(310), + [anon_sym_SLASH_EQ] = ACTIONS(310), + [anon_sym_PERCENT_EQ] = ACTIONS(310), + [anon_sym_AMP_EQ] = ACTIONS(310), + [anon_sym_PIPE_EQ] = ACTIONS(310), + [anon_sym_CARET_EQ] = ACTIONS(310), + [anon_sym_LT_LT_EQ] = ACTIONS(310), + [anon_sym_GT_GT_EQ] = ACTIONS(310), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(312), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -21794,57 +21792,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(954), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1111), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(328), - [anon_sym_LBRACK] = ACTIONS(328), - [anon_sym_PLUS] = ACTIONS(330), - [anon_sym_STAR] = ACTIONS(330), - [anon_sym_QMARK] = ACTIONS(328), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(314), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_PLUS] = ACTIONS(316), + [anon_sym_STAR] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(314), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -21863,7 +21861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(330), + [anon_sym_as] = ACTIONS(316), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -21878,40 +21876,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(330), - [anon_sym_LT] = ACTIONS(330), - [anon_sym_GT] = ACTIONS(330), + [anon_sym_EQ] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT] = ACTIONS(316), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(328), - [anon_sym_DOT_DOT] = ACTIONS(330), - [anon_sym_DOT_DOT_EQ] = ACTIONS(328), - [anon_sym_DASH] = ACTIONS(330), - [anon_sym_AMP_AMP] = ACTIONS(328), - [anon_sym_PIPE_PIPE] = ACTIONS(328), - [anon_sym_PIPE] = ACTIONS(330), - [anon_sym_CARET] = ACTIONS(330), - [anon_sym_EQ_EQ] = ACTIONS(328), - [anon_sym_BANG_EQ] = ACTIONS(328), - [anon_sym_LT_EQ] = ACTIONS(328), - [anon_sym_GT_EQ] = ACTIONS(328), - [anon_sym_LT_LT] = ACTIONS(330), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_SLASH] = ACTIONS(330), - [anon_sym_PERCENT] = ACTIONS(330), - [anon_sym_PLUS_EQ] = ACTIONS(328), - [anon_sym_DASH_EQ] = ACTIONS(328), - [anon_sym_STAR_EQ] = ACTIONS(328), - [anon_sym_SLASH_EQ] = ACTIONS(328), - [anon_sym_PERCENT_EQ] = ACTIONS(328), - [anon_sym_AMP_EQ] = ACTIONS(328), - [anon_sym_PIPE_EQ] = ACTIONS(328), - [anon_sym_CARET_EQ] = ACTIONS(328), - [anon_sym_LT_LT_EQ] = ACTIONS(328), - [anon_sym_GT_GT_EQ] = ACTIONS(328), + [anon_sym_AMP] = ACTIONS(316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(314), + [anon_sym_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT_EQ] = ACTIONS(314), + [anon_sym_DASH] = ACTIONS(316), + [anon_sym_AMP_AMP] = ACTIONS(314), + [anon_sym_PIPE_PIPE] = ACTIONS(314), + [anon_sym_PIPE] = ACTIONS(316), + [anon_sym_CARET] = ACTIONS(316), + [anon_sym_EQ_EQ] = ACTIONS(314), + [anon_sym_BANG_EQ] = ACTIONS(314), + [anon_sym_LT_EQ] = ACTIONS(314), + [anon_sym_GT_EQ] = ACTIONS(314), + [anon_sym_LT_LT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(316), + [anon_sym_SLASH] = ACTIONS(316), + [anon_sym_PERCENT] = ACTIONS(316), + [anon_sym_PLUS_EQ] = ACTIONS(314), + [anon_sym_DASH_EQ] = ACTIONS(314), + [anon_sym_STAR_EQ] = ACTIONS(314), + [anon_sym_SLASH_EQ] = ACTIONS(314), + [anon_sym_PERCENT_EQ] = ACTIONS(314), + [anon_sym_AMP_EQ] = ACTIONS(314), + [anon_sym_PIPE_EQ] = ACTIONS(314), + [anon_sym_CARET_EQ] = ACTIONS(314), + [anon_sym_LT_LT_EQ] = ACTIONS(314), + [anon_sym_GT_GT_EQ] = ACTIONS(314), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(330), + [anon_sym_DOT] = ACTIONS(316), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -21927,57 +21925,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym_attribute_item] = STATE(624), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1175), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_enum_variant_list_repeat1] = STATE(624), + [sym_attribute_item] = STATE(55), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1197), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_enum_variant_list_repeat1] = STATE(55), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(368), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(368), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -22036,52 +22034,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym_attribute_item] = STATE(33), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1181), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_enum_variant_list_repeat1] = STATE(33), + [sym_attribute_item] = STATE(621), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1175), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_enum_variant_list_repeat1] = STATE(621), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -22145,57 +22143,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym_attribute_item] = STATE(57), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1194), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_enum_variant_list_repeat1] = STATE(57), + [sym_attribute_item] = STATE(34), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1182), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_enum_variant_list_repeat1] = STATE(34), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(378), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(378), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -22254,163 +22252,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_let_condition] = STATE(2013), - [sym_let_chain] = STATE(2279), - [sym__condition] = STATE(2279), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1287), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_let_condition] = STATE(2243), + [sym__let_chain] = STATE(2107), + [sym__condition] = STATE(2544), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(384), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [37] = { - [sym_attribute_item] = STATE(56), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1198), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_enum_variant_list_repeat1] = STATE(56), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(390), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -22439,13 +22329,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(382), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_POUND] = ACTIONS(370), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -22469,59 +22359,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [38] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_let_condition] = STATE(2013), - [sym_let_chain] = STATE(2237), - [sym__condition] = STATE(2237), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [37] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_let_condition] = STATE(2190), + [sym__let_chain] = STATE(2118), + [sym__condition] = STATE(2278), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22547,19 +22437,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(384), + [anon_sym_let] = ACTIONS(386), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22577,53 +22467,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [39] = { - [sym_attribute_item] = STATE(56), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1198), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_enum_variant_list_repeat1] = STATE(56), + [38] = { + [sym_attribute_item] = STATE(57), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1223), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_enum_variant_list_repeat1] = STATE(57), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(392), @@ -22685,167 +22575,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [40] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1221), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_let_condition] = STATE(1972), - [sym_let_chain] = STATE(2485), - [sym__condition] = STATE(2485), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(394), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [41] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_let_condition] = STATE(2013), - [sym_let_chain] = STATE(2300), - [sym__condition] = STATE(2300), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [39] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_let_condition] = STATE(2190), + [sym__let_chain] = STATE(2118), + [sym__condition] = STATE(2240), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22871,19 +22653,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(384), + [anon_sym_let] = ACTIONS(386), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22901,59 +22683,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [42] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_let_condition] = STATE(2013), - [sym_let_chain] = STATE(2201), - [sym__condition] = STATE(2201), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [40] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_let_condition] = STATE(2190), + [sym__let_chain] = STATE(2118), + [sym__condition] = STATE(2300), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22979,19 +22761,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(384), + [anon_sym_let] = ACTIONS(386), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23009,59 +22791,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [43] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_let_condition] = STATE(2013), - [sym_let_chain] = STATE(2304), - [sym__condition] = STATE(2304), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [41] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_let_condition] = STATE(2190), + [sym__let_chain] = STATE(2118), + [sym__condition] = STATE(2217), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23087,19 +22869,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(384), + [anon_sym_let] = ACTIONS(386), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23117,59 +22899,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [44] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_let_condition] = STATE(2013), - [sym_let_chain] = STATE(2140), - [sym__condition] = STATE(2140), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), + [42] = { + [sym_attribute_item] = STATE(51), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_enum_variant_list_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(394), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [43] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_let_condition] = STATE(2190), + [sym__let_chain] = STATE(2118), + [sym__condition] = STATE(2183), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23195,19 +23085,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(384), + [anon_sym_let] = ACTIONS(386), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23225,59 +23115,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [45] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_let_condition] = STATE(2013), - [sym_let_chain] = STATE(2217), - [sym__condition] = STATE(2217), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [44] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_let_condition] = STATE(2190), + [sym__let_chain] = STATE(2118), + [sym__condition] = STATE(2134), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23303,19 +23193,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(384), + [anon_sym_let] = ACTIONS(386), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23333,53 +23223,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [46] = { - [sym_attribute_item] = STATE(55), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1208), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_enum_variant_list_repeat1] = STATE(55), + [45] = { + [sym_attribute_item] = STATE(57), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1223), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_enum_variant_list_repeat1] = STATE(57), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(396), @@ -23441,59 +23331,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [47] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_let_condition] = STATE(2013), - [sym_let_chain] = STATE(2141), - [sym__condition] = STATE(2141), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [46] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_let_condition] = STATE(2190), + [sym__let_chain] = STATE(2118), + [sym__condition] = STATE(2136), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23519,19 +23409,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(384), + [anon_sym_let] = ACTIONS(386), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23549,53 +23439,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [48] = { - [sym_attribute_item] = STATE(56), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1198), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_enum_variant_list_repeat1] = STATE(56), + [47] = { + [sym_attribute_item] = STATE(57), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1223), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_enum_variant_list_repeat1] = STATE(57), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(398), @@ -23657,8 +23547,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [49] = { - [sym_else_clause] = STATE(70), + [48] = { + [sym_else_clause] = STATE(74), [ts_builtin_sym_end] = ACTIONS(400), [sym_identifier] = ACTIONS(402), [anon_sym_SEMI] = ACTIONS(400), @@ -23765,59 +23655,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(400), [sym_block_comment] = ACTIONS(3), }, + [49] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_let_condition] = STATE(2190), + [sym__let_chain] = STATE(2118), + [sym__condition] = STATE(2275), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(386), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, [50] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_let_condition] = STATE(2013), - [sym_let_chain] = STATE(2282), - [sym__condition] = STATE(2282), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_let_condition] = STATE(2190), + [sym__let_chain] = STATE(2118), + [sym__condition] = STATE(2137), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23843,19 +23841,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(384), + [anon_sym_let] = ACTIONS(386), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23874,52 +23872,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [51] = { - [sym_attribute_item] = STATE(56), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1198), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_enum_variant_list_repeat1] = STATE(56), + [sym_attribute_item] = STATE(621), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_enum_variant_list_repeat1] = STATE(621), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -23981,6 +23979,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [52] = { + [sym_attribute_item] = STATE(57), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1223), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_enum_variant_list_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [53] = { [ts_builtin_sym_end] = ACTIONS(406), [sym_identifier] = ACTIONS(408), [anon_sym_SEMI] = ACTIONS(406), @@ -24087,7 +24192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(406), [sym_block_comment] = ACTIONS(3), }, - [53] = { + [54] = { [ts_builtin_sym_end] = ACTIONS(410), [sym_identifier] = ACTIONS(412), [anon_sym_SEMI] = ACTIONS(410), @@ -24194,7 +24299,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(410), [sym_block_comment] = ACTIONS(3), }, - [54] = { + [55] = { + [sym_attribute_item] = STATE(621), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1193), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_enum_variant_list_repeat1] = STATE(621), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [56] = { [ts_builtin_sym_end] = ACTIONS(414), [sym_identifier] = ACTIONS(416), [anon_sym_SEMI] = ACTIONS(414), @@ -24301,53 +24513,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(414), [sym_block_comment] = ACTIONS(3), }, - [55] = { - [sym_attribute_item] = STATE(624), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1278), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_enum_variant_list_repeat1] = STATE(624), + [57] = { + [sym_attribute_item] = STATE(621), + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1255), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_enum_variant_list_repeat1] = STATE(621), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24408,53 +24620,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [56] = { - [sym_attribute_item] = STATE(624), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1257), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_enum_variant_list_repeat1] = STATE(624), + [58] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1240), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_let_condition] = STATE(1962), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(386), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [59] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1147), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_let_condition] = STATE(1962), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24485,18 +24802,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(382), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_POUND] = ACTIONS(370), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(420), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -24515,55 +24832,1221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [57] = { - [sym_attribute_item] = STATE(624), - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1192), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_enum_variant_list_repeat1] = STATE(624), + [60] = { + [ts_builtin_sym_end] = ACTIONS(422), + [sym_identifier] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym_macro_rules_BANG] = ACTIONS(422), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_LBRACE] = ACTIONS(422), + [anon_sym_RBRACE] = ACTIONS(422), + [anon_sym_LBRACK] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(424), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_u8] = ACTIONS(424), + [anon_sym_i8] = ACTIONS(424), + [anon_sym_u16] = ACTIONS(424), + [anon_sym_i16] = ACTIONS(424), + [anon_sym_u32] = ACTIONS(424), + [anon_sym_i32] = ACTIONS(424), + [anon_sym_u64] = ACTIONS(424), + [anon_sym_i64] = ACTIONS(424), + [anon_sym_u128] = ACTIONS(424), + [anon_sym_i128] = ACTIONS(424), + [anon_sym_isize] = ACTIONS(424), + [anon_sym_usize] = ACTIONS(424), + [anon_sym_f32] = ACTIONS(424), + [anon_sym_f64] = ACTIONS(424), + [anon_sym_bool] = ACTIONS(424), + [anon_sym_str] = ACTIONS(424), + [anon_sym_char] = ACTIONS(424), + [anon_sym_SQUOTE] = ACTIONS(424), + [anon_sym_as] = ACTIONS(424), + [anon_sym_async] = ACTIONS(424), + [anon_sym_break] = ACTIONS(424), + [anon_sym_const] = ACTIONS(424), + [anon_sym_continue] = ACTIONS(424), + [anon_sym_default] = ACTIONS(424), + [anon_sym_enum] = ACTIONS(424), + [anon_sym_fn] = ACTIONS(424), + [anon_sym_for] = ACTIONS(424), + [anon_sym_if] = ACTIONS(424), + [anon_sym_impl] = ACTIONS(424), + [anon_sym_let] = ACTIONS(424), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(424), + [anon_sym_mod] = ACTIONS(424), + [anon_sym_pub] = ACTIONS(424), + [anon_sym_return] = ACTIONS(424), + [anon_sym_static] = ACTIONS(424), + [anon_sym_struct] = ACTIONS(424), + [anon_sym_trait] = ACTIONS(424), + [anon_sym_type] = ACTIONS(424), + [anon_sym_union] = ACTIONS(424), + [anon_sym_unsafe] = ACTIONS(424), + [anon_sym_use] = ACTIONS(424), + [anon_sym_while] = ACTIONS(424), + [anon_sym_POUND] = ACTIONS(422), + [anon_sym_BANG] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(424), + [anon_sym_extern] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(424), + [anon_sym_GT] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(422), + [anon_sym_AMP] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(422), + [anon_sym_DOT_DOT] = ACTIONS(424), + [anon_sym_DOT_DOT_EQ] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(424), + [anon_sym_AMP_AMP] = ACTIONS(422), + [anon_sym_PIPE_PIPE] = ACTIONS(422), + [anon_sym_PIPE] = ACTIONS(424), + [anon_sym_CARET] = ACTIONS(424), + [anon_sym_EQ_EQ] = ACTIONS(422), + [anon_sym_BANG_EQ] = ACTIONS(422), + [anon_sym_LT_EQ] = ACTIONS(422), + [anon_sym_GT_EQ] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(424), + [anon_sym_GT_GT] = ACTIONS(424), + [anon_sym_SLASH] = ACTIONS(424), + [anon_sym_PERCENT] = ACTIONS(424), + [anon_sym_PLUS_EQ] = ACTIONS(422), + [anon_sym_DASH_EQ] = ACTIONS(422), + [anon_sym_STAR_EQ] = ACTIONS(422), + [anon_sym_SLASH_EQ] = ACTIONS(422), + [anon_sym_PERCENT_EQ] = ACTIONS(422), + [anon_sym_AMP_EQ] = ACTIONS(422), + [anon_sym_PIPE_EQ] = ACTIONS(422), + [anon_sym_CARET_EQ] = ACTIONS(422), + [anon_sym_LT_LT_EQ] = ACTIONS(422), + [anon_sym_GT_GT_EQ] = ACTIONS(422), + [anon_sym_yield] = ACTIONS(424), + [anon_sym_move] = ACTIONS(424), + [anon_sym_DOT] = ACTIONS(424), + [sym_integer_literal] = ACTIONS(422), + [aux_sym_string_literal_token1] = ACTIONS(422), + [sym_char_literal] = ACTIONS(422), + [anon_sym_true] = ACTIONS(424), + [anon_sym_false] = ACTIONS(424), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(424), + [sym_crate] = ACTIONS(424), + [sym_metavariable] = ACTIONS(422), + [sym_raw_string_literal] = ACTIONS(422), + [sym_float_literal] = ACTIONS(422), + [sym_block_comment] = ACTIONS(3), + }, + [61] = { + [ts_builtin_sym_end] = ACTIONS(426), + [sym_identifier] = ACTIONS(428), + [anon_sym_SEMI] = ACTIONS(426), + [anon_sym_macro_rules_BANG] = ACTIONS(426), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_LBRACE] = ACTIONS(426), + [anon_sym_RBRACE] = ACTIONS(426), + [anon_sym_LBRACK] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(428), + [anon_sym_STAR] = ACTIONS(428), + [anon_sym_QMARK] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(428), + [anon_sym_i8] = ACTIONS(428), + [anon_sym_u16] = ACTIONS(428), + [anon_sym_i16] = ACTIONS(428), + [anon_sym_u32] = ACTIONS(428), + [anon_sym_i32] = ACTIONS(428), + [anon_sym_u64] = ACTIONS(428), + [anon_sym_i64] = ACTIONS(428), + [anon_sym_u128] = ACTIONS(428), + [anon_sym_i128] = ACTIONS(428), + [anon_sym_isize] = ACTIONS(428), + [anon_sym_usize] = ACTIONS(428), + [anon_sym_f32] = ACTIONS(428), + [anon_sym_f64] = ACTIONS(428), + [anon_sym_bool] = ACTIONS(428), + [anon_sym_str] = ACTIONS(428), + [anon_sym_char] = ACTIONS(428), + [anon_sym_SQUOTE] = ACTIONS(428), + [anon_sym_as] = ACTIONS(428), + [anon_sym_async] = ACTIONS(428), + [anon_sym_break] = ACTIONS(428), + [anon_sym_const] = ACTIONS(428), + [anon_sym_continue] = ACTIONS(428), + [anon_sym_default] = ACTIONS(428), + [anon_sym_enum] = ACTIONS(428), + [anon_sym_fn] = ACTIONS(428), + [anon_sym_for] = ACTIONS(428), + [anon_sym_if] = ACTIONS(428), + [anon_sym_impl] = ACTIONS(428), + [anon_sym_let] = ACTIONS(428), + [anon_sym_loop] = ACTIONS(428), + [anon_sym_match] = ACTIONS(428), + [anon_sym_mod] = ACTIONS(428), + [anon_sym_pub] = ACTIONS(428), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(428), + [anon_sym_struct] = ACTIONS(428), + [anon_sym_trait] = ACTIONS(428), + [anon_sym_type] = ACTIONS(428), + [anon_sym_union] = ACTIONS(428), + [anon_sym_unsafe] = ACTIONS(428), + [anon_sym_use] = ACTIONS(428), + [anon_sym_while] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(426), + [anon_sym_BANG] = ACTIONS(428), + [anon_sym_EQ] = ACTIONS(428), + [anon_sym_extern] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(428), + [anon_sym_COLON_COLON] = ACTIONS(426), + [anon_sym_AMP] = ACTIONS(428), + [anon_sym_DOT_DOT_DOT] = ACTIONS(426), + [anon_sym_DOT_DOT] = ACTIONS(428), + [anon_sym_DOT_DOT_EQ] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(428), + [anon_sym_AMP_AMP] = ACTIONS(426), + [anon_sym_PIPE_PIPE] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(428), + [anon_sym_CARET] = ACTIONS(428), + [anon_sym_EQ_EQ] = ACTIONS(426), + [anon_sym_BANG_EQ] = ACTIONS(426), + [anon_sym_LT_EQ] = ACTIONS(426), + [anon_sym_GT_EQ] = ACTIONS(426), + [anon_sym_LT_LT] = ACTIONS(428), + [anon_sym_GT_GT] = ACTIONS(428), + [anon_sym_SLASH] = ACTIONS(428), + [anon_sym_PERCENT] = ACTIONS(428), + [anon_sym_PLUS_EQ] = ACTIONS(426), + [anon_sym_DASH_EQ] = ACTIONS(426), + [anon_sym_STAR_EQ] = ACTIONS(426), + [anon_sym_SLASH_EQ] = ACTIONS(426), + [anon_sym_PERCENT_EQ] = ACTIONS(426), + [anon_sym_AMP_EQ] = ACTIONS(426), + [anon_sym_PIPE_EQ] = ACTIONS(426), + [anon_sym_CARET_EQ] = ACTIONS(426), + [anon_sym_LT_LT_EQ] = ACTIONS(426), + [anon_sym_GT_GT_EQ] = ACTIONS(426), + [anon_sym_yield] = ACTIONS(428), + [anon_sym_move] = ACTIONS(428), + [anon_sym_DOT] = ACTIONS(428), + [sym_integer_literal] = ACTIONS(426), + [aux_sym_string_literal_token1] = ACTIONS(426), + [sym_char_literal] = ACTIONS(426), + [anon_sym_true] = ACTIONS(428), + [anon_sym_false] = ACTIONS(428), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(428), + [sym_super] = ACTIONS(428), + [sym_crate] = ACTIONS(428), + [sym_metavariable] = ACTIONS(426), + [sym_raw_string_literal] = ACTIONS(426), + [sym_float_literal] = ACTIONS(426), + [sym_block_comment] = ACTIONS(3), + }, + [62] = { + [ts_builtin_sym_end] = ACTIONS(430), + [sym_identifier] = ACTIONS(432), + [anon_sym_SEMI] = ACTIONS(430), + [anon_sym_macro_rules_BANG] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(430), + [anon_sym_RBRACE] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(430), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_QMARK] = ACTIONS(430), + [anon_sym_u8] = ACTIONS(432), + [anon_sym_i8] = ACTIONS(432), + [anon_sym_u16] = ACTIONS(432), + [anon_sym_i16] = ACTIONS(432), + [anon_sym_u32] = ACTIONS(432), + [anon_sym_i32] = ACTIONS(432), + [anon_sym_u64] = ACTIONS(432), + [anon_sym_i64] = ACTIONS(432), + [anon_sym_u128] = ACTIONS(432), + [anon_sym_i128] = ACTIONS(432), + [anon_sym_isize] = ACTIONS(432), + [anon_sym_usize] = ACTIONS(432), + [anon_sym_f32] = ACTIONS(432), + [anon_sym_f64] = ACTIONS(432), + [anon_sym_bool] = ACTIONS(432), + [anon_sym_str] = ACTIONS(432), + [anon_sym_char] = ACTIONS(432), + [anon_sym_SQUOTE] = ACTIONS(432), + [anon_sym_as] = ACTIONS(432), + [anon_sym_async] = ACTIONS(432), + [anon_sym_break] = ACTIONS(432), + [anon_sym_const] = ACTIONS(432), + [anon_sym_continue] = ACTIONS(432), + [anon_sym_default] = ACTIONS(432), + [anon_sym_enum] = ACTIONS(432), + [anon_sym_fn] = ACTIONS(432), + [anon_sym_for] = ACTIONS(432), + [anon_sym_if] = ACTIONS(432), + [anon_sym_impl] = ACTIONS(432), + [anon_sym_let] = ACTIONS(432), + [anon_sym_loop] = ACTIONS(432), + [anon_sym_match] = ACTIONS(432), + [anon_sym_mod] = ACTIONS(432), + [anon_sym_pub] = ACTIONS(432), + [anon_sym_return] = ACTIONS(432), + [anon_sym_static] = ACTIONS(432), + [anon_sym_struct] = ACTIONS(432), + [anon_sym_trait] = ACTIONS(432), + [anon_sym_type] = ACTIONS(432), + [anon_sym_union] = ACTIONS(432), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_use] = ACTIONS(432), + [anon_sym_while] = ACTIONS(432), + [anon_sym_POUND] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(432), + [anon_sym_EQ] = ACTIONS(432), + [anon_sym_extern] = ACTIONS(432), + [anon_sym_LT] = ACTIONS(432), + [anon_sym_GT] = ACTIONS(432), + [anon_sym_COLON_COLON] = ACTIONS(430), + [anon_sym_AMP] = ACTIONS(432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(430), + [anon_sym_DOT_DOT] = ACTIONS(432), + [anon_sym_DOT_DOT_EQ] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(430), + [anon_sym_PIPE_PIPE] = ACTIONS(430), + [anon_sym_PIPE] = ACTIONS(432), + [anon_sym_CARET] = ACTIONS(432), + [anon_sym_EQ_EQ] = ACTIONS(430), + [anon_sym_BANG_EQ] = ACTIONS(430), + [anon_sym_LT_EQ] = ACTIONS(430), + [anon_sym_GT_EQ] = ACTIONS(430), + [anon_sym_LT_LT] = ACTIONS(432), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_PERCENT] = ACTIONS(432), + [anon_sym_PLUS_EQ] = ACTIONS(430), + [anon_sym_DASH_EQ] = ACTIONS(430), + [anon_sym_STAR_EQ] = ACTIONS(430), + [anon_sym_SLASH_EQ] = ACTIONS(430), + [anon_sym_PERCENT_EQ] = ACTIONS(430), + [anon_sym_AMP_EQ] = ACTIONS(430), + [anon_sym_PIPE_EQ] = ACTIONS(430), + [anon_sym_CARET_EQ] = ACTIONS(430), + [anon_sym_LT_LT_EQ] = ACTIONS(430), + [anon_sym_GT_GT_EQ] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(432), + [anon_sym_move] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(432), + [sym_integer_literal] = ACTIONS(430), + [aux_sym_string_literal_token1] = ACTIONS(430), + [sym_char_literal] = ACTIONS(430), + [anon_sym_true] = ACTIONS(432), + [anon_sym_false] = ACTIONS(432), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(432), + [sym_super] = ACTIONS(432), + [sym_crate] = ACTIONS(432), + [sym_metavariable] = ACTIONS(430), + [sym_raw_string_literal] = ACTIONS(430), + [sym_float_literal] = ACTIONS(430), + [sym_block_comment] = ACTIONS(3), + }, + [63] = { + [ts_builtin_sym_end] = ACTIONS(434), + [sym_identifier] = ACTIONS(436), + [anon_sym_SEMI] = ACTIONS(434), + [anon_sym_macro_rules_BANG] = ACTIONS(434), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_RBRACE] = ACTIONS(434), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_PLUS] = ACTIONS(436), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_QMARK] = ACTIONS(434), + [anon_sym_u8] = ACTIONS(436), + [anon_sym_i8] = ACTIONS(436), + [anon_sym_u16] = ACTIONS(436), + [anon_sym_i16] = ACTIONS(436), + [anon_sym_u32] = ACTIONS(436), + [anon_sym_i32] = ACTIONS(436), + [anon_sym_u64] = ACTIONS(436), + [anon_sym_i64] = ACTIONS(436), + [anon_sym_u128] = ACTIONS(436), + [anon_sym_i128] = ACTIONS(436), + [anon_sym_isize] = ACTIONS(436), + [anon_sym_usize] = ACTIONS(436), + [anon_sym_f32] = ACTIONS(436), + [anon_sym_f64] = ACTIONS(436), + [anon_sym_bool] = ACTIONS(436), + [anon_sym_str] = ACTIONS(436), + [anon_sym_char] = ACTIONS(436), + [anon_sym_SQUOTE] = ACTIONS(436), + [anon_sym_as] = ACTIONS(436), + [anon_sym_async] = ACTIONS(436), + [anon_sym_break] = ACTIONS(436), + [anon_sym_const] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(436), + [anon_sym_default] = ACTIONS(436), + [anon_sym_enum] = ACTIONS(436), + [anon_sym_fn] = ACTIONS(436), + [anon_sym_for] = ACTIONS(436), + [anon_sym_if] = ACTIONS(436), + [anon_sym_impl] = ACTIONS(436), + [anon_sym_let] = ACTIONS(436), + [anon_sym_loop] = ACTIONS(436), + [anon_sym_match] = ACTIONS(436), + [anon_sym_mod] = ACTIONS(436), + [anon_sym_pub] = ACTIONS(436), + [anon_sym_return] = ACTIONS(436), + [anon_sym_static] = ACTIONS(436), + [anon_sym_struct] = ACTIONS(436), + [anon_sym_trait] = ACTIONS(436), + [anon_sym_type] = ACTIONS(436), + [anon_sym_union] = ACTIONS(436), + [anon_sym_unsafe] = ACTIONS(436), + [anon_sym_use] = ACTIONS(436), + [anon_sym_while] = ACTIONS(436), + [anon_sym_POUND] = ACTIONS(434), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_EQ] = ACTIONS(436), + [anon_sym_extern] = ACTIONS(436), + [anon_sym_LT] = ACTIONS(436), + [anon_sym_GT] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(434), + [anon_sym_AMP] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(434), + [anon_sym_DOT_DOT] = ACTIONS(436), + [anon_sym_DOT_DOT_EQ] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(436), + [anon_sym_AMP_AMP] = ACTIONS(434), + [anon_sym_PIPE_PIPE] = ACTIONS(434), + [anon_sym_PIPE] = ACTIONS(436), + [anon_sym_CARET] = ACTIONS(436), + [anon_sym_EQ_EQ] = ACTIONS(434), + [anon_sym_BANG_EQ] = ACTIONS(434), + [anon_sym_LT_EQ] = ACTIONS(434), + [anon_sym_GT_EQ] = ACTIONS(434), + [anon_sym_LT_LT] = ACTIONS(436), + [anon_sym_GT_GT] = ACTIONS(436), + [anon_sym_SLASH] = ACTIONS(436), + [anon_sym_PERCENT] = ACTIONS(436), + [anon_sym_PLUS_EQ] = ACTIONS(434), + [anon_sym_DASH_EQ] = ACTIONS(434), + [anon_sym_STAR_EQ] = ACTIONS(434), + [anon_sym_SLASH_EQ] = ACTIONS(434), + [anon_sym_PERCENT_EQ] = ACTIONS(434), + [anon_sym_AMP_EQ] = ACTIONS(434), + [anon_sym_PIPE_EQ] = ACTIONS(434), + [anon_sym_CARET_EQ] = ACTIONS(434), + [anon_sym_LT_LT_EQ] = ACTIONS(434), + [anon_sym_GT_GT_EQ] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(436), + [anon_sym_DOT] = ACTIONS(436), + [sym_integer_literal] = ACTIONS(434), + [aux_sym_string_literal_token1] = ACTIONS(434), + [sym_char_literal] = ACTIONS(434), + [anon_sym_true] = ACTIONS(436), + [anon_sym_false] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(436), + [sym_super] = ACTIONS(436), + [sym_crate] = ACTIONS(436), + [sym_metavariable] = ACTIONS(434), + [sym_raw_string_literal] = ACTIONS(434), + [sym_float_literal] = ACTIONS(434), + [sym_block_comment] = ACTIONS(3), + }, + [64] = { + [ts_builtin_sym_end] = ACTIONS(438), + [sym_identifier] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_macro_rules_BANG] = ACTIONS(438), + [anon_sym_LPAREN] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(438), + [anon_sym_RBRACE] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_STAR] = ACTIONS(440), + [anon_sym_QMARK] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(440), + [anon_sym_i8] = ACTIONS(440), + [anon_sym_u16] = ACTIONS(440), + [anon_sym_i16] = ACTIONS(440), + [anon_sym_u32] = ACTIONS(440), + [anon_sym_i32] = ACTIONS(440), + [anon_sym_u64] = ACTIONS(440), + [anon_sym_i64] = ACTIONS(440), + [anon_sym_u128] = ACTIONS(440), + [anon_sym_i128] = ACTIONS(440), + [anon_sym_isize] = ACTIONS(440), + [anon_sym_usize] = ACTIONS(440), + [anon_sym_f32] = ACTIONS(440), + [anon_sym_f64] = ACTIONS(440), + [anon_sym_bool] = ACTIONS(440), + [anon_sym_str] = ACTIONS(440), + [anon_sym_char] = ACTIONS(440), + [anon_sym_SQUOTE] = ACTIONS(440), + [anon_sym_as] = ACTIONS(440), + [anon_sym_async] = ACTIONS(440), + [anon_sym_break] = ACTIONS(440), + [anon_sym_const] = ACTIONS(440), + [anon_sym_continue] = ACTIONS(440), + [anon_sym_default] = ACTIONS(440), + [anon_sym_enum] = ACTIONS(440), + [anon_sym_fn] = ACTIONS(440), + [anon_sym_for] = ACTIONS(440), + [anon_sym_if] = ACTIONS(440), + [anon_sym_impl] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_loop] = ACTIONS(440), + [anon_sym_match] = ACTIONS(440), + [anon_sym_mod] = ACTIONS(440), + [anon_sym_pub] = ACTIONS(440), + [anon_sym_return] = ACTIONS(440), + [anon_sym_static] = ACTIONS(440), + [anon_sym_struct] = ACTIONS(440), + [anon_sym_trait] = ACTIONS(440), + [anon_sym_type] = ACTIONS(440), + [anon_sym_union] = ACTIONS(440), + [anon_sym_unsafe] = ACTIONS(440), + [anon_sym_use] = ACTIONS(440), + [anon_sym_while] = ACTIONS(440), + [anon_sym_POUND] = ACTIONS(438), + [anon_sym_BANG] = ACTIONS(440), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_extern] = ACTIONS(440), + [anon_sym_LT] = ACTIONS(440), + [anon_sym_GT] = ACTIONS(440), + [anon_sym_COLON_COLON] = ACTIONS(438), + [anon_sym_AMP] = ACTIONS(440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(438), + [anon_sym_DOT_DOT] = ACTIONS(440), + [anon_sym_DOT_DOT_EQ] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_AMP_AMP] = ACTIONS(438), + [anon_sym_PIPE_PIPE] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(440), + [anon_sym_CARET] = ACTIONS(440), + [anon_sym_EQ_EQ] = ACTIONS(438), + [anon_sym_BANG_EQ] = ACTIONS(438), + [anon_sym_LT_EQ] = ACTIONS(438), + [anon_sym_GT_EQ] = ACTIONS(438), + [anon_sym_LT_LT] = ACTIONS(440), + [anon_sym_GT_GT] = ACTIONS(440), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_PERCENT] = ACTIONS(440), + [anon_sym_PLUS_EQ] = ACTIONS(438), + [anon_sym_DASH_EQ] = ACTIONS(438), + [anon_sym_STAR_EQ] = ACTIONS(438), + [anon_sym_SLASH_EQ] = ACTIONS(438), + [anon_sym_PERCENT_EQ] = ACTIONS(438), + [anon_sym_AMP_EQ] = ACTIONS(438), + [anon_sym_PIPE_EQ] = ACTIONS(438), + [anon_sym_CARET_EQ] = ACTIONS(438), + [anon_sym_LT_LT_EQ] = ACTIONS(438), + [anon_sym_GT_GT_EQ] = ACTIONS(438), + [anon_sym_yield] = ACTIONS(440), + [anon_sym_move] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(438), + [aux_sym_string_literal_token1] = ACTIONS(438), + [sym_char_literal] = ACTIONS(438), + [anon_sym_true] = ACTIONS(440), + [anon_sym_false] = ACTIONS(440), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(440), + [sym_super] = ACTIONS(440), + [sym_crate] = ACTIONS(440), + [sym_metavariable] = ACTIONS(438), + [sym_raw_string_literal] = ACTIONS(438), + [sym_float_literal] = ACTIONS(438), + [sym_block_comment] = ACTIONS(3), + }, + [65] = { + [ts_builtin_sym_end] = ACTIONS(442), + [sym_identifier] = ACTIONS(444), + [anon_sym_SEMI] = ACTIONS(442), + [anon_sym_macro_rules_BANG] = ACTIONS(442), + [anon_sym_LPAREN] = ACTIONS(442), + [anon_sym_LBRACE] = ACTIONS(442), + [anon_sym_RBRACE] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_STAR] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(442), + [anon_sym_u8] = ACTIONS(444), + [anon_sym_i8] = ACTIONS(444), + [anon_sym_u16] = ACTIONS(444), + [anon_sym_i16] = ACTIONS(444), + [anon_sym_u32] = ACTIONS(444), + [anon_sym_i32] = ACTIONS(444), + [anon_sym_u64] = ACTIONS(444), + [anon_sym_i64] = ACTIONS(444), + [anon_sym_u128] = ACTIONS(444), + [anon_sym_i128] = ACTIONS(444), + [anon_sym_isize] = ACTIONS(444), + [anon_sym_usize] = ACTIONS(444), + [anon_sym_f32] = ACTIONS(444), + [anon_sym_f64] = ACTIONS(444), + [anon_sym_bool] = ACTIONS(444), + [anon_sym_str] = ACTIONS(444), + [anon_sym_char] = ACTIONS(444), + [anon_sym_SQUOTE] = ACTIONS(444), + [anon_sym_as] = ACTIONS(444), + [anon_sym_async] = ACTIONS(444), + [anon_sym_break] = ACTIONS(444), + [anon_sym_const] = ACTIONS(444), + [anon_sym_continue] = ACTIONS(444), + [anon_sym_default] = ACTIONS(444), + [anon_sym_enum] = ACTIONS(444), + [anon_sym_fn] = ACTIONS(444), + [anon_sym_for] = ACTIONS(444), + [anon_sym_if] = ACTIONS(444), + [anon_sym_impl] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_loop] = ACTIONS(444), + [anon_sym_match] = ACTIONS(444), + [anon_sym_mod] = ACTIONS(444), + [anon_sym_pub] = ACTIONS(444), + [anon_sym_return] = ACTIONS(444), + [anon_sym_static] = ACTIONS(444), + [anon_sym_struct] = ACTIONS(444), + [anon_sym_trait] = ACTIONS(444), + [anon_sym_type] = ACTIONS(444), + [anon_sym_union] = ACTIONS(444), + [anon_sym_unsafe] = ACTIONS(444), + [anon_sym_use] = ACTIONS(444), + [anon_sym_while] = ACTIONS(444), + [anon_sym_POUND] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_extern] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_GT] = ACTIONS(444), + [anon_sym_COLON_COLON] = ACTIONS(442), + [anon_sym_AMP] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(442), + [anon_sym_DOT_DOT] = ACTIONS(444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_AMP_AMP] = ACTIONS(442), + [anon_sym_PIPE_PIPE] = ACTIONS(442), + [anon_sym_PIPE] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_EQ_EQ] = ACTIONS(442), + [anon_sym_BANG_EQ] = ACTIONS(442), + [anon_sym_LT_EQ] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(442), + [anon_sym_LT_LT] = ACTIONS(444), + [anon_sym_GT_GT] = ACTIONS(444), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_PERCENT] = ACTIONS(444), + [anon_sym_PLUS_EQ] = ACTIONS(442), + [anon_sym_DASH_EQ] = ACTIONS(442), + [anon_sym_STAR_EQ] = ACTIONS(442), + [anon_sym_SLASH_EQ] = ACTIONS(442), + [anon_sym_PERCENT_EQ] = ACTIONS(442), + [anon_sym_AMP_EQ] = ACTIONS(442), + [anon_sym_PIPE_EQ] = ACTIONS(442), + [anon_sym_CARET_EQ] = ACTIONS(442), + [anon_sym_LT_LT_EQ] = ACTIONS(442), + [anon_sym_GT_GT_EQ] = ACTIONS(442), + [anon_sym_yield] = ACTIONS(444), + [anon_sym_move] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(444), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(442), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(444), + [anon_sym_false] = ACTIONS(444), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(444), + [sym_super] = ACTIONS(444), + [sym_crate] = ACTIONS(444), + [sym_metavariable] = ACTIONS(442), + [sym_raw_string_literal] = ACTIONS(442), + [sym_float_literal] = ACTIONS(442), + [sym_block_comment] = ACTIONS(3), + }, + [66] = { + [ts_builtin_sym_end] = ACTIONS(446), + [sym_identifier] = ACTIONS(448), + [anon_sym_SEMI] = ACTIONS(446), + [anon_sym_macro_rules_BANG] = ACTIONS(446), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(446), + [anon_sym_RBRACE] = ACTIONS(446), + [anon_sym_LBRACK] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_STAR] = ACTIONS(448), + [anon_sym_QMARK] = ACTIONS(446), + [anon_sym_u8] = ACTIONS(448), + [anon_sym_i8] = ACTIONS(448), + [anon_sym_u16] = ACTIONS(448), + [anon_sym_i16] = ACTIONS(448), + [anon_sym_u32] = ACTIONS(448), + [anon_sym_i32] = ACTIONS(448), + [anon_sym_u64] = ACTIONS(448), + [anon_sym_i64] = ACTIONS(448), + [anon_sym_u128] = ACTIONS(448), + [anon_sym_i128] = ACTIONS(448), + [anon_sym_isize] = ACTIONS(448), + [anon_sym_usize] = ACTIONS(448), + [anon_sym_f32] = ACTIONS(448), + [anon_sym_f64] = ACTIONS(448), + [anon_sym_bool] = ACTIONS(448), + [anon_sym_str] = ACTIONS(448), + [anon_sym_char] = ACTIONS(448), + [anon_sym_SQUOTE] = ACTIONS(448), + [anon_sym_as] = ACTIONS(448), + [anon_sym_async] = ACTIONS(448), + [anon_sym_break] = ACTIONS(448), + [anon_sym_const] = ACTIONS(448), + [anon_sym_continue] = ACTIONS(448), + [anon_sym_default] = ACTIONS(448), + [anon_sym_enum] = ACTIONS(448), + [anon_sym_fn] = ACTIONS(448), + [anon_sym_for] = ACTIONS(448), + [anon_sym_if] = ACTIONS(448), + [anon_sym_impl] = ACTIONS(448), + [anon_sym_let] = ACTIONS(448), + [anon_sym_loop] = ACTIONS(448), + [anon_sym_match] = ACTIONS(448), + [anon_sym_mod] = ACTIONS(448), + [anon_sym_pub] = ACTIONS(448), + [anon_sym_return] = ACTIONS(448), + [anon_sym_static] = ACTIONS(448), + [anon_sym_struct] = ACTIONS(448), + [anon_sym_trait] = ACTIONS(448), + [anon_sym_type] = ACTIONS(448), + [anon_sym_union] = ACTIONS(448), + [anon_sym_unsafe] = ACTIONS(448), + [anon_sym_use] = ACTIONS(448), + [anon_sym_while] = ACTIONS(448), + [anon_sym_POUND] = ACTIONS(446), + [anon_sym_BANG] = ACTIONS(448), + [anon_sym_EQ] = ACTIONS(448), + [anon_sym_extern] = ACTIONS(448), + [anon_sym_LT] = ACTIONS(448), + [anon_sym_GT] = ACTIONS(448), + [anon_sym_COLON_COLON] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(446), + [anon_sym_DOT_DOT] = ACTIONS(448), + [anon_sym_DOT_DOT_EQ] = ACTIONS(446), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_AMP_AMP] = ACTIONS(446), + [anon_sym_PIPE_PIPE] = ACTIONS(446), + [anon_sym_PIPE] = ACTIONS(448), + [anon_sym_CARET] = ACTIONS(448), + [anon_sym_EQ_EQ] = ACTIONS(446), + [anon_sym_BANG_EQ] = ACTIONS(446), + [anon_sym_LT_EQ] = ACTIONS(446), + [anon_sym_GT_EQ] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(448), + [anon_sym_GT_GT] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(448), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_yield] = ACTIONS(448), + [anon_sym_move] = ACTIONS(448), + [anon_sym_DOT] = ACTIONS(448), + [sym_integer_literal] = ACTIONS(446), + [aux_sym_string_literal_token1] = ACTIONS(446), + [sym_char_literal] = ACTIONS(446), + [anon_sym_true] = ACTIONS(448), + [anon_sym_false] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(448), + [sym_crate] = ACTIONS(448), + [sym_metavariable] = ACTIONS(446), + [sym_raw_string_literal] = ACTIONS(446), + [sym_float_literal] = ACTIONS(446), + [sym_block_comment] = ACTIONS(3), + }, + [67] = { + [ts_builtin_sym_end] = ACTIONS(450), + [sym_identifier] = ACTIONS(452), + [anon_sym_SEMI] = ACTIONS(450), + [anon_sym_macro_rules_BANG] = ACTIONS(450), + [anon_sym_LPAREN] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(450), + [anon_sym_RBRACE] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_STAR] = ACTIONS(452), + [anon_sym_QMARK] = ACTIONS(450), + [anon_sym_u8] = ACTIONS(452), + [anon_sym_i8] = ACTIONS(452), + [anon_sym_u16] = ACTIONS(452), + [anon_sym_i16] = ACTIONS(452), + [anon_sym_u32] = ACTIONS(452), + [anon_sym_i32] = ACTIONS(452), + [anon_sym_u64] = ACTIONS(452), + [anon_sym_i64] = ACTIONS(452), + [anon_sym_u128] = ACTIONS(452), + [anon_sym_i128] = ACTIONS(452), + [anon_sym_isize] = ACTIONS(452), + [anon_sym_usize] = ACTIONS(452), + [anon_sym_f32] = ACTIONS(452), + [anon_sym_f64] = ACTIONS(452), + [anon_sym_bool] = ACTIONS(452), + [anon_sym_str] = ACTIONS(452), + [anon_sym_char] = ACTIONS(452), + [anon_sym_SQUOTE] = ACTIONS(452), + [anon_sym_as] = ACTIONS(452), + [anon_sym_async] = ACTIONS(452), + [anon_sym_break] = ACTIONS(452), + [anon_sym_const] = ACTIONS(452), + [anon_sym_continue] = ACTIONS(452), + [anon_sym_default] = ACTIONS(452), + [anon_sym_enum] = ACTIONS(452), + [anon_sym_fn] = ACTIONS(452), + [anon_sym_for] = ACTIONS(452), + [anon_sym_if] = ACTIONS(452), + [anon_sym_impl] = ACTIONS(452), + [anon_sym_let] = ACTIONS(452), + [anon_sym_loop] = ACTIONS(452), + [anon_sym_match] = ACTIONS(452), + [anon_sym_mod] = ACTIONS(452), + [anon_sym_pub] = ACTIONS(452), + [anon_sym_return] = ACTIONS(452), + [anon_sym_static] = ACTIONS(452), + [anon_sym_struct] = ACTIONS(452), + [anon_sym_trait] = ACTIONS(452), + [anon_sym_type] = ACTIONS(452), + [anon_sym_union] = ACTIONS(452), + [anon_sym_unsafe] = ACTIONS(452), + [anon_sym_use] = ACTIONS(452), + [anon_sym_while] = ACTIONS(452), + [anon_sym_POUND] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_EQ] = ACTIONS(452), + [anon_sym_extern] = ACTIONS(452), + [anon_sym_LT] = ACTIONS(452), + [anon_sym_GT] = ACTIONS(452), + [anon_sym_COLON_COLON] = ACTIONS(450), + [anon_sym_AMP] = ACTIONS(452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), + [anon_sym_DOT_DOT] = ACTIONS(452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_AMP_AMP] = ACTIONS(450), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_PIPE] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_EQ_EQ] = ACTIONS(450), + [anon_sym_BANG_EQ] = ACTIONS(450), + [anon_sym_LT_EQ] = ACTIONS(450), + [anon_sym_GT_EQ] = ACTIONS(450), + [anon_sym_LT_LT] = ACTIONS(452), + [anon_sym_GT_GT] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(452), + [anon_sym_PERCENT] = ACTIONS(452), + [anon_sym_PLUS_EQ] = ACTIONS(450), + [anon_sym_DASH_EQ] = ACTIONS(450), + [anon_sym_STAR_EQ] = ACTIONS(450), + [anon_sym_SLASH_EQ] = ACTIONS(450), + [anon_sym_PERCENT_EQ] = ACTIONS(450), + [anon_sym_AMP_EQ] = ACTIONS(450), + [anon_sym_PIPE_EQ] = ACTIONS(450), + [anon_sym_CARET_EQ] = ACTIONS(450), + [anon_sym_LT_LT_EQ] = ACTIONS(450), + [anon_sym_GT_GT_EQ] = ACTIONS(450), + [anon_sym_yield] = ACTIONS(452), + [anon_sym_move] = ACTIONS(452), + [anon_sym_DOT] = ACTIONS(452), + [sym_integer_literal] = ACTIONS(450), + [aux_sym_string_literal_token1] = ACTIONS(450), + [sym_char_literal] = ACTIONS(450), + [anon_sym_true] = ACTIONS(452), + [anon_sym_false] = ACTIONS(452), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(452), + [sym_super] = ACTIONS(452), + [sym_crate] = ACTIONS(452), + [sym_metavariable] = ACTIONS(450), + [sym_raw_string_literal] = ACTIONS(450), + [sym_float_literal] = ACTIONS(450), + [sym_block_comment] = ACTIONS(3), + }, + [68] = { + [ts_builtin_sym_end] = ACTIONS(454), + [sym_identifier] = ACTIONS(456), + [anon_sym_SEMI] = ACTIONS(458), + [anon_sym_macro_rules_BANG] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(454), + [anon_sym_RBRACE] = ACTIONS(458), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(460), + [anon_sym_QMARK] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(456), + [anon_sym_i8] = ACTIONS(456), + [anon_sym_u16] = ACTIONS(456), + [anon_sym_i16] = ACTIONS(456), + [anon_sym_u32] = ACTIONS(456), + [anon_sym_i32] = ACTIONS(456), + [anon_sym_u64] = ACTIONS(456), + [anon_sym_i64] = ACTIONS(456), + [anon_sym_u128] = ACTIONS(456), + [anon_sym_i128] = ACTIONS(456), + [anon_sym_isize] = ACTIONS(456), + [anon_sym_usize] = ACTIONS(456), + [anon_sym_f32] = ACTIONS(456), + [anon_sym_f64] = ACTIONS(456), + [anon_sym_bool] = ACTIONS(456), + [anon_sym_str] = ACTIONS(456), + [anon_sym_char] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(456), + [anon_sym_as] = ACTIONS(460), + [anon_sym_async] = ACTIONS(456), + [anon_sym_break] = ACTIONS(456), + [anon_sym_const] = ACTIONS(456), + [anon_sym_continue] = ACTIONS(456), + [anon_sym_default] = ACTIONS(456), + [anon_sym_enum] = ACTIONS(456), + [anon_sym_fn] = ACTIONS(456), + [anon_sym_for] = ACTIONS(456), + [anon_sym_if] = ACTIONS(456), + [anon_sym_impl] = ACTIONS(456), + [anon_sym_let] = ACTIONS(456), + [anon_sym_loop] = ACTIONS(456), + [anon_sym_match] = ACTIONS(456), + [anon_sym_mod] = ACTIONS(456), + [anon_sym_pub] = ACTIONS(456), + [anon_sym_return] = ACTIONS(456), + [anon_sym_static] = ACTIONS(456), + [anon_sym_struct] = ACTIONS(456), + [anon_sym_trait] = ACTIONS(456), + [anon_sym_type] = ACTIONS(456), + [anon_sym_union] = ACTIONS(456), + [anon_sym_unsafe] = ACTIONS(456), + [anon_sym_use] = ACTIONS(456), + [anon_sym_while] = ACTIONS(456), + [anon_sym_POUND] = ACTIONS(454), + [anon_sym_BANG] = ACTIONS(456), + [anon_sym_EQ] = ACTIONS(460), + [anon_sym_extern] = ACTIONS(456), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_COLON_COLON] = ACTIONS(454), + [anon_sym_AMP] = ACTIONS(460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(458), + [anon_sym_DOT_DOT] = ACTIONS(460), + [anon_sym_DOT_DOT_EQ] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(460), + [anon_sym_AMP_AMP] = ACTIONS(458), + [anon_sym_PIPE_PIPE] = ACTIONS(458), + [anon_sym_PIPE] = ACTIONS(460), + [anon_sym_CARET] = ACTIONS(460), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT_EQ] = ACTIONS(458), + [anon_sym_GT_EQ] = ACTIONS(458), + [anon_sym_LT_LT] = ACTIONS(460), + [anon_sym_GT_GT] = ACTIONS(460), + [anon_sym_SLASH] = ACTIONS(460), + [anon_sym_PERCENT] = ACTIONS(460), + [anon_sym_PLUS_EQ] = ACTIONS(458), + [anon_sym_DASH_EQ] = ACTIONS(458), + [anon_sym_STAR_EQ] = ACTIONS(458), + [anon_sym_SLASH_EQ] = ACTIONS(458), + [anon_sym_PERCENT_EQ] = ACTIONS(458), + [anon_sym_AMP_EQ] = ACTIONS(458), + [anon_sym_PIPE_EQ] = ACTIONS(458), + [anon_sym_CARET_EQ] = ACTIONS(458), + [anon_sym_LT_LT_EQ] = ACTIONS(458), + [anon_sym_GT_GT_EQ] = ACTIONS(458), + [anon_sym_yield] = ACTIONS(456), + [anon_sym_move] = ACTIONS(456), + [anon_sym_DOT] = ACTIONS(460), + [sym_integer_literal] = ACTIONS(454), + [aux_sym_string_literal_token1] = ACTIONS(454), + [sym_char_literal] = ACTIONS(454), + [anon_sym_true] = ACTIONS(456), + [anon_sym_false] = ACTIONS(456), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(456), + [sym_super] = ACTIONS(456), + [sym_crate] = ACTIONS(456), + [sym_metavariable] = ACTIONS(454), + [sym_raw_string_literal] = ACTIONS(454), + [sym_float_literal] = ACTIONS(454), + [sym_block_comment] = ACTIONS(3), + }, + [69] = { + [ts_builtin_sym_end] = ACTIONS(462), + [sym_identifier] = ACTIONS(464), + [anon_sym_SEMI] = ACTIONS(462), + [anon_sym_macro_rules_BANG] = ACTIONS(462), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_RBRACE] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_STAR] = ACTIONS(464), + [anon_sym_QMARK] = ACTIONS(462), + [anon_sym_u8] = ACTIONS(464), + [anon_sym_i8] = ACTIONS(464), + [anon_sym_u16] = ACTIONS(464), + [anon_sym_i16] = ACTIONS(464), + [anon_sym_u32] = ACTIONS(464), + [anon_sym_i32] = ACTIONS(464), + [anon_sym_u64] = ACTIONS(464), + [anon_sym_i64] = ACTIONS(464), + [anon_sym_u128] = ACTIONS(464), + [anon_sym_i128] = ACTIONS(464), + [anon_sym_isize] = ACTIONS(464), + [anon_sym_usize] = ACTIONS(464), + [anon_sym_f32] = ACTIONS(464), + [anon_sym_f64] = ACTIONS(464), + [anon_sym_bool] = ACTIONS(464), + [anon_sym_str] = ACTIONS(464), + [anon_sym_char] = ACTIONS(464), + [anon_sym_SQUOTE] = ACTIONS(464), + [anon_sym_as] = ACTIONS(464), + [anon_sym_async] = ACTIONS(464), + [anon_sym_break] = ACTIONS(464), + [anon_sym_const] = ACTIONS(464), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_default] = ACTIONS(464), + [anon_sym_enum] = ACTIONS(464), + [anon_sym_fn] = ACTIONS(464), + [anon_sym_for] = ACTIONS(464), + [anon_sym_if] = ACTIONS(464), + [anon_sym_impl] = ACTIONS(464), + [anon_sym_let] = ACTIONS(464), + [anon_sym_loop] = ACTIONS(464), + [anon_sym_match] = ACTIONS(464), + [anon_sym_mod] = ACTIONS(464), + [anon_sym_pub] = ACTIONS(464), + [anon_sym_return] = ACTIONS(464), + [anon_sym_static] = ACTIONS(464), + [anon_sym_struct] = ACTIONS(464), + [anon_sym_trait] = ACTIONS(464), + [anon_sym_type] = ACTIONS(464), + [anon_sym_union] = ACTIONS(464), + [anon_sym_unsafe] = ACTIONS(464), + [anon_sym_use] = ACTIONS(464), + [anon_sym_while] = ACTIONS(464), + [anon_sym_POUND] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_EQ] = ACTIONS(464), + [anon_sym_extern] = ACTIONS(464), + [anon_sym_LT] = ACTIONS(464), + [anon_sym_GT] = ACTIONS(464), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_AMP] = ACTIONS(464), + [anon_sym_DOT_DOT_DOT] = ACTIONS(462), + [anon_sym_DOT_DOT] = ACTIONS(464), + [anon_sym_DOT_DOT_EQ] = ACTIONS(462), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_AMP_AMP] = ACTIONS(462), + [anon_sym_PIPE_PIPE] = ACTIONS(462), + [anon_sym_PIPE] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_EQ_EQ] = ACTIONS(462), + [anon_sym_BANG_EQ] = ACTIONS(462), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(464), + [anon_sym_GT_GT] = ACTIONS(464), + [anon_sym_SLASH] = ACTIONS(464), + [anon_sym_PERCENT] = ACTIONS(464), + [anon_sym_PLUS_EQ] = ACTIONS(462), + [anon_sym_DASH_EQ] = ACTIONS(462), + [anon_sym_STAR_EQ] = ACTIONS(462), + [anon_sym_SLASH_EQ] = ACTIONS(462), + [anon_sym_PERCENT_EQ] = ACTIONS(462), + [anon_sym_AMP_EQ] = ACTIONS(462), + [anon_sym_PIPE_EQ] = ACTIONS(462), + [anon_sym_CARET_EQ] = ACTIONS(462), + [anon_sym_LT_LT_EQ] = ACTIONS(462), + [anon_sym_GT_GT_EQ] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_move] = ACTIONS(464), + [anon_sym_DOT] = ACTIONS(464), + [sym_integer_literal] = ACTIONS(462), + [aux_sym_string_literal_token1] = ACTIONS(462), + [sym_char_literal] = ACTIONS(462), + [anon_sym_true] = ACTIONS(464), + [anon_sym_false] = ACTIONS(464), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(464), + [sym_super] = ACTIONS(464), + [sym_crate] = ACTIONS(464), + [sym_metavariable] = ACTIONS(462), + [sym_raw_string_literal] = ACTIONS(462), + [sym_float_literal] = ACTIONS(462), + [sym_block_comment] = ACTIONS(3), + }, + [70] = { + [ts_builtin_sym_end] = ACTIONS(466), + [sym_identifier] = ACTIONS(468), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_macro_rules_BANG] = ACTIONS(466), + [anon_sym_LPAREN] = ACTIONS(466), + [anon_sym_LBRACE] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_PLUS] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(468), + [anon_sym_QMARK] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_SQUOTE] = ACTIONS(468), + [anon_sym_as] = ACTIONS(460), + [anon_sym_async] = ACTIONS(468), + [anon_sym_break] = ACTIONS(468), + [anon_sym_const] = ACTIONS(468), + [anon_sym_continue] = ACTIONS(468), + [anon_sym_default] = ACTIONS(468), + [anon_sym_enum] = ACTIONS(468), + [anon_sym_fn] = ACTIONS(468), + [anon_sym_for] = ACTIONS(468), + [anon_sym_if] = ACTIONS(468), + [anon_sym_impl] = ACTIONS(468), + [anon_sym_let] = ACTIONS(468), + [anon_sym_loop] = ACTIONS(468), + [anon_sym_match] = ACTIONS(468), + [anon_sym_mod] = ACTIONS(468), + [anon_sym_pub] = ACTIONS(468), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(468), + [anon_sym_struct] = ACTIONS(468), + [anon_sym_trait] = ACTIONS(468), + [anon_sym_type] = ACTIONS(468), + [anon_sym_union] = ACTIONS(468), + [anon_sym_unsafe] = ACTIONS(468), + [anon_sym_use] = ACTIONS(468), + [anon_sym_while] = ACTIONS(468), + [anon_sym_POUND] = ACTIONS(466), + [anon_sym_BANG] = ACTIONS(468), + [anon_sym_EQ] = ACTIONS(460), + [anon_sym_extern] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_COLON_COLON] = ACTIONS(466), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_DOT_DOT_DOT] = ACTIONS(458), + [anon_sym_DOT_DOT] = ACTIONS(468), + [anon_sym_DOT_DOT_EQ] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(468), + [anon_sym_AMP_AMP] = ACTIONS(458), + [anon_sym_PIPE_PIPE] = ACTIONS(458), + [anon_sym_PIPE] = ACTIONS(468), + [anon_sym_CARET] = ACTIONS(460), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT_EQ] = ACTIONS(458), + [anon_sym_GT_EQ] = ACTIONS(458), + [anon_sym_LT_LT] = ACTIONS(460), + [anon_sym_GT_GT] = ACTIONS(460), + [anon_sym_SLASH] = ACTIONS(460), + [anon_sym_PERCENT] = ACTIONS(460), + [anon_sym_PLUS_EQ] = ACTIONS(458), + [anon_sym_DASH_EQ] = ACTIONS(458), + [anon_sym_STAR_EQ] = ACTIONS(458), + [anon_sym_SLASH_EQ] = ACTIONS(458), + [anon_sym_PERCENT_EQ] = ACTIONS(458), + [anon_sym_AMP_EQ] = ACTIONS(458), + [anon_sym_PIPE_EQ] = ACTIONS(458), + [anon_sym_CARET_EQ] = ACTIONS(458), + [anon_sym_LT_LT_EQ] = ACTIONS(458), + [anon_sym_GT_GT_EQ] = ACTIONS(458), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_move] = ACTIONS(468), + [anon_sym_DOT] = ACTIONS(460), + [sym_integer_literal] = ACTIONS(466), + [aux_sym_string_literal_token1] = ACTIONS(466), + [sym_char_literal] = ACTIONS(466), + [anon_sym_true] = ACTIONS(468), + [anon_sym_false] = ACTIONS(468), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(468), + [sym_super] = ACTIONS(468), + [sym_crate] = ACTIONS(468), + [sym_metavariable] = ACTIONS(466), + [sym_raw_string_literal] = ACTIONS(466), + [sym_float_literal] = ACTIONS(466), + [sym_block_comment] = ACTIONS(3), + }, + [71] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1243), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_tuple_expression_repeat1] = STATE(87), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(470), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -24598,7 +26081,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_POUND] = ACTIONS(370), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -24622,55 +26104,797 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [58] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1255), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_tuple_expression_repeat1] = STATE(82), + [72] = { + [ts_builtin_sym_end] = ACTIONS(472), + [sym_identifier] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_macro_rules_BANG] = ACTIONS(472), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(472), + [anon_sym_RBRACE] = ACTIONS(472), + [anon_sym_LBRACK] = ACTIONS(472), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_STAR] = ACTIONS(474), + [anon_sym_QMARK] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(474), + [anon_sym_i8] = ACTIONS(474), + [anon_sym_u16] = ACTIONS(474), + [anon_sym_i16] = ACTIONS(474), + [anon_sym_u32] = ACTIONS(474), + [anon_sym_i32] = ACTIONS(474), + [anon_sym_u64] = ACTIONS(474), + [anon_sym_i64] = ACTIONS(474), + [anon_sym_u128] = ACTIONS(474), + [anon_sym_i128] = ACTIONS(474), + [anon_sym_isize] = ACTIONS(474), + [anon_sym_usize] = ACTIONS(474), + [anon_sym_f32] = ACTIONS(474), + [anon_sym_f64] = ACTIONS(474), + [anon_sym_bool] = ACTIONS(474), + [anon_sym_str] = ACTIONS(474), + [anon_sym_char] = ACTIONS(474), + [anon_sym_SQUOTE] = ACTIONS(474), + [anon_sym_as] = ACTIONS(474), + [anon_sym_async] = ACTIONS(474), + [anon_sym_break] = ACTIONS(474), + [anon_sym_const] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(474), + [anon_sym_default] = ACTIONS(474), + [anon_sym_enum] = ACTIONS(474), + [anon_sym_fn] = ACTIONS(474), + [anon_sym_for] = ACTIONS(474), + [anon_sym_if] = ACTIONS(474), + [anon_sym_impl] = ACTIONS(474), + [anon_sym_let] = ACTIONS(474), + [anon_sym_loop] = ACTIONS(474), + [anon_sym_match] = ACTIONS(474), + [anon_sym_mod] = ACTIONS(474), + [anon_sym_pub] = ACTIONS(474), + [anon_sym_return] = ACTIONS(474), + [anon_sym_static] = ACTIONS(474), + [anon_sym_struct] = ACTIONS(474), + [anon_sym_trait] = ACTIONS(474), + [anon_sym_type] = ACTIONS(474), + [anon_sym_union] = ACTIONS(474), + [anon_sym_unsafe] = ACTIONS(474), + [anon_sym_use] = ACTIONS(474), + [anon_sym_while] = ACTIONS(474), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(474), + [anon_sym_extern] = ACTIONS(474), + [anon_sym_LT] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(474), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(474), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [anon_sym_DOT_DOT] = ACTIONS(474), + [anon_sym_DOT_DOT_EQ] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_AMP_AMP] = ACTIONS(472), + [anon_sym_PIPE_PIPE] = ACTIONS(472), + [anon_sym_PIPE] = ACTIONS(474), + [anon_sym_CARET] = ACTIONS(474), + [anon_sym_EQ_EQ] = ACTIONS(472), + [anon_sym_BANG_EQ] = ACTIONS(472), + [anon_sym_LT_EQ] = ACTIONS(472), + [anon_sym_GT_EQ] = ACTIONS(472), + [anon_sym_LT_LT] = ACTIONS(474), + [anon_sym_GT_GT] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(474), + [anon_sym_PERCENT] = ACTIONS(474), + [anon_sym_PLUS_EQ] = ACTIONS(472), + [anon_sym_DASH_EQ] = ACTIONS(472), + [anon_sym_STAR_EQ] = ACTIONS(472), + [anon_sym_SLASH_EQ] = ACTIONS(472), + [anon_sym_PERCENT_EQ] = ACTIONS(472), + [anon_sym_AMP_EQ] = ACTIONS(472), + [anon_sym_PIPE_EQ] = ACTIONS(472), + [anon_sym_CARET_EQ] = ACTIONS(472), + [anon_sym_LT_LT_EQ] = ACTIONS(472), + [anon_sym_GT_GT_EQ] = ACTIONS(472), + [anon_sym_yield] = ACTIONS(474), + [anon_sym_move] = ACTIONS(474), + [anon_sym_DOT] = ACTIONS(474), + [sym_integer_literal] = ACTIONS(472), + [aux_sym_string_literal_token1] = ACTIONS(472), + [sym_char_literal] = ACTIONS(472), + [anon_sym_true] = ACTIONS(474), + [anon_sym_false] = ACTIONS(474), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(474), + [sym_super] = ACTIONS(474), + [sym_crate] = ACTIONS(474), + [sym_metavariable] = ACTIONS(472), + [sym_raw_string_literal] = ACTIONS(472), + [sym_float_literal] = ACTIONS(472), + [sym_block_comment] = ACTIONS(3), + }, + [73] = { + [ts_builtin_sym_end] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [anon_sym_SEMI] = ACTIONS(476), + [anon_sym_macro_rules_BANG] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(476), + [anon_sym_LBRACE] = ACTIONS(476), + [anon_sym_RBRACE] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(478), + [anon_sym_QMARK] = ACTIONS(476), + [anon_sym_u8] = ACTIONS(478), + [anon_sym_i8] = ACTIONS(478), + [anon_sym_u16] = ACTIONS(478), + [anon_sym_i16] = ACTIONS(478), + [anon_sym_u32] = ACTIONS(478), + [anon_sym_i32] = ACTIONS(478), + [anon_sym_u64] = ACTIONS(478), + [anon_sym_i64] = ACTIONS(478), + [anon_sym_u128] = ACTIONS(478), + [anon_sym_i128] = ACTIONS(478), + [anon_sym_isize] = ACTIONS(478), + [anon_sym_usize] = ACTIONS(478), + [anon_sym_f32] = ACTIONS(478), + [anon_sym_f64] = ACTIONS(478), + [anon_sym_bool] = ACTIONS(478), + [anon_sym_str] = ACTIONS(478), + [anon_sym_char] = ACTIONS(478), + [anon_sym_SQUOTE] = ACTIONS(478), + [anon_sym_as] = ACTIONS(478), + [anon_sym_async] = ACTIONS(478), + [anon_sym_break] = ACTIONS(478), + [anon_sym_const] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(478), + [anon_sym_default] = ACTIONS(478), + [anon_sym_enum] = ACTIONS(478), + [anon_sym_fn] = ACTIONS(478), + [anon_sym_for] = ACTIONS(478), + [anon_sym_if] = ACTIONS(478), + [anon_sym_impl] = ACTIONS(478), + [anon_sym_let] = ACTIONS(478), + [anon_sym_loop] = ACTIONS(478), + [anon_sym_match] = ACTIONS(478), + [anon_sym_mod] = ACTIONS(478), + [anon_sym_pub] = ACTIONS(478), + [anon_sym_return] = ACTIONS(478), + [anon_sym_static] = ACTIONS(478), + [anon_sym_struct] = ACTIONS(478), + [anon_sym_trait] = ACTIONS(478), + [anon_sym_type] = ACTIONS(478), + [anon_sym_union] = ACTIONS(478), + [anon_sym_unsafe] = ACTIONS(478), + [anon_sym_use] = ACTIONS(478), + [anon_sym_while] = ACTIONS(478), + [anon_sym_POUND] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(478), + [anon_sym_extern] = ACTIONS(478), + [anon_sym_LT] = ACTIONS(478), + [anon_sym_GT] = ACTIONS(478), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_AMP] = ACTIONS(478), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(478), + [anon_sym_DOT_DOT_EQ] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(478), + [anon_sym_AMP_AMP] = ACTIONS(476), + [anon_sym_PIPE_PIPE] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(478), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_EQ_EQ] = ACTIONS(476), + [anon_sym_BANG_EQ] = ACTIONS(476), + [anon_sym_LT_EQ] = ACTIONS(476), + [anon_sym_GT_EQ] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(478), + [anon_sym_SLASH] = ACTIONS(478), + [anon_sym_PERCENT] = ACTIONS(478), + [anon_sym_PLUS_EQ] = ACTIONS(476), + [anon_sym_DASH_EQ] = ACTIONS(476), + [anon_sym_STAR_EQ] = ACTIONS(476), + [anon_sym_SLASH_EQ] = ACTIONS(476), + [anon_sym_PERCENT_EQ] = ACTIONS(476), + [anon_sym_AMP_EQ] = ACTIONS(476), + [anon_sym_PIPE_EQ] = ACTIONS(476), + [anon_sym_CARET_EQ] = ACTIONS(476), + [anon_sym_LT_LT_EQ] = ACTIONS(476), + [anon_sym_GT_GT_EQ] = ACTIONS(476), + [anon_sym_yield] = ACTIONS(478), + [anon_sym_move] = ACTIONS(478), + [anon_sym_DOT] = ACTIONS(478), + [sym_integer_literal] = ACTIONS(476), + [aux_sym_string_literal_token1] = ACTIONS(476), + [sym_char_literal] = ACTIONS(476), + [anon_sym_true] = ACTIONS(478), + [anon_sym_false] = ACTIONS(478), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(478), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(476), + [sym_raw_string_literal] = ACTIONS(476), + [sym_float_literal] = ACTIONS(476), + [sym_block_comment] = ACTIONS(3), + }, + [74] = { + [ts_builtin_sym_end] = ACTIONS(480), + [sym_identifier] = ACTIONS(482), + [anon_sym_SEMI] = ACTIONS(480), + [anon_sym_macro_rules_BANG] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(480), + [anon_sym_LBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(480), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(482), + [anon_sym_QMARK] = ACTIONS(480), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_as] = ACTIONS(482), + [anon_sym_async] = ACTIONS(482), + [anon_sym_break] = ACTIONS(482), + [anon_sym_const] = ACTIONS(482), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_default] = ACTIONS(482), + [anon_sym_enum] = ACTIONS(482), + [anon_sym_fn] = ACTIONS(482), + [anon_sym_for] = ACTIONS(482), + [anon_sym_if] = ACTIONS(482), + [anon_sym_impl] = ACTIONS(482), + [anon_sym_let] = ACTIONS(482), + [anon_sym_loop] = ACTIONS(482), + [anon_sym_match] = ACTIONS(482), + [anon_sym_mod] = ACTIONS(482), + [anon_sym_pub] = ACTIONS(482), + [anon_sym_return] = ACTIONS(482), + [anon_sym_static] = ACTIONS(482), + [anon_sym_struct] = ACTIONS(482), + [anon_sym_trait] = ACTIONS(482), + [anon_sym_type] = ACTIONS(482), + [anon_sym_union] = ACTIONS(482), + [anon_sym_unsafe] = ACTIONS(482), + [anon_sym_use] = ACTIONS(482), + [anon_sym_while] = ACTIONS(482), + [anon_sym_POUND] = ACTIONS(480), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(482), + [anon_sym_extern] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(482), + [anon_sym_GT] = ACTIONS(482), + [anon_sym_COLON_COLON] = ACTIONS(480), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [anon_sym_DOT_DOT] = ACTIONS(482), + [anon_sym_DOT_DOT_EQ] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_AMP_AMP] = ACTIONS(480), + [anon_sym_PIPE_PIPE] = ACTIONS(480), + [anon_sym_PIPE] = ACTIONS(482), + [anon_sym_CARET] = ACTIONS(482), + [anon_sym_EQ_EQ] = ACTIONS(480), + [anon_sym_BANG_EQ] = ACTIONS(480), + [anon_sym_LT_EQ] = ACTIONS(480), + [anon_sym_GT_EQ] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(482), + [anon_sym_GT_GT] = ACTIONS(482), + [anon_sym_SLASH] = ACTIONS(482), + [anon_sym_PERCENT] = ACTIONS(482), + [anon_sym_PLUS_EQ] = ACTIONS(480), + [anon_sym_DASH_EQ] = ACTIONS(480), + [anon_sym_STAR_EQ] = ACTIONS(480), + [anon_sym_SLASH_EQ] = ACTIONS(480), + [anon_sym_PERCENT_EQ] = ACTIONS(480), + [anon_sym_AMP_EQ] = ACTIONS(480), + [anon_sym_PIPE_EQ] = ACTIONS(480), + [anon_sym_CARET_EQ] = ACTIONS(480), + [anon_sym_LT_LT_EQ] = ACTIONS(480), + [anon_sym_GT_GT_EQ] = ACTIONS(480), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_move] = ACTIONS(482), + [anon_sym_DOT] = ACTIONS(482), + [sym_integer_literal] = ACTIONS(480), + [aux_sym_string_literal_token1] = ACTIONS(480), + [sym_char_literal] = ACTIONS(480), + [anon_sym_true] = ACTIONS(482), + [anon_sym_false] = ACTIONS(482), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(482), + [sym_super] = ACTIONS(482), + [sym_crate] = ACTIONS(482), + [sym_metavariable] = ACTIONS(480), + [sym_raw_string_literal] = ACTIONS(480), + [sym_float_literal] = ACTIONS(480), + [sym_block_comment] = ACTIONS(3), + }, + [75] = { + [ts_builtin_sym_end] = ACTIONS(484), + [sym_identifier] = ACTIONS(486), + [anon_sym_SEMI] = ACTIONS(484), + [anon_sym_macro_rules_BANG] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_RBRACE] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_PLUS] = ACTIONS(486), + [anon_sym_STAR] = ACTIONS(486), + [anon_sym_QMARK] = ACTIONS(484), + [anon_sym_u8] = ACTIONS(486), + [anon_sym_i8] = ACTIONS(486), + [anon_sym_u16] = ACTIONS(486), + [anon_sym_i16] = ACTIONS(486), + [anon_sym_u32] = ACTIONS(486), + [anon_sym_i32] = ACTIONS(486), + [anon_sym_u64] = ACTIONS(486), + [anon_sym_i64] = ACTIONS(486), + [anon_sym_u128] = ACTIONS(486), + [anon_sym_i128] = ACTIONS(486), + [anon_sym_isize] = ACTIONS(486), + [anon_sym_usize] = ACTIONS(486), + [anon_sym_f32] = ACTIONS(486), + [anon_sym_f64] = ACTIONS(486), + [anon_sym_bool] = ACTIONS(486), + [anon_sym_str] = ACTIONS(486), + [anon_sym_char] = ACTIONS(486), + [anon_sym_SQUOTE] = ACTIONS(486), + [anon_sym_as] = ACTIONS(486), + [anon_sym_async] = ACTIONS(486), + [anon_sym_break] = ACTIONS(486), + [anon_sym_const] = ACTIONS(486), + [anon_sym_continue] = ACTIONS(486), + [anon_sym_default] = ACTIONS(486), + [anon_sym_enum] = ACTIONS(486), + [anon_sym_fn] = ACTIONS(486), + [anon_sym_for] = ACTIONS(486), + [anon_sym_if] = ACTIONS(486), + [anon_sym_impl] = ACTIONS(486), + [anon_sym_let] = ACTIONS(486), + [anon_sym_loop] = ACTIONS(486), + [anon_sym_match] = ACTIONS(486), + [anon_sym_mod] = ACTIONS(486), + [anon_sym_pub] = ACTIONS(486), + [anon_sym_return] = ACTIONS(486), + [anon_sym_static] = ACTIONS(486), + [anon_sym_struct] = ACTIONS(486), + [anon_sym_trait] = ACTIONS(486), + [anon_sym_type] = ACTIONS(486), + [anon_sym_union] = ACTIONS(486), + [anon_sym_unsafe] = ACTIONS(486), + [anon_sym_use] = ACTIONS(486), + [anon_sym_while] = ACTIONS(486), + [anon_sym_POUND] = ACTIONS(484), + [anon_sym_BANG] = ACTIONS(486), + [anon_sym_EQ] = ACTIONS(486), + [anon_sym_extern] = ACTIONS(486), + [anon_sym_LT] = ACTIONS(486), + [anon_sym_GT] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(484), + [anon_sym_AMP] = ACTIONS(486), + [anon_sym_DOT_DOT_DOT] = ACTIONS(484), + [anon_sym_DOT_DOT] = ACTIONS(486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(486), + [anon_sym_AMP_AMP] = ACTIONS(484), + [anon_sym_PIPE_PIPE] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_CARET] = ACTIONS(486), + [anon_sym_EQ_EQ] = ACTIONS(484), + [anon_sym_BANG_EQ] = ACTIONS(484), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_LT_LT] = ACTIONS(486), + [anon_sym_GT_GT] = ACTIONS(486), + [anon_sym_SLASH] = ACTIONS(486), + [anon_sym_PERCENT] = ACTIONS(486), + [anon_sym_PLUS_EQ] = ACTIONS(484), + [anon_sym_DASH_EQ] = ACTIONS(484), + [anon_sym_STAR_EQ] = ACTIONS(484), + [anon_sym_SLASH_EQ] = ACTIONS(484), + [anon_sym_PERCENT_EQ] = ACTIONS(484), + [anon_sym_AMP_EQ] = ACTIONS(484), + [anon_sym_PIPE_EQ] = ACTIONS(484), + [anon_sym_CARET_EQ] = ACTIONS(484), + [anon_sym_LT_LT_EQ] = ACTIONS(484), + [anon_sym_GT_GT_EQ] = ACTIONS(484), + [anon_sym_yield] = ACTIONS(486), + [anon_sym_move] = ACTIONS(486), + [anon_sym_DOT] = ACTIONS(486), + [sym_integer_literal] = ACTIONS(484), + [aux_sym_string_literal_token1] = ACTIONS(484), + [sym_char_literal] = ACTIONS(484), + [anon_sym_true] = ACTIONS(486), + [anon_sym_false] = ACTIONS(486), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(486), + [sym_crate] = ACTIONS(486), + [sym_metavariable] = ACTIONS(484), + [sym_raw_string_literal] = ACTIONS(484), + [sym_float_literal] = ACTIONS(484), + [sym_block_comment] = ACTIONS(3), + }, + [76] = { + [ts_builtin_sym_end] = ACTIONS(488), + [sym_identifier] = ACTIONS(490), + [anon_sym_SEMI] = ACTIONS(488), + [anon_sym_macro_rules_BANG] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(488), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(490), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_QMARK] = ACTIONS(488), + [anon_sym_u8] = ACTIONS(490), + [anon_sym_i8] = ACTIONS(490), + [anon_sym_u16] = ACTIONS(490), + [anon_sym_i16] = ACTIONS(490), + [anon_sym_u32] = ACTIONS(490), + [anon_sym_i32] = ACTIONS(490), + [anon_sym_u64] = ACTIONS(490), + [anon_sym_i64] = ACTIONS(490), + [anon_sym_u128] = ACTIONS(490), + [anon_sym_i128] = ACTIONS(490), + [anon_sym_isize] = ACTIONS(490), + [anon_sym_usize] = ACTIONS(490), + [anon_sym_f32] = ACTIONS(490), + [anon_sym_f64] = ACTIONS(490), + [anon_sym_bool] = ACTIONS(490), + [anon_sym_str] = ACTIONS(490), + [anon_sym_char] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(490), + [anon_sym_as] = ACTIONS(490), + [anon_sym_async] = ACTIONS(490), + [anon_sym_break] = ACTIONS(490), + [anon_sym_const] = ACTIONS(490), + [anon_sym_continue] = ACTIONS(490), + [anon_sym_default] = ACTIONS(490), + [anon_sym_enum] = ACTIONS(490), + [anon_sym_fn] = ACTIONS(490), + [anon_sym_for] = ACTIONS(490), + [anon_sym_if] = ACTIONS(490), + [anon_sym_impl] = ACTIONS(490), + [anon_sym_let] = ACTIONS(490), + [anon_sym_loop] = ACTIONS(490), + [anon_sym_match] = ACTIONS(490), + [anon_sym_mod] = ACTIONS(490), + [anon_sym_pub] = ACTIONS(490), + [anon_sym_return] = ACTIONS(490), + [anon_sym_static] = ACTIONS(490), + [anon_sym_struct] = ACTIONS(490), + [anon_sym_trait] = ACTIONS(490), + [anon_sym_type] = ACTIONS(490), + [anon_sym_union] = ACTIONS(490), + [anon_sym_unsafe] = ACTIONS(490), + [anon_sym_use] = ACTIONS(490), + [anon_sym_while] = ACTIONS(490), + [anon_sym_POUND] = ACTIONS(488), + [anon_sym_BANG] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_extern] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(490), + [anon_sym_GT] = ACTIONS(490), + [anon_sym_COLON_COLON] = ACTIONS(488), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [anon_sym_DOT_DOT] = ACTIONS(490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(490), + [anon_sym_AMP_AMP] = ACTIONS(488), + [anon_sym_PIPE_PIPE] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(490), + [anon_sym_CARET] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(488), + [anon_sym_BANG_EQ] = ACTIONS(488), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_LT_LT] = ACTIONS(490), + [anon_sym_GT_GT] = ACTIONS(490), + [anon_sym_SLASH] = ACTIONS(490), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_PLUS_EQ] = ACTIONS(488), + [anon_sym_DASH_EQ] = ACTIONS(488), + [anon_sym_STAR_EQ] = ACTIONS(488), + [anon_sym_SLASH_EQ] = ACTIONS(488), + [anon_sym_PERCENT_EQ] = ACTIONS(488), + [anon_sym_AMP_EQ] = ACTIONS(488), + [anon_sym_PIPE_EQ] = ACTIONS(488), + [anon_sym_CARET_EQ] = ACTIONS(488), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_GT_GT_EQ] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_move] = ACTIONS(490), + [anon_sym_DOT] = ACTIONS(490), + [sym_integer_literal] = ACTIONS(488), + [aux_sym_string_literal_token1] = ACTIONS(488), + [sym_char_literal] = ACTIONS(488), + [anon_sym_true] = ACTIONS(490), + [anon_sym_false] = ACTIONS(490), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(490), + [sym_super] = ACTIONS(490), + [sym_crate] = ACTIONS(490), + [sym_metavariable] = ACTIONS(488), + [sym_raw_string_literal] = ACTIONS(488), + [sym_float_literal] = ACTIONS(488), + [sym_block_comment] = ACTIONS(3), + }, + [77] = { + [ts_builtin_sym_end] = ACTIONS(492), + [sym_identifier] = ACTIONS(494), + [anon_sym_SEMI] = ACTIONS(492), + [anon_sym_macro_rules_BANG] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_STAR] = ACTIONS(494), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_u8] = ACTIONS(494), + [anon_sym_i8] = ACTIONS(494), + [anon_sym_u16] = ACTIONS(494), + [anon_sym_i16] = ACTIONS(494), + [anon_sym_u32] = ACTIONS(494), + [anon_sym_i32] = ACTIONS(494), + [anon_sym_u64] = ACTIONS(494), + [anon_sym_i64] = ACTIONS(494), + [anon_sym_u128] = ACTIONS(494), + [anon_sym_i128] = ACTIONS(494), + [anon_sym_isize] = ACTIONS(494), + [anon_sym_usize] = ACTIONS(494), + [anon_sym_f32] = ACTIONS(494), + [anon_sym_f64] = ACTIONS(494), + [anon_sym_bool] = ACTIONS(494), + [anon_sym_str] = ACTIONS(494), + [anon_sym_char] = ACTIONS(494), + [anon_sym_SQUOTE] = ACTIONS(494), + [anon_sym_as] = ACTIONS(494), + [anon_sym_async] = ACTIONS(494), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(494), + [anon_sym_continue] = ACTIONS(494), + [anon_sym_default] = ACTIONS(494), + [anon_sym_enum] = ACTIONS(494), + [anon_sym_fn] = ACTIONS(494), + [anon_sym_for] = ACTIONS(494), + [anon_sym_if] = ACTIONS(494), + [anon_sym_impl] = ACTIONS(494), + [anon_sym_let] = ACTIONS(494), + [anon_sym_loop] = ACTIONS(494), + [anon_sym_match] = ACTIONS(494), + [anon_sym_mod] = ACTIONS(494), + [anon_sym_pub] = ACTIONS(494), + [anon_sym_return] = ACTIONS(494), + [anon_sym_static] = ACTIONS(494), + [anon_sym_struct] = ACTIONS(494), + [anon_sym_trait] = ACTIONS(494), + [anon_sym_type] = ACTIONS(494), + [anon_sym_union] = ACTIONS(494), + [anon_sym_unsafe] = ACTIONS(494), + [anon_sym_use] = ACTIONS(494), + [anon_sym_while] = ACTIONS(494), + [anon_sym_POUND] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(494), + [anon_sym_extern] = ACTIONS(494), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(494), + [anon_sym_DOT_DOT_DOT] = ACTIONS(492), + [anon_sym_DOT_DOT] = ACTIONS(494), + [anon_sym_DOT_DOT_EQ] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_AMP_AMP] = ACTIONS(492), + [anon_sym_PIPE_PIPE] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(494), + [anon_sym_CARET] = ACTIONS(494), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(494), + [anon_sym_PERCENT] = ACTIONS(494), + [anon_sym_PLUS_EQ] = ACTIONS(492), + [anon_sym_DASH_EQ] = ACTIONS(492), + [anon_sym_STAR_EQ] = ACTIONS(492), + [anon_sym_SLASH_EQ] = ACTIONS(492), + [anon_sym_PERCENT_EQ] = ACTIONS(492), + [anon_sym_AMP_EQ] = ACTIONS(492), + [anon_sym_PIPE_EQ] = ACTIONS(492), + [anon_sym_CARET_EQ] = ACTIONS(492), + [anon_sym_LT_LT_EQ] = ACTIONS(492), + [anon_sym_GT_GT_EQ] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(494), + [anon_sym_move] = ACTIONS(494), + [anon_sym_DOT] = ACTIONS(494), + [sym_integer_literal] = ACTIONS(492), + [aux_sym_string_literal_token1] = ACTIONS(492), + [sym_char_literal] = ACTIONS(492), + [anon_sym_true] = ACTIONS(494), + [anon_sym_false] = ACTIONS(494), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(492), + [sym_raw_string_literal] = ACTIONS(492), + [sym_float_literal] = ACTIONS(492), + [sym_block_comment] = ACTIONS(3), + }, + [78] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_tuple_expression_repeat1] = STATE(78), + [sym_identifier] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(499), + [anon_sym_RPAREN] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_u8] = ACTIONS(513), + [anon_sym_i8] = ACTIONS(513), + [anon_sym_u16] = ACTIONS(513), + [anon_sym_i16] = ACTIONS(513), + [anon_sym_u32] = ACTIONS(513), + [anon_sym_i32] = ACTIONS(513), + [anon_sym_u64] = ACTIONS(513), + [anon_sym_i64] = ACTIONS(513), + [anon_sym_u128] = ACTIONS(513), + [anon_sym_i128] = ACTIONS(513), + [anon_sym_isize] = ACTIONS(513), + [anon_sym_usize] = ACTIONS(513), + [anon_sym_f32] = ACTIONS(513), + [anon_sym_f64] = ACTIONS(513), + [anon_sym_bool] = ACTIONS(513), + [anon_sym_str] = ACTIONS(513), + [anon_sym_char] = ACTIONS(513), + [anon_sym_SQUOTE] = ACTIONS(516), + [anon_sym_async] = ACTIONS(519), + [anon_sym_break] = ACTIONS(522), + [anon_sym_const] = ACTIONS(525), + [anon_sym_continue] = ACTIONS(528), + [anon_sym_default] = ACTIONS(531), + [anon_sym_for] = ACTIONS(534), + [anon_sym_if] = ACTIONS(537), + [anon_sym_loop] = ACTIONS(540), + [anon_sym_match] = ACTIONS(543), + [anon_sym_return] = ACTIONS(546), + [anon_sym_union] = ACTIONS(531), + [anon_sym_unsafe] = ACTIONS(549), + [anon_sym_while] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_LT] = ACTIONS(555), + [anon_sym_COLON_COLON] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(561), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(570), + [anon_sym_move] = ACTIONS(573), + [sym_integer_literal] = ACTIONS(576), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(576), + [anon_sym_true] = ACTIONS(582), + [anon_sym_false] = ACTIONS(582), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(585), + [sym_super] = ACTIONS(588), + [sym_crate] = ACTIONS(588), + [sym_metavariable] = ACTIONS(591), + [sym_raw_string_literal] = ACTIONS(576), + [sym_float_literal] = ACTIONS(576), + [sym_block_comment] = ACTIONS(3), + }, + [79] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1245), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_tuple_expression_repeat1] = STATE(78), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(418), + [anon_sym_RPAREN] = ACTIONS(594), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -24728,264 +26952,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [59] = { - [ts_builtin_sym_end] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(420), - [anon_sym_macro_rules_BANG] = ACTIONS(420), - [anon_sym_LPAREN] = ACTIONS(420), - [anon_sym_LBRACE] = ACTIONS(420), - [anon_sym_RBRACE] = ACTIONS(420), - [anon_sym_LBRACK] = ACTIONS(420), - [anon_sym_PLUS] = ACTIONS(422), - [anon_sym_STAR] = ACTIONS(422), - [anon_sym_QMARK] = ACTIONS(420), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_isize] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_f32] = ACTIONS(422), - [anon_sym_f64] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_str] = ACTIONS(422), - [anon_sym_char] = ACTIONS(422), - [anon_sym_SQUOTE] = ACTIONS(422), - [anon_sym_as] = ACTIONS(422), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(422), - [anon_sym_const] = ACTIONS(422), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_default] = ACTIONS(422), - [anon_sym_enum] = ACTIONS(422), - [anon_sym_fn] = ACTIONS(422), - [anon_sym_for] = ACTIONS(422), - [anon_sym_if] = ACTIONS(422), - [anon_sym_impl] = ACTIONS(422), - [anon_sym_let] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(422), - [anon_sym_match] = ACTIONS(422), - [anon_sym_mod] = ACTIONS(422), - [anon_sym_pub] = ACTIONS(422), - [anon_sym_return] = ACTIONS(422), - [anon_sym_static] = ACTIONS(422), - [anon_sym_struct] = ACTIONS(422), - [anon_sym_trait] = ACTIONS(422), - [anon_sym_type] = ACTIONS(422), - [anon_sym_union] = ACTIONS(422), - [anon_sym_unsafe] = ACTIONS(422), - [anon_sym_use] = ACTIONS(422), - [anon_sym_while] = ACTIONS(422), - [anon_sym_POUND] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_EQ] = ACTIONS(422), - [anon_sym_extern] = ACTIONS(422), - [anon_sym_LT] = ACTIONS(422), - [anon_sym_GT] = ACTIONS(422), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_AMP] = ACTIONS(422), - [anon_sym_DOT_DOT_DOT] = ACTIONS(420), - [anon_sym_DOT_DOT] = ACTIONS(422), - [anon_sym_DOT_DOT_EQ] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(422), - [anon_sym_CARET] = ACTIONS(422), - [anon_sym_EQ_EQ] = ACTIONS(420), - [anon_sym_BANG_EQ] = ACTIONS(420), - [anon_sym_LT_EQ] = ACTIONS(420), - [anon_sym_GT_EQ] = ACTIONS(420), - [anon_sym_LT_LT] = ACTIONS(422), - [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_SLASH] = ACTIONS(422), - [anon_sym_PERCENT] = ACTIONS(422), - [anon_sym_PLUS_EQ] = ACTIONS(420), - [anon_sym_DASH_EQ] = ACTIONS(420), - [anon_sym_STAR_EQ] = ACTIONS(420), - [anon_sym_SLASH_EQ] = ACTIONS(420), - [anon_sym_PERCENT_EQ] = ACTIONS(420), - [anon_sym_AMP_EQ] = ACTIONS(420), - [anon_sym_PIPE_EQ] = ACTIONS(420), - [anon_sym_CARET_EQ] = ACTIONS(420), - [anon_sym_LT_LT_EQ] = ACTIONS(420), - [anon_sym_GT_GT_EQ] = ACTIONS(420), - [anon_sym_yield] = ACTIONS(422), - [anon_sym_move] = ACTIONS(422), - [anon_sym_DOT] = ACTIONS(422), - [sym_integer_literal] = ACTIONS(420), - [aux_sym_string_literal_token1] = ACTIONS(420), - [sym_char_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(422), - [sym_super] = ACTIONS(422), - [sym_crate] = ACTIONS(422), - [sym_metavariable] = ACTIONS(420), - [sym_raw_string_literal] = ACTIONS(420), - [sym_float_literal] = ACTIONS(420), + [80] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1270), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_let_condition] = STATE(1962), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(386), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [60] = { - [ts_builtin_sym_end] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_macro_rules_BANG] = ACTIONS(424), - [anon_sym_LPAREN] = ACTIONS(424), - [anon_sym_LBRACE] = ACTIONS(424), - [anon_sym_RBRACE] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(426), - [anon_sym_STAR] = ACTIONS(426), - [anon_sym_QMARK] = ACTIONS(424), - [anon_sym_u8] = ACTIONS(426), - [anon_sym_i8] = ACTIONS(426), - [anon_sym_u16] = ACTIONS(426), - [anon_sym_i16] = ACTIONS(426), - [anon_sym_u32] = ACTIONS(426), - [anon_sym_i32] = ACTIONS(426), - [anon_sym_u64] = ACTIONS(426), - [anon_sym_i64] = ACTIONS(426), - [anon_sym_u128] = ACTIONS(426), - [anon_sym_i128] = ACTIONS(426), - [anon_sym_isize] = ACTIONS(426), - [anon_sym_usize] = ACTIONS(426), - [anon_sym_f32] = ACTIONS(426), - [anon_sym_f64] = ACTIONS(426), - [anon_sym_bool] = ACTIONS(426), - [anon_sym_str] = ACTIONS(426), - [anon_sym_char] = ACTIONS(426), - [anon_sym_SQUOTE] = ACTIONS(426), - [anon_sym_as] = ACTIONS(426), - [anon_sym_async] = ACTIONS(426), - [anon_sym_break] = ACTIONS(426), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(426), - [anon_sym_default] = ACTIONS(426), - [anon_sym_enum] = ACTIONS(426), - [anon_sym_fn] = ACTIONS(426), - [anon_sym_for] = ACTIONS(426), - [anon_sym_if] = ACTIONS(426), - [anon_sym_impl] = ACTIONS(426), - [anon_sym_let] = ACTIONS(426), - [anon_sym_loop] = ACTIONS(426), - [anon_sym_match] = ACTIONS(426), - [anon_sym_mod] = ACTIONS(426), - [anon_sym_pub] = ACTIONS(426), - [anon_sym_return] = ACTIONS(426), - [anon_sym_static] = ACTIONS(426), - [anon_sym_struct] = ACTIONS(426), - [anon_sym_trait] = ACTIONS(426), - [anon_sym_type] = ACTIONS(426), - [anon_sym_union] = ACTIONS(426), - [anon_sym_unsafe] = ACTIONS(426), - [anon_sym_use] = ACTIONS(426), - [anon_sym_while] = ACTIONS(426), - [anon_sym_POUND] = ACTIONS(424), - [anon_sym_BANG] = ACTIONS(426), - [anon_sym_EQ] = ACTIONS(426), - [anon_sym_extern] = ACTIONS(426), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_GT] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(424), - [anon_sym_AMP] = ACTIONS(426), - [anon_sym_DOT_DOT_DOT] = ACTIONS(424), - [anon_sym_DOT_DOT] = ACTIONS(426), - [anon_sym_DOT_DOT_EQ] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_AMP_AMP] = ACTIONS(424), - [anon_sym_PIPE_PIPE] = ACTIONS(424), - [anon_sym_PIPE] = ACTIONS(426), - [anon_sym_CARET] = ACTIONS(426), - [anon_sym_EQ_EQ] = ACTIONS(424), - [anon_sym_BANG_EQ] = ACTIONS(424), - [anon_sym_LT_EQ] = ACTIONS(424), - [anon_sym_GT_EQ] = ACTIONS(424), - [anon_sym_LT_LT] = ACTIONS(426), - [anon_sym_GT_GT] = ACTIONS(426), - [anon_sym_SLASH] = ACTIONS(426), - [anon_sym_PERCENT] = ACTIONS(426), - [anon_sym_PLUS_EQ] = ACTIONS(424), - [anon_sym_DASH_EQ] = ACTIONS(424), - [anon_sym_STAR_EQ] = ACTIONS(424), - [anon_sym_SLASH_EQ] = ACTIONS(424), - [anon_sym_PERCENT_EQ] = ACTIONS(424), - [anon_sym_AMP_EQ] = ACTIONS(424), - [anon_sym_PIPE_EQ] = ACTIONS(424), - [anon_sym_CARET_EQ] = ACTIONS(424), - [anon_sym_LT_LT_EQ] = ACTIONS(424), - [anon_sym_GT_GT_EQ] = ACTIONS(424), - [anon_sym_yield] = ACTIONS(426), - [anon_sym_move] = ACTIONS(426), - [anon_sym_DOT] = ACTIONS(426), - [sym_integer_literal] = ACTIONS(424), - [aux_sym_string_literal_token1] = ACTIONS(424), - [sym_char_literal] = ACTIONS(424), - [anon_sym_true] = ACTIONS(426), - [anon_sym_false] = ACTIONS(426), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_crate] = ACTIONS(426), - [sym_metavariable] = ACTIONS(424), - [sym_raw_string_literal] = ACTIONS(424), - [sym_float_literal] = ACTIONS(424), + [81] = { + [ts_builtin_sym_end] = ACTIONS(596), + [sym_identifier] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_macro_rules_BANG] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(596), + [anon_sym_LBRACE] = ACTIONS(596), + [anon_sym_RBRACE] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(596), + [anon_sym_PLUS] = ACTIONS(598), + [anon_sym_STAR] = ACTIONS(598), + [anon_sym_QMARK] = ACTIONS(596), + [anon_sym_u8] = ACTIONS(598), + [anon_sym_i8] = ACTIONS(598), + [anon_sym_u16] = ACTIONS(598), + [anon_sym_i16] = ACTIONS(598), + [anon_sym_u32] = ACTIONS(598), + [anon_sym_i32] = ACTIONS(598), + [anon_sym_u64] = ACTIONS(598), + [anon_sym_i64] = ACTIONS(598), + [anon_sym_u128] = ACTIONS(598), + [anon_sym_i128] = ACTIONS(598), + [anon_sym_isize] = ACTIONS(598), + [anon_sym_usize] = ACTIONS(598), + [anon_sym_f32] = ACTIONS(598), + [anon_sym_f64] = ACTIONS(598), + [anon_sym_bool] = ACTIONS(598), + [anon_sym_str] = ACTIONS(598), + [anon_sym_char] = ACTIONS(598), + [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_as] = ACTIONS(598), + [anon_sym_async] = ACTIONS(598), + [anon_sym_break] = ACTIONS(598), + [anon_sym_const] = ACTIONS(598), + [anon_sym_continue] = ACTIONS(598), + [anon_sym_default] = ACTIONS(598), + [anon_sym_enum] = ACTIONS(598), + [anon_sym_fn] = ACTIONS(598), + [anon_sym_for] = ACTIONS(598), + [anon_sym_if] = ACTIONS(598), + [anon_sym_impl] = ACTIONS(598), + [anon_sym_let] = ACTIONS(598), + [anon_sym_loop] = ACTIONS(598), + [anon_sym_match] = ACTIONS(598), + [anon_sym_mod] = ACTIONS(598), + [anon_sym_pub] = ACTIONS(598), + [anon_sym_return] = ACTIONS(598), + [anon_sym_static] = ACTIONS(598), + [anon_sym_struct] = ACTIONS(598), + [anon_sym_trait] = ACTIONS(598), + [anon_sym_type] = ACTIONS(598), + [anon_sym_union] = ACTIONS(598), + [anon_sym_unsafe] = ACTIONS(598), + [anon_sym_use] = ACTIONS(598), + [anon_sym_while] = ACTIONS(598), + [anon_sym_POUND] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(598), + [anon_sym_extern] = ACTIONS(598), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_GT] = ACTIONS(598), + [anon_sym_COLON_COLON] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT] = ACTIONS(598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(596), + [anon_sym_DASH] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_CARET] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(596), + [anon_sym_BANG_EQ] = ACTIONS(596), + [anon_sym_LT_EQ] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(596), + [anon_sym_LT_LT] = ACTIONS(598), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_SLASH] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_PLUS_EQ] = ACTIONS(596), + [anon_sym_DASH_EQ] = ACTIONS(596), + [anon_sym_STAR_EQ] = ACTIONS(596), + [anon_sym_SLASH_EQ] = ACTIONS(596), + [anon_sym_PERCENT_EQ] = ACTIONS(596), + [anon_sym_AMP_EQ] = ACTIONS(596), + [anon_sym_PIPE_EQ] = ACTIONS(596), + [anon_sym_CARET_EQ] = ACTIONS(596), + [anon_sym_LT_LT_EQ] = ACTIONS(596), + [anon_sym_GT_GT_EQ] = ACTIONS(596), + [anon_sym_yield] = ACTIONS(598), + [anon_sym_move] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(598), + [sym_integer_literal] = ACTIONS(596), + [aux_sym_string_literal_token1] = ACTIONS(596), + [sym_char_literal] = ACTIONS(596), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(598), + [sym_super] = ACTIONS(598), + [sym_crate] = ACTIONS(598), + [sym_metavariable] = ACTIONS(596), + [sym_raw_string_literal] = ACTIONS(596), + [sym_float_literal] = ACTIONS(596), [sym_block_comment] = ACTIONS(3), }, - [61] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1228), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_let_condition] = STATE(1868), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [82] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1280), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_let_condition] = STATE(1962), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -25016,7 +27240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(394), + [anon_sym_let] = ACTIONS(382), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), @@ -25027,7 +27251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(428), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -25046,54 +27270,373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [62] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1287), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_let_condition] = STATE(1868), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [83] = { + [ts_builtin_sym_end] = ACTIONS(600), + [sym_identifier] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_macro_rules_BANG] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(600), + [anon_sym_LBRACE] = ACTIONS(600), + [anon_sym_RBRACE] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(602), + [anon_sym_i8] = ACTIONS(602), + [anon_sym_u16] = ACTIONS(602), + [anon_sym_i16] = ACTIONS(602), + [anon_sym_u32] = ACTIONS(602), + [anon_sym_i32] = ACTIONS(602), + [anon_sym_u64] = ACTIONS(602), + [anon_sym_i64] = ACTIONS(602), + [anon_sym_u128] = ACTIONS(602), + [anon_sym_i128] = ACTIONS(602), + [anon_sym_isize] = ACTIONS(602), + [anon_sym_usize] = ACTIONS(602), + [anon_sym_f32] = ACTIONS(602), + [anon_sym_f64] = ACTIONS(602), + [anon_sym_bool] = ACTIONS(602), + [anon_sym_str] = ACTIONS(602), + [anon_sym_char] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(602), + [anon_sym_as] = ACTIONS(602), + [anon_sym_async] = ACTIONS(602), + [anon_sym_break] = ACTIONS(602), + [anon_sym_const] = ACTIONS(602), + [anon_sym_continue] = ACTIONS(602), + [anon_sym_default] = ACTIONS(602), + [anon_sym_enum] = ACTIONS(602), + [anon_sym_fn] = ACTIONS(602), + [anon_sym_for] = ACTIONS(602), + [anon_sym_if] = ACTIONS(602), + [anon_sym_impl] = ACTIONS(602), + [anon_sym_let] = ACTIONS(602), + [anon_sym_loop] = ACTIONS(602), + [anon_sym_match] = ACTIONS(602), + [anon_sym_mod] = ACTIONS(602), + [anon_sym_pub] = ACTIONS(602), + [anon_sym_return] = ACTIONS(602), + [anon_sym_static] = ACTIONS(602), + [anon_sym_struct] = ACTIONS(602), + [anon_sym_trait] = ACTIONS(602), + [anon_sym_type] = ACTIONS(602), + [anon_sym_union] = ACTIONS(602), + [anon_sym_unsafe] = ACTIONS(602), + [anon_sym_use] = ACTIONS(602), + [anon_sym_while] = ACTIONS(602), + [anon_sym_POUND] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_EQ] = ACTIONS(602), + [anon_sym_extern] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_COLON_COLON] = ACTIONS(600), + [anon_sym_AMP] = ACTIONS(602), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [anon_sym_DOT_DOT] = ACTIONS(602), + [anon_sym_DOT_DOT_EQ] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_EQ_EQ] = ACTIONS(600), + [anon_sym_BANG_EQ] = ACTIONS(600), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(602), + [anon_sym_PERCENT] = ACTIONS(602), + [anon_sym_PLUS_EQ] = ACTIONS(600), + [anon_sym_DASH_EQ] = ACTIONS(600), + [anon_sym_STAR_EQ] = ACTIONS(600), + [anon_sym_SLASH_EQ] = ACTIONS(600), + [anon_sym_PERCENT_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(600), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_yield] = ACTIONS(602), + [anon_sym_move] = ACTIONS(602), + [anon_sym_DOT] = ACTIONS(602), + [sym_integer_literal] = ACTIONS(600), + [aux_sym_string_literal_token1] = ACTIONS(600), + [sym_char_literal] = ACTIONS(600), + [anon_sym_true] = ACTIONS(602), + [anon_sym_false] = ACTIONS(602), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(602), + [sym_super] = ACTIONS(602), + [sym_crate] = ACTIONS(602), + [sym_metavariable] = ACTIONS(600), + [sym_raw_string_literal] = ACTIONS(600), + [sym_float_literal] = ACTIONS(600), + [sym_block_comment] = ACTIONS(3), + }, + [84] = { + [ts_builtin_sym_end] = ACTIONS(604), + [sym_identifier] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(604), + [anon_sym_macro_rules_BANG] = ACTIONS(604), + [anon_sym_LPAREN] = ACTIONS(604), + [anon_sym_LBRACE] = ACTIONS(604), + [anon_sym_RBRACE] = ACTIONS(604), + [anon_sym_LBRACK] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(604), + [anon_sym_u8] = ACTIONS(606), + [anon_sym_i8] = ACTIONS(606), + [anon_sym_u16] = ACTIONS(606), + [anon_sym_i16] = ACTIONS(606), + [anon_sym_u32] = ACTIONS(606), + [anon_sym_i32] = ACTIONS(606), + [anon_sym_u64] = ACTIONS(606), + [anon_sym_i64] = ACTIONS(606), + [anon_sym_u128] = ACTIONS(606), + [anon_sym_i128] = ACTIONS(606), + [anon_sym_isize] = ACTIONS(606), + [anon_sym_usize] = ACTIONS(606), + [anon_sym_f32] = ACTIONS(606), + [anon_sym_f64] = ACTIONS(606), + [anon_sym_bool] = ACTIONS(606), + [anon_sym_str] = ACTIONS(606), + [anon_sym_char] = ACTIONS(606), + [anon_sym_SQUOTE] = ACTIONS(606), + [anon_sym_as] = ACTIONS(606), + [anon_sym_async] = ACTIONS(606), + [anon_sym_break] = ACTIONS(606), + [anon_sym_const] = ACTIONS(606), + [anon_sym_continue] = ACTIONS(606), + [anon_sym_default] = ACTIONS(606), + [anon_sym_enum] = ACTIONS(606), + [anon_sym_fn] = ACTIONS(606), + [anon_sym_for] = ACTIONS(606), + [anon_sym_if] = ACTIONS(606), + [anon_sym_impl] = ACTIONS(606), + [anon_sym_let] = ACTIONS(606), + [anon_sym_loop] = ACTIONS(606), + [anon_sym_match] = ACTIONS(606), + [anon_sym_mod] = ACTIONS(606), + [anon_sym_pub] = ACTIONS(606), + [anon_sym_return] = ACTIONS(606), + [anon_sym_static] = ACTIONS(606), + [anon_sym_struct] = ACTIONS(606), + [anon_sym_trait] = ACTIONS(606), + [anon_sym_type] = ACTIONS(606), + [anon_sym_union] = ACTIONS(606), + [anon_sym_unsafe] = ACTIONS(606), + [anon_sym_use] = ACTIONS(606), + [anon_sym_while] = ACTIONS(606), + [anon_sym_POUND] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_EQ] = ACTIONS(606), + [anon_sym_extern] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_GT] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(604), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_AMP_AMP] = ACTIONS(604), + [anon_sym_PIPE_PIPE] = ACTIONS(604), + [anon_sym_PIPE] = ACTIONS(606), + [anon_sym_CARET] = ACTIONS(606), + [anon_sym_EQ_EQ] = ACTIONS(604), + [anon_sym_BANG_EQ] = ACTIONS(604), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_LT_LT] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(606), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(606), + [anon_sym_PLUS_EQ] = ACTIONS(604), + [anon_sym_DASH_EQ] = ACTIONS(604), + [anon_sym_STAR_EQ] = ACTIONS(604), + [anon_sym_SLASH_EQ] = ACTIONS(604), + [anon_sym_PERCENT_EQ] = ACTIONS(604), + [anon_sym_AMP_EQ] = ACTIONS(604), + [anon_sym_PIPE_EQ] = ACTIONS(604), + [anon_sym_CARET_EQ] = ACTIONS(604), + [anon_sym_LT_LT_EQ] = ACTIONS(604), + [anon_sym_GT_GT_EQ] = ACTIONS(604), + [anon_sym_yield] = ACTIONS(606), + [anon_sym_move] = ACTIONS(606), + [anon_sym_DOT] = ACTIONS(606), + [sym_integer_literal] = ACTIONS(604), + [aux_sym_string_literal_token1] = ACTIONS(604), + [sym_char_literal] = ACTIONS(604), + [anon_sym_true] = ACTIONS(606), + [anon_sym_false] = ACTIONS(606), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(606), + [sym_super] = ACTIONS(606), + [sym_crate] = ACTIONS(606), + [sym_metavariable] = ACTIONS(604), + [sym_raw_string_literal] = ACTIONS(604), + [sym_float_literal] = ACTIONS(604), + [sym_block_comment] = ACTIONS(3), + }, + [85] = { + [ts_builtin_sym_end] = ACTIONS(608), + [sym_identifier] = ACTIONS(610), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym_macro_rules_BANG] = ACTIONS(608), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_RBRACE] = ACTIONS(608), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_PLUS] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(608), + [anon_sym_u8] = ACTIONS(610), + [anon_sym_i8] = ACTIONS(610), + [anon_sym_u16] = ACTIONS(610), + [anon_sym_i16] = ACTIONS(610), + [anon_sym_u32] = ACTIONS(610), + [anon_sym_i32] = ACTIONS(610), + [anon_sym_u64] = ACTIONS(610), + [anon_sym_i64] = ACTIONS(610), + [anon_sym_u128] = ACTIONS(610), + [anon_sym_i128] = ACTIONS(610), + [anon_sym_isize] = ACTIONS(610), + [anon_sym_usize] = ACTIONS(610), + [anon_sym_f32] = ACTIONS(610), + [anon_sym_f64] = ACTIONS(610), + [anon_sym_bool] = ACTIONS(610), + [anon_sym_str] = ACTIONS(610), + [anon_sym_char] = ACTIONS(610), + [anon_sym_SQUOTE] = ACTIONS(610), + [anon_sym_as] = ACTIONS(610), + [anon_sym_async] = ACTIONS(610), + [anon_sym_break] = ACTIONS(610), + [anon_sym_const] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(610), + [anon_sym_default] = ACTIONS(610), + [anon_sym_enum] = ACTIONS(610), + [anon_sym_fn] = ACTIONS(610), + [anon_sym_for] = ACTIONS(610), + [anon_sym_if] = ACTIONS(610), + [anon_sym_impl] = ACTIONS(610), + [anon_sym_let] = ACTIONS(610), + [anon_sym_loop] = ACTIONS(610), + [anon_sym_match] = ACTIONS(610), + [anon_sym_mod] = ACTIONS(610), + [anon_sym_pub] = ACTIONS(610), + [anon_sym_return] = ACTIONS(610), + [anon_sym_static] = ACTIONS(610), + [anon_sym_struct] = ACTIONS(610), + [anon_sym_trait] = ACTIONS(610), + [anon_sym_type] = ACTIONS(610), + [anon_sym_union] = ACTIONS(610), + [anon_sym_unsafe] = ACTIONS(610), + [anon_sym_use] = ACTIONS(610), + [anon_sym_while] = ACTIONS(610), + [anon_sym_POUND] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(610), + [anon_sym_EQ] = ACTIONS(610), + [anon_sym_extern] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(610), + [anon_sym_COLON_COLON] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(608), + [anon_sym_DOT_DOT] = ACTIONS(610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(610), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_CARET] = ACTIONS(610), + [anon_sym_EQ_EQ] = ACTIONS(608), + [anon_sym_BANG_EQ] = ACTIONS(608), + [anon_sym_LT_EQ] = ACTIONS(608), + [anon_sym_GT_EQ] = ACTIONS(608), + [anon_sym_LT_LT] = ACTIONS(610), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_SLASH] = ACTIONS(610), + [anon_sym_PERCENT] = ACTIONS(610), + [anon_sym_PLUS_EQ] = ACTIONS(608), + [anon_sym_DASH_EQ] = ACTIONS(608), + [anon_sym_STAR_EQ] = ACTIONS(608), + [anon_sym_SLASH_EQ] = ACTIONS(608), + [anon_sym_PERCENT_EQ] = ACTIONS(608), + [anon_sym_AMP_EQ] = ACTIONS(608), + [anon_sym_PIPE_EQ] = ACTIONS(608), + [anon_sym_CARET_EQ] = ACTIONS(608), + [anon_sym_LT_LT_EQ] = ACTIONS(608), + [anon_sym_GT_GT_EQ] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(610), + [anon_sym_move] = ACTIONS(610), + [anon_sym_DOT] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(608), + [aux_sym_string_literal_token1] = ACTIONS(608), + [sym_char_literal] = ACTIONS(608), + [anon_sym_true] = ACTIONS(610), + [anon_sym_false] = ACTIONS(610), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(610), + [sym_super] = ACTIONS(610), + [sym_crate] = ACTIONS(610), + [sym_metavariable] = ACTIONS(608), + [sym_raw_string_literal] = ACTIONS(608), + [sym_float_literal] = ACTIONS(608), + [sym_block_comment] = ACTIONS(3), + }, + [86] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1234), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_tuple_expression_repeat1] = STATE(79), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(612), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -25122,7 +27665,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(394), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), @@ -25152,55 +27694,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [63] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1259), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_tuple_expression_repeat1] = STATE(58), + [87] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1234), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [aux_sym_tuple_expression_repeat1] = STATE(78), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(430), + [anon_sym_RPAREN] = ACTIONS(612), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -25258,799 +27800,792 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [64] = { - [ts_builtin_sym_end] = ACTIONS(432), - [sym_identifier] = ACTIONS(434), - [anon_sym_SEMI] = ACTIONS(432), - [anon_sym_macro_rules_BANG] = ACTIONS(432), - [anon_sym_LPAREN] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(432), - [anon_sym_RBRACE] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_STAR] = ACTIONS(434), - [anon_sym_QMARK] = ACTIONS(432), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_isize] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_f32] = ACTIONS(434), - [anon_sym_f64] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_str] = ACTIONS(434), - [anon_sym_char] = ACTIONS(434), - [anon_sym_SQUOTE] = ACTIONS(434), - [anon_sym_as] = ACTIONS(434), - [anon_sym_async] = ACTIONS(434), - [anon_sym_break] = ACTIONS(434), - [anon_sym_const] = ACTIONS(434), - [anon_sym_continue] = ACTIONS(434), - [anon_sym_default] = ACTIONS(434), - [anon_sym_enum] = ACTIONS(434), - [anon_sym_fn] = ACTIONS(434), - [anon_sym_for] = ACTIONS(434), - [anon_sym_if] = ACTIONS(434), - [anon_sym_impl] = ACTIONS(434), - [anon_sym_let] = ACTIONS(434), - [anon_sym_loop] = ACTIONS(434), - [anon_sym_match] = ACTIONS(434), - [anon_sym_mod] = ACTIONS(434), - [anon_sym_pub] = ACTIONS(434), - [anon_sym_return] = ACTIONS(434), - [anon_sym_static] = ACTIONS(434), - [anon_sym_struct] = ACTIONS(434), - [anon_sym_trait] = ACTIONS(434), - [anon_sym_type] = ACTIONS(434), - [anon_sym_union] = ACTIONS(434), - [anon_sym_unsafe] = ACTIONS(434), - [anon_sym_use] = ACTIONS(434), - [anon_sym_while] = ACTIONS(434), - [anon_sym_POUND] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(434), - [anon_sym_EQ] = ACTIONS(434), - [anon_sym_extern] = ACTIONS(434), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(434), - [anon_sym_DOT_DOT_DOT] = ACTIONS(432), - [anon_sym_DOT_DOT] = ACTIONS(434), - [anon_sym_DOT_DOT_EQ] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_AMP_AMP] = ACTIONS(432), - [anon_sym_PIPE_PIPE] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(434), - [anon_sym_CARET] = ACTIONS(434), - [anon_sym_EQ_EQ] = ACTIONS(432), - [anon_sym_BANG_EQ] = ACTIONS(432), - [anon_sym_LT_EQ] = ACTIONS(432), - [anon_sym_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(434), - [anon_sym_GT_GT] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(434), - [anon_sym_PERCENT] = ACTIONS(434), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), - [anon_sym_move] = ACTIONS(434), - [anon_sym_DOT] = ACTIONS(434), - [sym_integer_literal] = ACTIONS(432), - [aux_sym_string_literal_token1] = ACTIONS(432), - [sym_char_literal] = ACTIONS(432), - [anon_sym_true] = ACTIONS(434), - [anon_sym_false] = ACTIONS(434), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(434), - [sym_super] = ACTIONS(434), - [sym_crate] = ACTIONS(434), - [sym_metavariable] = ACTIONS(432), - [sym_raw_string_literal] = ACTIONS(432), - [sym_float_literal] = ACTIONS(432), - [sym_block_comment] = ACTIONS(3), - }, - [65] = { - [ts_builtin_sym_end] = ACTIONS(436), - [sym_identifier] = ACTIONS(438), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym_macro_rules_BANG] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(436), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_STAR] = ACTIONS(438), - [anon_sym_QMARK] = ACTIONS(436), - [anon_sym_u8] = ACTIONS(438), - [anon_sym_i8] = ACTIONS(438), - [anon_sym_u16] = ACTIONS(438), - [anon_sym_i16] = ACTIONS(438), - [anon_sym_u32] = ACTIONS(438), - [anon_sym_i32] = ACTIONS(438), - [anon_sym_u64] = ACTIONS(438), - [anon_sym_i64] = ACTIONS(438), - [anon_sym_u128] = ACTIONS(438), - [anon_sym_i128] = ACTIONS(438), - [anon_sym_isize] = ACTIONS(438), - [anon_sym_usize] = ACTIONS(438), - [anon_sym_f32] = ACTIONS(438), - [anon_sym_f64] = ACTIONS(438), - [anon_sym_bool] = ACTIONS(438), - [anon_sym_str] = ACTIONS(438), - [anon_sym_char] = ACTIONS(438), - [anon_sym_SQUOTE] = ACTIONS(438), - [anon_sym_as] = ACTIONS(438), - [anon_sym_async] = ACTIONS(438), - [anon_sym_break] = ACTIONS(438), - [anon_sym_const] = ACTIONS(438), - [anon_sym_continue] = ACTIONS(438), - [anon_sym_default] = ACTIONS(438), - [anon_sym_enum] = ACTIONS(438), - [anon_sym_fn] = ACTIONS(438), - [anon_sym_for] = ACTIONS(438), - [anon_sym_if] = ACTIONS(438), - [anon_sym_impl] = ACTIONS(438), - [anon_sym_let] = ACTIONS(438), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(438), - [anon_sym_mod] = ACTIONS(438), - [anon_sym_pub] = ACTIONS(438), - [anon_sym_return] = ACTIONS(438), - [anon_sym_static] = ACTIONS(438), - [anon_sym_struct] = ACTIONS(438), - [anon_sym_trait] = ACTIONS(438), - [anon_sym_type] = ACTIONS(438), - [anon_sym_union] = ACTIONS(438), - [anon_sym_unsafe] = ACTIONS(438), - [anon_sym_use] = ACTIONS(438), - [anon_sym_while] = ACTIONS(438), - [anon_sym_POUND] = ACTIONS(436), - [anon_sym_BANG] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(438), - [anon_sym_extern] = ACTIONS(438), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_GT] = ACTIONS(438), - [anon_sym_COLON_COLON] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [anon_sym_DOT_DOT] = ACTIONS(438), - [anon_sym_DOT_DOT_EQ] = ACTIONS(436), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_AMP_AMP] = ACTIONS(436), - [anon_sym_PIPE_PIPE] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(438), - [anon_sym_CARET] = ACTIONS(438), - [anon_sym_EQ_EQ] = ACTIONS(436), - [anon_sym_BANG_EQ] = ACTIONS(436), - [anon_sym_LT_EQ] = ACTIONS(436), - [anon_sym_GT_EQ] = ACTIONS(436), - [anon_sym_LT_LT] = ACTIONS(438), - [anon_sym_GT_GT] = ACTIONS(438), - [anon_sym_SLASH] = ACTIONS(438), - [anon_sym_PERCENT] = ACTIONS(438), - [anon_sym_PLUS_EQ] = ACTIONS(436), - [anon_sym_DASH_EQ] = ACTIONS(436), - [anon_sym_STAR_EQ] = ACTIONS(436), - [anon_sym_SLASH_EQ] = ACTIONS(436), - [anon_sym_PERCENT_EQ] = ACTIONS(436), - [anon_sym_AMP_EQ] = ACTIONS(436), - [anon_sym_PIPE_EQ] = ACTIONS(436), - [anon_sym_CARET_EQ] = ACTIONS(436), - [anon_sym_LT_LT_EQ] = ACTIONS(436), - [anon_sym_GT_GT_EQ] = ACTIONS(436), - [anon_sym_yield] = ACTIONS(438), - [anon_sym_move] = ACTIONS(438), - [anon_sym_DOT] = ACTIONS(438), - [sym_integer_literal] = ACTIONS(436), - [aux_sym_string_literal_token1] = ACTIONS(436), - [sym_char_literal] = ACTIONS(436), - [anon_sym_true] = ACTIONS(438), - [anon_sym_false] = ACTIONS(438), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(438), - [sym_super] = ACTIONS(438), - [sym_crate] = ACTIONS(438), - [sym_metavariable] = ACTIONS(436), - [sym_raw_string_literal] = ACTIONS(436), - [sym_float_literal] = ACTIONS(436), - [sym_block_comment] = ACTIONS(3), - }, - [66] = { - [ts_builtin_sym_end] = ACTIONS(440), - [sym_identifier] = ACTIONS(442), - [anon_sym_SEMI] = ACTIONS(440), - [anon_sym_macro_rules_BANG] = ACTIONS(440), - [anon_sym_LPAREN] = ACTIONS(440), - [anon_sym_LBRACE] = ACTIONS(440), - [anon_sym_RBRACE] = ACTIONS(440), - [anon_sym_LBRACK] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(442), - [anon_sym_QMARK] = ACTIONS(440), - [anon_sym_u8] = ACTIONS(442), - [anon_sym_i8] = ACTIONS(442), - [anon_sym_u16] = ACTIONS(442), - [anon_sym_i16] = ACTIONS(442), - [anon_sym_u32] = ACTIONS(442), - [anon_sym_i32] = ACTIONS(442), - [anon_sym_u64] = ACTIONS(442), - [anon_sym_i64] = ACTIONS(442), - [anon_sym_u128] = ACTIONS(442), - [anon_sym_i128] = ACTIONS(442), - [anon_sym_isize] = ACTIONS(442), - [anon_sym_usize] = ACTIONS(442), - [anon_sym_f32] = ACTIONS(442), - [anon_sym_f64] = ACTIONS(442), - [anon_sym_bool] = ACTIONS(442), - [anon_sym_str] = ACTIONS(442), - [anon_sym_char] = ACTIONS(442), - [anon_sym_SQUOTE] = ACTIONS(442), - [anon_sym_as] = ACTIONS(442), - [anon_sym_async] = ACTIONS(442), - [anon_sym_break] = ACTIONS(442), - [anon_sym_const] = ACTIONS(442), - [anon_sym_continue] = ACTIONS(442), - [anon_sym_default] = ACTIONS(442), - [anon_sym_enum] = ACTIONS(442), - [anon_sym_fn] = ACTIONS(442), - [anon_sym_for] = ACTIONS(442), - [anon_sym_if] = ACTIONS(442), - [anon_sym_impl] = ACTIONS(442), - [anon_sym_let] = ACTIONS(442), - [anon_sym_loop] = ACTIONS(442), - [anon_sym_match] = ACTIONS(442), - [anon_sym_mod] = ACTIONS(442), - [anon_sym_pub] = ACTIONS(442), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(442), - [anon_sym_struct] = ACTIONS(442), - [anon_sym_trait] = ACTIONS(442), - [anon_sym_type] = ACTIONS(442), - [anon_sym_union] = ACTIONS(442), - [anon_sym_unsafe] = ACTIONS(442), - [anon_sym_use] = ACTIONS(442), - [anon_sym_while] = ACTIONS(442), - [anon_sym_POUND] = ACTIONS(440), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_EQ] = ACTIONS(442), - [anon_sym_extern] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_COLON_COLON] = ACTIONS(440), - [anon_sym_AMP] = ACTIONS(442), - [anon_sym_DOT_DOT_DOT] = ACTIONS(440), - [anon_sym_DOT_DOT] = ACTIONS(442), - [anon_sym_DOT_DOT_EQ] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_AMP_AMP] = ACTIONS(440), - [anon_sym_PIPE_PIPE] = ACTIONS(440), - [anon_sym_PIPE] = ACTIONS(442), - [anon_sym_CARET] = ACTIONS(442), - [anon_sym_EQ_EQ] = ACTIONS(440), - [anon_sym_BANG_EQ] = ACTIONS(440), - [anon_sym_LT_EQ] = ACTIONS(440), - [anon_sym_GT_EQ] = ACTIONS(440), - [anon_sym_LT_LT] = ACTIONS(442), - [anon_sym_GT_GT] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_PERCENT] = ACTIONS(442), - [anon_sym_PLUS_EQ] = ACTIONS(440), - [anon_sym_DASH_EQ] = ACTIONS(440), - [anon_sym_STAR_EQ] = ACTIONS(440), - [anon_sym_SLASH_EQ] = ACTIONS(440), - [anon_sym_PERCENT_EQ] = ACTIONS(440), - [anon_sym_AMP_EQ] = ACTIONS(440), - [anon_sym_PIPE_EQ] = ACTIONS(440), - [anon_sym_CARET_EQ] = ACTIONS(440), - [anon_sym_LT_LT_EQ] = ACTIONS(440), - [anon_sym_GT_GT_EQ] = ACTIONS(440), - [anon_sym_yield] = ACTIONS(442), - [anon_sym_move] = ACTIONS(442), - [anon_sym_DOT] = ACTIONS(442), - [sym_integer_literal] = ACTIONS(440), - [aux_sym_string_literal_token1] = ACTIONS(440), - [sym_char_literal] = ACTIONS(440), - [anon_sym_true] = ACTIONS(442), - [anon_sym_false] = ACTIONS(442), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(442), - [sym_super] = ACTIONS(442), - [sym_crate] = ACTIONS(442), - [sym_metavariable] = ACTIONS(440), - [sym_raw_string_literal] = ACTIONS(440), - [sym_float_literal] = ACTIONS(440), - [sym_block_comment] = ACTIONS(3), - }, - [67] = { - [ts_builtin_sym_end] = ACTIONS(444), - [sym_identifier] = ACTIONS(446), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_macro_rules_BANG] = ACTIONS(444), - [anon_sym_LPAREN] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(444), - [anon_sym_RBRACE] = ACTIONS(444), - [anon_sym_LBRACK] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(446), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(444), - [anon_sym_u8] = ACTIONS(446), - [anon_sym_i8] = ACTIONS(446), - [anon_sym_u16] = ACTIONS(446), - [anon_sym_i16] = ACTIONS(446), - [anon_sym_u32] = ACTIONS(446), - [anon_sym_i32] = ACTIONS(446), - [anon_sym_u64] = ACTIONS(446), - [anon_sym_i64] = ACTIONS(446), - [anon_sym_u128] = ACTIONS(446), - [anon_sym_i128] = ACTIONS(446), - [anon_sym_isize] = ACTIONS(446), - [anon_sym_usize] = ACTIONS(446), - [anon_sym_f32] = ACTIONS(446), - [anon_sym_f64] = ACTIONS(446), - [anon_sym_bool] = ACTIONS(446), - [anon_sym_str] = ACTIONS(446), - [anon_sym_char] = ACTIONS(446), - [anon_sym_SQUOTE] = ACTIONS(446), - [anon_sym_as] = ACTIONS(446), - [anon_sym_async] = ACTIONS(446), - [anon_sym_break] = ACTIONS(446), - [anon_sym_const] = ACTIONS(446), - [anon_sym_continue] = ACTIONS(446), - [anon_sym_default] = ACTIONS(446), - [anon_sym_enum] = ACTIONS(446), - [anon_sym_fn] = ACTIONS(446), - [anon_sym_for] = ACTIONS(446), - [anon_sym_if] = ACTIONS(446), - [anon_sym_impl] = ACTIONS(446), - [anon_sym_let] = ACTIONS(446), - [anon_sym_loop] = ACTIONS(446), - [anon_sym_match] = ACTIONS(446), - [anon_sym_mod] = ACTIONS(446), - [anon_sym_pub] = ACTIONS(446), - [anon_sym_return] = ACTIONS(446), - [anon_sym_static] = ACTIONS(446), - [anon_sym_struct] = ACTIONS(446), - [anon_sym_trait] = ACTIONS(446), - [anon_sym_type] = ACTIONS(446), - [anon_sym_union] = ACTIONS(446), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_use] = ACTIONS(446), - [anon_sym_while] = ACTIONS(446), - [anon_sym_POUND] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_EQ] = ACTIONS(446), - [anon_sym_extern] = ACTIONS(446), - [anon_sym_LT] = ACTIONS(446), - [anon_sym_GT] = ACTIONS(446), - [anon_sym_COLON_COLON] = ACTIONS(444), - [anon_sym_AMP] = ACTIONS(446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(444), - [anon_sym_DOT_DOT] = ACTIONS(446), - [anon_sym_DOT_DOT_EQ] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(446), - [anon_sym_AMP_AMP] = ACTIONS(444), - [anon_sym_PIPE_PIPE] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(446), - [anon_sym_CARET] = ACTIONS(446), - [anon_sym_EQ_EQ] = ACTIONS(444), - [anon_sym_BANG_EQ] = ACTIONS(444), - [anon_sym_LT_EQ] = ACTIONS(444), - [anon_sym_GT_EQ] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(446), - [anon_sym_GT_GT] = ACTIONS(446), - [anon_sym_SLASH] = ACTIONS(446), - [anon_sym_PERCENT] = ACTIONS(446), - [anon_sym_PLUS_EQ] = ACTIONS(444), - [anon_sym_DASH_EQ] = ACTIONS(444), - [anon_sym_STAR_EQ] = ACTIONS(444), - [anon_sym_SLASH_EQ] = ACTIONS(444), - [anon_sym_PERCENT_EQ] = ACTIONS(444), - [anon_sym_AMP_EQ] = ACTIONS(444), - [anon_sym_PIPE_EQ] = ACTIONS(444), - [anon_sym_CARET_EQ] = ACTIONS(444), - [anon_sym_LT_LT_EQ] = ACTIONS(444), - [anon_sym_GT_GT_EQ] = ACTIONS(444), - [anon_sym_yield] = ACTIONS(446), - [anon_sym_move] = ACTIONS(446), - [anon_sym_DOT] = ACTIONS(446), - [sym_integer_literal] = ACTIONS(444), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(444), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(446), - [sym_super] = ACTIONS(446), - [sym_crate] = ACTIONS(446), - [sym_metavariable] = ACTIONS(444), - [sym_raw_string_literal] = ACTIONS(444), - [sym_float_literal] = ACTIONS(444), - [sym_block_comment] = ACTIONS(3), - }, - [68] = { - [ts_builtin_sym_end] = ACTIONS(448), - [sym_identifier] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(448), - [anon_sym_macro_rules_BANG] = ACTIONS(448), - [anon_sym_LPAREN] = ACTIONS(448), - [anon_sym_LBRACE] = ACTIONS(448), - [anon_sym_RBRACE] = ACTIONS(448), - [anon_sym_LBRACK] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_STAR] = ACTIONS(450), - [anon_sym_QMARK] = ACTIONS(448), - [anon_sym_u8] = ACTIONS(450), - [anon_sym_i8] = ACTIONS(450), - [anon_sym_u16] = ACTIONS(450), - [anon_sym_i16] = ACTIONS(450), - [anon_sym_u32] = ACTIONS(450), - [anon_sym_i32] = ACTIONS(450), - [anon_sym_u64] = ACTIONS(450), - [anon_sym_i64] = ACTIONS(450), - [anon_sym_u128] = ACTIONS(450), - [anon_sym_i128] = ACTIONS(450), - [anon_sym_isize] = ACTIONS(450), - [anon_sym_usize] = ACTIONS(450), - [anon_sym_f32] = ACTIONS(450), - [anon_sym_f64] = ACTIONS(450), - [anon_sym_bool] = ACTIONS(450), - [anon_sym_str] = ACTIONS(450), - [anon_sym_char] = ACTIONS(450), - [anon_sym_SQUOTE] = ACTIONS(450), - [anon_sym_as] = ACTIONS(450), - [anon_sym_async] = ACTIONS(450), - [anon_sym_break] = ACTIONS(450), - [anon_sym_const] = ACTIONS(450), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_default] = ACTIONS(450), - [anon_sym_enum] = ACTIONS(450), - [anon_sym_fn] = ACTIONS(450), - [anon_sym_for] = ACTIONS(450), - [anon_sym_if] = ACTIONS(450), - [anon_sym_impl] = ACTIONS(450), - [anon_sym_let] = ACTIONS(450), - [anon_sym_loop] = ACTIONS(450), - [anon_sym_match] = ACTIONS(450), - [anon_sym_mod] = ACTIONS(450), - [anon_sym_pub] = ACTIONS(450), - [anon_sym_return] = ACTIONS(450), - [anon_sym_static] = ACTIONS(450), - [anon_sym_struct] = ACTIONS(450), - [anon_sym_trait] = ACTIONS(450), - [anon_sym_type] = ACTIONS(450), - [anon_sym_union] = ACTIONS(450), - [anon_sym_unsafe] = ACTIONS(450), - [anon_sym_use] = ACTIONS(450), - [anon_sym_while] = ACTIONS(450), - [anon_sym_POUND] = ACTIONS(448), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_EQ] = ACTIONS(450), - [anon_sym_extern] = ACTIONS(450), - [anon_sym_LT] = ACTIONS(450), - [anon_sym_GT] = ACTIONS(450), - [anon_sym_COLON_COLON] = ACTIONS(448), - [anon_sym_AMP] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(448), - [anon_sym_DOT_DOT] = ACTIONS(450), - [anon_sym_DOT_DOT_EQ] = ACTIONS(448), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_AMP_AMP] = ACTIONS(448), - [anon_sym_PIPE_PIPE] = ACTIONS(448), - [anon_sym_PIPE] = ACTIONS(450), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_EQ_EQ] = ACTIONS(448), - [anon_sym_BANG_EQ] = ACTIONS(448), - [anon_sym_LT_EQ] = ACTIONS(448), - [anon_sym_GT_EQ] = ACTIONS(448), - [anon_sym_LT_LT] = ACTIONS(450), - [anon_sym_GT_GT] = ACTIONS(450), - [anon_sym_SLASH] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(450), - [anon_sym_PLUS_EQ] = ACTIONS(448), - [anon_sym_DASH_EQ] = ACTIONS(448), - [anon_sym_STAR_EQ] = ACTIONS(448), - [anon_sym_SLASH_EQ] = ACTIONS(448), - [anon_sym_PERCENT_EQ] = ACTIONS(448), - [anon_sym_AMP_EQ] = ACTIONS(448), - [anon_sym_PIPE_EQ] = ACTIONS(448), - [anon_sym_CARET_EQ] = ACTIONS(448), - [anon_sym_LT_LT_EQ] = ACTIONS(448), - [anon_sym_GT_GT_EQ] = ACTIONS(448), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(450), - [anon_sym_DOT] = ACTIONS(450), - [sym_integer_literal] = ACTIONS(448), - [aux_sym_string_literal_token1] = ACTIONS(448), - [sym_char_literal] = ACTIONS(448), - [anon_sym_true] = ACTIONS(450), - [anon_sym_false] = ACTIONS(450), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(450), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(448), - [sym_raw_string_literal] = ACTIONS(448), - [sym_float_literal] = ACTIONS(448), - [sym_block_comment] = ACTIONS(3), + [88] = { + [ts_builtin_sym_end] = ACTIONS(614), + [sym_identifier] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(614), + [anon_sym_macro_rules_BANG] = ACTIONS(614), + [anon_sym_LPAREN] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_RBRACE] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_STAR] = ACTIONS(616), + [anon_sym_QMARK] = ACTIONS(614), + [anon_sym_u8] = ACTIONS(616), + [anon_sym_i8] = ACTIONS(616), + [anon_sym_u16] = ACTIONS(616), + [anon_sym_i16] = ACTIONS(616), + [anon_sym_u32] = ACTIONS(616), + [anon_sym_i32] = ACTIONS(616), + [anon_sym_u64] = ACTIONS(616), + [anon_sym_i64] = ACTIONS(616), + [anon_sym_u128] = ACTIONS(616), + [anon_sym_i128] = ACTIONS(616), + [anon_sym_isize] = ACTIONS(616), + [anon_sym_usize] = ACTIONS(616), + [anon_sym_f32] = ACTIONS(616), + [anon_sym_f64] = ACTIONS(616), + [anon_sym_bool] = ACTIONS(616), + [anon_sym_str] = ACTIONS(616), + [anon_sym_char] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(616), + [anon_sym_as] = ACTIONS(616), + [anon_sym_async] = ACTIONS(616), + [anon_sym_break] = ACTIONS(616), + [anon_sym_const] = ACTIONS(616), + [anon_sym_continue] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_enum] = ACTIONS(616), + [anon_sym_fn] = ACTIONS(616), + [anon_sym_for] = ACTIONS(616), + [anon_sym_if] = ACTIONS(616), + [anon_sym_impl] = ACTIONS(616), + [anon_sym_let] = ACTIONS(616), + [anon_sym_loop] = ACTIONS(616), + [anon_sym_match] = ACTIONS(616), + [anon_sym_mod] = ACTIONS(616), + [anon_sym_pub] = ACTIONS(616), + [anon_sym_return] = ACTIONS(616), + [anon_sym_static] = ACTIONS(616), + [anon_sym_struct] = ACTIONS(616), + [anon_sym_trait] = ACTIONS(616), + [anon_sym_type] = ACTIONS(616), + [anon_sym_union] = ACTIONS(616), + [anon_sym_unsafe] = ACTIONS(616), + [anon_sym_use] = ACTIONS(616), + [anon_sym_while] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(614), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(616), + [anon_sym_extern] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(614), + [anon_sym_AMP] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(614), + [anon_sym_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_AMP_AMP] = ACTIONS(614), + [anon_sym_PIPE_PIPE] = ACTIONS(614), + [anon_sym_PIPE] = ACTIONS(616), + [anon_sym_CARET] = ACTIONS(616), + [anon_sym_EQ_EQ] = ACTIONS(614), + [anon_sym_BANG_EQ] = ACTIONS(614), + [anon_sym_LT_EQ] = ACTIONS(614), + [anon_sym_GT_EQ] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(616), + [anon_sym_GT_GT] = ACTIONS(616), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PERCENT] = ACTIONS(616), + [anon_sym_PLUS_EQ] = ACTIONS(614), + [anon_sym_DASH_EQ] = ACTIONS(614), + [anon_sym_STAR_EQ] = ACTIONS(614), + [anon_sym_SLASH_EQ] = ACTIONS(614), + [anon_sym_PERCENT_EQ] = ACTIONS(614), + [anon_sym_AMP_EQ] = ACTIONS(614), + [anon_sym_PIPE_EQ] = ACTIONS(614), + [anon_sym_CARET_EQ] = ACTIONS(614), + [anon_sym_LT_LT_EQ] = ACTIONS(614), + [anon_sym_GT_GT_EQ] = ACTIONS(614), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_move] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(616), + [sym_integer_literal] = ACTIONS(614), + [aux_sym_string_literal_token1] = ACTIONS(614), + [sym_char_literal] = ACTIONS(614), + [anon_sym_true] = ACTIONS(616), + [anon_sym_false] = ACTIONS(616), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(616), + [sym_super] = ACTIONS(616), + [sym_crate] = ACTIONS(616), + [sym_metavariable] = ACTIONS(614), + [sym_raw_string_literal] = ACTIONS(614), + [sym_float_literal] = ACTIONS(614), + [sym_block_comment] = ACTIONS(3), }, - [69] = { - [ts_builtin_sym_end] = ACTIONS(452), - [sym_identifier] = ACTIONS(454), - [anon_sym_SEMI] = ACTIONS(452), - [anon_sym_macro_rules_BANG] = ACTIONS(452), - [anon_sym_LPAREN] = ACTIONS(452), - [anon_sym_LBRACE] = ACTIONS(452), - [anon_sym_RBRACE] = ACTIONS(452), - [anon_sym_LBRACK] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_QMARK] = ACTIONS(452), - [anon_sym_u8] = ACTIONS(454), - [anon_sym_i8] = ACTIONS(454), - [anon_sym_u16] = ACTIONS(454), - [anon_sym_i16] = ACTIONS(454), - [anon_sym_u32] = ACTIONS(454), - [anon_sym_i32] = ACTIONS(454), - [anon_sym_u64] = ACTIONS(454), - [anon_sym_i64] = ACTIONS(454), - [anon_sym_u128] = ACTIONS(454), - [anon_sym_i128] = ACTIONS(454), - [anon_sym_isize] = ACTIONS(454), - [anon_sym_usize] = ACTIONS(454), - [anon_sym_f32] = ACTIONS(454), - [anon_sym_f64] = ACTIONS(454), - [anon_sym_bool] = ACTIONS(454), - [anon_sym_str] = ACTIONS(454), - [anon_sym_char] = ACTIONS(454), - [anon_sym_SQUOTE] = ACTIONS(454), - [anon_sym_as] = ACTIONS(454), - [anon_sym_async] = ACTIONS(454), - [anon_sym_break] = ACTIONS(454), - [anon_sym_const] = ACTIONS(454), - [anon_sym_continue] = ACTIONS(454), - [anon_sym_default] = ACTIONS(454), - [anon_sym_enum] = ACTIONS(454), - [anon_sym_fn] = ACTIONS(454), - [anon_sym_for] = ACTIONS(454), - [anon_sym_if] = ACTIONS(454), - [anon_sym_impl] = ACTIONS(454), - [anon_sym_let] = ACTIONS(454), - [anon_sym_loop] = ACTIONS(454), - [anon_sym_match] = ACTIONS(454), - [anon_sym_mod] = ACTIONS(454), - [anon_sym_pub] = ACTIONS(454), - [anon_sym_return] = ACTIONS(454), - [anon_sym_static] = ACTIONS(454), - [anon_sym_struct] = ACTIONS(454), - [anon_sym_trait] = ACTIONS(454), - [anon_sym_type] = ACTIONS(454), - [anon_sym_union] = ACTIONS(454), - [anon_sym_unsafe] = ACTIONS(454), - [anon_sym_use] = ACTIONS(454), - [anon_sym_while] = ACTIONS(454), - [anon_sym_POUND] = ACTIONS(452), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_EQ] = ACTIONS(454), - [anon_sym_extern] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(454), - [anon_sym_GT] = ACTIONS(454), - [anon_sym_COLON_COLON] = ACTIONS(452), - [anon_sym_AMP] = ACTIONS(454), - [anon_sym_DOT_DOT_DOT] = ACTIONS(452), - [anon_sym_DOT_DOT] = ACTIONS(454), - [anon_sym_DOT_DOT_EQ] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(454), - [anon_sym_AMP_AMP] = ACTIONS(452), - [anon_sym_PIPE_PIPE] = ACTIONS(452), - [anon_sym_PIPE] = ACTIONS(454), - [anon_sym_CARET] = ACTIONS(454), - [anon_sym_EQ_EQ] = ACTIONS(452), - [anon_sym_BANG_EQ] = ACTIONS(452), - [anon_sym_LT_EQ] = ACTIONS(452), - [anon_sym_GT_EQ] = ACTIONS(452), - [anon_sym_LT_LT] = ACTIONS(454), - [anon_sym_GT_GT] = ACTIONS(454), - [anon_sym_SLASH] = ACTIONS(454), - [anon_sym_PERCENT] = ACTIONS(454), - [anon_sym_PLUS_EQ] = ACTIONS(452), - [anon_sym_DASH_EQ] = ACTIONS(452), - [anon_sym_STAR_EQ] = ACTIONS(452), - [anon_sym_SLASH_EQ] = ACTIONS(452), - [anon_sym_PERCENT_EQ] = ACTIONS(452), - [anon_sym_AMP_EQ] = ACTIONS(452), - [anon_sym_PIPE_EQ] = ACTIONS(452), - [anon_sym_CARET_EQ] = ACTIONS(452), - [anon_sym_LT_LT_EQ] = ACTIONS(452), - [anon_sym_GT_GT_EQ] = ACTIONS(452), - [anon_sym_yield] = ACTIONS(454), - [anon_sym_move] = ACTIONS(454), - [anon_sym_DOT] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(452), - [aux_sym_string_literal_token1] = ACTIONS(452), - [sym_char_literal] = ACTIONS(452), - [anon_sym_true] = ACTIONS(454), - [anon_sym_false] = ACTIONS(454), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(454), - [sym_super] = ACTIONS(454), - [sym_crate] = ACTIONS(454), - [sym_metavariable] = ACTIONS(452), - [sym_raw_string_literal] = ACTIONS(452), - [sym_float_literal] = ACTIONS(452), + [89] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [70] = { - [ts_builtin_sym_end] = ACTIONS(456), - [sym_identifier] = ACTIONS(458), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_macro_rules_BANG] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(456), - [anon_sym_RBRACE] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_STAR] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(456), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_SQUOTE] = ACTIONS(458), - [anon_sym_as] = ACTIONS(458), - [anon_sym_async] = ACTIONS(458), - [anon_sym_break] = ACTIONS(458), - [anon_sym_const] = ACTIONS(458), - [anon_sym_continue] = ACTIONS(458), - [anon_sym_default] = ACTIONS(458), - [anon_sym_enum] = ACTIONS(458), - [anon_sym_fn] = ACTIONS(458), - [anon_sym_for] = ACTIONS(458), - [anon_sym_if] = ACTIONS(458), - [anon_sym_impl] = ACTIONS(458), - [anon_sym_let] = ACTIONS(458), - [anon_sym_loop] = ACTIONS(458), - [anon_sym_match] = ACTIONS(458), - [anon_sym_mod] = ACTIONS(458), - [anon_sym_pub] = ACTIONS(458), - [anon_sym_return] = ACTIONS(458), - [anon_sym_static] = ACTIONS(458), - [anon_sym_struct] = ACTIONS(458), - [anon_sym_trait] = ACTIONS(458), - [anon_sym_type] = ACTIONS(458), - [anon_sym_union] = ACTIONS(458), - [anon_sym_unsafe] = ACTIONS(458), - [anon_sym_use] = ACTIONS(458), - [anon_sym_while] = ACTIONS(458), - [anon_sym_POUND] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_EQ] = ACTIONS(458), - [anon_sym_extern] = ACTIONS(458), - [anon_sym_LT] = ACTIONS(458), - [anon_sym_GT] = ACTIONS(458), - [anon_sym_COLON_COLON] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [anon_sym_DOT_DOT] = ACTIONS(458), - [anon_sym_DOT_DOT_EQ] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(458), - [anon_sym_AMP_AMP] = ACTIONS(456), - [anon_sym_PIPE_PIPE] = ACTIONS(456), - [anon_sym_PIPE] = ACTIONS(458), - [anon_sym_CARET] = ACTIONS(458), - [anon_sym_EQ_EQ] = ACTIONS(456), - [anon_sym_BANG_EQ] = ACTIONS(456), - [anon_sym_LT_EQ] = ACTIONS(456), - [anon_sym_GT_EQ] = ACTIONS(456), - [anon_sym_LT_LT] = ACTIONS(458), - [anon_sym_GT_GT] = ACTIONS(458), - [anon_sym_SLASH] = ACTIONS(458), - [anon_sym_PERCENT] = ACTIONS(458), - [anon_sym_PLUS_EQ] = ACTIONS(456), - [anon_sym_DASH_EQ] = ACTIONS(456), - [anon_sym_STAR_EQ] = ACTIONS(456), - [anon_sym_SLASH_EQ] = ACTIONS(456), - [anon_sym_PERCENT_EQ] = ACTIONS(456), - [anon_sym_AMP_EQ] = ACTIONS(456), - [anon_sym_PIPE_EQ] = ACTIONS(456), - [anon_sym_CARET_EQ] = ACTIONS(456), - [anon_sym_LT_LT_EQ] = ACTIONS(456), - [anon_sym_GT_GT_EQ] = ACTIONS(456), - [anon_sym_yield] = ACTIONS(458), - [anon_sym_move] = ACTIONS(458), - [anon_sym_DOT] = ACTIONS(458), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(456), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(458), - [anon_sym_false] = ACTIONS(458), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(458), - [sym_super] = ACTIONS(458), - [sym_crate] = ACTIONS(458), - [sym_metavariable] = ACTIONS(456), - [sym_raw_string_literal] = ACTIONS(456), - [sym_float_literal] = ACTIONS(456), + [90] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1156), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(620), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(420), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [71] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1250), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_let_condition] = STATE(1868), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), + [91] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1130), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [sym_mutable_specifier] = ACTIONS(622), + [anon_sym_DOT_DOT] = ACTIONS(420), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [92] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(624), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [93] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [94] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1145), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(628), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(420), + [anon_sym_DASH] = ACTIONS(308), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [95] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1208), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -26076,19 +28611,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(388), + [sym_mutable_specifier] = ACTIONS(630), + [anon_sym_DOT_DOT] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -26106,57 +28641,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [72] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1273), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_let_condition] = STATE(1868), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [96] = { + [sym_identifier] = ACTIONS(456), + [anon_sym_SEMI] = ACTIONS(458), + [anon_sym_macro_rules_BANG] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(454), + [anon_sym_RBRACE] = ACTIONS(454), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(460), + [anon_sym_QMARK] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(456), + [anon_sym_i8] = ACTIONS(456), + [anon_sym_u16] = ACTIONS(456), + [anon_sym_i16] = ACTIONS(456), + [anon_sym_u32] = ACTIONS(456), + [anon_sym_i32] = ACTIONS(456), + [anon_sym_u64] = ACTIONS(456), + [anon_sym_i64] = ACTIONS(456), + [anon_sym_u128] = ACTIONS(456), + [anon_sym_i128] = ACTIONS(456), + [anon_sym_isize] = ACTIONS(456), + [anon_sym_usize] = ACTIONS(456), + [anon_sym_f32] = ACTIONS(456), + [anon_sym_f64] = ACTIONS(456), + [anon_sym_bool] = ACTIONS(456), + [anon_sym_str] = ACTIONS(456), + [anon_sym_char] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(456), + [anon_sym_as] = ACTIONS(460), + [anon_sym_async] = ACTIONS(456), + [anon_sym_break] = ACTIONS(456), + [anon_sym_const] = ACTIONS(456), + [anon_sym_continue] = ACTIONS(456), + [anon_sym_default] = ACTIONS(456), + [anon_sym_enum] = ACTIONS(456), + [anon_sym_fn] = ACTIONS(456), + [anon_sym_for] = ACTIONS(456), + [anon_sym_if] = ACTIONS(456), + [anon_sym_impl] = ACTIONS(456), + [anon_sym_let] = ACTIONS(456), + [anon_sym_loop] = ACTIONS(456), + [anon_sym_match] = ACTIONS(456), + [anon_sym_mod] = ACTIONS(456), + [anon_sym_pub] = ACTIONS(456), + [anon_sym_return] = ACTIONS(456), + [anon_sym_static] = ACTIONS(456), + [anon_sym_struct] = ACTIONS(456), + [anon_sym_trait] = ACTIONS(456), + [anon_sym_type] = ACTIONS(456), + [anon_sym_union] = ACTIONS(456), + [anon_sym_unsafe] = ACTIONS(456), + [anon_sym_use] = ACTIONS(456), + [anon_sym_while] = ACTIONS(456), + [anon_sym_POUND] = ACTIONS(454), + [anon_sym_BANG] = ACTIONS(456), + [anon_sym_EQ] = ACTIONS(460), + [anon_sym_extern] = ACTIONS(456), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_COLON_COLON] = ACTIONS(454), + [anon_sym_AMP] = ACTIONS(460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(458), + [anon_sym_DOT_DOT] = ACTIONS(460), + [anon_sym_DOT_DOT_EQ] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(460), + [anon_sym_AMP_AMP] = ACTIONS(458), + [anon_sym_PIPE_PIPE] = ACTIONS(458), + [anon_sym_PIPE] = ACTIONS(460), + [anon_sym_CARET] = ACTIONS(460), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT_EQ] = ACTIONS(458), + [anon_sym_GT_EQ] = ACTIONS(458), + [anon_sym_LT_LT] = ACTIONS(460), + [anon_sym_GT_GT] = ACTIONS(460), + [anon_sym_SLASH] = ACTIONS(460), + [anon_sym_PERCENT] = ACTIONS(460), + [anon_sym_PLUS_EQ] = ACTIONS(458), + [anon_sym_DASH_EQ] = ACTIONS(458), + [anon_sym_STAR_EQ] = ACTIONS(458), + [anon_sym_SLASH_EQ] = ACTIONS(458), + [anon_sym_PERCENT_EQ] = ACTIONS(458), + [anon_sym_AMP_EQ] = ACTIONS(458), + [anon_sym_PIPE_EQ] = ACTIONS(458), + [anon_sym_CARET_EQ] = ACTIONS(458), + [anon_sym_LT_LT_EQ] = ACTIONS(458), + [anon_sym_GT_GT_EQ] = ACTIONS(458), + [anon_sym_yield] = ACTIONS(456), + [anon_sym_move] = ACTIONS(456), + [anon_sym_DOT] = ACTIONS(460), + [sym_integer_literal] = ACTIONS(454), + [aux_sym_string_literal_token1] = ACTIONS(454), + [sym_char_literal] = ACTIONS(454), + [anon_sym_true] = ACTIONS(456), + [anon_sym_false] = ACTIONS(456), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(456), + [sym_super] = ACTIONS(456), + [sym_crate] = ACTIONS(456), + [sym_metavariable] = ACTIONS(454), + [sym_raw_string_literal] = ACTIONS(454), + [sym_float_literal] = ACTIONS(454), + [sym_block_comment] = ACTIONS(3), + }, + [97] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1256), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -26182,19 +28821,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_DASH_GT] = ACTIONS(628), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(350), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -26212,1221 +28851,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [73] = { - [ts_builtin_sym_end] = ACTIONS(462), - [sym_identifier] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(462), - [anon_sym_macro_rules_BANG] = ACTIONS(462), - [anon_sym_LPAREN] = ACTIONS(462), - [anon_sym_LBRACE] = ACTIONS(462), - [anon_sym_RBRACE] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(462), - [anon_sym_PLUS] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(462), - [anon_sym_u8] = ACTIONS(464), - [anon_sym_i8] = ACTIONS(464), - [anon_sym_u16] = ACTIONS(464), - [anon_sym_i16] = ACTIONS(464), - [anon_sym_u32] = ACTIONS(464), - [anon_sym_i32] = ACTIONS(464), - [anon_sym_u64] = ACTIONS(464), - [anon_sym_i64] = ACTIONS(464), - [anon_sym_u128] = ACTIONS(464), - [anon_sym_i128] = ACTIONS(464), - [anon_sym_isize] = ACTIONS(464), - [anon_sym_usize] = ACTIONS(464), - [anon_sym_f32] = ACTIONS(464), - [anon_sym_f64] = ACTIONS(464), - [anon_sym_bool] = ACTIONS(464), - [anon_sym_str] = ACTIONS(464), - [anon_sym_char] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(464), - [anon_sym_as] = ACTIONS(464), - [anon_sym_async] = ACTIONS(464), - [anon_sym_break] = ACTIONS(464), - [anon_sym_const] = ACTIONS(464), - [anon_sym_continue] = ACTIONS(464), - [anon_sym_default] = ACTIONS(464), - [anon_sym_enum] = ACTIONS(464), - [anon_sym_fn] = ACTIONS(464), - [anon_sym_for] = ACTIONS(464), - [anon_sym_if] = ACTIONS(464), - [anon_sym_impl] = ACTIONS(464), - [anon_sym_let] = ACTIONS(464), - [anon_sym_loop] = ACTIONS(464), - [anon_sym_match] = ACTIONS(464), - [anon_sym_mod] = ACTIONS(464), - [anon_sym_pub] = ACTIONS(464), - [anon_sym_return] = ACTIONS(464), - [anon_sym_static] = ACTIONS(464), - [anon_sym_struct] = ACTIONS(464), - [anon_sym_trait] = ACTIONS(464), - [anon_sym_type] = ACTIONS(464), - [anon_sym_union] = ACTIONS(464), - [anon_sym_unsafe] = ACTIONS(464), - [anon_sym_use] = ACTIONS(464), - [anon_sym_while] = ACTIONS(464), - [anon_sym_POUND] = ACTIONS(462), - [anon_sym_BANG] = ACTIONS(464), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_extern] = ACTIONS(464), - [anon_sym_LT] = ACTIONS(464), - [anon_sym_GT] = ACTIONS(464), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym_AMP] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(462), - [anon_sym_DOT_DOT] = ACTIONS(464), - [anon_sym_DOT_DOT_EQ] = ACTIONS(462), - [anon_sym_DASH] = ACTIONS(464), - [anon_sym_AMP_AMP] = ACTIONS(462), - [anon_sym_PIPE_PIPE] = ACTIONS(462), - [anon_sym_PIPE] = ACTIONS(464), - [anon_sym_CARET] = ACTIONS(464), - [anon_sym_EQ_EQ] = ACTIONS(462), - [anon_sym_BANG_EQ] = ACTIONS(462), - [anon_sym_LT_EQ] = ACTIONS(462), - [anon_sym_GT_EQ] = ACTIONS(462), - [anon_sym_LT_LT] = ACTIONS(464), - [anon_sym_GT_GT] = ACTIONS(464), - [anon_sym_SLASH] = ACTIONS(464), - [anon_sym_PERCENT] = ACTIONS(464), - [anon_sym_PLUS_EQ] = ACTIONS(462), - [anon_sym_DASH_EQ] = ACTIONS(462), - [anon_sym_STAR_EQ] = ACTIONS(462), - [anon_sym_SLASH_EQ] = ACTIONS(462), - [anon_sym_PERCENT_EQ] = ACTIONS(462), - [anon_sym_AMP_EQ] = ACTIONS(462), - [anon_sym_PIPE_EQ] = ACTIONS(462), - [anon_sym_CARET_EQ] = ACTIONS(462), - [anon_sym_LT_LT_EQ] = ACTIONS(462), - [anon_sym_GT_GT_EQ] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), - [anon_sym_move] = ACTIONS(464), - [anon_sym_DOT] = ACTIONS(464), - [sym_integer_literal] = ACTIONS(462), - [aux_sym_string_literal_token1] = ACTIONS(462), - [sym_char_literal] = ACTIONS(462), - [anon_sym_true] = ACTIONS(464), - [anon_sym_false] = ACTIONS(464), + [98] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1262), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_DASH_GT] = ACTIONS(620), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(464), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(462), - [sym_raw_string_literal] = ACTIONS(462), - [sym_float_literal] = ACTIONS(462), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [74] = { - [ts_builtin_sym_end] = ACTIONS(466), - [sym_identifier] = ACTIONS(468), - [anon_sym_SEMI] = ACTIONS(470), - [anon_sym_macro_rules_BANG] = ACTIONS(466), - [anon_sym_LPAREN] = ACTIONS(470), - [anon_sym_LBRACE] = ACTIONS(466), - [anon_sym_RBRACE] = ACTIONS(470), - [anon_sym_LBRACK] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_STAR] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_u8] = ACTIONS(468), - [anon_sym_i8] = ACTIONS(468), - [anon_sym_u16] = ACTIONS(468), - [anon_sym_i16] = ACTIONS(468), - [anon_sym_u32] = ACTIONS(468), - [anon_sym_i32] = ACTIONS(468), - [anon_sym_u64] = ACTIONS(468), - [anon_sym_i64] = ACTIONS(468), - [anon_sym_u128] = ACTIONS(468), - [anon_sym_i128] = ACTIONS(468), - [anon_sym_isize] = ACTIONS(468), - [anon_sym_usize] = ACTIONS(468), - [anon_sym_f32] = ACTIONS(468), - [anon_sym_f64] = ACTIONS(468), - [anon_sym_bool] = ACTIONS(468), - [anon_sym_str] = ACTIONS(468), - [anon_sym_char] = ACTIONS(468), - [anon_sym_SQUOTE] = ACTIONS(468), - [anon_sym_as] = ACTIONS(472), - [anon_sym_async] = ACTIONS(468), - [anon_sym_break] = ACTIONS(468), - [anon_sym_const] = ACTIONS(468), - [anon_sym_continue] = ACTIONS(468), - [anon_sym_default] = ACTIONS(468), - [anon_sym_enum] = ACTIONS(468), - [anon_sym_fn] = ACTIONS(468), - [anon_sym_for] = ACTIONS(468), - [anon_sym_if] = ACTIONS(468), - [anon_sym_impl] = ACTIONS(468), - [anon_sym_let] = ACTIONS(468), - [anon_sym_loop] = ACTIONS(468), - [anon_sym_match] = ACTIONS(468), - [anon_sym_mod] = ACTIONS(468), - [anon_sym_pub] = ACTIONS(468), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(468), - [anon_sym_struct] = ACTIONS(468), - [anon_sym_trait] = ACTIONS(468), - [anon_sym_type] = ACTIONS(468), - [anon_sym_union] = ACTIONS(468), - [anon_sym_unsafe] = ACTIONS(468), - [anon_sym_use] = ACTIONS(468), - [anon_sym_while] = ACTIONS(468), - [anon_sym_POUND] = ACTIONS(466), - [anon_sym_BANG] = ACTIONS(468), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_extern] = ACTIONS(468), - [anon_sym_LT] = ACTIONS(472), - [anon_sym_GT] = ACTIONS(472), - [anon_sym_COLON_COLON] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(472), - [anon_sym_DOT_DOT_DOT] = ACTIONS(470), - [anon_sym_DOT_DOT] = ACTIONS(472), - [anon_sym_DOT_DOT_EQ] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(470), - [anon_sym_BANG_EQ] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(470), - [anon_sym_LT_LT] = ACTIONS(472), - [anon_sym_GT_GT] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_PERCENT] = ACTIONS(472), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_yield] = ACTIONS(468), - [anon_sym_move] = ACTIONS(468), - [anon_sym_DOT] = ACTIONS(472), - [sym_integer_literal] = ACTIONS(466), - [aux_sym_string_literal_token1] = ACTIONS(466), - [sym_char_literal] = ACTIONS(466), - [anon_sym_true] = ACTIONS(468), - [anon_sym_false] = ACTIONS(468), + [99] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1252), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(468), - [sym_super] = ACTIONS(468), - [sym_crate] = ACTIONS(468), - [sym_metavariable] = ACTIONS(466), - [sym_raw_string_literal] = ACTIONS(466), - [sym_float_literal] = ACTIONS(466), - [sym_block_comment] = ACTIONS(3), - }, - [75] = { - [ts_builtin_sym_end] = ACTIONS(474), - [sym_identifier] = ACTIONS(476), - [anon_sym_SEMI] = ACTIONS(474), - [anon_sym_macro_rules_BANG] = ACTIONS(474), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(474), - [anon_sym_RBRACE] = ACTIONS(474), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_STAR] = ACTIONS(476), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_u8] = ACTIONS(476), - [anon_sym_i8] = ACTIONS(476), - [anon_sym_u16] = ACTIONS(476), - [anon_sym_i16] = ACTIONS(476), - [anon_sym_u32] = ACTIONS(476), - [anon_sym_i32] = ACTIONS(476), - [anon_sym_u64] = ACTIONS(476), - [anon_sym_i64] = ACTIONS(476), - [anon_sym_u128] = ACTIONS(476), - [anon_sym_i128] = ACTIONS(476), - [anon_sym_isize] = ACTIONS(476), - [anon_sym_usize] = ACTIONS(476), - [anon_sym_f32] = ACTIONS(476), - [anon_sym_f64] = ACTIONS(476), - [anon_sym_bool] = ACTIONS(476), - [anon_sym_str] = ACTIONS(476), - [anon_sym_char] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(476), - [anon_sym_as] = ACTIONS(476), - [anon_sym_async] = ACTIONS(476), - [anon_sym_break] = ACTIONS(476), - [anon_sym_const] = ACTIONS(476), - [anon_sym_continue] = ACTIONS(476), - [anon_sym_default] = ACTIONS(476), - [anon_sym_enum] = ACTIONS(476), - [anon_sym_fn] = ACTIONS(476), - [anon_sym_for] = ACTIONS(476), - [anon_sym_if] = ACTIONS(476), - [anon_sym_impl] = ACTIONS(476), - [anon_sym_let] = ACTIONS(476), - [anon_sym_loop] = ACTIONS(476), - [anon_sym_match] = ACTIONS(476), - [anon_sym_mod] = ACTIONS(476), - [anon_sym_pub] = ACTIONS(476), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(476), - [anon_sym_struct] = ACTIONS(476), - [anon_sym_trait] = ACTIONS(476), - [anon_sym_type] = ACTIONS(476), - [anon_sym_union] = ACTIONS(476), - [anon_sym_unsafe] = ACTIONS(476), - [anon_sym_use] = ACTIONS(476), - [anon_sym_while] = ACTIONS(476), - [anon_sym_POUND] = ACTIONS(474), - [anon_sym_BANG] = ACTIONS(476), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_extern] = ACTIONS(476), - [anon_sym_LT] = ACTIONS(476), - [anon_sym_GT] = ACTIONS(476), - [anon_sym_COLON_COLON] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(476), - [anon_sym_DOT_DOT_DOT] = ACTIONS(474), - [anon_sym_DOT_DOT] = ACTIONS(476), - [anon_sym_DOT_DOT_EQ] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(476), - [anon_sym_CARET] = ACTIONS(476), - [anon_sym_EQ_EQ] = ACTIONS(474), - [anon_sym_BANG_EQ] = ACTIONS(474), - [anon_sym_LT_EQ] = ACTIONS(474), - [anon_sym_GT_EQ] = ACTIONS(474), - [anon_sym_LT_LT] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(476), - [anon_sym_SLASH] = ACTIONS(476), - [anon_sym_PERCENT] = ACTIONS(476), - [anon_sym_PLUS_EQ] = ACTIONS(474), - [anon_sym_DASH_EQ] = ACTIONS(474), - [anon_sym_STAR_EQ] = ACTIONS(474), - [anon_sym_SLASH_EQ] = ACTIONS(474), - [anon_sym_PERCENT_EQ] = ACTIONS(474), - [anon_sym_AMP_EQ] = ACTIONS(474), - [anon_sym_PIPE_EQ] = ACTIONS(474), - [anon_sym_CARET_EQ] = ACTIONS(474), - [anon_sym_LT_LT_EQ] = ACTIONS(474), - [anon_sym_GT_GT_EQ] = ACTIONS(474), - [anon_sym_yield] = ACTIONS(476), - [anon_sym_move] = ACTIONS(476), - [anon_sym_DOT] = ACTIONS(476), - [sym_integer_literal] = ACTIONS(474), - [aux_sym_string_literal_token1] = ACTIONS(474), - [sym_char_literal] = ACTIONS(474), - [anon_sym_true] = ACTIONS(476), - [anon_sym_false] = ACTIONS(476), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(476), - [sym_crate] = ACTIONS(476), - [sym_metavariable] = ACTIONS(474), - [sym_raw_string_literal] = ACTIONS(474), - [sym_float_literal] = ACTIONS(474), - [sym_block_comment] = ACTIONS(3), - }, - [76] = { - [ts_builtin_sym_end] = ACTIONS(478), - [sym_identifier] = ACTIONS(480), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_macro_rules_BANG] = ACTIONS(478), - [anon_sym_LPAREN] = ACTIONS(478), - [anon_sym_LBRACE] = ACTIONS(478), - [anon_sym_RBRACE] = ACTIONS(478), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_STAR] = ACTIONS(480), - [anon_sym_QMARK] = ACTIONS(478), - [anon_sym_u8] = ACTIONS(480), - [anon_sym_i8] = ACTIONS(480), - [anon_sym_u16] = ACTIONS(480), - [anon_sym_i16] = ACTIONS(480), - [anon_sym_u32] = ACTIONS(480), - [anon_sym_i32] = ACTIONS(480), - [anon_sym_u64] = ACTIONS(480), - [anon_sym_i64] = ACTIONS(480), - [anon_sym_u128] = ACTIONS(480), - [anon_sym_i128] = ACTIONS(480), - [anon_sym_isize] = ACTIONS(480), - [anon_sym_usize] = ACTIONS(480), - [anon_sym_f32] = ACTIONS(480), - [anon_sym_f64] = ACTIONS(480), - [anon_sym_bool] = ACTIONS(480), - [anon_sym_str] = ACTIONS(480), - [anon_sym_char] = ACTIONS(480), - [anon_sym_SQUOTE] = ACTIONS(480), - [anon_sym_as] = ACTIONS(480), - [anon_sym_async] = ACTIONS(480), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_default] = ACTIONS(480), - [anon_sym_enum] = ACTIONS(480), - [anon_sym_fn] = ACTIONS(480), - [anon_sym_for] = ACTIONS(480), - [anon_sym_if] = ACTIONS(480), - [anon_sym_impl] = ACTIONS(480), - [anon_sym_let] = ACTIONS(480), - [anon_sym_loop] = ACTIONS(480), - [anon_sym_match] = ACTIONS(480), - [anon_sym_mod] = ACTIONS(480), - [anon_sym_pub] = ACTIONS(480), - [anon_sym_return] = ACTIONS(480), - [anon_sym_static] = ACTIONS(480), - [anon_sym_struct] = ACTIONS(480), - [anon_sym_trait] = ACTIONS(480), - [anon_sym_type] = ACTIONS(480), - [anon_sym_union] = ACTIONS(480), - [anon_sym_unsafe] = ACTIONS(480), - [anon_sym_use] = ACTIONS(480), - [anon_sym_while] = ACTIONS(480), - [anon_sym_POUND] = ACTIONS(478), - [anon_sym_BANG] = ACTIONS(480), - [anon_sym_EQ] = ACTIONS(480), - [anon_sym_extern] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(480), - [anon_sym_GT] = ACTIONS(480), - [anon_sym_COLON_COLON] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(480), - [anon_sym_DOT_DOT_DOT] = ACTIONS(478), - [anon_sym_DOT_DOT] = ACTIONS(480), - [anon_sym_DOT_DOT_EQ] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_AMP_AMP] = ACTIONS(478), - [anon_sym_PIPE_PIPE] = ACTIONS(478), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_CARET] = ACTIONS(480), - [anon_sym_EQ_EQ] = ACTIONS(478), - [anon_sym_BANG_EQ] = ACTIONS(478), - [anon_sym_LT_EQ] = ACTIONS(478), - [anon_sym_GT_EQ] = ACTIONS(478), - [anon_sym_LT_LT] = ACTIONS(480), - [anon_sym_GT_GT] = ACTIONS(480), - [anon_sym_SLASH] = ACTIONS(480), - [anon_sym_PERCENT] = ACTIONS(480), - [anon_sym_PLUS_EQ] = ACTIONS(478), - [anon_sym_DASH_EQ] = ACTIONS(478), - [anon_sym_STAR_EQ] = ACTIONS(478), - [anon_sym_SLASH_EQ] = ACTIONS(478), - [anon_sym_PERCENT_EQ] = ACTIONS(478), - [anon_sym_AMP_EQ] = ACTIONS(478), - [anon_sym_PIPE_EQ] = ACTIONS(478), - [anon_sym_CARET_EQ] = ACTIONS(478), - [anon_sym_LT_LT_EQ] = ACTIONS(478), - [anon_sym_GT_GT_EQ] = ACTIONS(478), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(480), - [sym_integer_literal] = ACTIONS(478), - [aux_sym_string_literal_token1] = ACTIONS(478), - [sym_char_literal] = ACTIONS(478), - [anon_sym_true] = ACTIONS(480), - [anon_sym_false] = ACTIONS(480), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(480), - [sym_super] = ACTIONS(480), - [sym_crate] = ACTIONS(480), - [sym_metavariable] = ACTIONS(478), - [sym_raw_string_literal] = ACTIONS(478), - [sym_float_literal] = ACTIONS(478), - [sym_block_comment] = ACTIONS(3), - }, - [77] = { - [ts_builtin_sym_end] = ACTIONS(482), - [sym_identifier] = ACTIONS(484), - [anon_sym_SEMI] = ACTIONS(482), - [anon_sym_macro_rules_BANG] = ACTIONS(482), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(482), - [anon_sym_RBRACE] = ACTIONS(482), - [anon_sym_LBRACK] = ACTIONS(482), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_STAR] = ACTIONS(484), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_u8] = ACTIONS(484), - [anon_sym_i8] = ACTIONS(484), - [anon_sym_u16] = ACTIONS(484), - [anon_sym_i16] = ACTIONS(484), - [anon_sym_u32] = ACTIONS(484), - [anon_sym_i32] = ACTIONS(484), - [anon_sym_u64] = ACTIONS(484), - [anon_sym_i64] = ACTIONS(484), - [anon_sym_u128] = ACTIONS(484), - [anon_sym_i128] = ACTIONS(484), - [anon_sym_isize] = ACTIONS(484), - [anon_sym_usize] = ACTIONS(484), - [anon_sym_f32] = ACTIONS(484), - [anon_sym_f64] = ACTIONS(484), - [anon_sym_bool] = ACTIONS(484), - [anon_sym_str] = ACTIONS(484), - [anon_sym_char] = ACTIONS(484), - [anon_sym_SQUOTE] = ACTIONS(484), - [anon_sym_as] = ACTIONS(472), - [anon_sym_async] = ACTIONS(484), - [anon_sym_break] = ACTIONS(484), - [anon_sym_const] = ACTIONS(484), - [anon_sym_continue] = ACTIONS(484), - [anon_sym_default] = ACTIONS(484), - [anon_sym_enum] = ACTIONS(484), - [anon_sym_fn] = ACTIONS(484), - [anon_sym_for] = ACTIONS(484), - [anon_sym_if] = ACTIONS(484), - [anon_sym_impl] = ACTIONS(484), - [anon_sym_let] = ACTIONS(484), - [anon_sym_loop] = ACTIONS(484), - [anon_sym_match] = ACTIONS(484), - [anon_sym_mod] = ACTIONS(484), - [anon_sym_pub] = ACTIONS(484), - [anon_sym_return] = ACTIONS(484), - [anon_sym_static] = ACTIONS(484), - [anon_sym_struct] = ACTIONS(484), - [anon_sym_trait] = ACTIONS(484), - [anon_sym_type] = ACTIONS(484), - [anon_sym_union] = ACTIONS(484), - [anon_sym_unsafe] = ACTIONS(484), - [anon_sym_use] = ACTIONS(484), - [anon_sym_while] = ACTIONS(484), - [anon_sym_POUND] = ACTIONS(482), - [anon_sym_BANG] = ACTIONS(484), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_extern] = ACTIONS(484), - [anon_sym_LT] = ACTIONS(484), - [anon_sym_GT] = ACTIONS(472), - [anon_sym_COLON_COLON] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(484), - [anon_sym_DOT_DOT_DOT] = ACTIONS(470), - [anon_sym_DOT_DOT] = ACTIONS(484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(484), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(470), - [anon_sym_BANG_EQ] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(470), - [anon_sym_LT_LT] = ACTIONS(472), - [anon_sym_GT_GT] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_PERCENT] = ACTIONS(472), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_yield] = ACTIONS(484), - [anon_sym_move] = ACTIONS(484), - [anon_sym_DOT] = ACTIONS(472), - [sym_integer_literal] = ACTIONS(482), - [aux_sym_string_literal_token1] = ACTIONS(482), - [sym_char_literal] = ACTIONS(482), - [anon_sym_true] = ACTIONS(484), - [anon_sym_false] = ACTIONS(484), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(484), - [sym_super] = ACTIONS(484), - [sym_crate] = ACTIONS(484), - [sym_metavariable] = ACTIONS(482), - [sym_raw_string_literal] = ACTIONS(482), - [sym_float_literal] = ACTIONS(482), - [sym_block_comment] = ACTIONS(3), - }, - [78] = { - [ts_builtin_sym_end] = ACTIONS(486), - [sym_identifier] = ACTIONS(488), - [anon_sym_SEMI] = ACTIONS(486), - [anon_sym_macro_rules_BANG] = ACTIONS(486), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_LBRACE] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(486), - [anon_sym_PLUS] = ACTIONS(488), - [anon_sym_STAR] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(486), - [anon_sym_u8] = ACTIONS(488), - [anon_sym_i8] = ACTIONS(488), - [anon_sym_u16] = ACTIONS(488), - [anon_sym_i16] = ACTIONS(488), - [anon_sym_u32] = ACTIONS(488), - [anon_sym_i32] = ACTIONS(488), - [anon_sym_u64] = ACTIONS(488), - [anon_sym_i64] = ACTIONS(488), - [anon_sym_u128] = ACTIONS(488), - [anon_sym_i128] = ACTIONS(488), - [anon_sym_isize] = ACTIONS(488), - [anon_sym_usize] = ACTIONS(488), - [anon_sym_f32] = ACTIONS(488), - [anon_sym_f64] = ACTIONS(488), - [anon_sym_bool] = ACTIONS(488), - [anon_sym_str] = ACTIONS(488), - [anon_sym_char] = ACTIONS(488), - [anon_sym_SQUOTE] = ACTIONS(488), - [anon_sym_as] = ACTIONS(488), - [anon_sym_async] = ACTIONS(488), - [anon_sym_break] = ACTIONS(488), - [anon_sym_const] = ACTIONS(488), - [anon_sym_continue] = ACTIONS(488), - [anon_sym_default] = ACTIONS(488), - [anon_sym_enum] = ACTIONS(488), - [anon_sym_fn] = ACTIONS(488), - [anon_sym_for] = ACTIONS(488), - [anon_sym_if] = ACTIONS(488), - [anon_sym_impl] = ACTIONS(488), - [anon_sym_let] = ACTIONS(488), - [anon_sym_loop] = ACTIONS(488), - [anon_sym_match] = ACTIONS(488), - [anon_sym_mod] = ACTIONS(488), - [anon_sym_pub] = ACTIONS(488), - [anon_sym_return] = ACTIONS(488), - [anon_sym_static] = ACTIONS(488), - [anon_sym_struct] = ACTIONS(488), - [anon_sym_trait] = ACTIONS(488), - [anon_sym_type] = ACTIONS(488), - [anon_sym_union] = ACTIONS(488), - [anon_sym_unsafe] = ACTIONS(488), - [anon_sym_use] = ACTIONS(488), - [anon_sym_while] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(486), - [anon_sym_BANG] = ACTIONS(488), - [anon_sym_EQ] = ACTIONS(488), - [anon_sym_extern] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_COLON_COLON] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(486), - [anon_sym_DOT_DOT] = ACTIONS(488), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(488), - [anon_sym_CARET] = ACTIONS(488), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT] = ACTIONS(488), - [anon_sym_GT_GT] = ACTIONS(488), - [anon_sym_SLASH] = ACTIONS(488), - [anon_sym_PERCENT] = ACTIONS(488), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_PERCENT_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_CARET_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_yield] = ACTIONS(488), - [anon_sym_move] = ACTIONS(488), - [anon_sym_DOT] = ACTIONS(488), - [sym_integer_literal] = ACTIONS(486), - [aux_sym_string_literal_token1] = ACTIONS(486), - [sym_char_literal] = ACTIONS(486), - [anon_sym_true] = ACTIONS(488), - [anon_sym_false] = ACTIONS(488), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(488), - [sym_super] = ACTIONS(488), - [sym_crate] = ACTIONS(488), - [sym_metavariable] = ACTIONS(486), - [sym_raw_string_literal] = ACTIONS(486), - [sym_float_literal] = ACTIONS(486), - [sym_block_comment] = ACTIONS(3), - }, - [79] = { - [ts_builtin_sym_end] = ACTIONS(490), - [sym_identifier] = ACTIONS(492), - [anon_sym_SEMI] = ACTIONS(490), - [anon_sym_macro_rules_BANG] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(490), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(490), - [anon_sym_PLUS] = ACTIONS(492), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_u8] = ACTIONS(492), - [anon_sym_i8] = ACTIONS(492), - [anon_sym_u16] = ACTIONS(492), - [anon_sym_i16] = ACTIONS(492), - [anon_sym_u32] = ACTIONS(492), - [anon_sym_i32] = ACTIONS(492), - [anon_sym_u64] = ACTIONS(492), - [anon_sym_i64] = ACTIONS(492), - [anon_sym_u128] = ACTIONS(492), - [anon_sym_i128] = ACTIONS(492), - [anon_sym_isize] = ACTIONS(492), - [anon_sym_usize] = ACTIONS(492), - [anon_sym_f32] = ACTIONS(492), - [anon_sym_f64] = ACTIONS(492), - [anon_sym_bool] = ACTIONS(492), - [anon_sym_str] = ACTIONS(492), - [anon_sym_char] = ACTIONS(492), - [anon_sym_SQUOTE] = ACTIONS(492), - [anon_sym_as] = ACTIONS(492), - [anon_sym_async] = ACTIONS(492), - [anon_sym_break] = ACTIONS(492), - [anon_sym_const] = ACTIONS(492), - [anon_sym_continue] = ACTIONS(492), - [anon_sym_default] = ACTIONS(492), - [anon_sym_enum] = ACTIONS(492), - [anon_sym_fn] = ACTIONS(492), - [anon_sym_for] = ACTIONS(492), - [anon_sym_if] = ACTIONS(492), - [anon_sym_impl] = ACTIONS(492), - [anon_sym_let] = ACTIONS(492), - [anon_sym_loop] = ACTIONS(492), - [anon_sym_match] = ACTIONS(492), - [anon_sym_mod] = ACTIONS(492), - [anon_sym_pub] = ACTIONS(492), - [anon_sym_return] = ACTIONS(492), - [anon_sym_static] = ACTIONS(492), - [anon_sym_struct] = ACTIONS(492), - [anon_sym_trait] = ACTIONS(492), - [anon_sym_type] = ACTIONS(492), - [anon_sym_union] = ACTIONS(492), - [anon_sym_unsafe] = ACTIONS(492), - [anon_sym_use] = ACTIONS(492), - [anon_sym_while] = ACTIONS(492), - [anon_sym_POUND] = ACTIONS(490), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_EQ] = ACTIONS(492), - [anon_sym_extern] = ACTIONS(492), - [anon_sym_LT] = ACTIONS(492), - [anon_sym_GT] = ACTIONS(492), - [anon_sym_COLON_COLON] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_DOT_DOT_DOT] = ACTIONS(490), - [anon_sym_DOT_DOT] = ACTIONS(492), - [anon_sym_DOT_DOT_EQ] = ACTIONS(490), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_PIPE] = ACTIONS(492), - [anon_sym_CARET] = ACTIONS(492), - [anon_sym_EQ_EQ] = ACTIONS(490), - [anon_sym_BANG_EQ] = ACTIONS(490), - [anon_sym_LT_EQ] = ACTIONS(490), - [anon_sym_GT_EQ] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(492), - [anon_sym_GT_GT] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(492), - [anon_sym_PERCENT] = ACTIONS(492), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_STAR_EQ] = ACTIONS(490), - [anon_sym_SLASH_EQ] = ACTIONS(490), - [anon_sym_PERCENT_EQ] = ACTIONS(490), - [anon_sym_AMP_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_LT_LT_EQ] = ACTIONS(490), - [anon_sym_GT_GT_EQ] = ACTIONS(490), - [anon_sym_yield] = ACTIONS(492), - [anon_sym_move] = ACTIONS(492), - [anon_sym_DOT] = ACTIONS(492), - [sym_integer_literal] = ACTIONS(490), - [aux_sym_string_literal_token1] = ACTIONS(490), - [sym_char_literal] = ACTIONS(490), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(492), - [sym_super] = ACTIONS(492), - [sym_crate] = ACTIONS(492), - [sym_metavariable] = ACTIONS(490), - [sym_raw_string_literal] = ACTIONS(490), - [sym_float_literal] = ACTIONS(490), - [sym_block_comment] = ACTIONS(3), - }, - [80] = { - [ts_builtin_sym_end] = ACTIONS(494), - [sym_identifier] = ACTIONS(496), - [anon_sym_SEMI] = ACTIONS(494), - [anon_sym_macro_rules_BANG] = ACTIONS(494), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_LBRACE] = ACTIONS(494), - [anon_sym_RBRACE] = ACTIONS(494), - [anon_sym_LBRACK] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_STAR] = ACTIONS(496), - [anon_sym_QMARK] = ACTIONS(494), - [anon_sym_u8] = ACTIONS(496), - [anon_sym_i8] = ACTIONS(496), - [anon_sym_u16] = ACTIONS(496), - [anon_sym_i16] = ACTIONS(496), - [anon_sym_u32] = ACTIONS(496), - [anon_sym_i32] = ACTIONS(496), - [anon_sym_u64] = ACTIONS(496), - [anon_sym_i64] = ACTIONS(496), - [anon_sym_u128] = ACTIONS(496), - [anon_sym_i128] = ACTIONS(496), - [anon_sym_isize] = ACTIONS(496), - [anon_sym_usize] = ACTIONS(496), - [anon_sym_f32] = ACTIONS(496), - [anon_sym_f64] = ACTIONS(496), - [anon_sym_bool] = ACTIONS(496), - [anon_sym_str] = ACTIONS(496), - [anon_sym_char] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(496), - [anon_sym_as] = ACTIONS(496), - [anon_sym_async] = ACTIONS(496), - [anon_sym_break] = ACTIONS(496), - [anon_sym_const] = ACTIONS(496), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(496), - [anon_sym_enum] = ACTIONS(496), - [anon_sym_fn] = ACTIONS(496), - [anon_sym_for] = ACTIONS(496), - [anon_sym_if] = ACTIONS(496), - [anon_sym_impl] = ACTIONS(496), - [anon_sym_let] = ACTIONS(496), - [anon_sym_loop] = ACTIONS(496), - [anon_sym_match] = ACTIONS(496), - [anon_sym_mod] = ACTIONS(496), - [anon_sym_pub] = ACTIONS(496), - [anon_sym_return] = ACTIONS(496), - [anon_sym_static] = ACTIONS(496), - [anon_sym_struct] = ACTIONS(496), - [anon_sym_trait] = ACTIONS(496), - [anon_sym_type] = ACTIONS(496), - [anon_sym_union] = ACTIONS(496), - [anon_sym_unsafe] = ACTIONS(496), - [anon_sym_use] = ACTIONS(496), - [anon_sym_while] = ACTIONS(496), - [anon_sym_POUND] = ACTIONS(494), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_EQ] = ACTIONS(496), - [anon_sym_extern] = ACTIONS(496), - [anon_sym_LT] = ACTIONS(496), - [anon_sym_GT] = ACTIONS(496), - [anon_sym_COLON_COLON] = ACTIONS(494), - [anon_sym_AMP] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(494), - [anon_sym_DOT_DOT] = ACTIONS(496), - [anon_sym_DOT_DOT_EQ] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_AMP_AMP] = ACTIONS(494), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_PIPE] = ACTIONS(496), - [anon_sym_CARET] = ACTIONS(496), - [anon_sym_EQ_EQ] = ACTIONS(494), - [anon_sym_BANG_EQ] = ACTIONS(494), - [anon_sym_LT_EQ] = ACTIONS(494), - [anon_sym_GT_EQ] = ACTIONS(494), - [anon_sym_LT_LT] = ACTIONS(496), - [anon_sym_GT_GT] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(496), - [anon_sym_PERCENT] = ACTIONS(496), - [anon_sym_PLUS_EQ] = ACTIONS(494), - [anon_sym_DASH_EQ] = ACTIONS(494), - [anon_sym_STAR_EQ] = ACTIONS(494), - [anon_sym_SLASH_EQ] = ACTIONS(494), - [anon_sym_PERCENT_EQ] = ACTIONS(494), - [anon_sym_AMP_EQ] = ACTIONS(494), - [anon_sym_PIPE_EQ] = ACTIONS(494), - [anon_sym_CARET_EQ] = ACTIONS(494), - [anon_sym_LT_LT_EQ] = ACTIONS(494), - [anon_sym_GT_GT_EQ] = ACTIONS(494), - [anon_sym_yield] = ACTIONS(496), - [anon_sym_move] = ACTIONS(496), - [anon_sym_DOT] = ACTIONS(496), - [sym_integer_literal] = ACTIONS(494), - [aux_sym_string_literal_token1] = ACTIONS(494), - [sym_char_literal] = ACTIONS(494), - [anon_sym_true] = ACTIONS(496), - [anon_sym_false] = ACTIONS(496), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(496), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(494), - [sym_raw_string_literal] = ACTIONS(494), - [sym_float_literal] = ACTIONS(494), - [sym_block_comment] = ACTIONS(3), - }, - [81] = { - [ts_builtin_sym_end] = ACTIONS(498), - [sym_identifier] = ACTIONS(500), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_macro_rules_BANG] = ACTIONS(498), - [anon_sym_LPAREN] = ACTIONS(498), - [anon_sym_LBRACE] = ACTIONS(498), - [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_PLUS] = ACTIONS(500), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_u8] = ACTIONS(500), - [anon_sym_i8] = ACTIONS(500), - [anon_sym_u16] = ACTIONS(500), - [anon_sym_i16] = ACTIONS(500), - [anon_sym_u32] = ACTIONS(500), - [anon_sym_i32] = ACTIONS(500), - [anon_sym_u64] = ACTIONS(500), - [anon_sym_i64] = ACTIONS(500), - [anon_sym_u128] = ACTIONS(500), - [anon_sym_i128] = ACTIONS(500), - [anon_sym_isize] = ACTIONS(500), - [anon_sym_usize] = ACTIONS(500), - [anon_sym_f32] = ACTIONS(500), - [anon_sym_f64] = ACTIONS(500), - [anon_sym_bool] = ACTIONS(500), - [anon_sym_str] = ACTIONS(500), - [anon_sym_char] = ACTIONS(500), - [anon_sym_SQUOTE] = ACTIONS(500), - [anon_sym_as] = ACTIONS(500), - [anon_sym_async] = ACTIONS(500), - [anon_sym_break] = ACTIONS(500), - [anon_sym_const] = ACTIONS(500), - [anon_sym_continue] = ACTIONS(500), - [anon_sym_default] = ACTIONS(500), - [anon_sym_enum] = ACTIONS(500), - [anon_sym_fn] = ACTIONS(500), - [anon_sym_for] = ACTIONS(500), - [anon_sym_if] = ACTIONS(500), - [anon_sym_impl] = ACTIONS(500), - [anon_sym_let] = ACTIONS(500), - [anon_sym_loop] = ACTIONS(500), - [anon_sym_match] = ACTIONS(500), - [anon_sym_mod] = ACTIONS(500), - [anon_sym_pub] = ACTIONS(500), - [anon_sym_return] = ACTIONS(500), - [anon_sym_static] = ACTIONS(500), - [anon_sym_struct] = ACTIONS(500), - [anon_sym_trait] = ACTIONS(500), - [anon_sym_type] = ACTIONS(500), - [anon_sym_union] = ACTIONS(500), - [anon_sym_unsafe] = ACTIONS(500), - [anon_sym_use] = ACTIONS(500), - [anon_sym_while] = ACTIONS(500), - [anon_sym_POUND] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_EQ] = ACTIONS(500), - [anon_sym_extern] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(500), - [anon_sym_COLON_COLON] = ACTIONS(498), - [anon_sym_AMP] = ACTIONS(500), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), - [anon_sym_DOT_DOT] = ACTIONS(500), - [anon_sym_DOT_DOT_EQ] = ACTIONS(498), - [anon_sym_DASH] = ACTIONS(500), - [anon_sym_AMP_AMP] = ACTIONS(498), - [anon_sym_PIPE_PIPE] = ACTIONS(498), - [anon_sym_PIPE] = ACTIONS(500), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(498), - [anon_sym_BANG_EQ] = ACTIONS(498), - [anon_sym_LT_EQ] = ACTIONS(498), - [anon_sym_GT_EQ] = ACTIONS(498), - [anon_sym_LT_LT] = ACTIONS(500), - [anon_sym_GT_GT] = ACTIONS(500), - [anon_sym_SLASH] = ACTIONS(500), - [anon_sym_PERCENT] = ACTIONS(500), - [anon_sym_PLUS_EQ] = ACTIONS(498), - [anon_sym_DASH_EQ] = ACTIONS(498), - [anon_sym_STAR_EQ] = ACTIONS(498), - [anon_sym_SLASH_EQ] = ACTIONS(498), - [anon_sym_PERCENT_EQ] = ACTIONS(498), - [anon_sym_AMP_EQ] = ACTIONS(498), - [anon_sym_PIPE_EQ] = ACTIONS(498), - [anon_sym_CARET_EQ] = ACTIONS(498), - [anon_sym_LT_LT_EQ] = ACTIONS(498), - [anon_sym_GT_GT_EQ] = ACTIONS(498), - [anon_sym_yield] = ACTIONS(500), - [anon_sym_move] = ACTIONS(500), - [anon_sym_DOT] = ACTIONS(500), - [sym_integer_literal] = ACTIONS(498), - [aux_sym_string_literal_token1] = ACTIONS(498), - [sym_char_literal] = ACTIONS(498), - [anon_sym_true] = ACTIONS(500), - [anon_sym_false] = ACTIONS(500), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(500), - [sym_super] = ACTIONS(500), - [sym_crate] = ACTIONS(500), - [sym_metavariable] = ACTIONS(498), - [sym_raw_string_literal] = ACTIONS(498), - [sym_float_literal] = ACTIONS(498), - [sym_block_comment] = ACTIONS(3), - }, - [82] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1294), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_tuple_expression_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(502), - [anon_sym_LPAREN] = ACTIONS(505), - [anon_sym_RPAREN] = ACTIONS(508), - [anon_sym_LBRACE] = ACTIONS(510), - [anon_sym_LBRACK] = ACTIONS(513), - [anon_sym_STAR] = ACTIONS(516), - [anon_sym_u8] = ACTIONS(519), - [anon_sym_i8] = ACTIONS(519), - [anon_sym_u16] = ACTIONS(519), - [anon_sym_i16] = ACTIONS(519), - [anon_sym_u32] = ACTIONS(519), - [anon_sym_i32] = ACTIONS(519), - [anon_sym_u64] = ACTIONS(519), - [anon_sym_i64] = ACTIONS(519), - [anon_sym_u128] = ACTIONS(519), - [anon_sym_i128] = ACTIONS(519), - [anon_sym_isize] = ACTIONS(519), - [anon_sym_usize] = ACTIONS(519), - [anon_sym_f32] = ACTIONS(519), - [anon_sym_f64] = ACTIONS(519), - [anon_sym_bool] = ACTIONS(519), - [anon_sym_str] = ACTIONS(519), - [anon_sym_char] = ACTIONS(519), - [anon_sym_SQUOTE] = ACTIONS(522), - [anon_sym_async] = ACTIONS(525), - [anon_sym_break] = ACTIONS(528), - [anon_sym_const] = ACTIONS(531), - [anon_sym_continue] = ACTIONS(534), - [anon_sym_default] = ACTIONS(537), - [anon_sym_for] = ACTIONS(540), - [anon_sym_if] = ACTIONS(543), - [anon_sym_loop] = ACTIONS(546), - [anon_sym_match] = ACTIONS(549), - [anon_sym_return] = ACTIONS(552), - [anon_sym_union] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(555), - [anon_sym_while] = ACTIONS(558), - [anon_sym_BANG] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_COLON_COLON] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(567), - [anon_sym_DOT_DOT] = ACTIONS(570), - [anon_sym_DASH] = ACTIONS(516), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(576), - [anon_sym_move] = ACTIONS(579), - [sym_integer_literal] = ACTIONS(582), - [aux_sym_string_literal_token1] = ACTIONS(585), - [sym_char_literal] = ACTIONS(582), - [anon_sym_true] = ACTIONS(588), - [anon_sym_false] = ACTIONS(588), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(591), - [sym_super] = ACTIONS(594), - [sym_crate] = ACTIONS(594), - [sym_metavariable] = ACTIONS(597), - [sym_raw_string_literal] = ACTIONS(582), - [sym_float_literal] = ACTIONS(582), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [83] = { - [ts_builtin_sym_end] = ACTIONS(600), - [sym_identifier] = ACTIONS(602), - [anon_sym_SEMI] = ACTIONS(600), - [anon_sym_macro_rules_BANG] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(602), - [anon_sym_i8] = ACTIONS(602), - [anon_sym_u16] = ACTIONS(602), - [anon_sym_i16] = ACTIONS(602), - [anon_sym_u32] = ACTIONS(602), - [anon_sym_i32] = ACTIONS(602), - [anon_sym_u64] = ACTIONS(602), - [anon_sym_i64] = ACTIONS(602), - [anon_sym_u128] = ACTIONS(602), - [anon_sym_i128] = ACTIONS(602), - [anon_sym_isize] = ACTIONS(602), - [anon_sym_usize] = ACTIONS(602), - [anon_sym_f32] = ACTIONS(602), - [anon_sym_f64] = ACTIONS(602), - [anon_sym_bool] = ACTIONS(602), - [anon_sym_str] = ACTIONS(602), - [anon_sym_char] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(602), - [anon_sym_as] = ACTIONS(602), - [anon_sym_async] = ACTIONS(602), - [anon_sym_break] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_continue] = ACTIONS(602), - [anon_sym_default] = ACTIONS(602), - [anon_sym_enum] = ACTIONS(602), - [anon_sym_fn] = ACTIONS(602), - [anon_sym_for] = ACTIONS(602), - [anon_sym_if] = ACTIONS(602), - [anon_sym_impl] = ACTIONS(602), - [anon_sym_let] = ACTIONS(602), - [anon_sym_loop] = ACTIONS(602), - [anon_sym_match] = ACTIONS(602), - [anon_sym_mod] = ACTIONS(602), - [anon_sym_pub] = ACTIONS(602), - [anon_sym_return] = ACTIONS(602), - [anon_sym_static] = ACTIONS(602), - [anon_sym_struct] = ACTIONS(602), - [anon_sym_trait] = ACTIONS(602), - [anon_sym_type] = ACTIONS(602), - [anon_sym_union] = ACTIONS(602), - [anon_sym_unsafe] = ACTIONS(602), - [anon_sym_use] = ACTIONS(602), - [anon_sym_while] = ACTIONS(602), - [anon_sym_POUND] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_extern] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_COLON_COLON] = ACTIONS(600), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(600), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_EQ] = ACTIONS(600), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(600), - [anon_sym_BANG_EQ] = ACTIONS(600), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(600), - [anon_sym_DASH_EQ] = ACTIONS(600), - [anon_sym_STAR_EQ] = ACTIONS(600), - [anon_sym_SLASH_EQ] = ACTIONS(600), - [anon_sym_PERCENT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(600), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_yield] = ACTIONS(602), - [anon_sym_move] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [sym_integer_literal] = ACTIONS(600), - [aux_sym_string_literal_token1] = ACTIONS(600), - [sym_char_literal] = ACTIONS(600), - [anon_sym_true] = ACTIONS(602), - [anon_sym_false] = ACTIONS(602), + [100] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(871), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(602), - [sym_super] = ACTIONS(602), - [sym_crate] = ACTIONS(602), - [sym_metavariable] = ACTIONS(600), - [sym_raw_string_literal] = ACTIONS(600), - [sym_float_literal] = ACTIONS(600), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [84] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1230), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_tuple_expression_repeat1] = STATE(82), + [101] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1218), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(604), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -27484,161 +29268,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [85] = { - [ts_builtin_sym_end] = ACTIONS(606), - [sym_identifier] = ACTIONS(608), - [anon_sym_SEMI] = ACTIONS(606), - [anon_sym_macro_rules_BANG] = ACTIONS(606), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_LBRACE] = ACTIONS(606), - [anon_sym_RBRACE] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(608), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_QMARK] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(608), - [anon_sym_i8] = ACTIONS(608), - [anon_sym_u16] = ACTIONS(608), - [anon_sym_i16] = ACTIONS(608), - [anon_sym_u32] = ACTIONS(608), - [anon_sym_i32] = ACTIONS(608), - [anon_sym_u64] = ACTIONS(608), - [anon_sym_i64] = ACTIONS(608), - [anon_sym_u128] = ACTIONS(608), - [anon_sym_i128] = ACTIONS(608), - [anon_sym_isize] = ACTIONS(608), - [anon_sym_usize] = ACTIONS(608), - [anon_sym_f32] = ACTIONS(608), - [anon_sym_f64] = ACTIONS(608), - [anon_sym_bool] = ACTIONS(608), - [anon_sym_str] = ACTIONS(608), - [anon_sym_char] = ACTIONS(608), - [anon_sym_SQUOTE] = ACTIONS(608), - [anon_sym_as] = ACTIONS(608), - [anon_sym_async] = ACTIONS(608), - [anon_sym_break] = ACTIONS(608), - [anon_sym_const] = ACTIONS(608), - [anon_sym_continue] = ACTIONS(608), - [anon_sym_default] = ACTIONS(608), - [anon_sym_enum] = ACTIONS(608), - [anon_sym_fn] = ACTIONS(608), - [anon_sym_for] = ACTIONS(608), - [anon_sym_if] = ACTIONS(608), - [anon_sym_impl] = ACTIONS(608), - [anon_sym_let] = ACTIONS(608), - [anon_sym_loop] = ACTIONS(608), - [anon_sym_match] = ACTIONS(608), - [anon_sym_mod] = ACTIONS(608), - [anon_sym_pub] = ACTIONS(608), - [anon_sym_return] = ACTIONS(608), - [anon_sym_static] = ACTIONS(608), - [anon_sym_struct] = ACTIONS(608), - [anon_sym_trait] = ACTIONS(608), - [anon_sym_type] = ACTIONS(608), - [anon_sym_union] = ACTIONS(608), - [anon_sym_unsafe] = ACTIONS(608), - [anon_sym_use] = ACTIONS(608), - [anon_sym_while] = ACTIONS(608), - [anon_sym_POUND] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(608), - [anon_sym_EQ] = ACTIONS(608), - [anon_sym_extern] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(608), - [anon_sym_GT] = ACTIONS(608), - [anon_sym_COLON_COLON] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DOT_DOT_EQ] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(608), - [anon_sym_AMP_AMP] = ACTIONS(606), - [anon_sym_PIPE_PIPE] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_CARET] = ACTIONS(608), - [anon_sym_EQ_EQ] = ACTIONS(606), - [anon_sym_BANG_EQ] = ACTIONS(606), - [anon_sym_LT_EQ] = ACTIONS(606), - [anon_sym_GT_EQ] = ACTIONS(606), - [anon_sym_LT_LT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(608), - [anon_sym_SLASH] = ACTIONS(608), - [anon_sym_PERCENT] = ACTIONS(608), - [anon_sym_PLUS_EQ] = ACTIONS(606), - [anon_sym_DASH_EQ] = ACTIONS(606), - [anon_sym_STAR_EQ] = ACTIONS(606), - [anon_sym_SLASH_EQ] = ACTIONS(606), - [anon_sym_PERCENT_EQ] = ACTIONS(606), - [anon_sym_AMP_EQ] = ACTIONS(606), - [anon_sym_PIPE_EQ] = ACTIONS(606), - [anon_sym_CARET_EQ] = ACTIONS(606), - [anon_sym_LT_LT_EQ] = ACTIONS(606), - [anon_sym_GT_GT_EQ] = ACTIONS(606), - [anon_sym_yield] = ACTIONS(608), - [anon_sym_move] = ACTIONS(608), - [anon_sym_DOT] = ACTIONS(608), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(606), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(608), - [anon_sym_false] = ACTIONS(608), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(608), - [sym_super] = ACTIONS(608), - [sym_crate] = ACTIONS(608), - [sym_metavariable] = ACTIONS(606), - [sym_raw_string_literal] = ACTIONS(606), - [sym_float_literal] = ACTIONS(606), - [sym_block_comment] = ACTIONS(3), - }, - [86] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1255), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [aux_sym_tuple_expression_repeat1] = STATE(84), + [102] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1282), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(418), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -27696,268 +29372,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [87] = { - [ts_builtin_sym_end] = ACTIONS(610), - [sym_identifier] = ACTIONS(612), - [anon_sym_SEMI] = ACTIONS(610), - [anon_sym_macro_rules_BANG] = ACTIONS(610), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_RBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(612), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_QMARK] = ACTIONS(610), - [anon_sym_u8] = ACTIONS(612), - [anon_sym_i8] = ACTIONS(612), - [anon_sym_u16] = ACTIONS(612), - [anon_sym_i16] = ACTIONS(612), - [anon_sym_u32] = ACTIONS(612), - [anon_sym_i32] = ACTIONS(612), - [anon_sym_u64] = ACTIONS(612), - [anon_sym_i64] = ACTIONS(612), - [anon_sym_u128] = ACTIONS(612), - [anon_sym_i128] = ACTIONS(612), - [anon_sym_isize] = ACTIONS(612), - [anon_sym_usize] = ACTIONS(612), - [anon_sym_f32] = ACTIONS(612), - [anon_sym_f64] = ACTIONS(612), - [anon_sym_bool] = ACTIONS(612), - [anon_sym_str] = ACTIONS(612), - [anon_sym_char] = ACTIONS(612), - [anon_sym_SQUOTE] = ACTIONS(612), - [anon_sym_as] = ACTIONS(612), - [anon_sym_async] = ACTIONS(612), - [anon_sym_break] = ACTIONS(612), - [anon_sym_const] = ACTIONS(612), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_default] = ACTIONS(612), - [anon_sym_enum] = ACTIONS(612), - [anon_sym_fn] = ACTIONS(612), - [anon_sym_for] = ACTIONS(612), - [anon_sym_if] = ACTIONS(612), - [anon_sym_impl] = ACTIONS(612), - [anon_sym_let] = ACTIONS(612), - [anon_sym_loop] = ACTIONS(612), - [anon_sym_match] = ACTIONS(612), - [anon_sym_mod] = ACTIONS(612), - [anon_sym_pub] = ACTIONS(612), - [anon_sym_return] = ACTIONS(612), - [anon_sym_static] = ACTIONS(612), - [anon_sym_struct] = ACTIONS(612), - [anon_sym_trait] = ACTIONS(612), - [anon_sym_type] = ACTIONS(612), - [anon_sym_union] = ACTIONS(612), - [anon_sym_unsafe] = ACTIONS(612), - [anon_sym_use] = ACTIONS(612), - [anon_sym_while] = ACTIONS(612), - [anon_sym_POUND] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(612), - [anon_sym_EQ] = ACTIONS(612), - [anon_sym_extern] = ACTIONS(612), - [anon_sym_LT] = ACTIONS(612), - [anon_sym_GT] = ACTIONS(612), - [anon_sym_COLON_COLON] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_DOT_DOT_EQ] = ACTIONS(610), - [anon_sym_DASH] = ACTIONS(612), - [anon_sym_AMP_AMP] = ACTIONS(610), - [anon_sym_PIPE_PIPE] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_CARET] = ACTIONS(612), - [anon_sym_EQ_EQ] = ACTIONS(610), - [anon_sym_BANG_EQ] = ACTIONS(610), - [anon_sym_LT_EQ] = ACTIONS(610), - [anon_sym_GT_EQ] = ACTIONS(610), - [anon_sym_LT_LT] = ACTIONS(612), - [anon_sym_GT_GT] = ACTIONS(612), - [anon_sym_SLASH] = ACTIONS(612), - [anon_sym_PERCENT] = ACTIONS(612), - [anon_sym_PLUS_EQ] = ACTIONS(610), - [anon_sym_DASH_EQ] = ACTIONS(610), - [anon_sym_STAR_EQ] = ACTIONS(610), - [anon_sym_SLASH_EQ] = ACTIONS(610), - [anon_sym_PERCENT_EQ] = ACTIONS(610), - [anon_sym_AMP_EQ] = ACTIONS(610), - [anon_sym_PIPE_EQ] = ACTIONS(610), - [anon_sym_CARET_EQ] = ACTIONS(610), - [anon_sym_LT_LT_EQ] = ACTIONS(610), - [anon_sym_GT_GT_EQ] = ACTIONS(610), - [anon_sym_yield] = ACTIONS(612), - [anon_sym_move] = ACTIONS(612), - [anon_sym_DOT] = ACTIONS(612), - [sym_integer_literal] = ACTIONS(610), - [aux_sym_string_literal_token1] = ACTIONS(610), - [sym_char_literal] = ACTIONS(610), - [anon_sym_true] = ACTIONS(612), - [anon_sym_false] = ACTIONS(612), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(612), - [sym_super] = ACTIONS(612), - [sym_crate] = ACTIONS(612), - [sym_metavariable] = ACTIONS(610), - [sym_raw_string_literal] = ACTIONS(610), - [sym_float_literal] = ACTIONS(610), - [sym_block_comment] = ACTIONS(3), - }, - [88] = { - [ts_builtin_sym_end] = ACTIONS(614), - [sym_identifier] = ACTIONS(616), - [anon_sym_SEMI] = ACTIONS(614), - [anon_sym_macro_rules_BANG] = ACTIONS(614), - [anon_sym_LPAREN] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_RBRACE] = ACTIONS(614), - [anon_sym_LBRACK] = ACTIONS(614), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_STAR] = ACTIONS(616), - [anon_sym_QMARK] = ACTIONS(614), - [anon_sym_u8] = ACTIONS(616), - [anon_sym_i8] = ACTIONS(616), - [anon_sym_u16] = ACTIONS(616), - [anon_sym_i16] = ACTIONS(616), - [anon_sym_u32] = ACTIONS(616), - [anon_sym_i32] = ACTIONS(616), - [anon_sym_u64] = ACTIONS(616), - [anon_sym_i64] = ACTIONS(616), - [anon_sym_u128] = ACTIONS(616), - [anon_sym_i128] = ACTIONS(616), - [anon_sym_isize] = ACTIONS(616), - [anon_sym_usize] = ACTIONS(616), - [anon_sym_f32] = ACTIONS(616), - [anon_sym_f64] = ACTIONS(616), - [anon_sym_bool] = ACTIONS(616), - [anon_sym_str] = ACTIONS(616), - [anon_sym_char] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(616), - [anon_sym_as] = ACTIONS(616), - [anon_sym_async] = ACTIONS(616), - [anon_sym_break] = ACTIONS(616), - [anon_sym_const] = ACTIONS(616), - [anon_sym_continue] = ACTIONS(616), - [anon_sym_default] = ACTIONS(616), - [anon_sym_enum] = ACTIONS(616), - [anon_sym_fn] = ACTIONS(616), - [anon_sym_for] = ACTIONS(616), - [anon_sym_if] = ACTIONS(616), - [anon_sym_impl] = ACTIONS(616), - [anon_sym_let] = ACTIONS(616), - [anon_sym_loop] = ACTIONS(616), - [anon_sym_match] = ACTIONS(616), - [anon_sym_mod] = ACTIONS(616), - [anon_sym_pub] = ACTIONS(616), - [anon_sym_return] = ACTIONS(616), - [anon_sym_static] = ACTIONS(616), - [anon_sym_struct] = ACTIONS(616), - [anon_sym_trait] = ACTIONS(616), - [anon_sym_type] = ACTIONS(616), - [anon_sym_union] = ACTIONS(616), - [anon_sym_unsafe] = ACTIONS(616), - [anon_sym_use] = ACTIONS(616), - [anon_sym_while] = ACTIONS(616), - [anon_sym_POUND] = ACTIONS(614), - [anon_sym_BANG] = ACTIONS(616), - [anon_sym_EQ] = ACTIONS(616), - [anon_sym_extern] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(616), - [anon_sym_GT] = ACTIONS(616), - [anon_sym_COLON_COLON] = ACTIONS(614), - [anon_sym_AMP] = ACTIONS(616), - [anon_sym_DOT_DOT_DOT] = ACTIONS(614), - [anon_sym_DOT_DOT] = ACTIONS(616), - [anon_sym_DOT_DOT_EQ] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_AMP_AMP] = ACTIONS(614), - [anon_sym_PIPE_PIPE] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_CARET] = ACTIONS(616), - [anon_sym_EQ_EQ] = ACTIONS(614), - [anon_sym_BANG_EQ] = ACTIONS(614), - [anon_sym_LT_EQ] = ACTIONS(614), - [anon_sym_GT_EQ] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(616), - [anon_sym_GT_GT] = ACTIONS(616), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(616), - [anon_sym_PLUS_EQ] = ACTIONS(614), - [anon_sym_DASH_EQ] = ACTIONS(614), - [anon_sym_STAR_EQ] = ACTIONS(614), - [anon_sym_SLASH_EQ] = ACTIONS(614), - [anon_sym_PERCENT_EQ] = ACTIONS(614), - [anon_sym_AMP_EQ] = ACTIONS(614), - [anon_sym_PIPE_EQ] = ACTIONS(614), - [anon_sym_CARET_EQ] = ACTIONS(614), - [anon_sym_LT_LT_EQ] = ACTIONS(614), - [anon_sym_GT_GT_EQ] = ACTIONS(614), - [anon_sym_yield] = ACTIONS(616), - [anon_sym_move] = ACTIONS(616), - [anon_sym_DOT] = ACTIONS(616), - [sym_integer_literal] = ACTIONS(614), - [aux_sym_string_literal_token1] = ACTIONS(614), - [sym_char_literal] = ACTIONS(614), - [anon_sym_true] = ACTIONS(616), - [anon_sym_false] = ACTIONS(616), + [103] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1214), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(616), - [sym_super] = ACTIONS(616), - [sym_crate] = ACTIONS(616), - [sym_metavariable] = ACTIONS(614), - [sym_raw_string_literal] = ACTIONS(614), - [sym_float_literal] = ACTIONS(614), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [89] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1266), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [104] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(618), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -28013,161 +29580,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [90] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1139), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(280), + [105] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1198), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(620), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(428), - [anon_sym_DASH] = ACTIONS(308), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [91] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1235), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [106] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1224), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -28199,13 +29765,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [sym_mutable_specifier] = ACTIONS(622), - [anon_sym_DOT_DOT] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -28223,156 +29788,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [92] = { - [sym_identifier] = ACTIONS(468), - [anon_sym_SEMI] = ACTIONS(470), - [anon_sym_macro_rules_BANG] = ACTIONS(466), - [anon_sym_LPAREN] = ACTIONS(470), - [anon_sym_LBRACE] = ACTIONS(466), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_STAR] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_u8] = ACTIONS(468), - [anon_sym_i8] = ACTIONS(468), - [anon_sym_u16] = ACTIONS(468), - [anon_sym_i16] = ACTIONS(468), - [anon_sym_u32] = ACTIONS(468), - [anon_sym_i32] = ACTIONS(468), - [anon_sym_u64] = ACTIONS(468), - [anon_sym_i64] = ACTIONS(468), - [anon_sym_u128] = ACTIONS(468), - [anon_sym_i128] = ACTIONS(468), - [anon_sym_isize] = ACTIONS(468), - [anon_sym_usize] = ACTIONS(468), - [anon_sym_f32] = ACTIONS(468), - [anon_sym_f64] = ACTIONS(468), - [anon_sym_bool] = ACTIONS(468), - [anon_sym_str] = ACTIONS(468), - [anon_sym_char] = ACTIONS(468), - [anon_sym_SQUOTE] = ACTIONS(468), - [anon_sym_as] = ACTIONS(472), - [anon_sym_async] = ACTIONS(468), - [anon_sym_break] = ACTIONS(468), - [anon_sym_const] = ACTIONS(468), - [anon_sym_continue] = ACTIONS(468), - [anon_sym_default] = ACTIONS(468), - [anon_sym_enum] = ACTIONS(468), - [anon_sym_fn] = ACTIONS(468), - [anon_sym_for] = ACTIONS(468), - [anon_sym_if] = ACTIONS(468), - [anon_sym_impl] = ACTIONS(468), - [anon_sym_let] = ACTIONS(468), - [anon_sym_loop] = ACTIONS(468), - [anon_sym_match] = ACTIONS(468), - [anon_sym_mod] = ACTIONS(468), - [anon_sym_pub] = ACTIONS(468), - [anon_sym_return] = ACTIONS(468), - [anon_sym_static] = ACTIONS(468), - [anon_sym_struct] = ACTIONS(468), - [anon_sym_trait] = ACTIONS(468), - [anon_sym_type] = ACTIONS(468), - [anon_sym_union] = ACTIONS(468), - [anon_sym_unsafe] = ACTIONS(468), - [anon_sym_use] = ACTIONS(468), - [anon_sym_while] = ACTIONS(468), - [anon_sym_POUND] = ACTIONS(466), - [anon_sym_BANG] = ACTIONS(468), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_extern] = ACTIONS(468), - [anon_sym_LT] = ACTIONS(472), - [anon_sym_GT] = ACTIONS(472), - [anon_sym_COLON_COLON] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(472), - [anon_sym_DOT_DOT_DOT] = ACTIONS(470), - [anon_sym_DOT_DOT] = ACTIONS(472), - [anon_sym_DOT_DOT_EQ] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(470), - [anon_sym_BANG_EQ] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(470), - [anon_sym_LT_LT] = ACTIONS(472), - [anon_sym_GT_GT] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_PERCENT] = ACTIONS(472), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_yield] = ACTIONS(468), - [anon_sym_move] = ACTIONS(468), - [anon_sym_DOT] = ACTIONS(472), - [sym_integer_literal] = ACTIONS(466), - [aux_sym_string_literal_token1] = ACTIONS(466), - [sym_char_literal] = ACTIONS(466), - [anon_sym_true] = ACTIONS(468), - [anon_sym_false] = ACTIONS(468), + [107] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1281), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(468), - [sym_super] = ACTIONS(468), - [sym_crate] = ACTIONS(468), - [sym_metavariable] = ACTIONS(466), - [sym_raw_string_literal] = ACTIONS(466), - [sym_float_literal] = ACTIONS(466), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [93] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1155), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [108] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28410,12 +29974,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(624), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(428), - [anon_sym_DASH] = ACTIONS(308), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -28433,56 +29996,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [94] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1263), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [109] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1232), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -28514,13 +30077,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(620), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -28538,56 +30100,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [95] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1218), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [110] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -28619,13 +30181,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_DASH_GT] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -28643,161 +30204,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [96] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1266), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(280), + [111] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1222), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(626), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [97] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1266), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [112] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1231), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(628), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -28853,51 +30412,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [98] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1132), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [113] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1274), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28938,8 +30497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [sym_mutable_specifier] = ACTIONS(630), - [anon_sym_DOT_DOT] = ACTIONS(428), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28958,51 +30516,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [99] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1277), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [114] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1293), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29062,51 +30620,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [100] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1288), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [115] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1246), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29166,51 +30724,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [101] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1252), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [116] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1211), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [117] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1294), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29270,51 +30932,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [102] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1226), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [118] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1264), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29374,51 +31036,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [103] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1289), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [119] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1209), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29478,56 +31140,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [104] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [120] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1248), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -29559,12 +31221,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -29582,51 +31244,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [105] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1260), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [121] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1233), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29686,51 +31348,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [106] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1158), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [122] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1267), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29771,7 +31433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(428), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29790,158 +31452,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [107] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1296), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), + [123] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1229), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(214), + [sym_match_expression] = STATE(214), + [sym_while_expression] = STATE(214), + [sym_loop_expression] = STATE(214), + [sym_for_expression] = STATE(214), + [sym_const_block] = STATE(214), + [sym_closure_expression] = STATE(777), [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [108] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1135), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_loop_label] = STATE(2546), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(214), + [sym_async_block] = STATE(214), + [sym_block] = STATE(214), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(632), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -29962,24 +31520,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(634), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(636), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(638), + [anon_sym_if] = ACTIONS(640), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(644), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(428), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29998,51 +31556,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [109] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1129), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [124] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30083,7 +31641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(428), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30102,56 +31660,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [110] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [125] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1237), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -30183,12 +31741,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -30206,51 +31764,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [111] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1144), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [126] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1278), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30291,7 +31849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(428), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30310,259 +31868,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [112] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(280), + [127] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1268), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [113] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1146), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(280), + [128] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1236), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(428), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [114] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1293), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [129] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1136), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30603,7 +32161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(420), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30622,51 +32180,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [115] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1147), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [130] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1285), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30707,7 +32265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(428), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30726,54 +32284,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [116] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1290), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [131] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1286), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(218), + [sym_match_expression] = STATE(218), + [sym_while_expression] = STATE(218), + [sym_loop_expression] = STATE(218), + [sym_for_expression] = STATE(218), + [sym_const_block] = STATE(218), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2546), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(218), + [sym_async_block] = STATE(218), + [sym_block] = STATE(218), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(632), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -30794,19 +32352,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(634), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(636), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(638), + [anon_sym_if] = ACTIONS(640), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(644), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -30830,54 +32388,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [117] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(233), - [sym_match_expression] = STATE(233), - [sym_while_expression] = STATE(233), - [sym_loop_expression] = STATE(233), - [sym_for_expression] = STATE(233), - [sym_const_block] = STATE(233), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2550), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(233), - [sym_async_block] = STATE(233), - [sym_block] = STATE(233), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [132] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1140), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -30898,24 +32456,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(634), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(636), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(638), - [anon_sym_if] = ACTIONS(640), - [anon_sym_loop] = ACTIONS(642), - [anon_sym_match] = ACTIONS(644), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(646), - [anon_sym_while] = ACTIONS(648), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(420), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30934,51 +32492,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [118] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1149), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [133] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1271), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31019,7 +32577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(428), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31038,51 +32596,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [119] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1286), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [134] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1292), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(214), + [sym_match_expression] = STATE(214), + [sym_while_expression] = STATE(214), + [sym_loop_expression] = STATE(214), + [sym_for_expression] = STATE(214), + [sym_const_block] = STATE(214), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2546), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(214), + [sym_async_block] = STATE(214), + [sym_block] = STATE(214), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(634), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(636), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(638), + [anon_sym_if] = ACTIONS(640), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(644), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [135] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1202), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31142,56 +32804,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [120] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1254), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [136] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1240), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -31223,12 +32885,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -31246,51 +32908,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [121] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1232), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [137] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1258), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31350,155 +33012,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [122] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1227), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), + [138] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1290), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [123] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1284), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31558,51 +33116,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [124] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1151), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [139] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1143), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31643,7 +33201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(428), + [anon_sym_DOT_DOT] = ACTIONS(420), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31662,51 +33220,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [125] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1152), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [140] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31747,7 +33305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(428), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31766,51 +33324,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [126] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1242), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [141] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1144), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31851,7 +33409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(420), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31870,56 +33428,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [127] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1202), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [142] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1217), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -31951,12 +33509,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -31974,54 +33532,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [128] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1241), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(216), - [sym_match_expression] = STATE(216), - [sym_while_expression] = STATE(216), - [sym_loop_expression] = STATE(216), - [sym_for_expression] = STATE(216), - [sym_const_block] = STATE(216), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2550), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(216), - [sym_async_block] = STATE(216), - [sym_block] = STATE(216), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [143] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1146), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -32042,24 +33600,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(634), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(636), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(638), - [anon_sym_if] = ACTIONS(640), - [anon_sym_loop] = ACTIONS(642), - [anon_sym_match] = ACTIONS(644), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(646), - [anon_sym_while] = ACTIONS(648), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(420), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -32078,56 +33636,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [129] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1248), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [144] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1201), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -32159,12 +33717,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -32182,51 +33740,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [130] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1292), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [145] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1227), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32286,51 +33844,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [131] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [146] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1147), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32371,7 +33929,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(420), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -32390,155 +33948,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [132] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1211), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), + [147] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1225), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [133] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1282), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32598,54 +34052,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [134] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1283), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(216), - [sym_match_expression] = STATE(216), - [sym_while_expression] = STATE(216), - [sym_loop_expression] = STATE(216), - [sym_for_expression] = STATE(216), - [sym_const_block] = STATE(216), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2550), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(216), - [sym_async_block] = STATE(216), - [sym_block] = STATE(216), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [148] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1142), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -32666,24 +34120,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(634), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(636), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(638), - [anon_sym_if] = ACTIONS(640), - [anon_sym_loop] = ACTIONS(642), - [anon_sym_match] = ACTIONS(644), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(646), - [anon_sym_while] = ACTIONS(648), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(420), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -32702,51 +34156,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [135] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(954), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [149] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1155), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32787,7 +34241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(420), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -32806,160 +34260,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [136] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1153), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(280), + [150] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(428), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [137] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1213), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [151] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -32991,12 +34445,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -33014,56 +34468,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [138] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1210), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [152] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1249), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -33095,12 +34549,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -33118,155 +34572,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [139] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1295), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(280), + [153] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1203), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [140] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1270), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [154] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1276), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33326,160 +34780,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [141] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1265), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [142] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1247), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [155] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1210), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -33511,12 +34861,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -33534,51 +34884,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [143] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1154), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [156] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1254), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33619,7 +34969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(428), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33638,51 +34988,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [144] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1157), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [157] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1265), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33723,7 +35073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(428), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33742,54 +35092,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [145] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1222), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(233), - [sym_match_expression] = STATE(233), - [sym_while_expression] = STATE(233), - [sym_loop_expression] = STATE(233), - [sym_for_expression] = STATE(233), - [sym_const_block] = STATE(233), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2550), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(233), - [sym_async_block] = STATE(233), - [sym_block] = STATE(233), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [158] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(871), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -33810,19 +35160,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(634), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(636), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(638), - [anon_sym_if] = ACTIONS(640), - [anon_sym_loop] = ACTIONS(642), - [anon_sym_match] = ACTIONS(644), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(646), - [anon_sym_while] = ACTIONS(648), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -33846,51 +35196,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [146] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1281), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [159] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33950,51 +35300,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [147] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1225), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [160] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1250), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34054,51 +35404,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [148] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1271), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [161] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1253), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [162] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(871), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [163] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(871), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34139,7 +35697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(420), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -34158,51 +35716,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [149] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1229), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [164] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1284), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34262,56 +35820,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [150] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1209), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [165] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1241), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -34343,12 +35901,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -34366,51 +35924,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [151] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1266), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [166] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1247), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [167] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1129), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34451,7 +36113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(420), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -34470,51 +36132,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [152] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1297), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [168] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1204), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34574,56 +36236,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [153] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1245), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [169] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1942), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1244), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(1176), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(97), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(384), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -34655,12 +36317,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_DOT_DOT] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(384), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -34678,51 +36340,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [154] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1280), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [170] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1251), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34782,155 +36444,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [155] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1239), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), + [171] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1128), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(340), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(420), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [156] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1267), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [172] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1152), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34971,7 +36633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(420), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -34990,51 +36652,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [157] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1199), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [173] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1283), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35094,259 +36756,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [158] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1215), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), + [174] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1275), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(340), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [159] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1243), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), + [175] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1157), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [160] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(954), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35387,7 +36945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(428), + [anon_sym_DOT_DOT] = ACTIONS(420), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -35406,155 +36964,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [161] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1261), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), + [176] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1199), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(340), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [162] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1204), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [177] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1158), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(777), + [sym_match_expression] = STATE(777), + [sym_while_expression] = STATE(777), + [sym_loop_expression] = STATE(777), + [sym_for_expression] = STATE(777), + [sym_const_block] = STATE(777), + [sym_closure_expression] = STATE(777), + [sym_closure_parameters] = STATE(94), + [sym_loop_label] = STATE(2517), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(777), + [sym_async_block] = STATE(777), + [sym_block] = STATE(777), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35595,7 +37153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(420), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -35614,158 +37172,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [163] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(954), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), + [178] = { + [sym_bracketed_type] = STATE(2527), + [sym_generic_function] = STATE(777), + [sym_generic_type_with_turbofish] = STATE(1961), + [sym__expression_except_range] = STATE(777), + [sym__expression] = STATE(1215), + [sym_macro_invocation] = STATE(777), + [sym_scoped_identifier] = STATE(792), + [sym_scoped_type_identifier_in_expression_position] = STATE(2247), + [sym_range_expression] = STATE(1054), + [sym_unary_expression] = STATE(777), + [sym_try_expression] = STATE(777), + [sym_reference_expression] = STATE(777), + [sym_binary_expression] = STATE(777), + [sym_assignment_expression] = STATE(777), + [sym_compound_assignment_expr] = STATE(777), + [sym_type_cast_expression] = STATE(777), + [sym_return_expression] = STATE(777), + [sym_yield_expression] = STATE(777), + [sym_call_expression] = STATE(777), + [sym_array_expression] = STATE(777), + [sym_parenthesized_expression] = STATE(777), + [sym_tuple_expression] = STATE(777), + [sym_unit_expression] = STATE(777), + [sym_struct_expression] = STATE(777), + [sym_if_expression] = STATE(218), + [sym_match_expression] = STATE(218), + [sym_while_expression] = STATE(218), + [sym_loop_expression] = STATE(218), + [sym_for_expression] = STATE(218), + [sym_const_block] = STATE(218), + [sym_closure_expression] = STATE(777), [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [164] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1275), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), + [sym_loop_label] = STATE(2546), + [sym_break_expression] = STATE(777), + [sym_continue_expression] = STATE(777), + [sym_index_expression] = STATE(777), + [sym_await_expression] = STATE(777), + [sym_field_expression] = STATE(778), + [sym_unsafe_block] = STATE(218), + [sym_async_block] = STATE(218), + [sym_block] = STATE(218), + [sym__literal] = STATE(777), + [sym_string_literal] = STATE(815), + [sym_boolean_literal] = STATE(815), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(632), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -35786,19 +37240,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(634), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(636), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(638), + [anon_sym_if] = ACTIONS(640), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(644), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -35822,1958 +37276,502 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [165] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1205), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), + [179] = { + [sym_attribute_item] = STATE(192), + [sym_function_modifiers] = STATE(2472), + [sym_self_parameter] = STATE(1901), + [sym_variadic_parameter] = STATE(1901), + [sym_parameter] = STATE(1901), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1781), + [sym_bracketed_type] = STATE(2508), + [sym_lifetime] = STATE(1902), + [sym_array_type] = STATE(1390), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2509), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1728), + [sym_scoped_identifier] = STATE(1505), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1748), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(668), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(676), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(682), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(694), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(702), + [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), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_self] = ACTIONS(710), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [166] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1258), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [180] = { + [sym_attribute_item] = STATE(192), + [sym_function_modifiers] = STATE(2472), + [sym_self_parameter] = STATE(1901), + [sym_variadic_parameter] = STATE(1901), + [sym_parameter] = STATE(1901), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1781), + [sym_bracketed_type] = STATE(2508), + [sym_lifetime] = STATE(1902), + [sym_array_type] = STATE(1390), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2509), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1728), + [sym_scoped_identifier] = STATE(1505), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1748), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(716), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(668), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(676), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(718), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(694), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(702), + [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), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_self] = ACTIONS(710), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [167] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1264), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [181] = { + [sym_attribute_item] = STATE(192), + [sym_function_modifiers] = STATE(2472), + [sym_self_parameter] = STATE(1901), + [sym_variadic_parameter] = STATE(1901), + [sym_parameter] = STATE(1901), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1781), + [sym_bracketed_type] = STATE(2508), + [sym_lifetime] = STATE(1902), + [sym_array_type] = STATE(1390), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2509), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1728), + [sym_scoped_identifier] = STATE(1505), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1748), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(720), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(668), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(676), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(722), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(694), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(702), + [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), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [sym_self] = ACTIONS(710), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [168] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1256), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [182] = { + [sym_attribute_item] = STATE(192), + [sym_function_modifiers] = STATE(2472), + [sym_self_parameter] = STATE(1901), + [sym_variadic_parameter] = STATE(1901), + [sym_parameter] = STATE(1901), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1781), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(1902), + [sym_array_type] = STATE(1390), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1565), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(2281), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(732), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(734), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(736), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(742), + [anon_sym_DOT_DOT_DOT] = ACTIONS(694), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(698), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(702), + [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), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [169] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1233), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [170] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1268), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [171] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1276), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [172] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1206), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [173] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1253), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [174] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1207), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [175] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(1921), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1145), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(780), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(90), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(428), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [176] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(954), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [177] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1237), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(388), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [178] = { - [sym_bracketed_type] = STATE(2463), - [sym_generic_function] = STATE(788), - [sym_generic_type_with_turbofish] = STATE(2105), - [sym__expression_except_range] = STATE(788), - [sym__expression] = STATE(1201), - [sym_macro_invocation] = STATE(788), - [sym_scoped_identifier] = STATE(1189), - [sym_scoped_type_identifier_in_expression_position] = STATE(2116), - [sym_range_expression] = STATE(1121), - [sym_unary_expression] = STATE(788), - [sym_try_expression] = STATE(788), - [sym_reference_expression] = STATE(788), - [sym_binary_expression] = STATE(788), - [sym_assignment_expression] = STATE(788), - [sym_compound_assignment_expr] = STATE(788), - [sym_type_cast_expression] = STATE(788), - [sym_return_expression] = STATE(788), - [sym_yield_expression] = STATE(788), - [sym_call_expression] = STATE(788), - [sym_array_expression] = STATE(788), - [sym_parenthesized_expression] = STATE(788), - [sym_tuple_expression] = STATE(788), - [sym_unit_expression] = STATE(788), - [sym_struct_expression] = STATE(788), - [sym_if_expression] = STATE(788), - [sym_match_expression] = STATE(788), - [sym_while_expression] = STATE(788), - [sym_loop_expression] = STATE(788), - [sym_for_expression] = STATE(788), - [sym_const_block] = STATE(788), - [sym_closure_expression] = STATE(788), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(788), - [sym_continue_expression] = STATE(788), - [sym_index_expression] = STATE(788), - [sym_await_expression] = STATE(788), - [sym_field_expression] = STATE(787), - [sym_unsafe_block] = STATE(788), - [sym_async_block] = STATE(788), - [sym_block] = STATE(788), - [sym__literal] = STATE(788), - [sym_string_literal] = STATE(1112), - [sym_boolean_literal] = STATE(1112), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_DOT_DOT] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [179] = { - [sym_attribute_item] = STATE(193), - [sym_function_modifiers] = STATE(2335), - [sym_self_parameter] = STATE(2083), - [sym_variadic_parameter] = STATE(2083), - [sym_parameter] = STATE(2083), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1775), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(1875), - [sym_array_type] = STATE(1389), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1725), - [sym_scoped_identifier] = STATE(1572), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2241), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(654), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_POUND] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(682), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(698), - [anon_sym_DOT_DOT] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [180] = { - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2335), - [sym_self_parameter] = STATE(1872), - [sym_variadic_parameter] = STATE(1872), - [sym_parameter] = STATE(1872), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1854), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(1875), - [sym_array_type] = STATE(1389), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1725), - [sym_scoped_identifier] = STATE(1572), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2241), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(716), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_POUND] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(718), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(720), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(698), - [anon_sym_DOT_DOT] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [181] = { - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2335), - [sym_self_parameter] = STATE(1872), - [sym_variadic_parameter] = STATE(1872), - [sym_parameter] = STATE(1872), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1854), - [sym_bracketed_type] = STATE(2512), - [sym_lifetime] = STATE(1875), - [sym_array_type] = STATE(1389), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2513), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1738), - [sym_scoped_identifier] = STATE(1489), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1740), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(722), - [anon_sym_LPAREN] = ACTIONS(724), - [anon_sym_RPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(728), - [anon_sym_i8] = ACTIONS(728), - [anon_sym_u16] = ACTIONS(728), - [anon_sym_i16] = ACTIONS(728), - [anon_sym_u32] = ACTIONS(728), - [anon_sym_i32] = ACTIONS(728), - [anon_sym_u64] = ACTIONS(728), - [anon_sym_i64] = ACTIONS(728), - [anon_sym_u128] = ACTIONS(728), - [anon_sym_i128] = ACTIONS(728), - [anon_sym_isize] = ACTIONS(728), - [anon_sym_usize] = ACTIONS(728), - [anon_sym_f32] = ACTIONS(728), - [anon_sym_f64] = ACTIONS(728), - [anon_sym_bool] = ACTIONS(728), - [anon_sym_str] = ACTIONS(728), - [anon_sym_char] = ACTIONS(728), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(730), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(732), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_POUND] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(734), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(736), - [anon_sym__] = ACTIONS(738), - [anon_sym_AMP] = ACTIONS(740), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(698), - [anon_sym_DOT_DOT] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(742), - [sym_super] = ACTIONS(744), - [sym_crate] = ACTIONS(744), - [sym_metavariable] = ACTIONS(746), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [182] = { - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2335), - [sym_self_parameter] = STATE(1872), - [sym_variadic_parameter] = STATE(1872), - [sym_parameter] = STATE(1872), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1854), - [sym_bracketed_type] = STATE(2512), - [sym_lifetime] = STATE(1875), - [sym_array_type] = STATE(1389), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2513), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1738), - [sym_scoped_identifier] = STATE(1489), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1740), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(722), - [anon_sym_LPAREN] = ACTIONS(724), - [anon_sym_RPAREN] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(728), - [anon_sym_i8] = ACTIONS(728), - [anon_sym_u16] = ACTIONS(728), - [anon_sym_i16] = ACTIONS(728), - [anon_sym_u32] = ACTIONS(728), - [anon_sym_i32] = ACTIONS(728), - [anon_sym_u64] = ACTIONS(728), - [anon_sym_i64] = ACTIONS(728), - [anon_sym_u128] = ACTIONS(728), - [anon_sym_i128] = ACTIONS(728), - [anon_sym_isize] = ACTIONS(728), - [anon_sym_usize] = ACTIONS(728), - [anon_sym_f32] = ACTIONS(728), - [anon_sym_f64] = ACTIONS(728), - [anon_sym_bool] = ACTIONS(728), - [anon_sym_str] = ACTIONS(728), - [anon_sym_char] = ACTIONS(728), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(730), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(732), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_POUND] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(750), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(736), - [anon_sym__] = ACTIONS(738), - [anon_sym_AMP] = ACTIONS(740), - [anon_sym_DOT_DOT_DOT] = ACTIONS(694), - [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(698), - [anon_sym_DOT_DOT] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(742), - [sym_super] = ACTIONS(744), - [sym_crate] = ACTIONS(744), - [sym_metavariable] = ACTIONS(746), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [183] = { - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2335), - [sym_self_parameter] = STATE(1872), - [sym_variadic_parameter] = STATE(1872), - [sym_parameter] = STATE(1872), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1854), - [sym_bracketed_type] = STATE(2512), - [sym_lifetime] = STATE(1875), - [sym_array_type] = STATE(1389), + [sym_attribute_item] = STATE(193), + [sym_function_modifiers] = STATE(2472), + [sym_self_parameter] = STATE(2080), + [sym_variadic_parameter] = STATE(2080), + [sym_parameter] = STATE(2080), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1787), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(1902), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2513), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1738), - [sym_scoped_identifier] = STATE(1489), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1740), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(722), - [anon_sym_LPAREN] = ACTIONS(724), - [anon_sym_RPAREN] = ACTIONS(752), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1565), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(2281), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_RPAREN] = ACTIONS(750), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(728), - [anon_sym_i8] = ACTIONS(728), - [anon_sym_u16] = ACTIONS(728), - [anon_sym_i16] = ACTIONS(728), - [anon_sym_u32] = ACTIONS(728), - [anon_sym_i32] = ACTIONS(728), - [anon_sym_u64] = ACTIONS(728), - [anon_sym_i64] = ACTIONS(728), - [anon_sym_u128] = ACTIONS(728), - [anon_sym_i128] = ACTIONS(728), - [anon_sym_isize] = ACTIONS(728), - [anon_sym_usize] = ACTIONS(728), - [anon_sym_f32] = ACTIONS(728), - [anon_sym_f64] = ACTIONS(728), - [anon_sym_bool] = ACTIONS(728), - [anon_sym_str] = ACTIONS(728), - [anon_sym_char] = ACTIONS(728), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(730), + [anon_sym_default] = ACTIONS(732), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(732), + [anon_sym_union] = ACTIONS(734), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(754), + [anon_sym_COMMA] = ACTIONS(752), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(736), - [anon_sym__] = ACTIONS(738), - [anon_sym_AMP] = ACTIONS(740), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(754), + [anon_sym_AMP] = ACTIONS(742), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -37785,97 +37783,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(742), - [sym_super] = ACTIONS(744), - [sym_crate] = ACTIONS(744), - [sym_metavariable] = ACTIONS(746), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [184] = { [sym_attribute_item] = STATE(191), - [sym_function_modifiers] = STATE(2335), - [sym_self_parameter] = STATE(2261), - [sym_variadic_parameter] = STATE(2261), - [sym_parameter] = STATE(2261), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1928), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(1875), - [sym_array_type] = STATE(1389), + [sym_function_modifiers] = STATE(2472), + [sym_self_parameter] = STATE(2260), + [sym_variadic_parameter] = STATE(2260), + [sym_parameter] = STATE(2260), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1947), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(1902), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1725), - [sym_scoped_identifier] = STATE(1572), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2241), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1565), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(2281), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), [anon_sym_RPAREN] = ACTIONS(756), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(732), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(734), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(738), [anon_sym__] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(742), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -37887,97 +37885,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [185] = { [sym_attribute_item] = STATE(191), - [sym_function_modifiers] = STATE(2335), - [sym_self_parameter] = STATE(2261), - [sym_variadic_parameter] = STATE(2261), - [sym_parameter] = STATE(2261), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1928), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(1875), - [sym_array_type] = STATE(1389), + [sym_function_modifiers] = STATE(2472), + [sym_self_parameter] = STATE(2260), + [sym_variadic_parameter] = STATE(2260), + [sym_parameter] = STATE(2260), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1947), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(1902), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1725), - [sym_scoped_identifier] = STATE(1572), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2241), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1565), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(2281), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), [anon_sym_RPAREN] = ACTIONS(760), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(732), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(734), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(738), [anon_sym__] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(742), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -37989,97 +37987,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [186] = { [sym_attribute_item] = STATE(191), - [sym_function_modifiers] = STATE(2335), - [sym_self_parameter] = STATE(2261), - [sym_variadic_parameter] = STATE(2261), - [sym_parameter] = STATE(2261), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1928), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(1875), - [sym_array_type] = STATE(1389), + [sym_function_modifiers] = STATE(2472), + [sym_self_parameter] = STATE(2260), + [sym_variadic_parameter] = STATE(2260), + [sym_parameter] = STATE(2260), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1947), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(1902), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1725), - [sym_scoped_identifier] = STATE(1572), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2241), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1565), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(2281), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), [anon_sym_RPAREN] = ACTIONS(762), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(732), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(734), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(738), [anon_sym__] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(742), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -38091,97 +38089,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [187] = { [sym_attribute_item] = STATE(191), - [sym_function_modifiers] = STATE(2335), - [sym_self_parameter] = STATE(2261), - [sym_variadic_parameter] = STATE(2261), - [sym_parameter] = STATE(2261), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1928), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(1875), - [sym_array_type] = STATE(1389), + [sym_function_modifiers] = STATE(2472), + [sym_self_parameter] = STATE(2260), + [sym_variadic_parameter] = STATE(2260), + [sym_parameter] = STATE(2260), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1947), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(1902), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1725), - [sym_scoped_identifier] = STATE(1572), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2241), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1565), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(2281), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), [anon_sym_RPAREN] = ACTIONS(764), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(732), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(734), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(738), [anon_sym__] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(742), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -38193,97 +38191,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [188] = { [sym_attribute_item] = STATE(191), - [sym_function_modifiers] = STATE(2335), - [sym_self_parameter] = STATE(2261), - [sym_variadic_parameter] = STATE(2261), - [sym_parameter] = STATE(2261), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1928), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(1875), - [sym_array_type] = STATE(1389), + [sym_function_modifiers] = STATE(2472), + [sym_self_parameter] = STATE(2260), + [sym_variadic_parameter] = STATE(2260), + [sym_parameter] = STATE(2260), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1947), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(1902), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1725), - [sym_scoped_identifier] = STATE(1572), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2241), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1565), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(2281), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), [anon_sym_RPAREN] = ACTIONS(766), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(732), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(734), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(738), [anon_sym__] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(742), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -38295,97 +38293,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [189] = { [sym_attribute_item] = STATE(191), - [sym_function_modifiers] = STATE(2335), - [sym_self_parameter] = STATE(2261), - [sym_variadic_parameter] = STATE(2261), - [sym_parameter] = STATE(2261), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1928), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(1875), - [sym_array_type] = STATE(1389), + [sym_function_modifiers] = STATE(2472), + [sym_self_parameter] = STATE(2260), + [sym_variadic_parameter] = STATE(2260), + [sym_parameter] = STATE(2260), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1947), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(1902), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1725), - [sym_scoped_identifier] = STATE(1572), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2241), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1565), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(2281), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), [anon_sym_RPAREN] = ACTIONS(768), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(732), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(734), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(738), [anon_sym__] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(742), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -38397,96 +38395,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [190] = { [sym_attribute_item] = STATE(191), - [sym_function_modifiers] = STATE(2335), - [sym_self_parameter] = STATE(2261), - [sym_variadic_parameter] = STATE(2261), - [sym_parameter] = STATE(2261), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1928), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(1875), - [sym_array_type] = STATE(1389), + [sym_function_modifiers] = STATE(2472), + [sym_self_parameter] = STATE(2260), + [sym_variadic_parameter] = STATE(2260), + [sym_parameter] = STATE(2260), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1947), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(1902), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1725), - [sym_scoped_identifier] = STATE(1572), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2241), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1565), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(2281), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(732), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(734), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(738), [anon_sym__] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(742), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -38498,94 +38496,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [191] = { - [sym_function_modifiers] = STATE(2335), - [sym_self_parameter] = STATE(2137), - [sym_variadic_parameter] = STATE(2137), - [sym_parameter] = STATE(2137), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(2095), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(1875), - [sym_array_type] = STATE(1389), + [sym_function_modifiers] = STATE(2472), + [sym_self_parameter] = STATE(2287), + [sym_variadic_parameter] = STATE(2287), + [sym_parameter] = STATE(2287), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1893), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(1902), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1725), - [sym_scoped_identifier] = STATE(1572), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2241), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1565), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(2281), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(732), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(734), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(738), [anon_sym__] = ACTIONS(770), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(742), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -38597,94 +38595,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [192] = { - [sym_function_modifiers] = STATE(2335), - [sym_self_parameter] = STATE(2071), - [sym_variadic_parameter] = STATE(2071), - [sym_parameter] = STATE(2071), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1798), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(1875), - [sym_array_type] = STATE(1389), + [sym_function_modifiers] = STATE(2472), + [sym_self_parameter] = STATE(2069), + [sym_variadic_parameter] = STATE(2069), + [sym_parameter] = STATE(2069), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1802), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(1902), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1725), - [sym_scoped_identifier] = STATE(1572), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2241), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1565), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(2281), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(732), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(734), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(738), [anon_sym__] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(742), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -38696,94 +38694,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [193] = { - [sym_function_modifiers] = STATE(2335), + [sym_function_modifiers] = STATE(2472), [sym_self_parameter] = STATE(2064), [sym_variadic_parameter] = STATE(2064), [sym_parameter] = STATE(2064), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1781), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(1875), - [sym_array_type] = STATE(1389), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1767), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(1902), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1725), - [sym_scoped_identifier] = STATE(1572), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2241), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1565), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(2281), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(732), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(734), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym_COLON_COLON] = ACTIONS(738), [anon_sym__] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(742), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -38795,290 +38793,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [194] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1848), - [sym_bracketed_type] = STATE(2512), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(2009), + [sym_bracketed_type] = STATE(2511), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2513), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1738), - [sym_scoped_identifier] = STATE(1489), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1839), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(722), - [anon_sym_LPAREN] = ACTIONS(724), - [anon_sym_RPAREN] = ACTIONS(776), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1730), + [sym_scoped_identifier] = STATE(1528), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1791), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_RBRACK] = ACTIONS(780), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(728), - [anon_sym_i8] = ACTIONS(728), - [anon_sym_u16] = ACTIONS(728), - [anon_sym_i16] = ACTIONS(728), - [anon_sym_u32] = ACTIONS(728), - [anon_sym_i32] = ACTIONS(728), - [anon_sym_u64] = ACTIONS(728), - [anon_sym_i64] = ACTIONS(728), - [anon_sym_u128] = ACTIONS(728), - [anon_sym_i128] = ACTIONS(728), - [anon_sym_isize] = ACTIONS(728), - [anon_sym_usize] = ACTIONS(728), - [anon_sym_f32] = ACTIONS(728), - [anon_sym_f64] = ACTIONS(728), - [anon_sym_bool] = ACTIONS(728), - [anon_sym_str] = ACTIONS(728), - [anon_sym_char] = ACTIONS(728), + [anon_sym_u8] = ACTIONS(782), + [anon_sym_i8] = ACTIONS(782), + [anon_sym_u16] = ACTIONS(782), + [anon_sym_i16] = ACTIONS(782), + [anon_sym_u32] = ACTIONS(782), + [anon_sym_i32] = ACTIONS(782), + [anon_sym_u64] = ACTIONS(782), + [anon_sym_i64] = ACTIONS(782), + [anon_sym_u128] = ACTIONS(782), + [anon_sym_i128] = ACTIONS(782), + [anon_sym_isize] = ACTIONS(782), + [anon_sym_usize] = ACTIONS(782), + [anon_sym_f32] = ACTIONS(782), + [anon_sym_f64] = ACTIONS(782), + [anon_sym_bool] = ACTIONS(782), + [anon_sym_str] = ACTIONS(782), + [anon_sym_char] = ACTIONS(782), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(730), + [anon_sym_default] = ACTIONS(784), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(732), + [anon_sym_union] = ACTIONS(786), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_COMMA] = ACTIONS(788), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(736), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(744), - [sym_crate] = ACTIONS(744), - [sym_metavariable] = ACTIONS(746), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [195] = { - [sym_identifier] = ACTIONS(788), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LPAREN] = ACTIONS(790), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_LBRACE] = ACTIONS(790), - [anon_sym_RBRACE] = ACTIONS(790), - [anon_sym_EQ_GT] = ACTIONS(790), - [anon_sym_LBRACK] = ACTIONS(790), - [anon_sym_RBRACK] = ACTIONS(790), - [anon_sym_COLON] = ACTIONS(788), - [anon_sym_PLUS] = ACTIONS(788), - [anon_sym_STAR] = ACTIONS(788), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_u8] = ACTIONS(788), - [anon_sym_i8] = ACTIONS(788), - [anon_sym_u16] = ACTIONS(788), - [anon_sym_i16] = ACTIONS(788), - [anon_sym_u32] = ACTIONS(788), - [anon_sym_i32] = ACTIONS(788), - [anon_sym_u64] = ACTIONS(788), - [anon_sym_i64] = ACTIONS(788), - [anon_sym_u128] = ACTIONS(788), - [anon_sym_i128] = ACTIONS(788), - [anon_sym_isize] = ACTIONS(788), - [anon_sym_usize] = ACTIONS(788), - [anon_sym_f32] = ACTIONS(788), - [anon_sym_f64] = ACTIONS(788), - [anon_sym_bool] = ACTIONS(788), - [anon_sym_str] = ACTIONS(788), - [anon_sym_char] = ACTIONS(788), - [anon_sym_SQUOTE] = ACTIONS(788), - [anon_sym_as] = ACTIONS(788), - [anon_sym_async] = ACTIONS(788), - [anon_sym_break] = ACTIONS(788), - [anon_sym_const] = ACTIONS(788), - [anon_sym_continue] = ACTIONS(788), - [anon_sym_default] = ACTIONS(788), - [anon_sym_for] = ACTIONS(788), - [anon_sym_if] = ACTIONS(788), - [anon_sym_loop] = ACTIONS(788), - [anon_sym_match] = ACTIONS(788), - [anon_sym_return] = ACTIONS(788), - [anon_sym_union] = ACTIONS(788), - [anon_sym_unsafe] = ACTIONS(788), - [anon_sym_while] = ACTIONS(788), - [anon_sym_BANG] = ACTIONS(788), - [anon_sym_EQ] = ACTIONS(788), - [anon_sym_COMMA] = ACTIONS(790), - [anon_sym_LT] = ACTIONS(788), - [anon_sym_GT] = ACTIONS(788), - [anon_sym_else] = ACTIONS(788), [anon_sym_COLON_COLON] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(788), - [anon_sym_DOT_DOT_DOT] = ACTIONS(790), - [anon_sym_DOT_DOT] = ACTIONS(788), - [anon_sym_DOT_DOT_EQ] = ACTIONS(790), - [anon_sym_DASH] = ACTIONS(788), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [anon_sym_PIPE] = ACTIONS(788), - [anon_sym_CARET] = ACTIONS(788), - [anon_sym_EQ_EQ] = ACTIONS(790), - [anon_sym_BANG_EQ] = ACTIONS(790), - [anon_sym_LT_EQ] = ACTIONS(790), - [anon_sym_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT] = ACTIONS(788), - [anon_sym_GT_GT] = ACTIONS(788), - [anon_sym_SLASH] = ACTIONS(788), - [anon_sym_PERCENT] = ACTIONS(788), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_yield] = ACTIONS(788), - [anon_sym_move] = ACTIONS(788), - [anon_sym_DOT] = ACTIONS(788), - [sym_integer_literal] = ACTIONS(790), - [aux_sym_string_literal_token1] = ACTIONS(790), - [sym_char_literal] = ACTIONS(790), - [anon_sym_true] = ACTIONS(788), - [anon_sym_false] = ACTIONS(788), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(788), - [sym_super] = ACTIONS(788), - [sym_crate] = ACTIONS(788), - [sym_metavariable] = ACTIONS(790), - [sym_raw_string_literal] = ACTIONS(790), - [sym_float_literal] = ACTIONS(790), - [sym_block_comment] = ACTIONS(3), - }, - [196] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1848), - [sym_bracketed_type] = STATE(2512), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2513), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1738), - [sym_scoped_identifier] = STATE(1489), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1839), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(722), - [anon_sym_LPAREN] = ACTIONS(724), - [anon_sym_RPAREN] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(728), - [anon_sym_i8] = ACTIONS(728), - [anon_sym_u16] = ACTIONS(728), - [anon_sym_i16] = ACTIONS(728), - [anon_sym_u32] = ACTIONS(728), - [anon_sym_i32] = ACTIONS(728), - [anon_sym_u64] = ACTIONS(728), - [anon_sym_i64] = ACTIONS(728), - [anon_sym_u128] = ACTIONS(728), - [anon_sym_i128] = ACTIONS(728), - [anon_sym_isize] = ACTIONS(728), - [anon_sym_usize] = ACTIONS(728), - [anon_sym_f32] = ACTIONS(728), - [anon_sym_f64] = ACTIONS(728), - [anon_sym_bool] = ACTIONS(728), - [anon_sym_str] = ACTIONS(728), - [anon_sym_char] = ACTIONS(728), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(730), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(732), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(778), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(736), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(782), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -39086,96 +38890,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(744), - [sym_crate] = ACTIONS(744), - [sym_metavariable] = ACTIONS(746), + [sym_self] = ACTIONS(800), + [sym_super] = ACTIONS(800), + [sym_crate] = ACTIONS(800), + [sym_metavariable] = ACTIONS(802), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [197] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1848), - [sym_bracketed_type] = STATE(2512), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [195] = { + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1831), + [sym_bracketed_type] = STATE(2508), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2513), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1738), - [sym_scoped_identifier] = STATE(1489), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1839), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(722), - [anon_sym_LPAREN] = ACTIONS(724), - [anon_sym_RPAREN] = ACTIONS(794), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2509), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1728), + [sym_scoped_identifier] = STATE(1505), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1789), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(804), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(728), - [anon_sym_i8] = ACTIONS(728), - [anon_sym_u16] = ACTIONS(728), - [anon_sym_i16] = ACTIONS(728), - [anon_sym_u32] = ACTIONS(728), - [anon_sym_i32] = ACTIONS(728), - [anon_sym_u64] = ACTIONS(728), - [anon_sym_i64] = ACTIONS(728), - [anon_sym_u128] = ACTIONS(728), - [anon_sym_i128] = ACTIONS(728), - [anon_sym_isize] = ACTIONS(728), - [anon_sym_usize] = ACTIONS(728), - [anon_sym_f32] = ACTIONS(728), - [anon_sym_f64] = ACTIONS(728), - [anon_sym_bool] = ACTIONS(728), - [anon_sym_str] = ACTIONS(728), - [anon_sym_char] = ACTIONS(728), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(730), + [anon_sym_default] = ACTIONS(668), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(732), + [anon_sym_union] = ACTIONS(676), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_COMMA] = ACTIONS(806), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(736), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(782), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(808), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -39183,96 +38987,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(744), - [sym_crate] = ACTIONS(744), - [sym_metavariable] = ACTIONS(746), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [198] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1865), - [sym_bracketed_type] = STATE(2515), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [196] = { + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1831), + [sym_bracketed_type] = STATE(2508), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2516), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1730), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(796), - [anon_sym_LPAREN] = ACTIONS(798), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2509), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1728), + [sym_scoped_identifier] = STATE(1505), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1789), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_RBRACK] = ACTIONS(800), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(802), - [anon_sym_i8] = ACTIONS(802), - [anon_sym_u16] = ACTIONS(802), - [anon_sym_i16] = ACTIONS(802), - [anon_sym_u32] = ACTIONS(802), - [anon_sym_i32] = ACTIONS(802), - [anon_sym_u64] = ACTIONS(802), - [anon_sym_i64] = ACTIONS(802), - [anon_sym_u128] = ACTIONS(802), - [anon_sym_i128] = ACTIONS(802), - [anon_sym_isize] = ACTIONS(802), - [anon_sym_usize] = ACTIONS(802), - [anon_sym_f32] = ACTIONS(802), - [anon_sym_f64] = ACTIONS(802), - [anon_sym_bool] = ACTIONS(802), - [anon_sym_str] = ACTIONS(802), - [anon_sym_char] = ACTIONS(802), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(804), + [anon_sym_default] = ACTIONS(668), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(806), + [anon_sym_union] = ACTIONS(676), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(806), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(810), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(812), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(808), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -39280,56 +39084,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(814), - [sym_super] = ACTIONS(814), - [sym_crate] = ACTIONS(814), - [sym_metavariable] = ACTIONS(816), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [199] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1398), + [197] = { + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1831), [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(623), - [sym_array_type] = STATE(1389), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1725), - [sym_scoped_identifier] = STATE(1572), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1461), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1728), + [sym_scoped_identifier] = STATE(1505), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1789), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(812), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), [anon_sym_u8] = ACTIONS(660), @@ -39349,7 +39154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(660), [anon_sym_str] = ACTIONS(660), [anon_sym_char] = ACTIONS(660), - [anon_sym_SQUOTE] = ACTIONS(818), + [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), [anon_sym_default] = ACTIONS(668), @@ -39359,15 +39164,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(676), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(806), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(820), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(808), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(822), - [anon_sym_DOT_DOT] = ACTIONS(786), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -39383,86 +39189,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, + [198] = { + [sym_identifier] = ACTIONS(814), + [anon_sym_SEMI] = ACTIONS(816), + [anon_sym_LPAREN] = ACTIONS(816), + [anon_sym_RPAREN] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_RBRACE] = ACTIONS(816), + [anon_sym_EQ_GT] = ACTIONS(816), + [anon_sym_LBRACK] = ACTIONS(816), + [anon_sym_RBRACK] = ACTIONS(816), + [anon_sym_COLON] = ACTIONS(814), + [anon_sym_PLUS] = ACTIONS(814), + [anon_sym_STAR] = ACTIONS(814), + [anon_sym_QMARK] = ACTIONS(816), + [anon_sym_u8] = ACTIONS(814), + [anon_sym_i8] = ACTIONS(814), + [anon_sym_u16] = ACTIONS(814), + [anon_sym_i16] = ACTIONS(814), + [anon_sym_u32] = ACTIONS(814), + [anon_sym_i32] = ACTIONS(814), + [anon_sym_u64] = ACTIONS(814), + [anon_sym_i64] = ACTIONS(814), + [anon_sym_u128] = ACTIONS(814), + [anon_sym_i128] = ACTIONS(814), + [anon_sym_isize] = ACTIONS(814), + [anon_sym_usize] = ACTIONS(814), + [anon_sym_f32] = ACTIONS(814), + [anon_sym_f64] = ACTIONS(814), + [anon_sym_bool] = ACTIONS(814), + [anon_sym_str] = ACTIONS(814), + [anon_sym_char] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_as] = ACTIONS(814), + [anon_sym_async] = ACTIONS(814), + [anon_sym_break] = ACTIONS(814), + [anon_sym_const] = ACTIONS(814), + [anon_sym_continue] = ACTIONS(814), + [anon_sym_default] = ACTIONS(814), + [anon_sym_for] = ACTIONS(814), + [anon_sym_if] = ACTIONS(814), + [anon_sym_loop] = ACTIONS(814), + [anon_sym_match] = ACTIONS(814), + [anon_sym_return] = ACTIONS(814), + [anon_sym_union] = ACTIONS(814), + [anon_sym_unsafe] = ACTIONS(814), + [anon_sym_while] = ACTIONS(814), + [anon_sym_BANG] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_COMMA] = ACTIONS(816), + [anon_sym_LT] = ACTIONS(814), + [anon_sym_GT] = ACTIONS(814), + [anon_sym_else] = ACTIONS(814), + [anon_sym_COLON_COLON] = ACTIONS(816), + [anon_sym_AMP] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(816), + [anon_sym_DOT_DOT] = ACTIONS(814), + [anon_sym_DOT_DOT_EQ] = ACTIONS(816), + [anon_sym_DASH] = ACTIONS(814), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_CARET] = ACTIONS(814), + [anon_sym_EQ_EQ] = ACTIONS(816), + [anon_sym_BANG_EQ] = ACTIONS(816), + [anon_sym_LT_EQ] = ACTIONS(816), + [anon_sym_GT_EQ] = ACTIONS(816), + [anon_sym_LT_LT] = ACTIONS(814), + [anon_sym_GT_GT] = ACTIONS(814), + [anon_sym_SLASH] = ACTIONS(814), + [anon_sym_PERCENT] = ACTIONS(814), + [anon_sym_PLUS_EQ] = ACTIONS(816), + [anon_sym_DASH_EQ] = ACTIONS(816), + [anon_sym_STAR_EQ] = ACTIONS(816), + [anon_sym_SLASH_EQ] = ACTIONS(816), + [anon_sym_PERCENT_EQ] = ACTIONS(816), + [anon_sym_AMP_EQ] = ACTIONS(816), + [anon_sym_PIPE_EQ] = ACTIONS(816), + [anon_sym_CARET_EQ] = ACTIONS(816), + [anon_sym_LT_LT_EQ] = ACTIONS(816), + [anon_sym_GT_GT_EQ] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(814), + [anon_sym_move] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(814), + [sym_integer_literal] = ACTIONS(816), + [aux_sym_string_literal_token1] = ACTIONS(816), + [sym_char_literal] = ACTIONS(816), + [anon_sym_true] = ACTIONS(814), + [anon_sym_false] = ACTIONS(814), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(814), + [sym_super] = ACTIONS(814), + [sym_crate] = ACTIONS(814), + [sym_metavariable] = ACTIONS(816), + [sym_raw_string_literal] = ACTIONS(816), + [sym_float_literal] = ACTIONS(816), + [sym_block_comment] = ACTIONS(3), + }, + [199] = { + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1398), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1565), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1426), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(732), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(734), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(818), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(820), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, [200] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1385), - [sym_bracketed_type] = STATE(2512), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1398), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2513), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1738), - [sym_scoped_identifier] = STATE(1489), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1438), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(722), - [anon_sym_LPAREN] = ACTIONS(724), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1565), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1426), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(728), - [anon_sym_i8] = ACTIONS(728), - [anon_sym_u16] = ACTIONS(728), - [anon_sym_i16] = ACTIONS(728), - [anon_sym_u32] = ACTIONS(728), - [anon_sym_i32] = ACTIONS(728), - [anon_sym_u64] = ACTIONS(728), - [anon_sym_i64] = ACTIONS(728), - [anon_sym_u128] = ACTIONS(728), - [anon_sym_i128] = ACTIONS(728), - [anon_sym_isize] = ACTIONS(728), - [anon_sym_usize] = ACTIONS(728), - [anon_sym_f32] = ACTIONS(728), - [anon_sym_f64] = ACTIONS(728), - [anon_sym_bool] = ACTIONS(728), - [anon_sym_str] = ACTIONS(728), - [anon_sym_char] = ACTIONS(728), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(730), + [anon_sym_default] = ACTIONS(732), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(732), + [anon_sym_union] = ACTIONS(734), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(736), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(782), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(818), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -39470,94 +39468,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(824), - [sym_super] = ACTIONS(744), - [sym_crate] = ACTIONS(744), - [sym_metavariable] = ACTIONS(746), + [sym_self] = ACTIONS(746), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [201] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), [sym__type] = STATE(1398), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(622), - [sym_array_type] = STATE(1389), + [sym_bracketed_type] = STATE(2511), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1725), - [sym_scoped_identifier] = STATE(1572), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1461), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1730), + [sym_scoped_identifier] = STATE(1528), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1426), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), - [anon_sym_SQUOTE] = ACTIONS(818), + [anon_sym_u8] = ACTIONS(782), + [anon_sym_i8] = ACTIONS(782), + [anon_sym_u16] = ACTIONS(782), + [anon_sym_i16] = ACTIONS(782), + [anon_sym_u32] = ACTIONS(782), + [anon_sym_i32] = ACTIONS(782), + [anon_sym_u64] = ACTIONS(782), + [anon_sym_i64] = ACTIONS(782), + [anon_sym_u128] = ACTIONS(782), + [anon_sym_i128] = ACTIONS(782), + [anon_sym_isize] = ACTIONS(782), + [anon_sym_usize] = ACTIONS(782), + [anon_sym_f32] = ACTIONS(782), + [anon_sym_f64] = ACTIONS(782), + [anon_sym_bool] = ACTIONS(782), + [anon_sym_str] = ACTIONS(782), + [anon_sym_char] = ACTIONS(782), + [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(784), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(786), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(820), + [anon_sym_COLON_COLON] = ACTIONS(790), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(786), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -39565,54 +39563,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(828), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(800), + [sym_super] = ACTIONS(800), + [sym_crate] = ACTIONS(800), + [sym_metavariable] = ACTIONS(802), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [202] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1385), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1399), [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [sym_lifetime] = STATE(624), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1725), - [sym_scoped_identifier] = STATE(1572), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1438), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1728), + [sym_scoped_identifier] = STATE(1505), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1453), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_LBRACK] = ACTIONS(656), @@ -39634,7 +39632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(660), [anon_sym_str] = ACTIONS(660), [anon_sym_char] = ACTIONS(660), - [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_SQUOTE] = ACTIONS(822), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), [anon_sym_default] = ACTIONS(668), @@ -39648,11 +39646,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(820), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(808), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [sym_mutable_specifier] = ACTIONS(824), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -39669,85 +39667,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [203] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1398), - [sym_bracketed_type] = STATE(2512), - [sym_lifetime] = STATE(623), - [sym_array_type] = STATE(1389), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1399), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(624), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2513), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1738), - [sym_scoped_identifier] = STATE(1489), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1461), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(722), - [anon_sym_LPAREN] = ACTIONS(724), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1565), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1453), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(728), - [anon_sym_i8] = ACTIONS(728), - [anon_sym_u16] = ACTIONS(728), - [anon_sym_i16] = ACTIONS(728), - [anon_sym_u32] = ACTIONS(728), - [anon_sym_i32] = ACTIONS(728), - [anon_sym_u64] = ACTIONS(728), - [anon_sym_i64] = ACTIONS(728), - [anon_sym_u128] = ACTIONS(728), - [anon_sym_i128] = ACTIONS(728), - [anon_sym_isize] = ACTIONS(728), - [anon_sym_usize] = ACTIONS(728), - [anon_sym_f32] = ACTIONS(728), - [anon_sym_f64] = ACTIONS(728), - [anon_sym_bool] = ACTIONS(728), - [anon_sym_str] = ACTIONS(728), - [anon_sym_char] = ACTIONS(728), - [anon_sym_SQUOTE] = ACTIONS(818), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(822), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(730), + [anon_sym_default] = ACTIONS(732), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(732), + [anon_sym_union] = ACTIONS(734), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(736), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(782), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(818), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(830), - [anon_sym_DOT_DOT] = ACTIONS(786), + [sym_mutable_specifier] = ACTIONS(826), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -39755,94 +39753,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(744), - [sym_crate] = ACTIONS(744), - [sym_metavariable] = ACTIONS(746), + [sym_self] = ACTIONS(746), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [204] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1398), - [sym_bracketed_type] = STATE(2512), - [sym_lifetime] = STATE(622), - [sym_array_type] = STATE(1389), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1399), + [sym_bracketed_type] = STATE(2504), + [sym_lifetime] = STATE(620), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2513), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1738), - [sym_scoped_identifier] = STATE(1489), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1461), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(722), - [anon_sym_LPAREN] = ACTIONS(724), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2505), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1710), + [sym_scoped_identifier] = STATE(1565), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1453), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(726), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(728), - [anon_sym_i8] = ACTIONS(728), - [anon_sym_u16] = ACTIONS(728), - [anon_sym_i16] = ACTIONS(728), - [anon_sym_u32] = ACTIONS(728), - [anon_sym_i32] = ACTIONS(728), - [anon_sym_u64] = ACTIONS(728), - [anon_sym_i64] = ACTIONS(728), - [anon_sym_u128] = ACTIONS(728), - [anon_sym_i128] = ACTIONS(728), - [anon_sym_isize] = ACTIONS(728), - [anon_sym_usize] = ACTIONS(728), - [anon_sym_f32] = ACTIONS(728), - [anon_sym_f64] = ACTIONS(728), - [anon_sym_bool] = ACTIONS(728), - [anon_sym_str] = ACTIONS(728), - [anon_sym_char] = ACTIONS(728), - [anon_sym_SQUOTE] = ACTIONS(818), + [anon_sym_u8] = ACTIONS(730), + [anon_sym_i8] = ACTIONS(730), + [anon_sym_u16] = ACTIONS(730), + [anon_sym_i16] = ACTIONS(730), + [anon_sym_u32] = ACTIONS(730), + [anon_sym_i32] = ACTIONS(730), + [anon_sym_u64] = ACTIONS(730), + [anon_sym_i64] = ACTIONS(730), + [anon_sym_u128] = ACTIONS(730), + [anon_sym_i128] = ACTIONS(730), + [anon_sym_isize] = ACTIONS(730), + [anon_sym_usize] = ACTIONS(730), + [anon_sym_f32] = ACTIONS(730), + [anon_sym_f64] = ACTIONS(730), + [anon_sym_bool] = ACTIONS(730), + [anon_sym_str] = ACTIONS(730), + [anon_sym_char] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(822), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(730), + [anon_sym_default] = ACTIONS(732), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(732), + [anon_sym_union] = ACTIONS(734), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(736), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(782), + [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(818), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(832), - [anon_sym_DOT_DOT] = ACTIONS(786), + [sym_mutable_specifier] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -39850,94 +39848,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(834), - [sym_super] = ACTIONS(744), - [sym_crate] = ACTIONS(744), - [sym_metavariable] = ACTIONS(746), + [sym_self] = ACTIONS(830), + [sym_super] = ACTIONS(746), + [sym_crate] = ACTIONS(746), + [sym_metavariable] = ACTIONS(748), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [205] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1385), - [sym_bracketed_type] = STATE(2515), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1399), + [sym_bracketed_type] = STATE(2511), + [sym_lifetime] = STATE(624), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2516), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2512), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), [sym_macro_invocation] = STATE(1730), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1438), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(796), - [anon_sym_LPAREN] = ACTIONS(798), + [sym_scoped_identifier] = STATE(1528), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1453), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(802), - [anon_sym_i8] = ACTIONS(802), - [anon_sym_u16] = ACTIONS(802), - [anon_sym_i16] = ACTIONS(802), - [anon_sym_u32] = ACTIONS(802), - [anon_sym_i32] = ACTIONS(802), - [anon_sym_u64] = ACTIONS(802), - [anon_sym_i64] = ACTIONS(802), - [anon_sym_u128] = ACTIONS(802), - [anon_sym_i128] = ACTIONS(802), - [anon_sym_isize] = ACTIONS(802), - [anon_sym_usize] = ACTIONS(802), - [anon_sym_f32] = ACTIONS(802), - [anon_sym_f64] = ACTIONS(802), - [anon_sym_bool] = ACTIONS(802), - [anon_sym_str] = ACTIONS(802), - [anon_sym_char] = ACTIONS(802), - [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_u8] = ACTIONS(782), + [anon_sym_i8] = ACTIONS(782), + [anon_sym_u16] = ACTIONS(782), + [anon_sym_i16] = ACTIONS(782), + [anon_sym_u32] = ACTIONS(782), + [anon_sym_i32] = ACTIONS(782), + [anon_sym_u64] = ACTIONS(782), + [anon_sym_i64] = ACTIONS(782), + [anon_sym_u128] = ACTIONS(782), + [anon_sym_i128] = ACTIONS(782), + [anon_sym_isize] = ACTIONS(782), + [anon_sym_usize] = ACTIONS(782), + [anon_sym_f32] = ACTIONS(782), + [anon_sym_f64] = ACTIONS(782), + [anon_sym_bool] = ACTIONS(782), + [anon_sym_str] = ACTIONS(782), + [anon_sym_char] = ACTIONS(782), + [anon_sym_SQUOTE] = ACTIONS(822), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(804), + [anon_sym_default] = ACTIONS(784), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(806), + [anon_sym_union] = ACTIONS(786), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(810), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(812), + [anon_sym_COLON_COLON] = ACTIONS(790), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(794), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [sym_mutable_specifier] = ACTIONS(832), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -39945,54 +39943,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(814), - [sym_super] = ACTIONS(814), - [sym_crate] = ACTIONS(814), - [sym_metavariable] = ACTIONS(816), + [sym_self] = ACTIONS(800), + [sym_super] = ACTIONS(800), + [sym_crate] = ACTIONS(800), + [sym_metavariable] = ACTIONS(802), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [206] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1385), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1398), [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1725), - [sym_scoped_identifier] = STATE(1572), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1438), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1728), + [sym_scoped_identifier] = STATE(1505), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1426), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_LBRACK] = ACTIONS(656), @@ -40028,11 +40026,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(820), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(808), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -40040,7 +40038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(836), + [sym_self] = ACTIONS(834), [sym_super] = ACTIONS(712), [sym_crate] = ACTIONS(712), [sym_metavariable] = ACTIONS(714), @@ -40049,85 +40047,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [207] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1385), - [sym_bracketed_type] = STATE(2512), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1398), + [sym_bracketed_type] = STATE(2508), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2513), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1738), - [sym_scoped_identifier] = STATE(1489), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1438), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(722), - [anon_sym_LPAREN] = ACTIONS(724), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2509), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1728), + [sym_scoped_identifier] = STATE(1505), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1426), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(728), - [anon_sym_i8] = ACTIONS(728), - [anon_sym_u16] = ACTIONS(728), - [anon_sym_i16] = ACTIONS(728), - [anon_sym_u32] = ACTIONS(728), - [anon_sym_i32] = ACTIONS(728), - [anon_sym_u64] = ACTIONS(728), - [anon_sym_i64] = ACTIONS(728), - [anon_sym_u128] = ACTIONS(728), - [anon_sym_i128] = ACTIONS(728), - [anon_sym_isize] = ACTIONS(728), - [anon_sym_usize] = ACTIONS(728), - [anon_sym_f32] = ACTIONS(728), - [anon_sym_f64] = ACTIONS(728), - [anon_sym_bool] = ACTIONS(728), - [anon_sym_str] = ACTIONS(728), - [anon_sym_char] = ACTIONS(728), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(730), + [anon_sym_default] = ACTIONS(668), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(732), + [anon_sym_union] = ACTIONS(676), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(736), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(782), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(808), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -40135,94 +40133,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(744), - [sym_crate] = ACTIONS(744), - [sym_metavariable] = ACTIONS(746), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [208] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1398), - [sym_bracketed_type] = STATE(2515), - [sym_lifetime] = STATE(623), - [sym_array_type] = STATE(1389), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1399), + [sym_bracketed_type] = STATE(2508), + [sym_lifetime] = STATE(620), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2516), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1730), - [sym_scoped_identifier] = STATE(1564), - [sym_scoped_type_identifier] = STATE(1483), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1461), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(796), - [anon_sym_LPAREN] = ACTIONS(798), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2509), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1728), + [sym_scoped_identifier] = STATE(1505), + [sym_scoped_type_identifier] = STATE(1474), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1453), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(802), - [anon_sym_i8] = ACTIONS(802), - [anon_sym_u16] = ACTIONS(802), - [anon_sym_i16] = ACTIONS(802), - [anon_sym_u32] = ACTIONS(802), - [anon_sym_i32] = ACTIONS(802), - [anon_sym_u64] = ACTIONS(802), - [anon_sym_i64] = ACTIONS(802), - [anon_sym_u128] = ACTIONS(802), - [anon_sym_i128] = ACTIONS(802), - [anon_sym_isize] = ACTIONS(802), - [anon_sym_usize] = ACTIONS(802), - [anon_sym_f32] = ACTIONS(802), - [anon_sym_f64] = ACTIONS(802), - [anon_sym_bool] = ACTIONS(802), - [anon_sym_str] = ACTIONS(802), - [anon_sym_char] = ACTIONS(802), - [anon_sym_SQUOTE] = ACTIONS(818), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(822), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(804), + [anon_sym_default] = ACTIONS(668), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(806), + [anon_sym_union] = ACTIONS(676), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(810), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(812), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(808), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(838), - [anon_sym_DOT_DOT] = ACTIONS(786), + [sym_mutable_specifier] = ACTIONS(836), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -40230,38 +40228,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(814), - [sym_super] = ACTIONS(814), - [sym_crate] = ACTIONS(814), - [sym_metavariable] = ACTIONS(816), + [sym_self] = ACTIONS(838), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [209] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1453), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1458), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), [sym_identifier] = ACTIONS(840), [anon_sym_LPAREN] = ACTIONS(842), [anon_sym_LBRACE] = ACTIONS(842), @@ -40303,9 +40301,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(842), [anon_sym_LT] = ACTIONS(842), [anon_sym_COLON_COLON] = ACTIONS(842), - [anon_sym__] = ACTIONS(780), + [anon_sym__] = ACTIONS(792), [anon_sym_AMP] = ACTIONS(842), - [sym_mutable_specifier] = ACTIONS(784), + [sym_mutable_specifier] = ACTIONS(796), [anon_sym_DOT_DOT] = ACTIONS(842), [anon_sym_DASH] = ACTIONS(840), [anon_sym_PIPE] = ACTIONS(842), @@ -40326,7 +40324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [210] = { - [sym_else_clause] = STATE(226), + [sym_else_clause] = STATE(221), [sym_identifier] = ACTIONS(402), [anon_sym_LPAREN] = ACTIONS(400), [anon_sym_RBRACE] = ACTIONS(400), @@ -40408,87 +40406,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [211] = { - [sym_identifier] = ACTIONS(412), - [anon_sym_LPAREN] = ACTIONS(410), - [anon_sym_RBRACE] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(410), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(412), - [anon_sym_QMARK] = ACTIONS(410), - [anon_sym_u8] = ACTIONS(412), - [anon_sym_i8] = ACTIONS(412), - [anon_sym_u16] = ACTIONS(412), - [anon_sym_i16] = ACTIONS(412), - [anon_sym_u32] = ACTIONS(412), - [anon_sym_i32] = ACTIONS(412), - [anon_sym_u64] = ACTIONS(412), - [anon_sym_i64] = ACTIONS(412), - [anon_sym_u128] = ACTIONS(412), - [anon_sym_i128] = ACTIONS(412), - [anon_sym_isize] = ACTIONS(412), - [anon_sym_usize] = ACTIONS(412), - [anon_sym_f32] = ACTIONS(412), - [anon_sym_f64] = ACTIONS(412), - [anon_sym_bool] = ACTIONS(412), - [anon_sym_str] = ACTIONS(412), - [anon_sym_char] = ACTIONS(412), - [anon_sym_as] = ACTIONS(412), - [anon_sym_const] = ACTIONS(412), - [anon_sym_default] = ACTIONS(412), - [anon_sym_union] = ACTIONS(412), - [anon_sym_POUND] = ACTIONS(410), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_COMMA] = ACTIONS(410), - [anon_sym_ref] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(412), - [anon_sym_GT] = ACTIONS(412), - [anon_sym_else] = ACTIONS(412), - [anon_sym_COLON_COLON] = ACTIONS(410), - [anon_sym__] = ACTIONS(412), - [anon_sym_AMP] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(410), - [sym_mutable_specifier] = ACTIONS(412), - [anon_sym_DOT_DOT] = ACTIONS(412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(410), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_AMP_AMP] = ACTIONS(410), - [anon_sym_PIPE_PIPE] = ACTIONS(410), - [anon_sym_PIPE] = ACTIONS(412), - [anon_sym_CARET] = ACTIONS(412), - [anon_sym_EQ_EQ] = ACTIONS(410), - [anon_sym_BANG_EQ] = ACTIONS(410), - [anon_sym_LT_EQ] = ACTIONS(410), - [anon_sym_GT_EQ] = ACTIONS(410), - [anon_sym_LT_LT] = ACTIONS(412), - [anon_sym_GT_GT] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_PLUS_EQ] = ACTIONS(410), - [anon_sym_DASH_EQ] = ACTIONS(410), - [anon_sym_STAR_EQ] = ACTIONS(410), - [anon_sym_SLASH_EQ] = ACTIONS(410), - [anon_sym_PERCENT_EQ] = ACTIONS(410), - [anon_sym_AMP_EQ] = ACTIONS(410), - [anon_sym_PIPE_EQ] = ACTIONS(410), - [anon_sym_CARET_EQ] = ACTIONS(410), - [anon_sym_LT_LT_EQ] = ACTIONS(410), - [anon_sym_GT_GT_EQ] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [sym_integer_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(410), - [sym_char_literal] = ACTIONS(410), - [anon_sym_true] = ACTIONS(412), - [anon_sym_false] = ACTIONS(412), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(412), - [sym_super] = ACTIONS(412), - [sym_crate] = ACTIONS(412), - [sym_metavariable] = ACTIONS(410), - [sym_raw_string_literal] = ACTIONS(410), - [sym_float_literal] = ACTIONS(410), - [sym_block_comment] = ACTIONS(3), - }, - [212] = { [sym_identifier] = ACTIONS(408), [anon_sym_LPAREN] = ACTIONS(406), [anon_sym_RBRACE] = ACTIONS(406), @@ -40569,7 +40486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(406), [sym_block_comment] = ACTIONS(3), }, - [213] = { + [212] = { [sym_identifier] = ACTIONS(416), [anon_sym_LPAREN] = ACTIONS(414), [anon_sym_RBRACE] = ACTIONS(414), @@ -40650,1447 +40567,888 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(414), [sym_block_comment] = ACTIONS(3), }, - [214] = { - [sym_identifier] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_RBRACE] = ACTIONS(474), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_STAR] = ACTIONS(476), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_u8] = ACTIONS(476), - [anon_sym_i8] = ACTIONS(476), - [anon_sym_u16] = ACTIONS(476), - [anon_sym_i16] = ACTIONS(476), - [anon_sym_u32] = ACTIONS(476), - [anon_sym_i32] = ACTIONS(476), - [anon_sym_u64] = ACTIONS(476), - [anon_sym_i64] = ACTIONS(476), - [anon_sym_u128] = ACTIONS(476), - [anon_sym_i128] = ACTIONS(476), - [anon_sym_isize] = ACTIONS(476), - [anon_sym_usize] = ACTIONS(476), - [anon_sym_f32] = ACTIONS(476), - [anon_sym_f64] = ACTIONS(476), - [anon_sym_bool] = ACTIONS(476), - [anon_sym_str] = ACTIONS(476), - [anon_sym_char] = ACTIONS(476), - [anon_sym_as] = ACTIONS(476), - [anon_sym_const] = ACTIONS(476), - [anon_sym_default] = ACTIONS(476), - [anon_sym_union] = ACTIONS(476), - [anon_sym_POUND] = ACTIONS(474), - [anon_sym_EQ] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_ref] = ACTIONS(476), - [anon_sym_LT] = ACTIONS(476), - [anon_sym_GT] = ACTIONS(476), - [anon_sym_COLON_COLON] = ACTIONS(474), - [anon_sym__] = ACTIONS(476), - [anon_sym_AMP] = ACTIONS(476), - [anon_sym_DOT_DOT_DOT] = ACTIONS(474), - [sym_mutable_specifier] = ACTIONS(476), - [anon_sym_DOT_DOT] = ACTIONS(476), - [anon_sym_DOT_DOT_EQ] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(476), - [anon_sym_CARET] = ACTIONS(476), - [anon_sym_EQ_EQ] = ACTIONS(474), - [anon_sym_BANG_EQ] = ACTIONS(474), - [anon_sym_LT_EQ] = ACTIONS(474), - [anon_sym_GT_EQ] = ACTIONS(474), - [anon_sym_LT_LT] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(476), - [anon_sym_SLASH] = ACTIONS(476), - [anon_sym_PERCENT] = ACTIONS(476), - [anon_sym_PLUS_EQ] = ACTIONS(474), - [anon_sym_DASH_EQ] = ACTIONS(474), - [anon_sym_STAR_EQ] = ACTIONS(474), - [anon_sym_SLASH_EQ] = ACTIONS(474), - [anon_sym_PERCENT_EQ] = ACTIONS(474), - [anon_sym_AMP_EQ] = ACTIONS(474), - [anon_sym_PIPE_EQ] = ACTIONS(474), - [anon_sym_CARET_EQ] = ACTIONS(474), - [anon_sym_LT_LT_EQ] = ACTIONS(474), - [anon_sym_GT_GT_EQ] = ACTIONS(474), - [anon_sym_DOT] = ACTIONS(476), - [sym_integer_literal] = ACTIONS(474), - [aux_sym_string_literal_token1] = ACTIONS(474), - [sym_char_literal] = ACTIONS(474), - [anon_sym_true] = ACTIONS(476), - [anon_sym_false] = ACTIONS(476), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(476), - [sym_super] = ACTIONS(476), - [sym_crate] = ACTIONS(476), - [sym_metavariable] = ACTIONS(474), - [sym_raw_string_literal] = ACTIONS(474), - [sym_float_literal] = ACTIONS(474), - [sym_block_comment] = ACTIONS(3), - }, - [215] = { - [sym_identifier] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(490), - [anon_sym_PLUS] = ACTIONS(492), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(490), - [anon_sym_u8] = ACTIONS(492), - [anon_sym_i8] = ACTIONS(492), - [anon_sym_u16] = ACTIONS(492), - [anon_sym_i16] = ACTIONS(492), - [anon_sym_u32] = ACTIONS(492), - [anon_sym_i32] = ACTIONS(492), - [anon_sym_u64] = ACTIONS(492), - [anon_sym_i64] = ACTIONS(492), - [anon_sym_u128] = ACTIONS(492), - [anon_sym_i128] = ACTIONS(492), - [anon_sym_isize] = ACTIONS(492), - [anon_sym_usize] = ACTIONS(492), - [anon_sym_f32] = ACTIONS(492), - [anon_sym_f64] = ACTIONS(492), - [anon_sym_bool] = ACTIONS(492), - [anon_sym_str] = ACTIONS(492), - [anon_sym_char] = ACTIONS(492), - [anon_sym_as] = ACTIONS(492), - [anon_sym_const] = ACTIONS(492), - [anon_sym_default] = ACTIONS(492), - [anon_sym_union] = ACTIONS(492), - [anon_sym_POUND] = ACTIONS(490), - [anon_sym_EQ] = ACTIONS(492), - [anon_sym_COMMA] = ACTIONS(490), - [anon_sym_ref] = ACTIONS(492), - [anon_sym_LT] = ACTIONS(492), - [anon_sym_GT] = ACTIONS(492), - [anon_sym_COLON_COLON] = ACTIONS(490), - [anon_sym__] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_DOT_DOT_DOT] = ACTIONS(490), - [sym_mutable_specifier] = ACTIONS(492), - [anon_sym_DOT_DOT] = ACTIONS(492), - [anon_sym_DOT_DOT_EQ] = ACTIONS(490), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_PIPE] = ACTIONS(492), - [anon_sym_CARET] = ACTIONS(492), - [anon_sym_EQ_EQ] = ACTIONS(490), - [anon_sym_BANG_EQ] = ACTIONS(490), - [anon_sym_LT_EQ] = ACTIONS(490), - [anon_sym_GT_EQ] = ACTIONS(490), - [anon_sym_LT_LT] = ACTIONS(492), - [anon_sym_GT_GT] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(492), - [anon_sym_PERCENT] = ACTIONS(492), - [anon_sym_PLUS_EQ] = ACTIONS(490), - [anon_sym_DASH_EQ] = ACTIONS(490), - [anon_sym_STAR_EQ] = ACTIONS(490), - [anon_sym_SLASH_EQ] = ACTIONS(490), - [anon_sym_PERCENT_EQ] = ACTIONS(490), - [anon_sym_AMP_EQ] = ACTIONS(490), - [anon_sym_PIPE_EQ] = ACTIONS(490), - [anon_sym_CARET_EQ] = ACTIONS(490), - [anon_sym_LT_LT_EQ] = ACTIONS(490), - [anon_sym_GT_GT_EQ] = ACTIONS(490), - [anon_sym_DOT] = ACTIONS(492), - [sym_integer_literal] = ACTIONS(490), - [aux_sym_string_literal_token1] = ACTIONS(490), - [sym_char_literal] = ACTIONS(490), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(492), - [sym_super] = ACTIONS(492), - [sym_crate] = ACTIONS(492), - [sym_metavariable] = ACTIONS(490), - [sym_raw_string_literal] = ACTIONS(490), - [sym_float_literal] = ACTIONS(490), - [sym_block_comment] = ACTIONS(3), - }, - [216] = { - [sym_identifier] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(848), - [anon_sym_RBRACE] = ACTIONS(470), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_STAR] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_u8] = ACTIONS(846), - [anon_sym_i8] = ACTIONS(846), - [anon_sym_u16] = ACTIONS(846), - [anon_sym_i16] = ACTIONS(846), - [anon_sym_u32] = ACTIONS(846), - [anon_sym_i32] = ACTIONS(846), - [anon_sym_u64] = ACTIONS(846), - [anon_sym_i64] = ACTIONS(846), - [anon_sym_u128] = ACTIONS(846), - [anon_sym_i128] = ACTIONS(846), - [anon_sym_isize] = ACTIONS(846), - [anon_sym_usize] = ACTIONS(846), - [anon_sym_f32] = ACTIONS(846), - [anon_sym_f64] = ACTIONS(846), - [anon_sym_bool] = ACTIONS(846), - [anon_sym_str] = ACTIONS(846), - [anon_sym_char] = ACTIONS(846), - [anon_sym_as] = ACTIONS(472), - [anon_sym_const] = ACTIONS(846), - [anon_sym_default] = ACTIONS(846), - [anon_sym_union] = ACTIONS(846), - [anon_sym_POUND] = ACTIONS(848), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_ref] = ACTIONS(846), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_GT] = ACTIONS(472), - [anon_sym_COLON_COLON] = ACTIONS(848), - [anon_sym__] = ACTIONS(846), - [anon_sym_AMP] = ACTIONS(846), - [anon_sym_DOT_DOT_DOT] = ACTIONS(470), - [sym_mutable_specifier] = ACTIONS(846), - [anon_sym_DOT_DOT] = ACTIONS(846), - [anon_sym_DOT_DOT_EQ] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(846), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(470), - [anon_sym_BANG_EQ] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(470), - [anon_sym_LT_LT] = ACTIONS(472), - [anon_sym_GT_GT] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_PERCENT] = ACTIONS(472), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_DOT] = ACTIONS(472), - [sym_integer_literal] = ACTIONS(848), - [aux_sym_string_literal_token1] = ACTIONS(848), - [sym_char_literal] = ACTIONS(848), - [anon_sym_true] = ACTIONS(846), - [anon_sym_false] = ACTIONS(846), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(846), - [sym_super] = ACTIONS(846), - [sym_crate] = ACTIONS(846), - [sym_metavariable] = ACTIONS(848), - [sym_raw_string_literal] = ACTIONS(848), - [sym_float_literal] = ACTIONS(848), - [sym_block_comment] = ACTIONS(3), - }, - [217] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(2082), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2078), - [sym_array_type] = STATE(1389), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_type_binding] = STATE(2151), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [sym_block] = STATE(2151), - [sym__literal] = STATE(2151), - [sym_string_literal] = STATE(2301), - [sym_boolean_literal] = STATE(2301), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(856), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(864), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), - [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(870), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(870), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), - [sym_raw_string_literal] = ACTIONS(870), - [sym_float_literal] = ACTIONS(870), - [sym_block_comment] = ACTIONS(3), - }, - [218] = { - [sym_identifier] = ACTIONS(616), - [anon_sym_LPAREN] = ACTIONS(614), - [anon_sym_RBRACE] = ACTIONS(614), - [anon_sym_LBRACK] = ACTIONS(614), - [anon_sym_PLUS] = ACTIONS(616), - [anon_sym_STAR] = ACTIONS(616), - [anon_sym_QMARK] = ACTIONS(614), - [anon_sym_u8] = ACTIONS(616), - [anon_sym_i8] = ACTIONS(616), - [anon_sym_u16] = ACTIONS(616), - [anon_sym_i16] = ACTIONS(616), - [anon_sym_u32] = ACTIONS(616), - [anon_sym_i32] = ACTIONS(616), - [anon_sym_u64] = ACTIONS(616), - [anon_sym_i64] = ACTIONS(616), - [anon_sym_u128] = ACTIONS(616), - [anon_sym_i128] = ACTIONS(616), - [anon_sym_isize] = ACTIONS(616), - [anon_sym_usize] = ACTIONS(616), - [anon_sym_f32] = ACTIONS(616), - [anon_sym_f64] = ACTIONS(616), - [anon_sym_bool] = ACTIONS(616), - [anon_sym_str] = ACTIONS(616), - [anon_sym_char] = ACTIONS(616), - [anon_sym_as] = ACTIONS(616), - [anon_sym_const] = ACTIONS(616), - [anon_sym_default] = ACTIONS(616), - [anon_sym_union] = ACTIONS(616), - [anon_sym_POUND] = ACTIONS(614), - [anon_sym_EQ] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(614), - [anon_sym_ref] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(616), - [anon_sym_GT] = ACTIONS(616), - [anon_sym_COLON_COLON] = ACTIONS(614), - [anon_sym__] = ACTIONS(616), - [anon_sym_AMP] = ACTIONS(616), - [anon_sym_DOT_DOT_DOT] = ACTIONS(614), - [sym_mutable_specifier] = ACTIONS(616), - [anon_sym_DOT_DOT] = ACTIONS(616), - [anon_sym_DOT_DOT_EQ] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(616), - [anon_sym_AMP_AMP] = ACTIONS(614), - [anon_sym_PIPE_PIPE] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_CARET] = ACTIONS(616), - [anon_sym_EQ_EQ] = ACTIONS(614), - [anon_sym_BANG_EQ] = ACTIONS(614), - [anon_sym_LT_EQ] = ACTIONS(614), - [anon_sym_GT_EQ] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(616), - [anon_sym_GT_GT] = ACTIONS(616), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(616), - [anon_sym_PLUS_EQ] = ACTIONS(614), - [anon_sym_DASH_EQ] = ACTIONS(614), - [anon_sym_STAR_EQ] = ACTIONS(614), - [anon_sym_SLASH_EQ] = ACTIONS(614), - [anon_sym_PERCENT_EQ] = ACTIONS(614), - [anon_sym_AMP_EQ] = ACTIONS(614), - [anon_sym_PIPE_EQ] = ACTIONS(614), - [anon_sym_CARET_EQ] = ACTIONS(614), - [anon_sym_LT_LT_EQ] = ACTIONS(614), - [anon_sym_GT_GT_EQ] = ACTIONS(614), - [anon_sym_DOT] = ACTIONS(616), - [sym_integer_literal] = ACTIONS(614), - [aux_sym_string_literal_token1] = ACTIONS(614), - [sym_char_literal] = ACTIONS(614), - [anon_sym_true] = ACTIONS(616), - [anon_sym_false] = ACTIONS(616), + [213] = { + [sym_identifier] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(410), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_LBRACK] = ACTIONS(410), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_QMARK] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_as] = ACTIONS(412), + [anon_sym_const] = ACTIONS(412), + [anon_sym_default] = ACTIONS(412), + [anon_sym_union] = ACTIONS(412), + [anon_sym_POUND] = ACTIONS(410), + [anon_sym_EQ] = ACTIONS(412), + [anon_sym_COMMA] = ACTIONS(410), + [anon_sym_ref] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(412), + [anon_sym_GT] = ACTIONS(412), + [anon_sym_else] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym__] = ACTIONS(412), + [anon_sym_AMP] = ACTIONS(412), + [anon_sym_DOT_DOT_DOT] = ACTIONS(410), + [sym_mutable_specifier] = ACTIONS(412), + [anon_sym_DOT_DOT] = ACTIONS(412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_AMP_AMP] = ACTIONS(410), + [anon_sym_PIPE_PIPE] = ACTIONS(410), + [anon_sym_PIPE] = ACTIONS(412), + [anon_sym_CARET] = ACTIONS(412), + [anon_sym_EQ_EQ] = ACTIONS(410), + [anon_sym_BANG_EQ] = ACTIONS(410), + [anon_sym_LT_EQ] = ACTIONS(410), + [anon_sym_GT_EQ] = ACTIONS(410), + [anon_sym_LT_LT] = ACTIONS(412), + [anon_sym_GT_GT] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(412), + [anon_sym_PERCENT] = ACTIONS(412), + [anon_sym_PLUS_EQ] = ACTIONS(410), + [anon_sym_DASH_EQ] = ACTIONS(410), + [anon_sym_STAR_EQ] = ACTIONS(410), + [anon_sym_SLASH_EQ] = ACTIONS(410), + [anon_sym_PERCENT_EQ] = ACTIONS(410), + [anon_sym_AMP_EQ] = ACTIONS(410), + [anon_sym_PIPE_EQ] = ACTIONS(410), + [anon_sym_CARET_EQ] = ACTIONS(410), + [anon_sym_LT_LT_EQ] = ACTIONS(410), + [anon_sym_GT_GT_EQ] = ACTIONS(410), + [anon_sym_DOT] = ACTIONS(412), + [sym_integer_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(410), + [sym_char_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(616), - [sym_super] = ACTIONS(616), - [sym_crate] = ACTIONS(616), - [sym_metavariable] = ACTIONS(614), - [sym_raw_string_literal] = ACTIONS(614), - [sym_float_literal] = ACTIONS(614), - [sym_block_comment] = ACTIONS(3), - }, - [219] = { - [sym_identifier] = ACTIONS(446), - [anon_sym_LPAREN] = ACTIONS(444), - [anon_sym_RBRACE] = ACTIONS(444), - [anon_sym_LBRACK] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(446), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_QMARK] = ACTIONS(444), - [anon_sym_u8] = ACTIONS(446), - [anon_sym_i8] = ACTIONS(446), - [anon_sym_u16] = ACTIONS(446), - [anon_sym_i16] = ACTIONS(446), - [anon_sym_u32] = ACTIONS(446), - [anon_sym_i32] = ACTIONS(446), - [anon_sym_u64] = ACTIONS(446), - [anon_sym_i64] = ACTIONS(446), - [anon_sym_u128] = ACTIONS(446), - [anon_sym_i128] = ACTIONS(446), - [anon_sym_isize] = ACTIONS(446), - [anon_sym_usize] = ACTIONS(446), - [anon_sym_f32] = ACTIONS(446), - [anon_sym_f64] = ACTIONS(446), - [anon_sym_bool] = ACTIONS(446), - [anon_sym_str] = ACTIONS(446), - [anon_sym_char] = ACTIONS(446), - [anon_sym_as] = ACTIONS(446), - [anon_sym_const] = ACTIONS(446), - [anon_sym_default] = ACTIONS(446), - [anon_sym_union] = ACTIONS(446), - [anon_sym_POUND] = ACTIONS(444), - [anon_sym_EQ] = ACTIONS(446), - [anon_sym_COMMA] = ACTIONS(444), - [anon_sym_ref] = ACTIONS(446), - [anon_sym_LT] = ACTIONS(446), - [anon_sym_GT] = ACTIONS(446), - [anon_sym_COLON_COLON] = ACTIONS(444), - [anon_sym__] = ACTIONS(446), - [anon_sym_AMP] = ACTIONS(446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(444), - [sym_mutable_specifier] = ACTIONS(446), - [anon_sym_DOT_DOT] = ACTIONS(446), - [anon_sym_DOT_DOT_EQ] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(446), - [anon_sym_AMP_AMP] = ACTIONS(444), - [anon_sym_PIPE_PIPE] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(446), - [anon_sym_CARET] = ACTIONS(446), - [anon_sym_EQ_EQ] = ACTIONS(444), - [anon_sym_BANG_EQ] = ACTIONS(444), - [anon_sym_LT_EQ] = ACTIONS(444), - [anon_sym_GT_EQ] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(446), - [anon_sym_GT_GT] = ACTIONS(446), - [anon_sym_SLASH] = ACTIONS(446), - [anon_sym_PERCENT] = ACTIONS(446), - [anon_sym_PLUS_EQ] = ACTIONS(444), - [anon_sym_DASH_EQ] = ACTIONS(444), - [anon_sym_STAR_EQ] = ACTIONS(444), - [anon_sym_SLASH_EQ] = ACTIONS(444), - [anon_sym_PERCENT_EQ] = ACTIONS(444), - [anon_sym_AMP_EQ] = ACTIONS(444), - [anon_sym_PIPE_EQ] = ACTIONS(444), - [anon_sym_CARET_EQ] = ACTIONS(444), - [anon_sym_LT_LT_EQ] = ACTIONS(444), - [anon_sym_GT_GT_EQ] = ACTIONS(444), - [anon_sym_DOT] = ACTIONS(446), - [sym_integer_literal] = ACTIONS(444), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(444), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(446), - [sym_super] = ACTIONS(446), - [sym_crate] = ACTIONS(446), - [sym_metavariable] = ACTIONS(444), - [sym_raw_string_literal] = ACTIONS(444), - [sym_float_literal] = ACTIONS(444), - [sym_block_comment] = ACTIONS(3), - }, - [220] = { - [sym_identifier] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_LBRACK] = ACTIONS(486), - [anon_sym_PLUS] = ACTIONS(488), - [anon_sym_STAR] = ACTIONS(488), - [anon_sym_QMARK] = ACTIONS(486), - [anon_sym_u8] = ACTIONS(488), - [anon_sym_i8] = ACTIONS(488), - [anon_sym_u16] = ACTIONS(488), - [anon_sym_i16] = ACTIONS(488), - [anon_sym_u32] = ACTIONS(488), - [anon_sym_i32] = ACTIONS(488), - [anon_sym_u64] = ACTIONS(488), - [anon_sym_i64] = ACTIONS(488), - [anon_sym_u128] = ACTIONS(488), - [anon_sym_i128] = ACTIONS(488), - [anon_sym_isize] = ACTIONS(488), - [anon_sym_usize] = ACTIONS(488), - [anon_sym_f32] = ACTIONS(488), - [anon_sym_f64] = ACTIONS(488), - [anon_sym_bool] = ACTIONS(488), - [anon_sym_str] = ACTIONS(488), - [anon_sym_char] = ACTIONS(488), - [anon_sym_as] = ACTIONS(488), - [anon_sym_const] = ACTIONS(488), - [anon_sym_default] = ACTIONS(488), - [anon_sym_union] = ACTIONS(488), - [anon_sym_POUND] = ACTIONS(486), - [anon_sym_EQ] = ACTIONS(488), - [anon_sym_COMMA] = ACTIONS(486), - [anon_sym_ref] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_COLON_COLON] = ACTIONS(486), - [anon_sym__] = ACTIONS(488), - [anon_sym_AMP] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(486), - [sym_mutable_specifier] = ACTIONS(488), - [anon_sym_DOT_DOT] = ACTIONS(488), - [anon_sym_DOT_DOT_EQ] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(486), - [anon_sym_PIPE] = ACTIONS(488), - [anon_sym_CARET] = ACTIONS(488), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_LT_LT] = ACTIONS(488), - [anon_sym_GT_GT] = ACTIONS(488), - [anon_sym_SLASH] = ACTIONS(488), - [anon_sym_PERCENT] = ACTIONS(488), - [anon_sym_PLUS_EQ] = ACTIONS(486), - [anon_sym_DASH_EQ] = ACTIONS(486), - [anon_sym_STAR_EQ] = ACTIONS(486), - [anon_sym_SLASH_EQ] = ACTIONS(486), - [anon_sym_PERCENT_EQ] = ACTIONS(486), - [anon_sym_AMP_EQ] = ACTIONS(486), - [anon_sym_PIPE_EQ] = ACTIONS(486), - [anon_sym_CARET_EQ] = ACTIONS(486), - [anon_sym_LT_LT_EQ] = ACTIONS(486), - [anon_sym_GT_GT_EQ] = ACTIONS(486), - [anon_sym_DOT] = ACTIONS(488), - [sym_integer_literal] = ACTIONS(486), - [aux_sym_string_literal_token1] = ACTIONS(486), - [sym_char_literal] = ACTIONS(486), - [anon_sym_true] = ACTIONS(488), - [anon_sym_false] = ACTIONS(488), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(488), - [sym_super] = ACTIONS(488), - [sym_crate] = ACTIONS(488), - [sym_metavariable] = ACTIONS(486), - [sym_raw_string_literal] = ACTIONS(486), - [sym_float_literal] = ACTIONS(486), + [sym_self] = ACTIONS(412), + [sym_super] = ACTIONS(412), + [sym_crate] = ACTIONS(412), + [sym_metavariable] = ACTIONS(410), + [sym_raw_string_literal] = ACTIONS(410), + [sym_float_literal] = ACTIONS(410), [sym_block_comment] = ACTIONS(3), }, - [221] = { - [sym_identifier] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(498), - [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_PLUS] = ACTIONS(500), - [anon_sym_STAR] = ACTIONS(500), - [anon_sym_QMARK] = ACTIONS(498), - [anon_sym_u8] = ACTIONS(500), - [anon_sym_i8] = ACTIONS(500), - [anon_sym_u16] = ACTIONS(500), - [anon_sym_i16] = ACTIONS(500), - [anon_sym_u32] = ACTIONS(500), - [anon_sym_i32] = ACTIONS(500), - [anon_sym_u64] = ACTIONS(500), - [anon_sym_i64] = ACTIONS(500), - [anon_sym_u128] = ACTIONS(500), - [anon_sym_i128] = ACTIONS(500), - [anon_sym_isize] = ACTIONS(500), - [anon_sym_usize] = ACTIONS(500), - [anon_sym_f32] = ACTIONS(500), - [anon_sym_f64] = ACTIONS(500), - [anon_sym_bool] = ACTIONS(500), - [anon_sym_str] = ACTIONS(500), - [anon_sym_char] = ACTIONS(500), - [anon_sym_as] = ACTIONS(500), - [anon_sym_const] = ACTIONS(500), - [anon_sym_default] = ACTIONS(500), - [anon_sym_union] = ACTIONS(500), - [anon_sym_POUND] = ACTIONS(498), - [anon_sym_EQ] = ACTIONS(500), - [anon_sym_COMMA] = ACTIONS(498), - [anon_sym_ref] = ACTIONS(500), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(500), - [anon_sym_COLON_COLON] = ACTIONS(498), - [anon_sym__] = ACTIONS(500), - [anon_sym_AMP] = ACTIONS(500), - [anon_sym_DOT_DOT_DOT] = ACTIONS(498), - [sym_mutable_specifier] = ACTIONS(500), - [anon_sym_DOT_DOT] = ACTIONS(500), - [anon_sym_DOT_DOT_EQ] = ACTIONS(498), - [anon_sym_DASH] = ACTIONS(500), - [anon_sym_AMP_AMP] = ACTIONS(498), - [anon_sym_PIPE_PIPE] = ACTIONS(498), - [anon_sym_PIPE] = ACTIONS(500), - [anon_sym_CARET] = ACTIONS(500), - [anon_sym_EQ_EQ] = ACTIONS(498), - [anon_sym_BANG_EQ] = ACTIONS(498), - [anon_sym_LT_EQ] = ACTIONS(498), - [anon_sym_GT_EQ] = ACTIONS(498), - [anon_sym_LT_LT] = ACTIONS(500), - [anon_sym_GT_GT] = ACTIONS(500), - [anon_sym_SLASH] = ACTIONS(500), - [anon_sym_PERCENT] = ACTIONS(500), - [anon_sym_PLUS_EQ] = ACTIONS(498), - [anon_sym_DASH_EQ] = ACTIONS(498), - [anon_sym_STAR_EQ] = ACTIONS(498), - [anon_sym_SLASH_EQ] = ACTIONS(498), - [anon_sym_PERCENT_EQ] = ACTIONS(498), - [anon_sym_AMP_EQ] = ACTIONS(498), - [anon_sym_PIPE_EQ] = ACTIONS(498), - [anon_sym_CARET_EQ] = ACTIONS(498), - [anon_sym_LT_LT_EQ] = ACTIONS(498), - [anon_sym_GT_GT_EQ] = ACTIONS(498), - [anon_sym_DOT] = ACTIONS(500), - [sym_integer_literal] = ACTIONS(498), - [aux_sym_string_literal_token1] = ACTIONS(498), - [sym_char_literal] = ACTIONS(498), - [anon_sym_true] = ACTIONS(500), - [anon_sym_false] = ACTIONS(500), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(500), - [sym_super] = ACTIONS(500), - [sym_crate] = ACTIONS(500), - [sym_metavariable] = ACTIONS(498), - [sym_raw_string_literal] = ACTIONS(498), - [sym_float_literal] = ACTIONS(498), + [214] = { + [sym_identifier] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_RBRACE] = ACTIONS(458), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(460), + [anon_sym_QMARK] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(846), + [anon_sym_i8] = ACTIONS(846), + [anon_sym_u16] = ACTIONS(846), + [anon_sym_i16] = ACTIONS(846), + [anon_sym_u32] = ACTIONS(846), + [anon_sym_i32] = ACTIONS(846), + [anon_sym_u64] = ACTIONS(846), + [anon_sym_i64] = ACTIONS(846), + [anon_sym_u128] = ACTIONS(846), + [anon_sym_i128] = ACTIONS(846), + [anon_sym_isize] = ACTIONS(846), + [anon_sym_usize] = ACTIONS(846), + [anon_sym_f32] = ACTIONS(846), + [anon_sym_f64] = ACTIONS(846), + [anon_sym_bool] = ACTIONS(846), + [anon_sym_str] = ACTIONS(846), + [anon_sym_char] = ACTIONS(846), + [anon_sym_as] = ACTIONS(460), + [anon_sym_const] = ACTIONS(846), + [anon_sym_default] = ACTIONS(846), + [anon_sym_union] = ACTIONS(846), + [anon_sym_POUND] = ACTIONS(848), + [anon_sym_EQ] = ACTIONS(460), + [anon_sym_COMMA] = ACTIONS(458), + [anon_sym_ref] = ACTIONS(846), + [anon_sym_LT] = ACTIONS(846), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_COLON_COLON] = ACTIONS(848), + [anon_sym__] = ACTIONS(846), + [anon_sym_AMP] = ACTIONS(846), + [anon_sym_DOT_DOT_DOT] = ACTIONS(458), + [sym_mutable_specifier] = ACTIONS(846), + [anon_sym_DOT_DOT] = ACTIONS(846), + [anon_sym_DOT_DOT_EQ] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_AMP_AMP] = ACTIONS(458), + [anon_sym_PIPE_PIPE] = ACTIONS(458), + [anon_sym_PIPE] = ACTIONS(460), + [anon_sym_CARET] = ACTIONS(460), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT_EQ] = ACTIONS(458), + [anon_sym_GT_EQ] = ACTIONS(458), + [anon_sym_LT_LT] = ACTIONS(460), + [anon_sym_GT_GT] = ACTIONS(460), + [anon_sym_SLASH] = ACTIONS(460), + [anon_sym_PERCENT] = ACTIONS(460), + [anon_sym_PLUS_EQ] = ACTIONS(458), + [anon_sym_DASH_EQ] = ACTIONS(458), + [anon_sym_STAR_EQ] = ACTIONS(458), + [anon_sym_SLASH_EQ] = ACTIONS(458), + [anon_sym_PERCENT_EQ] = ACTIONS(458), + [anon_sym_AMP_EQ] = ACTIONS(458), + [anon_sym_PIPE_EQ] = ACTIONS(458), + [anon_sym_CARET_EQ] = ACTIONS(458), + [anon_sym_LT_LT_EQ] = ACTIONS(458), + [anon_sym_GT_GT_EQ] = ACTIONS(458), + [anon_sym_DOT] = ACTIONS(460), + [sym_integer_literal] = ACTIONS(848), + [aux_sym_string_literal_token1] = ACTIONS(848), + [sym_char_literal] = ACTIONS(848), + [anon_sym_true] = ACTIONS(846), + [anon_sym_false] = ACTIONS(846), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(846), + [sym_super] = ACTIONS(846), + [sym_crate] = ACTIONS(846), + [sym_metavariable] = ACTIONS(848), + [sym_raw_string_literal] = ACTIONS(848), + [sym_float_literal] = ACTIONS(848), [sym_block_comment] = ACTIONS(3), }, - [222] = { - [sym_identifier] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_RBRACE] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(608), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_QMARK] = ACTIONS(606), - [anon_sym_u8] = ACTIONS(608), - [anon_sym_i8] = ACTIONS(608), - [anon_sym_u16] = ACTIONS(608), - [anon_sym_i16] = ACTIONS(608), - [anon_sym_u32] = ACTIONS(608), - [anon_sym_i32] = ACTIONS(608), - [anon_sym_u64] = ACTIONS(608), - [anon_sym_i64] = ACTIONS(608), - [anon_sym_u128] = ACTIONS(608), - [anon_sym_i128] = ACTIONS(608), - [anon_sym_isize] = ACTIONS(608), - [anon_sym_usize] = ACTIONS(608), - [anon_sym_f32] = ACTIONS(608), - [anon_sym_f64] = ACTIONS(608), - [anon_sym_bool] = ACTIONS(608), - [anon_sym_str] = ACTIONS(608), - [anon_sym_char] = ACTIONS(608), - [anon_sym_as] = ACTIONS(608), - [anon_sym_const] = ACTIONS(608), - [anon_sym_default] = ACTIONS(608), - [anon_sym_union] = ACTIONS(608), - [anon_sym_POUND] = ACTIONS(606), - [anon_sym_EQ] = ACTIONS(608), - [anon_sym_COMMA] = ACTIONS(606), - [anon_sym_ref] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(608), - [anon_sym_GT] = ACTIONS(608), - [anon_sym_COLON_COLON] = ACTIONS(606), - [anon_sym__] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(606), - [sym_mutable_specifier] = ACTIONS(608), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DOT_DOT_EQ] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(608), - [anon_sym_AMP_AMP] = ACTIONS(606), - [anon_sym_PIPE_PIPE] = ACTIONS(606), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_CARET] = ACTIONS(608), - [anon_sym_EQ_EQ] = ACTIONS(606), - [anon_sym_BANG_EQ] = ACTIONS(606), - [anon_sym_LT_EQ] = ACTIONS(606), - [anon_sym_GT_EQ] = ACTIONS(606), - [anon_sym_LT_LT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(608), - [anon_sym_SLASH] = ACTIONS(608), - [anon_sym_PERCENT] = ACTIONS(608), - [anon_sym_PLUS_EQ] = ACTIONS(606), - [anon_sym_DASH_EQ] = ACTIONS(606), - [anon_sym_STAR_EQ] = ACTIONS(606), - [anon_sym_SLASH_EQ] = ACTIONS(606), - [anon_sym_PERCENT_EQ] = ACTIONS(606), - [anon_sym_AMP_EQ] = ACTIONS(606), - [anon_sym_PIPE_EQ] = ACTIONS(606), - [anon_sym_CARET_EQ] = ACTIONS(606), - [anon_sym_LT_LT_EQ] = ACTIONS(606), - [anon_sym_GT_GT_EQ] = ACTIONS(606), - [anon_sym_DOT] = ACTIONS(608), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(606), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(608), - [anon_sym_false] = ACTIONS(608), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(608), - [sym_super] = ACTIONS(608), - [sym_crate] = ACTIONS(608), - [sym_metavariable] = ACTIONS(606), - [sym_raw_string_literal] = ACTIONS(606), - [sym_float_literal] = ACTIONS(606), + [215] = { + [sym_identifier] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(422), + [anon_sym_RBRACE] = ACTIONS(422), + [anon_sym_LBRACK] = ACTIONS(422), + [anon_sym_PLUS] = ACTIONS(424), + [anon_sym_STAR] = ACTIONS(424), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_u8] = ACTIONS(424), + [anon_sym_i8] = ACTIONS(424), + [anon_sym_u16] = ACTIONS(424), + [anon_sym_i16] = ACTIONS(424), + [anon_sym_u32] = ACTIONS(424), + [anon_sym_i32] = ACTIONS(424), + [anon_sym_u64] = ACTIONS(424), + [anon_sym_i64] = ACTIONS(424), + [anon_sym_u128] = ACTIONS(424), + [anon_sym_i128] = ACTIONS(424), + [anon_sym_isize] = ACTIONS(424), + [anon_sym_usize] = ACTIONS(424), + [anon_sym_f32] = ACTIONS(424), + [anon_sym_f64] = ACTIONS(424), + [anon_sym_bool] = ACTIONS(424), + [anon_sym_str] = ACTIONS(424), + [anon_sym_char] = ACTIONS(424), + [anon_sym_as] = ACTIONS(424), + [anon_sym_const] = ACTIONS(424), + [anon_sym_default] = ACTIONS(424), + [anon_sym_union] = ACTIONS(424), + [anon_sym_POUND] = ACTIONS(422), + [anon_sym_EQ] = ACTIONS(424), + [anon_sym_COMMA] = ACTIONS(422), + [anon_sym_ref] = ACTIONS(424), + [anon_sym_LT] = ACTIONS(424), + [anon_sym_GT] = ACTIONS(424), + [anon_sym_COLON_COLON] = ACTIONS(422), + [anon_sym__] = ACTIONS(424), + [anon_sym_AMP] = ACTIONS(424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(422), + [sym_mutable_specifier] = ACTIONS(424), + [anon_sym_DOT_DOT] = ACTIONS(424), + [anon_sym_DOT_DOT_EQ] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(424), + [anon_sym_AMP_AMP] = ACTIONS(422), + [anon_sym_PIPE_PIPE] = ACTIONS(422), + [anon_sym_PIPE] = ACTIONS(424), + [anon_sym_CARET] = ACTIONS(424), + [anon_sym_EQ_EQ] = ACTIONS(422), + [anon_sym_BANG_EQ] = ACTIONS(422), + [anon_sym_LT_EQ] = ACTIONS(422), + [anon_sym_GT_EQ] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(424), + [anon_sym_GT_GT] = ACTIONS(424), + [anon_sym_SLASH] = ACTIONS(424), + [anon_sym_PERCENT] = ACTIONS(424), + [anon_sym_PLUS_EQ] = ACTIONS(422), + [anon_sym_DASH_EQ] = ACTIONS(422), + [anon_sym_STAR_EQ] = ACTIONS(422), + [anon_sym_SLASH_EQ] = ACTIONS(422), + [anon_sym_PERCENT_EQ] = ACTIONS(422), + [anon_sym_AMP_EQ] = ACTIONS(422), + [anon_sym_PIPE_EQ] = ACTIONS(422), + [anon_sym_CARET_EQ] = ACTIONS(422), + [anon_sym_LT_LT_EQ] = ACTIONS(422), + [anon_sym_GT_GT_EQ] = ACTIONS(422), + [anon_sym_DOT] = ACTIONS(424), + [sym_integer_literal] = ACTIONS(422), + [aux_sym_string_literal_token1] = ACTIONS(422), + [sym_char_literal] = ACTIONS(422), + [anon_sym_true] = ACTIONS(424), + [anon_sym_false] = ACTIONS(424), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(424), + [sym_super] = ACTIONS(424), + [sym_crate] = ACTIONS(424), + [sym_metavariable] = ACTIONS(422), + [sym_raw_string_literal] = ACTIONS(422), + [sym_float_literal] = ACTIONS(422), [sym_block_comment] = ACTIONS(3), }, - [223] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(2082), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2078), - [sym_array_type] = STATE(1389), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_type_binding] = STATE(2151), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [sym_block] = STATE(2151), - [sym__literal] = STATE(2151), - [sym_string_literal] = STATE(2301), - [sym_boolean_literal] = STATE(2301), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(856), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), - [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(870), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(870), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), - [sym_raw_string_literal] = ACTIONS(870), - [sym_float_literal] = ACTIONS(870), + [216] = { + [sym_identifier] = ACTIONS(610), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_RBRACE] = ACTIONS(608), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_PLUS] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(608), + [anon_sym_u8] = ACTIONS(610), + [anon_sym_i8] = ACTIONS(610), + [anon_sym_u16] = ACTIONS(610), + [anon_sym_i16] = ACTIONS(610), + [anon_sym_u32] = ACTIONS(610), + [anon_sym_i32] = ACTIONS(610), + [anon_sym_u64] = ACTIONS(610), + [anon_sym_i64] = ACTIONS(610), + [anon_sym_u128] = ACTIONS(610), + [anon_sym_i128] = ACTIONS(610), + [anon_sym_isize] = ACTIONS(610), + [anon_sym_usize] = ACTIONS(610), + [anon_sym_f32] = ACTIONS(610), + [anon_sym_f64] = ACTIONS(610), + [anon_sym_bool] = ACTIONS(610), + [anon_sym_str] = ACTIONS(610), + [anon_sym_char] = ACTIONS(610), + [anon_sym_as] = ACTIONS(610), + [anon_sym_const] = ACTIONS(610), + [anon_sym_default] = ACTIONS(610), + [anon_sym_union] = ACTIONS(610), + [anon_sym_POUND] = ACTIONS(608), + [anon_sym_EQ] = ACTIONS(610), + [anon_sym_COMMA] = ACTIONS(608), + [anon_sym_ref] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(610), + [anon_sym_COLON_COLON] = ACTIONS(608), + [anon_sym__] = ACTIONS(610), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(608), + [sym_mutable_specifier] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(610), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_CARET] = ACTIONS(610), + [anon_sym_EQ_EQ] = ACTIONS(608), + [anon_sym_BANG_EQ] = ACTIONS(608), + [anon_sym_LT_EQ] = ACTIONS(608), + [anon_sym_GT_EQ] = ACTIONS(608), + [anon_sym_LT_LT] = ACTIONS(610), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_SLASH] = ACTIONS(610), + [anon_sym_PERCENT] = ACTIONS(610), + [anon_sym_PLUS_EQ] = ACTIONS(608), + [anon_sym_DASH_EQ] = ACTIONS(608), + [anon_sym_STAR_EQ] = ACTIONS(608), + [anon_sym_SLASH_EQ] = ACTIONS(608), + [anon_sym_PERCENT_EQ] = ACTIONS(608), + [anon_sym_AMP_EQ] = ACTIONS(608), + [anon_sym_PIPE_EQ] = ACTIONS(608), + [anon_sym_CARET_EQ] = ACTIONS(608), + [anon_sym_LT_LT_EQ] = ACTIONS(608), + [anon_sym_GT_GT_EQ] = ACTIONS(608), + [anon_sym_DOT] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(608), + [aux_sym_string_literal_token1] = ACTIONS(608), + [sym_char_literal] = ACTIONS(608), + [anon_sym_true] = ACTIONS(610), + [anon_sym_false] = ACTIONS(610), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(610), + [sym_super] = ACTIONS(610), + [sym_crate] = ACTIONS(610), + [sym_metavariable] = ACTIONS(608), + [sym_raw_string_literal] = ACTIONS(608), + [sym_float_literal] = ACTIONS(608), [sym_block_comment] = ACTIONS(3), }, - [224] = { - [sym_identifier] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(432), - [anon_sym_RBRACE] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(434), - [anon_sym_STAR] = ACTIONS(434), - [anon_sym_QMARK] = ACTIONS(432), - [anon_sym_u8] = ACTIONS(434), - [anon_sym_i8] = ACTIONS(434), - [anon_sym_u16] = ACTIONS(434), - [anon_sym_i16] = ACTIONS(434), - [anon_sym_u32] = ACTIONS(434), - [anon_sym_i32] = ACTIONS(434), - [anon_sym_u64] = ACTIONS(434), - [anon_sym_i64] = ACTIONS(434), - [anon_sym_u128] = ACTIONS(434), - [anon_sym_i128] = ACTIONS(434), - [anon_sym_isize] = ACTIONS(434), - [anon_sym_usize] = ACTIONS(434), - [anon_sym_f32] = ACTIONS(434), - [anon_sym_f64] = ACTIONS(434), - [anon_sym_bool] = ACTIONS(434), - [anon_sym_str] = ACTIONS(434), - [anon_sym_char] = ACTIONS(434), - [anon_sym_as] = ACTIONS(434), - [anon_sym_const] = ACTIONS(434), - [anon_sym_default] = ACTIONS(434), - [anon_sym_union] = ACTIONS(434), - [anon_sym_POUND] = ACTIONS(432), - [anon_sym_EQ] = ACTIONS(434), - [anon_sym_COMMA] = ACTIONS(432), - [anon_sym_ref] = ACTIONS(434), - [anon_sym_LT] = ACTIONS(434), - [anon_sym_GT] = ACTIONS(434), - [anon_sym_COLON_COLON] = ACTIONS(432), - [anon_sym__] = ACTIONS(434), - [anon_sym_AMP] = ACTIONS(434), - [anon_sym_DOT_DOT_DOT] = ACTIONS(432), - [sym_mutable_specifier] = ACTIONS(434), - [anon_sym_DOT_DOT] = ACTIONS(434), - [anon_sym_DOT_DOT_EQ] = ACTIONS(432), - [anon_sym_DASH] = ACTIONS(434), - [anon_sym_AMP_AMP] = ACTIONS(432), - [anon_sym_PIPE_PIPE] = ACTIONS(432), - [anon_sym_PIPE] = ACTIONS(434), - [anon_sym_CARET] = ACTIONS(434), - [anon_sym_EQ_EQ] = ACTIONS(432), - [anon_sym_BANG_EQ] = ACTIONS(432), - [anon_sym_LT_EQ] = ACTIONS(432), - [anon_sym_GT_EQ] = ACTIONS(432), - [anon_sym_LT_LT] = ACTIONS(434), - [anon_sym_GT_GT] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(434), - [anon_sym_PERCENT] = ACTIONS(434), - [anon_sym_PLUS_EQ] = ACTIONS(432), - [anon_sym_DASH_EQ] = ACTIONS(432), - [anon_sym_STAR_EQ] = ACTIONS(432), - [anon_sym_SLASH_EQ] = ACTIONS(432), - [anon_sym_PERCENT_EQ] = ACTIONS(432), - [anon_sym_AMP_EQ] = ACTIONS(432), - [anon_sym_PIPE_EQ] = ACTIONS(432), - [anon_sym_CARET_EQ] = ACTIONS(432), - [anon_sym_LT_LT_EQ] = ACTIONS(432), - [anon_sym_GT_GT_EQ] = ACTIONS(432), - [anon_sym_DOT] = ACTIONS(434), - [sym_integer_literal] = ACTIONS(432), - [aux_sym_string_literal_token1] = ACTIONS(432), - [sym_char_literal] = ACTIONS(432), - [anon_sym_true] = ACTIONS(434), - [anon_sym_false] = ACTIONS(434), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(434), - [sym_super] = ACTIONS(434), - [sym_crate] = ACTIONS(434), - [sym_metavariable] = ACTIONS(432), - [sym_raw_string_literal] = ACTIONS(432), - [sym_float_literal] = ACTIONS(432), + [217] = { + [sym_identifier] = ACTIONS(474), + [anon_sym_LPAREN] = ACTIONS(472), + [anon_sym_RBRACE] = ACTIONS(472), + [anon_sym_LBRACK] = ACTIONS(472), + [anon_sym_PLUS] = ACTIONS(474), + [anon_sym_STAR] = ACTIONS(474), + [anon_sym_QMARK] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(474), + [anon_sym_i8] = ACTIONS(474), + [anon_sym_u16] = ACTIONS(474), + [anon_sym_i16] = ACTIONS(474), + [anon_sym_u32] = ACTIONS(474), + [anon_sym_i32] = ACTIONS(474), + [anon_sym_u64] = ACTIONS(474), + [anon_sym_i64] = ACTIONS(474), + [anon_sym_u128] = ACTIONS(474), + [anon_sym_i128] = ACTIONS(474), + [anon_sym_isize] = ACTIONS(474), + [anon_sym_usize] = ACTIONS(474), + [anon_sym_f32] = ACTIONS(474), + [anon_sym_f64] = ACTIONS(474), + [anon_sym_bool] = ACTIONS(474), + [anon_sym_str] = ACTIONS(474), + [anon_sym_char] = ACTIONS(474), + [anon_sym_as] = ACTIONS(474), + [anon_sym_const] = ACTIONS(474), + [anon_sym_default] = ACTIONS(474), + [anon_sym_union] = ACTIONS(474), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_EQ] = ACTIONS(474), + [anon_sym_COMMA] = ACTIONS(472), + [anon_sym_ref] = ACTIONS(474), + [anon_sym_LT] = ACTIONS(474), + [anon_sym_GT] = ACTIONS(474), + [anon_sym_COLON_COLON] = ACTIONS(472), + [anon_sym__] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(474), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_mutable_specifier] = ACTIONS(474), + [anon_sym_DOT_DOT] = ACTIONS(474), + [anon_sym_DOT_DOT_EQ] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(474), + [anon_sym_AMP_AMP] = ACTIONS(472), + [anon_sym_PIPE_PIPE] = ACTIONS(472), + [anon_sym_PIPE] = ACTIONS(474), + [anon_sym_CARET] = ACTIONS(474), + [anon_sym_EQ_EQ] = ACTIONS(472), + [anon_sym_BANG_EQ] = ACTIONS(472), + [anon_sym_LT_EQ] = ACTIONS(472), + [anon_sym_GT_EQ] = ACTIONS(472), + [anon_sym_LT_LT] = ACTIONS(474), + [anon_sym_GT_GT] = ACTIONS(474), + [anon_sym_SLASH] = ACTIONS(474), + [anon_sym_PERCENT] = ACTIONS(474), + [anon_sym_PLUS_EQ] = ACTIONS(472), + [anon_sym_DASH_EQ] = ACTIONS(472), + [anon_sym_STAR_EQ] = ACTIONS(472), + [anon_sym_SLASH_EQ] = ACTIONS(472), + [anon_sym_PERCENT_EQ] = ACTIONS(472), + [anon_sym_AMP_EQ] = ACTIONS(472), + [anon_sym_PIPE_EQ] = ACTIONS(472), + [anon_sym_CARET_EQ] = ACTIONS(472), + [anon_sym_LT_LT_EQ] = ACTIONS(472), + [anon_sym_GT_GT_EQ] = ACTIONS(472), + [anon_sym_DOT] = ACTIONS(474), + [sym_integer_literal] = ACTIONS(472), + [aux_sym_string_literal_token1] = ACTIONS(472), + [sym_char_literal] = ACTIONS(472), + [anon_sym_true] = ACTIONS(474), + [anon_sym_false] = ACTIONS(474), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(474), + [sym_super] = ACTIONS(474), + [sym_crate] = ACTIONS(474), + [sym_metavariable] = ACTIONS(472), + [sym_raw_string_literal] = ACTIONS(472), + [sym_float_literal] = ACTIONS(472), [sym_block_comment] = ACTIONS(3), }, - [225] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(2082), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2078), - [sym_array_type] = STATE(1389), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_type_binding] = STATE(2151), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [sym_block] = STATE(2151), - [sym__literal] = STATE(2151), - [sym_string_literal] = STATE(2301), - [sym_boolean_literal] = STATE(2301), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [218] = { [sym_identifier] = ACTIONS(850), [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(856), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), - [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(870), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(870), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), - [sym_raw_string_literal] = ACTIONS(870), - [sym_float_literal] = ACTIONS(870), - [sym_block_comment] = ACTIONS(3), - }, - [226] = { - [sym_identifier] = ACTIONS(458), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_RBRACE] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_STAR] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(456), - [anon_sym_u8] = ACTIONS(458), - [anon_sym_i8] = ACTIONS(458), - [anon_sym_u16] = ACTIONS(458), - [anon_sym_i16] = ACTIONS(458), - [anon_sym_u32] = ACTIONS(458), - [anon_sym_i32] = ACTIONS(458), - [anon_sym_u64] = ACTIONS(458), - [anon_sym_i64] = ACTIONS(458), - [anon_sym_u128] = ACTIONS(458), - [anon_sym_i128] = ACTIONS(458), - [anon_sym_isize] = ACTIONS(458), - [anon_sym_usize] = ACTIONS(458), - [anon_sym_f32] = ACTIONS(458), - [anon_sym_f64] = ACTIONS(458), - [anon_sym_bool] = ACTIONS(458), - [anon_sym_str] = ACTIONS(458), - [anon_sym_char] = ACTIONS(458), - [anon_sym_as] = ACTIONS(458), - [anon_sym_const] = ACTIONS(458), - [anon_sym_default] = ACTIONS(458), - [anon_sym_union] = ACTIONS(458), - [anon_sym_POUND] = ACTIONS(456), - [anon_sym_EQ] = ACTIONS(458), - [anon_sym_COMMA] = ACTIONS(456), - [anon_sym_ref] = ACTIONS(458), - [anon_sym_LT] = ACTIONS(458), - [anon_sym_GT] = ACTIONS(458), - [anon_sym_COLON_COLON] = ACTIONS(456), - [anon_sym__] = ACTIONS(458), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_DOT_DOT_DOT] = ACTIONS(456), - [sym_mutable_specifier] = ACTIONS(458), - [anon_sym_DOT_DOT] = ACTIONS(458), - [anon_sym_DOT_DOT_EQ] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(458), - [anon_sym_AMP_AMP] = ACTIONS(456), - [anon_sym_PIPE_PIPE] = ACTIONS(456), - [anon_sym_PIPE] = ACTIONS(458), - [anon_sym_CARET] = ACTIONS(458), - [anon_sym_EQ_EQ] = ACTIONS(456), - [anon_sym_BANG_EQ] = ACTIONS(456), - [anon_sym_LT_EQ] = ACTIONS(456), - [anon_sym_GT_EQ] = ACTIONS(456), - [anon_sym_LT_LT] = ACTIONS(458), - [anon_sym_GT_GT] = ACTIONS(458), - [anon_sym_SLASH] = ACTIONS(458), - [anon_sym_PERCENT] = ACTIONS(458), - [anon_sym_PLUS_EQ] = ACTIONS(456), - [anon_sym_DASH_EQ] = ACTIONS(456), - [anon_sym_STAR_EQ] = ACTIONS(456), - [anon_sym_SLASH_EQ] = ACTIONS(456), - [anon_sym_PERCENT_EQ] = ACTIONS(456), - [anon_sym_AMP_EQ] = ACTIONS(456), - [anon_sym_PIPE_EQ] = ACTIONS(456), - [anon_sym_CARET_EQ] = ACTIONS(456), - [anon_sym_LT_LT_EQ] = ACTIONS(456), - [anon_sym_GT_GT_EQ] = ACTIONS(456), - [anon_sym_DOT] = ACTIONS(458), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(456), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(458), - [anon_sym_false] = ACTIONS(458), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(458), - [sym_super] = ACTIONS(458), - [sym_crate] = ACTIONS(458), - [sym_metavariable] = ACTIONS(456), - [sym_raw_string_literal] = ACTIONS(456), - [sym_float_literal] = ACTIONS(456), + [anon_sym_RBRACE] = ACTIONS(458), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_PLUS] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(460), + [anon_sym_QMARK] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(850), + [anon_sym_i8] = ACTIONS(850), + [anon_sym_u16] = ACTIONS(850), + [anon_sym_i16] = ACTIONS(850), + [anon_sym_u32] = ACTIONS(850), + [anon_sym_i32] = ACTIONS(850), + [anon_sym_u64] = ACTIONS(850), + [anon_sym_i64] = ACTIONS(850), + [anon_sym_u128] = ACTIONS(850), + [anon_sym_i128] = ACTIONS(850), + [anon_sym_isize] = ACTIONS(850), + [anon_sym_usize] = ACTIONS(850), + [anon_sym_f32] = ACTIONS(850), + [anon_sym_f64] = ACTIONS(850), + [anon_sym_bool] = ACTIONS(850), + [anon_sym_str] = ACTIONS(850), + [anon_sym_char] = ACTIONS(850), + [anon_sym_as] = ACTIONS(460), + [anon_sym_const] = ACTIONS(850), + [anon_sym_default] = ACTIONS(850), + [anon_sym_union] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(460), + [anon_sym_COMMA] = ACTIONS(458), + [anon_sym_ref] = ACTIONS(850), + [anon_sym_LT] = ACTIONS(850), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_COLON_COLON] = ACTIONS(852), + [anon_sym__] = ACTIONS(850), + [anon_sym_AMP] = ACTIONS(850), + [anon_sym_DOT_DOT_DOT] = ACTIONS(458), + [sym_mutable_specifier] = ACTIONS(850), + [anon_sym_DOT_DOT] = ACTIONS(850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(458), + [anon_sym_PIPE_PIPE] = ACTIONS(458), + [anon_sym_PIPE] = ACTIONS(460), + [anon_sym_CARET] = ACTIONS(460), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT_EQ] = ACTIONS(458), + [anon_sym_GT_EQ] = ACTIONS(458), + [anon_sym_LT_LT] = ACTIONS(460), + [anon_sym_GT_GT] = ACTIONS(460), + [anon_sym_SLASH] = ACTIONS(460), + [anon_sym_PERCENT] = ACTIONS(460), + [anon_sym_PLUS_EQ] = ACTIONS(458), + [anon_sym_DASH_EQ] = ACTIONS(458), + [anon_sym_STAR_EQ] = ACTIONS(458), + [anon_sym_SLASH_EQ] = ACTIONS(458), + [anon_sym_PERCENT_EQ] = ACTIONS(458), + [anon_sym_AMP_EQ] = ACTIONS(458), + [anon_sym_PIPE_EQ] = ACTIONS(458), + [anon_sym_CARET_EQ] = ACTIONS(458), + [anon_sym_LT_LT_EQ] = ACTIONS(458), + [anon_sym_GT_GT_EQ] = ACTIONS(458), + [anon_sym_DOT] = ACTIONS(460), + [sym_integer_literal] = ACTIONS(852), + [aux_sym_string_literal_token1] = ACTIONS(852), + [sym_char_literal] = ACTIONS(852), + [anon_sym_true] = ACTIONS(850), + [anon_sym_false] = ACTIONS(850), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(850), + [sym_super] = ACTIONS(850), + [sym_crate] = ACTIONS(850), + [sym_metavariable] = ACTIONS(852), + [sym_raw_string_literal] = ACTIONS(852), + [sym_float_literal] = ACTIONS(852), [sym_block_comment] = ACTIONS(3), }, - [227] = { - [sym_identifier] = ACTIONS(438), - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_STAR] = ACTIONS(438), - [anon_sym_QMARK] = ACTIONS(436), - [anon_sym_u8] = ACTIONS(438), - [anon_sym_i8] = ACTIONS(438), - [anon_sym_u16] = ACTIONS(438), - [anon_sym_i16] = ACTIONS(438), - [anon_sym_u32] = ACTIONS(438), - [anon_sym_i32] = ACTIONS(438), - [anon_sym_u64] = ACTIONS(438), - [anon_sym_i64] = ACTIONS(438), - [anon_sym_u128] = ACTIONS(438), - [anon_sym_i128] = ACTIONS(438), - [anon_sym_isize] = ACTIONS(438), - [anon_sym_usize] = ACTIONS(438), - [anon_sym_f32] = ACTIONS(438), - [anon_sym_f64] = ACTIONS(438), - [anon_sym_bool] = ACTIONS(438), - [anon_sym_str] = ACTIONS(438), - [anon_sym_char] = ACTIONS(438), - [anon_sym_as] = ACTIONS(438), - [anon_sym_const] = ACTIONS(438), - [anon_sym_default] = ACTIONS(438), - [anon_sym_union] = ACTIONS(438), - [anon_sym_POUND] = ACTIONS(436), - [anon_sym_EQ] = ACTIONS(438), - [anon_sym_COMMA] = ACTIONS(436), - [anon_sym_ref] = ACTIONS(438), - [anon_sym_LT] = ACTIONS(438), - [anon_sym_GT] = ACTIONS(438), - [anon_sym_COLON_COLON] = ACTIONS(436), - [anon_sym__] = ACTIONS(438), - [anon_sym_AMP] = ACTIONS(438), - [anon_sym_DOT_DOT_DOT] = ACTIONS(436), - [sym_mutable_specifier] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(438), - [anon_sym_DOT_DOT_EQ] = ACTIONS(436), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_AMP_AMP] = ACTIONS(436), - [anon_sym_PIPE_PIPE] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(438), - [anon_sym_CARET] = ACTIONS(438), - [anon_sym_EQ_EQ] = ACTIONS(436), - [anon_sym_BANG_EQ] = ACTIONS(436), - [anon_sym_LT_EQ] = ACTIONS(436), - [anon_sym_GT_EQ] = ACTIONS(436), - [anon_sym_LT_LT] = ACTIONS(438), - [anon_sym_GT_GT] = ACTIONS(438), - [anon_sym_SLASH] = ACTIONS(438), - [anon_sym_PERCENT] = ACTIONS(438), - [anon_sym_PLUS_EQ] = ACTIONS(436), - [anon_sym_DASH_EQ] = ACTIONS(436), - [anon_sym_STAR_EQ] = ACTIONS(436), - [anon_sym_SLASH_EQ] = ACTIONS(436), - [anon_sym_PERCENT_EQ] = ACTIONS(436), - [anon_sym_AMP_EQ] = ACTIONS(436), - [anon_sym_PIPE_EQ] = ACTIONS(436), - [anon_sym_CARET_EQ] = ACTIONS(436), - [anon_sym_LT_LT_EQ] = ACTIONS(436), - [anon_sym_GT_GT_EQ] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(438), - [sym_integer_literal] = ACTIONS(436), - [aux_sym_string_literal_token1] = ACTIONS(436), - [sym_char_literal] = ACTIONS(436), - [anon_sym_true] = ACTIONS(438), - [anon_sym_false] = ACTIONS(438), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(438), - [sym_super] = ACTIONS(438), - [sym_crate] = ACTIONS(438), - [sym_metavariable] = ACTIONS(436), - [sym_raw_string_literal] = ACTIONS(436), - [sym_float_literal] = ACTIONS(436), + [219] = { + [sym_identifier] = ACTIONS(486), + [anon_sym_LPAREN] = ACTIONS(484), + [anon_sym_RBRACE] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_PLUS] = ACTIONS(486), + [anon_sym_STAR] = ACTIONS(486), + [anon_sym_QMARK] = ACTIONS(484), + [anon_sym_u8] = ACTIONS(486), + [anon_sym_i8] = ACTIONS(486), + [anon_sym_u16] = ACTIONS(486), + [anon_sym_i16] = ACTIONS(486), + [anon_sym_u32] = ACTIONS(486), + [anon_sym_i32] = ACTIONS(486), + [anon_sym_u64] = ACTIONS(486), + [anon_sym_i64] = ACTIONS(486), + [anon_sym_u128] = ACTIONS(486), + [anon_sym_i128] = ACTIONS(486), + [anon_sym_isize] = ACTIONS(486), + [anon_sym_usize] = ACTIONS(486), + [anon_sym_f32] = ACTIONS(486), + [anon_sym_f64] = ACTIONS(486), + [anon_sym_bool] = ACTIONS(486), + [anon_sym_str] = ACTIONS(486), + [anon_sym_char] = ACTIONS(486), + [anon_sym_as] = ACTIONS(486), + [anon_sym_const] = ACTIONS(486), + [anon_sym_default] = ACTIONS(486), + [anon_sym_union] = ACTIONS(486), + [anon_sym_POUND] = ACTIONS(484), + [anon_sym_EQ] = ACTIONS(486), + [anon_sym_COMMA] = ACTIONS(484), + [anon_sym_ref] = ACTIONS(486), + [anon_sym_LT] = ACTIONS(486), + [anon_sym_GT] = ACTIONS(486), + [anon_sym_COLON_COLON] = ACTIONS(484), + [anon_sym__] = ACTIONS(486), + [anon_sym_AMP] = ACTIONS(486), + [anon_sym_DOT_DOT_DOT] = ACTIONS(484), + [sym_mutable_specifier] = ACTIONS(486), + [anon_sym_DOT_DOT] = ACTIONS(486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(486), + [anon_sym_AMP_AMP] = ACTIONS(484), + [anon_sym_PIPE_PIPE] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(486), + [anon_sym_CARET] = ACTIONS(486), + [anon_sym_EQ_EQ] = ACTIONS(484), + [anon_sym_BANG_EQ] = ACTIONS(484), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_LT_LT] = ACTIONS(486), + [anon_sym_GT_GT] = ACTIONS(486), + [anon_sym_SLASH] = ACTIONS(486), + [anon_sym_PERCENT] = ACTIONS(486), + [anon_sym_PLUS_EQ] = ACTIONS(484), + [anon_sym_DASH_EQ] = ACTIONS(484), + [anon_sym_STAR_EQ] = ACTIONS(484), + [anon_sym_SLASH_EQ] = ACTIONS(484), + [anon_sym_PERCENT_EQ] = ACTIONS(484), + [anon_sym_AMP_EQ] = ACTIONS(484), + [anon_sym_PIPE_EQ] = ACTIONS(484), + [anon_sym_CARET_EQ] = ACTIONS(484), + [anon_sym_LT_LT_EQ] = ACTIONS(484), + [anon_sym_GT_GT_EQ] = ACTIONS(484), + [anon_sym_DOT] = ACTIONS(486), + [sym_integer_literal] = ACTIONS(484), + [aux_sym_string_literal_token1] = ACTIONS(484), + [sym_char_literal] = ACTIONS(484), + [anon_sym_true] = ACTIONS(486), + [anon_sym_false] = ACTIONS(486), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(486), + [sym_super] = ACTIONS(486), + [sym_crate] = ACTIONS(486), + [sym_metavariable] = ACTIONS(484), + [sym_raw_string_literal] = ACTIONS(484), + [sym_float_literal] = ACTIONS(484), [sym_block_comment] = ACTIONS(3), }, - [228] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(2082), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2078), - [sym_array_type] = STATE(1389), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_type_binding] = STATE(2151), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [sym_block] = STATE(2151), - [sym__literal] = STATE(2151), - [sym_string_literal] = STATE(2301), - [sym_boolean_literal] = STATE(2301), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(856), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), - [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(870), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(870), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), - [sym_raw_string_literal] = ACTIONS(870), - [sym_float_literal] = ACTIONS(870), + [220] = { + [sym_identifier] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(430), + [anon_sym_RBRACE] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(430), + [anon_sym_PLUS] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_QMARK] = ACTIONS(430), + [anon_sym_u8] = ACTIONS(432), + [anon_sym_i8] = ACTIONS(432), + [anon_sym_u16] = ACTIONS(432), + [anon_sym_i16] = ACTIONS(432), + [anon_sym_u32] = ACTIONS(432), + [anon_sym_i32] = ACTIONS(432), + [anon_sym_u64] = ACTIONS(432), + [anon_sym_i64] = ACTIONS(432), + [anon_sym_u128] = ACTIONS(432), + [anon_sym_i128] = ACTIONS(432), + [anon_sym_isize] = ACTIONS(432), + [anon_sym_usize] = ACTIONS(432), + [anon_sym_f32] = ACTIONS(432), + [anon_sym_f64] = ACTIONS(432), + [anon_sym_bool] = ACTIONS(432), + [anon_sym_str] = ACTIONS(432), + [anon_sym_char] = ACTIONS(432), + [anon_sym_as] = ACTIONS(432), + [anon_sym_const] = ACTIONS(432), + [anon_sym_default] = ACTIONS(432), + [anon_sym_union] = ACTIONS(432), + [anon_sym_POUND] = ACTIONS(430), + [anon_sym_EQ] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(430), + [anon_sym_ref] = ACTIONS(432), + [anon_sym_LT] = ACTIONS(432), + [anon_sym_GT] = ACTIONS(432), + [anon_sym_COLON_COLON] = ACTIONS(430), + [anon_sym__] = ACTIONS(432), + [anon_sym_AMP] = ACTIONS(432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(430), + [sym_mutable_specifier] = ACTIONS(432), + [anon_sym_DOT_DOT] = ACTIONS(432), + [anon_sym_DOT_DOT_EQ] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(432), + [anon_sym_AMP_AMP] = ACTIONS(430), + [anon_sym_PIPE_PIPE] = ACTIONS(430), + [anon_sym_PIPE] = ACTIONS(432), + [anon_sym_CARET] = ACTIONS(432), + [anon_sym_EQ_EQ] = ACTIONS(430), + [anon_sym_BANG_EQ] = ACTIONS(430), + [anon_sym_LT_EQ] = ACTIONS(430), + [anon_sym_GT_EQ] = ACTIONS(430), + [anon_sym_LT_LT] = ACTIONS(432), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_SLASH] = ACTIONS(432), + [anon_sym_PERCENT] = ACTIONS(432), + [anon_sym_PLUS_EQ] = ACTIONS(430), + [anon_sym_DASH_EQ] = ACTIONS(430), + [anon_sym_STAR_EQ] = ACTIONS(430), + [anon_sym_SLASH_EQ] = ACTIONS(430), + [anon_sym_PERCENT_EQ] = ACTIONS(430), + [anon_sym_AMP_EQ] = ACTIONS(430), + [anon_sym_PIPE_EQ] = ACTIONS(430), + [anon_sym_CARET_EQ] = ACTIONS(430), + [anon_sym_LT_LT_EQ] = ACTIONS(430), + [anon_sym_GT_GT_EQ] = ACTIONS(430), + [anon_sym_DOT] = ACTIONS(432), + [sym_integer_literal] = ACTIONS(430), + [aux_sym_string_literal_token1] = ACTIONS(430), + [sym_char_literal] = ACTIONS(430), + [anon_sym_true] = ACTIONS(432), + [anon_sym_false] = ACTIONS(432), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(432), + [sym_super] = ACTIONS(432), + [sym_crate] = ACTIONS(432), + [sym_metavariable] = ACTIONS(430), + [sym_raw_string_literal] = ACTIONS(430), + [sym_float_literal] = ACTIONS(430), [sym_block_comment] = ACTIONS(3), }, - [229] = { - [sym_identifier] = ACTIONS(442), - [anon_sym_LPAREN] = ACTIONS(440), - [anon_sym_RBRACE] = ACTIONS(440), - [anon_sym_LBRACK] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(442), - [anon_sym_QMARK] = ACTIONS(440), - [anon_sym_u8] = ACTIONS(442), - [anon_sym_i8] = ACTIONS(442), - [anon_sym_u16] = ACTIONS(442), - [anon_sym_i16] = ACTIONS(442), - [anon_sym_u32] = ACTIONS(442), - [anon_sym_i32] = ACTIONS(442), - [anon_sym_u64] = ACTIONS(442), - [anon_sym_i64] = ACTIONS(442), - [anon_sym_u128] = ACTIONS(442), - [anon_sym_i128] = ACTIONS(442), - [anon_sym_isize] = ACTIONS(442), - [anon_sym_usize] = ACTIONS(442), - [anon_sym_f32] = ACTIONS(442), - [anon_sym_f64] = ACTIONS(442), - [anon_sym_bool] = ACTIONS(442), - [anon_sym_str] = ACTIONS(442), - [anon_sym_char] = ACTIONS(442), - [anon_sym_as] = ACTIONS(442), - [anon_sym_const] = ACTIONS(442), - [anon_sym_default] = ACTIONS(442), - [anon_sym_union] = ACTIONS(442), - [anon_sym_POUND] = ACTIONS(440), - [anon_sym_EQ] = ACTIONS(442), - [anon_sym_COMMA] = ACTIONS(440), - [anon_sym_ref] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_COLON_COLON] = ACTIONS(440), - [anon_sym__] = ACTIONS(442), - [anon_sym_AMP] = ACTIONS(442), - [anon_sym_DOT_DOT_DOT] = ACTIONS(440), - [sym_mutable_specifier] = ACTIONS(442), - [anon_sym_DOT_DOT] = ACTIONS(442), - [anon_sym_DOT_DOT_EQ] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_AMP_AMP] = ACTIONS(440), - [anon_sym_PIPE_PIPE] = ACTIONS(440), - [anon_sym_PIPE] = ACTIONS(442), - [anon_sym_CARET] = ACTIONS(442), - [anon_sym_EQ_EQ] = ACTIONS(440), - [anon_sym_BANG_EQ] = ACTIONS(440), - [anon_sym_LT_EQ] = ACTIONS(440), - [anon_sym_GT_EQ] = ACTIONS(440), - [anon_sym_LT_LT] = ACTIONS(442), - [anon_sym_GT_GT] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_PERCENT] = ACTIONS(442), - [anon_sym_PLUS_EQ] = ACTIONS(440), - [anon_sym_DASH_EQ] = ACTIONS(440), - [anon_sym_STAR_EQ] = ACTIONS(440), - [anon_sym_SLASH_EQ] = ACTIONS(440), - [anon_sym_PERCENT_EQ] = ACTIONS(440), - [anon_sym_AMP_EQ] = ACTIONS(440), - [anon_sym_PIPE_EQ] = ACTIONS(440), - [anon_sym_CARET_EQ] = ACTIONS(440), - [anon_sym_LT_LT_EQ] = ACTIONS(440), - [anon_sym_GT_GT_EQ] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(442), - [sym_integer_literal] = ACTIONS(440), - [aux_sym_string_literal_token1] = ACTIONS(440), - [sym_char_literal] = ACTIONS(440), - [anon_sym_true] = ACTIONS(442), - [anon_sym_false] = ACTIONS(442), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(442), - [sym_super] = ACTIONS(442), - [sym_crate] = ACTIONS(442), - [sym_metavariable] = ACTIONS(440), - [sym_raw_string_literal] = ACTIONS(440), - [sym_float_literal] = ACTIONS(440), + [221] = { + [sym_identifier] = ACTIONS(482), + [anon_sym_LPAREN] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(480), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(482), + [anon_sym_QMARK] = ACTIONS(480), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_as] = ACTIONS(482), + [anon_sym_const] = ACTIONS(482), + [anon_sym_default] = ACTIONS(482), + [anon_sym_union] = ACTIONS(482), + [anon_sym_POUND] = ACTIONS(480), + [anon_sym_EQ] = ACTIONS(482), + [anon_sym_COMMA] = ACTIONS(480), + [anon_sym_ref] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(482), + [anon_sym_GT] = ACTIONS(482), + [anon_sym_COLON_COLON] = ACTIONS(480), + [anon_sym__] = ACTIONS(482), + [anon_sym_AMP] = ACTIONS(482), + [anon_sym_DOT_DOT_DOT] = ACTIONS(480), + [sym_mutable_specifier] = ACTIONS(482), + [anon_sym_DOT_DOT] = ACTIONS(482), + [anon_sym_DOT_DOT_EQ] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_AMP_AMP] = ACTIONS(480), + [anon_sym_PIPE_PIPE] = ACTIONS(480), + [anon_sym_PIPE] = ACTIONS(482), + [anon_sym_CARET] = ACTIONS(482), + [anon_sym_EQ_EQ] = ACTIONS(480), + [anon_sym_BANG_EQ] = ACTIONS(480), + [anon_sym_LT_EQ] = ACTIONS(480), + [anon_sym_GT_EQ] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(482), + [anon_sym_GT_GT] = ACTIONS(482), + [anon_sym_SLASH] = ACTIONS(482), + [anon_sym_PERCENT] = ACTIONS(482), + [anon_sym_PLUS_EQ] = ACTIONS(480), + [anon_sym_DASH_EQ] = ACTIONS(480), + [anon_sym_STAR_EQ] = ACTIONS(480), + [anon_sym_SLASH_EQ] = ACTIONS(480), + [anon_sym_PERCENT_EQ] = ACTIONS(480), + [anon_sym_AMP_EQ] = ACTIONS(480), + [anon_sym_PIPE_EQ] = ACTIONS(480), + [anon_sym_CARET_EQ] = ACTIONS(480), + [anon_sym_LT_LT_EQ] = ACTIONS(480), + [anon_sym_GT_GT_EQ] = ACTIONS(480), + [anon_sym_DOT] = ACTIONS(482), + [sym_integer_literal] = ACTIONS(480), + [aux_sym_string_literal_token1] = ACTIONS(480), + [sym_char_literal] = ACTIONS(480), + [anon_sym_true] = ACTIONS(482), + [anon_sym_false] = ACTIONS(482), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(482), + [sym_super] = ACTIONS(482), + [sym_crate] = ACTIONS(482), + [sym_metavariable] = ACTIONS(480), + [sym_raw_string_literal] = ACTIONS(480), + [sym_float_literal] = ACTIONS(480), [sym_block_comment] = ACTIONS(3), }, - [230] = { - [sym_identifier] = ACTIONS(496), - [anon_sym_LPAREN] = ACTIONS(494), - [anon_sym_RBRACE] = ACTIONS(494), - [anon_sym_LBRACK] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_STAR] = ACTIONS(496), - [anon_sym_QMARK] = ACTIONS(494), - [anon_sym_u8] = ACTIONS(496), - [anon_sym_i8] = ACTIONS(496), - [anon_sym_u16] = ACTIONS(496), - [anon_sym_i16] = ACTIONS(496), - [anon_sym_u32] = ACTIONS(496), - [anon_sym_i32] = ACTIONS(496), - [anon_sym_u64] = ACTIONS(496), - [anon_sym_i64] = ACTIONS(496), - [anon_sym_u128] = ACTIONS(496), - [anon_sym_i128] = ACTIONS(496), - [anon_sym_isize] = ACTIONS(496), - [anon_sym_usize] = ACTIONS(496), - [anon_sym_f32] = ACTIONS(496), - [anon_sym_f64] = ACTIONS(496), - [anon_sym_bool] = ACTIONS(496), - [anon_sym_str] = ACTIONS(496), - [anon_sym_char] = ACTIONS(496), - [anon_sym_as] = ACTIONS(496), - [anon_sym_const] = ACTIONS(496), - [anon_sym_default] = ACTIONS(496), - [anon_sym_union] = ACTIONS(496), - [anon_sym_POUND] = ACTIONS(494), - [anon_sym_EQ] = ACTIONS(496), - [anon_sym_COMMA] = ACTIONS(494), - [anon_sym_ref] = ACTIONS(496), - [anon_sym_LT] = ACTIONS(496), - [anon_sym_GT] = ACTIONS(496), - [anon_sym_COLON_COLON] = ACTIONS(494), - [anon_sym__] = ACTIONS(496), - [anon_sym_AMP] = ACTIONS(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(494), - [sym_mutable_specifier] = ACTIONS(496), - [anon_sym_DOT_DOT] = ACTIONS(496), - [anon_sym_DOT_DOT_EQ] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_AMP_AMP] = ACTIONS(494), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_PIPE] = ACTIONS(496), - [anon_sym_CARET] = ACTIONS(496), - [anon_sym_EQ_EQ] = ACTIONS(494), - [anon_sym_BANG_EQ] = ACTIONS(494), - [anon_sym_LT_EQ] = ACTIONS(494), - [anon_sym_GT_EQ] = ACTIONS(494), - [anon_sym_LT_LT] = ACTIONS(496), - [anon_sym_GT_GT] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(496), - [anon_sym_PERCENT] = ACTIONS(496), - [anon_sym_PLUS_EQ] = ACTIONS(494), - [anon_sym_DASH_EQ] = ACTIONS(494), - [anon_sym_STAR_EQ] = ACTIONS(494), - [anon_sym_SLASH_EQ] = ACTIONS(494), - [anon_sym_PERCENT_EQ] = ACTIONS(494), - [anon_sym_AMP_EQ] = ACTIONS(494), - [anon_sym_PIPE_EQ] = ACTIONS(494), - [anon_sym_CARET_EQ] = ACTIONS(494), - [anon_sym_LT_LT_EQ] = ACTIONS(494), - [anon_sym_GT_GT_EQ] = ACTIONS(494), - [anon_sym_DOT] = ACTIONS(496), - [sym_integer_literal] = ACTIONS(494), - [aux_sym_string_literal_token1] = ACTIONS(494), - [sym_char_literal] = ACTIONS(494), - [anon_sym_true] = ACTIONS(496), - [anon_sym_false] = ACTIONS(496), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(496), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(494), - [sym_raw_string_literal] = ACTIONS(494), - [sym_float_literal] = ACTIONS(494), + [222] = { + [sym_identifier] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_STAR] = ACTIONS(494), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_u8] = ACTIONS(494), + [anon_sym_i8] = ACTIONS(494), + [anon_sym_u16] = ACTIONS(494), + [anon_sym_i16] = ACTIONS(494), + [anon_sym_u32] = ACTIONS(494), + [anon_sym_i32] = ACTIONS(494), + [anon_sym_u64] = ACTIONS(494), + [anon_sym_i64] = ACTIONS(494), + [anon_sym_u128] = ACTIONS(494), + [anon_sym_i128] = ACTIONS(494), + [anon_sym_isize] = ACTIONS(494), + [anon_sym_usize] = ACTIONS(494), + [anon_sym_f32] = ACTIONS(494), + [anon_sym_f64] = ACTIONS(494), + [anon_sym_bool] = ACTIONS(494), + [anon_sym_str] = ACTIONS(494), + [anon_sym_char] = ACTIONS(494), + [anon_sym_as] = ACTIONS(494), + [anon_sym_const] = ACTIONS(494), + [anon_sym_default] = ACTIONS(494), + [anon_sym_union] = ACTIONS(494), + [anon_sym_POUND] = ACTIONS(492), + [anon_sym_EQ] = ACTIONS(494), + [anon_sym_COMMA] = ACTIONS(492), + [anon_sym_ref] = ACTIONS(494), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym__] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(494), + [anon_sym_DOT_DOT_DOT] = ACTIONS(492), + [sym_mutable_specifier] = ACTIONS(494), + [anon_sym_DOT_DOT] = ACTIONS(494), + [anon_sym_DOT_DOT_EQ] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_AMP_AMP] = ACTIONS(492), + [anon_sym_PIPE_PIPE] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(494), + [anon_sym_CARET] = ACTIONS(494), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(494), + [anon_sym_PERCENT] = ACTIONS(494), + [anon_sym_PLUS_EQ] = ACTIONS(492), + [anon_sym_DASH_EQ] = ACTIONS(492), + [anon_sym_STAR_EQ] = ACTIONS(492), + [anon_sym_SLASH_EQ] = ACTIONS(492), + [anon_sym_PERCENT_EQ] = ACTIONS(492), + [anon_sym_AMP_EQ] = ACTIONS(492), + [anon_sym_PIPE_EQ] = ACTIONS(492), + [anon_sym_CARET_EQ] = ACTIONS(492), + [anon_sym_LT_LT_EQ] = ACTIONS(492), + [anon_sym_GT_GT_EQ] = ACTIONS(492), + [anon_sym_DOT] = ACTIONS(494), + [sym_integer_literal] = ACTIONS(492), + [aux_sym_string_literal_token1] = ACTIONS(492), + [sym_char_literal] = ACTIONS(492), + [anon_sym_true] = ACTIONS(494), + [anon_sym_false] = ACTIONS(494), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(492), + [sym_raw_string_literal] = ACTIONS(492), + [sym_float_literal] = ACTIONS(492), [sym_block_comment] = ACTIONS(3), }, - [231] = { - [sym_identifier] = ACTIONS(602), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(602), - [anon_sym_i8] = ACTIONS(602), - [anon_sym_u16] = ACTIONS(602), - [anon_sym_i16] = ACTIONS(602), - [anon_sym_u32] = ACTIONS(602), - [anon_sym_i32] = ACTIONS(602), - [anon_sym_u64] = ACTIONS(602), - [anon_sym_i64] = ACTIONS(602), - [anon_sym_u128] = ACTIONS(602), - [anon_sym_i128] = ACTIONS(602), - [anon_sym_isize] = ACTIONS(602), - [anon_sym_usize] = ACTIONS(602), - [anon_sym_f32] = ACTIONS(602), - [anon_sym_f64] = ACTIONS(602), - [anon_sym_bool] = ACTIONS(602), - [anon_sym_str] = ACTIONS(602), - [anon_sym_char] = ACTIONS(602), - [anon_sym_as] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_default] = ACTIONS(602), - [anon_sym_union] = ACTIONS(602), - [anon_sym_POUND] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_COMMA] = ACTIONS(600), - [anon_sym_ref] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_COLON_COLON] = ACTIONS(600), - [anon_sym__] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(600), - [sym_mutable_specifier] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_EQ] = ACTIONS(600), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(600), - [anon_sym_BANG_EQ] = ACTIONS(600), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(600), - [anon_sym_DASH_EQ] = ACTIONS(600), - [anon_sym_STAR_EQ] = ACTIONS(600), - [anon_sym_SLASH_EQ] = ACTIONS(600), - [anon_sym_PERCENT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(600), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(602), - [sym_integer_literal] = ACTIONS(600), - [aux_sym_string_literal_token1] = ACTIONS(600), - [sym_char_literal] = ACTIONS(600), - [anon_sym_true] = ACTIONS(602), - [anon_sym_false] = ACTIONS(602), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(602), - [sym_super] = ACTIONS(602), - [sym_crate] = ACTIONS(602), - [sym_metavariable] = ACTIONS(600), - [sym_raw_string_literal] = ACTIONS(600), - [sym_float_literal] = ACTIONS(600), + [223] = { + [sym_identifier] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(490), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_QMARK] = ACTIONS(488), + [anon_sym_u8] = ACTIONS(490), + [anon_sym_i8] = ACTIONS(490), + [anon_sym_u16] = ACTIONS(490), + [anon_sym_i16] = ACTIONS(490), + [anon_sym_u32] = ACTIONS(490), + [anon_sym_i32] = ACTIONS(490), + [anon_sym_u64] = ACTIONS(490), + [anon_sym_i64] = ACTIONS(490), + [anon_sym_u128] = ACTIONS(490), + [anon_sym_i128] = ACTIONS(490), + [anon_sym_isize] = ACTIONS(490), + [anon_sym_usize] = ACTIONS(490), + [anon_sym_f32] = ACTIONS(490), + [anon_sym_f64] = ACTIONS(490), + [anon_sym_bool] = ACTIONS(490), + [anon_sym_str] = ACTIONS(490), + [anon_sym_char] = ACTIONS(490), + [anon_sym_as] = ACTIONS(490), + [anon_sym_const] = ACTIONS(490), + [anon_sym_default] = ACTIONS(490), + [anon_sym_union] = ACTIONS(490), + [anon_sym_POUND] = ACTIONS(488), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(488), + [anon_sym_ref] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(490), + [anon_sym_GT] = ACTIONS(490), + [anon_sym_COLON_COLON] = ACTIONS(488), + [anon_sym__] = ACTIONS(490), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [sym_mutable_specifier] = ACTIONS(490), + [anon_sym_DOT_DOT] = ACTIONS(490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(490), + [anon_sym_AMP_AMP] = ACTIONS(488), + [anon_sym_PIPE_PIPE] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(490), + [anon_sym_CARET] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(488), + [anon_sym_BANG_EQ] = ACTIONS(488), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_LT_LT] = ACTIONS(490), + [anon_sym_GT_GT] = ACTIONS(490), + [anon_sym_SLASH] = ACTIONS(490), + [anon_sym_PERCENT] = ACTIONS(490), + [anon_sym_PLUS_EQ] = ACTIONS(488), + [anon_sym_DASH_EQ] = ACTIONS(488), + [anon_sym_STAR_EQ] = ACTIONS(488), + [anon_sym_SLASH_EQ] = ACTIONS(488), + [anon_sym_PERCENT_EQ] = ACTIONS(488), + [anon_sym_AMP_EQ] = ACTIONS(488), + [anon_sym_PIPE_EQ] = ACTIONS(488), + [anon_sym_CARET_EQ] = ACTIONS(488), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_GT_GT_EQ] = ACTIONS(488), + [anon_sym_DOT] = ACTIONS(490), + [sym_integer_literal] = ACTIONS(488), + [aux_sym_string_literal_token1] = ACTIONS(488), + [sym_char_literal] = ACTIONS(488), + [anon_sym_true] = ACTIONS(490), + [anon_sym_false] = ACTIONS(490), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(490), + [sym_super] = ACTIONS(490), + [sym_crate] = ACTIONS(490), + [sym_metavariable] = ACTIONS(488), + [sym_raw_string_literal] = ACTIONS(488), + [sym_float_literal] = ACTIONS(488), [sym_block_comment] = ACTIONS(3), }, - [232] = { + [224] = { [sym_identifier] = ACTIONS(464), [anon_sym_LPAREN] = ACTIONS(462), [anon_sym_RBRACE] = ACTIONS(462), @@ -42170,481 +41528,1121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(462), [sym_block_comment] = ACTIONS(3), }, + [225] = { + [sym_identifier] = ACTIONS(478), + [anon_sym_LPAREN] = ACTIONS(476), + [anon_sym_RBRACE] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(478), + [anon_sym_QMARK] = ACTIONS(476), + [anon_sym_u8] = ACTIONS(478), + [anon_sym_i8] = ACTIONS(478), + [anon_sym_u16] = ACTIONS(478), + [anon_sym_i16] = ACTIONS(478), + [anon_sym_u32] = ACTIONS(478), + [anon_sym_i32] = ACTIONS(478), + [anon_sym_u64] = ACTIONS(478), + [anon_sym_i64] = ACTIONS(478), + [anon_sym_u128] = ACTIONS(478), + [anon_sym_i128] = ACTIONS(478), + [anon_sym_isize] = ACTIONS(478), + [anon_sym_usize] = ACTIONS(478), + [anon_sym_f32] = ACTIONS(478), + [anon_sym_f64] = ACTIONS(478), + [anon_sym_bool] = ACTIONS(478), + [anon_sym_str] = ACTIONS(478), + [anon_sym_char] = ACTIONS(478), + [anon_sym_as] = ACTIONS(478), + [anon_sym_const] = ACTIONS(478), + [anon_sym_default] = ACTIONS(478), + [anon_sym_union] = ACTIONS(478), + [anon_sym_POUND] = ACTIONS(476), + [anon_sym_EQ] = ACTIONS(478), + [anon_sym_COMMA] = ACTIONS(476), + [anon_sym_ref] = ACTIONS(478), + [anon_sym_LT] = ACTIONS(478), + [anon_sym_GT] = ACTIONS(478), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym__] = ACTIONS(478), + [anon_sym_AMP] = ACTIONS(478), + [anon_sym_DOT_DOT_DOT] = ACTIONS(476), + [sym_mutable_specifier] = ACTIONS(478), + [anon_sym_DOT_DOT] = ACTIONS(478), + [anon_sym_DOT_DOT_EQ] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(478), + [anon_sym_AMP_AMP] = ACTIONS(476), + [anon_sym_PIPE_PIPE] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(478), + [anon_sym_CARET] = ACTIONS(478), + [anon_sym_EQ_EQ] = ACTIONS(476), + [anon_sym_BANG_EQ] = ACTIONS(476), + [anon_sym_LT_EQ] = ACTIONS(476), + [anon_sym_GT_EQ] = ACTIONS(476), + [anon_sym_LT_LT] = ACTIONS(478), + [anon_sym_GT_GT] = ACTIONS(478), + [anon_sym_SLASH] = ACTIONS(478), + [anon_sym_PERCENT] = ACTIONS(478), + [anon_sym_PLUS_EQ] = ACTIONS(476), + [anon_sym_DASH_EQ] = ACTIONS(476), + [anon_sym_STAR_EQ] = ACTIONS(476), + [anon_sym_SLASH_EQ] = ACTIONS(476), + [anon_sym_PERCENT_EQ] = ACTIONS(476), + [anon_sym_AMP_EQ] = ACTIONS(476), + [anon_sym_PIPE_EQ] = ACTIONS(476), + [anon_sym_CARET_EQ] = ACTIONS(476), + [anon_sym_LT_LT_EQ] = ACTIONS(476), + [anon_sym_GT_GT_EQ] = ACTIONS(476), + [anon_sym_DOT] = ACTIONS(478), + [sym_integer_literal] = ACTIONS(476), + [aux_sym_string_literal_token1] = ACTIONS(476), + [sym_char_literal] = ACTIONS(476), + [anon_sym_true] = ACTIONS(478), + [anon_sym_false] = ACTIONS(478), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(478), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(476), + [sym_raw_string_literal] = ACTIONS(476), + [sym_float_literal] = ACTIONS(476), + [sym_block_comment] = ACTIONS(3), + }, + [226] = { + [sym_identifier] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_RBRACE] = ACTIONS(434), + [anon_sym_LBRACK] = ACTIONS(434), + [anon_sym_PLUS] = ACTIONS(436), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_QMARK] = ACTIONS(434), + [anon_sym_u8] = ACTIONS(436), + [anon_sym_i8] = ACTIONS(436), + [anon_sym_u16] = ACTIONS(436), + [anon_sym_i16] = ACTIONS(436), + [anon_sym_u32] = ACTIONS(436), + [anon_sym_i32] = ACTIONS(436), + [anon_sym_u64] = ACTIONS(436), + [anon_sym_i64] = ACTIONS(436), + [anon_sym_u128] = ACTIONS(436), + [anon_sym_i128] = ACTIONS(436), + [anon_sym_isize] = ACTIONS(436), + [anon_sym_usize] = ACTIONS(436), + [anon_sym_f32] = ACTIONS(436), + [anon_sym_f64] = ACTIONS(436), + [anon_sym_bool] = ACTIONS(436), + [anon_sym_str] = ACTIONS(436), + [anon_sym_char] = ACTIONS(436), + [anon_sym_as] = ACTIONS(436), + [anon_sym_const] = ACTIONS(436), + [anon_sym_default] = ACTIONS(436), + [anon_sym_union] = ACTIONS(436), + [anon_sym_POUND] = ACTIONS(434), + [anon_sym_EQ] = ACTIONS(436), + [anon_sym_COMMA] = ACTIONS(434), + [anon_sym_ref] = ACTIONS(436), + [anon_sym_LT] = ACTIONS(436), + [anon_sym_GT] = ACTIONS(436), + [anon_sym_COLON_COLON] = ACTIONS(434), + [anon_sym__] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(434), + [sym_mutable_specifier] = ACTIONS(436), + [anon_sym_DOT_DOT] = ACTIONS(436), + [anon_sym_DOT_DOT_EQ] = ACTIONS(434), + [anon_sym_DASH] = ACTIONS(436), + [anon_sym_AMP_AMP] = ACTIONS(434), + [anon_sym_PIPE_PIPE] = ACTIONS(434), + [anon_sym_PIPE] = ACTIONS(436), + [anon_sym_CARET] = ACTIONS(436), + [anon_sym_EQ_EQ] = ACTIONS(434), + [anon_sym_BANG_EQ] = ACTIONS(434), + [anon_sym_LT_EQ] = ACTIONS(434), + [anon_sym_GT_EQ] = ACTIONS(434), + [anon_sym_LT_LT] = ACTIONS(436), + [anon_sym_GT_GT] = ACTIONS(436), + [anon_sym_SLASH] = ACTIONS(436), + [anon_sym_PERCENT] = ACTIONS(436), + [anon_sym_PLUS_EQ] = ACTIONS(434), + [anon_sym_DASH_EQ] = ACTIONS(434), + [anon_sym_STAR_EQ] = ACTIONS(434), + [anon_sym_SLASH_EQ] = ACTIONS(434), + [anon_sym_PERCENT_EQ] = ACTIONS(434), + [anon_sym_AMP_EQ] = ACTIONS(434), + [anon_sym_PIPE_EQ] = ACTIONS(434), + [anon_sym_CARET_EQ] = ACTIONS(434), + [anon_sym_LT_LT_EQ] = ACTIONS(434), + [anon_sym_GT_GT_EQ] = ACTIONS(434), + [anon_sym_DOT] = ACTIONS(436), + [sym_integer_literal] = ACTIONS(434), + [aux_sym_string_literal_token1] = ACTIONS(434), + [sym_char_literal] = ACTIONS(434), + [anon_sym_true] = ACTIONS(436), + [anon_sym_false] = ACTIONS(436), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(436), + [sym_super] = ACTIONS(436), + [sym_crate] = ACTIONS(436), + [sym_metavariable] = ACTIONS(434), + [sym_raw_string_literal] = ACTIONS(434), + [sym_float_literal] = ACTIONS(434), + [sym_block_comment] = ACTIONS(3), + }, + [227] = { + [sym_identifier] = ACTIONS(452), + [anon_sym_LPAREN] = ACTIONS(450), + [anon_sym_RBRACE] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_STAR] = ACTIONS(452), + [anon_sym_QMARK] = ACTIONS(450), + [anon_sym_u8] = ACTIONS(452), + [anon_sym_i8] = ACTIONS(452), + [anon_sym_u16] = ACTIONS(452), + [anon_sym_i16] = ACTIONS(452), + [anon_sym_u32] = ACTIONS(452), + [anon_sym_i32] = ACTIONS(452), + [anon_sym_u64] = ACTIONS(452), + [anon_sym_i64] = ACTIONS(452), + [anon_sym_u128] = ACTIONS(452), + [anon_sym_i128] = ACTIONS(452), + [anon_sym_isize] = ACTIONS(452), + [anon_sym_usize] = ACTIONS(452), + [anon_sym_f32] = ACTIONS(452), + [anon_sym_f64] = ACTIONS(452), + [anon_sym_bool] = ACTIONS(452), + [anon_sym_str] = ACTIONS(452), + [anon_sym_char] = ACTIONS(452), + [anon_sym_as] = ACTIONS(452), + [anon_sym_const] = ACTIONS(452), + [anon_sym_default] = ACTIONS(452), + [anon_sym_union] = ACTIONS(452), + [anon_sym_POUND] = ACTIONS(450), + [anon_sym_EQ] = ACTIONS(452), + [anon_sym_COMMA] = ACTIONS(450), + [anon_sym_ref] = ACTIONS(452), + [anon_sym_LT] = ACTIONS(452), + [anon_sym_GT] = ACTIONS(452), + [anon_sym_COLON_COLON] = ACTIONS(450), + [anon_sym__] = ACTIONS(452), + [anon_sym_AMP] = ACTIONS(452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), + [sym_mutable_specifier] = ACTIONS(452), + [anon_sym_DOT_DOT] = ACTIONS(452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_AMP_AMP] = ACTIONS(450), + [anon_sym_PIPE_PIPE] = ACTIONS(450), + [anon_sym_PIPE] = ACTIONS(452), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_EQ_EQ] = ACTIONS(450), + [anon_sym_BANG_EQ] = ACTIONS(450), + [anon_sym_LT_EQ] = ACTIONS(450), + [anon_sym_GT_EQ] = ACTIONS(450), + [anon_sym_LT_LT] = ACTIONS(452), + [anon_sym_GT_GT] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(452), + [anon_sym_PERCENT] = ACTIONS(452), + [anon_sym_PLUS_EQ] = ACTIONS(450), + [anon_sym_DASH_EQ] = ACTIONS(450), + [anon_sym_STAR_EQ] = ACTIONS(450), + [anon_sym_SLASH_EQ] = ACTIONS(450), + [anon_sym_PERCENT_EQ] = ACTIONS(450), + [anon_sym_AMP_EQ] = ACTIONS(450), + [anon_sym_PIPE_EQ] = ACTIONS(450), + [anon_sym_CARET_EQ] = ACTIONS(450), + [anon_sym_LT_LT_EQ] = ACTIONS(450), + [anon_sym_GT_GT_EQ] = ACTIONS(450), + [anon_sym_DOT] = ACTIONS(452), + [sym_integer_literal] = ACTIONS(450), + [aux_sym_string_literal_token1] = ACTIONS(450), + [sym_char_literal] = ACTIONS(450), + [anon_sym_true] = ACTIONS(452), + [anon_sym_false] = ACTIONS(452), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(452), + [sym_super] = ACTIONS(452), + [sym_crate] = ACTIONS(452), + [sym_metavariable] = ACTIONS(450), + [sym_raw_string_literal] = ACTIONS(450), + [sym_float_literal] = ACTIONS(450), + [sym_block_comment] = ACTIONS(3), + }, + [228] = { + [sym_identifier] = ACTIONS(428), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_RBRACE] = ACTIONS(426), + [anon_sym_LBRACK] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(428), + [anon_sym_STAR] = ACTIONS(428), + [anon_sym_QMARK] = ACTIONS(426), + [anon_sym_u8] = ACTIONS(428), + [anon_sym_i8] = ACTIONS(428), + [anon_sym_u16] = ACTIONS(428), + [anon_sym_i16] = ACTIONS(428), + [anon_sym_u32] = ACTIONS(428), + [anon_sym_i32] = ACTIONS(428), + [anon_sym_u64] = ACTIONS(428), + [anon_sym_i64] = ACTIONS(428), + [anon_sym_u128] = ACTIONS(428), + [anon_sym_i128] = ACTIONS(428), + [anon_sym_isize] = ACTIONS(428), + [anon_sym_usize] = ACTIONS(428), + [anon_sym_f32] = ACTIONS(428), + [anon_sym_f64] = ACTIONS(428), + [anon_sym_bool] = ACTIONS(428), + [anon_sym_str] = ACTIONS(428), + [anon_sym_char] = ACTIONS(428), + [anon_sym_as] = ACTIONS(428), + [anon_sym_const] = ACTIONS(428), + [anon_sym_default] = ACTIONS(428), + [anon_sym_union] = ACTIONS(428), + [anon_sym_POUND] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(428), + [anon_sym_COMMA] = ACTIONS(426), + [anon_sym_ref] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(428), + [anon_sym_COLON_COLON] = ACTIONS(426), + [anon_sym__] = ACTIONS(428), + [anon_sym_AMP] = ACTIONS(428), + [anon_sym_DOT_DOT_DOT] = ACTIONS(426), + [sym_mutable_specifier] = ACTIONS(428), + [anon_sym_DOT_DOT] = ACTIONS(428), + [anon_sym_DOT_DOT_EQ] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(428), + [anon_sym_AMP_AMP] = ACTIONS(426), + [anon_sym_PIPE_PIPE] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(428), + [anon_sym_CARET] = ACTIONS(428), + [anon_sym_EQ_EQ] = ACTIONS(426), + [anon_sym_BANG_EQ] = ACTIONS(426), + [anon_sym_LT_EQ] = ACTIONS(426), + [anon_sym_GT_EQ] = ACTIONS(426), + [anon_sym_LT_LT] = ACTIONS(428), + [anon_sym_GT_GT] = ACTIONS(428), + [anon_sym_SLASH] = ACTIONS(428), + [anon_sym_PERCENT] = ACTIONS(428), + [anon_sym_PLUS_EQ] = ACTIONS(426), + [anon_sym_DASH_EQ] = ACTIONS(426), + [anon_sym_STAR_EQ] = ACTIONS(426), + [anon_sym_SLASH_EQ] = ACTIONS(426), + [anon_sym_PERCENT_EQ] = ACTIONS(426), + [anon_sym_AMP_EQ] = ACTIONS(426), + [anon_sym_PIPE_EQ] = ACTIONS(426), + [anon_sym_CARET_EQ] = ACTIONS(426), + [anon_sym_LT_LT_EQ] = ACTIONS(426), + [anon_sym_GT_GT_EQ] = ACTIONS(426), + [anon_sym_DOT] = ACTIONS(428), + [sym_integer_literal] = ACTIONS(426), + [aux_sym_string_literal_token1] = ACTIONS(426), + [sym_char_literal] = ACTIONS(426), + [anon_sym_true] = ACTIONS(428), + [anon_sym_false] = ACTIONS(428), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(428), + [sym_super] = ACTIONS(428), + [sym_crate] = ACTIONS(428), + [sym_metavariable] = ACTIONS(426), + [sym_raw_string_literal] = ACTIONS(426), + [sym_float_literal] = ACTIONS(426), + [sym_block_comment] = ACTIONS(3), + }, + [229] = { + [sym_identifier] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(442), + [anon_sym_RBRACE] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_STAR] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(442), + [anon_sym_u8] = ACTIONS(444), + [anon_sym_i8] = ACTIONS(444), + [anon_sym_u16] = ACTIONS(444), + [anon_sym_i16] = ACTIONS(444), + [anon_sym_u32] = ACTIONS(444), + [anon_sym_i32] = ACTIONS(444), + [anon_sym_u64] = ACTIONS(444), + [anon_sym_i64] = ACTIONS(444), + [anon_sym_u128] = ACTIONS(444), + [anon_sym_i128] = ACTIONS(444), + [anon_sym_isize] = ACTIONS(444), + [anon_sym_usize] = ACTIONS(444), + [anon_sym_f32] = ACTIONS(444), + [anon_sym_f64] = ACTIONS(444), + [anon_sym_bool] = ACTIONS(444), + [anon_sym_str] = ACTIONS(444), + [anon_sym_char] = ACTIONS(444), + [anon_sym_as] = ACTIONS(444), + [anon_sym_const] = ACTIONS(444), + [anon_sym_default] = ACTIONS(444), + [anon_sym_union] = ACTIONS(444), + [anon_sym_POUND] = ACTIONS(442), + [anon_sym_EQ] = ACTIONS(444), + [anon_sym_COMMA] = ACTIONS(442), + [anon_sym_ref] = ACTIONS(444), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_GT] = ACTIONS(444), + [anon_sym_COLON_COLON] = ACTIONS(442), + [anon_sym__] = ACTIONS(444), + [anon_sym_AMP] = ACTIONS(444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(442), + [sym_mutable_specifier] = ACTIONS(444), + [anon_sym_DOT_DOT] = ACTIONS(444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_AMP_AMP] = ACTIONS(442), + [anon_sym_PIPE_PIPE] = ACTIONS(442), + [anon_sym_PIPE] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_EQ_EQ] = ACTIONS(442), + [anon_sym_BANG_EQ] = ACTIONS(442), + [anon_sym_LT_EQ] = ACTIONS(442), + [anon_sym_GT_EQ] = ACTIONS(442), + [anon_sym_LT_LT] = ACTIONS(444), + [anon_sym_GT_GT] = ACTIONS(444), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_PERCENT] = ACTIONS(444), + [anon_sym_PLUS_EQ] = ACTIONS(442), + [anon_sym_DASH_EQ] = ACTIONS(442), + [anon_sym_STAR_EQ] = ACTIONS(442), + [anon_sym_SLASH_EQ] = ACTIONS(442), + [anon_sym_PERCENT_EQ] = ACTIONS(442), + [anon_sym_AMP_EQ] = ACTIONS(442), + [anon_sym_PIPE_EQ] = ACTIONS(442), + [anon_sym_CARET_EQ] = ACTIONS(442), + [anon_sym_LT_LT_EQ] = ACTIONS(442), + [anon_sym_GT_GT_EQ] = ACTIONS(442), + [anon_sym_DOT] = ACTIONS(444), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(442), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(444), + [anon_sym_false] = ACTIONS(444), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(444), + [sym_super] = ACTIONS(444), + [sym_crate] = ACTIONS(444), + [sym_metavariable] = ACTIONS(442), + [sym_raw_string_literal] = ACTIONS(442), + [sym_float_literal] = ACTIONS(442), + [sym_block_comment] = ACTIONS(3), + }, + [230] = { + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1935), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(1934), + [sym_array_type] = STATE(1390), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_type_binding] = STATE(2264), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [sym_block] = STATE(2264), + [sym__literal] = STATE(2264), + [sym_string_literal] = STATE(2313), + [sym_boolean_literal] = STATE(2313), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(864), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(866), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), + [anon_sym_dyn] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(874), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(874), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), + [sym_raw_string_literal] = ACTIONS(874), + [sym_float_literal] = ACTIONS(874), + [sym_block_comment] = ACTIONS(3), + }, + [231] = { + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1935), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(1934), + [sym_array_type] = STATE(1390), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_type_binding] = STATE(2264), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [sym_block] = STATE(2264), + [sym__literal] = STATE(2264), + [sym_string_literal] = STATE(2313), + [sym_boolean_literal] = STATE(2313), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(864), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(866), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), + [anon_sym_dyn] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(874), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(874), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), + [sym_raw_string_literal] = ACTIONS(874), + [sym_float_literal] = ACTIONS(874), + [sym_block_comment] = ACTIONS(3), + }, + [232] = { + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1935), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(1934), + [sym_array_type] = STATE(1390), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_type_binding] = STATE(2264), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [sym_block] = STATE(2264), + [sym__literal] = STATE(2264), + [sym_string_literal] = STATE(2313), + [sym_boolean_literal] = STATE(2313), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(864), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(866), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), + [anon_sym_dyn] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(874), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(874), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), + [sym_raw_string_literal] = ACTIONS(874), + [sym_float_literal] = ACTIONS(874), + [sym_block_comment] = ACTIONS(3), + }, [233] = { - [sym_identifier] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RBRACE] = ACTIONS(470), - [anon_sym_LBRACK] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_STAR] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_u8] = ACTIONS(882), - [anon_sym_i8] = ACTIONS(882), - [anon_sym_u16] = ACTIONS(882), - [anon_sym_i16] = ACTIONS(882), - [anon_sym_u32] = ACTIONS(882), - [anon_sym_i32] = ACTIONS(882), - [anon_sym_u64] = ACTIONS(882), - [anon_sym_i64] = ACTIONS(882), - [anon_sym_u128] = ACTIONS(882), - [anon_sym_i128] = ACTIONS(882), - [anon_sym_isize] = ACTIONS(882), - [anon_sym_usize] = ACTIONS(882), - [anon_sym_f32] = ACTIONS(882), - [anon_sym_f64] = ACTIONS(882), - [anon_sym_bool] = ACTIONS(882), - [anon_sym_str] = ACTIONS(882), - [anon_sym_char] = ACTIONS(882), - [anon_sym_as] = ACTIONS(472), - [anon_sym_const] = ACTIONS(882), - [anon_sym_default] = ACTIONS(882), - [anon_sym_union] = ACTIONS(882), - [anon_sym_POUND] = ACTIONS(884), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_COMMA] = ACTIONS(470), - [anon_sym_ref] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(472), - [anon_sym_COLON_COLON] = ACTIONS(884), - [anon_sym__] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(470), - [sym_mutable_specifier] = ACTIONS(882), - [anon_sym_DOT_DOT] = ACTIONS(882), - [anon_sym_DOT_DOT_EQ] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(470), - [anon_sym_PIPE_PIPE] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(470), - [anon_sym_BANG_EQ] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(470), - [anon_sym_LT_LT] = ACTIONS(472), - [anon_sym_GT_GT] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_PERCENT] = ACTIONS(472), - [anon_sym_PLUS_EQ] = ACTIONS(470), - [anon_sym_DASH_EQ] = ACTIONS(470), - [anon_sym_STAR_EQ] = ACTIONS(470), - [anon_sym_SLASH_EQ] = ACTIONS(470), - [anon_sym_PERCENT_EQ] = ACTIONS(470), - [anon_sym_AMP_EQ] = ACTIONS(470), - [anon_sym_PIPE_EQ] = ACTIONS(470), - [anon_sym_CARET_EQ] = ACTIONS(470), - [anon_sym_LT_LT_EQ] = ACTIONS(470), - [anon_sym_GT_GT_EQ] = ACTIONS(470), - [anon_sym_DOT] = ACTIONS(472), - [sym_integer_literal] = ACTIONS(884), - [aux_sym_string_literal_token1] = ACTIONS(884), - [sym_char_literal] = ACTIONS(884), - [anon_sym_true] = ACTIONS(882), - [anon_sym_false] = ACTIONS(882), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(882), - [sym_super] = ACTIONS(882), - [sym_crate] = ACTIONS(882), - [sym_metavariable] = ACTIONS(884), - [sym_raw_string_literal] = ACTIONS(884), - [sym_float_literal] = ACTIONS(884), + [sym_identifier] = ACTIONS(448), + [anon_sym_LPAREN] = ACTIONS(446), + [anon_sym_RBRACE] = ACTIONS(446), + [anon_sym_LBRACK] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(448), + [anon_sym_STAR] = ACTIONS(448), + [anon_sym_QMARK] = ACTIONS(446), + [anon_sym_u8] = ACTIONS(448), + [anon_sym_i8] = ACTIONS(448), + [anon_sym_u16] = ACTIONS(448), + [anon_sym_i16] = ACTIONS(448), + [anon_sym_u32] = ACTIONS(448), + [anon_sym_i32] = ACTIONS(448), + [anon_sym_u64] = ACTIONS(448), + [anon_sym_i64] = ACTIONS(448), + [anon_sym_u128] = ACTIONS(448), + [anon_sym_i128] = ACTIONS(448), + [anon_sym_isize] = ACTIONS(448), + [anon_sym_usize] = ACTIONS(448), + [anon_sym_f32] = ACTIONS(448), + [anon_sym_f64] = ACTIONS(448), + [anon_sym_bool] = ACTIONS(448), + [anon_sym_str] = ACTIONS(448), + [anon_sym_char] = ACTIONS(448), + [anon_sym_as] = ACTIONS(448), + [anon_sym_const] = ACTIONS(448), + [anon_sym_default] = ACTIONS(448), + [anon_sym_union] = ACTIONS(448), + [anon_sym_POUND] = ACTIONS(446), + [anon_sym_EQ] = ACTIONS(448), + [anon_sym_COMMA] = ACTIONS(446), + [anon_sym_ref] = ACTIONS(448), + [anon_sym_LT] = ACTIONS(448), + [anon_sym_GT] = ACTIONS(448), + [anon_sym_COLON_COLON] = ACTIONS(446), + [anon_sym__] = ACTIONS(448), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(446), + [sym_mutable_specifier] = ACTIONS(448), + [anon_sym_DOT_DOT] = ACTIONS(448), + [anon_sym_DOT_DOT_EQ] = ACTIONS(446), + [anon_sym_DASH] = ACTIONS(448), + [anon_sym_AMP_AMP] = ACTIONS(446), + [anon_sym_PIPE_PIPE] = ACTIONS(446), + [anon_sym_PIPE] = ACTIONS(448), + [anon_sym_CARET] = ACTIONS(448), + [anon_sym_EQ_EQ] = ACTIONS(446), + [anon_sym_BANG_EQ] = ACTIONS(446), + [anon_sym_LT_EQ] = ACTIONS(446), + [anon_sym_GT_EQ] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(448), + [anon_sym_GT_GT] = ACTIONS(448), + [anon_sym_SLASH] = ACTIONS(448), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_PLUS_EQ] = ACTIONS(446), + [anon_sym_DASH_EQ] = ACTIONS(446), + [anon_sym_STAR_EQ] = ACTIONS(446), + [anon_sym_SLASH_EQ] = ACTIONS(446), + [anon_sym_PERCENT_EQ] = ACTIONS(446), + [anon_sym_AMP_EQ] = ACTIONS(446), + [anon_sym_PIPE_EQ] = ACTIONS(446), + [anon_sym_CARET_EQ] = ACTIONS(446), + [anon_sym_LT_LT_EQ] = ACTIONS(446), + [anon_sym_GT_GT_EQ] = ACTIONS(446), + [anon_sym_DOT] = ACTIONS(448), + [sym_integer_literal] = ACTIONS(446), + [aux_sym_string_literal_token1] = ACTIONS(446), + [sym_char_literal] = ACTIONS(446), + [anon_sym_true] = ACTIONS(448), + [anon_sym_false] = ACTIONS(448), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(448), + [sym_crate] = ACTIONS(448), + [sym_metavariable] = ACTIONS(446), + [sym_raw_string_literal] = ACTIONS(446), + [sym_float_literal] = ACTIONS(446), [sym_block_comment] = ACTIONS(3), }, [234] = { - [sym_identifier] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(478), - [anon_sym_RBRACE] = ACTIONS(478), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_STAR] = ACTIONS(480), - [anon_sym_QMARK] = ACTIONS(478), - [anon_sym_u8] = ACTIONS(480), - [anon_sym_i8] = ACTIONS(480), - [anon_sym_u16] = ACTIONS(480), - [anon_sym_i16] = ACTIONS(480), - [anon_sym_u32] = ACTIONS(480), - [anon_sym_i32] = ACTIONS(480), - [anon_sym_u64] = ACTIONS(480), - [anon_sym_i64] = ACTIONS(480), - [anon_sym_u128] = ACTIONS(480), - [anon_sym_i128] = ACTIONS(480), - [anon_sym_isize] = ACTIONS(480), - [anon_sym_usize] = ACTIONS(480), - [anon_sym_f32] = ACTIONS(480), - [anon_sym_f64] = ACTIONS(480), - [anon_sym_bool] = ACTIONS(480), - [anon_sym_str] = ACTIONS(480), - [anon_sym_char] = ACTIONS(480), - [anon_sym_as] = ACTIONS(480), - [anon_sym_const] = ACTIONS(480), - [anon_sym_default] = ACTIONS(480), - [anon_sym_union] = ACTIONS(480), - [anon_sym_POUND] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(480), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_ref] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(480), - [anon_sym_GT] = ACTIONS(480), - [anon_sym_COLON_COLON] = ACTIONS(478), - [anon_sym__] = ACTIONS(480), - [anon_sym_AMP] = ACTIONS(480), - [anon_sym_DOT_DOT_DOT] = ACTIONS(478), - [sym_mutable_specifier] = ACTIONS(480), - [anon_sym_DOT_DOT] = ACTIONS(480), - [anon_sym_DOT_DOT_EQ] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_AMP_AMP] = ACTIONS(478), - [anon_sym_PIPE_PIPE] = ACTIONS(478), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_CARET] = ACTIONS(480), - [anon_sym_EQ_EQ] = ACTIONS(478), - [anon_sym_BANG_EQ] = ACTIONS(478), - [anon_sym_LT_EQ] = ACTIONS(478), - [anon_sym_GT_EQ] = ACTIONS(478), - [anon_sym_LT_LT] = ACTIONS(480), - [anon_sym_GT_GT] = ACTIONS(480), - [anon_sym_SLASH] = ACTIONS(480), - [anon_sym_PERCENT] = ACTIONS(480), - [anon_sym_PLUS_EQ] = ACTIONS(478), - [anon_sym_DASH_EQ] = ACTIONS(478), - [anon_sym_STAR_EQ] = ACTIONS(478), - [anon_sym_SLASH_EQ] = ACTIONS(478), - [anon_sym_PERCENT_EQ] = ACTIONS(478), - [anon_sym_AMP_EQ] = ACTIONS(478), - [anon_sym_PIPE_EQ] = ACTIONS(478), - [anon_sym_CARET_EQ] = ACTIONS(478), - [anon_sym_LT_LT_EQ] = ACTIONS(478), - [anon_sym_GT_GT_EQ] = ACTIONS(478), - [anon_sym_DOT] = ACTIONS(480), - [sym_integer_literal] = ACTIONS(478), - [aux_sym_string_literal_token1] = ACTIONS(478), - [sym_char_literal] = ACTIONS(478), - [anon_sym_true] = ACTIONS(480), - [anon_sym_false] = ACTIONS(480), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(480), - [sym_super] = ACTIONS(480), - [sym_crate] = ACTIONS(480), - [sym_metavariable] = ACTIONS(478), - [sym_raw_string_literal] = ACTIONS(478), - [sym_float_literal] = ACTIONS(478), + [sym_identifier] = ACTIONS(606), + [anon_sym_LPAREN] = ACTIONS(604), + [anon_sym_RBRACE] = ACTIONS(604), + [anon_sym_LBRACK] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(604), + [anon_sym_u8] = ACTIONS(606), + [anon_sym_i8] = ACTIONS(606), + [anon_sym_u16] = ACTIONS(606), + [anon_sym_i16] = ACTIONS(606), + [anon_sym_u32] = ACTIONS(606), + [anon_sym_i32] = ACTIONS(606), + [anon_sym_u64] = ACTIONS(606), + [anon_sym_i64] = ACTIONS(606), + [anon_sym_u128] = ACTIONS(606), + [anon_sym_i128] = ACTIONS(606), + [anon_sym_isize] = ACTIONS(606), + [anon_sym_usize] = ACTIONS(606), + [anon_sym_f32] = ACTIONS(606), + [anon_sym_f64] = ACTIONS(606), + [anon_sym_bool] = ACTIONS(606), + [anon_sym_str] = ACTIONS(606), + [anon_sym_char] = ACTIONS(606), + [anon_sym_as] = ACTIONS(606), + [anon_sym_const] = ACTIONS(606), + [anon_sym_default] = ACTIONS(606), + [anon_sym_union] = ACTIONS(606), + [anon_sym_POUND] = ACTIONS(604), + [anon_sym_EQ] = ACTIONS(606), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_ref] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_GT] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(604), + [anon_sym__] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(604), + [sym_mutable_specifier] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(604), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_AMP_AMP] = ACTIONS(604), + [anon_sym_PIPE_PIPE] = ACTIONS(604), + [anon_sym_PIPE] = ACTIONS(606), + [anon_sym_CARET] = ACTIONS(606), + [anon_sym_EQ_EQ] = ACTIONS(604), + [anon_sym_BANG_EQ] = ACTIONS(604), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_LT_LT] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(606), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(606), + [anon_sym_PLUS_EQ] = ACTIONS(604), + [anon_sym_DASH_EQ] = ACTIONS(604), + [anon_sym_STAR_EQ] = ACTIONS(604), + [anon_sym_SLASH_EQ] = ACTIONS(604), + [anon_sym_PERCENT_EQ] = ACTIONS(604), + [anon_sym_AMP_EQ] = ACTIONS(604), + [anon_sym_PIPE_EQ] = ACTIONS(604), + [anon_sym_CARET_EQ] = ACTIONS(604), + [anon_sym_LT_LT_EQ] = ACTIONS(604), + [anon_sym_GT_GT_EQ] = ACTIONS(604), + [anon_sym_DOT] = ACTIONS(606), + [sym_integer_literal] = ACTIONS(604), + [aux_sym_string_literal_token1] = ACTIONS(604), + [sym_char_literal] = ACTIONS(604), + [anon_sym_true] = ACTIONS(606), + [anon_sym_false] = ACTIONS(606), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(606), + [sym_super] = ACTIONS(606), + [sym_crate] = ACTIONS(606), + [sym_metavariable] = ACTIONS(604), + [sym_raw_string_literal] = ACTIONS(604), + [sym_float_literal] = ACTIONS(604), [sym_block_comment] = ACTIONS(3), }, [235] = { - [sym_identifier] = ACTIONS(426), - [anon_sym_LPAREN] = ACTIONS(424), - [anon_sym_RBRACE] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_PLUS] = ACTIONS(426), - [anon_sym_STAR] = ACTIONS(426), - [anon_sym_QMARK] = ACTIONS(424), - [anon_sym_u8] = ACTIONS(426), - [anon_sym_i8] = ACTIONS(426), - [anon_sym_u16] = ACTIONS(426), - [anon_sym_i16] = ACTIONS(426), - [anon_sym_u32] = ACTIONS(426), - [anon_sym_i32] = ACTIONS(426), - [anon_sym_u64] = ACTIONS(426), - [anon_sym_i64] = ACTIONS(426), - [anon_sym_u128] = ACTIONS(426), - [anon_sym_i128] = ACTIONS(426), - [anon_sym_isize] = ACTIONS(426), - [anon_sym_usize] = ACTIONS(426), - [anon_sym_f32] = ACTIONS(426), - [anon_sym_f64] = ACTIONS(426), - [anon_sym_bool] = ACTIONS(426), - [anon_sym_str] = ACTIONS(426), - [anon_sym_char] = ACTIONS(426), - [anon_sym_as] = ACTIONS(426), - [anon_sym_const] = ACTIONS(426), - [anon_sym_default] = ACTIONS(426), - [anon_sym_union] = ACTIONS(426), - [anon_sym_POUND] = ACTIONS(424), - [anon_sym_EQ] = ACTIONS(426), - [anon_sym_COMMA] = ACTIONS(424), - [anon_sym_ref] = ACTIONS(426), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_GT] = ACTIONS(426), - [anon_sym_COLON_COLON] = ACTIONS(424), - [anon_sym__] = ACTIONS(426), - [anon_sym_AMP] = ACTIONS(426), - [anon_sym_DOT_DOT_DOT] = ACTIONS(424), - [sym_mutable_specifier] = ACTIONS(426), - [anon_sym_DOT_DOT] = ACTIONS(426), - [anon_sym_DOT_DOT_EQ] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_AMP_AMP] = ACTIONS(424), - [anon_sym_PIPE_PIPE] = ACTIONS(424), - [anon_sym_PIPE] = ACTIONS(426), - [anon_sym_CARET] = ACTIONS(426), - [anon_sym_EQ_EQ] = ACTIONS(424), - [anon_sym_BANG_EQ] = ACTIONS(424), - [anon_sym_LT_EQ] = ACTIONS(424), - [anon_sym_GT_EQ] = ACTIONS(424), - [anon_sym_LT_LT] = ACTIONS(426), - [anon_sym_GT_GT] = ACTIONS(426), - [anon_sym_SLASH] = ACTIONS(426), - [anon_sym_PERCENT] = ACTIONS(426), - [anon_sym_PLUS_EQ] = ACTIONS(424), - [anon_sym_DASH_EQ] = ACTIONS(424), - [anon_sym_STAR_EQ] = ACTIONS(424), - [anon_sym_SLASH_EQ] = ACTIONS(424), - [anon_sym_PERCENT_EQ] = ACTIONS(424), - [anon_sym_AMP_EQ] = ACTIONS(424), - [anon_sym_PIPE_EQ] = ACTIONS(424), - [anon_sym_CARET_EQ] = ACTIONS(424), - [anon_sym_LT_LT_EQ] = ACTIONS(424), - [anon_sym_GT_GT_EQ] = ACTIONS(424), - [anon_sym_DOT] = ACTIONS(426), - [sym_integer_literal] = ACTIONS(424), - [aux_sym_string_literal_token1] = ACTIONS(424), - [sym_char_literal] = ACTIONS(424), - [anon_sym_true] = ACTIONS(426), - [anon_sym_false] = ACTIONS(426), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(426), - [sym_super] = ACTIONS(426), - [sym_crate] = ACTIONS(426), - [sym_metavariable] = ACTIONS(424), - [sym_raw_string_literal] = ACTIONS(424), - [sym_float_literal] = ACTIONS(424), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1935), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(1934), + [sym_array_type] = STATE(1390), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_type_binding] = STATE(2264), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [sym_block] = STATE(2264), + [sym__literal] = STATE(2264), + [sym_string_literal] = STATE(2313), + [sym_boolean_literal] = STATE(2313), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(864), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(866), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), + [anon_sym_dyn] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(874), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(874), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), + [sym_raw_string_literal] = ACTIONS(874), + [sym_float_literal] = ACTIONS(874), [sym_block_comment] = ACTIONS(3), }, [236] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(2082), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2078), - [sym_array_type] = STATE(1389), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1935), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(1934), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_type_binding] = STATE(2151), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [sym_block] = STATE(2151), - [sym__literal] = STATE(2151), - [sym_string_literal] = STATE(2301), - [sym_boolean_literal] = STATE(2301), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(856), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_type_binding] = STATE(2264), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [sym_block] = STATE(2264), + [sym__literal] = STATE(2264), + [sym_string_literal] = STATE(2313), + [sym_boolean_literal] = STATE(2313), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(870), + [sym_integer_literal] = ACTIONS(874), [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(870), + [sym_char_literal] = ACTIONS(874), [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), - [sym_raw_string_literal] = ACTIONS(870), - [sym_float_literal] = ACTIONS(870), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), + [sym_raw_string_literal] = ACTIONS(874), + [sym_float_literal] = ACTIONS(874), [sym_block_comment] = ACTIONS(3), }, [237] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1816), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(1813), - [sym_array_type] = STATE(1389), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1786), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(1785), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_type_binding] = STATE(1960), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [sym_block] = STATE(1960), - [sym__literal] = STATE(1960), - [sym_string_literal] = STATE(2301), - [sym_boolean_literal] = STATE(2301), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(856), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_type_binding] = STATE(2086), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [sym_block] = STATE(2086), + [sym__literal] = STATE(2086), + [sym_string_literal] = STATE(2313), + [sym_boolean_literal] = STATE(2313), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(870), + [sym_integer_literal] = ACTIONS(874), [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(870), + [sym_char_literal] = ACTIONS(874), [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), - [sym_raw_string_literal] = ACTIONS(870), - [sym_float_literal] = ACTIONS(870), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), + [sym_raw_string_literal] = ACTIONS(874), + [sym_float_literal] = ACTIONS(874), [sym_block_comment] = ACTIONS(3), }, [238] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1774), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(1773), - [sym_array_type] = STATE(1389), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1795), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(1799), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_type_binding] = STATE(2089), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [sym_block] = STATE(2089), - [sym__literal] = STATE(2089), - [sym_string_literal] = STATE(2301), - [sym_boolean_literal] = STATE(2301), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(856), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_type_binding] = STATE(1948), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [sym_block] = STATE(1948), + [sym__literal] = STATE(1948), + [sym_string_literal] = STATE(2313), + [sym_boolean_literal] = STATE(2313), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(870), + [sym_integer_literal] = ACTIONS(874), [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(870), + [sym_char_literal] = ACTIONS(874), [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), - [sym_raw_string_literal] = ACTIONS(870), - [sym_float_literal] = ACTIONS(870), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), + [sym_raw_string_literal] = ACTIONS(874), + [sym_float_literal] = ACTIONS(874), [sym_block_comment] = ACTIONS(3), }, [239] = { @@ -42653,8 +42651,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_token_binding_pattern] = STATE(239), [sym_token_repetition_pattern] = STATE(239), [sym__literal] = STATE(239), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), [aux_sym_token_tree_pattern_repeat1] = STATE(239), [sym_identifier] = ACTIONS(886), [anon_sym_LPAREN] = ACTIONS(889), @@ -42726,84 +42724,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [240] = { - [sym_empty_statement] = STATE(241), - [sym_macro_definition] = STATE(241), - [sym_attribute_item] = STATE(241), - [sym_inner_attribute_item] = STATE(241), - [sym_mod_item] = STATE(241), - [sym_foreign_mod_item] = STATE(241), - [sym_struct_item] = STATE(241), - [sym_union_item] = STATE(241), - [sym_enum_item] = STATE(241), - [sym_extern_crate_declaration] = STATE(241), - [sym_const_item] = STATE(241), - [sym_static_item] = STATE(241), - [sym_type_item] = STATE(241), - [sym_function_item] = STATE(241), - [sym_function_signature_item] = STATE(241), - [sym_function_modifiers] = STATE(2556), - [sym_impl_item] = STATE(241), - [sym_trait_item] = STATE(241), - [sym_associated_type] = STATE(241), - [sym_let_declaration] = STATE(241), - [sym_use_declaration] = STATE(241), - [sym_extern_modifier] = STATE(1506), - [sym_visibility_modifier] = STATE(1341), - [sym_bracketed_type] = STATE(2373), - [sym_generic_type_with_turbofish] = STATE(2544), - [sym_macro_invocation] = STATE(241), - [sym_scoped_identifier] = STATE(2293), - [aux_sym_declaration_list_repeat1] = STATE(241), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_empty_statement] = STATE(240), + [sym_macro_definition] = STATE(240), + [sym_attribute_item] = STATE(240), + [sym_inner_attribute_item] = STATE(240), + [sym_mod_item] = STATE(240), + [sym_foreign_mod_item] = STATE(240), + [sym_struct_item] = STATE(240), + [sym_union_item] = STATE(240), + [sym_enum_item] = STATE(240), + [sym_extern_crate_declaration] = STATE(240), + [sym_const_item] = STATE(240), + [sym_static_item] = STATE(240), + [sym_type_item] = STATE(240), + [sym_function_item] = STATE(240), + [sym_function_signature_item] = STATE(240), + [sym_function_modifiers] = STATE(2552), + [sym_impl_item] = STATE(240), + [sym_trait_item] = STATE(240), + [sym_associated_type] = STATE(240), + [sym_let_declaration] = STATE(240), + [sym_use_declaration] = STATE(240), + [sym_extern_modifier] = STATE(1501), + [sym_visibility_modifier] = STATE(1334), + [sym_bracketed_type] = STATE(2369), + [sym_generic_type_with_turbofish] = STATE(2457), + [sym_macro_invocation] = STATE(240), + [sym_scoped_identifier] = STATE(2290), + [aux_sym_declaration_list_repeat1] = STATE(240), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(919), - [anon_sym_macro_rules_BANG] = ACTIONS(921), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_u8] = ACTIONS(925), - [anon_sym_i8] = ACTIONS(925), - [anon_sym_u16] = ACTIONS(925), - [anon_sym_i16] = ACTIONS(925), - [anon_sym_u32] = ACTIONS(925), - [anon_sym_i32] = ACTIONS(925), - [anon_sym_u64] = ACTIONS(925), - [anon_sym_i64] = ACTIONS(925), - [anon_sym_u128] = ACTIONS(925), - [anon_sym_i128] = ACTIONS(925), - [anon_sym_isize] = ACTIONS(925), - [anon_sym_usize] = ACTIONS(925), - [anon_sym_f32] = ACTIONS(925), - [anon_sym_f64] = ACTIONS(925), - [anon_sym_bool] = ACTIONS(925), - [anon_sym_str] = ACTIONS(925), - [anon_sym_char] = ACTIONS(925), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_macro_rules_BANG] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_u8] = ACTIONS(928), + [anon_sym_i8] = ACTIONS(928), + [anon_sym_u16] = ACTIONS(928), + [anon_sym_i16] = ACTIONS(928), + [anon_sym_u32] = ACTIONS(928), + [anon_sym_i32] = ACTIONS(928), + [anon_sym_u64] = ACTIONS(928), + [anon_sym_i64] = ACTIONS(928), + [anon_sym_u128] = ACTIONS(928), + [anon_sym_i128] = ACTIONS(928), + [anon_sym_isize] = ACTIONS(928), + [anon_sym_usize] = ACTIONS(928), + [anon_sym_f32] = ACTIONS(928), + [anon_sym_f64] = ACTIONS(928), + [anon_sym_bool] = ACTIONS(928), + [anon_sym_str] = ACTIONS(928), + [anon_sym_char] = ACTIONS(928), + [anon_sym_async] = ACTIONS(931), + [anon_sym_const] = ACTIONS(934), + [anon_sym_default] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(940), + [anon_sym_fn] = ACTIONS(943), + [anon_sym_impl] = ACTIONS(946), + [anon_sym_let] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(952), + [anon_sym_pub] = ACTIONS(955), + [anon_sym_static] = ACTIONS(958), + [anon_sym_struct] = ACTIONS(961), + [anon_sym_trait] = ACTIONS(964), + [anon_sym_type] = ACTIONS(967), + [anon_sym_union] = ACTIONS(970), + [anon_sym_unsafe] = ACTIONS(973), + [anon_sym_use] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(979), + [anon_sym_extern] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(985), + [anon_sym_COLON_COLON] = ACTIONS(988), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(991), + [sym_super] = ACTIONS(991), + [sym_crate] = ACTIONS(994), + [sym_metavariable] = ACTIONS(997), + [sym_block_comment] = ACTIONS(3), + }, + [241] = { + [sym_empty_statement] = STATE(240), + [sym_macro_definition] = STATE(240), + [sym_attribute_item] = STATE(240), + [sym_inner_attribute_item] = STATE(240), + [sym_mod_item] = STATE(240), + [sym_foreign_mod_item] = STATE(240), + [sym_struct_item] = STATE(240), + [sym_union_item] = STATE(240), + [sym_enum_item] = STATE(240), + [sym_extern_crate_declaration] = STATE(240), + [sym_const_item] = STATE(240), + [sym_static_item] = STATE(240), + [sym_type_item] = STATE(240), + [sym_function_item] = STATE(240), + [sym_function_signature_item] = STATE(240), + [sym_function_modifiers] = STATE(2552), + [sym_impl_item] = STATE(240), + [sym_trait_item] = STATE(240), + [sym_associated_type] = STATE(240), + [sym_let_declaration] = STATE(240), + [sym_use_declaration] = STATE(240), + [sym_extern_modifier] = STATE(1501), + [sym_visibility_modifier] = STATE(1334), + [sym_bracketed_type] = STATE(2369), + [sym_generic_type_with_turbofish] = STATE(2457), + [sym_macro_invocation] = STATE(240), + [sym_scoped_identifier] = STATE(2290), + [aux_sym_declaration_list_repeat1] = STATE(240), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_macro_rules_BANG] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_u8] = ACTIONS(1008), + [anon_sym_i8] = ACTIONS(1008), + [anon_sym_u16] = ACTIONS(1008), + [anon_sym_i16] = ACTIONS(1008), + [anon_sym_u32] = ACTIONS(1008), + [anon_sym_i32] = ACTIONS(1008), + [anon_sym_u64] = ACTIONS(1008), + [anon_sym_i64] = ACTIONS(1008), + [anon_sym_u128] = ACTIONS(1008), + [anon_sym_i128] = ACTIONS(1008), + [anon_sym_isize] = ACTIONS(1008), + [anon_sym_usize] = ACTIONS(1008), + [anon_sym_f32] = ACTIONS(1008), + [anon_sym_f64] = ACTIONS(1008), + [anon_sym_bool] = ACTIONS(1008), + [anon_sym_str] = ACTIONS(1008), + [anon_sym_char] = ACTIONS(1008), [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(927), - [anon_sym_default] = ACTIONS(929), - [anon_sym_enum] = ACTIONS(931), - [anon_sym_fn] = ACTIONS(933), - [anon_sym_impl] = ACTIONS(935), - [anon_sym_let] = ACTIONS(937), - [anon_sym_mod] = ACTIONS(939), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1014), + [anon_sym_fn] = ACTIONS(1016), + [anon_sym_impl] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1022), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(941), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_trait] = ACTIONS(945), - [anon_sym_type] = ACTIONS(947), - [anon_sym_union] = ACTIONS(949), - [anon_sym_unsafe] = ACTIONS(951), - [anon_sym_use] = ACTIONS(953), - [anon_sym_POUND] = ACTIONS(955), - [anon_sym_extern] = ACTIONS(957), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1026), + [anon_sym_trait] = ACTIONS(1028), + [anon_sym_type] = ACTIONS(1030), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_unsafe] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1040), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(959), + [anon_sym_COLON_COLON] = ACTIONS(1042), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(961), - [sym_super] = ACTIONS(961), - [sym_crate] = ACTIONS(963), - [sym_metavariable] = ACTIONS(965), + [sym_self] = ACTIONS(1044), + [sym_super] = ACTIONS(1044), + [sym_crate] = ACTIONS(1046), + [sym_metavariable] = ACTIONS(1048), [sym_block_comment] = ACTIONS(3), }, - [241] = { + [242] = { [sym_empty_statement] = STATE(241), [sym_macro_definition] = STATE(241), [sym_attribute_item] = STATE(241), @@ -42819,222 +42895,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(241), [sym_function_item] = STATE(241), [sym_function_signature_item] = STATE(241), - [sym_function_modifiers] = STATE(2556), + [sym_function_modifiers] = STATE(2552), [sym_impl_item] = STATE(241), [sym_trait_item] = STATE(241), [sym_associated_type] = STATE(241), [sym_let_declaration] = STATE(241), [sym_use_declaration] = STATE(241), - [sym_extern_modifier] = STATE(1506), - [sym_visibility_modifier] = STATE(1341), - [sym_bracketed_type] = STATE(2373), - [sym_generic_type_with_turbofish] = STATE(2544), + [sym_extern_modifier] = STATE(1501), + [sym_visibility_modifier] = STATE(1334), + [sym_bracketed_type] = STATE(2369), + [sym_generic_type_with_turbofish] = STATE(2457), [sym_macro_invocation] = STATE(241), - [sym_scoped_identifier] = STATE(2293), + [sym_scoped_identifier] = STATE(2290), [aux_sym_declaration_list_repeat1] = STATE(241), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(967), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_macro_rules_BANG] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_u8] = ACTIONS(978), - [anon_sym_i8] = ACTIONS(978), - [anon_sym_u16] = ACTIONS(978), - [anon_sym_i16] = ACTIONS(978), - [anon_sym_u32] = ACTIONS(978), - [anon_sym_i32] = ACTIONS(978), - [anon_sym_u64] = ACTIONS(978), - [anon_sym_i64] = ACTIONS(978), - [anon_sym_u128] = ACTIONS(978), - [anon_sym_i128] = ACTIONS(978), - [anon_sym_isize] = ACTIONS(978), - [anon_sym_usize] = ACTIONS(978), - [anon_sym_f32] = ACTIONS(978), - [anon_sym_f64] = ACTIONS(978), - [anon_sym_bool] = ACTIONS(978), - [anon_sym_str] = ACTIONS(978), - [anon_sym_char] = ACTIONS(978), - [anon_sym_async] = ACTIONS(981), - [anon_sym_const] = ACTIONS(984), - [anon_sym_default] = ACTIONS(987), - [anon_sym_enum] = ACTIONS(990), - [anon_sym_fn] = ACTIONS(993), - [anon_sym_impl] = ACTIONS(996), - [anon_sym_let] = ACTIONS(999), - [anon_sym_mod] = ACTIONS(1002), - [anon_sym_pub] = ACTIONS(1005), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1011), - [anon_sym_trait] = ACTIONS(1014), - [anon_sym_type] = ACTIONS(1017), - [anon_sym_union] = ACTIONS(1020), - [anon_sym_unsafe] = ACTIONS(1023), - [anon_sym_use] = ACTIONS(1026), - [anon_sym_POUND] = ACTIONS(1029), - [anon_sym_extern] = ACTIONS(1032), - [anon_sym_LT] = ACTIONS(1035), - [anon_sym_COLON_COLON] = ACTIONS(1038), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1041), - [sym_super] = ACTIONS(1041), - [sym_crate] = ACTIONS(1044), - [sym_metavariable] = ACTIONS(1047), - [sym_block_comment] = ACTIONS(3), - }, - [242] = { - [sym_empty_statement] = STATE(243), - [sym_macro_definition] = STATE(243), - [sym_attribute_item] = STATE(243), - [sym_inner_attribute_item] = STATE(243), - [sym_mod_item] = STATE(243), - [sym_foreign_mod_item] = STATE(243), - [sym_struct_item] = STATE(243), - [sym_union_item] = STATE(243), - [sym_enum_item] = STATE(243), - [sym_extern_crate_declaration] = STATE(243), - [sym_const_item] = STATE(243), - [sym_static_item] = STATE(243), - [sym_type_item] = STATE(243), - [sym_function_item] = STATE(243), - [sym_function_signature_item] = STATE(243), - [sym_function_modifiers] = STATE(2556), - [sym_impl_item] = STATE(243), - [sym_trait_item] = STATE(243), - [sym_associated_type] = STATE(243), - [sym_let_declaration] = STATE(243), - [sym_use_declaration] = STATE(243), - [sym_extern_modifier] = STATE(1506), - [sym_visibility_modifier] = STATE(1341), - [sym_bracketed_type] = STATE(2373), - [sym_generic_type_with_turbofish] = STATE(2544), - [sym_macro_invocation] = STATE(243), - [sym_scoped_identifier] = STATE(2293), - [aux_sym_declaration_list_repeat1] = STATE(243), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(919), - [anon_sym_macro_rules_BANG] = ACTIONS(921), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_macro_rules_BANG] = ACTIONS(1004), [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_u8] = ACTIONS(925), - [anon_sym_i8] = ACTIONS(925), - [anon_sym_u16] = ACTIONS(925), - [anon_sym_i16] = ACTIONS(925), - [anon_sym_u32] = ACTIONS(925), - [anon_sym_i32] = ACTIONS(925), - [anon_sym_u64] = ACTIONS(925), - [anon_sym_i64] = ACTIONS(925), - [anon_sym_u128] = ACTIONS(925), - [anon_sym_i128] = ACTIONS(925), - [anon_sym_isize] = ACTIONS(925), - [anon_sym_usize] = ACTIONS(925), - [anon_sym_f32] = ACTIONS(925), - [anon_sym_f64] = ACTIONS(925), - [anon_sym_bool] = ACTIONS(925), - [anon_sym_str] = ACTIONS(925), - [anon_sym_char] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(1008), + [anon_sym_i8] = ACTIONS(1008), + [anon_sym_u16] = ACTIONS(1008), + [anon_sym_i16] = ACTIONS(1008), + [anon_sym_u32] = ACTIONS(1008), + [anon_sym_i32] = ACTIONS(1008), + [anon_sym_u64] = ACTIONS(1008), + [anon_sym_i64] = ACTIONS(1008), + [anon_sym_u128] = ACTIONS(1008), + [anon_sym_i128] = ACTIONS(1008), + [anon_sym_isize] = ACTIONS(1008), + [anon_sym_usize] = ACTIONS(1008), + [anon_sym_f32] = ACTIONS(1008), + [anon_sym_f64] = ACTIONS(1008), + [anon_sym_bool] = ACTIONS(1008), + [anon_sym_str] = ACTIONS(1008), + [anon_sym_char] = ACTIONS(1008), [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(927), - [anon_sym_default] = ACTIONS(929), - [anon_sym_enum] = ACTIONS(931), - [anon_sym_fn] = ACTIONS(933), - [anon_sym_impl] = ACTIONS(935), - [anon_sym_let] = ACTIONS(937), - [anon_sym_mod] = ACTIONS(939), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1014), + [anon_sym_fn] = ACTIONS(1016), + [anon_sym_impl] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1022), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(941), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_trait] = ACTIONS(945), - [anon_sym_type] = ACTIONS(947), - [anon_sym_union] = ACTIONS(949), - [anon_sym_unsafe] = ACTIONS(951), - [anon_sym_use] = ACTIONS(953), - [anon_sym_POUND] = ACTIONS(955), - [anon_sym_extern] = ACTIONS(957), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1026), + [anon_sym_trait] = ACTIONS(1028), + [anon_sym_type] = ACTIONS(1030), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_unsafe] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1040), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(959), + [anon_sym_COLON_COLON] = ACTIONS(1042), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(961), - [sym_super] = ACTIONS(961), - [sym_crate] = ACTIONS(963), - [sym_metavariable] = ACTIONS(965), + [sym_self] = ACTIONS(1044), + [sym_super] = ACTIONS(1044), + [sym_crate] = ACTIONS(1046), + [sym_metavariable] = ACTIONS(1048), [sym_block_comment] = ACTIONS(3), }, [243] = { - [sym_empty_statement] = STATE(241), - [sym_macro_definition] = STATE(241), - [sym_attribute_item] = STATE(241), - [sym_inner_attribute_item] = STATE(241), - [sym_mod_item] = STATE(241), - [sym_foreign_mod_item] = STATE(241), - [sym_struct_item] = STATE(241), - [sym_union_item] = STATE(241), - [sym_enum_item] = STATE(241), - [sym_extern_crate_declaration] = STATE(241), - [sym_const_item] = STATE(241), - [sym_static_item] = STATE(241), - [sym_type_item] = STATE(241), - [sym_function_item] = STATE(241), - [sym_function_signature_item] = STATE(241), - [sym_function_modifiers] = STATE(2556), - [sym_impl_item] = STATE(241), - [sym_trait_item] = STATE(241), - [sym_associated_type] = STATE(241), - [sym_let_declaration] = STATE(241), - [sym_use_declaration] = STATE(241), - [sym_extern_modifier] = STATE(1506), - [sym_visibility_modifier] = STATE(1341), - [sym_bracketed_type] = STATE(2373), - [sym_generic_type_with_turbofish] = STATE(2544), - [sym_macro_invocation] = STATE(241), - [sym_scoped_identifier] = STATE(2293), - [aux_sym_declaration_list_repeat1] = STATE(241), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(919), - [anon_sym_macro_rules_BANG] = ACTIONS(921), + [sym_empty_statement] = STATE(244), + [sym_macro_definition] = STATE(244), + [sym_attribute_item] = STATE(244), + [sym_inner_attribute_item] = STATE(244), + [sym_mod_item] = STATE(244), + [sym_foreign_mod_item] = STATE(244), + [sym_struct_item] = STATE(244), + [sym_union_item] = STATE(244), + [sym_enum_item] = STATE(244), + [sym_extern_crate_declaration] = STATE(244), + [sym_const_item] = STATE(244), + [sym_static_item] = STATE(244), + [sym_type_item] = STATE(244), + [sym_function_item] = STATE(244), + [sym_function_signature_item] = STATE(244), + [sym_function_modifiers] = STATE(2552), + [sym_impl_item] = STATE(244), + [sym_trait_item] = STATE(244), + [sym_associated_type] = STATE(244), + [sym_let_declaration] = STATE(244), + [sym_use_declaration] = STATE(244), + [sym_extern_modifier] = STATE(1501), + [sym_visibility_modifier] = STATE(1334), + [sym_bracketed_type] = STATE(2369), + [sym_generic_type_with_turbofish] = STATE(2457), + [sym_macro_invocation] = STATE(244), + [sym_scoped_identifier] = STATE(2290), + [aux_sym_declaration_list_repeat1] = STATE(244), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_macro_rules_BANG] = ACTIONS(1004), [anon_sym_RBRACE] = ACTIONS(1052), - [anon_sym_u8] = ACTIONS(925), - [anon_sym_i8] = ACTIONS(925), - [anon_sym_u16] = ACTIONS(925), - [anon_sym_i16] = ACTIONS(925), - [anon_sym_u32] = ACTIONS(925), - [anon_sym_i32] = ACTIONS(925), - [anon_sym_u64] = ACTIONS(925), - [anon_sym_i64] = ACTIONS(925), - [anon_sym_u128] = ACTIONS(925), - [anon_sym_i128] = ACTIONS(925), - [anon_sym_isize] = ACTIONS(925), - [anon_sym_usize] = ACTIONS(925), - [anon_sym_f32] = ACTIONS(925), - [anon_sym_f64] = ACTIONS(925), - [anon_sym_bool] = ACTIONS(925), - [anon_sym_str] = ACTIONS(925), - [anon_sym_char] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(1008), + [anon_sym_i8] = ACTIONS(1008), + [anon_sym_u16] = ACTIONS(1008), + [anon_sym_i16] = ACTIONS(1008), + [anon_sym_u32] = ACTIONS(1008), + [anon_sym_i32] = ACTIONS(1008), + [anon_sym_u64] = ACTIONS(1008), + [anon_sym_i64] = ACTIONS(1008), + [anon_sym_u128] = ACTIONS(1008), + [anon_sym_i128] = ACTIONS(1008), + [anon_sym_isize] = ACTIONS(1008), + [anon_sym_usize] = ACTIONS(1008), + [anon_sym_f32] = ACTIONS(1008), + [anon_sym_f64] = ACTIONS(1008), + [anon_sym_bool] = ACTIONS(1008), + [anon_sym_str] = ACTIONS(1008), + [anon_sym_char] = ACTIONS(1008), [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(927), - [anon_sym_default] = ACTIONS(929), - [anon_sym_enum] = ACTIONS(931), - [anon_sym_fn] = ACTIONS(933), - [anon_sym_impl] = ACTIONS(935), - [anon_sym_let] = ACTIONS(937), - [anon_sym_mod] = ACTIONS(939), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1014), + [anon_sym_fn] = ACTIONS(1016), + [anon_sym_impl] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1022), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(941), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_trait] = ACTIONS(945), - [anon_sym_type] = ACTIONS(947), - [anon_sym_union] = ACTIONS(949), - [anon_sym_unsafe] = ACTIONS(951), - [anon_sym_use] = ACTIONS(953), - [anon_sym_POUND] = ACTIONS(955), - [anon_sym_extern] = ACTIONS(957), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1026), + [anon_sym_trait] = ACTIONS(1028), + [anon_sym_type] = ACTIONS(1030), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_unsafe] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1040), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(959), + [anon_sym_COLON_COLON] = ACTIONS(1042), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(961), - [sym_super] = ACTIONS(961), - [sym_crate] = ACTIONS(963), - [sym_metavariable] = ACTIONS(965), + [sym_self] = ACTIONS(1044), + [sym_super] = ACTIONS(1044), + [sym_crate] = ACTIONS(1046), + [sym_metavariable] = ACTIONS(1048), [sym_block_comment] = ACTIONS(3), }, [244] = { @@ -43053,69 +43051,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(240), [sym_function_item] = STATE(240), [sym_function_signature_item] = STATE(240), - [sym_function_modifiers] = STATE(2556), + [sym_function_modifiers] = STATE(2552), [sym_impl_item] = STATE(240), [sym_trait_item] = STATE(240), [sym_associated_type] = STATE(240), [sym_let_declaration] = STATE(240), [sym_use_declaration] = STATE(240), - [sym_extern_modifier] = STATE(1506), - [sym_visibility_modifier] = STATE(1341), - [sym_bracketed_type] = STATE(2373), - [sym_generic_type_with_turbofish] = STATE(2544), + [sym_extern_modifier] = STATE(1501), + [sym_visibility_modifier] = STATE(1334), + [sym_bracketed_type] = STATE(2369), + [sym_generic_type_with_turbofish] = STATE(2457), [sym_macro_invocation] = STATE(240), - [sym_scoped_identifier] = STATE(2293), + [sym_scoped_identifier] = STATE(2290), [aux_sym_declaration_list_repeat1] = STATE(240), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(919), - [anon_sym_macro_rules_BANG] = ACTIONS(921), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_macro_rules_BANG] = ACTIONS(1004), [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_u8] = ACTIONS(925), - [anon_sym_i8] = ACTIONS(925), - [anon_sym_u16] = ACTIONS(925), - [anon_sym_i16] = ACTIONS(925), - [anon_sym_u32] = ACTIONS(925), - [anon_sym_i32] = ACTIONS(925), - [anon_sym_u64] = ACTIONS(925), - [anon_sym_i64] = ACTIONS(925), - [anon_sym_u128] = ACTIONS(925), - [anon_sym_i128] = ACTIONS(925), - [anon_sym_isize] = ACTIONS(925), - [anon_sym_usize] = ACTIONS(925), - [anon_sym_f32] = ACTIONS(925), - [anon_sym_f64] = ACTIONS(925), - [anon_sym_bool] = ACTIONS(925), - [anon_sym_str] = ACTIONS(925), - [anon_sym_char] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(1008), + [anon_sym_i8] = ACTIONS(1008), + [anon_sym_u16] = ACTIONS(1008), + [anon_sym_i16] = ACTIONS(1008), + [anon_sym_u32] = ACTIONS(1008), + [anon_sym_i32] = ACTIONS(1008), + [anon_sym_u64] = ACTIONS(1008), + [anon_sym_i64] = ACTIONS(1008), + [anon_sym_u128] = ACTIONS(1008), + [anon_sym_i128] = ACTIONS(1008), + [anon_sym_isize] = ACTIONS(1008), + [anon_sym_usize] = ACTIONS(1008), + [anon_sym_f32] = ACTIONS(1008), + [anon_sym_f64] = ACTIONS(1008), + [anon_sym_bool] = ACTIONS(1008), + [anon_sym_str] = ACTIONS(1008), + [anon_sym_char] = ACTIONS(1008), [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(927), - [anon_sym_default] = ACTIONS(929), - [anon_sym_enum] = ACTIONS(931), - [anon_sym_fn] = ACTIONS(933), - [anon_sym_impl] = ACTIONS(935), - [anon_sym_let] = ACTIONS(937), - [anon_sym_mod] = ACTIONS(939), + [anon_sym_const] = ACTIONS(1010), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1014), + [anon_sym_fn] = ACTIONS(1016), + [anon_sym_impl] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1022), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(941), - [anon_sym_struct] = ACTIONS(943), - [anon_sym_trait] = ACTIONS(945), - [anon_sym_type] = ACTIONS(947), - [anon_sym_union] = ACTIONS(949), - [anon_sym_unsafe] = ACTIONS(951), - [anon_sym_use] = ACTIONS(953), - [anon_sym_POUND] = ACTIONS(955), - [anon_sym_extern] = ACTIONS(957), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1026), + [anon_sym_trait] = ACTIONS(1028), + [anon_sym_type] = ACTIONS(1030), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_unsafe] = ACTIONS(1034), + [anon_sym_use] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1040), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(959), + [anon_sym_COLON_COLON] = ACTIONS(1042), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(961), - [sym_super] = ACTIONS(961), - [sym_crate] = ACTIONS(963), - [sym_metavariable] = ACTIONS(965), + [sym_self] = ACTIONS(1044), + [sym_super] = ACTIONS(1044), + [sym_crate] = ACTIONS(1046), + [sym_metavariable] = ACTIONS(1048), [sym_block_comment] = ACTIONS(3), }, [245] = { + [ts_builtin_sym_end] = ACTIONS(414), + [sym_identifier] = ACTIONS(416), + [anon_sym_SEMI] = ACTIONS(414), + [anon_sym_macro_rules_BANG] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE] = ACTIONS(414), + [anon_sym_LBRACK] = ACTIONS(414), + [anon_sym_STAR] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(416), + [anon_sym_i8] = ACTIONS(416), + [anon_sym_u16] = ACTIONS(416), + [anon_sym_i16] = ACTIONS(416), + [anon_sym_u32] = ACTIONS(416), + [anon_sym_i32] = ACTIONS(416), + [anon_sym_u64] = ACTIONS(416), + [anon_sym_i64] = ACTIONS(416), + [anon_sym_u128] = ACTIONS(416), + [anon_sym_i128] = ACTIONS(416), + [anon_sym_isize] = ACTIONS(416), + [anon_sym_usize] = ACTIONS(416), + [anon_sym_f32] = ACTIONS(416), + [anon_sym_f64] = ACTIONS(416), + [anon_sym_bool] = ACTIONS(416), + [anon_sym_str] = ACTIONS(416), + [anon_sym_char] = ACTIONS(416), + [anon_sym_SQUOTE] = ACTIONS(416), + [anon_sym_async] = ACTIONS(416), + [anon_sym_break] = ACTIONS(416), + [anon_sym_const] = ACTIONS(416), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_enum] = ACTIONS(416), + [anon_sym_fn] = ACTIONS(416), + [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(416), + [anon_sym_impl] = ACTIONS(416), + [anon_sym_let] = ACTIONS(416), + [anon_sym_loop] = ACTIONS(416), + [anon_sym_match] = ACTIONS(416), + [anon_sym_mod] = ACTIONS(416), + [anon_sym_pub] = ACTIONS(416), + [anon_sym_return] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(416), + [anon_sym_trait] = ACTIONS(416), + [anon_sym_type] = ACTIONS(416), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(416), + [anon_sym_use] = ACTIONS(416), + [anon_sym_while] = ACTIONS(416), + [anon_sym_POUND] = ACTIONS(414), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_extern] = ACTIONS(416), + [anon_sym_LT] = ACTIONS(414), + [anon_sym_COLON_COLON] = ACTIONS(414), + [anon_sym_AMP] = ACTIONS(414), + [anon_sym_DOT_DOT] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_PIPE] = ACTIONS(414), + [anon_sym_yield] = ACTIONS(416), + [anon_sym_move] = ACTIONS(416), + [sym_integer_literal] = ACTIONS(414), + [aux_sym_string_literal_token1] = ACTIONS(414), + [sym_char_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(416), + [sym_super] = ACTIONS(416), + [sym_crate] = ACTIONS(416), + [sym_metavariable] = ACTIONS(414), + [sym_raw_string_literal] = ACTIONS(414), + [sym_float_literal] = ACTIONS(414), + [sym_block_comment] = ACTIONS(3), + }, + [246] = { [ts_builtin_sym_end] = ACTIONS(1056), [sym_identifier] = ACTIONS(1058), [anon_sym_SEMI] = ACTIONS(1056), @@ -43192,7 +43267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1056), [sym_block_comment] = ACTIONS(3), }, - [246] = { + [247] = { [ts_builtin_sym_end] = ACTIONS(1060), [sym_identifier] = ACTIONS(1062), [anon_sym_SEMI] = ACTIONS(1060), @@ -43269,83 +43344,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1060), [sym_block_comment] = ACTIONS(3), }, - [247] = { - [ts_builtin_sym_end] = ACTIONS(410), - [sym_identifier] = ACTIONS(412), - [anon_sym_SEMI] = ACTIONS(410), - [anon_sym_macro_rules_BANG] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(410), - [anon_sym_RBRACE] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(410), - [anon_sym_STAR] = ACTIONS(410), - [anon_sym_u8] = ACTIONS(412), - [anon_sym_i8] = ACTIONS(412), - [anon_sym_u16] = ACTIONS(412), - [anon_sym_i16] = ACTIONS(412), - [anon_sym_u32] = ACTIONS(412), - [anon_sym_i32] = ACTIONS(412), - [anon_sym_u64] = ACTIONS(412), - [anon_sym_i64] = ACTIONS(412), - [anon_sym_u128] = ACTIONS(412), - [anon_sym_i128] = ACTIONS(412), - [anon_sym_isize] = ACTIONS(412), - [anon_sym_usize] = ACTIONS(412), - [anon_sym_f32] = ACTIONS(412), - [anon_sym_f64] = ACTIONS(412), - [anon_sym_bool] = ACTIONS(412), - [anon_sym_str] = ACTIONS(412), - [anon_sym_char] = ACTIONS(412), - [anon_sym_SQUOTE] = ACTIONS(412), - [anon_sym_async] = ACTIONS(412), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(412), - [anon_sym_default] = ACTIONS(412), - [anon_sym_enum] = ACTIONS(412), - [anon_sym_fn] = ACTIONS(412), - [anon_sym_for] = ACTIONS(412), - [anon_sym_if] = ACTIONS(412), - [anon_sym_impl] = ACTIONS(412), - [anon_sym_let] = ACTIONS(412), - [anon_sym_loop] = ACTIONS(412), - [anon_sym_match] = ACTIONS(412), - [anon_sym_mod] = ACTIONS(412), - [anon_sym_pub] = ACTIONS(412), - [anon_sym_return] = ACTIONS(412), - [anon_sym_static] = ACTIONS(412), - [anon_sym_struct] = ACTIONS(412), - [anon_sym_trait] = ACTIONS(412), - [anon_sym_type] = ACTIONS(412), - [anon_sym_union] = ACTIONS(412), - [anon_sym_unsafe] = ACTIONS(412), - [anon_sym_use] = ACTIONS(412), - [anon_sym_while] = ACTIONS(412), - [anon_sym_POUND] = ACTIONS(410), - [anon_sym_BANG] = ACTIONS(410), - [anon_sym_extern] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_COLON_COLON] = ACTIONS(410), - [anon_sym_AMP] = ACTIONS(410), - [anon_sym_DOT_DOT] = ACTIONS(410), - [anon_sym_DASH] = ACTIONS(410), - [anon_sym_PIPE] = ACTIONS(410), - [anon_sym_yield] = ACTIONS(412), - [anon_sym_move] = ACTIONS(412), - [sym_integer_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(410), - [sym_char_literal] = ACTIONS(410), - [anon_sym_true] = ACTIONS(412), - [anon_sym_false] = ACTIONS(412), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(412), - [sym_super] = ACTIONS(412), - [sym_crate] = ACTIONS(412), - [sym_metavariable] = ACTIONS(410), - [sym_raw_string_literal] = ACTIONS(410), - [sym_float_literal] = ACTIONS(410), - [sym_block_comment] = ACTIONS(3), - }, [248] = { [ts_builtin_sym_end] = ACTIONS(1064), [sym_identifier] = ACTIONS(1066), @@ -43655,83 +43653,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [252] = { - [ts_builtin_sym_end] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [anon_sym_SEMI] = ACTIONS(406), - [anon_sym_macro_rules_BANG] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_RBRACE] = ACTIONS(406), - [anon_sym_LBRACK] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_u8] = ACTIONS(408), - [anon_sym_i8] = ACTIONS(408), - [anon_sym_u16] = ACTIONS(408), - [anon_sym_i16] = ACTIONS(408), - [anon_sym_u32] = ACTIONS(408), - [anon_sym_i32] = ACTIONS(408), - [anon_sym_u64] = ACTIONS(408), - [anon_sym_i64] = ACTIONS(408), - [anon_sym_u128] = ACTIONS(408), - [anon_sym_i128] = ACTIONS(408), - [anon_sym_isize] = ACTIONS(408), - [anon_sym_usize] = ACTIONS(408), - [anon_sym_f32] = ACTIONS(408), - [anon_sym_f64] = ACTIONS(408), - [anon_sym_bool] = ACTIONS(408), - [anon_sym_str] = ACTIONS(408), - [anon_sym_char] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(408), - [anon_sym_async] = ACTIONS(408), - [anon_sym_break] = ACTIONS(408), - [anon_sym_const] = ACTIONS(408), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_default] = ACTIONS(408), - [anon_sym_enum] = ACTIONS(408), - [anon_sym_fn] = ACTIONS(408), - [anon_sym_for] = ACTIONS(408), - [anon_sym_if] = ACTIONS(408), - [anon_sym_impl] = ACTIONS(408), - [anon_sym_let] = ACTIONS(408), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(408), - [anon_sym_mod] = ACTIONS(408), - [anon_sym_pub] = ACTIONS(408), - [anon_sym_return] = ACTIONS(408), - [anon_sym_static] = ACTIONS(408), - [anon_sym_struct] = ACTIONS(408), - [anon_sym_trait] = ACTIONS(408), - [anon_sym_type] = ACTIONS(408), - [anon_sym_union] = ACTIONS(408), - [anon_sym_unsafe] = ACTIONS(408), - [anon_sym_use] = ACTIONS(408), - [anon_sym_while] = ACTIONS(408), - [anon_sym_POUND] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_extern] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_COLON_COLON] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_DOT_DOT] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_yield] = ACTIONS(408), - [anon_sym_move] = ACTIONS(408), - [sym_integer_literal] = ACTIONS(406), - [aux_sym_string_literal_token1] = ACTIONS(406), - [sym_char_literal] = ACTIONS(406), - [anon_sym_true] = ACTIONS(408), - [anon_sym_false] = ACTIONS(408), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_crate] = ACTIONS(408), - [sym_metavariable] = ACTIONS(406), - [sym_raw_string_literal] = ACTIONS(406), - [sym_float_literal] = ACTIONS(406), - [sym_block_comment] = ACTIONS(3), - }, - [253] = { [ts_builtin_sym_end] = ACTIONS(1080), [sym_identifier] = ACTIONS(1082), [anon_sym_SEMI] = ACTIONS(1080), @@ -43808,84 +43729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1080), [sym_block_comment] = ACTIONS(3), }, - [254] = { - [ts_builtin_sym_end] = ACTIONS(414), - [sym_identifier] = ACTIONS(416), - [anon_sym_SEMI] = ACTIONS(414), - [anon_sym_macro_rules_BANG] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_SQUOTE] = ACTIONS(416), - [anon_sym_async] = ACTIONS(416), - [anon_sym_break] = ACTIONS(416), - [anon_sym_const] = ACTIONS(416), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(416), - [anon_sym_enum] = ACTIONS(416), - [anon_sym_fn] = ACTIONS(416), - [anon_sym_for] = ACTIONS(416), - [anon_sym_if] = ACTIONS(416), - [anon_sym_impl] = ACTIONS(416), - [anon_sym_let] = ACTIONS(416), - [anon_sym_loop] = ACTIONS(416), - [anon_sym_match] = ACTIONS(416), - [anon_sym_mod] = ACTIONS(416), - [anon_sym_pub] = ACTIONS(416), - [anon_sym_return] = ACTIONS(416), - [anon_sym_static] = ACTIONS(416), - [anon_sym_struct] = ACTIONS(416), - [anon_sym_trait] = ACTIONS(416), - [anon_sym_type] = ACTIONS(416), - [anon_sym_union] = ACTIONS(416), - [anon_sym_unsafe] = ACTIONS(416), - [anon_sym_use] = ACTIONS(416), - [anon_sym_while] = ACTIONS(416), - [anon_sym_POUND] = ACTIONS(414), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_extern] = ACTIONS(416), - [anon_sym_LT] = ACTIONS(414), - [anon_sym_COLON_COLON] = ACTIONS(414), - [anon_sym_AMP] = ACTIONS(414), - [anon_sym_DOT_DOT] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(414), - [anon_sym_PIPE] = ACTIONS(414), - [anon_sym_yield] = ACTIONS(416), - [anon_sym_move] = ACTIONS(416), - [sym_integer_literal] = ACTIONS(414), - [aux_sym_string_literal_token1] = ACTIONS(414), - [sym_char_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(416), - [sym_super] = ACTIONS(416), - [sym_crate] = ACTIONS(416), - [sym_metavariable] = ACTIONS(414), - [sym_raw_string_literal] = ACTIONS(414), - [sym_float_literal] = ACTIONS(414), - [sym_block_comment] = ACTIONS(3), - }, - [255] = { + [253] = { [ts_builtin_sym_end] = ACTIONS(1084), [sym_identifier] = ACTIONS(1086), [anon_sym_SEMI] = ACTIONS(1084), @@ -43962,7 +43806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1084), [sym_block_comment] = ACTIONS(3), }, - [256] = { + [254] = { [ts_builtin_sym_end] = ACTIONS(1088), [sym_identifier] = ACTIONS(1090), [anon_sym_SEMI] = ACTIONS(1088), @@ -44039,7 +43883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1088), [sym_block_comment] = ACTIONS(3), }, - [257] = { + [255] = { [ts_builtin_sym_end] = ACTIONS(1092), [sym_identifier] = ACTIONS(1094), [anon_sym_SEMI] = ACTIONS(1092), @@ -44116,7 +43960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1092), [sym_block_comment] = ACTIONS(3), }, - [258] = { + [256] = { [ts_builtin_sym_end] = ACTIONS(1096), [sym_identifier] = ACTIONS(1098), [anon_sym_SEMI] = ACTIONS(1096), @@ -44193,7 +44037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1096), [sym_block_comment] = ACTIONS(3), }, - [259] = { + [257] = { [ts_builtin_sym_end] = ACTIONS(1100), [sym_identifier] = ACTIONS(1102), [anon_sym_SEMI] = ACTIONS(1100), @@ -44270,7 +44114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1100), [sym_block_comment] = ACTIONS(3), }, - [260] = { + [258] = { [ts_builtin_sym_end] = ACTIONS(1104), [sym_identifier] = ACTIONS(1106), [anon_sym_SEMI] = ACTIONS(1104), @@ -44347,7 +44191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1104), [sym_block_comment] = ACTIONS(3), }, - [261] = { + [259] = { [ts_builtin_sym_end] = ACTIONS(1108), [sym_identifier] = ACTIONS(1110), [anon_sym_SEMI] = ACTIONS(1108), @@ -44424,7 +44268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1108), [sym_block_comment] = ACTIONS(3), }, - [262] = { + [260] = { [ts_builtin_sym_end] = ACTIONS(1112), [sym_identifier] = ACTIONS(1114), [anon_sym_SEMI] = ACTIONS(1112), @@ -44501,7 +44345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1112), [sym_block_comment] = ACTIONS(3), }, - [263] = { + [261] = { [ts_builtin_sym_end] = ACTIONS(1116), [sym_identifier] = ACTIONS(1118), [anon_sym_SEMI] = ACTIONS(1116), @@ -44578,7 +44422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1116), [sym_block_comment] = ACTIONS(3), }, - [264] = { + [262] = { [ts_builtin_sym_end] = ACTIONS(1120), [sym_identifier] = ACTIONS(1122), [anon_sym_SEMI] = ACTIONS(1120), @@ -44655,7 +44499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1120), [sym_block_comment] = ACTIONS(3), }, - [265] = { + [263] = { [ts_builtin_sym_end] = ACTIONS(1124), [sym_identifier] = ACTIONS(1126), [anon_sym_SEMI] = ACTIONS(1124), @@ -44732,7 +44576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1124), [sym_block_comment] = ACTIONS(3), }, - [266] = { + [264] = { [ts_builtin_sym_end] = ACTIONS(1128), [sym_identifier] = ACTIONS(1130), [anon_sym_SEMI] = ACTIONS(1128), @@ -44809,7 +44653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1128), [sym_block_comment] = ACTIONS(3), }, - [267] = { + [265] = { [ts_builtin_sym_end] = ACTIONS(1132), [sym_identifier] = ACTIONS(1134), [anon_sym_SEMI] = ACTIONS(1132), @@ -44886,7 +44730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1132), [sym_block_comment] = ACTIONS(3), }, - [268] = { + [266] = { [ts_builtin_sym_end] = ACTIONS(1136), [sym_identifier] = ACTIONS(1138), [anon_sym_SEMI] = ACTIONS(1136), @@ -44963,7 +44807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1136), [sym_block_comment] = ACTIONS(3), }, - [269] = { + [267] = { [ts_builtin_sym_end] = ACTIONS(1140), [sym_identifier] = ACTIONS(1142), [anon_sym_SEMI] = ACTIONS(1140), @@ -45040,7 +44884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1140), [sym_block_comment] = ACTIONS(3), }, - [270] = { + [268] = { [ts_builtin_sym_end] = ACTIONS(1144), [sym_identifier] = ACTIONS(1146), [anon_sym_SEMI] = ACTIONS(1144), @@ -45117,7 +44961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1144), [sym_block_comment] = ACTIONS(3), }, - [271] = { + [269] = { [ts_builtin_sym_end] = ACTIONS(1148), [sym_identifier] = ACTIONS(1150), [anon_sym_SEMI] = ACTIONS(1148), @@ -45194,7 +45038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1148), [sym_block_comment] = ACTIONS(3), }, - [272] = { + [270] = { [ts_builtin_sym_end] = ACTIONS(1152), [sym_identifier] = ACTIONS(1154), [anon_sym_SEMI] = ACTIONS(1152), @@ -45271,7 +45115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1152), [sym_block_comment] = ACTIONS(3), }, - [273] = { + [271] = { [ts_builtin_sym_end] = ACTIONS(1156), [sym_identifier] = ACTIONS(1158), [anon_sym_SEMI] = ACTIONS(1156), @@ -45348,7 +45192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1156), [sym_block_comment] = ACTIONS(3), }, - [274] = { + [272] = { [ts_builtin_sym_end] = ACTIONS(1160), [sym_identifier] = ACTIONS(1162), [anon_sym_SEMI] = ACTIONS(1160), @@ -45425,7 +45269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1160), [sym_block_comment] = ACTIONS(3), }, - [275] = { + [273] = { [ts_builtin_sym_end] = ACTIONS(1164), [sym_identifier] = ACTIONS(1166), [anon_sym_SEMI] = ACTIONS(1164), @@ -45502,7 +45346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1164), [sym_block_comment] = ACTIONS(3), }, - [276] = { + [274] = { [ts_builtin_sym_end] = ACTIONS(1168), [sym_identifier] = ACTIONS(1170), [anon_sym_SEMI] = ACTIONS(1168), @@ -45579,7 +45423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1168), [sym_block_comment] = ACTIONS(3), }, - [277] = { + [275] = { [ts_builtin_sym_end] = ACTIONS(1172), [sym_identifier] = ACTIONS(1174), [anon_sym_SEMI] = ACTIONS(1172), @@ -45656,7 +45500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1172), [sym_block_comment] = ACTIONS(3), }, - [278] = { + [276] = { [ts_builtin_sym_end] = ACTIONS(1176), [sym_identifier] = ACTIONS(1178), [anon_sym_SEMI] = ACTIONS(1176), @@ -45733,7 +45577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1176), [sym_block_comment] = ACTIONS(3), }, - [279] = { + [277] = { [ts_builtin_sym_end] = ACTIONS(1180), [sym_identifier] = ACTIONS(1182), [anon_sym_SEMI] = ACTIONS(1180), @@ -45810,7 +45654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1180), [sym_block_comment] = ACTIONS(3), }, - [280] = { + [278] = { [ts_builtin_sym_end] = ACTIONS(1184), [sym_identifier] = ACTIONS(1186), [anon_sym_SEMI] = ACTIONS(1184), @@ -45887,7 +45731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1184), [sym_block_comment] = ACTIONS(3), }, - [281] = { + [279] = { [ts_builtin_sym_end] = ACTIONS(1188), [sym_identifier] = ACTIONS(1190), [anon_sym_SEMI] = ACTIONS(1188), @@ -45964,7 +45808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1188), [sym_block_comment] = ACTIONS(3), }, - [282] = { + [280] = { [ts_builtin_sym_end] = ACTIONS(1192), [sym_identifier] = ACTIONS(1194), [anon_sym_SEMI] = ACTIONS(1192), @@ -46041,7 +45885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1192), [sym_block_comment] = ACTIONS(3), }, - [283] = { + [281] = { [ts_builtin_sym_end] = ACTIONS(1196), [sym_identifier] = ACTIONS(1198), [anon_sym_SEMI] = ACTIONS(1196), @@ -46118,7 +45962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1196), [sym_block_comment] = ACTIONS(3), }, - [284] = { + [282] = { [ts_builtin_sym_end] = ACTIONS(1200), [sym_identifier] = ACTIONS(1202), [anon_sym_SEMI] = ACTIONS(1200), @@ -46195,7 +46039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1200), [sym_block_comment] = ACTIONS(3), }, - [285] = { + [283] = { [ts_builtin_sym_end] = ACTIONS(1204), [sym_identifier] = ACTIONS(1206), [anon_sym_SEMI] = ACTIONS(1204), @@ -46272,7 +46116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1204), [sym_block_comment] = ACTIONS(3), }, - [286] = { + [284] = { [ts_builtin_sym_end] = ACTIONS(1208), [sym_identifier] = ACTIONS(1210), [anon_sym_SEMI] = ACTIONS(1208), @@ -46349,7 +46193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1208), [sym_block_comment] = ACTIONS(3), }, - [287] = { + [285] = { [ts_builtin_sym_end] = ACTIONS(1212), [sym_identifier] = ACTIONS(1214), [anon_sym_SEMI] = ACTIONS(1212), @@ -46426,7 +46270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1212), [sym_block_comment] = ACTIONS(3), }, - [288] = { + [286] = { [ts_builtin_sym_end] = ACTIONS(1216), [sym_identifier] = ACTIONS(1218), [anon_sym_SEMI] = ACTIONS(1216), @@ -46503,7 +46347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1216), [sym_block_comment] = ACTIONS(3), }, - [289] = { + [287] = { [ts_builtin_sym_end] = ACTIONS(1220), [sym_identifier] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1220), @@ -46580,7 +46424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1220), [sym_block_comment] = ACTIONS(3), }, - [290] = { + [288] = { [ts_builtin_sym_end] = ACTIONS(1224), [sym_identifier] = ACTIONS(1226), [anon_sym_SEMI] = ACTIONS(1224), @@ -46657,7 +46501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1224), [sym_block_comment] = ACTIONS(3), }, - [291] = { + [289] = { [ts_builtin_sym_end] = ACTIONS(1228), [sym_identifier] = ACTIONS(1230), [anon_sym_SEMI] = ACTIONS(1228), @@ -46734,7 +46578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1228), [sym_block_comment] = ACTIONS(3), }, - [292] = { + [290] = { [ts_builtin_sym_end] = ACTIONS(1232), [sym_identifier] = ACTIONS(1234), [anon_sym_SEMI] = ACTIONS(1232), @@ -46811,7 +46655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1232), [sym_block_comment] = ACTIONS(3), }, - [293] = { + [291] = { [ts_builtin_sym_end] = ACTIONS(1236), [sym_identifier] = ACTIONS(1238), [anon_sym_SEMI] = ACTIONS(1236), @@ -46888,7 +46732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1236), [sym_block_comment] = ACTIONS(3), }, - [294] = { + [292] = { [ts_builtin_sym_end] = ACTIONS(1240), [sym_identifier] = ACTIONS(1242), [anon_sym_SEMI] = ACTIONS(1240), @@ -46965,7 +46809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1240), [sym_block_comment] = ACTIONS(3), }, - [295] = { + [293] = { [ts_builtin_sym_end] = ACTIONS(1244), [sym_identifier] = ACTIONS(1246), [anon_sym_SEMI] = ACTIONS(1244), @@ -47042,7 +46886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1244), [sym_block_comment] = ACTIONS(3), }, - [296] = { + [294] = { [ts_builtin_sym_end] = ACTIONS(1248), [sym_identifier] = ACTIONS(1250), [anon_sym_SEMI] = ACTIONS(1248), @@ -47119,5021 +46963,5430 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1248), [sym_block_comment] = ACTIONS(3), }, - [297] = { - [sym_attribute_item] = STATE(545), - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_match_arm] = STATE(488), - [sym_last_match_arm] = STATE(2553), - [sym_match_pattern] = STATE(2531), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2068), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_enum_variant_list_repeat1] = STATE(545), - [aux_sym_match_block_repeat1] = STATE(488), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), + [295] = { + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_macro_rules_BANG] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_u8] = ACTIONS(1254), + [anon_sym_i8] = ACTIONS(1254), + [anon_sym_u16] = ACTIONS(1254), + [anon_sym_i16] = ACTIONS(1254), + [anon_sym_u32] = ACTIONS(1254), + [anon_sym_i32] = ACTIONS(1254), + [anon_sym_u64] = ACTIONS(1254), + [anon_sym_i64] = ACTIONS(1254), + [anon_sym_u128] = ACTIONS(1254), + [anon_sym_i128] = ACTIONS(1254), + [anon_sym_isize] = ACTIONS(1254), + [anon_sym_usize] = ACTIONS(1254), + [anon_sym_f32] = ACTIONS(1254), + [anon_sym_f64] = ACTIONS(1254), + [anon_sym_bool] = ACTIONS(1254), + [anon_sym_str] = ACTIONS(1254), + [anon_sym_char] = ACTIONS(1254), + [anon_sym_SQUOTE] = ACTIONS(1254), + [anon_sym_async] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_const] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_enum] = ACTIONS(1254), + [anon_sym_fn] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_impl] = ACTIONS(1254), + [anon_sym_let] = ACTIONS(1254), + [anon_sym_loop] = ACTIONS(1254), + [anon_sym_match] = ACTIONS(1254), + [anon_sym_mod] = ACTIONS(1254), + [anon_sym_pub] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_trait] = ACTIONS(1254), + [anon_sym_type] = ACTIONS(1254), + [anon_sym_union] = ACTIONS(1254), + [anon_sym_unsafe] = ACTIONS(1254), + [anon_sym_use] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_POUND] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_extern] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_DOT_DOT] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_yield] = ACTIONS(1254), + [anon_sym_move] = ACTIONS(1254), + [sym_integer_literal] = ACTIONS(1252), + [aux_sym_string_literal_token1] = ACTIONS(1252), + [sym_char_literal] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1254), + [anon_sym_false] = ACTIONS(1254), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1254), + [sym_super] = ACTIONS(1254), + [sym_crate] = ACTIONS(1254), + [sym_metavariable] = ACTIONS(1252), + [sym_raw_string_literal] = ACTIONS(1252), + [sym_float_literal] = ACTIONS(1252), + [sym_block_comment] = ACTIONS(3), + }, + [296] = { + [ts_builtin_sym_end] = ACTIONS(1256), + [sym_identifier] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1256), + [anon_sym_macro_rules_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_RBRACE] = ACTIONS(1256), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_u8] = ACTIONS(1258), + [anon_sym_i8] = ACTIONS(1258), + [anon_sym_u16] = ACTIONS(1258), + [anon_sym_i16] = ACTIONS(1258), + [anon_sym_u32] = ACTIONS(1258), + [anon_sym_i32] = ACTIONS(1258), + [anon_sym_u64] = ACTIONS(1258), + [anon_sym_i64] = ACTIONS(1258), + [anon_sym_u128] = ACTIONS(1258), + [anon_sym_i128] = ACTIONS(1258), + [anon_sym_isize] = ACTIONS(1258), + [anon_sym_usize] = ACTIONS(1258), + [anon_sym_f32] = ACTIONS(1258), + [anon_sym_f64] = ACTIONS(1258), + [anon_sym_bool] = ACTIONS(1258), + [anon_sym_str] = ACTIONS(1258), + [anon_sym_char] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1258), + [anon_sym_async] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_const] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_default] = ACTIONS(1258), + [anon_sym_enum] = ACTIONS(1258), + [anon_sym_fn] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_if] = ACTIONS(1258), + [anon_sym_impl] = ACTIONS(1258), + [anon_sym_let] = ACTIONS(1258), + [anon_sym_loop] = ACTIONS(1258), + [anon_sym_match] = ACTIONS(1258), + [anon_sym_mod] = ACTIONS(1258), + [anon_sym_pub] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_struct] = ACTIONS(1258), + [anon_sym_trait] = ACTIONS(1258), + [anon_sym_type] = ACTIONS(1258), + [anon_sym_union] = ACTIONS(1258), + [anon_sym_unsafe] = ACTIONS(1258), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1258), + [anon_sym_POUND] = ACTIONS(1256), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_extern] = ACTIONS(1258), + [anon_sym_LT] = ACTIONS(1256), + [anon_sym_COLON_COLON] = ACTIONS(1256), + [anon_sym_AMP] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PIPE] = ACTIONS(1256), + [anon_sym_yield] = ACTIONS(1258), + [anon_sym_move] = ACTIONS(1258), + [sym_integer_literal] = ACTIONS(1256), + [aux_sym_string_literal_token1] = ACTIONS(1256), + [sym_char_literal] = ACTIONS(1256), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1258), + [sym_super] = ACTIONS(1258), + [sym_crate] = ACTIONS(1258), + [sym_metavariable] = ACTIONS(1256), + [sym_raw_string_literal] = ACTIONS(1256), + [sym_float_literal] = ACTIONS(1256), + [sym_block_comment] = ACTIONS(3), + }, + [297] = { + [ts_builtin_sym_end] = ACTIONS(1260), + [sym_identifier] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1260), + [anon_sym_macro_rules_BANG] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_RBRACE] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_STAR] = ACTIONS(1260), + [anon_sym_u8] = ACTIONS(1262), + [anon_sym_i8] = ACTIONS(1262), + [anon_sym_u16] = ACTIONS(1262), + [anon_sym_i16] = ACTIONS(1262), + [anon_sym_u32] = ACTIONS(1262), + [anon_sym_i32] = ACTIONS(1262), + [anon_sym_u64] = ACTIONS(1262), + [anon_sym_i64] = ACTIONS(1262), + [anon_sym_u128] = ACTIONS(1262), + [anon_sym_i128] = ACTIONS(1262), + [anon_sym_isize] = ACTIONS(1262), + [anon_sym_usize] = ACTIONS(1262), + [anon_sym_f32] = ACTIONS(1262), + [anon_sym_f64] = ACTIONS(1262), + [anon_sym_bool] = ACTIONS(1262), + [anon_sym_str] = ACTIONS(1262), + [anon_sym_char] = ACTIONS(1262), + [anon_sym_SQUOTE] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_default] = ACTIONS(1262), + [anon_sym_enum] = ACTIONS(1262), + [anon_sym_fn] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_impl] = ACTIONS(1262), + [anon_sym_let] = ACTIONS(1262), + [anon_sym_loop] = ACTIONS(1262), + [anon_sym_match] = ACTIONS(1262), + [anon_sym_mod] = ACTIONS(1262), + [anon_sym_pub] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_static] = ACTIONS(1262), + [anon_sym_struct] = ACTIONS(1262), + [anon_sym_trait] = ACTIONS(1262), + [anon_sym_type] = ACTIONS(1262), + [anon_sym_union] = ACTIONS(1262), + [anon_sym_unsafe] = ACTIONS(1262), + [anon_sym_use] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [anon_sym_POUND] = ACTIONS(1260), + [anon_sym_BANG] = ACTIONS(1260), + [anon_sym_extern] = ACTIONS(1262), + [anon_sym_LT] = ACTIONS(1260), + [anon_sym_COLON_COLON] = ACTIONS(1260), + [anon_sym_AMP] = ACTIONS(1260), + [anon_sym_DOT_DOT] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_PIPE] = ACTIONS(1260), + [anon_sym_yield] = ACTIONS(1262), + [anon_sym_move] = ACTIONS(1262), + [sym_integer_literal] = ACTIONS(1260), + [aux_sym_string_literal_token1] = ACTIONS(1260), + [sym_char_literal] = ACTIONS(1260), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1262), + [sym_super] = ACTIONS(1262), + [sym_crate] = ACTIONS(1262), + [sym_metavariable] = ACTIONS(1260), + [sym_raw_string_literal] = ACTIONS(1260), + [sym_float_literal] = ACTIONS(1260), [sym_block_comment] = ACTIONS(3), }, [298] = { - [ts_builtin_sym_end] = ACTIONS(1274), - [sym_identifier] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_macro_rules_BANG] = ACTIONS(1274), - [anon_sym_LPAREN] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_u8] = ACTIONS(1276), - [anon_sym_i8] = ACTIONS(1276), - [anon_sym_u16] = ACTIONS(1276), - [anon_sym_i16] = ACTIONS(1276), - [anon_sym_u32] = ACTIONS(1276), - [anon_sym_i32] = ACTIONS(1276), - [anon_sym_u64] = ACTIONS(1276), - [anon_sym_i64] = ACTIONS(1276), - [anon_sym_u128] = ACTIONS(1276), - [anon_sym_i128] = ACTIONS(1276), - [anon_sym_isize] = ACTIONS(1276), - [anon_sym_usize] = ACTIONS(1276), - [anon_sym_f32] = ACTIONS(1276), - [anon_sym_f64] = ACTIONS(1276), - [anon_sym_bool] = ACTIONS(1276), - [anon_sym_str] = ACTIONS(1276), - [anon_sym_char] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_async] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_fn] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_impl] = ACTIONS(1276), - [anon_sym_let] = ACTIONS(1276), - [anon_sym_loop] = ACTIONS(1276), - [anon_sym_match] = ACTIONS(1276), - [anon_sym_mod] = ACTIONS(1276), - [anon_sym_pub] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_trait] = ACTIONS(1276), - [anon_sym_type] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_unsafe] = ACTIONS(1276), - [anon_sym_use] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_POUND] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_COLON_COLON] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_DOT_DOT] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1274), - [anon_sym_yield] = ACTIONS(1276), - [anon_sym_move] = ACTIONS(1276), - [sym_integer_literal] = ACTIONS(1274), - [aux_sym_string_literal_token1] = ACTIONS(1274), - [sym_char_literal] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1276), - [anon_sym_false] = ACTIONS(1276), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1276), - [sym_super] = ACTIONS(1276), - [sym_crate] = ACTIONS(1276), - [sym_metavariable] = ACTIONS(1274), - [sym_raw_string_literal] = ACTIONS(1274), - [sym_float_literal] = ACTIONS(1274), + [ts_builtin_sym_end] = ACTIONS(1264), + [sym_identifier] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1264), + [anon_sym_macro_rules_BANG] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_RBRACE] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(1264), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_u8] = ACTIONS(1266), + [anon_sym_i8] = ACTIONS(1266), + [anon_sym_u16] = ACTIONS(1266), + [anon_sym_i16] = ACTIONS(1266), + [anon_sym_u32] = ACTIONS(1266), + [anon_sym_i32] = ACTIONS(1266), + [anon_sym_u64] = ACTIONS(1266), + [anon_sym_i64] = ACTIONS(1266), + [anon_sym_u128] = ACTIONS(1266), + [anon_sym_i128] = ACTIONS(1266), + [anon_sym_isize] = ACTIONS(1266), + [anon_sym_usize] = ACTIONS(1266), + [anon_sym_f32] = ACTIONS(1266), + [anon_sym_f64] = ACTIONS(1266), + [anon_sym_bool] = ACTIONS(1266), + [anon_sym_str] = ACTIONS(1266), + [anon_sym_char] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [anon_sym_async] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_default] = ACTIONS(1266), + [anon_sym_enum] = ACTIONS(1266), + [anon_sym_fn] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_impl] = ACTIONS(1266), + [anon_sym_let] = ACTIONS(1266), + [anon_sym_loop] = ACTIONS(1266), + [anon_sym_match] = ACTIONS(1266), + [anon_sym_mod] = ACTIONS(1266), + [anon_sym_pub] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_struct] = ACTIONS(1266), + [anon_sym_trait] = ACTIONS(1266), + [anon_sym_type] = ACTIONS(1266), + [anon_sym_union] = ACTIONS(1266), + [anon_sym_unsafe] = ACTIONS(1266), + [anon_sym_use] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_POUND] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_LT] = ACTIONS(1264), + [anon_sym_COLON_COLON] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_DOT_DOT] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_move] = ACTIONS(1266), + [sym_integer_literal] = ACTIONS(1264), + [aux_sym_string_literal_token1] = ACTIONS(1264), + [sym_char_literal] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1266), + [sym_super] = ACTIONS(1266), + [sym_crate] = ACTIONS(1266), + [sym_metavariable] = ACTIONS(1264), + [sym_raw_string_literal] = ACTIONS(1264), + [sym_float_literal] = ACTIONS(1264), [sym_block_comment] = ACTIONS(3), }, [299] = { - [ts_builtin_sym_end] = ACTIONS(1278), - [sym_identifier] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_macro_rules_BANG] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_u8] = ACTIONS(1280), - [anon_sym_i8] = ACTIONS(1280), - [anon_sym_u16] = ACTIONS(1280), - [anon_sym_i16] = ACTIONS(1280), - [anon_sym_u32] = ACTIONS(1280), - [anon_sym_i32] = ACTIONS(1280), - [anon_sym_u64] = ACTIONS(1280), - [anon_sym_i64] = ACTIONS(1280), - [anon_sym_u128] = ACTIONS(1280), - [anon_sym_i128] = ACTIONS(1280), - [anon_sym_isize] = ACTIONS(1280), - [anon_sym_usize] = ACTIONS(1280), - [anon_sym_f32] = ACTIONS(1280), - [anon_sym_f64] = ACTIONS(1280), - [anon_sym_bool] = ACTIONS(1280), - [anon_sym_str] = ACTIONS(1280), - [anon_sym_char] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1280), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_fn] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_impl] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_mod] = ACTIONS(1280), - [anon_sym_pub] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_trait] = ACTIONS(1280), - [anon_sym_type] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_unsafe] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_DOT_DOT] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1280), - [anon_sym_move] = ACTIONS(1280), - [sym_integer_literal] = ACTIONS(1278), - [aux_sym_string_literal_token1] = ACTIONS(1278), - [sym_char_literal] = ACTIONS(1278), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1280), - [sym_super] = ACTIONS(1280), - [sym_crate] = ACTIONS(1280), - [sym_metavariable] = ACTIONS(1278), - [sym_raw_string_literal] = ACTIONS(1278), - [sym_float_literal] = ACTIONS(1278), + [ts_builtin_sym_end] = ACTIONS(1268), + [sym_identifier] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym_macro_rules_BANG] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_RBRACE] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_u8] = ACTIONS(1270), + [anon_sym_i8] = ACTIONS(1270), + [anon_sym_u16] = ACTIONS(1270), + [anon_sym_i16] = ACTIONS(1270), + [anon_sym_u32] = ACTIONS(1270), + [anon_sym_i32] = ACTIONS(1270), + [anon_sym_u64] = ACTIONS(1270), + [anon_sym_i64] = ACTIONS(1270), + [anon_sym_u128] = ACTIONS(1270), + [anon_sym_i128] = ACTIONS(1270), + [anon_sym_isize] = ACTIONS(1270), + [anon_sym_usize] = ACTIONS(1270), + [anon_sym_f32] = ACTIONS(1270), + [anon_sym_f64] = ACTIONS(1270), + [anon_sym_bool] = ACTIONS(1270), + [anon_sym_str] = ACTIONS(1270), + [anon_sym_char] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_fn] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_impl] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_mod] = ACTIONS(1270), + [anon_sym_pub] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_trait] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_POUND] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym_LT] = ACTIONS(1268), + [anon_sym_COLON_COLON] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_DOT_DOT] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_yield] = ACTIONS(1270), + [anon_sym_move] = ACTIONS(1270), + [sym_integer_literal] = ACTIONS(1268), + [aux_sym_string_literal_token1] = ACTIONS(1268), + [sym_char_literal] = ACTIONS(1268), + [anon_sym_true] = ACTIONS(1270), + [anon_sym_false] = ACTIONS(1270), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1270), + [sym_super] = ACTIONS(1270), + [sym_crate] = ACTIONS(1270), + [sym_metavariable] = ACTIONS(1268), + [sym_raw_string_literal] = ACTIONS(1268), + [sym_float_literal] = ACTIONS(1268), [sym_block_comment] = ACTIONS(3), }, [300] = { - [ts_builtin_sym_end] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_macro_rules_BANG] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_u8] = ACTIONS(1284), - [anon_sym_i8] = ACTIONS(1284), - [anon_sym_u16] = ACTIONS(1284), - [anon_sym_i16] = ACTIONS(1284), - [anon_sym_u32] = ACTIONS(1284), - [anon_sym_i32] = ACTIONS(1284), - [anon_sym_u64] = ACTIONS(1284), - [anon_sym_i64] = ACTIONS(1284), - [anon_sym_u128] = ACTIONS(1284), - [anon_sym_i128] = ACTIONS(1284), - [anon_sym_isize] = ACTIONS(1284), - [anon_sym_usize] = ACTIONS(1284), - [anon_sym_f32] = ACTIONS(1284), - [anon_sym_f64] = ACTIONS(1284), - [anon_sym_bool] = ACTIONS(1284), - [anon_sym_str] = ACTIONS(1284), - [anon_sym_char] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1284), - [anon_sym_async] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_fn] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_impl] = ACTIONS(1284), - [anon_sym_let] = ACTIONS(1284), - [anon_sym_loop] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1284), - [anon_sym_mod] = ACTIONS(1284), - [anon_sym_pub] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_trait] = ACTIONS(1284), - [anon_sym_type] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_unsafe] = ACTIONS(1284), - [anon_sym_use] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_POUND] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1282), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_DOT_DOT] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1284), - [anon_sym_move] = ACTIONS(1284), - [sym_integer_literal] = ACTIONS(1282), - [aux_sym_string_literal_token1] = ACTIONS(1282), - [sym_char_literal] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1284), - [anon_sym_false] = ACTIONS(1284), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1284), - [sym_super] = ACTIONS(1284), - [sym_crate] = ACTIONS(1284), - [sym_metavariable] = ACTIONS(1282), - [sym_raw_string_literal] = ACTIONS(1282), - [sym_float_literal] = ACTIONS(1282), + [ts_builtin_sym_end] = ACTIONS(1272), + [sym_identifier] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym_macro_rules_BANG] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_u8] = ACTIONS(1274), + [anon_sym_i8] = ACTIONS(1274), + [anon_sym_u16] = ACTIONS(1274), + [anon_sym_i16] = ACTIONS(1274), + [anon_sym_u32] = ACTIONS(1274), + [anon_sym_i32] = ACTIONS(1274), + [anon_sym_u64] = ACTIONS(1274), + [anon_sym_i64] = ACTIONS(1274), + [anon_sym_u128] = ACTIONS(1274), + [anon_sym_i128] = ACTIONS(1274), + [anon_sym_isize] = ACTIONS(1274), + [anon_sym_usize] = ACTIONS(1274), + [anon_sym_f32] = ACTIONS(1274), + [anon_sym_f64] = ACTIONS(1274), + [anon_sym_bool] = ACTIONS(1274), + [anon_sym_str] = ACTIONS(1274), + [anon_sym_char] = ACTIONS(1274), + [anon_sym_SQUOTE] = ACTIONS(1274), + [anon_sym_async] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_enum] = ACTIONS(1274), + [anon_sym_fn] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_impl] = ACTIONS(1274), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_loop] = ACTIONS(1274), + [anon_sym_match] = ACTIONS(1274), + [anon_sym_mod] = ACTIONS(1274), + [anon_sym_pub] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_struct] = ACTIONS(1274), + [anon_sym_trait] = ACTIONS(1274), + [anon_sym_type] = ACTIONS(1274), + [anon_sym_union] = ACTIONS(1274), + [anon_sym_unsafe] = ACTIONS(1274), + [anon_sym_use] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_POUND] = ACTIONS(1272), + [anon_sym_BANG] = ACTIONS(1272), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym_LT] = ACTIONS(1272), + [anon_sym_COLON_COLON] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_yield] = ACTIONS(1274), + [anon_sym_move] = ACTIONS(1274), + [sym_integer_literal] = ACTIONS(1272), + [aux_sym_string_literal_token1] = ACTIONS(1272), + [sym_char_literal] = ACTIONS(1272), + [anon_sym_true] = ACTIONS(1274), + [anon_sym_false] = ACTIONS(1274), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1274), + [sym_super] = ACTIONS(1274), + [sym_crate] = ACTIONS(1274), + [sym_metavariable] = ACTIONS(1272), + [sym_raw_string_literal] = ACTIONS(1272), + [sym_float_literal] = ACTIONS(1272), [sym_block_comment] = ACTIONS(3), }, [301] = { - [ts_builtin_sym_end] = ACTIONS(1286), - [sym_identifier] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_macro_rules_BANG] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_u8] = ACTIONS(1288), - [anon_sym_i8] = ACTIONS(1288), - [anon_sym_u16] = ACTIONS(1288), - [anon_sym_i16] = ACTIONS(1288), - [anon_sym_u32] = ACTIONS(1288), - [anon_sym_i32] = ACTIONS(1288), - [anon_sym_u64] = ACTIONS(1288), - [anon_sym_i64] = ACTIONS(1288), - [anon_sym_u128] = ACTIONS(1288), - [anon_sym_i128] = ACTIONS(1288), - [anon_sym_isize] = ACTIONS(1288), - [anon_sym_usize] = ACTIONS(1288), - [anon_sym_f32] = ACTIONS(1288), - [anon_sym_f64] = ACTIONS(1288), - [anon_sym_bool] = ACTIONS(1288), - [anon_sym_str] = ACTIONS(1288), - [anon_sym_char] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_fn] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_impl] = ACTIONS(1288), - [anon_sym_let] = ACTIONS(1288), - [anon_sym_loop] = ACTIONS(1288), - [anon_sym_match] = ACTIONS(1288), - [anon_sym_mod] = ACTIONS(1288), - [anon_sym_pub] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_trait] = ACTIONS(1288), - [anon_sym_type] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_use] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1286), - [anon_sym_COLON_COLON] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_yield] = ACTIONS(1288), - [anon_sym_move] = ACTIONS(1288), - [sym_integer_literal] = ACTIONS(1286), - [aux_sym_string_literal_token1] = ACTIONS(1286), - [sym_char_literal] = ACTIONS(1286), - [anon_sym_true] = ACTIONS(1288), - [anon_sym_false] = ACTIONS(1288), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1288), - [sym_super] = ACTIONS(1288), - [sym_crate] = ACTIONS(1288), - [sym_metavariable] = ACTIONS(1286), - [sym_raw_string_literal] = ACTIONS(1286), - [sym_float_literal] = ACTIONS(1286), + [ts_builtin_sym_end] = ACTIONS(1276), + [sym_identifier] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym_macro_rules_BANG] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_RBRACE] = ACTIONS(1276), + [anon_sym_LBRACK] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_u8] = ACTIONS(1278), + [anon_sym_i8] = ACTIONS(1278), + [anon_sym_u16] = ACTIONS(1278), + [anon_sym_i16] = ACTIONS(1278), + [anon_sym_u32] = ACTIONS(1278), + [anon_sym_i32] = ACTIONS(1278), + [anon_sym_u64] = ACTIONS(1278), + [anon_sym_i64] = ACTIONS(1278), + [anon_sym_u128] = ACTIONS(1278), + [anon_sym_i128] = ACTIONS(1278), + [anon_sym_isize] = ACTIONS(1278), + [anon_sym_usize] = ACTIONS(1278), + [anon_sym_f32] = ACTIONS(1278), + [anon_sym_f64] = ACTIONS(1278), + [anon_sym_bool] = ACTIONS(1278), + [anon_sym_str] = ACTIONS(1278), + [anon_sym_char] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [anon_sym_async] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_default] = ACTIONS(1278), + [anon_sym_enum] = ACTIONS(1278), + [anon_sym_fn] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_impl] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1278), + [anon_sym_loop] = ACTIONS(1278), + [anon_sym_match] = ACTIONS(1278), + [anon_sym_mod] = ACTIONS(1278), + [anon_sym_pub] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_struct] = ACTIONS(1278), + [anon_sym_trait] = ACTIONS(1278), + [anon_sym_type] = ACTIONS(1278), + [anon_sym_union] = ACTIONS(1278), + [anon_sym_unsafe] = ACTIONS(1278), + [anon_sym_use] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_POUND] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym_LT] = ACTIONS(1276), + [anon_sym_COLON_COLON] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_PIPE] = ACTIONS(1276), + [anon_sym_yield] = ACTIONS(1278), + [anon_sym_move] = ACTIONS(1278), + [sym_integer_literal] = ACTIONS(1276), + [aux_sym_string_literal_token1] = ACTIONS(1276), + [sym_char_literal] = ACTIONS(1276), + [anon_sym_true] = ACTIONS(1278), + [anon_sym_false] = ACTIONS(1278), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1278), + [sym_super] = ACTIONS(1278), + [sym_crate] = ACTIONS(1278), + [sym_metavariable] = ACTIONS(1276), + [sym_raw_string_literal] = ACTIONS(1276), + [sym_float_literal] = ACTIONS(1276), [sym_block_comment] = ACTIONS(3), }, [302] = { - [ts_builtin_sym_end] = ACTIONS(1290), - [sym_identifier] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_macro_rules_BANG] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_u8] = ACTIONS(1292), - [anon_sym_i8] = ACTIONS(1292), - [anon_sym_u16] = ACTIONS(1292), - [anon_sym_i16] = ACTIONS(1292), - [anon_sym_u32] = ACTIONS(1292), - [anon_sym_i32] = ACTIONS(1292), - [anon_sym_u64] = ACTIONS(1292), - [anon_sym_i64] = ACTIONS(1292), - [anon_sym_u128] = ACTIONS(1292), - [anon_sym_i128] = ACTIONS(1292), - [anon_sym_isize] = ACTIONS(1292), - [anon_sym_usize] = ACTIONS(1292), - [anon_sym_f32] = ACTIONS(1292), - [anon_sym_f64] = ACTIONS(1292), - [anon_sym_bool] = ACTIONS(1292), - [anon_sym_str] = ACTIONS(1292), - [anon_sym_char] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(1292), - [anon_sym_async] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_fn] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_impl] = ACTIONS(1292), - [anon_sym_let] = ACTIONS(1292), - [anon_sym_loop] = ACTIONS(1292), - [anon_sym_match] = ACTIONS(1292), - [anon_sym_mod] = ACTIONS(1292), - [anon_sym_pub] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_trait] = ACTIONS(1292), - [anon_sym_type] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_unsafe] = ACTIONS(1292), - [anon_sym_use] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_POUND] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_COLON_COLON] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_DOT_DOT] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_yield] = ACTIONS(1292), - [anon_sym_move] = ACTIONS(1292), - [sym_integer_literal] = ACTIONS(1290), - [aux_sym_string_literal_token1] = ACTIONS(1290), - [sym_char_literal] = ACTIONS(1290), - [anon_sym_true] = ACTIONS(1292), - [anon_sym_false] = ACTIONS(1292), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1292), - [sym_super] = ACTIONS(1292), - [sym_crate] = ACTIONS(1292), - [sym_metavariable] = ACTIONS(1290), - [sym_raw_string_literal] = ACTIONS(1290), - [sym_float_literal] = ACTIONS(1290), + [ts_builtin_sym_end] = ACTIONS(1280), + [sym_identifier] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym_macro_rules_BANG] = ACTIONS(1280), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_RBRACE] = ACTIONS(1280), + [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_u8] = ACTIONS(1282), + [anon_sym_i8] = ACTIONS(1282), + [anon_sym_u16] = ACTIONS(1282), + [anon_sym_i16] = ACTIONS(1282), + [anon_sym_u32] = ACTIONS(1282), + [anon_sym_i32] = ACTIONS(1282), + [anon_sym_u64] = ACTIONS(1282), + [anon_sym_i64] = ACTIONS(1282), + [anon_sym_u128] = ACTIONS(1282), + [anon_sym_i128] = ACTIONS(1282), + [anon_sym_isize] = ACTIONS(1282), + [anon_sym_usize] = ACTIONS(1282), + [anon_sym_f32] = ACTIONS(1282), + [anon_sym_f64] = ACTIONS(1282), + [anon_sym_bool] = ACTIONS(1282), + [anon_sym_str] = ACTIONS(1282), + [anon_sym_char] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(1282), + [anon_sym_fn] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_impl] = ACTIONS(1282), + [anon_sym_let] = ACTIONS(1282), + [anon_sym_loop] = ACTIONS(1282), + [anon_sym_match] = ACTIONS(1282), + [anon_sym_mod] = ACTIONS(1282), + [anon_sym_pub] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1282), + [anon_sym_struct] = ACTIONS(1282), + [anon_sym_trait] = ACTIONS(1282), + [anon_sym_type] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_unsafe] = ACTIONS(1282), + [anon_sym_use] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym_LT] = ACTIONS(1280), + [anon_sym_COLON_COLON] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_DOT_DOT] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_PIPE] = ACTIONS(1280), + [anon_sym_yield] = ACTIONS(1282), + [anon_sym_move] = ACTIONS(1282), + [sym_integer_literal] = ACTIONS(1280), + [aux_sym_string_literal_token1] = ACTIONS(1280), + [sym_char_literal] = ACTIONS(1280), + [anon_sym_true] = ACTIONS(1282), + [anon_sym_false] = ACTIONS(1282), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1282), + [sym_super] = ACTIONS(1282), + [sym_crate] = ACTIONS(1282), + [sym_metavariable] = ACTIONS(1280), + [sym_raw_string_literal] = ACTIONS(1280), + [sym_float_literal] = ACTIONS(1280), [sym_block_comment] = ACTIONS(3), }, [303] = { - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_macro_rules_BANG] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_u8] = ACTIONS(1296), - [anon_sym_i8] = ACTIONS(1296), - [anon_sym_u16] = ACTIONS(1296), - [anon_sym_i16] = ACTIONS(1296), - [anon_sym_u32] = ACTIONS(1296), - [anon_sym_i32] = ACTIONS(1296), - [anon_sym_u64] = ACTIONS(1296), - [anon_sym_i64] = ACTIONS(1296), - [anon_sym_u128] = ACTIONS(1296), - [anon_sym_i128] = ACTIONS(1296), - [anon_sym_isize] = ACTIONS(1296), - [anon_sym_usize] = ACTIONS(1296), - [anon_sym_f32] = ACTIONS(1296), - [anon_sym_f64] = ACTIONS(1296), - [anon_sym_bool] = ACTIONS(1296), - [anon_sym_str] = ACTIONS(1296), - [anon_sym_char] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_async] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_fn] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1296), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_loop] = ACTIONS(1296), - [anon_sym_match] = ACTIONS(1296), - [anon_sym_mod] = ACTIONS(1296), - [anon_sym_pub] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_trait] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_unsafe] = ACTIONS(1296), - [anon_sym_use] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_POUND] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_COLON_COLON] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1296), - [anon_sym_move] = ACTIONS(1296), - [sym_integer_literal] = ACTIONS(1294), - [aux_sym_string_literal_token1] = ACTIONS(1294), - [sym_char_literal] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1296), - [anon_sym_false] = ACTIONS(1296), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1296), - [sym_super] = ACTIONS(1296), - [sym_crate] = ACTIONS(1296), - [sym_metavariable] = ACTIONS(1294), - [sym_raw_string_literal] = ACTIONS(1294), - [sym_float_literal] = ACTIONS(1294), + [ts_builtin_sym_end] = ACTIONS(1284), + [sym_identifier] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1284), + [anon_sym_macro_rules_BANG] = ACTIONS(1284), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_u8] = ACTIONS(1286), + [anon_sym_i8] = ACTIONS(1286), + [anon_sym_u16] = ACTIONS(1286), + [anon_sym_i16] = ACTIONS(1286), + [anon_sym_u32] = ACTIONS(1286), + [anon_sym_i32] = ACTIONS(1286), + [anon_sym_u64] = ACTIONS(1286), + [anon_sym_i64] = ACTIONS(1286), + [anon_sym_u128] = ACTIONS(1286), + [anon_sym_i128] = ACTIONS(1286), + [anon_sym_isize] = ACTIONS(1286), + [anon_sym_usize] = ACTIONS(1286), + [anon_sym_f32] = ACTIONS(1286), + [anon_sym_f64] = ACTIONS(1286), + [anon_sym_bool] = ACTIONS(1286), + [anon_sym_str] = ACTIONS(1286), + [anon_sym_char] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [anon_sym_async] = ACTIONS(1286), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1286), + [anon_sym_enum] = ACTIONS(1286), + [anon_sym_fn] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1286), + [anon_sym_if] = ACTIONS(1286), + [anon_sym_impl] = ACTIONS(1286), + [anon_sym_let] = ACTIONS(1286), + [anon_sym_loop] = ACTIONS(1286), + [anon_sym_match] = ACTIONS(1286), + [anon_sym_mod] = ACTIONS(1286), + [anon_sym_pub] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_struct] = ACTIONS(1286), + [anon_sym_trait] = ACTIONS(1286), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_union] = ACTIONS(1286), + [anon_sym_unsafe] = ACTIONS(1286), + [anon_sym_use] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1286), + [anon_sym_POUND] = ACTIONS(1284), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_COLON_COLON] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_DOT_DOT] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_yield] = ACTIONS(1286), + [anon_sym_move] = ACTIONS(1286), + [sym_integer_literal] = ACTIONS(1284), + [aux_sym_string_literal_token1] = ACTIONS(1284), + [sym_char_literal] = ACTIONS(1284), + [anon_sym_true] = ACTIONS(1286), + [anon_sym_false] = ACTIONS(1286), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1286), + [sym_super] = ACTIONS(1286), + [sym_crate] = ACTIONS(1286), + [sym_metavariable] = ACTIONS(1284), + [sym_raw_string_literal] = ACTIONS(1284), + [sym_float_literal] = ACTIONS(1284), [sym_block_comment] = ACTIONS(3), }, [304] = { - [ts_builtin_sym_end] = ACTIONS(1298), - [sym_identifier] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_macro_rules_BANG] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_u8] = ACTIONS(1300), - [anon_sym_i8] = ACTIONS(1300), - [anon_sym_u16] = ACTIONS(1300), - [anon_sym_i16] = ACTIONS(1300), - [anon_sym_u32] = ACTIONS(1300), - [anon_sym_i32] = ACTIONS(1300), - [anon_sym_u64] = ACTIONS(1300), - [anon_sym_i64] = ACTIONS(1300), - [anon_sym_u128] = ACTIONS(1300), - [anon_sym_i128] = ACTIONS(1300), - [anon_sym_isize] = ACTIONS(1300), - [anon_sym_usize] = ACTIONS(1300), - [anon_sym_f32] = ACTIONS(1300), - [anon_sym_f64] = ACTIONS(1300), - [anon_sym_bool] = ACTIONS(1300), - [anon_sym_str] = ACTIONS(1300), - [anon_sym_char] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_async] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_fn] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_impl] = ACTIONS(1300), - [anon_sym_let] = ACTIONS(1300), - [anon_sym_loop] = ACTIONS(1300), - [anon_sym_match] = ACTIONS(1300), - [anon_sym_mod] = ACTIONS(1300), - [anon_sym_pub] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_trait] = ACTIONS(1300), - [anon_sym_type] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_unsafe] = ACTIONS(1300), - [anon_sym_use] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_POUND] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1298), - [anon_sym_COLON_COLON] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1298), - [anon_sym_yield] = ACTIONS(1300), - [anon_sym_move] = ACTIONS(1300), - [sym_integer_literal] = ACTIONS(1298), - [aux_sym_string_literal_token1] = ACTIONS(1298), - [sym_char_literal] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1300), - [sym_super] = ACTIONS(1300), - [sym_crate] = ACTIONS(1300), - [sym_metavariable] = ACTIONS(1298), - [sym_raw_string_literal] = ACTIONS(1298), - [sym_float_literal] = ACTIONS(1298), + [ts_builtin_sym_end] = ACTIONS(1288), + [sym_identifier] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym_macro_rules_BANG] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_RBRACE] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_u8] = ACTIONS(1290), + [anon_sym_i8] = ACTIONS(1290), + [anon_sym_u16] = ACTIONS(1290), + [anon_sym_i16] = ACTIONS(1290), + [anon_sym_u32] = ACTIONS(1290), + [anon_sym_i32] = ACTIONS(1290), + [anon_sym_u64] = ACTIONS(1290), + [anon_sym_i64] = ACTIONS(1290), + [anon_sym_u128] = ACTIONS(1290), + [anon_sym_i128] = ACTIONS(1290), + [anon_sym_isize] = ACTIONS(1290), + [anon_sym_usize] = ACTIONS(1290), + [anon_sym_f32] = ACTIONS(1290), + [anon_sym_f64] = ACTIONS(1290), + [anon_sym_bool] = ACTIONS(1290), + [anon_sym_str] = ACTIONS(1290), + [anon_sym_char] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1290), + [anon_sym_async] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_default] = ACTIONS(1290), + [anon_sym_enum] = ACTIONS(1290), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_impl] = ACTIONS(1290), + [anon_sym_let] = ACTIONS(1290), + [anon_sym_loop] = ACTIONS(1290), + [anon_sym_match] = ACTIONS(1290), + [anon_sym_mod] = ACTIONS(1290), + [anon_sym_pub] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_struct] = ACTIONS(1290), + [anon_sym_trait] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_union] = ACTIONS(1290), + [anon_sym_unsafe] = ACTIONS(1290), + [anon_sym_use] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_POUND] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(1288), + [anon_sym_COLON_COLON] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_DOT_DOT] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_yield] = ACTIONS(1290), + [anon_sym_move] = ACTIONS(1290), + [sym_integer_literal] = ACTIONS(1288), + [aux_sym_string_literal_token1] = ACTIONS(1288), + [sym_char_literal] = ACTIONS(1288), + [anon_sym_true] = ACTIONS(1290), + [anon_sym_false] = ACTIONS(1290), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1290), + [sym_super] = ACTIONS(1290), + [sym_crate] = ACTIONS(1290), + [sym_metavariable] = ACTIONS(1288), + [sym_raw_string_literal] = ACTIONS(1288), + [sym_float_literal] = ACTIONS(1288), [sym_block_comment] = ACTIONS(3), }, [305] = { - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_identifier] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_macro_rules_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_u8] = ACTIONS(1304), - [anon_sym_i8] = ACTIONS(1304), - [anon_sym_u16] = ACTIONS(1304), - [anon_sym_i16] = ACTIONS(1304), - [anon_sym_u32] = ACTIONS(1304), - [anon_sym_i32] = ACTIONS(1304), - [anon_sym_u64] = ACTIONS(1304), - [anon_sym_i64] = ACTIONS(1304), - [anon_sym_u128] = ACTIONS(1304), - [anon_sym_i128] = ACTIONS(1304), - [anon_sym_isize] = ACTIONS(1304), - [anon_sym_usize] = ACTIONS(1304), - [anon_sym_f32] = ACTIONS(1304), - [anon_sym_f64] = ACTIONS(1304), - [anon_sym_bool] = ACTIONS(1304), - [anon_sym_str] = ACTIONS(1304), - [anon_sym_char] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_async] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_fn] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_impl] = ACTIONS(1304), - [anon_sym_let] = ACTIONS(1304), - [anon_sym_loop] = ACTIONS(1304), - [anon_sym_match] = ACTIONS(1304), - [anon_sym_mod] = ACTIONS(1304), - [anon_sym_pub] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_trait] = ACTIONS(1304), - [anon_sym_type] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_unsafe] = ACTIONS(1304), - [anon_sym_use] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_POUND] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_COLON_COLON] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_yield] = ACTIONS(1304), - [anon_sym_move] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1302), - [aux_sym_string_literal_token1] = ACTIONS(1302), - [sym_char_literal] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1304), - [anon_sym_false] = ACTIONS(1304), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_crate] = ACTIONS(1304), - [sym_metavariable] = ACTIONS(1302), - [sym_raw_string_literal] = ACTIONS(1302), - [sym_float_literal] = ACTIONS(1302), + [ts_builtin_sym_end] = ACTIONS(1292), + [sym_identifier] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym_macro_rules_BANG] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_u8] = ACTIONS(1294), + [anon_sym_i8] = ACTIONS(1294), + [anon_sym_u16] = ACTIONS(1294), + [anon_sym_i16] = ACTIONS(1294), + [anon_sym_u32] = ACTIONS(1294), + [anon_sym_i32] = ACTIONS(1294), + [anon_sym_u64] = ACTIONS(1294), + [anon_sym_i64] = ACTIONS(1294), + [anon_sym_u128] = ACTIONS(1294), + [anon_sym_i128] = ACTIONS(1294), + [anon_sym_isize] = ACTIONS(1294), + [anon_sym_usize] = ACTIONS(1294), + [anon_sym_f32] = ACTIONS(1294), + [anon_sym_f64] = ACTIONS(1294), + [anon_sym_bool] = ACTIONS(1294), + [anon_sym_str] = ACTIONS(1294), + [anon_sym_char] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_default] = ACTIONS(1294), + [anon_sym_enum] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_let] = ACTIONS(1294), + [anon_sym_loop] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1294), + [anon_sym_mod] = ACTIONS(1294), + [anon_sym_pub] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_struct] = ACTIONS(1294), + [anon_sym_trait] = ACTIONS(1294), + [anon_sym_type] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1294), + [anon_sym_unsafe] = ACTIONS(1294), + [anon_sym_use] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_COLON_COLON] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_DOT_DOT] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_yield] = ACTIONS(1294), + [anon_sym_move] = ACTIONS(1294), + [sym_integer_literal] = ACTIONS(1292), + [aux_sym_string_literal_token1] = ACTIONS(1292), + [sym_char_literal] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1294), + [anon_sym_false] = ACTIONS(1294), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1294), + [sym_super] = ACTIONS(1294), + [sym_crate] = ACTIONS(1294), + [sym_metavariable] = ACTIONS(1292), + [sym_raw_string_literal] = ACTIONS(1292), + [sym_float_literal] = ACTIONS(1292), [sym_block_comment] = ACTIONS(3), }, [306] = { - [ts_builtin_sym_end] = ACTIONS(1306), - [sym_identifier] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_macro_rules_BANG] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_u8] = ACTIONS(1308), - [anon_sym_i8] = ACTIONS(1308), - [anon_sym_u16] = ACTIONS(1308), - [anon_sym_i16] = ACTIONS(1308), - [anon_sym_u32] = ACTIONS(1308), - [anon_sym_i32] = ACTIONS(1308), - [anon_sym_u64] = ACTIONS(1308), - [anon_sym_i64] = ACTIONS(1308), - [anon_sym_u128] = ACTIONS(1308), - [anon_sym_i128] = ACTIONS(1308), - [anon_sym_isize] = ACTIONS(1308), - [anon_sym_usize] = ACTIONS(1308), - [anon_sym_f32] = ACTIONS(1308), - [anon_sym_f64] = ACTIONS(1308), - [anon_sym_bool] = ACTIONS(1308), - [anon_sym_str] = ACTIONS(1308), - [anon_sym_char] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_impl] = ACTIONS(1308), - [anon_sym_let] = ACTIONS(1308), - [anon_sym_loop] = ACTIONS(1308), - [anon_sym_match] = ACTIONS(1308), - [anon_sym_mod] = ACTIONS(1308), - [anon_sym_pub] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_trait] = ACTIONS(1308), - [anon_sym_type] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_unsafe] = ACTIONS(1308), - [anon_sym_use] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_COLON_COLON] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_DOT_DOT] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1306), - [anon_sym_yield] = ACTIONS(1308), - [anon_sym_move] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1306), - [aux_sym_string_literal_token1] = ACTIONS(1306), - [sym_char_literal] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1308), - [sym_super] = ACTIONS(1308), - [sym_crate] = ACTIONS(1308), - [sym_metavariable] = ACTIONS(1306), - [sym_raw_string_literal] = ACTIONS(1306), - [sym_float_literal] = ACTIONS(1306), + [ts_builtin_sym_end] = ACTIONS(1296), + [sym_identifier] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_macro_rules_BANG] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_u8] = ACTIONS(1298), + [anon_sym_i8] = ACTIONS(1298), + [anon_sym_u16] = ACTIONS(1298), + [anon_sym_i16] = ACTIONS(1298), + [anon_sym_u32] = ACTIONS(1298), + [anon_sym_i32] = ACTIONS(1298), + [anon_sym_u64] = ACTIONS(1298), + [anon_sym_i64] = ACTIONS(1298), + [anon_sym_u128] = ACTIONS(1298), + [anon_sym_i128] = ACTIONS(1298), + [anon_sym_isize] = ACTIONS(1298), + [anon_sym_usize] = ACTIONS(1298), + [anon_sym_f32] = ACTIONS(1298), + [anon_sym_f64] = ACTIONS(1298), + [anon_sym_bool] = ACTIONS(1298), + [anon_sym_str] = ACTIONS(1298), + [anon_sym_char] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_async] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_impl] = ACTIONS(1298), + [anon_sym_let] = ACTIONS(1298), + [anon_sym_loop] = ACTIONS(1298), + [anon_sym_match] = ACTIONS(1298), + [anon_sym_mod] = ACTIONS(1298), + [anon_sym_pub] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_trait] = ACTIONS(1298), + [anon_sym_type] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_unsafe] = ACTIONS(1298), + [anon_sym_use] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_POUND] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_COLON_COLON] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_DOT_DOT] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_yield] = ACTIONS(1298), + [anon_sym_move] = ACTIONS(1298), + [sym_integer_literal] = ACTIONS(1296), + [aux_sym_string_literal_token1] = ACTIONS(1296), + [sym_char_literal] = ACTIONS(1296), + [anon_sym_true] = ACTIONS(1298), + [anon_sym_false] = ACTIONS(1298), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1298), + [sym_super] = ACTIONS(1298), + [sym_crate] = ACTIONS(1298), + [sym_metavariable] = ACTIONS(1296), + [sym_raw_string_literal] = ACTIONS(1296), + [sym_float_literal] = ACTIONS(1296), [sym_block_comment] = ACTIONS(3), }, [307] = { - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_macro_rules_BANG] = ACTIONS(1310), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_u8] = ACTIONS(1312), - [anon_sym_i8] = ACTIONS(1312), - [anon_sym_u16] = ACTIONS(1312), - [anon_sym_i16] = ACTIONS(1312), - [anon_sym_u32] = ACTIONS(1312), - [anon_sym_i32] = ACTIONS(1312), - [anon_sym_u64] = ACTIONS(1312), - [anon_sym_i64] = ACTIONS(1312), - [anon_sym_u128] = ACTIONS(1312), - [anon_sym_i128] = ACTIONS(1312), - [anon_sym_isize] = ACTIONS(1312), - [anon_sym_usize] = ACTIONS(1312), - [anon_sym_f32] = ACTIONS(1312), - [anon_sym_f64] = ACTIONS(1312), - [anon_sym_bool] = ACTIONS(1312), - [anon_sym_str] = ACTIONS(1312), - [anon_sym_char] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_fn] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_impl] = ACTIONS(1312), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_loop] = ACTIONS(1312), - [anon_sym_match] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_pub] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_trait] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_unsafe] = ACTIONS(1312), - [anon_sym_use] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_POUND] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_COLON_COLON] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_DOT_DOT] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1310), - [anon_sym_yield] = ACTIONS(1312), - [anon_sym_move] = ACTIONS(1312), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1310), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1312), - [sym_super] = ACTIONS(1312), - [sym_crate] = ACTIONS(1312), - [sym_metavariable] = ACTIONS(1310), - [sym_raw_string_literal] = ACTIONS(1310), - [sym_float_literal] = ACTIONS(1310), + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_macro_rules_BANG] = ACTIONS(1300), + [anon_sym_LPAREN] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_u8] = ACTIONS(1302), + [anon_sym_i8] = ACTIONS(1302), + [anon_sym_u16] = ACTIONS(1302), + [anon_sym_i16] = ACTIONS(1302), + [anon_sym_u32] = ACTIONS(1302), + [anon_sym_i32] = ACTIONS(1302), + [anon_sym_u64] = ACTIONS(1302), + [anon_sym_i64] = ACTIONS(1302), + [anon_sym_u128] = ACTIONS(1302), + [anon_sym_i128] = ACTIONS(1302), + [anon_sym_isize] = ACTIONS(1302), + [anon_sym_usize] = ACTIONS(1302), + [anon_sym_f32] = ACTIONS(1302), + [anon_sym_f64] = ACTIONS(1302), + [anon_sym_bool] = ACTIONS(1302), + [anon_sym_str] = ACTIONS(1302), + [anon_sym_char] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_async] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_impl] = ACTIONS(1302), + [anon_sym_let] = ACTIONS(1302), + [anon_sym_loop] = ACTIONS(1302), + [anon_sym_match] = ACTIONS(1302), + [anon_sym_mod] = ACTIONS(1302), + [anon_sym_pub] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_trait] = ACTIONS(1302), + [anon_sym_type] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1302), + [anon_sym_use] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_POUND] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_COLON_COLON] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_DOT_DOT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_move] = ACTIONS(1302), + [sym_integer_literal] = ACTIONS(1300), + [aux_sym_string_literal_token1] = ACTIONS(1300), + [sym_char_literal] = ACTIONS(1300), + [anon_sym_true] = ACTIONS(1302), + [anon_sym_false] = ACTIONS(1302), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1302), + [sym_super] = ACTIONS(1302), + [sym_crate] = ACTIONS(1302), + [sym_metavariable] = ACTIONS(1300), + [sym_raw_string_literal] = ACTIONS(1300), + [sym_float_literal] = ACTIONS(1300), [sym_block_comment] = ACTIONS(3), }, [308] = { - [ts_builtin_sym_end] = ACTIONS(1314), - [sym_identifier] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_macro_rules_BANG] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_LBRACK] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_u8] = ACTIONS(1316), - [anon_sym_i8] = ACTIONS(1316), - [anon_sym_u16] = ACTIONS(1316), - [anon_sym_i16] = ACTIONS(1316), - [anon_sym_u32] = ACTIONS(1316), - [anon_sym_i32] = ACTIONS(1316), - [anon_sym_u64] = ACTIONS(1316), - [anon_sym_i64] = ACTIONS(1316), - [anon_sym_u128] = ACTIONS(1316), - [anon_sym_i128] = ACTIONS(1316), - [anon_sym_isize] = ACTIONS(1316), - [anon_sym_usize] = ACTIONS(1316), - [anon_sym_f32] = ACTIONS(1316), - [anon_sym_f64] = ACTIONS(1316), - [anon_sym_bool] = ACTIONS(1316), - [anon_sym_str] = ACTIONS(1316), - [anon_sym_char] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_async] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_fn] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_impl] = ACTIONS(1316), - [anon_sym_let] = ACTIONS(1316), - [anon_sym_loop] = ACTIONS(1316), - [anon_sym_match] = ACTIONS(1316), - [anon_sym_mod] = ACTIONS(1316), - [anon_sym_pub] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_trait] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_unsafe] = ACTIONS(1316), - [anon_sym_use] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1314), - [anon_sym_COLON_COLON] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_DOT_DOT] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1314), - [anon_sym_yield] = ACTIONS(1316), - [anon_sym_move] = ACTIONS(1316), - [sym_integer_literal] = ACTIONS(1314), - [aux_sym_string_literal_token1] = ACTIONS(1314), - [sym_char_literal] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1316), - [anon_sym_false] = ACTIONS(1316), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1316), - [sym_super] = ACTIONS(1316), - [sym_crate] = ACTIONS(1316), - [sym_metavariable] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1314), - [sym_float_literal] = ACTIONS(1314), + [ts_builtin_sym_end] = ACTIONS(1304), + [sym_identifier] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_macro_rules_BANG] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_LBRACK] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_u8] = ACTIONS(1306), + [anon_sym_i8] = ACTIONS(1306), + [anon_sym_u16] = ACTIONS(1306), + [anon_sym_i16] = ACTIONS(1306), + [anon_sym_u32] = ACTIONS(1306), + [anon_sym_i32] = ACTIONS(1306), + [anon_sym_u64] = ACTIONS(1306), + [anon_sym_i64] = ACTIONS(1306), + [anon_sym_u128] = ACTIONS(1306), + [anon_sym_i128] = ACTIONS(1306), + [anon_sym_isize] = ACTIONS(1306), + [anon_sym_usize] = ACTIONS(1306), + [anon_sym_f32] = ACTIONS(1306), + [anon_sym_f64] = ACTIONS(1306), + [anon_sym_bool] = ACTIONS(1306), + [anon_sym_str] = ACTIONS(1306), + [anon_sym_char] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_async] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_loop] = ACTIONS(1306), + [anon_sym_match] = ACTIONS(1306), + [anon_sym_mod] = ACTIONS(1306), + [anon_sym_pub] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_trait] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_POUND] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_COLON_COLON] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_DOT_DOT] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PIPE] = ACTIONS(1304), + [anon_sym_yield] = ACTIONS(1306), + [anon_sym_move] = ACTIONS(1306), + [sym_integer_literal] = ACTIONS(1304), + [aux_sym_string_literal_token1] = ACTIONS(1304), + [sym_char_literal] = ACTIONS(1304), + [anon_sym_true] = ACTIONS(1306), + [anon_sym_false] = ACTIONS(1306), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1306), + [sym_super] = ACTIONS(1306), + [sym_crate] = ACTIONS(1306), + [sym_metavariable] = ACTIONS(1304), + [sym_raw_string_literal] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1304), [sym_block_comment] = ACTIONS(3), }, [309] = { - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_macro_rules_BANG] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1320), - [anon_sym_i8] = ACTIONS(1320), - [anon_sym_u16] = ACTIONS(1320), - [anon_sym_i16] = ACTIONS(1320), - [anon_sym_u32] = ACTIONS(1320), - [anon_sym_i32] = ACTIONS(1320), - [anon_sym_u64] = ACTIONS(1320), - [anon_sym_i64] = ACTIONS(1320), - [anon_sym_u128] = ACTIONS(1320), - [anon_sym_i128] = ACTIONS(1320), - [anon_sym_isize] = ACTIONS(1320), - [anon_sym_usize] = ACTIONS(1320), - [anon_sym_f32] = ACTIONS(1320), - [anon_sym_f64] = ACTIONS(1320), - [anon_sym_bool] = ACTIONS(1320), - [anon_sym_str] = ACTIONS(1320), - [anon_sym_char] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_async] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_fn] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_impl] = ACTIONS(1320), - [anon_sym_let] = ACTIONS(1320), - [anon_sym_loop] = ACTIONS(1320), - [anon_sym_match] = ACTIONS(1320), - [anon_sym_mod] = ACTIONS(1320), - [anon_sym_pub] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_trait] = ACTIONS(1320), - [anon_sym_type] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_unsafe] = ACTIONS(1320), - [anon_sym_use] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_COLON_COLON] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1318), - [anon_sym_yield] = ACTIONS(1320), - [anon_sym_move] = ACTIONS(1320), - [sym_integer_literal] = ACTIONS(1318), - [aux_sym_string_literal_token1] = ACTIONS(1318), - [sym_char_literal] = ACTIONS(1318), - [anon_sym_true] = ACTIONS(1320), - [anon_sym_false] = ACTIONS(1320), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1320), - [sym_super] = ACTIONS(1320), - [sym_crate] = ACTIONS(1320), - [sym_metavariable] = ACTIONS(1318), - [sym_raw_string_literal] = ACTIONS(1318), - [sym_float_literal] = ACTIONS(1318), + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_macro_rules_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_POUND] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_DOT_DOT] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym_yield] = ACTIONS(1310), + [anon_sym_move] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1308), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1308), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_metavariable] = ACTIONS(1308), + [sym_raw_string_literal] = ACTIONS(1308), + [sym_float_literal] = ACTIONS(1308), [sym_block_comment] = ACTIONS(3), }, [310] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_macro_rules_BANG] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_LBRACK] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_u8] = ACTIONS(1324), - [anon_sym_i8] = ACTIONS(1324), - [anon_sym_u16] = ACTIONS(1324), - [anon_sym_i16] = ACTIONS(1324), - [anon_sym_u32] = ACTIONS(1324), - [anon_sym_i32] = ACTIONS(1324), - [anon_sym_u64] = ACTIONS(1324), - [anon_sym_i64] = ACTIONS(1324), - [anon_sym_u128] = ACTIONS(1324), - [anon_sym_i128] = ACTIONS(1324), - [anon_sym_isize] = ACTIONS(1324), - [anon_sym_usize] = ACTIONS(1324), - [anon_sym_f32] = ACTIONS(1324), - [anon_sym_f64] = ACTIONS(1324), - [anon_sym_bool] = ACTIONS(1324), - [anon_sym_str] = ACTIONS(1324), - [anon_sym_char] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_async] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_fn] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_impl] = ACTIONS(1324), - [anon_sym_let] = ACTIONS(1324), - [anon_sym_loop] = ACTIONS(1324), - [anon_sym_match] = ACTIONS(1324), - [anon_sym_mod] = ACTIONS(1324), - [anon_sym_pub] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_trait] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_unsafe] = ACTIONS(1324), - [anon_sym_use] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_COLON_COLON] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1322), - [anon_sym_yield] = ACTIONS(1324), - [anon_sym_move] = ACTIONS(1324), - [sym_integer_literal] = ACTIONS(1322), - [aux_sym_string_literal_token1] = ACTIONS(1322), - [sym_char_literal] = ACTIONS(1322), - [anon_sym_true] = ACTIONS(1324), - [anon_sym_false] = ACTIONS(1324), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1324), - [sym_super] = ACTIONS(1324), - [sym_crate] = ACTIONS(1324), - [sym_metavariable] = ACTIONS(1322), - [sym_raw_string_literal] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1322), + [ts_builtin_sym_end] = ACTIONS(1312), + [sym_identifier] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_macro_rules_BANG] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_RBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1314), + [anon_sym_i8] = ACTIONS(1314), + [anon_sym_u16] = ACTIONS(1314), + [anon_sym_i16] = ACTIONS(1314), + [anon_sym_u32] = ACTIONS(1314), + [anon_sym_i32] = ACTIONS(1314), + [anon_sym_u64] = ACTIONS(1314), + [anon_sym_i64] = ACTIONS(1314), + [anon_sym_u128] = ACTIONS(1314), + [anon_sym_i128] = ACTIONS(1314), + [anon_sym_isize] = ACTIONS(1314), + [anon_sym_usize] = ACTIONS(1314), + [anon_sym_f32] = ACTIONS(1314), + [anon_sym_f64] = ACTIONS(1314), + [anon_sym_bool] = ACTIONS(1314), + [anon_sym_str] = ACTIONS(1314), + [anon_sym_char] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_async] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_impl] = ACTIONS(1314), + [anon_sym_let] = ACTIONS(1314), + [anon_sym_loop] = ACTIONS(1314), + [anon_sym_match] = ACTIONS(1314), + [anon_sym_mod] = ACTIONS(1314), + [anon_sym_pub] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_trait] = ACTIONS(1314), + [anon_sym_type] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_unsafe] = ACTIONS(1314), + [anon_sym_use] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_yield] = ACTIONS(1314), + [anon_sym_move] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1312), + [aux_sym_string_literal_token1] = ACTIONS(1312), + [sym_char_literal] = ACTIONS(1312), + [anon_sym_true] = ACTIONS(1314), + [anon_sym_false] = ACTIONS(1314), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1314), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1312), + [sym_raw_string_literal] = ACTIONS(1312), + [sym_float_literal] = ACTIONS(1312), [sym_block_comment] = ACTIONS(3), }, [311] = { - [ts_builtin_sym_end] = ACTIONS(1326), - [sym_identifier] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_macro_rules_BANG] = ACTIONS(1326), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_u8] = ACTIONS(1328), - [anon_sym_i8] = ACTIONS(1328), - [anon_sym_u16] = ACTIONS(1328), - [anon_sym_i16] = ACTIONS(1328), - [anon_sym_u32] = ACTIONS(1328), - [anon_sym_i32] = ACTIONS(1328), - [anon_sym_u64] = ACTIONS(1328), - [anon_sym_i64] = ACTIONS(1328), - [anon_sym_u128] = ACTIONS(1328), - [anon_sym_i128] = ACTIONS(1328), - [anon_sym_isize] = ACTIONS(1328), - [anon_sym_usize] = ACTIONS(1328), - [anon_sym_f32] = ACTIONS(1328), - [anon_sym_f64] = ACTIONS(1328), - [anon_sym_bool] = ACTIONS(1328), - [anon_sym_str] = ACTIONS(1328), - [anon_sym_char] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_async] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_fn] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_impl] = ACTIONS(1328), - [anon_sym_let] = ACTIONS(1328), - [anon_sym_loop] = ACTIONS(1328), - [anon_sym_match] = ACTIONS(1328), - [anon_sym_mod] = ACTIONS(1328), - [anon_sym_pub] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_trait] = ACTIONS(1328), - [anon_sym_type] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_unsafe] = ACTIONS(1328), - [anon_sym_use] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_POUND] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym_LT] = ACTIONS(1326), - [anon_sym_COLON_COLON] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_DOT_DOT] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_move] = ACTIONS(1328), - [sym_integer_literal] = ACTIONS(1326), - [aux_sym_string_literal_token1] = ACTIONS(1326), - [sym_char_literal] = ACTIONS(1326), - [anon_sym_true] = ACTIONS(1328), - [anon_sym_false] = ACTIONS(1328), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1328), - [sym_super] = ACTIONS(1328), - [sym_crate] = ACTIONS(1328), - [sym_metavariable] = ACTIONS(1326), - [sym_raw_string_literal] = ACTIONS(1326), - [sym_float_literal] = ACTIONS(1326), + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym_macro_rules_BANG] = ACTIONS(1316), + [anon_sym_LPAREN] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_u8] = ACTIONS(1318), + [anon_sym_i8] = ACTIONS(1318), + [anon_sym_u16] = ACTIONS(1318), + [anon_sym_i16] = ACTIONS(1318), + [anon_sym_u32] = ACTIONS(1318), + [anon_sym_i32] = ACTIONS(1318), + [anon_sym_u64] = ACTIONS(1318), + [anon_sym_i64] = ACTIONS(1318), + [anon_sym_u128] = ACTIONS(1318), + [anon_sym_i128] = ACTIONS(1318), + [anon_sym_isize] = ACTIONS(1318), + [anon_sym_usize] = ACTIONS(1318), + [anon_sym_f32] = ACTIONS(1318), + [anon_sym_f64] = ACTIONS(1318), + [anon_sym_bool] = ACTIONS(1318), + [anon_sym_str] = ACTIONS(1318), + [anon_sym_char] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_async] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_fn] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_impl] = ACTIONS(1318), + [anon_sym_let] = ACTIONS(1318), + [anon_sym_loop] = ACTIONS(1318), + [anon_sym_match] = ACTIONS(1318), + [anon_sym_mod] = ACTIONS(1318), + [anon_sym_pub] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_trait] = ACTIONS(1318), + [anon_sym_type] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_unsafe] = ACTIONS(1318), + [anon_sym_use] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_POUND] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym_LT] = ACTIONS(1316), + [anon_sym_COLON_COLON] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_DOT_DOT] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_PIPE] = ACTIONS(1316), + [anon_sym_yield] = ACTIONS(1318), + [anon_sym_move] = ACTIONS(1318), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1316), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1318), + [anon_sym_false] = ACTIONS(1318), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1318), + [sym_super] = ACTIONS(1318), + [sym_crate] = ACTIONS(1318), + [sym_metavariable] = ACTIONS(1316), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, [312] = { - [ts_builtin_sym_end] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_macro_rules_BANG] = ACTIONS(1330), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_u8] = ACTIONS(1332), - [anon_sym_i8] = ACTIONS(1332), - [anon_sym_u16] = ACTIONS(1332), - [anon_sym_i16] = ACTIONS(1332), - [anon_sym_u32] = ACTIONS(1332), - [anon_sym_i32] = ACTIONS(1332), - [anon_sym_u64] = ACTIONS(1332), - [anon_sym_i64] = ACTIONS(1332), - [anon_sym_u128] = ACTIONS(1332), - [anon_sym_i128] = ACTIONS(1332), - [anon_sym_isize] = ACTIONS(1332), - [anon_sym_usize] = ACTIONS(1332), - [anon_sym_f32] = ACTIONS(1332), - [anon_sym_f64] = ACTIONS(1332), - [anon_sym_bool] = ACTIONS(1332), - [anon_sym_str] = ACTIONS(1332), - [anon_sym_char] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_async] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_fn] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_impl] = ACTIONS(1332), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_loop] = ACTIONS(1332), - [anon_sym_match] = ACTIONS(1332), - [anon_sym_mod] = ACTIONS(1332), - [anon_sym_pub] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_trait] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_unsafe] = ACTIONS(1332), - [anon_sym_use] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_POUND] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_LT] = ACTIONS(1330), - [anon_sym_COLON_COLON] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_DOT_DOT] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PIPE] = ACTIONS(1330), - [anon_sym_yield] = ACTIONS(1332), - [anon_sym_move] = ACTIONS(1332), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1330), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1332), - [sym_super] = ACTIONS(1332), - [sym_crate] = ACTIONS(1332), - [sym_metavariable] = ACTIONS(1330), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym_macro_rules_BANG] = ACTIONS(1320), + [anon_sym_LPAREN] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_u8] = ACTIONS(1322), + [anon_sym_i8] = ACTIONS(1322), + [anon_sym_u16] = ACTIONS(1322), + [anon_sym_i16] = ACTIONS(1322), + [anon_sym_u32] = ACTIONS(1322), + [anon_sym_i32] = ACTIONS(1322), + [anon_sym_u64] = ACTIONS(1322), + [anon_sym_i64] = ACTIONS(1322), + [anon_sym_u128] = ACTIONS(1322), + [anon_sym_i128] = ACTIONS(1322), + [anon_sym_isize] = ACTIONS(1322), + [anon_sym_usize] = ACTIONS(1322), + [anon_sym_f32] = ACTIONS(1322), + [anon_sym_f64] = ACTIONS(1322), + [anon_sym_bool] = ACTIONS(1322), + [anon_sym_str] = ACTIONS(1322), + [anon_sym_char] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_async] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_impl] = ACTIONS(1322), + [anon_sym_let] = ACTIONS(1322), + [anon_sym_loop] = ACTIONS(1322), + [anon_sym_match] = ACTIONS(1322), + [anon_sym_mod] = ACTIONS(1322), + [anon_sym_pub] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_trait] = ACTIONS(1322), + [anon_sym_type] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_unsafe] = ACTIONS(1322), + [anon_sym_use] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_POUND] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym_LT] = ACTIONS(1320), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_DOT_DOT] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1320), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_move] = ACTIONS(1322), + [sym_integer_literal] = ACTIONS(1320), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1320), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1322), + [sym_super] = ACTIONS(1322), + [sym_crate] = ACTIONS(1322), + [sym_metavariable] = ACTIONS(1320), + [sym_raw_string_literal] = ACTIONS(1320), + [sym_float_literal] = ACTIONS(1320), [sym_block_comment] = ACTIONS(3), }, [313] = { - [ts_builtin_sym_end] = ACTIONS(1334), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_macro_rules_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_u8] = ACTIONS(1336), - [anon_sym_i8] = ACTIONS(1336), - [anon_sym_u16] = ACTIONS(1336), - [anon_sym_i16] = ACTIONS(1336), - [anon_sym_u32] = ACTIONS(1336), - [anon_sym_i32] = ACTIONS(1336), - [anon_sym_u64] = ACTIONS(1336), - [anon_sym_i64] = ACTIONS(1336), - [anon_sym_u128] = ACTIONS(1336), - [anon_sym_i128] = ACTIONS(1336), - [anon_sym_isize] = ACTIONS(1336), - [anon_sym_usize] = ACTIONS(1336), - [anon_sym_f32] = ACTIONS(1336), - [anon_sym_f64] = ACTIONS(1336), - [anon_sym_bool] = ACTIONS(1336), - [anon_sym_str] = ACTIONS(1336), - [anon_sym_char] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_async] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_impl] = ACTIONS(1336), - [anon_sym_let] = ACTIONS(1336), - [anon_sym_loop] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1336), - [anon_sym_mod] = ACTIONS(1336), - [anon_sym_pub] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_trait] = ACTIONS(1336), - [anon_sym_type] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_unsafe] = ACTIONS(1336), - [anon_sym_use] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_POUND] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym_LT] = ACTIONS(1334), - [anon_sym_COLON_COLON] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_DOT_DOT] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PIPE] = ACTIONS(1334), - [anon_sym_yield] = ACTIONS(1336), - [anon_sym_move] = ACTIONS(1336), - [sym_integer_literal] = ACTIONS(1334), - [aux_sym_string_literal_token1] = ACTIONS(1334), - [sym_char_literal] = ACTIONS(1334), - [anon_sym_true] = ACTIONS(1336), - [anon_sym_false] = ACTIONS(1336), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1336), - [sym_super] = ACTIONS(1336), - [sym_crate] = ACTIONS(1336), - [sym_metavariable] = ACTIONS(1334), - [sym_raw_string_literal] = ACTIONS(1334), - [sym_float_literal] = ACTIONS(1334), + [ts_builtin_sym_end] = ACTIONS(1324), + [sym_identifier] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym_macro_rules_BANG] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_u8] = ACTIONS(1326), + [anon_sym_i8] = ACTIONS(1326), + [anon_sym_u16] = ACTIONS(1326), + [anon_sym_i16] = ACTIONS(1326), + [anon_sym_u32] = ACTIONS(1326), + [anon_sym_i32] = ACTIONS(1326), + [anon_sym_u64] = ACTIONS(1326), + [anon_sym_i64] = ACTIONS(1326), + [anon_sym_u128] = ACTIONS(1326), + [anon_sym_i128] = ACTIONS(1326), + [anon_sym_isize] = ACTIONS(1326), + [anon_sym_usize] = ACTIONS(1326), + [anon_sym_f32] = ACTIONS(1326), + [anon_sym_f64] = ACTIONS(1326), + [anon_sym_bool] = ACTIONS(1326), + [anon_sym_str] = ACTIONS(1326), + [anon_sym_char] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_fn] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_impl] = ACTIONS(1326), + [anon_sym_let] = ACTIONS(1326), + [anon_sym_loop] = ACTIONS(1326), + [anon_sym_match] = ACTIONS(1326), + [anon_sym_mod] = ACTIONS(1326), + [anon_sym_pub] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_trait] = ACTIONS(1326), + [anon_sym_type] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_unsafe] = ACTIONS(1326), + [anon_sym_use] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_POUND] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym_LT] = ACTIONS(1324), + [anon_sym_COLON_COLON] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_DOT_DOT] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PIPE] = ACTIONS(1324), + [anon_sym_yield] = ACTIONS(1326), + [anon_sym_move] = ACTIONS(1326), + [sym_integer_literal] = ACTIONS(1324), + [aux_sym_string_literal_token1] = ACTIONS(1324), + [sym_char_literal] = ACTIONS(1324), + [anon_sym_true] = ACTIONS(1326), + [anon_sym_false] = ACTIONS(1326), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1324), + [sym_raw_string_literal] = ACTIONS(1324), + [sym_float_literal] = ACTIONS(1324), [sym_block_comment] = ACTIONS(3), }, [314] = { - [ts_builtin_sym_end] = ACTIONS(1338), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_macro_rules_BANG] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_u8] = ACTIONS(1340), - [anon_sym_i8] = ACTIONS(1340), - [anon_sym_u16] = ACTIONS(1340), - [anon_sym_i16] = ACTIONS(1340), - [anon_sym_u32] = ACTIONS(1340), - [anon_sym_i32] = ACTIONS(1340), - [anon_sym_u64] = ACTIONS(1340), - [anon_sym_i64] = ACTIONS(1340), - [anon_sym_u128] = ACTIONS(1340), - [anon_sym_i128] = ACTIONS(1340), - [anon_sym_isize] = ACTIONS(1340), - [anon_sym_usize] = ACTIONS(1340), - [anon_sym_f32] = ACTIONS(1340), - [anon_sym_f64] = ACTIONS(1340), - [anon_sym_bool] = ACTIONS(1340), - [anon_sym_str] = ACTIONS(1340), - [anon_sym_char] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_async] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_impl] = ACTIONS(1340), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_loop] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_mod] = ACTIONS(1340), - [anon_sym_pub] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_trait] = ACTIONS(1340), - [anon_sym_type] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_unsafe] = ACTIONS(1340), - [anon_sym_use] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_POUND] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1338), - [anon_sym_COLON_COLON] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_DOT_DOT] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_move] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1338), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1340), - [anon_sym_false] = ACTIONS(1340), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1340), - [sym_super] = ACTIONS(1340), - [sym_crate] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1338), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), + [ts_builtin_sym_end] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym_macro_rules_BANG] = ACTIONS(1328), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1328), + [anon_sym_LBRACK] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_fn] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_impl] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1330), + [anon_sym_loop] = ACTIONS(1330), + [anon_sym_match] = ACTIONS(1330), + [anon_sym_mod] = ACTIONS(1330), + [anon_sym_pub] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_trait] = ACTIONS(1330), + [anon_sym_type] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_unsafe] = ACTIONS(1330), + [anon_sym_use] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_POUND] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym_LT] = ACTIONS(1328), + [anon_sym_COLON_COLON] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_DOT_DOT] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PIPE] = ACTIONS(1328), + [anon_sym_yield] = ACTIONS(1330), + [anon_sym_move] = ACTIONS(1330), + [sym_integer_literal] = ACTIONS(1328), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1328), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1330), + [sym_super] = ACTIONS(1330), + [sym_crate] = ACTIONS(1330), + [sym_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1328), + [sym_float_literal] = ACTIONS(1328), [sym_block_comment] = ACTIONS(3), }, [315] = { - [ts_builtin_sym_end] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_macro_rules_BANG] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_u8] = ACTIONS(1344), - [anon_sym_i8] = ACTIONS(1344), - [anon_sym_u16] = ACTIONS(1344), - [anon_sym_i16] = ACTIONS(1344), - [anon_sym_u32] = ACTIONS(1344), - [anon_sym_i32] = ACTIONS(1344), - [anon_sym_u64] = ACTIONS(1344), - [anon_sym_i64] = ACTIONS(1344), - [anon_sym_u128] = ACTIONS(1344), - [anon_sym_i128] = ACTIONS(1344), - [anon_sym_isize] = ACTIONS(1344), - [anon_sym_usize] = ACTIONS(1344), - [anon_sym_f32] = ACTIONS(1344), - [anon_sym_f64] = ACTIONS(1344), - [anon_sym_bool] = ACTIONS(1344), - [anon_sym_str] = ACTIONS(1344), - [anon_sym_char] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_async] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_impl] = ACTIONS(1344), - [anon_sym_let] = ACTIONS(1344), - [anon_sym_loop] = ACTIONS(1344), - [anon_sym_match] = ACTIONS(1344), - [anon_sym_mod] = ACTIONS(1344), - [anon_sym_pub] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_trait] = ACTIONS(1344), - [anon_sym_type] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_unsafe] = ACTIONS(1344), - [anon_sym_use] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_POUND] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_COLON_COLON] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_DOT_DOT] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_move] = ACTIONS(1344), - [sym_integer_literal] = ACTIONS(1342), - [aux_sym_string_literal_token1] = ACTIONS(1342), - [sym_char_literal] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1344), - [anon_sym_false] = ACTIONS(1344), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1344), - [sym_crate] = ACTIONS(1344), - [sym_metavariable] = ACTIONS(1342), - [sym_raw_string_literal] = ACTIONS(1342), - [sym_float_literal] = ACTIONS(1342), + [ts_builtin_sym_end] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym_macro_rules_BANG] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_RBRACE] = ACTIONS(1332), + [anon_sym_LBRACK] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_POUND] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1332), + [anon_sym_COLON_COLON] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_DOT_DOT] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1332), + [anon_sym_yield] = ACTIONS(1334), + [anon_sym_move] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1332), + [aux_sym_string_literal_token1] = ACTIONS(1332), + [sym_char_literal] = ACTIONS(1332), + [anon_sym_true] = ACTIONS(1334), + [anon_sym_false] = ACTIONS(1334), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_metavariable] = ACTIONS(1332), + [sym_raw_string_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1332), [sym_block_comment] = ACTIONS(3), }, [316] = { - [ts_builtin_sym_end] = ACTIONS(1346), - [sym_identifier] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_macro_rules_BANG] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_u8] = ACTIONS(1348), - [anon_sym_i8] = ACTIONS(1348), - [anon_sym_u16] = ACTIONS(1348), - [anon_sym_i16] = ACTIONS(1348), - [anon_sym_u32] = ACTIONS(1348), - [anon_sym_i32] = ACTIONS(1348), - [anon_sym_u64] = ACTIONS(1348), - [anon_sym_i64] = ACTIONS(1348), - [anon_sym_u128] = ACTIONS(1348), - [anon_sym_i128] = ACTIONS(1348), - [anon_sym_isize] = ACTIONS(1348), - [anon_sym_usize] = ACTIONS(1348), - [anon_sym_f32] = ACTIONS(1348), - [anon_sym_f64] = ACTIONS(1348), - [anon_sym_bool] = ACTIONS(1348), - [anon_sym_str] = ACTIONS(1348), - [anon_sym_char] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_impl] = ACTIONS(1348), - [anon_sym_let] = ACTIONS(1348), - [anon_sym_loop] = ACTIONS(1348), - [anon_sym_match] = ACTIONS(1348), - [anon_sym_mod] = ACTIONS(1348), - [anon_sym_pub] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_static] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1348), - [anon_sym_trait] = ACTIONS(1348), - [anon_sym_type] = ACTIONS(1348), - [anon_sym_union] = ACTIONS(1348), - [anon_sym_unsafe] = ACTIONS(1348), - [anon_sym_use] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_POUND] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym_LT] = ACTIONS(1346), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_DOT_DOT] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PIPE] = ACTIONS(1346), - [anon_sym_yield] = ACTIONS(1348), - [anon_sym_move] = ACTIONS(1348), - [sym_integer_literal] = ACTIONS(1346), - [aux_sym_string_literal_token1] = ACTIONS(1346), - [sym_char_literal] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1348), - [anon_sym_false] = ACTIONS(1348), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1348), - [sym_super] = ACTIONS(1348), - [sym_crate] = ACTIONS(1348), - [sym_metavariable] = ACTIONS(1346), - [sym_raw_string_literal] = ACTIONS(1346), - [sym_float_literal] = ACTIONS(1346), + [ts_builtin_sym_end] = ACTIONS(1336), + [sym_identifier] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_macro_rules_BANG] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_LBRACK] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1338), + [anon_sym_i8] = ACTIONS(1338), + [anon_sym_u16] = ACTIONS(1338), + [anon_sym_i16] = ACTIONS(1338), + [anon_sym_u32] = ACTIONS(1338), + [anon_sym_i32] = ACTIONS(1338), + [anon_sym_u64] = ACTIONS(1338), + [anon_sym_i64] = ACTIONS(1338), + [anon_sym_u128] = ACTIONS(1338), + [anon_sym_i128] = ACTIONS(1338), + [anon_sym_isize] = ACTIONS(1338), + [anon_sym_usize] = ACTIONS(1338), + [anon_sym_f32] = ACTIONS(1338), + [anon_sym_f64] = ACTIONS(1338), + [anon_sym_bool] = ACTIONS(1338), + [anon_sym_str] = ACTIONS(1338), + [anon_sym_char] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [anon_sym_async] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_fn] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_impl] = ACTIONS(1338), + [anon_sym_let] = ACTIONS(1338), + [anon_sym_loop] = ACTIONS(1338), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_mod] = ACTIONS(1338), + [anon_sym_pub] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_trait] = ACTIONS(1338), + [anon_sym_type] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_unsafe] = ACTIONS(1338), + [anon_sym_use] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1338), + [anon_sym_move] = ACTIONS(1338), + [sym_integer_literal] = ACTIONS(1336), + [aux_sym_string_literal_token1] = ACTIONS(1336), + [sym_char_literal] = ACTIONS(1336), + [anon_sym_true] = ACTIONS(1338), + [anon_sym_false] = ACTIONS(1338), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1338), + [sym_super] = ACTIONS(1338), + [sym_crate] = ACTIONS(1338), + [sym_metavariable] = ACTIONS(1336), + [sym_raw_string_literal] = ACTIONS(1336), + [sym_float_literal] = ACTIONS(1336), [sym_block_comment] = ACTIONS(3), }, [317] = { - [ts_builtin_sym_end] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_macro_rules_BANG] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_u8] = ACTIONS(1352), - [anon_sym_i8] = ACTIONS(1352), - [anon_sym_u16] = ACTIONS(1352), - [anon_sym_i16] = ACTIONS(1352), - [anon_sym_u32] = ACTIONS(1352), - [anon_sym_i32] = ACTIONS(1352), - [anon_sym_u64] = ACTIONS(1352), - [anon_sym_i64] = ACTIONS(1352), - [anon_sym_u128] = ACTIONS(1352), - [anon_sym_i128] = ACTIONS(1352), - [anon_sym_isize] = ACTIONS(1352), - [anon_sym_usize] = ACTIONS(1352), - [anon_sym_f32] = ACTIONS(1352), - [anon_sym_f64] = ACTIONS(1352), - [anon_sym_bool] = ACTIONS(1352), - [anon_sym_str] = ACTIONS(1352), - [anon_sym_char] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_async] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_fn] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_impl] = ACTIONS(1352), - [anon_sym_let] = ACTIONS(1352), - [anon_sym_loop] = ACTIONS(1352), - [anon_sym_match] = ACTIONS(1352), - [anon_sym_mod] = ACTIONS(1352), - [anon_sym_pub] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_trait] = ACTIONS(1352), - [anon_sym_type] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_unsafe] = ACTIONS(1352), - [anon_sym_use] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_COLON_COLON] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_yield] = ACTIONS(1352), - [anon_sym_move] = ACTIONS(1352), - [sym_integer_literal] = ACTIONS(1350), - [aux_sym_string_literal_token1] = ACTIONS(1350), - [sym_char_literal] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1352), - [anon_sym_false] = ACTIONS(1352), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1352), - [sym_crate] = ACTIONS(1352), - [sym_metavariable] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1350), - [sym_float_literal] = ACTIONS(1350), + [ts_builtin_sym_end] = ACTIONS(1340), + [sym_identifier] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym_macro_rules_BANG] = ACTIONS(1340), + [anon_sym_LPAREN] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_RBRACE] = ACTIONS(1340), + [anon_sym_LBRACK] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_u8] = ACTIONS(1342), + [anon_sym_i8] = ACTIONS(1342), + [anon_sym_u16] = ACTIONS(1342), + [anon_sym_i16] = ACTIONS(1342), + [anon_sym_u32] = ACTIONS(1342), + [anon_sym_i32] = ACTIONS(1342), + [anon_sym_u64] = ACTIONS(1342), + [anon_sym_i64] = ACTIONS(1342), + [anon_sym_u128] = ACTIONS(1342), + [anon_sym_i128] = ACTIONS(1342), + [anon_sym_isize] = ACTIONS(1342), + [anon_sym_usize] = ACTIONS(1342), + [anon_sym_f32] = ACTIONS(1342), + [anon_sym_f64] = ACTIONS(1342), + [anon_sym_bool] = ACTIONS(1342), + [anon_sym_str] = ACTIONS(1342), + [anon_sym_char] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_async] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_fn] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_impl] = ACTIONS(1342), + [anon_sym_let] = ACTIONS(1342), + [anon_sym_loop] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1342), + [anon_sym_mod] = ACTIONS(1342), + [anon_sym_pub] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_trait] = ACTIONS(1342), + [anon_sym_type] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1342), + [anon_sym_use] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_POUND] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym_LT] = ACTIONS(1340), + [anon_sym_COLON_COLON] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_DOT_DOT] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1340), + [anon_sym_yield] = ACTIONS(1342), + [anon_sym_move] = ACTIONS(1342), + [sym_integer_literal] = ACTIONS(1340), + [aux_sym_string_literal_token1] = ACTIONS(1340), + [sym_char_literal] = ACTIONS(1340), + [anon_sym_true] = ACTIONS(1342), + [anon_sym_false] = ACTIONS(1342), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1342), + [sym_super] = ACTIONS(1342), + [sym_crate] = ACTIONS(1342), + [sym_metavariable] = ACTIONS(1340), + [sym_raw_string_literal] = ACTIONS(1340), + [sym_float_literal] = ACTIONS(1340), [sym_block_comment] = ACTIONS(3), }, [318] = { - [ts_builtin_sym_end] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_macro_rules_BANG] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_u8] = ACTIONS(1356), - [anon_sym_i8] = ACTIONS(1356), - [anon_sym_u16] = ACTIONS(1356), - [anon_sym_i16] = ACTIONS(1356), - [anon_sym_u32] = ACTIONS(1356), - [anon_sym_i32] = ACTIONS(1356), - [anon_sym_u64] = ACTIONS(1356), - [anon_sym_i64] = ACTIONS(1356), - [anon_sym_u128] = ACTIONS(1356), - [anon_sym_i128] = ACTIONS(1356), - [anon_sym_isize] = ACTIONS(1356), - [anon_sym_usize] = ACTIONS(1356), - [anon_sym_f32] = ACTIONS(1356), - [anon_sym_f64] = ACTIONS(1356), - [anon_sym_bool] = ACTIONS(1356), - [anon_sym_str] = ACTIONS(1356), - [anon_sym_char] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_async] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_fn] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_impl] = ACTIONS(1356), - [anon_sym_let] = ACTIONS(1356), - [anon_sym_loop] = ACTIONS(1356), - [anon_sym_match] = ACTIONS(1356), - [anon_sym_mod] = ACTIONS(1356), - [anon_sym_pub] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_trait] = ACTIONS(1356), - [anon_sym_type] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_unsafe] = ACTIONS(1356), - [anon_sym_use] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1354), - [anon_sym_COLON_COLON] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_DOT_DOT] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PIPE] = ACTIONS(1354), - [anon_sym_yield] = ACTIONS(1356), - [anon_sym_move] = ACTIONS(1356), - [sym_integer_literal] = ACTIONS(1354), - [aux_sym_string_literal_token1] = ACTIONS(1354), - [sym_char_literal] = ACTIONS(1354), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1354), - [sym_raw_string_literal] = ACTIONS(1354), - [sym_float_literal] = ACTIONS(1354), + [ts_builtin_sym_end] = ACTIONS(1344), + [sym_identifier] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym_macro_rules_BANG] = ACTIONS(1344), + [anon_sym_LPAREN] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1344), + [anon_sym_LBRACK] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_u8] = ACTIONS(1346), + [anon_sym_i8] = ACTIONS(1346), + [anon_sym_u16] = ACTIONS(1346), + [anon_sym_i16] = ACTIONS(1346), + [anon_sym_u32] = ACTIONS(1346), + [anon_sym_i32] = ACTIONS(1346), + [anon_sym_u64] = ACTIONS(1346), + [anon_sym_i64] = ACTIONS(1346), + [anon_sym_u128] = ACTIONS(1346), + [anon_sym_i128] = ACTIONS(1346), + [anon_sym_isize] = ACTIONS(1346), + [anon_sym_usize] = ACTIONS(1346), + [anon_sym_f32] = ACTIONS(1346), + [anon_sym_f64] = ACTIONS(1346), + [anon_sym_bool] = ACTIONS(1346), + [anon_sym_str] = ACTIONS(1346), + [anon_sym_char] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_async] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_fn] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_impl] = ACTIONS(1346), + [anon_sym_let] = ACTIONS(1346), + [anon_sym_loop] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1346), + [anon_sym_mod] = ACTIONS(1346), + [anon_sym_pub] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_trait] = ACTIONS(1346), + [anon_sym_type] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_unsafe] = ACTIONS(1346), + [anon_sym_use] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_POUND] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym_LT] = ACTIONS(1344), + [anon_sym_COLON_COLON] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_DOT_DOT] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PIPE] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_move] = ACTIONS(1346), + [sym_integer_literal] = ACTIONS(1344), + [aux_sym_string_literal_token1] = ACTIONS(1344), + [sym_char_literal] = ACTIONS(1344), + [anon_sym_true] = ACTIONS(1346), + [anon_sym_false] = ACTIONS(1346), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1346), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1344), + [sym_raw_string_literal] = ACTIONS(1344), + [sym_float_literal] = ACTIONS(1344), [sym_block_comment] = ACTIONS(3), }, [319] = { - [ts_builtin_sym_end] = ACTIONS(1358), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_macro_rules_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1360), - [anon_sym_i8] = ACTIONS(1360), - [anon_sym_u16] = ACTIONS(1360), - [anon_sym_i16] = ACTIONS(1360), - [anon_sym_u32] = ACTIONS(1360), - [anon_sym_i32] = ACTIONS(1360), - [anon_sym_u64] = ACTIONS(1360), - [anon_sym_i64] = ACTIONS(1360), - [anon_sym_u128] = ACTIONS(1360), - [anon_sym_i128] = ACTIONS(1360), - [anon_sym_isize] = ACTIONS(1360), - [anon_sym_usize] = ACTIONS(1360), - [anon_sym_f32] = ACTIONS(1360), - [anon_sym_f64] = ACTIONS(1360), - [anon_sym_bool] = ACTIONS(1360), - [anon_sym_str] = ACTIONS(1360), - [anon_sym_char] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_async] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_impl] = ACTIONS(1360), - [anon_sym_let] = ACTIONS(1360), - [anon_sym_loop] = ACTIONS(1360), - [anon_sym_match] = ACTIONS(1360), - [anon_sym_mod] = ACTIONS(1360), - [anon_sym_pub] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_trait] = ACTIONS(1360), - [anon_sym_type] = ACTIONS(1360), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_unsafe] = ACTIONS(1360), - [anon_sym_use] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_DOT_DOT] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_yield] = ACTIONS(1360), - [anon_sym_move] = ACTIONS(1360), - [sym_integer_literal] = ACTIONS(1358), - [aux_sym_string_literal_token1] = ACTIONS(1358), - [sym_char_literal] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1360), - [anon_sym_false] = ACTIONS(1360), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1360), - [sym_super] = ACTIONS(1360), - [sym_crate] = ACTIONS(1360), - [sym_metavariable] = ACTIONS(1358), - [sym_raw_string_literal] = ACTIONS(1358), - [sym_float_literal] = ACTIONS(1358), + [ts_builtin_sym_end] = ACTIONS(1348), + [sym_identifier] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_macro_rules_BANG] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_u8] = ACTIONS(1350), + [anon_sym_i8] = ACTIONS(1350), + [anon_sym_u16] = ACTIONS(1350), + [anon_sym_i16] = ACTIONS(1350), + [anon_sym_u32] = ACTIONS(1350), + [anon_sym_i32] = ACTIONS(1350), + [anon_sym_u64] = ACTIONS(1350), + [anon_sym_i64] = ACTIONS(1350), + [anon_sym_u128] = ACTIONS(1350), + [anon_sym_i128] = ACTIONS(1350), + [anon_sym_isize] = ACTIONS(1350), + [anon_sym_usize] = ACTIONS(1350), + [anon_sym_f32] = ACTIONS(1350), + [anon_sym_f64] = ACTIONS(1350), + [anon_sym_bool] = ACTIONS(1350), + [anon_sym_str] = ACTIONS(1350), + [anon_sym_char] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_fn] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_impl] = ACTIONS(1350), + [anon_sym_let] = ACTIONS(1350), + [anon_sym_loop] = ACTIONS(1350), + [anon_sym_match] = ACTIONS(1350), + [anon_sym_mod] = ACTIONS(1350), + [anon_sym_pub] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_trait] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_unsafe] = ACTIONS(1350), + [anon_sym_use] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_POUND] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_COLON_COLON] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_DOT_DOT] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_yield] = ACTIONS(1350), + [anon_sym_move] = ACTIONS(1350), + [sym_integer_literal] = ACTIONS(1348), + [aux_sym_string_literal_token1] = ACTIONS(1348), + [sym_char_literal] = ACTIONS(1348), + [anon_sym_true] = ACTIONS(1350), + [anon_sym_false] = ACTIONS(1350), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1348), + [sym_raw_string_literal] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1348), [sym_block_comment] = ACTIONS(3), }, [320] = { - [ts_builtin_sym_end] = ACTIONS(1362), - [sym_identifier] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_macro_rules_BANG] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_u8] = ACTIONS(1364), - [anon_sym_i8] = ACTIONS(1364), - [anon_sym_u16] = ACTIONS(1364), - [anon_sym_i16] = ACTIONS(1364), - [anon_sym_u32] = ACTIONS(1364), - [anon_sym_i32] = ACTIONS(1364), - [anon_sym_u64] = ACTIONS(1364), - [anon_sym_i64] = ACTIONS(1364), - [anon_sym_u128] = ACTIONS(1364), - [anon_sym_i128] = ACTIONS(1364), - [anon_sym_isize] = ACTIONS(1364), - [anon_sym_usize] = ACTIONS(1364), - [anon_sym_f32] = ACTIONS(1364), - [anon_sym_f64] = ACTIONS(1364), - [anon_sym_bool] = ACTIONS(1364), - [anon_sym_str] = ACTIONS(1364), - [anon_sym_char] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_async] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [anon_sym_fn] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_impl] = ACTIONS(1364), - [anon_sym_let] = ACTIONS(1364), - [anon_sym_loop] = ACTIONS(1364), - [anon_sym_match] = ACTIONS(1364), - [anon_sym_mod] = ACTIONS(1364), - [anon_sym_pub] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_trait] = ACTIONS(1364), - [anon_sym_type] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_unsafe] = ACTIONS(1364), - [anon_sym_use] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [anon_sym_POUND] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_COLON_COLON] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_DOT_DOT] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PIPE] = ACTIONS(1362), - [anon_sym_yield] = ACTIONS(1364), - [anon_sym_move] = ACTIONS(1364), - [sym_integer_literal] = ACTIONS(1362), - [aux_sym_string_literal_token1] = ACTIONS(1362), - [sym_char_literal] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1364), - [anon_sym_false] = ACTIONS(1364), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1364), - [sym_super] = ACTIONS(1364), - [sym_crate] = ACTIONS(1364), - [sym_metavariable] = ACTIONS(1362), - [sym_raw_string_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1362), + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym_macro_rules_BANG] = ACTIONS(1352), + [anon_sym_LPAREN] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_LBRACK] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_u8] = ACTIONS(1354), + [anon_sym_i8] = ACTIONS(1354), + [anon_sym_u16] = ACTIONS(1354), + [anon_sym_i16] = ACTIONS(1354), + [anon_sym_u32] = ACTIONS(1354), + [anon_sym_i32] = ACTIONS(1354), + [anon_sym_u64] = ACTIONS(1354), + [anon_sym_i64] = ACTIONS(1354), + [anon_sym_u128] = ACTIONS(1354), + [anon_sym_i128] = ACTIONS(1354), + [anon_sym_isize] = ACTIONS(1354), + [anon_sym_usize] = ACTIONS(1354), + [anon_sym_f32] = ACTIONS(1354), + [anon_sym_f64] = ACTIONS(1354), + [anon_sym_bool] = ACTIONS(1354), + [anon_sym_str] = ACTIONS(1354), + [anon_sym_char] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_fn] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_impl] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(1354), + [anon_sym_loop] = ACTIONS(1354), + [anon_sym_match] = ACTIONS(1354), + [anon_sym_mod] = ACTIONS(1354), + [anon_sym_pub] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_trait] = ACTIONS(1354), + [anon_sym_type] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_unsafe] = ACTIONS(1354), + [anon_sym_use] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_POUND] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1352), + [anon_sym_COLON_COLON] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_DOT_DOT] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PIPE] = ACTIONS(1352), + [anon_sym_yield] = ACTIONS(1354), + [anon_sym_move] = ACTIONS(1354), + [sym_integer_literal] = ACTIONS(1352), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1352), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1354), + [sym_super] = ACTIONS(1354), + [sym_crate] = ACTIONS(1354), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(1352), + [sym_float_literal] = ACTIONS(1352), [sym_block_comment] = ACTIONS(3), }, [321] = { - [ts_builtin_sym_end] = ACTIONS(1366), - [sym_identifier] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_macro_rules_BANG] = ACTIONS(1366), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_u8] = ACTIONS(1368), - [anon_sym_i8] = ACTIONS(1368), - [anon_sym_u16] = ACTIONS(1368), - [anon_sym_i16] = ACTIONS(1368), - [anon_sym_u32] = ACTIONS(1368), - [anon_sym_i32] = ACTIONS(1368), - [anon_sym_u64] = ACTIONS(1368), - [anon_sym_i64] = ACTIONS(1368), - [anon_sym_u128] = ACTIONS(1368), - [anon_sym_i128] = ACTIONS(1368), - [anon_sym_isize] = ACTIONS(1368), - [anon_sym_usize] = ACTIONS(1368), - [anon_sym_f32] = ACTIONS(1368), - [anon_sym_f64] = ACTIONS(1368), - [anon_sym_bool] = ACTIONS(1368), - [anon_sym_str] = ACTIONS(1368), - [anon_sym_char] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_async] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_fn] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_impl] = ACTIONS(1368), - [anon_sym_let] = ACTIONS(1368), - [anon_sym_loop] = ACTIONS(1368), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_mod] = ACTIONS(1368), - [anon_sym_pub] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_struct] = ACTIONS(1368), - [anon_sym_trait] = ACTIONS(1368), - [anon_sym_type] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_unsafe] = ACTIONS(1368), - [anon_sym_use] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_LT] = ACTIONS(1366), - [anon_sym_COLON_COLON] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_DOT_DOT] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PIPE] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1368), - [anon_sym_move] = ACTIONS(1368), - [sym_integer_literal] = ACTIONS(1366), - [aux_sym_string_literal_token1] = ACTIONS(1366), - [sym_char_literal] = ACTIONS(1366), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1368), - [sym_super] = ACTIONS(1368), - [sym_crate] = ACTIONS(1368), - [sym_metavariable] = ACTIONS(1366), - [sym_raw_string_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1366), + [ts_builtin_sym_end] = ACTIONS(1356), + [sym_identifier] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_macro_rules_BANG] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u128] = ACTIONS(1358), + [anon_sym_i128] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_str] = ACTIONS(1358), + [anon_sym_char] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_async] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_fn] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_impl] = ACTIONS(1358), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_loop] = ACTIONS(1358), + [anon_sym_match] = ACTIONS(1358), + [anon_sym_mod] = ACTIONS(1358), + [anon_sym_pub] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_trait] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_unsafe] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_POUND] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_COLON_COLON] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_DOT_DOT] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_yield] = ACTIONS(1358), + [anon_sym_move] = ACTIONS(1358), + [sym_integer_literal] = ACTIONS(1356), + [aux_sym_string_literal_token1] = ACTIONS(1356), + [sym_char_literal] = ACTIONS(1356), + [anon_sym_true] = ACTIONS(1358), + [anon_sym_false] = ACTIONS(1358), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1358), + [sym_super] = ACTIONS(1358), + [sym_crate] = ACTIONS(1358), + [sym_metavariable] = ACTIONS(1356), + [sym_raw_string_literal] = ACTIONS(1356), + [sym_float_literal] = ACTIONS(1356), [sym_block_comment] = ACTIONS(3), }, [322] = { - [ts_builtin_sym_end] = ACTIONS(1370), - [sym_identifier] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_macro_rules_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_u8] = ACTIONS(1372), - [anon_sym_i8] = ACTIONS(1372), - [anon_sym_u16] = ACTIONS(1372), - [anon_sym_i16] = ACTIONS(1372), - [anon_sym_u32] = ACTIONS(1372), - [anon_sym_i32] = ACTIONS(1372), - [anon_sym_u64] = ACTIONS(1372), - [anon_sym_i64] = ACTIONS(1372), - [anon_sym_u128] = ACTIONS(1372), - [anon_sym_i128] = ACTIONS(1372), - [anon_sym_isize] = ACTIONS(1372), - [anon_sym_usize] = ACTIONS(1372), - [anon_sym_f32] = ACTIONS(1372), - [anon_sym_f64] = ACTIONS(1372), - [anon_sym_bool] = ACTIONS(1372), - [anon_sym_str] = ACTIONS(1372), - [anon_sym_char] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_async] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_impl] = ACTIONS(1372), - [anon_sym_let] = ACTIONS(1372), - [anon_sym_loop] = ACTIONS(1372), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_mod] = ACTIONS(1372), - [anon_sym_pub] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_struct] = ACTIONS(1372), - [anon_sym_trait] = ACTIONS(1372), - [anon_sym_type] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1372), - [anon_sym_use] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [anon_sym_POUND] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_yield] = ACTIONS(1372), - [anon_sym_move] = ACTIONS(1372), - [sym_integer_literal] = ACTIONS(1370), - [aux_sym_string_literal_token1] = ACTIONS(1370), - [sym_char_literal] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1372), - [anon_sym_false] = ACTIONS(1372), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_crate] = ACTIONS(1372), - [sym_metavariable] = ACTIONS(1370), - [sym_raw_string_literal] = ACTIONS(1370), - [sym_float_literal] = ACTIONS(1370), + [ts_builtin_sym_end] = ACTIONS(1360), + [sym_identifier] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_macro_rules_BANG] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_u8] = ACTIONS(1362), + [anon_sym_i8] = ACTIONS(1362), + [anon_sym_u16] = ACTIONS(1362), + [anon_sym_i16] = ACTIONS(1362), + [anon_sym_u32] = ACTIONS(1362), + [anon_sym_i32] = ACTIONS(1362), + [anon_sym_u64] = ACTIONS(1362), + [anon_sym_i64] = ACTIONS(1362), + [anon_sym_u128] = ACTIONS(1362), + [anon_sym_i128] = ACTIONS(1362), + [anon_sym_isize] = ACTIONS(1362), + [anon_sym_usize] = ACTIONS(1362), + [anon_sym_f32] = ACTIONS(1362), + [anon_sym_f64] = ACTIONS(1362), + [anon_sym_bool] = ACTIONS(1362), + [anon_sym_str] = ACTIONS(1362), + [anon_sym_char] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_impl] = ACTIONS(1362), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_loop] = ACTIONS(1362), + [anon_sym_match] = ACTIONS(1362), + [anon_sym_mod] = ACTIONS(1362), + [anon_sym_pub] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_trait] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_unsafe] = ACTIONS(1362), + [anon_sym_use] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_POUND] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_COLON_COLON] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_DOT_DOT] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_yield] = ACTIONS(1362), + [anon_sym_move] = ACTIONS(1362), + [sym_integer_literal] = ACTIONS(1360), + [aux_sym_string_literal_token1] = ACTIONS(1360), + [sym_char_literal] = ACTIONS(1360), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1362), + [sym_super] = ACTIONS(1362), + [sym_crate] = ACTIONS(1362), + [sym_metavariable] = ACTIONS(1360), + [sym_raw_string_literal] = ACTIONS(1360), + [sym_float_literal] = ACTIONS(1360), [sym_block_comment] = ACTIONS(3), }, [323] = { - [ts_builtin_sym_end] = ACTIONS(1374), - [sym_identifier] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1374), - [anon_sym_macro_rules_BANG] = ACTIONS(1374), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_u8] = ACTIONS(1376), - [anon_sym_i8] = ACTIONS(1376), - [anon_sym_u16] = ACTIONS(1376), - [anon_sym_i16] = ACTIONS(1376), - [anon_sym_u32] = ACTIONS(1376), - [anon_sym_i32] = ACTIONS(1376), - [anon_sym_u64] = ACTIONS(1376), - [anon_sym_i64] = ACTIONS(1376), - [anon_sym_u128] = ACTIONS(1376), - [anon_sym_i128] = ACTIONS(1376), - [anon_sym_isize] = ACTIONS(1376), - [anon_sym_usize] = ACTIONS(1376), - [anon_sym_f32] = ACTIONS(1376), - [anon_sym_f64] = ACTIONS(1376), - [anon_sym_bool] = ACTIONS(1376), - [anon_sym_str] = ACTIONS(1376), - [anon_sym_char] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_async] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_fn] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_impl] = ACTIONS(1376), - [anon_sym_let] = ACTIONS(1376), - [anon_sym_loop] = ACTIONS(1376), - [anon_sym_match] = ACTIONS(1376), - [anon_sym_mod] = ACTIONS(1376), - [anon_sym_pub] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_trait] = ACTIONS(1376), - [anon_sym_type] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1376), - [anon_sym_use] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_LT] = ACTIONS(1374), - [anon_sym_COLON_COLON] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1374), - [anon_sym_DOT_DOT] = ACTIONS(1374), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PIPE] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_move] = ACTIONS(1376), - [sym_integer_literal] = ACTIONS(1374), - [aux_sym_string_literal_token1] = ACTIONS(1374), - [sym_char_literal] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1376), - [sym_super] = ACTIONS(1376), - [sym_crate] = ACTIONS(1376), - [sym_metavariable] = ACTIONS(1374), - [sym_raw_string_literal] = ACTIONS(1374), - [sym_float_literal] = ACTIONS(1374), + [ts_builtin_sym_end] = ACTIONS(1364), + [sym_identifier] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym_macro_rules_BANG] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_LBRACK] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_u8] = ACTIONS(1366), + [anon_sym_i8] = ACTIONS(1366), + [anon_sym_u16] = ACTIONS(1366), + [anon_sym_i16] = ACTIONS(1366), + [anon_sym_u32] = ACTIONS(1366), + [anon_sym_i32] = ACTIONS(1366), + [anon_sym_u64] = ACTIONS(1366), + [anon_sym_i64] = ACTIONS(1366), + [anon_sym_u128] = ACTIONS(1366), + [anon_sym_i128] = ACTIONS(1366), + [anon_sym_isize] = ACTIONS(1366), + [anon_sym_usize] = ACTIONS(1366), + [anon_sym_f32] = ACTIONS(1366), + [anon_sym_f64] = ACTIONS(1366), + [anon_sym_bool] = ACTIONS(1366), + [anon_sym_str] = ACTIONS(1366), + [anon_sym_char] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_async] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_impl] = ACTIONS(1366), + [anon_sym_let] = ACTIONS(1366), + [anon_sym_loop] = ACTIONS(1366), + [anon_sym_match] = ACTIONS(1366), + [anon_sym_mod] = ACTIONS(1366), + [anon_sym_pub] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_trait] = ACTIONS(1366), + [anon_sym_type] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_unsafe] = ACTIONS(1366), + [anon_sym_use] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_COLON_COLON] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_DOT_DOT] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PIPE] = ACTIONS(1364), + [anon_sym_yield] = ACTIONS(1366), + [anon_sym_move] = ACTIONS(1366), + [sym_integer_literal] = ACTIONS(1364), + [aux_sym_string_literal_token1] = ACTIONS(1364), + [sym_char_literal] = ACTIONS(1364), + [anon_sym_true] = ACTIONS(1366), + [anon_sym_false] = ACTIONS(1366), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1366), + [sym_super] = ACTIONS(1366), + [sym_crate] = ACTIONS(1366), + [sym_metavariable] = ACTIONS(1364), + [sym_raw_string_literal] = ACTIONS(1364), + [sym_float_literal] = ACTIONS(1364), [sym_block_comment] = ACTIONS(3), }, [324] = { - [ts_builtin_sym_end] = ACTIONS(1378), - [sym_identifier] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1378), - [anon_sym_macro_rules_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_u8] = ACTIONS(1380), - [anon_sym_i8] = ACTIONS(1380), - [anon_sym_u16] = ACTIONS(1380), - [anon_sym_i16] = ACTIONS(1380), - [anon_sym_u32] = ACTIONS(1380), - [anon_sym_i32] = ACTIONS(1380), - [anon_sym_u64] = ACTIONS(1380), - [anon_sym_i64] = ACTIONS(1380), - [anon_sym_u128] = ACTIONS(1380), - [anon_sym_i128] = ACTIONS(1380), - [anon_sym_isize] = ACTIONS(1380), - [anon_sym_usize] = ACTIONS(1380), - [anon_sym_f32] = ACTIONS(1380), - [anon_sym_f64] = ACTIONS(1380), - [anon_sym_bool] = ACTIONS(1380), - [anon_sym_str] = ACTIONS(1380), - [anon_sym_char] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [anon_sym_fn] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_impl] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_loop] = ACTIONS(1380), - [anon_sym_match] = ACTIONS(1380), - [anon_sym_mod] = ACTIONS(1380), - [anon_sym_pub] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_trait] = ACTIONS(1380), - [anon_sym_type] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_unsafe] = ACTIONS(1380), - [anon_sym_use] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [anon_sym_POUND] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1378), - [anon_sym_COLON_COLON] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1378), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PIPE] = ACTIONS(1378), - [anon_sym_yield] = ACTIONS(1380), - [anon_sym_move] = ACTIONS(1380), - [sym_integer_literal] = ACTIONS(1378), - [aux_sym_string_literal_token1] = ACTIONS(1378), - [sym_char_literal] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1380), - [anon_sym_false] = ACTIONS(1380), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1380), - [sym_super] = ACTIONS(1380), - [sym_crate] = ACTIONS(1380), - [sym_metavariable] = ACTIONS(1378), - [sym_raw_string_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1378), + [ts_builtin_sym_end] = ACTIONS(1368), + [sym_identifier] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_macro_rules_BANG] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_u8] = ACTIONS(1370), + [anon_sym_i8] = ACTIONS(1370), + [anon_sym_u16] = ACTIONS(1370), + [anon_sym_i16] = ACTIONS(1370), + [anon_sym_u32] = ACTIONS(1370), + [anon_sym_i32] = ACTIONS(1370), + [anon_sym_u64] = ACTIONS(1370), + [anon_sym_i64] = ACTIONS(1370), + [anon_sym_u128] = ACTIONS(1370), + [anon_sym_i128] = ACTIONS(1370), + [anon_sym_isize] = ACTIONS(1370), + [anon_sym_usize] = ACTIONS(1370), + [anon_sym_f32] = ACTIONS(1370), + [anon_sym_f64] = ACTIONS(1370), + [anon_sym_bool] = ACTIONS(1370), + [anon_sym_str] = ACTIONS(1370), + [anon_sym_char] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_fn] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_impl] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1370), + [anon_sym_loop] = ACTIONS(1370), + [anon_sym_match] = ACTIONS(1370), + [anon_sym_mod] = ACTIONS(1370), + [anon_sym_pub] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_trait] = ACTIONS(1370), + [anon_sym_type] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_unsafe] = ACTIONS(1370), + [anon_sym_use] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_POUND] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_DOT_DOT] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(1368), + [anon_sym_yield] = ACTIONS(1370), + [anon_sym_move] = ACTIONS(1370), + [sym_integer_literal] = ACTIONS(1368), + [aux_sym_string_literal_token1] = ACTIONS(1368), + [sym_char_literal] = ACTIONS(1368), + [anon_sym_true] = ACTIONS(1370), + [anon_sym_false] = ACTIONS(1370), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1370), + [sym_super] = ACTIONS(1370), + [sym_crate] = ACTIONS(1370), + [sym_metavariable] = ACTIONS(1368), + [sym_raw_string_literal] = ACTIONS(1368), + [sym_float_literal] = ACTIONS(1368), [sym_block_comment] = ACTIONS(3), }, [325] = { - [ts_builtin_sym_end] = ACTIONS(1382), - [sym_identifier] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_macro_rules_BANG] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_u8] = ACTIONS(1384), - [anon_sym_i8] = ACTIONS(1384), - [anon_sym_u16] = ACTIONS(1384), - [anon_sym_i16] = ACTIONS(1384), - [anon_sym_u32] = ACTIONS(1384), - [anon_sym_i32] = ACTIONS(1384), - [anon_sym_u64] = ACTIONS(1384), - [anon_sym_i64] = ACTIONS(1384), - [anon_sym_u128] = ACTIONS(1384), - [anon_sym_i128] = ACTIONS(1384), - [anon_sym_isize] = ACTIONS(1384), - [anon_sym_usize] = ACTIONS(1384), - [anon_sym_f32] = ACTIONS(1384), - [anon_sym_f64] = ACTIONS(1384), - [anon_sym_bool] = ACTIONS(1384), - [anon_sym_str] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_async] = ACTIONS(1384), - [anon_sym_break] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_continue] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1384), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1384), - [anon_sym_impl] = ACTIONS(1384), - [anon_sym_let] = ACTIONS(1384), - [anon_sym_loop] = ACTIONS(1384), - [anon_sym_match] = ACTIONS(1384), - [anon_sym_mod] = ACTIONS(1384), - [anon_sym_pub] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1384), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_struct] = ACTIONS(1384), - [anon_sym_trait] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_unsafe] = ACTIONS(1384), - [anon_sym_use] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_POUND] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1382), - [anon_sym_COLON_COLON] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_DOT_DOT] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PIPE] = ACTIONS(1382), - [anon_sym_yield] = ACTIONS(1384), - [anon_sym_move] = ACTIONS(1384), - [sym_integer_literal] = ACTIONS(1382), - [aux_sym_string_literal_token1] = ACTIONS(1382), - [sym_char_literal] = ACTIONS(1382), - [anon_sym_true] = ACTIONS(1384), - [anon_sym_false] = ACTIONS(1384), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1384), - [sym_super] = ACTIONS(1384), - [sym_crate] = ACTIONS(1384), - [sym_metavariable] = ACTIONS(1382), - [sym_raw_string_literal] = ACTIONS(1382), - [sym_float_literal] = ACTIONS(1382), + [ts_builtin_sym_end] = ACTIONS(1372), + [sym_identifier] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym_macro_rules_BANG] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_LBRACK] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_u8] = ACTIONS(1374), + [anon_sym_i8] = ACTIONS(1374), + [anon_sym_u16] = ACTIONS(1374), + [anon_sym_i16] = ACTIONS(1374), + [anon_sym_u32] = ACTIONS(1374), + [anon_sym_i32] = ACTIONS(1374), + [anon_sym_u64] = ACTIONS(1374), + [anon_sym_i64] = ACTIONS(1374), + [anon_sym_u128] = ACTIONS(1374), + [anon_sym_i128] = ACTIONS(1374), + [anon_sym_isize] = ACTIONS(1374), + [anon_sym_usize] = ACTIONS(1374), + [anon_sym_f32] = ACTIONS(1374), + [anon_sym_f64] = ACTIONS(1374), + [anon_sym_bool] = ACTIONS(1374), + [anon_sym_str] = ACTIONS(1374), + [anon_sym_char] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_impl] = ACTIONS(1374), + [anon_sym_let] = ACTIONS(1374), + [anon_sym_loop] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_mod] = ACTIONS(1374), + [anon_sym_pub] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_trait] = ACTIONS(1374), + [anon_sym_type] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_unsafe] = ACTIONS(1374), + [anon_sym_use] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_POUND] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1372), + [anon_sym_COLON_COLON] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_DOT_DOT] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), + [anon_sym_move] = ACTIONS(1374), + [sym_integer_literal] = ACTIONS(1372), + [aux_sym_string_literal_token1] = ACTIONS(1372), + [sym_char_literal] = ACTIONS(1372), + [anon_sym_true] = ACTIONS(1374), + [anon_sym_false] = ACTIONS(1374), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1374), + [sym_super] = ACTIONS(1374), + [sym_crate] = ACTIONS(1374), + [sym_metavariable] = ACTIONS(1372), + [sym_raw_string_literal] = ACTIONS(1372), + [sym_float_literal] = ACTIONS(1372), [sym_block_comment] = ACTIONS(3), }, [326] = { - [ts_builtin_sym_end] = ACTIONS(1386), - [sym_identifier] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_macro_rules_BANG] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_u8] = ACTIONS(1388), - [anon_sym_i8] = ACTIONS(1388), - [anon_sym_u16] = ACTIONS(1388), - [anon_sym_i16] = ACTIONS(1388), - [anon_sym_u32] = ACTIONS(1388), - [anon_sym_i32] = ACTIONS(1388), - [anon_sym_u64] = ACTIONS(1388), - [anon_sym_i64] = ACTIONS(1388), - [anon_sym_u128] = ACTIONS(1388), - [anon_sym_i128] = ACTIONS(1388), - [anon_sym_isize] = ACTIONS(1388), - [anon_sym_usize] = ACTIONS(1388), - [anon_sym_f32] = ACTIONS(1388), - [anon_sym_f64] = ACTIONS(1388), - [anon_sym_bool] = ACTIONS(1388), - [anon_sym_str] = ACTIONS(1388), - [anon_sym_char] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_async] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1388), - [anon_sym_fn] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_impl] = ACTIONS(1388), - [anon_sym_let] = ACTIONS(1388), - [anon_sym_loop] = ACTIONS(1388), - [anon_sym_match] = ACTIONS(1388), - [anon_sym_mod] = ACTIONS(1388), - [anon_sym_pub] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_static] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1388), - [anon_sym_trait] = ACTIONS(1388), - [anon_sym_type] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_unsafe] = ACTIONS(1388), - [anon_sym_use] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(1388), - [anon_sym_POUND] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_COLON_COLON] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_yield] = ACTIONS(1388), - [anon_sym_move] = ACTIONS(1388), - [sym_integer_literal] = ACTIONS(1386), - [aux_sym_string_literal_token1] = ACTIONS(1386), - [sym_char_literal] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1388), - [anon_sym_false] = ACTIONS(1388), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1388), - [sym_super] = ACTIONS(1388), - [sym_crate] = ACTIONS(1388), - [sym_metavariable] = ACTIONS(1386), - [sym_raw_string_literal] = ACTIONS(1386), - [sym_float_literal] = ACTIONS(1386), + [ts_builtin_sym_end] = ACTIONS(1376), + [sym_identifier] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym_macro_rules_BANG] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1376), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_u8] = ACTIONS(1378), + [anon_sym_i8] = ACTIONS(1378), + [anon_sym_u16] = ACTIONS(1378), + [anon_sym_i16] = ACTIONS(1378), + [anon_sym_u32] = ACTIONS(1378), + [anon_sym_i32] = ACTIONS(1378), + [anon_sym_u64] = ACTIONS(1378), + [anon_sym_i64] = ACTIONS(1378), + [anon_sym_u128] = ACTIONS(1378), + [anon_sym_i128] = ACTIONS(1378), + [anon_sym_isize] = ACTIONS(1378), + [anon_sym_usize] = ACTIONS(1378), + [anon_sym_f32] = ACTIONS(1378), + [anon_sym_f64] = ACTIONS(1378), + [anon_sym_bool] = ACTIONS(1378), + [anon_sym_str] = ACTIONS(1378), + [anon_sym_char] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_impl] = ACTIONS(1378), + [anon_sym_let] = ACTIONS(1378), + [anon_sym_loop] = ACTIONS(1378), + [anon_sym_match] = ACTIONS(1378), + [anon_sym_mod] = ACTIONS(1378), + [anon_sym_pub] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_trait] = ACTIONS(1378), + [anon_sym_type] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_unsafe] = ACTIONS(1378), + [anon_sym_use] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_POUND] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_COLON_COLON] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_DOT_DOT] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PIPE] = ACTIONS(1376), + [anon_sym_yield] = ACTIONS(1378), + [anon_sym_move] = ACTIONS(1378), + [sym_integer_literal] = ACTIONS(1376), + [aux_sym_string_literal_token1] = ACTIONS(1376), + [sym_char_literal] = ACTIONS(1376), + [anon_sym_true] = ACTIONS(1378), + [anon_sym_false] = ACTIONS(1378), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1378), + [sym_super] = ACTIONS(1378), + [sym_crate] = ACTIONS(1378), + [sym_metavariable] = ACTIONS(1376), + [sym_raw_string_literal] = ACTIONS(1376), + [sym_float_literal] = ACTIONS(1376), [sym_block_comment] = ACTIONS(3), }, [327] = { - [ts_builtin_sym_end] = ACTIONS(1390), - [sym_identifier] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_macro_rules_BANG] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_u8] = ACTIONS(1392), - [anon_sym_i8] = ACTIONS(1392), - [anon_sym_u16] = ACTIONS(1392), - [anon_sym_i16] = ACTIONS(1392), - [anon_sym_u32] = ACTIONS(1392), - [anon_sym_i32] = ACTIONS(1392), - [anon_sym_u64] = ACTIONS(1392), - [anon_sym_i64] = ACTIONS(1392), - [anon_sym_u128] = ACTIONS(1392), - [anon_sym_i128] = ACTIONS(1392), - [anon_sym_isize] = ACTIONS(1392), - [anon_sym_usize] = ACTIONS(1392), - [anon_sym_f32] = ACTIONS(1392), - [anon_sym_f64] = ACTIONS(1392), - [anon_sym_bool] = ACTIONS(1392), - [anon_sym_str] = ACTIONS(1392), - [anon_sym_char] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_async] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [anon_sym_fn] = ACTIONS(1392), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_impl] = ACTIONS(1392), - [anon_sym_let] = ACTIONS(1392), - [anon_sym_loop] = ACTIONS(1392), - [anon_sym_match] = ACTIONS(1392), - [anon_sym_mod] = ACTIONS(1392), - [anon_sym_pub] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_struct] = ACTIONS(1392), - [anon_sym_trait] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(1392), - [anon_sym_union] = ACTIONS(1392), - [anon_sym_unsafe] = ACTIONS(1392), - [anon_sym_use] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_COLON_COLON] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_DOT_DOT] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_yield] = ACTIONS(1392), - [anon_sym_move] = ACTIONS(1392), - [sym_integer_literal] = ACTIONS(1390), - [aux_sym_string_literal_token1] = ACTIONS(1390), - [sym_char_literal] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1392), - [anon_sym_false] = ACTIONS(1392), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1392), - [sym_super] = ACTIONS(1392), - [sym_crate] = ACTIONS(1392), - [sym_metavariable] = ACTIONS(1390), - [sym_raw_string_literal] = ACTIONS(1390), - [sym_float_literal] = ACTIONS(1390), + [ts_builtin_sym_end] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym_macro_rules_BANG] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_u8] = ACTIONS(1382), + [anon_sym_i8] = ACTIONS(1382), + [anon_sym_u16] = ACTIONS(1382), + [anon_sym_i16] = ACTIONS(1382), + [anon_sym_u32] = ACTIONS(1382), + [anon_sym_i32] = ACTIONS(1382), + [anon_sym_u64] = ACTIONS(1382), + [anon_sym_i64] = ACTIONS(1382), + [anon_sym_u128] = ACTIONS(1382), + [anon_sym_i128] = ACTIONS(1382), + [anon_sym_isize] = ACTIONS(1382), + [anon_sym_usize] = ACTIONS(1382), + [anon_sym_f32] = ACTIONS(1382), + [anon_sym_f64] = ACTIONS(1382), + [anon_sym_bool] = ACTIONS(1382), + [anon_sym_str] = ACTIONS(1382), + [anon_sym_char] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_async] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_impl] = ACTIONS(1382), + [anon_sym_let] = ACTIONS(1382), + [anon_sym_loop] = ACTIONS(1382), + [anon_sym_match] = ACTIONS(1382), + [anon_sym_mod] = ACTIONS(1382), + [anon_sym_pub] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_trait] = ACTIONS(1382), + [anon_sym_type] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_unsafe] = ACTIONS(1382), + [anon_sym_use] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_POUND] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1380), + [anon_sym_COLON_COLON] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_DOT_DOT] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PIPE] = ACTIONS(1380), + [anon_sym_yield] = ACTIONS(1382), + [anon_sym_move] = ACTIONS(1382), + [sym_integer_literal] = ACTIONS(1380), + [aux_sym_string_literal_token1] = ACTIONS(1380), + [sym_char_literal] = ACTIONS(1380), + [anon_sym_true] = ACTIONS(1382), + [anon_sym_false] = ACTIONS(1382), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1382), + [sym_super] = ACTIONS(1382), + [sym_crate] = ACTIONS(1382), + [sym_metavariable] = ACTIONS(1380), + [sym_raw_string_literal] = ACTIONS(1380), + [sym_float_literal] = ACTIONS(1380), [sym_block_comment] = ACTIONS(3), }, [328] = { - [ts_builtin_sym_end] = ACTIONS(1394), - [sym_identifier] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_macro_rules_BANG] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_u8] = ACTIONS(1396), - [anon_sym_i8] = ACTIONS(1396), - [anon_sym_u16] = ACTIONS(1396), - [anon_sym_i16] = ACTIONS(1396), - [anon_sym_u32] = ACTIONS(1396), - [anon_sym_i32] = ACTIONS(1396), - [anon_sym_u64] = ACTIONS(1396), - [anon_sym_i64] = ACTIONS(1396), - [anon_sym_u128] = ACTIONS(1396), - [anon_sym_i128] = ACTIONS(1396), - [anon_sym_isize] = ACTIONS(1396), - [anon_sym_usize] = ACTIONS(1396), - [anon_sym_f32] = ACTIONS(1396), - [anon_sym_f64] = ACTIONS(1396), - [anon_sym_bool] = ACTIONS(1396), - [anon_sym_str] = ACTIONS(1396), - [anon_sym_char] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_async] = ACTIONS(1396), - [anon_sym_break] = ACTIONS(1396), - [anon_sym_const] = ACTIONS(1396), - [anon_sym_continue] = ACTIONS(1396), - [anon_sym_default] = ACTIONS(1396), - [anon_sym_enum] = ACTIONS(1396), - [anon_sym_fn] = ACTIONS(1396), - [anon_sym_for] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_impl] = ACTIONS(1396), - [anon_sym_let] = ACTIONS(1396), - [anon_sym_loop] = ACTIONS(1396), - [anon_sym_match] = ACTIONS(1396), - [anon_sym_mod] = ACTIONS(1396), - [anon_sym_pub] = ACTIONS(1396), - [anon_sym_return] = ACTIONS(1396), - [anon_sym_static] = ACTIONS(1396), - [anon_sym_struct] = ACTIONS(1396), - [anon_sym_trait] = ACTIONS(1396), - [anon_sym_type] = ACTIONS(1396), - [anon_sym_union] = ACTIONS(1396), - [anon_sym_unsafe] = ACTIONS(1396), - [anon_sym_use] = ACTIONS(1396), - [anon_sym_while] = ACTIONS(1396), - [anon_sym_POUND] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_COLON_COLON] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_move] = ACTIONS(1396), - [sym_integer_literal] = ACTIONS(1394), - [aux_sym_string_literal_token1] = ACTIONS(1394), - [sym_char_literal] = ACTIONS(1394), - [anon_sym_true] = ACTIONS(1396), - [anon_sym_false] = ACTIONS(1396), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1396), - [sym_super] = ACTIONS(1396), - [sym_crate] = ACTIONS(1396), - [sym_metavariable] = ACTIONS(1394), - [sym_raw_string_literal] = ACTIONS(1394), - [sym_float_literal] = ACTIONS(1394), + [ts_builtin_sym_end] = ACTIONS(1384), + [sym_identifier] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym_macro_rules_BANG] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_u8] = ACTIONS(1386), + [anon_sym_i8] = ACTIONS(1386), + [anon_sym_u16] = ACTIONS(1386), + [anon_sym_i16] = ACTIONS(1386), + [anon_sym_u32] = ACTIONS(1386), + [anon_sym_i32] = ACTIONS(1386), + [anon_sym_u64] = ACTIONS(1386), + [anon_sym_i64] = ACTIONS(1386), + [anon_sym_u128] = ACTIONS(1386), + [anon_sym_i128] = ACTIONS(1386), + [anon_sym_isize] = ACTIONS(1386), + [anon_sym_usize] = ACTIONS(1386), + [anon_sym_f32] = ACTIONS(1386), + [anon_sym_f64] = ACTIONS(1386), + [anon_sym_bool] = ACTIONS(1386), + [anon_sym_str] = ACTIONS(1386), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_async] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_fn] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_impl] = ACTIONS(1386), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_loop] = ACTIONS(1386), + [anon_sym_match] = ACTIONS(1386), + [anon_sym_mod] = ACTIONS(1386), + [anon_sym_pub] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_trait] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_unsafe] = ACTIONS(1386), + [anon_sym_use] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_POUND] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_COLON_COLON] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_DOT_DOT] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_move] = ACTIONS(1386), + [sym_integer_literal] = ACTIONS(1384), + [aux_sym_string_literal_token1] = ACTIONS(1384), + [sym_char_literal] = ACTIONS(1384), + [anon_sym_true] = ACTIONS(1386), + [anon_sym_false] = ACTIONS(1386), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1386), + [sym_super] = ACTIONS(1386), + [sym_crate] = ACTIONS(1386), + [sym_metavariable] = ACTIONS(1384), + [sym_raw_string_literal] = ACTIONS(1384), + [sym_float_literal] = ACTIONS(1384), [sym_block_comment] = ACTIONS(3), }, [329] = { - [ts_builtin_sym_end] = ACTIONS(1398), - [sym_identifier] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_macro_rules_BANG] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_u8] = ACTIONS(1400), - [anon_sym_i8] = ACTIONS(1400), - [anon_sym_u16] = ACTIONS(1400), - [anon_sym_i16] = ACTIONS(1400), - [anon_sym_u32] = ACTIONS(1400), - [anon_sym_i32] = ACTIONS(1400), - [anon_sym_u64] = ACTIONS(1400), - [anon_sym_i64] = ACTIONS(1400), - [anon_sym_u128] = ACTIONS(1400), - [anon_sym_i128] = ACTIONS(1400), - [anon_sym_isize] = ACTIONS(1400), - [anon_sym_usize] = ACTIONS(1400), - [anon_sym_f32] = ACTIONS(1400), - [anon_sym_f64] = ACTIONS(1400), - [anon_sym_bool] = ACTIONS(1400), - [anon_sym_str] = ACTIONS(1400), - [anon_sym_char] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_break] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_continue] = ACTIONS(1400), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [anon_sym_fn] = ACTIONS(1400), - [anon_sym_for] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1400), - [anon_sym_impl] = ACTIONS(1400), - [anon_sym_let] = ACTIONS(1400), - [anon_sym_loop] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1400), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_pub] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1400), - [anon_sym_struct] = ACTIONS(1400), - [anon_sym_trait] = ACTIONS(1400), - [anon_sym_type] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_unsafe] = ACTIONS(1400), - [anon_sym_use] = ACTIONS(1400), - [anon_sym_while] = ACTIONS(1400), - [anon_sym_POUND] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1398), - [anon_sym_COLON_COLON] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_yield] = ACTIONS(1400), - [anon_sym_move] = ACTIONS(1400), - [sym_integer_literal] = ACTIONS(1398), - [aux_sym_string_literal_token1] = ACTIONS(1398), - [sym_char_literal] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1400), - [sym_super] = ACTIONS(1400), - [sym_crate] = ACTIONS(1400), - [sym_metavariable] = ACTIONS(1398), - [sym_raw_string_literal] = ACTIONS(1398), - [sym_float_literal] = ACTIONS(1398), + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_identifier] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_macro_rules_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_u8] = ACTIONS(1390), + [anon_sym_i8] = ACTIONS(1390), + [anon_sym_u16] = ACTIONS(1390), + [anon_sym_i16] = ACTIONS(1390), + [anon_sym_u32] = ACTIONS(1390), + [anon_sym_i32] = ACTIONS(1390), + [anon_sym_u64] = ACTIONS(1390), + [anon_sym_i64] = ACTIONS(1390), + [anon_sym_u128] = ACTIONS(1390), + [anon_sym_i128] = ACTIONS(1390), + [anon_sym_isize] = ACTIONS(1390), + [anon_sym_usize] = ACTIONS(1390), + [anon_sym_f32] = ACTIONS(1390), + [anon_sym_f64] = ACTIONS(1390), + [anon_sym_bool] = ACTIONS(1390), + [anon_sym_str] = ACTIONS(1390), + [anon_sym_char] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_fn] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_impl] = ACTIONS(1390), + [anon_sym_let] = ACTIONS(1390), + [anon_sym_loop] = ACTIONS(1390), + [anon_sym_match] = ACTIONS(1390), + [anon_sym_mod] = ACTIONS(1390), + [anon_sym_pub] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_trait] = ACTIONS(1390), + [anon_sym_type] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_unsafe] = ACTIONS(1390), + [anon_sym_use] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_POUND] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_COLON_COLON] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_DOT_DOT] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_yield] = ACTIONS(1390), + [anon_sym_move] = ACTIONS(1390), + [sym_integer_literal] = ACTIONS(1388), + [aux_sym_string_literal_token1] = ACTIONS(1388), + [sym_char_literal] = ACTIONS(1388), + [anon_sym_true] = ACTIONS(1390), + [anon_sym_false] = ACTIONS(1390), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1390), + [sym_super] = ACTIONS(1390), + [sym_crate] = ACTIONS(1390), + [sym_metavariable] = ACTIONS(1388), + [sym_raw_string_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1388), [sym_block_comment] = ACTIONS(3), }, [330] = { - [ts_builtin_sym_end] = ACTIONS(1402), - [sym_identifier] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1402), - [anon_sym_macro_rules_BANG] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_u8] = ACTIONS(1404), - [anon_sym_i8] = ACTIONS(1404), - [anon_sym_u16] = ACTIONS(1404), - [anon_sym_i16] = ACTIONS(1404), - [anon_sym_u32] = ACTIONS(1404), - [anon_sym_i32] = ACTIONS(1404), - [anon_sym_u64] = ACTIONS(1404), - [anon_sym_i64] = ACTIONS(1404), - [anon_sym_u128] = ACTIONS(1404), - [anon_sym_i128] = ACTIONS(1404), - [anon_sym_isize] = ACTIONS(1404), - [anon_sym_usize] = ACTIONS(1404), - [anon_sym_f32] = ACTIONS(1404), - [anon_sym_f64] = ACTIONS(1404), - [anon_sym_bool] = ACTIONS(1404), - [anon_sym_str] = ACTIONS(1404), - [anon_sym_char] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_async] = ACTIONS(1404), - [anon_sym_break] = ACTIONS(1404), - [anon_sym_const] = ACTIONS(1404), - [anon_sym_continue] = ACTIONS(1404), - [anon_sym_default] = ACTIONS(1404), - [anon_sym_enum] = ACTIONS(1404), - [anon_sym_fn] = ACTIONS(1404), - [anon_sym_for] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1404), - [anon_sym_impl] = ACTIONS(1404), - [anon_sym_let] = ACTIONS(1404), - [anon_sym_loop] = ACTIONS(1404), - [anon_sym_match] = ACTIONS(1404), - [anon_sym_mod] = ACTIONS(1404), - [anon_sym_pub] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1404), - [anon_sym_static] = ACTIONS(1404), - [anon_sym_struct] = ACTIONS(1404), - [anon_sym_trait] = ACTIONS(1404), - [anon_sym_type] = ACTIONS(1404), - [anon_sym_union] = ACTIONS(1404), - [anon_sym_unsafe] = ACTIONS(1404), - [anon_sym_use] = ACTIONS(1404), - [anon_sym_while] = ACTIONS(1404), - [anon_sym_POUND] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_COLON_COLON] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_DOT_DOT] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1404), - [anon_sym_move] = ACTIONS(1404), - [sym_integer_literal] = ACTIONS(1402), - [aux_sym_string_literal_token1] = ACTIONS(1402), - [sym_char_literal] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1404), - [anon_sym_false] = ACTIONS(1404), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1404), - [sym_super] = ACTIONS(1404), - [sym_crate] = ACTIONS(1404), - [sym_metavariable] = ACTIONS(1402), - [sym_raw_string_literal] = ACTIONS(1402), - [sym_float_literal] = ACTIONS(1402), + [ts_builtin_sym_end] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [anon_sym_SEMI] = ACTIONS(406), + [anon_sym_macro_rules_BANG] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_LBRACK] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_u8] = ACTIONS(408), + [anon_sym_i8] = ACTIONS(408), + [anon_sym_u16] = ACTIONS(408), + [anon_sym_i16] = ACTIONS(408), + [anon_sym_u32] = ACTIONS(408), + [anon_sym_i32] = ACTIONS(408), + [anon_sym_u64] = ACTIONS(408), + [anon_sym_i64] = ACTIONS(408), + [anon_sym_u128] = ACTIONS(408), + [anon_sym_i128] = ACTIONS(408), + [anon_sym_isize] = ACTIONS(408), + [anon_sym_usize] = ACTIONS(408), + [anon_sym_f32] = ACTIONS(408), + [anon_sym_f64] = ACTIONS(408), + [anon_sym_bool] = ACTIONS(408), + [anon_sym_str] = ACTIONS(408), + [anon_sym_char] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(408), + [anon_sym_async] = ACTIONS(408), + [anon_sym_break] = ACTIONS(408), + [anon_sym_const] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(408), + [anon_sym_default] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(408), + [anon_sym_fn] = ACTIONS(408), + [anon_sym_for] = ACTIONS(408), + [anon_sym_if] = ACTIONS(408), + [anon_sym_impl] = ACTIONS(408), + [anon_sym_let] = ACTIONS(408), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(408), + [anon_sym_mod] = ACTIONS(408), + [anon_sym_pub] = ACTIONS(408), + [anon_sym_return] = ACTIONS(408), + [anon_sym_static] = ACTIONS(408), + [anon_sym_struct] = ACTIONS(408), + [anon_sym_trait] = ACTIONS(408), + [anon_sym_type] = ACTIONS(408), + [anon_sym_union] = ACTIONS(408), + [anon_sym_unsafe] = ACTIONS(408), + [anon_sym_use] = ACTIONS(408), + [anon_sym_while] = ACTIONS(408), + [anon_sym_POUND] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(406), + [anon_sym_extern] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_COLON_COLON] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_DOT_DOT] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_yield] = ACTIONS(408), + [anon_sym_move] = ACTIONS(408), + [sym_integer_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(406), + [sym_char_literal] = ACTIONS(406), + [anon_sym_true] = ACTIONS(408), + [anon_sym_false] = ACTIONS(408), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_crate] = ACTIONS(408), + [sym_metavariable] = ACTIONS(406), + [sym_raw_string_literal] = ACTIONS(406), + [sym_float_literal] = ACTIONS(406), [sym_block_comment] = ACTIONS(3), }, [331] = { - [ts_builtin_sym_end] = ACTIONS(1406), - [sym_identifier] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1406), - [anon_sym_macro_rules_BANG] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_u8] = ACTIONS(1408), - [anon_sym_i8] = ACTIONS(1408), - [anon_sym_u16] = ACTIONS(1408), - [anon_sym_i16] = ACTIONS(1408), - [anon_sym_u32] = ACTIONS(1408), - [anon_sym_i32] = ACTIONS(1408), - [anon_sym_u64] = ACTIONS(1408), - [anon_sym_i64] = ACTIONS(1408), - [anon_sym_u128] = ACTIONS(1408), - [anon_sym_i128] = ACTIONS(1408), - [anon_sym_isize] = ACTIONS(1408), - [anon_sym_usize] = ACTIONS(1408), - [anon_sym_f32] = ACTIONS(1408), - [anon_sym_f64] = ACTIONS(1408), - [anon_sym_bool] = ACTIONS(1408), - [anon_sym_str] = ACTIONS(1408), - [anon_sym_char] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_async] = ACTIONS(1408), - [anon_sym_break] = ACTIONS(1408), - [anon_sym_const] = ACTIONS(1408), - [anon_sym_continue] = ACTIONS(1408), - [anon_sym_default] = ACTIONS(1408), - [anon_sym_enum] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1408), - [anon_sym_for] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1408), - [anon_sym_impl] = ACTIONS(1408), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_loop] = ACTIONS(1408), - [anon_sym_match] = ACTIONS(1408), - [anon_sym_mod] = ACTIONS(1408), - [anon_sym_pub] = ACTIONS(1408), - [anon_sym_return] = ACTIONS(1408), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_struct] = ACTIONS(1408), - [anon_sym_trait] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_union] = ACTIONS(1408), - [anon_sym_unsafe] = ACTIONS(1408), - [anon_sym_use] = ACTIONS(1408), - [anon_sym_while] = ACTIONS(1408), - [anon_sym_POUND] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1408), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_COLON_COLON] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_DOT_DOT] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PIPE] = ACTIONS(1406), - [anon_sym_yield] = ACTIONS(1408), - [anon_sym_move] = ACTIONS(1408), - [sym_integer_literal] = ACTIONS(1406), - [aux_sym_string_literal_token1] = ACTIONS(1406), - [sym_char_literal] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1408), - [anon_sym_false] = ACTIONS(1408), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1408), - [sym_super] = ACTIONS(1408), - [sym_crate] = ACTIONS(1408), - [sym_metavariable] = ACTIONS(1406), - [sym_raw_string_literal] = ACTIONS(1406), - [sym_float_literal] = ACTIONS(1406), + [ts_builtin_sym_end] = ACTIONS(1392), + [sym_identifier] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym_macro_rules_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_u8] = ACTIONS(1394), + [anon_sym_i8] = ACTIONS(1394), + [anon_sym_u16] = ACTIONS(1394), + [anon_sym_i16] = ACTIONS(1394), + [anon_sym_u32] = ACTIONS(1394), + [anon_sym_i32] = ACTIONS(1394), + [anon_sym_u64] = ACTIONS(1394), + [anon_sym_i64] = ACTIONS(1394), + [anon_sym_u128] = ACTIONS(1394), + [anon_sym_i128] = ACTIONS(1394), + [anon_sym_isize] = ACTIONS(1394), + [anon_sym_usize] = ACTIONS(1394), + [anon_sym_f32] = ACTIONS(1394), + [anon_sym_f64] = ACTIONS(1394), + [anon_sym_bool] = ACTIONS(1394), + [anon_sym_str] = ACTIONS(1394), + [anon_sym_char] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [anon_sym_async] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_fn] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_impl] = ACTIONS(1394), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_loop] = ACTIONS(1394), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_mod] = ACTIONS(1394), + [anon_sym_pub] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_trait] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_unsafe] = ACTIONS(1394), + [anon_sym_use] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_POUND] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym_LT] = ACTIONS(1392), + [anon_sym_COLON_COLON] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_PIPE] = ACTIONS(1392), + [anon_sym_yield] = ACTIONS(1394), + [anon_sym_move] = ACTIONS(1394), + [sym_integer_literal] = ACTIONS(1392), + [aux_sym_string_literal_token1] = ACTIONS(1392), + [sym_char_literal] = ACTIONS(1392), + [anon_sym_true] = ACTIONS(1394), + [anon_sym_false] = ACTIONS(1394), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1394), + [sym_super] = ACTIONS(1394), + [sym_crate] = ACTIONS(1394), + [sym_metavariable] = ACTIONS(1392), + [sym_raw_string_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1392), [sym_block_comment] = ACTIONS(3), }, [332] = { - [ts_builtin_sym_end] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_macro_rules_BANG] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_u8] = ACTIONS(1412), - [anon_sym_i8] = ACTIONS(1412), - [anon_sym_u16] = ACTIONS(1412), - [anon_sym_i16] = ACTIONS(1412), - [anon_sym_u32] = ACTIONS(1412), - [anon_sym_i32] = ACTIONS(1412), - [anon_sym_u64] = ACTIONS(1412), - [anon_sym_i64] = ACTIONS(1412), - [anon_sym_u128] = ACTIONS(1412), - [anon_sym_i128] = ACTIONS(1412), - [anon_sym_isize] = ACTIONS(1412), - [anon_sym_usize] = ACTIONS(1412), - [anon_sym_f32] = ACTIONS(1412), - [anon_sym_f64] = ACTIONS(1412), - [anon_sym_bool] = ACTIONS(1412), - [anon_sym_str] = ACTIONS(1412), - [anon_sym_char] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_async] = ACTIONS(1412), - [anon_sym_break] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_continue] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_fn] = ACTIONS(1412), - [anon_sym_for] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1412), - [anon_sym_impl] = ACTIONS(1412), - [anon_sym_let] = ACTIONS(1412), - [anon_sym_loop] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1412), - [anon_sym_mod] = ACTIONS(1412), - [anon_sym_pub] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1412), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_trait] = ACTIONS(1412), - [anon_sym_type] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_unsafe] = ACTIONS(1412), - [anon_sym_use] = ACTIONS(1412), - [anon_sym_while] = ACTIONS(1412), - [anon_sym_POUND] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_COLON_COLON] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_DOT_DOT] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_yield] = ACTIONS(1412), - [anon_sym_move] = ACTIONS(1412), - [sym_integer_literal] = ACTIONS(1410), - [aux_sym_string_literal_token1] = ACTIONS(1410), - [sym_char_literal] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1412), - [anon_sym_false] = ACTIONS(1412), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1412), - [sym_super] = ACTIONS(1412), - [sym_crate] = ACTIONS(1412), - [sym_metavariable] = ACTIONS(1410), - [sym_raw_string_literal] = ACTIONS(1410), - [sym_float_literal] = ACTIONS(1410), + [ts_builtin_sym_end] = ACTIONS(1396), + [sym_identifier] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_macro_rules_BANG] = ACTIONS(1396), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1398), + [anon_sym_i8] = ACTIONS(1398), + [anon_sym_u16] = ACTIONS(1398), + [anon_sym_i16] = ACTIONS(1398), + [anon_sym_u32] = ACTIONS(1398), + [anon_sym_i32] = ACTIONS(1398), + [anon_sym_u64] = ACTIONS(1398), + [anon_sym_i64] = ACTIONS(1398), + [anon_sym_u128] = ACTIONS(1398), + [anon_sym_i128] = ACTIONS(1398), + [anon_sym_isize] = ACTIONS(1398), + [anon_sym_usize] = ACTIONS(1398), + [anon_sym_f32] = ACTIONS(1398), + [anon_sym_f64] = ACTIONS(1398), + [anon_sym_bool] = ACTIONS(1398), + [anon_sym_str] = ACTIONS(1398), + [anon_sym_char] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_fn] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_impl] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(1398), + [anon_sym_loop] = ACTIONS(1398), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_mod] = ACTIONS(1398), + [anon_sym_pub] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_trait] = ACTIONS(1398), + [anon_sym_type] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(1398), + [anon_sym_use] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_POUND] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_COLON_COLON] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_DOT_DOT] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PIPE] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1398), + [anon_sym_move] = ACTIONS(1398), + [sym_integer_literal] = ACTIONS(1396), + [aux_sym_string_literal_token1] = ACTIONS(1396), + [sym_char_literal] = ACTIONS(1396), + [anon_sym_true] = ACTIONS(1398), + [anon_sym_false] = ACTIONS(1398), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1398), + [sym_super] = ACTIONS(1398), + [sym_crate] = ACTIONS(1398), + [sym_metavariable] = ACTIONS(1396), + [sym_raw_string_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1396), [sym_block_comment] = ACTIONS(3), }, [333] = { - [ts_builtin_sym_end] = ACTIONS(1414), - [sym_identifier] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_macro_rules_BANG] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_u8] = ACTIONS(1416), - [anon_sym_i8] = ACTIONS(1416), - [anon_sym_u16] = ACTIONS(1416), - [anon_sym_i16] = ACTIONS(1416), - [anon_sym_u32] = ACTIONS(1416), - [anon_sym_i32] = ACTIONS(1416), - [anon_sym_u64] = ACTIONS(1416), - [anon_sym_i64] = ACTIONS(1416), - [anon_sym_u128] = ACTIONS(1416), - [anon_sym_i128] = ACTIONS(1416), - [anon_sym_isize] = ACTIONS(1416), - [anon_sym_usize] = ACTIONS(1416), - [anon_sym_f32] = ACTIONS(1416), - [anon_sym_f64] = ACTIONS(1416), - [anon_sym_bool] = ACTIONS(1416), - [anon_sym_str] = ACTIONS(1416), - [anon_sym_char] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_async] = ACTIONS(1416), - [anon_sym_break] = ACTIONS(1416), - [anon_sym_const] = ACTIONS(1416), - [anon_sym_continue] = ACTIONS(1416), - [anon_sym_default] = ACTIONS(1416), - [anon_sym_enum] = ACTIONS(1416), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_for] = ACTIONS(1416), - [anon_sym_if] = ACTIONS(1416), - [anon_sym_impl] = ACTIONS(1416), - [anon_sym_let] = ACTIONS(1416), - [anon_sym_loop] = ACTIONS(1416), - [anon_sym_match] = ACTIONS(1416), - [anon_sym_mod] = ACTIONS(1416), - [anon_sym_pub] = ACTIONS(1416), - [anon_sym_return] = ACTIONS(1416), - [anon_sym_static] = ACTIONS(1416), - [anon_sym_struct] = ACTIONS(1416), - [anon_sym_trait] = ACTIONS(1416), - [anon_sym_type] = ACTIONS(1416), - [anon_sym_union] = ACTIONS(1416), - [anon_sym_unsafe] = ACTIONS(1416), - [anon_sym_use] = ACTIONS(1416), - [anon_sym_while] = ACTIONS(1416), - [anon_sym_POUND] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1414), - [anon_sym_COLON_COLON] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_yield] = ACTIONS(1416), - [anon_sym_move] = ACTIONS(1416), - [sym_integer_literal] = ACTIONS(1414), - [aux_sym_string_literal_token1] = ACTIONS(1414), - [sym_char_literal] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1416), - [anon_sym_false] = ACTIONS(1416), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1416), - [sym_super] = ACTIONS(1416), - [sym_crate] = ACTIONS(1416), - [sym_metavariable] = ACTIONS(1414), - [sym_raw_string_literal] = ACTIONS(1414), - [sym_float_literal] = ACTIONS(1414), + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_macro_rules_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_u8] = ACTIONS(1402), + [anon_sym_i8] = ACTIONS(1402), + [anon_sym_u16] = ACTIONS(1402), + [anon_sym_i16] = ACTIONS(1402), + [anon_sym_u32] = ACTIONS(1402), + [anon_sym_i32] = ACTIONS(1402), + [anon_sym_u64] = ACTIONS(1402), + [anon_sym_i64] = ACTIONS(1402), + [anon_sym_u128] = ACTIONS(1402), + [anon_sym_i128] = ACTIONS(1402), + [anon_sym_isize] = ACTIONS(1402), + [anon_sym_usize] = ACTIONS(1402), + [anon_sym_f32] = ACTIONS(1402), + [anon_sym_f64] = ACTIONS(1402), + [anon_sym_bool] = ACTIONS(1402), + [anon_sym_str] = ACTIONS(1402), + [anon_sym_char] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_async] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_fn] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_impl] = ACTIONS(1402), + [anon_sym_let] = ACTIONS(1402), + [anon_sym_loop] = ACTIONS(1402), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_mod] = ACTIONS(1402), + [anon_sym_pub] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_trait] = ACTIONS(1402), + [anon_sym_type] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_unsafe] = ACTIONS(1402), + [anon_sym_use] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_POUND] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_COLON_COLON] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_DOT_DOT] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1402), + [anon_sym_move] = ACTIONS(1402), + [sym_integer_literal] = ACTIONS(1400), + [aux_sym_string_literal_token1] = ACTIONS(1400), + [sym_char_literal] = ACTIONS(1400), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1402), + [sym_super] = ACTIONS(1402), + [sym_crate] = ACTIONS(1402), + [sym_metavariable] = ACTIONS(1400), + [sym_raw_string_literal] = ACTIONS(1400), + [sym_float_literal] = ACTIONS(1400), [sym_block_comment] = ACTIONS(3), }, [334] = { - [ts_builtin_sym_end] = ACTIONS(1418), - [sym_identifier] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_macro_rules_BANG] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_u8] = ACTIONS(1420), - [anon_sym_i8] = ACTIONS(1420), - [anon_sym_u16] = ACTIONS(1420), - [anon_sym_i16] = ACTIONS(1420), - [anon_sym_u32] = ACTIONS(1420), - [anon_sym_i32] = ACTIONS(1420), - [anon_sym_u64] = ACTIONS(1420), - [anon_sym_i64] = ACTIONS(1420), - [anon_sym_u128] = ACTIONS(1420), - [anon_sym_i128] = ACTIONS(1420), - [anon_sym_isize] = ACTIONS(1420), - [anon_sym_usize] = ACTIONS(1420), - [anon_sym_f32] = ACTIONS(1420), - [anon_sym_f64] = ACTIONS(1420), - [anon_sym_bool] = ACTIONS(1420), - [anon_sym_str] = ACTIONS(1420), - [anon_sym_char] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_async] = ACTIONS(1420), - [anon_sym_break] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1420), - [anon_sym_continue] = ACTIONS(1420), - [anon_sym_default] = ACTIONS(1420), - [anon_sym_enum] = ACTIONS(1420), - [anon_sym_fn] = ACTIONS(1420), - [anon_sym_for] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1420), - [anon_sym_impl] = ACTIONS(1420), - [anon_sym_let] = ACTIONS(1420), - [anon_sym_loop] = ACTIONS(1420), - [anon_sym_match] = ACTIONS(1420), - [anon_sym_mod] = ACTIONS(1420), - [anon_sym_pub] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1420), - [anon_sym_static] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1420), - [anon_sym_trait] = ACTIONS(1420), - [anon_sym_type] = ACTIONS(1420), - [anon_sym_union] = ACTIONS(1420), - [anon_sym_unsafe] = ACTIONS(1420), - [anon_sym_use] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1420), - [anon_sym_POUND] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_move] = ACTIONS(1420), - [sym_integer_literal] = ACTIONS(1418), - [aux_sym_string_literal_token1] = ACTIONS(1418), - [sym_char_literal] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1420), - [anon_sym_false] = ACTIONS(1420), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1418), - [sym_raw_string_literal] = ACTIONS(1418), - [sym_float_literal] = ACTIONS(1418), + [ts_builtin_sym_end] = ACTIONS(1404), + [sym_identifier] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym_macro_rules_BANG] = ACTIONS(1404), + [anon_sym_LPAREN] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_RBRACE] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_u8] = ACTIONS(1406), + [anon_sym_i8] = ACTIONS(1406), + [anon_sym_u16] = ACTIONS(1406), + [anon_sym_i16] = ACTIONS(1406), + [anon_sym_u32] = ACTIONS(1406), + [anon_sym_i32] = ACTIONS(1406), + [anon_sym_u64] = ACTIONS(1406), + [anon_sym_i64] = ACTIONS(1406), + [anon_sym_u128] = ACTIONS(1406), + [anon_sym_i128] = ACTIONS(1406), + [anon_sym_isize] = ACTIONS(1406), + [anon_sym_usize] = ACTIONS(1406), + [anon_sym_f32] = ACTIONS(1406), + [anon_sym_f64] = ACTIONS(1406), + [anon_sym_bool] = ACTIONS(1406), + [anon_sym_str] = ACTIONS(1406), + [anon_sym_char] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_fn] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_impl] = ACTIONS(1406), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_loop] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1406), + [anon_sym_mod] = ACTIONS(1406), + [anon_sym_pub] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_trait] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1406), + [anon_sym_use] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_POUND] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(1404), + [anon_sym_COLON_COLON] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_PIPE] = ACTIONS(1404), + [anon_sym_yield] = ACTIONS(1406), + [anon_sym_move] = ACTIONS(1406), + [sym_integer_literal] = ACTIONS(1404), + [aux_sym_string_literal_token1] = ACTIONS(1404), + [sym_char_literal] = ACTIONS(1404), + [anon_sym_true] = ACTIONS(1406), + [anon_sym_false] = ACTIONS(1406), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1406), + [sym_super] = ACTIONS(1406), + [sym_crate] = ACTIONS(1406), + [sym_metavariable] = ACTIONS(1404), + [sym_raw_string_literal] = ACTIONS(1404), + [sym_float_literal] = ACTIONS(1404), [sym_block_comment] = ACTIONS(3), }, [335] = { - [ts_builtin_sym_end] = ACTIONS(1422), - [sym_identifier] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym_macro_rules_BANG] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_u8] = ACTIONS(1424), - [anon_sym_i8] = ACTIONS(1424), - [anon_sym_u16] = ACTIONS(1424), - [anon_sym_i16] = ACTIONS(1424), - [anon_sym_u32] = ACTIONS(1424), - [anon_sym_i32] = ACTIONS(1424), - [anon_sym_u64] = ACTIONS(1424), - [anon_sym_i64] = ACTIONS(1424), - [anon_sym_u128] = ACTIONS(1424), - [anon_sym_i128] = ACTIONS(1424), - [anon_sym_isize] = ACTIONS(1424), - [anon_sym_usize] = ACTIONS(1424), - [anon_sym_f32] = ACTIONS(1424), - [anon_sym_f64] = ACTIONS(1424), - [anon_sym_bool] = ACTIONS(1424), - [anon_sym_str] = ACTIONS(1424), - [anon_sym_char] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_fn] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_impl] = ACTIONS(1424), - [anon_sym_let] = ACTIONS(1424), - [anon_sym_loop] = ACTIONS(1424), - [anon_sym_match] = ACTIONS(1424), - [anon_sym_mod] = ACTIONS(1424), - [anon_sym_pub] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_trait] = ACTIONS(1424), - [anon_sym_type] = ACTIONS(1424), - [anon_sym_union] = ACTIONS(1424), - [anon_sym_unsafe] = ACTIONS(1424), - [anon_sym_use] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_COLON_COLON] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_yield] = ACTIONS(1424), - [anon_sym_move] = ACTIONS(1424), - [sym_integer_literal] = ACTIONS(1422), - [aux_sym_string_literal_token1] = ACTIONS(1422), - [sym_char_literal] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1424), - [anon_sym_false] = ACTIONS(1424), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1424), - [sym_super] = ACTIONS(1424), - [sym_crate] = ACTIONS(1424), - [sym_metavariable] = ACTIONS(1422), - [sym_raw_string_literal] = ACTIONS(1422), - [sym_float_literal] = ACTIONS(1422), + [ts_builtin_sym_end] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_macro_rules_BANG] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_u8] = ACTIONS(1410), + [anon_sym_i8] = ACTIONS(1410), + [anon_sym_u16] = ACTIONS(1410), + [anon_sym_i16] = ACTIONS(1410), + [anon_sym_u32] = ACTIONS(1410), + [anon_sym_i32] = ACTIONS(1410), + [anon_sym_u64] = ACTIONS(1410), + [anon_sym_i64] = ACTIONS(1410), + [anon_sym_u128] = ACTIONS(1410), + [anon_sym_i128] = ACTIONS(1410), + [anon_sym_isize] = ACTIONS(1410), + [anon_sym_usize] = ACTIONS(1410), + [anon_sym_f32] = ACTIONS(1410), + [anon_sym_f64] = ACTIONS(1410), + [anon_sym_bool] = ACTIONS(1410), + [anon_sym_str] = ACTIONS(1410), + [anon_sym_char] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_impl] = ACTIONS(1410), + [anon_sym_let] = ACTIONS(1410), + [anon_sym_loop] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_mod] = ACTIONS(1410), + [anon_sym_pub] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_trait] = ACTIONS(1410), + [anon_sym_type] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_unsafe] = ACTIONS(1410), + [anon_sym_use] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_POUND] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1408), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_DOT_DOT] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PIPE] = ACTIONS(1408), + [anon_sym_yield] = ACTIONS(1410), + [anon_sym_move] = ACTIONS(1410), + [sym_integer_literal] = ACTIONS(1408), + [aux_sym_string_literal_token1] = ACTIONS(1408), + [sym_char_literal] = ACTIONS(1408), + [anon_sym_true] = ACTIONS(1410), + [anon_sym_false] = ACTIONS(1410), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1410), + [sym_super] = ACTIONS(1410), + [sym_crate] = ACTIONS(1410), + [sym_metavariable] = ACTIONS(1408), + [sym_raw_string_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1408), [sym_block_comment] = ACTIONS(3), }, [336] = { - [ts_builtin_sym_end] = ACTIONS(1426), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_macro_rules_BANG] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_u8] = ACTIONS(1428), - [anon_sym_i8] = ACTIONS(1428), - [anon_sym_u16] = ACTIONS(1428), - [anon_sym_i16] = ACTIONS(1428), - [anon_sym_u32] = ACTIONS(1428), - [anon_sym_i32] = ACTIONS(1428), - [anon_sym_u64] = ACTIONS(1428), - [anon_sym_i64] = ACTIONS(1428), - [anon_sym_u128] = ACTIONS(1428), - [anon_sym_i128] = ACTIONS(1428), - [anon_sym_isize] = ACTIONS(1428), - [anon_sym_usize] = ACTIONS(1428), - [anon_sym_f32] = ACTIONS(1428), - [anon_sym_f64] = ACTIONS(1428), - [anon_sym_bool] = ACTIONS(1428), - [anon_sym_str] = ACTIONS(1428), - [anon_sym_char] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_async] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_fn] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_impl] = ACTIONS(1428), - [anon_sym_let] = ACTIONS(1428), - [anon_sym_loop] = ACTIONS(1428), - [anon_sym_match] = ACTIONS(1428), - [anon_sym_mod] = ACTIONS(1428), - [anon_sym_pub] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_trait] = ACTIONS(1428), - [anon_sym_type] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [anon_sym_unsafe] = ACTIONS(1428), - [anon_sym_use] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_POUND] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_COLON_COLON] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_DOT_DOT] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_yield] = ACTIONS(1428), - [anon_sym_move] = ACTIONS(1428), - [sym_integer_literal] = ACTIONS(1426), - [aux_sym_string_literal_token1] = ACTIONS(1426), - [sym_char_literal] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1428), - [anon_sym_false] = ACTIONS(1428), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1428), - [sym_super] = ACTIONS(1428), - [sym_crate] = ACTIONS(1428), - [sym_metavariable] = ACTIONS(1426), - [sym_raw_string_literal] = ACTIONS(1426), - [sym_float_literal] = ACTIONS(1426), + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_identifier] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_macro_rules_BANG] = ACTIONS(1412), + [anon_sym_LPAREN] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_u8] = ACTIONS(1414), + [anon_sym_i8] = ACTIONS(1414), + [anon_sym_u16] = ACTIONS(1414), + [anon_sym_i16] = ACTIONS(1414), + [anon_sym_u32] = ACTIONS(1414), + [anon_sym_i32] = ACTIONS(1414), + [anon_sym_u64] = ACTIONS(1414), + [anon_sym_i64] = ACTIONS(1414), + [anon_sym_u128] = ACTIONS(1414), + [anon_sym_i128] = ACTIONS(1414), + [anon_sym_isize] = ACTIONS(1414), + [anon_sym_usize] = ACTIONS(1414), + [anon_sym_f32] = ACTIONS(1414), + [anon_sym_f64] = ACTIONS(1414), + [anon_sym_bool] = ACTIONS(1414), + [anon_sym_str] = ACTIONS(1414), + [anon_sym_char] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_async] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_fn] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_impl] = ACTIONS(1414), + [anon_sym_let] = ACTIONS(1414), + [anon_sym_loop] = ACTIONS(1414), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_mod] = ACTIONS(1414), + [anon_sym_pub] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_trait] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_unsafe] = ACTIONS(1414), + [anon_sym_use] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_POUND] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym_LT] = ACTIONS(1412), + [anon_sym_COLON_COLON] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_DOT_DOT] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_yield] = ACTIONS(1414), + [anon_sym_move] = ACTIONS(1414), + [sym_integer_literal] = ACTIONS(1412), + [aux_sym_string_literal_token1] = ACTIONS(1412), + [sym_char_literal] = ACTIONS(1412), + [anon_sym_true] = ACTIONS(1414), + [anon_sym_false] = ACTIONS(1414), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1414), + [sym_super] = ACTIONS(1414), + [sym_crate] = ACTIONS(1414), + [sym_metavariable] = ACTIONS(1412), + [sym_raw_string_literal] = ACTIONS(1412), + [sym_float_literal] = ACTIONS(1412), [sym_block_comment] = ACTIONS(3), }, [337] = { - [ts_builtin_sym_end] = ACTIONS(1430), - [sym_identifier] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_macro_rules_BANG] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_u8] = ACTIONS(1432), - [anon_sym_i8] = ACTIONS(1432), - [anon_sym_u16] = ACTIONS(1432), - [anon_sym_i16] = ACTIONS(1432), - [anon_sym_u32] = ACTIONS(1432), - [anon_sym_i32] = ACTIONS(1432), - [anon_sym_u64] = ACTIONS(1432), - [anon_sym_i64] = ACTIONS(1432), - [anon_sym_u128] = ACTIONS(1432), - [anon_sym_i128] = ACTIONS(1432), - [anon_sym_isize] = ACTIONS(1432), - [anon_sym_usize] = ACTIONS(1432), - [anon_sym_f32] = ACTIONS(1432), - [anon_sym_f64] = ACTIONS(1432), - [anon_sym_bool] = ACTIONS(1432), - [anon_sym_str] = ACTIONS(1432), - [anon_sym_char] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_async] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_impl] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(1432), - [anon_sym_loop] = ACTIONS(1432), - [anon_sym_match] = ACTIONS(1432), - [anon_sym_mod] = ACTIONS(1432), - [anon_sym_pub] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_trait] = ACTIONS(1432), - [anon_sym_type] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_unsafe] = ACTIONS(1432), - [anon_sym_use] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_COLON_COLON] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_DOT_DOT] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1432), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1430), - [aux_sym_string_literal_token1] = ACTIONS(1430), - [sym_char_literal] = ACTIONS(1430), - [anon_sym_true] = ACTIONS(1432), - [anon_sym_false] = ACTIONS(1432), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1432), - [sym_super] = ACTIONS(1432), - [sym_crate] = ACTIONS(1432), - [sym_metavariable] = ACTIONS(1430), - [sym_raw_string_literal] = ACTIONS(1430), - [sym_float_literal] = ACTIONS(1430), + [ts_builtin_sym_end] = ACTIONS(410), + [sym_identifier] = ACTIONS(412), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_macro_rules_BANG] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_LBRACK] = ACTIONS(410), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_SQUOTE] = ACTIONS(412), + [anon_sym_async] = ACTIONS(412), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(412), + [anon_sym_continue] = ACTIONS(412), + [anon_sym_default] = ACTIONS(412), + [anon_sym_enum] = ACTIONS(412), + [anon_sym_fn] = ACTIONS(412), + [anon_sym_for] = ACTIONS(412), + [anon_sym_if] = ACTIONS(412), + [anon_sym_impl] = ACTIONS(412), + [anon_sym_let] = ACTIONS(412), + [anon_sym_loop] = ACTIONS(412), + [anon_sym_match] = ACTIONS(412), + [anon_sym_mod] = ACTIONS(412), + [anon_sym_pub] = ACTIONS(412), + [anon_sym_return] = ACTIONS(412), + [anon_sym_static] = ACTIONS(412), + [anon_sym_struct] = ACTIONS(412), + [anon_sym_trait] = ACTIONS(412), + [anon_sym_type] = ACTIONS(412), + [anon_sym_union] = ACTIONS(412), + [anon_sym_unsafe] = ACTIONS(412), + [anon_sym_use] = ACTIONS(412), + [anon_sym_while] = ACTIONS(412), + [anon_sym_POUND] = ACTIONS(410), + [anon_sym_BANG] = ACTIONS(410), + [anon_sym_extern] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym_AMP] = ACTIONS(410), + [anon_sym_DOT_DOT] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(410), + [anon_sym_PIPE] = ACTIONS(410), + [anon_sym_yield] = ACTIONS(412), + [anon_sym_move] = ACTIONS(412), + [sym_integer_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(410), + [sym_char_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(412), + [sym_super] = ACTIONS(412), + [sym_crate] = ACTIONS(412), + [sym_metavariable] = ACTIONS(410), + [sym_raw_string_literal] = ACTIONS(410), + [sym_float_literal] = ACTIONS(410), [sym_block_comment] = ACTIONS(3), }, [338] = { - [ts_builtin_sym_end] = ACTIONS(1434), - [sym_identifier] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_macro_rules_BANG] = ACTIONS(1434), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_LBRACK] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_u8] = ACTIONS(1436), - [anon_sym_i8] = ACTIONS(1436), - [anon_sym_u16] = ACTIONS(1436), - [anon_sym_i16] = ACTIONS(1436), - [anon_sym_u32] = ACTIONS(1436), - [anon_sym_i32] = ACTIONS(1436), - [anon_sym_u64] = ACTIONS(1436), - [anon_sym_i64] = ACTIONS(1436), - [anon_sym_u128] = ACTIONS(1436), - [anon_sym_i128] = ACTIONS(1436), - [anon_sym_isize] = ACTIONS(1436), - [anon_sym_usize] = ACTIONS(1436), - [anon_sym_f32] = ACTIONS(1436), - [anon_sym_f64] = ACTIONS(1436), - [anon_sym_bool] = ACTIONS(1436), - [anon_sym_str] = ACTIONS(1436), - [anon_sym_char] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_async] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_impl] = ACTIONS(1436), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_loop] = ACTIONS(1436), - [anon_sym_match] = ACTIONS(1436), - [anon_sym_mod] = ACTIONS(1436), - [anon_sym_pub] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_trait] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_unsafe] = ACTIONS(1436), - [anon_sym_use] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_POUND] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(1434), - [anon_sym_COLON_COLON] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_DOT_DOT] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_move] = ACTIONS(1436), - [sym_integer_literal] = ACTIONS(1434), - [aux_sym_string_literal_token1] = ACTIONS(1434), - [sym_char_literal] = ACTIONS(1434), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1436), - [sym_super] = ACTIONS(1436), - [sym_crate] = ACTIONS(1436), - [sym_metavariable] = ACTIONS(1434), - [sym_raw_string_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1434), + [ts_builtin_sym_end] = ACTIONS(1416), + [sym_identifier] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_macro_rules_BANG] = ACTIONS(1416), + [anon_sym_LPAREN] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_u8] = ACTIONS(1418), + [anon_sym_i8] = ACTIONS(1418), + [anon_sym_u16] = ACTIONS(1418), + [anon_sym_i16] = ACTIONS(1418), + [anon_sym_u32] = ACTIONS(1418), + [anon_sym_i32] = ACTIONS(1418), + [anon_sym_u64] = ACTIONS(1418), + [anon_sym_i64] = ACTIONS(1418), + [anon_sym_u128] = ACTIONS(1418), + [anon_sym_i128] = ACTIONS(1418), + [anon_sym_isize] = ACTIONS(1418), + [anon_sym_usize] = ACTIONS(1418), + [anon_sym_f32] = ACTIONS(1418), + [anon_sym_f64] = ACTIONS(1418), + [anon_sym_bool] = ACTIONS(1418), + [anon_sym_str] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_fn] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_impl] = ACTIONS(1418), + [anon_sym_let] = ACTIONS(1418), + [anon_sym_loop] = ACTIONS(1418), + [anon_sym_match] = ACTIONS(1418), + [anon_sym_mod] = ACTIONS(1418), + [anon_sym_pub] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_trait] = ACTIONS(1418), + [anon_sym_type] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1418), + [anon_sym_use] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_POUND] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1416), + [anon_sym_COLON_COLON] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(1416), + [anon_sym_yield] = ACTIONS(1418), + [anon_sym_move] = ACTIONS(1418), + [sym_integer_literal] = ACTIONS(1416), + [aux_sym_string_literal_token1] = ACTIONS(1416), + [sym_char_literal] = ACTIONS(1416), + [anon_sym_true] = ACTIONS(1418), + [anon_sym_false] = ACTIONS(1418), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1418), + [sym_super] = ACTIONS(1418), + [sym_crate] = ACTIONS(1418), + [sym_metavariable] = ACTIONS(1416), + [sym_raw_string_literal] = ACTIONS(1416), + [sym_float_literal] = ACTIONS(1416), [sym_block_comment] = ACTIONS(3), }, [339] = { - [ts_builtin_sym_end] = ACTIONS(1438), - [sym_identifier] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_macro_rules_BANG] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_u8] = ACTIONS(1440), - [anon_sym_i8] = ACTIONS(1440), - [anon_sym_u16] = ACTIONS(1440), - [anon_sym_i16] = ACTIONS(1440), - [anon_sym_u32] = ACTIONS(1440), - [anon_sym_i32] = ACTIONS(1440), - [anon_sym_u64] = ACTIONS(1440), - [anon_sym_i64] = ACTIONS(1440), - [anon_sym_u128] = ACTIONS(1440), - [anon_sym_i128] = ACTIONS(1440), - [anon_sym_isize] = ACTIONS(1440), - [anon_sym_usize] = ACTIONS(1440), - [anon_sym_f32] = ACTIONS(1440), - [anon_sym_f64] = ACTIONS(1440), - [anon_sym_bool] = ACTIONS(1440), - [anon_sym_str] = ACTIONS(1440), - [anon_sym_char] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_async] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_fn] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_impl] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), - [anon_sym_loop] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_mod] = ACTIONS(1440), - [anon_sym_pub] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_trait] = ACTIONS(1440), - [anon_sym_type] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_unsafe] = ACTIONS(1440), - [anon_sym_use] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_COLON_COLON] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_DOT_DOT] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_yield] = ACTIONS(1440), - [anon_sym_move] = ACTIONS(1440), - [sym_integer_literal] = ACTIONS(1438), - [aux_sym_string_literal_token1] = ACTIONS(1438), - [sym_char_literal] = ACTIONS(1438), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1440), - [sym_super] = ACTIONS(1440), - [sym_crate] = ACTIONS(1440), - [sym_metavariable] = ACTIONS(1438), - [sym_raw_string_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1438), + [ts_builtin_sym_end] = ACTIONS(1420), + [sym_identifier] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_macro_rules_BANG] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_u8] = ACTIONS(1422), + [anon_sym_i8] = ACTIONS(1422), + [anon_sym_u16] = ACTIONS(1422), + [anon_sym_i16] = ACTIONS(1422), + [anon_sym_u32] = ACTIONS(1422), + [anon_sym_i32] = ACTIONS(1422), + [anon_sym_u64] = ACTIONS(1422), + [anon_sym_i64] = ACTIONS(1422), + [anon_sym_u128] = ACTIONS(1422), + [anon_sym_i128] = ACTIONS(1422), + [anon_sym_isize] = ACTIONS(1422), + [anon_sym_usize] = ACTIONS(1422), + [anon_sym_f32] = ACTIONS(1422), + [anon_sym_f64] = ACTIONS(1422), + [anon_sym_bool] = ACTIONS(1422), + [anon_sym_str] = ACTIONS(1422), + [anon_sym_char] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1422), + [anon_sym_async] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_fn] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_impl] = ACTIONS(1422), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_loop] = ACTIONS(1422), + [anon_sym_match] = ACTIONS(1422), + [anon_sym_mod] = ACTIONS(1422), + [anon_sym_pub] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_trait] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_unsafe] = ACTIONS(1422), + [anon_sym_use] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_POUND] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_COLON_COLON] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_DOT_DOT] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_yield] = ACTIONS(1422), + [anon_sym_move] = ACTIONS(1422), + [sym_integer_literal] = ACTIONS(1420), + [aux_sym_string_literal_token1] = ACTIONS(1420), + [sym_char_literal] = ACTIONS(1420), + [anon_sym_true] = ACTIONS(1422), + [anon_sym_false] = ACTIONS(1422), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1422), + [sym_super] = ACTIONS(1422), + [sym_crate] = ACTIONS(1422), + [sym_metavariable] = ACTIONS(1420), + [sym_raw_string_literal] = ACTIONS(1420), + [sym_float_literal] = ACTIONS(1420), [sym_block_comment] = ACTIONS(3), }, [340] = { - [ts_builtin_sym_end] = ACTIONS(1442), - [sym_identifier] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_macro_rules_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_u8] = ACTIONS(1444), - [anon_sym_i8] = ACTIONS(1444), - [anon_sym_u16] = ACTIONS(1444), - [anon_sym_i16] = ACTIONS(1444), - [anon_sym_u32] = ACTIONS(1444), - [anon_sym_i32] = ACTIONS(1444), - [anon_sym_u64] = ACTIONS(1444), - [anon_sym_i64] = ACTIONS(1444), - [anon_sym_u128] = ACTIONS(1444), - [anon_sym_i128] = ACTIONS(1444), - [anon_sym_isize] = ACTIONS(1444), - [anon_sym_usize] = ACTIONS(1444), - [anon_sym_f32] = ACTIONS(1444), - [anon_sym_f64] = ACTIONS(1444), - [anon_sym_bool] = ACTIONS(1444), - [anon_sym_str] = ACTIONS(1444), - [anon_sym_char] = ACTIONS(1444), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_async] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_fn] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_impl] = ACTIONS(1444), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_loop] = ACTIONS(1444), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_mod] = ACTIONS(1444), - [anon_sym_pub] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_trait] = ACTIONS(1444), - [anon_sym_type] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1444), - [anon_sym_use] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_POUND] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym_LT] = ACTIONS(1442), - [anon_sym_COLON_COLON] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_DOT_DOT] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_PIPE] = ACTIONS(1442), - [anon_sym_yield] = ACTIONS(1444), - [anon_sym_move] = ACTIONS(1444), - [sym_integer_literal] = ACTIONS(1442), - [aux_sym_string_literal_token1] = ACTIONS(1442), - [sym_char_literal] = ACTIONS(1442), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1444), - [sym_super] = ACTIONS(1444), - [sym_crate] = ACTIONS(1444), - [sym_metavariable] = ACTIONS(1442), - [sym_raw_string_literal] = ACTIONS(1442), - [sym_float_literal] = ACTIONS(1442), + [ts_builtin_sym_end] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_macro_rules_BANG] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_u8] = ACTIONS(1426), + [anon_sym_i8] = ACTIONS(1426), + [anon_sym_u16] = ACTIONS(1426), + [anon_sym_i16] = ACTIONS(1426), + [anon_sym_u32] = ACTIONS(1426), + [anon_sym_i32] = ACTIONS(1426), + [anon_sym_u64] = ACTIONS(1426), + [anon_sym_i64] = ACTIONS(1426), + [anon_sym_u128] = ACTIONS(1426), + [anon_sym_i128] = ACTIONS(1426), + [anon_sym_isize] = ACTIONS(1426), + [anon_sym_usize] = ACTIONS(1426), + [anon_sym_f32] = ACTIONS(1426), + [anon_sym_f64] = ACTIONS(1426), + [anon_sym_bool] = ACTIONS(1426), + [anon_sym_str] = ACTIONS(1426), + [anon_sym_char] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_async] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_fn] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_impl] = ACTIONS(1426), + [anon_sym_let] = ACTIONS(1426), + [anon_sym_loop] = ACTIONS(1426), + [anon_sym_match] = ACTIONS(1426), + [anon_sym_mod] = ACTIONS(1426), + [anon_sym_pub] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_trait] = ACTIONS(1426), + [anon_sym_type] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_unsafe] = ACTIONS(1426), + [anon_sym_use] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_POUND] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1424), + [anon_sym_COLON_COLON] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_DOT_DOT] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_move] = ACTIONS(1426), + [sym_integer_literal] = ACTIONS(1424), + [aux_sym_string_literal_token1] = ACTIONS(1424), + [sym_char_literal] = ACTIONS(1424), + [anon_sym_true] = ACTIONS(1426), + [anon_sym_false] = ACTIONS(1426), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1426), + [sym_super] = ACTIONS(1426), + [sym_crate] = ACTIONS(1426), + [sym_metavariable] = ACTIONS(1424), + [sym_raw_string_literal] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1424), [sym_block_comment] = ACTIONS(3), }, [341] = { - [ts_builtin_sym_end] = ACTIONS(1446), - [sym_identifier] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_macro_rules_BANG] = ACTIONS(1446), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_u8] = ACTIONS(1448), - [anon_sym_i8] = ACTIONS(1448), - [anon_sym_u16] = ACTIONS(1448), - [anon_sym_i16] = ACTIONS(1448), - [anon_sym_u32] = ACTIONS(1448), - [anon_sym_i32] = ACTIONS(1448), - [anon_sym_u64] = ACTIONS(1448), - [anon_sym_i64] = ACTIONS(1448), - [anon_sym_u128] = ACTIONS(1448), - [anon_sym_i128] = ACTIONS(1448), - [anon_sym_isize] = ACTIONS(1448), - [anon_sym_usize] = ACTIONS(1448), - [anon_sym_f32] = ACTIONS(1448), - [anon_sym_f64] = ACTIONS(1448), - [anon_sym_bool] = ACTIONS(1448), - [anon_sym_str] = ACTIONS(1448), - [anon_sym_char] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_fn] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_impl] = ACTIONS(1448), - [anon_sym_let] = ACTIONS(1448), - [anon_sym_loop] = ACTIONS(1448), - [anon_sym_match] = ACTIONS(1448), - [anon_sym_mod] = ACTIONS(1448), - [anon_sym_pub] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_trait] = ACTIONS(1448), - [anon_sym_type] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1448), - [anon_sym_use] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym_LT] = ACTIONS(1446), - [anon_sym_COLON_COLON] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_DOT_DOT] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PIPE] = ACTIONS(1446), - [anon_sym_yield] = ACTIONS(1448), - [anon_sym_move] = ACTIONS(1448), - [sym_integer_literal] = ACTIONS(1446), - [aux_sym_string_literal_token1] = ACTIONS(1446), - [sym_char_literal] = ACTIONS(1446), - [anon_sym_true] = ACTIONS(1448), - [anon_sym_false] = ACTIONS(1448), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1448), - [sym_super] = ACTIONS(1448), - [sym_crate] = ACTIONS(1448), - [sym_metavariable] = ACTIONS(1446), - [sym_raw_string_literal] = ACTIONS(1446), - [sym_float_literal] = ACTIONS(1446), + [ts_builtin_sym_end] = ACTIONS(1428), + [sym_identifier] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_macro_rules_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_u8] = ACTIONS(1430), + [anon_sym_i8] = ACTIONS(1430), + [anon_sym_u16] = ACTIONS(1430), + [anon_sym_i16] = ACTIONS(1430), + [anon_sym_u32] = ACTIONS(1430), + [anon_sym_i32] = ACTIONS(1430), + [anon_sym_u64] = ACTIONS(1430), + [anon_sym_i64] = ACTIONS(1430), + [anon_sym_u128] = ACTIONS(1430), + [anon_sym_i128] = ACTIONS(1430), + [anon_sym_isize] = ACTIONS(1430), + [anon_sym_usize] = ACTIONS(1430), + [anon_sym_f32] = ACTIONS(1430), + [anon_sym_f64] = ACTIONS(1430), + [anon_sym_bool] = ACTIONS(1430), + [anon_sym_str] = ACTIONS(1430), + [anon_sym_char] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_async] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_impl] = ACTIONS(1430), + [anon_sym_let] = ACTIONS(1430), + [anon_sym_loop] = ACTIONS(1430), + [anon_sym_match] = ACTIONS(1430), + [anon_sym_mod] = ACTIONS(1430), + [anon_sym_pub] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_trait] = ACTIONS(1430), + [anon_sym_type] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_unsafe] = ACTIONS(1430), + [anon_sym_use] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_COLON_COLON] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_yield] = ACTIONS(1430), + [anon_sym_move] = ACTIONS(1430), + [sym_integer_literal] = ACTIONS(1428), + [aux_sym_string_literal_token1] = ACTIONS(1428), + [sym_char_literal] = ACTIONS(1428), + [anon_sym_true] = ACTIONS(1430), + [anon_sym_false] = ACTIONS(1430), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1430), + [sym_super] = ACTIONS(1430), + [sym_crate] = ACTIONS(1430), + [sym_metavariable] = ACTIONS(1428), + [sym_raw_string_literal] = ACTIONS(1428), + [sym_float_literal] = ACTIONS(1428), [sym_block_comment] = ACTIONS(3), }, [342] = { - [ts_builtin_sym_end] = ACTIONS(1450), - [sym_identifier] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_macro_rules_BANG] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_u8] = ACTIONS(1452), - [anon_sym_i8] = ACTIONS(1452), - [anon_sym_u16] = ACTIONS(1452), - [anon_sym_i16] = ACTIONS(1452), - [anon_sym_u32] = ACTIONS(1452), - [anon_sym_i32] = ACTIONS(1452), - [anon_sym_u64] = ACTIONS(1452), - [anon_sym_i64] = ACTIONS(1452), - [anon_sym_u128] = ACTIONS(1452), - [anon_sym_i128] = ACTIONS(1452), - [anon_sym_isize] = ACTIONS(1452), - [anon_sym_usize] = ACTIONS(1452), - [anon_sym_f32] = ACTIONS(1452), - [anon_sym_f64] = ACTIONS(1452), - [anon_sym_bool] = ACTIONS(1452), - [anon_sym_str] = ACTIONS(1452), - [anon_sym_char] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_async] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_fn] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_impl] = ACTIONS(1452), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_loop] = ACTIONS(1452), - [anon_sym_match] = ACTIONS(1452), - [anon_sym_mod] = ACTIONS(1452), - [anon_sym_pub] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_trait] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_unsafe] = ACTIONS(1452), - [anon_sym_use] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(1450), - [anon_sym_COLON_COLON] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_DOT_DOT] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_yield] = ACTIONS(1452), - [anon_sym_move] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1450), - [aux_sym_string_literal_token1] = ACTIONS(1450), - [sym_char_literal] = ACTIONS(1450), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1452), - [sym_super] = ACTIONS(1452), - [sym_crate] = ACTIONS(1452), - [sym_metavariable] = ACTIONS(1450), - [sym_raw_string_literal] = ACTIONS(1450), - [sym_float_literal] = ACTIONS(1450), + [ts_builtin_sym_end] = ACTIONS(1432), + [sym_identifier] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_macro_rules_BANG] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1434), + [anon_sym_i8] = ACTIONS(1434), + [anon_sym_u16] = ACTIONS(1434), + [anon_sym_i16] = ACTIONS(1434), + [anon_sym_u32] = ACTIONS(1434), + [anon_sym_i32] = ACTIONS(1434), + [anon_sym_u64] = ACTIONS(1434), + [anon_sym_i64] = ACTIONS(1434), + [anon_sym_u128] = ACTIONS(1434), + [anon_sym_i128] = ACTIONS(1434), + [anon_sym_isize] = ACTIONS(1434), + [anon_sym_usize] = ACTIONS(1434), + [anon_sym_f32] = ACTIONS(1434), + [anon_sym_f64] = ACTIONS(1434), + [anon_sym_bool] = ACTIONS(1434), + [anon_sym_str] = ACTIONS(1434), + [anon_sym_char] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_impl] = ACTIONS(1434), + [anon_sym_let] = ACTIONS(1434), + [anon_sym_loop] = ACTIONS(1434), + [anon_sym_match] = ACTIONS(1434), + [anon_sym_mod] = ACTIONS(1434), + [anon_sym_pub] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_trait] = ACTIONS(1434), + [anon_sym_type] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_unsafe] = ACTIONS(1434), + [anon_sym_use] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym_LT] = ACTIONS(1432), + [anon_sym_COLON_COLON] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_yield] = ACTIONS(1434), + [anon_sym_move] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1432), + [aux_sym_string_literal_token1] = ACTIONS(1432), + [sym_char_literal] = ACTIONS(1432), + [anon_sym_true] = ACTIONS(1434), + [anon_sym_false] = ACTIONS(1434), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1434), + [sym_super] = ACTIONS(1434), + [sym_crate] = ACTIONS(1434), + [sym_metavariable] = ACTIONS(1432), + [sym_raw_string_literal] = ACTIONS(1432), + [sym_float_literal] = ACTIONS(1432), [sym_block_comment] = ACTIONS(3), }, [343] = { - [ts_builtin_sym_end] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_macro_rules_BANG] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_u8] = ACTIONS(1456), - [anon_sym_i8] = ACTIONS(1456), - [anon_sym_u16] = ACTIONS(1456), - [anon_sym_i16] = ACTIONS(1456), - [anon_sym_u32] = ACTIONS(1456), - [anon_sym_i32] = ACTIONS(1456), - [anon_sym_u64] = ACTIONS(1456), - [anon_sym_i64] = ACTIONS(1456), - [anon_sym_u128] = ACTIONS(1456), - [anon_sym_i128] = ACTIONS(1456), - [anon_sym_isize] = ACTIONS(1456), - [anon_sym_usize] = ACTIONS(1456), - [anon_sym_f32] = ACTIONS(1456), - [anon_sym_f64] = ACTIONS(1456), - [anon_sym_bool] = ACTIONS(1456), - [anon_sym_str] = ACTIONS(1456), - [anon_sym_char] = ACTIONS(1456), - [anon_sym_SQUOTE] = ACTIONS(1456), - [anon_sym_async] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_fn] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_impl] = ACTIONS(1456), - [anon_sym_let] = ACTIONS(1456), - [anon_sym_loop] = ACTIONS(1456), - [anon_sym_match] = ACTIONS(1456), - [anon_sym_mod] = ACTIONS(1456), - [anon_sym_pub] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_trait] = ACTIONS(1456), - [anon_sym_type] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_unsafe] = ACTIONS(1456), - [anon_sym_use] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_POUND] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_COLON_COLON] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_DOT_DOT] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_yield] = ACTIONS(1456), - [anon_sym_move] = ACTIONS(1456), - [sym_integer_literal] = ACTIONS(1454), - [aux_sym_string_literal_token1] = ACTIONS(1454), - [sym_char_literal] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1456), - [anon_sym_false] = ACTIONS(1456), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1456), - [sym_super] = ACTIONS(1456), - [sym_crate] = ACTIONS(1456), - [sym_metavariable] = ACTIONS(1454), - [sym_raw_string_literal] = ACTIONS(1454), - [sym_float_literal] = ACTIONS(1454), + [ts_builtin_sym_end] = ACTIONS(1436), + [sym_identifier] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym_macro_rules_BANG] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_u8] = ACTIONS(1438), + [anon_sym_i8] = ACTIONS(1438), + [anon_sym_u16] = ACTIONS(1438), + [anon_sym_i16] = ACTIONS(1438), + [anon_sym_u32] = ACTIONS(1438), + [anon_sym_i32] = ACTIONS(1438), + [anon_sym_u64] = ACTIONS(1438), + [anon_sym_i64] = ACTIONS(1438), + [anon_sym_u128] = ACTIONS(1438), + [anon_sym_i128] = ACTIONS(1438), + [anon_sym_isize] = ACTIONS(1438), + [anon_sym_usize] = ACTIONS(1438), + [anon_sym_f32] = ACTIONS(1438), + [anon_sym_f64] = ACTIONS(1438), + [anon_sym_bool] = ACTIONS(1438), + [anon_sym_str] = ACTIONS(1438), + [anon_sym_char] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_async] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_impl] = ACTIONS(1438), + [anon_sym_let] = ACTIONS(1438), + [anon_sym_loop] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1438), + [anon_sym_mod] = ACTIONS(1438), + [anon_sym_pub] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_trait] = ACTIONS(1438), + [anon_sym_type] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_unsafe] = ACTIONS(1438), + [anon_sym_use] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1436), + [anon_sym_COLON_COLON] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_DOT_DOT] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1436), + [anon_sym_yield] = ACTIONS(1438), + [anon_sym_move] = ACTIONS(1438), + [sym_integer_literal] = ACTIONS(1436), + [aux_sym_string_literal_token1] = ACTIONS(1436), + [sym_char_literal] = ACTIONS(1436), + [anon_sym_true] = ACTIONS(1438), + [anon_sym_false] = ACTIONS(1438), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1438), + [sym_super] = ACTIONS(1438), + [sym_crate] = ACTIONS(1438), + [sym_metavariable] = ACTIONS(1436), + [sym_raw_string_literal] = ACTIONS(1436), + [sym_float_literal] = ACTIONS(1436), [sym_block_comment] = ACTIONS(3), }, [344] = { - [ts_builtin_sym_end] = ACTIONS(1458), - [sym_identifier] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_macro_rules_BANG] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_u8] = ACTIONS(1460), - [anon_sym_i8] = ACTIONS(1460), - [anon_sym_u16] = ACTIONS(1460), - [anon_sym_i16] = ACTIONS(1460), - [anon_sym_u32] = ACTIONS(1460), - [anon_sym_i32] = ACTIONS(1460), - [anon_sym_u64] = ACTIONS(1460), - [anon_sym_i64] = ACTIONS(1460), - [anon_sym_u128] = ACTIONS(1460), - [anon_sym_i128] = ACTIONS(1460), - [anon_sym_isize] = ACTIONS(1460), - [anon_sym_usize] = ACTIONS(1460), - [anon_sym_f32] = ACTIONS(1460), - [anon_sym_f64] = ACTIONS(1460), - [anon_sym_bool] = ACTIONS(1460), - [anon_sym_str] = ACTIONS(1460), - [anon_sym_char] = ACTIONS(1460), - [anon_sym_SQUOTE] = ACTIONS(1460), - [anon_sym_async] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_fn] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_impl] = ACTIONS(1460), - [anon_sym_let] = ACTIONS(1460), - [anon_sym_loop] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1460), - [anon_sym_mod] = ACTIONS(1460), - [anon_sym_pub] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_trait] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_unsafe] = ACTIONS(1460), - [anon_sym_use] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_COLON_COLON] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_yield] = ACTIONS(1460), - [anon_sym_move] = ACTIONS(1460), - [sym_integer_literal] = ACTIONS(1458), - [aux_sym_string_literal_token1] = ACTIONS(1458), - [sym_char_literal] = ACTIONS(1458), - [anon_sym_true] = ACTIONS(1460), - [anon_sym_false] = ACTIONS(1460), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1460), - [sym_super] = ACTIONS(1460), - [sym_crate] = ACTIONS(1460), - [sym_metavariable] = ACTIONS(1458), - [sym_raw_string_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1458), + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym_macro_rules_BANG] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_u8] = ACTIONS(1442), + [anon_sym_i8] = ACTIONS(1442), + [anon_sym_u16] = ACTIONS(1442), + [anon_sym_i16] = ACTIONS(1442), + [anon_sym_u32] = ACTIONS(1442), + [anon_sym_i32] = ACTIONS(1442), + [anon_sym_u64] = ACTIONS(1442), + [anon_sym_i64] = ACTIONS(1442), + [anon_sym_u128] = ACTIONS(1442), + [anon_sym_i128] = ACTIONS(1442), + [anon_sym_isize] = ACTIONS(1442), + [anon_sym_usize] = ACTIONS(1442), + [anon_sym_f32] = ACTIONS(1442), + [anon_sym_f64] = ACTIONS(1442), + [anon_sym_bool] = ACTIONS(1442), + [anon_sym_str] = ACTIONS(1442), + [anon_sym_char] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_async] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_impl] = ACTIONS(1442), + [anon_sym_let] = ACTIONS(1442), + [anon_sym_loop] = ACTIONS(1442), + [anon_sym_match] = ACTIONS(1442), + [anon_sym_mod] = ACTIONS(1442), + [anon_sym_pub] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_trait] = ACTIONS(1442), + [anon_sym_type] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_unsafe] = ACTIONS(1442), + [anon_sym_use] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1440), + [anon_sym_COLON_COLON] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_DOT_DOT] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PIPE] = ACTIONS(1440), + [anon_sym_yield] = ACTIONS(1442), + [anon_sym_move] = ACTIONS(1442), + [sym_integer_literal] = ACTIONS(1440), + [aux_sym_string_literal_token1] = ACTIONS(1440), + [sym_char_literal] = ACTIONS(1440), + [anon_sym_true] = ACTIONS(1442), + [anon_sym_false] = ACTIONS(1442), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1442), + [sym_super] = ACTIONS(1442), + [sym_crate] = ACTIONS(1442), + [sym_metavariable] = ACTIONS(1440), + [sym_raw_string_literal] = ACTIONS(1440), + [sym_float_literal] = ACTIONS(1440), [sym_block_comment] = ACTIONS(3), }, [345] = { - [ts_builtin_sym_end] = ACTIONS(1462), - [sym_identifier] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_macro_rules_BANG] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1462), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_u8] = ACTIONS(1464), - [anon_sym_i8] = ACTIONS(1464), - [anon_sym_u16] = ACTIONS(1464), - [anon_sym_i16] = ACTIONS(1464), - [anon_sym_u32] = ACTIONS(1464), - [anon_sym_i32] = ACTIONS(1464), - [anon_sym_u64] = ACTIONS(1464), - [anon_sym_i64] = ACTIONS(1464), - [anon_sym_u128] = ACTIONS(1464), - [anon_sym_i128] = ACTIONS(1464), - [anon_sym_isize] = ACTIONS(1464), - [anon_sym_usize] = ACTIONS(1464), - [anon_sym_f32] = ACTIONS(1464), - [anon_sym_f64] = ACTIONS(1464), - [anon_sym_bool] = ACTIONS(1464), - [anon_sym_str] = ACTIONS(1464), - [anon_sym_char] = ACTIONS(1464), - [anon_sym_SQUOTE] = ACTIONS(1464), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_fn] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_impl] = ACTIONS(1464), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_loop] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_mod] = ACTIONS(1464), - [anon_sym_pub] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_trait] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_unsafe] = ACTIONS(1464), - [anon_sym_use] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym_LT] = ACTIONS(1462), - [anon_sym_COLON_COLON] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_DOT_DOT] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_PIPE] = ACTIONS(1462), - [anon_sym_yield] = ACTIONS(1464), - [anon_sym_move] = ACTIONS(1464), - [sym_integer_literal] = ACTIONS(1462), - [aux_sym_string_literal_token1] = ACTIONS(1462), - [sym_char_literal] = ACTIONS(1462), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1464), - [sym_super] = ACTIONS(1464), - [sym_crate] = ACTIONS(1464), - [sym_metavariable] = ACTIONS(1462), - [sym_raw_string_literal] = ACTIONS(1462), - [sym_float_literal] = ACTIONS(1462), + [ts_builtin_sym_end] = ACTIONS(1444), + [sym_identifier] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_macro_rules_BANG] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_u8] = ACTIONS(1446), + [anon_sym_i8] = ACTIONS(1446), + [anon_sym_u16] = ACTIONS(1446), + [anon_sym_i16] = ACTIONS(1446), + [anon_sym_u32] = ACTIONS(1446), + [anon_sym_i32] = ACTIONS(1446), + [anon_sym_u64] = ACTIONS(1446), + [anon_sym_i64] = ACTIONS(1446), + [anon_sym_u128] = ACTIONS(1446), + [anon_sym_i128] = ACTIONS(1446), + [anon_sym_isize] = ACTIONS(1446), + [anon_sym_usize] = ACTIONS(1446), + [anon_sym_f32] = ACTIONS(1446), + [anon_sym_f64] = ACTIONS(1446), + [anon_sym_bool] = ACTIONS(1446), + [anon_sym_str] = ACTIONS(1446), + [anon_sym_char] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_async] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_impl] = ACTIONS(1446), + [anon_sym_let] = ACTIONS(1446), + [anon_sym_loop] = ACTIONS(1446), + [anon_sym_match] = ACTIONS(1446), + [anon_sym_mod] = ACTIONS(1446), + [anon_sym_pub] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_trait] = ACTIONS(1446), + [anon_sym_type] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_unsafe] = ACTIONS(1446), + [anon_sym_use] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_COLON_COLON] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_DOT_DOT] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1446), + [anon_sym_move] = ACTIONS(1446), + [sym_integer_literal] = ACTIONS(1444), + [aux_sym_string_literal_token1] = ACTIONS(1444), + [sym_char_literal] = ACTIONS(1444), + [anon_sym_true] = ACTIONS(1446), + [anon_sym_false] = ACTIONS(1446), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1446), + [sym_super] = ACTIONS(1446), + [sym_crate] = ACTIONS(1446), + [sym_metavariable] = ACTIONS(1444), + [sym_raw_string_literal] = ACTIONS(1444), + [sym_float_literal] = ACTIONS(1444), [sym_block_comment] = ACTIONS(3), }, [346] = { - [ts_builtin_sym_end] = ACTIONS(1466), - [sym_identifier] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_macro_rules_BANG] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1466), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_u8] = ACTIONS(1468), - [anon_sym_i8] = ACTIONS(1468), - [anon_sym_u16] = ACTIONS(1468), - [anon_sym_i16] = ACTIONS(1468), - [anon_sym_u32] = ACTIONS(1468), - [anon_sym_i32] = ACTIONS(1468), - [anon_sym_u64] = ACTIONS(1468), - [anon_sym_i64] = ACTIONS(1468), - [anon_sym_u128] = ACTIONS(1468), - [anon_sym_i128] = ACTIONS(1468), - [anon_sym_isize] = ACTIONS(1468), - [anon_sym_usize] = ACTIONS(1468), - [anon_sym_f32] = ACTIONS(1468), - [anon_sym_f64] = ACTIONS(1468), - [anon_sym_bool] = ACTIONS(1468), - [anon_sym_str] = ACTIONS(1468), - [anon_sym_char] = ACTIONS(1468), - [anon_sym_SQUOTE] = ACTIONS(1468), - [anon_sym_async] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_fn] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_impl] = ACTIONS(1468), - [anon_sym_let] = ACTIONS(1468), - [anon_sym_loop] = ACTIONS(1468), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_mod] = ACTIONS(1468), - [anon_sym_pub] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_trait] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1468), - [anon_sym_use] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_COLON_COLON] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_DOT_DOT] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_PIPE] = ACTIONS(1466), - [anon_sym_yield] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [sym_integer_literal] = ACTIONS(1466), - [aux_sym_string_literal_token1] = ACTIONS(1466), - [sym_char_literal] = ACTIONS(1466), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1468), - [sym_super] = ACTIONS(1468), - [sym_crate] = ACTIONS(1468), - [sym_metavariable] = ACTIONS(1466), - [sym_raw_string_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1466), + [ts_builtin_sym_end] = ACTIONS(1448), + [sym_identifier] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_macro_rules_BANG] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_u8] = ACTIONS(1450), + [anon_sym_i8] = ACTIONS(1450), + [anon_sym_u16] = ACTIONS(1450), + [anon_sym_i16] = ACTIONS(1450), + [anon_sym_u32] = ACTIONS(1450), + [anon_sym_i32] = ACTIONS(1450), + [anon_sym_u64] = ACTIONS(1450), + [anon_sym_i64] = ACTIONS(1450), + [anon_sym_u128] = ACTIONS(1450), + [anon_sym_i128] = ACTIONS(1450), + [anon_sym_isize] = ACTIONS(1450), + [anon_sym_usize] = ACTIONS(1450), + [anon_sym_f32] = ACTIONS(1450), + [anon_sym_f64] = ACTIONS(1450), + [anon_sym_bool] = ACTIONS(1450), + [anon_sym_str] = ACTIONS(1450), + [anon_sym_char] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_async] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_impl] = ACTIONS(1450), + [anon_sym_let] = ACTIONS(1450), + [anon_sym_loop] = ACTIONS(1450), + [anon_sym_match] = ACTIONS(1450), + [anon_sym_mod] = ACTIONS(1450), + [anon_sym_pub] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_trait] = ACTIONS(1450), + [anon_sym_type] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_unsafe] = ACTIONS(1450), + [anon_sym_use] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_COLON_COLON] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_yield] = ACTIONS(1450), + [anon_sym_move] = ACTIONS(1450), + [sym_integer_literal] = ACTIONS(1448), + [aux_sym_string_literal_token1] = ACTIONS(1448), + [sym_char_literal] = ACTIONS(1448), + [anon_sym_true] = ACTIONS(1450), + [anon_sym_false] = ACTIONS(1450), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1450), + [sym_super] = ACTIONS(1450), + [sym_crate] = ACTIONS(1450), + [sym_metavariable] = ACTIONS(1448), + [sym_raw_string_literal] = ACTIONS(1448), + [sym_float_literal] = ACTIONS(1448), [sym_block_comment] = ACTIONS(3), }, [347] = { - [ts_builtin_sym_end] = ACTIONS(1470), - [sym_identifier] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_macro_rules_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_u8] = ACTIONS(1472), - [anon_sym_i8] = ACTIONS(1472), - [anon_sym_u16] = ACTIONS(1472), - [anon_sym_i16] = ACTIONS(1472), - [anon_sym_u32] = ACTIONS(1472), - [anon_sym_i32] = ACTIONS(1472), - [anon_sym_u64] = ACTIONS(1472), - [anon_sym_i64] = ACTIONS(1472), - [anon_sym_u128] = ACTIONS(1472), - [anon_sym_i128] = ACTIONS(1472), - [anon_sym_isize] = ACTIONS(1472), - [anon_sym_usize] = ACTIONS(1472), - [anon_sym_f32] = ACTIONS(1472), - [anon_sym_f64] = ACTIONS(1472), - [anon_sym_bool] = ACTIONS(1472), - [anon_sym_str] = ACTIONS(1472), - [anon_sym_char] = ACTIONS(1472), - [anon_sym_SQUOTE] = ACTIONS(1472), - [anon_sym_async] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_fn] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_impl] = ACTIONS(1472), - [anon_sym_let] = ACTIONS(1472), - [anon_sym_loop] = ACTIONS(1472), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_mod] = ACTIONS(1472), - [anon_sym_pub] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_trait] = ACTIONS(1472), - [anon_sym_type] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_use] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_COLON_COLON] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_DOT_DOT] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_PIPE] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_move] = ACTIONS(1472), - [sym_integer_literal] = ACTIONS(1470), - [aux_sym_string_literal_token1] = ACTIONS(1470), - [sym_char_literal] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1472), - [sym_super] = ACTIONS(1472), - [sym_crate] = ACTIONS(1472), - [sym_metavariable] = ACTIONS(1470), - [sym_raw_string_literal] = ACTIONS(1470), - [sym_float_literal] = ACTIONS(1470), + [ts_builtin_sym_end] = ACTIONS(1452), + [sym_identifier] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_macro_rules_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_u8] = ACTIONS(1454), + [anon_sym_i8] = ACTIONS(1454), + [anon_sym_u16] = ACTIONS(1454), + [anon_sym_i16] = ACTIONS(1454), + [anon_sym_u32] = ACTIONS(1454), + [anon_sym_i32] = ACTIONS(1454), + [anon_sym_u64] = ACTIONS(1454), + [anon_sym_i64] = ACTIONS(1454), + [anon_sym_u128] = ACTIONS(1454), + [anon_sym_i128] = ACTIONS(1454), + [anon_sym_isize] = ACTIONS(1454), + [anon_sym_usize] = ACTIONS(1454), + [anon_sym_f32] = ACTIONS(1454), + [anon_sym_f64] = ACTIONS(1454), + [anon_sym_bool] = ACTIONS(1454), + [anon_sym_str] = ACTIONS(1454), + [anon_sym_char] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_async] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_fn] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_impl] = ACTIONS(1454), + [anon_sym_let] = ACTIONS(1454), + [anon_sym_loop] = ACTIONS(1454), + [anon_sym_match] = ACTIONS(1454), + [anon_sym_mod] = ACTIONS(1454), + [anon_sym_pub] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_trait] = ACTIONS(1454), + [anon_sym_type] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_unsafe] = ACTIONS(1454), + [anon_sym_use] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_POUND] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1452), + [anon_sym_COLON_COLON] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_DOT_DOT] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_yield] = ACTIONS(1454), + [anon_sym_move] = ACTIONS(1454), + [sym_integer_literal] = ACTIONS(1452), + [aux_sym_string_literal_token1] = ACTIONS(1452), + [sym_char_literal] = ACTIONS(1452), + [anon_sym_true] = ACTIONS(1454), + [anon_sym_false] = ACTIONS(1454), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1454), + [sym_super] = ACTIONS(1454), + [sym_crate] = ACTIONS(1454), + [sym_metavariable] = ACTIONS(1452), + [sym_raw_string_literal] = ACTIONS(1452), + [sym_float_literal] = ACTIONS(1452), [sym_block_comment] = ACTIONS(3), }, [348] = { - [ts_builtin_sym_end] = ACTIONS(1474), - [sym_identifier] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_macro_rules_BANG] = ACTIONS(1474), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1474), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_u8] = ACTIONS(1476), - [anon_sym_i8] = ACTIONS(1476), - [anon_sym_u16] = ACTIONS(1476), - [anon_sym_i16] = ACTIONS(1476), - [anon_sym_u32] = ACTIONS(1476), - [anon_sym_i32] = ACTIONS(1476), - [anon_sym_u64] = ACTIONS(1476), - [anon_sym_i64] = ACTIONS(1476), - [anon_sym_u128] = ACTIONS(1476), - [anon_sym_i128] = ACTIONS(1476), - [anon_sym_isize] = ACTIONS(1476), - [anon_sym_usize] = ACTIONS(1476), - [anon_sym_f32] = ACTIONS(1476), - [anon_sym_f64] = ACTIONS(1476), - [anon_sym_bool] = ACTIONS(1476), - [anon_sym_str] = ACTIONS(1476), - [anon_sym_char] = ACTIONS(1476), - [anon_sym_SQUOTE] = ACTIONS(1476), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_fn] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_impl] = ACTIONS(1476), - [anon_sym_let] = ACTIONS(1476), - [anon_sym_loop] = ACTIONS(1476), - [anon_sym_match] = ACTIONS(1476), - [anon_sym_mod] = ACTIONS(1476), - [anon_sym_pub] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_trait] = ACTIONS(1476), - [anon_sym_type] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1476), - [anon_sym_use] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1474), - [anon_sym_COLON_COLON] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1474), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_yield] = ACTIONS(1476), - [anon_sym_move] = ACTIONS(1476), - [sym_integer_literal] = ACTIONS(1474), - [aux_sym_string_literal_token1] = ACTIONS(1474), - [sym_char_literal] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1476), - [anon_sym_false] = ACTIONS(1476), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1476), - [sym_super] = ACTIONS(1476), - [sym_crate] = ACTIONS(1476), - [sym_metavariable] = ACTIONS(1474), - [sym_raw_string_literal] = ACTIONS(1474), - [sym_float_literal] = ACTIONS(1474), + [ts_builtin_sym_end] = ACTIONS(1456), + [sym_identifier] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_macro_rules_BANG] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_u8] = ACTIONS(1458), + [anon_sym_i8] = ACTIONS(1458), + [anon_sym_u16] = ACTIONS(1458), + [anon_sym_i16] = ACTIONS(1458), + [anon_sym_u32] = ACTIONS(1458), + [anon_sym_i32] = ACTIONS(1458), + [anon_sym_u64] = ACTIONS(1458), + [anon_sym_i64] = ACTIONS(1458), + [anon_sym_u128] = ACTIONS(1458), + [anon_sym_i128] = ACTIONS(1458), + [anon_sym_isize] = ACTIONS(1458), + [anon_sym_usize] = ACTIONS(1458), + [anon_sym_f32] = ACTIONS(1458), + [anon_sym_f64] = ACTIONS(1458), + [anon_sym_bool] = ACTIONS(1458), + [anon_sym_str] = ACTIONS(1458), + [anon_sym_char] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_async] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_fn] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_impl] = ACTIONS(1458), + [anon_sym_let] = ACTIONS(1458), + [anon_sym_loop] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1458), + [anon_sym_mod] = ACTIONS(1458), + [anon_sym_pub] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_trait] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_unsafe] = ACTIONS(1458), + [anon_sym_use] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_POUND] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_COLON_COLON] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_DOT_DOT] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1456), + [anon_sym_yield] = ACTIONS(1458), + [anon_sym_move] = ACTIONS(1458), + [sym_integer_literal] = ACTIONS(1456), + [aux_sym_string_literal_token1] = ACTIONS(1456), + [sym_char_literal] = ACTIONS(1456), + [anon_sym_true] = ACTIONS(1458), + [anon_sym_false] = ACTIONS(1458), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1458), + [sym_super] = ACTIONS(1458), + [sym_crate] = ACTIONS(1458), + [sym_metavariable] = ACTIONS(1456), + [sym_raw_string_literal] = ACTIONS(1456), + [sym_float_literal] = ACTIONS(1456), [sym_block_comment] = ACTIONS(3), }, [349] = { - [ts_builtin_sym_end] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_macro_rules_BANG] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_u8] = ACTIONS(1480), - [anon_sym_i8] = ACTIONS(1480), - [anon_sym_u16] = ACTIONS(1480), - [anon_sym_i16] = ACTIONS(1480), - [anon_sym_u32] = ACTIONS(1480), - [anon_sym_i32] = ACTIONS(1480), - [anon_sym_u64] = ACTIONS(1480), - [anon_sym_i64] = ACTIONS(1480), - [anon_sym_u128] = ACTIONS(1480), - [anon_sym_i128] = ACTIONS(1480), - [anon_sym_isize] = ACTIONS(1480), - [anon_sym_usize] = ACTIONS(1480), - [anon_sym_f32] = ACTIONS(1480), - [anon_sym_f64] = ACTIONS(1480), - [anon_sym_bool] = ACTIONS(1480), - [anon_sym_str] = ACTIONS(1480), - [anon_sym_char] = ACTIONS(1480), - [anon_sym_SQUOTE] = ACTIONS(1480), - [anon_sym_async] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_fn] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_impl] = ACTIONS(1480), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_loop] = ACTIONS(1480), - [anon_sym_match] = ACTIONS(1480), - [anon_sym_mod] = ACTIONS(1480), - [anon_sym_pub] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_trait] = ACTIONS(1480), - [anon_sym_type] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_unsafe] = ACTIONS(1480), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_COLON_COLON] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_yield] = ACTIONS(1480), - [anon_sym_move] = ACTIONS(1480), - [sym_integer_literal] = ACTIONS(1478), - [aux_sym_string_literal_token1] = ACTIONS(1478), - [sym_char_literal] = ACTIONS(1478), - [anon_sym_true] = ACTIONS(1480), - [anon_sym_false] = ACTIONS(1480), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1480), - [sym_super] = ACTIONS(1480), - [sym_crate] = ACTIONS(1480), - [sym_metavariable] = ACTIONS(1478), - [sym_raw_string_literal] = ACTIONS(1478), - [sym_float_literal] = ACTIONS(1478), + [ts_builtin_sym_end] = ACTIONS(1460), + [sym_identifier] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym_macro_rules_BANG] = ACTIONS(1460), + [anon_sym_LPAREN] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym_LBRACK] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_u8] = ACTIONS(1462), + [anon_sym_i8] = ACTIONS(1462), + [anon_sym_u16] = ACTIONS(1462), + [anon_sym_i16] = ACTIONS(1462), + [anon_sym_u32] = ACTIONS(1462), + [anon_sym_i32] = ACTIONS(1462), + [anon_sym_u64] = ACTIONS(1462), + [anon_sym_i64] = ACTIONS(1462), + [anon_sym_u128] = ACTIONS(1462), + [anon_sym_i128] = ACTIONS(1462), + [anon_sym_isize] = ACTIONS(1462), + [anon_sym_usize] = ACTIONS(1462), + [anon_sym_f32] = ACTIONS(1462), + [anon_sym_f64] = ACTIONS(1462), + [anon_sym_bool] = ACTIONS(1462), + [anon_sym_str] = ACTIONS(1462), + [anon_sym_char] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_fn] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_impl] = ACTIONS(1462), + [anon_sym_let] = ACTIONS(1462), + [anon_sym_loop] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1462), + [anon_sym_mod] = ACTIONS(1462), + [anon_sym_pub] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_trait] = ACTIONS(1462), + [anon_sym_type] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_unsafe] = ACTIONS(1462), + [anon_sym_use] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_POUND] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_DOT_DOT] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_yield] = ACTIONS(1462), + [anon_sym_move] = ACTIONS(1462), + [sym_integer_literal] = ACTIONS(1460), + [aux_sym_string_literal_token1] = ACTIONS(1460), + [sym_char_literal] = ACTIONS(1460), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1462), + [sym_super] = ACTIONS(1462), + [sym_crate] = ACTIONS(1462), + [sym_metavariable] = ACTIONS(1460), + [sym_raw_string_literal] = ACTIONS(1460), + [sym_float_literal] = ACTIONS(1460), [sym_block_comment] = ACTIONS(3), }, [350] = { - [ts_builtin_sym_end] = ACTIONS(1482), - [sym_identifier] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_macro_rules_BANG] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_LBRACK] = ACTIONS(1482), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_u8] = ACTIONS(1484), - [anon_sym_i8] = ACTIONS(1484), - [anon_sym_u16] = ACTIONS(1484), - [anon_sym_i16] = ACTIONS(1484), - [anon_sym_u32] = ACTIONS(1484), - [anon_sym_i32] = ACTIONS(1484), - [anon_sym_u64] = ACTIONS(1484), - [anon_sym_i64] = ACTIONS(1484), - [anon_sym_u128] = ACTIONS(1484), - [anon_sym_i128] = ACTIONS(1484), - [anon_sym_isize] = ACTIONS(1484), - [anon_sym_usize] = ACTIONS(1484), - [anon_sym_f32] = ACTIONS(1484), - [anon_sym_f64] = ACTIONS(1484), - [anon_sym_bool] = ACTIONS(1484), - [anon_sym_str] = ACTIONS(1484), - [anon_sym_char] = ACTIONS(1484), - [anon_sym_SQUOTE] = ACTIONS(1484), - [anon_sym_async] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_fn] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_impl] = ACTIONS(1484), - [anon_sym_let] = ACTIONS(1484), - [anon_sym_loop] = ACTIONS(1484), - [anon_sym_match] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1484), - [anon_sym_pub] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_trait] = ACTIONS(1484), - [anon_sym_type] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_unsafe] = ACTIONS(1484), - [anon_sym_use] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym_LT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_yield] = ACTIONS(1484), - [anon_sym_move] = ACTIONS(1484), - [sym_integer_literal] = ACTIONS(1482), - [aux_sym_string_literal_token1] = ACTIONS(1482), - [sym_char_literal] = ACTIONS(1482), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1484), - [sym_super] = ACTIONS(1484), - [sym_crate] = ACTIONS(1484), - [sym_metavariable] = ACTIONS(1482), - [sym_raw_string_literal] = ACTIONS(1482), - [sym_float_literal] = ACTIONS(1482), + [ts_builtin_sym_end] = ACTIONS(1464), + [sym_identifier] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_macro_rules_BANG] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_u8] = ACTIONS(1466), + [anon_sym_i8] = ACTIONS(1466), + [anon_sym_u16] = ACTIONS(1466), + [anon_sym_i16] = ACTIONS(1466), + [anon_sym_u32] = ACTIONS(1466), + [anon_sym_i32] = ACTIONS(1466), + [anon_sym_u64] = ACTIONS(1466), + [anon_sym_i64] = ACTIONS(1466), + [anon_sym_u128] = ACTIONS(1466), + [anon_sym_i128] = ACTIONS(1466), + [anon_sym_isize] = ACTIONS(1466), + [anon_sym_usize] = ACTIONS(1466), + [anon_sym_f32] = ACTIONS(1466), + [anon_sym_f64] = ACTIONS(1466), + [anon_sym_bool] = ACTIONS(1466), + [anon_sym_str] = ACTIONS(1466), + [anon_sym_char] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_async] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_fn] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_impl] = ACTIONS(1466), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_loop] = ACTIONS(1466), + [anon_sym_match] = ACTIONS(1466), + [anon_sym_mod] = ACTIONS(1466), + [anon_sym_pub] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_trait] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_unsafe] = ACTIONS(1466), + [anon_sym_use] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1464), + [anon_sym_COLON_COLON] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_DOT_DOT] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(1464), + [anon_sym_yield] = ACTIONS(1466), + [anon_sym_move] = ACTIONS(1466), + [sym_integer_literal] = ACTIONS(1464), + [aux_sym_string_literal_token1] = ACTIONS(1464), + [sym_char_literal] = ACTIONS(1464), + [anon_sym_true] = ACTIONS(1466), + [anon_sym_false] = ACTIONS(1466), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1466), + [sym_super] = ACTIONS(1466), + [sym_crate] = ACTIONS(1466), + [sym_metavariable] = ACTIONS(1464), + [sym_raw_string_literal] = ACTIONS(1464), + [sym_float_literal] = ACTIONS(1464), [sym_block_comment] = ACTIONS(3), }, [351] = { - [ts_builtin_sym_end] = ACTIONS(1486), - [sym_identifier] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_macro_rules_BANG] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_u8] = ACTIONS(1488), - [anon_sym_i8] = ACTIONS(1488), - [anon_sym_u16] = ACTIONS(1488), - [anon_sym_i16] = ACTIONS(1488), - [anon_sym_u32] = ACTIONS(1488), - [anon_sym_i32] = ACTIONS(1488), - [anon_sym_u64] = ACTIONS(1488), - [anon_sym_i64] = ACTIONS(1488), - [anon_sym_u128] = ACTIONS(1488), - [anon_sym_i128] = ACTIONS(1488), - [anon_sym_isize] = ACTIONS(1488), - [anon_sym_usize] = ACTIONS(1488), - [anon_sym_f32] = ACTIONS(1488), - [anon_sym_f64] = ACTIONS(1488), - [anon_sym_bool] = ACTIONS(1488), - [anon_sym_str] = ACTIONS(1488), - [anon_sym_char] = ACTIONS(1488), - [anon_sym_SQUOTE] = ACTIONS(1488), - [anon_sym_async] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_fn] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_impl] = ACTIONS(1488), - [anon_sym_let] = ACTIONS(1488), - [anon_sym_loop] = ACTIONS(1488), - [anon_sym_match] = ACTIONS(1488), - [anon_sym_mod] = ACTIONS(1488), - [anon_sym_pub] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_trait] = ACTIONS(1488), - [anon_sym_type] = ACTIONS(1488), - [anon_sym_union] = ACTIONS(1488), - [anon_sym_unsafe] = ACTIONS(1488), - [anon_sym_use] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_POUND] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym_LT] = ACTIONS(1486), - [anon_sym_COLON_COLON] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_yield] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1486), - [aux_sym_string_literal_token1] = ACTIONS(1486), - [sym_char_literal] = ACTIONS(1486), - [anon_sym_true] = ACTIONS(1488), - [anon_sym_false] = ACTIONS(1488), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1488), - [sym_super] = ACTIONS(1488), - [sym_crate] = ACTIONS(1488), - [sym_metavariable] = ACTIONS(1486), - [sym_raw_string_literal] = ACTIONS(1486), - [sym_float_literal] = ACTIONS(1486), + [ts_builtin_sym_end] = ACTIONS(1468), + [sym_identifier] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_macro_rules_BANG] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_u8] = ACTIONS(1470), + [anon_sym_i8] = ACTIONS(1470), + [anon_sym_u16] = ACTIONS(1470), + [anon_sym_i16] = ACTIONS(1470), + [anon_sym_u32] = ACTIONS(1470), + [anon_sym_i32] = ACTIONS(1470), + [anon_sym_u64] = ACTIONS(1470), + [anon_sym_i64] = ACTIONS(1470), + [anon_sym_u128] = ACTIONS(1470), + [anon_sym_i128] = ACTIONS(1470), + [anon_sym_isize] = ACTIONS(1470), + [anon_sym_usize] = ACTIONS(1470), + [anon_sym_f32] = ACTIONS(1470), + [anon_sym_f64] = ACTIONS(1470), + [anon_sym_bool] = ACTIONS(1470), + [anon_sym_str] = ACTIONS(1470), + [anon_sym_char] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_async] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_fn] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_impl] = ACTIONS(1470), + [anon_sym_let] = ACTIONS(1470), + [anon_sym_loop] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1470), + [anon_sym_mod] = ACTIONS(1470), + [anon_sym_pub] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_trait] = ACTIONS(1470), + [anon_sym_type] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_unsafe] = ACTIONS(1470), + [anon_sym_use] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_POUND] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1468), + [anon_sym_COLON_COLON] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_DOT_DOT] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_yield] = ACTIONS(1470), + [anon_sym_move] = ACTIONS(1470), + [sym_integer_literal] = ACTIONS(1468), + [aux_sym_string_literal_token1] = ACTIONS(1468), + [sym_char_literal] = ACTIONS(1468), + [anon_sym_true] = ACTIONS(1470), + [anon_sym_false] = ACTIONS(1470), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1470), + [sym_super] = ACTIONS(1470), + [sym_crate] = ACTIONS(1470), + [sym_metavariable] = ACTIONS(1468), + [sym_raw_string_literal] = ACTIONS(1468), + [sym_float_literal] = ACTIONS(1468), [sym_block_comment] = ACTIONS(3), }, [352] = { - [ts_builtin_sym_end] = ACTIONS(1490), - [sym_identifier] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym_macro_rules_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_RBRACE] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_u8] = ACTIONS(1492), - [anon_sym_i8] = ACTIONS(1492), - [anon_sym_u16] = ACTIONS(1492), - [anon_sym_i16] = ACTIONS(1492), - [anon_sym_u32] = ACTIONS(1492), - [anon_sym_i32] = ACTIONS(1492), - [anon_sym_u64] = ACTIONS(1492), - [anon_sym_i64] = ACTIONS(1492), - [anon_sym_u128] = ACTIONS(1492), - [anon_sym_i128] = ACTIONS(1492), - [anon_sym_isize] = ACTIONS(1492), - [anon_sym_usize] = ACTIONS(1492), - [anon_sym_f32] = ACTIONS(1492), - [anon_sym_f64] = ACTIONS(1492), - [anon_sym_bool] = ACTIONS(1492), - [anon_sym_str] = ACTIONS(1492), - [anon_sym_char] = ACTIONS(1492), - [anon_sym_SQUOTE] = ACTIONS(1492), - [anon_sym_async] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_fn] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_impl] = ACTIONS(1492), - [anon_sym_let] = ACTIONS(1492), - [anon_sym_loop] = ACTIONS(1492), - [anon_sym_match] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1492), - [anon_sym_pub] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_trait] = ACTIONS(1492), - [anon_sym_type] = ACTIONS(1492), - [anon_sym_union] = ACTIONS(1492), - [anon_sym_unsafe] = ACTIONS(1492), - [anon_sym_use] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_COLON_COLON] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_yield] = ACTIONS(1492), - [anon_sym_move] = ACTIONS(1492), - [sym_integer_literal] = ACTIONS(1490), - [aux_sym_string_literal_token1] = ACTIONS(1490), - [sym_char_literal] = ACTIONS(1490), - [anon_sym_true] = ACTIONS(1492), - [anon_sym_false] = ACTIONS(1492), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1492), - [sym_super] = ACTIONS(1492), - [sym_crate] = ACTIONS(1492), - [sym_metavariable] = ACTIONS(1490), - [sym_raw_string_literal] = ACTIONS(1490), - [sym_float_literal] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(1472), + [sym_identifier] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_macro_rules_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_u8] = ACTIONS(1474), + [anon_sym_i8] = ACTIONS(1474), + [anon_sym_u16] = ACTIONS(1474), + [anon_sym_i16] = ACTIONS(1474), + [anon_sym_u32] = ACTIONS(1474), + [anon_sym_i32] = ACTIONS(1474), + [anon_sym_u64] = ACTIONS(1474), + [anon_sym_i64] = ACTIONS(1474), + [anon_sym_u128] = ACTIONS(1474), + [anon_sym_i128] = ACTIONS(1474), + [anon_sym_isize] = ACTIONS(1474), + [anon_sym_usize] = ACTIONS(1474), + [anon_sym_f32] = ACTIONS(1474), + [anon_sym_f64] = ACTIONS(1474), + [anon_sym_bool] = ACTIONS(1474), + [anon_sym_str] = ACTIONS(1474), + [anon_sym_char] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_fn] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_impl] = ACTIONS(1474), + [anon_sym_let] = ACTIONS(1474), + [anon_sym_loop] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1474), + [anon_sym_mod] = ACTIONS(1474), + [anon_sym_pub] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_trait] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_unsafe] = ACTIONS(1474), + [anon_sym_use] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1472), + [anon_sym_COLON_COLON] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_DOT_DOT] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_move] = ACTIONS(1474), + [sym_integer_literal] = ACTIONS(1472), + [aux_sym_string_literal_token1] = ACTIONS(1472), + [sym_char_literal] = ACTIONS(1472), + [anon_sym_true] = ACTIONS(1474), + [anon_sym_false] = ACTIONS(1474), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1474), + [sym_super] = ACTIONS(1474), + [sym_crate] = ACTIONS(1474), + [sym_metavariable] = ACTIONS(1472), + [sym_raw_string_literal] = ACTIONS(1472), + [sym_float_literal] = ACTIONS(1472), [sym_block_comment] = ACTIONS(3), }, [353] = { - [ts_builtin_sym_end] = ACTIONS(1494), - [sym_identifier] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_macro_rules_BANG] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_u8] = ACTIONS(1496), - [anon_sym_i8] = ACTIONS(1496), - [anon_sym_u16] = ACTIONS(1496), - [anon_sym_i16] = ACTIONS(1496), - [anon_sym_u32] = ACTIONS(1496), - [anon_sym_i32] = ACTIONS(1496), - [anon_sym_u64] = ACTIONS(1496), - [anon_sym_i64] = ACTIONS(1496), - [anon_sym_u128] = ACTIONS(1496), - [anon_sym_i128] = ACTIONS(1496), - [anon_sym_isize] = ACTIONS(1496), - [anon_sym_usize] = ACTIONS(1496), - [anon_sym_f32] = ACTIONS(1496), - [anon_sym_f64] = ACTIONS(1496), - [anon_sym_bool] = ACTIONS(1496), - [anon_sym_str] = ACTIONS(1496), - [anon_sym_char] = ACTIONS(1496), - [anon_sym_SQUOTE] = ACTIONS(1496), - [anon_sym_async] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_fn] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_impl] = ACTIONS(1496), - [anon_sym_let] = ACTIONS(1496), - [anon_sym_loop] = ACTIONS(1496), - [anon_sym_match] = ACTIONS(1496), - [anon_sym_mod] = ACTIONS(1496), - [anon_sym_pub] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_trait] = ACTIONS(1496), - [anon_sym_type] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_unsafe] = ACTIONS(1496), - [anon_sym_use] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym_LT] = ACTIONS(1494), - [anon_sym_COLON_COLON] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_yield] = ACTIONS(1496), - [anon_sym_move] = ACTIONS(1496), - [sym_integer_literal] = ACTIONS(1494), - [aux_sym_string_literal_token1] = ACTIONS(1494), - [sym_char_literal] = ACTIONS(1494), - [anon_sym_true] = ACTIONS(1496), - [anon_sym_false] = ACTIONS(1496), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1496), - [sym_super] = ACTIONS(1496), - [sym_crate] = ACTIONS(1496), - [sym_metavariable] = ACTIONS(1494), - [sym_raw_string_literal] = ACTIONS(1494), - [sym_float_literal] = ACTIONS(1494), + [ts_builtin_sym_end] = ACTIONS(1476), + [sym_identifier] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_macro_rules_BANG] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_u8] = ACTIONS(1478), + [anon_sym_i8] = ACTIONS(1478), + [anon_sym_u16] = ACTIONS(1478), + [anon_sym_i16] = ACTIONS(1478), + [anon_sym_u32] = ACTIONS(1478), + [anon_sym_i32] = ACTIONS(1478), + [anon_sym_u64] = ACTIONS(1478), + [anon_sym_i64] = ACTIONS(1478), + [anon_sym_u128] = ACTIONS(1478), + [anon_sym_i128] = ACTIONS(1478), + [anon_sym_isize] = ACTIONS(1478), + [anon_sym_usize] = ACTIONS(1478), + [anon_sym_f32] = ACTIONS(1478), + [anon_sym_f64] = ACTIONS(1478), + [anon_sym_bool] = ACTIONS(1478), + [anon_sym_str] = ACTIONS(1478), + [anon_sym_char] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_default] = ACTIONS(1478), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_fn] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_impl] = ACTIONS(1478), + [anon_sym_let] = ACTIONS(1478), + [anon_sym_loop] = ACTIONS(1478), + [anon_sym_match] = ACTIONS(1478), + [anon_sym_mod] = ACTIONS(1478), + [anon_sym_pub] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_struct] = ACTIONS(1478), + [anon_sym_trait] = ACTIONS(1478), + [anon_sym_type] = ACTIONS(1478), + [anon_sym_union] = ACTIONS(1478), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_use] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_POUND] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_COLON_COLON] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_yield] = ACTIONS(1478), + [anon_sym_move] = ACTIONS(1478), + [sym_integer_literal] = ACTIONS(1476), + [aux_sym_string_literal_token1] = ACTIONS(1476), + [sym_char_literal] = ACTIONS(1476), + [anon_sym_true] = ACTIONS(1478), + [anon_sym_false] = ACTIONS(1478), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1478), + [sym_super] = ACTIONS(1478), + [sym_crate] = ACTIONS(1478), + [sym_metavariable] = ACTIONS(1476), + [sym_raw_string_literal] = ACTIONS(1476), + [sym_float_literal] = ACTIONS(1476), [sym_block_comment] = ACTIONS(3), }, [354] = { - [ts_builtin_sym_end] = ACTIONS(1498), - [sym_identifier] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_macro_rules_BANG] = ACTIONS(1498), - [anon_sym_LPAREN] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_RBRACE] = ACTIONS(1498), - [anon_sym_LBRACK] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_u8] = ACTIONS(1500), - [anon_sym_i8] = ACTIONS(1500), - [anon_sym_u16] = ACTIONS(1500), - [anon_sym_i16] = ACTIONS(1500), - [anon_sym_u32] = ACTIONS(1500), - [anon_sym_i32] = ACTIONS(1500), - [anon_sym_u64] = ACTIONS(1500), - [anon_sym_i64] = ACTIONS(1500), - [anon_sym_u128] = ACTIONS(1500), - [anon_sym_i128] = ACTIONS(1500), - [anon_sym_isize] = ACTIONS(1500), - [anon_sym_usize] = ACTIONS(1500), - [anon_sym_f32] = ACTIONS(1500), - [anon_sym_f64] = ACTIONS(1500), - [anon_sym_bool] = ACTIONS(1500), - [anon_sym_str] = ACTIONS(1500), - [anon_sym_char] = ACTIONS(1500), - [anon_sym_SQUOTE] = ACTIONS(1500), - [anon_sym_async] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_fn] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_impl] = ACTIONS(1500), - [anon_sym_let] = ACTIONS(1500), - [anon_sym_loop] = ACTIONS(1500), - [anon_sym_match] = ACTIONS(1500), - [anon_sym_mod] = ACTIONS(1500), - [anon_sym_pub] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_trait] = ACTIONS(1500), - [anon_sym_type] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_unsafe] = ACTIONS(1500), - [anon_sym_use] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(1498), - [anon_sym_COLON_COLON] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1498), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1500), - [anon_sym_move] = ACTIONS(1500), - [sym_integer_literal] = ACTIONS(1498), - [aux_sym_string_literal_token1] = ACTIONS(1498), - [sym_char_literal] = ACTIONS(1498), - [anon_sym_true] = ACTIONS(1500), - [anon_sym_false] = ACTIONS(1500), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1500), - [sym_super] = ACTIONS(1500), - [sym_crate] = ACTIONS(1500), - [sym_metavariable] = ACTIONS(1498), - [sym_raw_string_literal] = ACTIONS(1498), - [sym_float_literal] = ACTIONS(1498), + [ts_builtin_sym_end] = ACTIONS(1480), + [sym_identifier] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_macro_rules_BANG] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_u8] = ACTIONS(1482), + [anon_sym_i8] = ACTIONS(1482), + [anon_sym_u16] = ACTIONS(1482), + [anon_sym_i16] = ACTIONS(1482), + [anon_sym_u32] = ACTIONS(1482), + [anon_sym_i32] = ACTIONS(1482), + [anon_sym_u64] = ACTIONS(1482), + [anon_sym_i64] = ACTIONS(1482), + [anon_sym_u128] = ACTIONS(1482), + [anon_sym_i128] = ACTIONS(1482), + [anon_sym_isize] = ACTIONS(1482), + [anon_sym_usize] = ACTIONS(1482), + [anon_sym_f32] = ACTIONS(1482), + [anon_sym_f64] = ACTIONS(1482), + [anon_sym_bool] = ACTIONS(1482), + [anon_sym_str] = ACTIONS(1482), + [anon_sym_char] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_async] = ACTIONS(1482), + [anon_sym_break] = ACTIONS(1482), + [anon_sym_const] = ACTIONS(1482), + [anon_sym_continue] = ACTIONS(1482), + [anon_sym_default] = ACTIONS(1482), + [anon_sym_enum] = ACTIONS(1482), + [anon_sym_fn] = ACTIONS(1482), + [anon_sym_for] = ACTIONS(1482), + [anon_sym_if] = ACTIONS(1482), + [anon_sym_impl] = ACTIONS(1482), + [anon_sym_let] = ACTIONS(1482), + [anon_sym_loop] = ACTIONS(1482), + [anon_sym_match] = ACTIONS(1482), + [anon_sym_mod] = ACTIONS(1482), + [anon_sym_pub] = ACTIONS(1482), + [anon_sym_return] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1482), + [anon_sym_struct] = ACTIONS(1482), + [anon_sym_trait] = ACTIONS(1482), + [anon_sym_type] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(1482), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_use] = ACTIONS(1482), + [anon_sym_while] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_COLON_COLON] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_yield] = ACTIONS(1482), + [anon_sym_move] = ACTIONS(1482), + [sym_integer_literal] = ACTIONS(1480), + [aux_sym_string_literal_token1] = ACTIONS(1480), + [sym_char_literal] = ACTIONS(1480), + [anon_sym_true] = ACTIONS(1482), + [anon_sym_false] = ACTIONS(1482), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1482), + [sym_super] = ACTIONS(1482), + [sym_crate] = ACTIONS(1482), + [sym_metavariable] = ACTIONS(1480), + [sym_raw_string_literal] = ACTIONS(1480), + [sym_float_literal] = ACTIONS(1480), [sym_block_comment] = ACTIONS(3), }, [355] = { - [ts_builtin_sym_end] = ACTIONS(1502), - [sym_identifier] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym_macro_rules_BANG] = ACTIONS(1502), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_u8] = ACTIONS(1504), - [anon_sym_i8] = ACTIONS(1504), - [anon_sym_u16] = ACTIONS(1504), - [anon_sym_i16] = ACTIONS(1504), - [anon_sym_u32] = ACTIONS(1504), - [anon_sym_i32] = ACTIONS(1504), - [anon_sym_u64] = ACTIONS(1504), - [anon_sym_i64] = ACTIONS(1504), - [anon_sym_u128] = ACTIONS(1504), - [anon_sym_i128] = ACTIONS(1504), - [anon_sym_isize] = ACTIONS(1504), - [anon_sym_usize] = ACTIONS(1504), - [anon_sym_f32] = ACTIONS(1504), - [anon_sym_f64] = ACTIONS(1504), - [anon_sym_bool] = ACTIONS(1504), - [anon_sym_str] = ACTIONS(1504), - [anon_sym_char] = ACTIONS(1504), - [anon_sym_SQUOTE] = ACTIONS(1504), - [anon_sym_async] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_fn] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_impl] = ACTIONS(1504), - [anon_sym_let] = ACTIONS(1504), - [anon_sym_loop] = ACTIONS(1504), - [anon_sym_match] = ACTIONS(1504), - [anon_sym_mod] = ACTIONS(1504), - [anon_sym_pub] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_trait] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_unsafe] = ACTIONS(1504), - [anon_sym_use] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(1502), - [anon_sym_COLON_COLON] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_DOT_DOT] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1502), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_yield] = ACTIONS(1504), - [anon_sym_move] = ACTIONS(1504), - [sym_integer_literal] = ACTIONS(1502), - [aux_sym_string_literal_token1] = ACTIONS(1502), - [sym_char_literal] = ACTIONS(1502), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1504), - [sym_super] = ACTIONS(1504), - [sym_crate] = ACTIONS(1504), - [sym_metavariable] = ACTIONS(1502), - [sym_raw_string_literal] = ACTIONS(1502), - [sym_float_literal] = ACTIONS(1502), + [ts_builtin_sym_end] = ACTIONS(1484), + [sym_identifier] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_macro_rules_BANG] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_u8] = ACTIONS(1486), + [anon_sym_i8] = ACTIONS(1486), + [anon_sym_u16] = ACTIONS(1486), + [anon_sym_i16] = ACTIONS(1486), + [anon_sym_u32] = ACTIONS(1486), + [anon_sym_i32] = ACTIONS(1486), + [anon_sym_u64] = ACTIONS(1486), + [anon_sym_i64] = ACTIONS(1486), + [anon_sym_u128] = ACTIONS(1486), + [anon_sym_i128] = ACTIONS(1486), + [anon_sym_isize] = ACTIONS(1486), + [anon_sym_usize] = ACTIONS(1486), + [anon_sym_f32] = ACTIONS(1486), + [anon_sym_f64] = ACTIONS(1486), + [anon_sym_bool] = ACTIONS(1486), + [anon_sym_str] = ACTIONS(1486), + [anon_sym_char] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_async] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_fn] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_impl] = ACTIONS(1486), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_loop] = ACTIONS(1486), + [anon_sym_match] = ACTIONS(1486), + [anon_sym_mod] = ACTIONS(1486), + [anon_sym_pub] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_trait] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_unsafe] = ACTIONS(1486), + [anon_sym_use] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [anon_sym_POUND] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_COLON_COLON] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_yield] = ACTIONS(1486), + [anon_sym_move] = ACTIONS(1486), + [sym_integer_literal] = ACTIONS(1484), + [aux_sym_string_literal_token1] = ACTIONS(1484), + [sym_char_literal] = ACTIONS(1484), + [anon_sym_true] = ACTIONS(1486), + [anon_sym_false] = ACTIONS(1486), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1486), + [sym_super] = ACTIONS(1486), + [sym_crate] = ACTIONS(1486), + [sym_metavariable] = ACTIONS(1484), + [sym_raw_string_literal] = ACTIONS(1484), + [sym_float_literal] = ACTIONS(1484), [sym_block_comment] = ACTIONS(3), }, [356] = { - [ts_builtin_sym_end] = ACTIONS(1506), - [sym_identifier] = ACTIONS(1508), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_macro_rules_BANG] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_u8] = ACTIONS(1508), - [anon_sym_i8] = ACTIONS(1508), - [anon_sym_u16] = ACTIONS(1508), - [anon_sym_i16] = ACTIONS(1508), - [anon_sym_u32] = ACTIONS(1508), - [anon_sym_i32] = ACTIONS(1508), - [anon_sym_u64] = ACTIONS(1508), - [anon_sym_i64] = ACTIONS(1508), - [anon_sym_u128] = ACTIONS(1508), - [anon_sym_i128] = ACTIONS(1508), - [anon_sym_isize] = ACTIONS(1508), - [anon_sym_usize] = ACTIONS(1508), - [anon_sym_f32] = ACTIONS(1508), - [anon_sym_f64] = ACTIONS(1508), - [anon_sym_bool] = ACTIONS(1508), - [anon_sym_str] = ACTIONS(1508), - [anon_sym_char] = ACTIONS(1508), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_async] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_const] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_default] = ACTIONS(1508), - [anon_sym_enum] = ACTIONS(1508), - [anon_sym_fn] = ACTIONS(1508), - [anon_sym_for] = ACTIONS(1508), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_impl] = ACTIONS(1508), - [anon_sym_let] = ACTIONS(1508), - [anon_sym_loop] = ACTIONS(1508), - [anon_sym_match] = ACTIONS(1508), - [anon_sym_mod] = ACTIONS(1508), - [anon_sym_pub] = ACTIONS(1508), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_struct] = ACTIONS(1508), - [anon_sym_trait] = ACTIONS(1508), - [anon_sym_type] = ACTIONS(1508), - [anon_sym_union] = ACTIONS(1508), - [anon_sym_unsafe] = ACTIONS(1508), - [anon_sym_use] = ACTIONS(1508), - [anon_sym_while] = ACTIONS(1508), - [anon_sym_POUND] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_extern] = ACTIONS(1508), - [anon_sym_LT] = ACTIONS(1506), - [anon_sym_COLON_COLON] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_yield] = ACTIONS(1508), - [anon_sym_move] = ACTIONS(1508), - [sym_integer_literal] = ACTIONS(1506), - [aux_sym_string_literal_token1] = ACTIONS(1506), - [sym_char_literal] = ACTIONS(1506), - [anon_sym_true] = ACTIONS(1508), - [anon_sym_false] = ACTIONS(1508), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1508), - [sym_super] = ACTIONS(1508), - [sym_crate] = ACTIONS(1508), - [sym_metavariable] = ACTIONS(1506), - [sym_raw_string_literal] = ACTIONS(1506), - [sym_float_literal] = ACTIONS(1506), + [ts_builtin_sym_end] = ACTIONS(1488), + [sym_identifier] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_macro_rules_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_u8] = ACTIONS(1490), + [anon_sym_i8] = ACTIONS(1490), + [anon_sym_u16] = ACTIONS(1490), + [anon_sym_i16] = ACTIONS(1490), + [anon_sym_u32] = ACTIONS(1490), + [anon_sym_i32] = ACTIONS(1490), + [anon_sym_u64] = ACTIONS(1490), + [anon_sym_i64] = ACTIONS(1490), + [anon_sym_u128] = ACTIONS(1490), + [anon_sym_i128] = ACTIONS(1490), + [anon_sym_isize] = ACTIONS(1490), + [anon_sym_usize] = ACTIONS(1490), + [anon_sym_f32] = ACTIONS(1490), + [anon_sym_f64] = ACTIONS(1490), + [anon_sym_bool] = ACTIONS(1490), + [anon_sym_str] = ACTIONS(1490), + [anon_sym_char] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_async] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_default] = ACTIONS(1490), + [anon_sym_enum] = ACTIONS(1490), + [anon_sym_fn] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_impl] = ACTIONS(1490), + [anon_sym_let] = ACTIONS(1490), + [anon_sym_loop] = ACTIONS(1490), + [anon_sym_match] = ACTIONS(1490), + [anon_sym_mod] = ACTIONS(1490), + [anon_sym_pub] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_static] = ACTIONS(1490), + [anon_sym_struct] = ACTIONS(1490), + [anon_sym_trait] = ACTIONS(1490), + [anon_sym_type] = ACTIONS(1490), + [anon_sym_union] = ACTIONS(1490), + [anon_sym_unsafe] = ACTIONS(1490), + [anon_sym_use] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_POUND] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_COLON_COLON] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_yield] = ACTIONS(1490), + [anon_sym_move] = ACTIONS(1490), + [sym_integer_literal] = ACTIONS(1488), + [aux_sym_string_literal_token1] = ACTIONS(1488), + [sym_char_literal] = ACTIONS(1488), + [anon_sym_true] = ACTIONS(1490), + [anon_sym_false] = ACTIONS(1490), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1490), + [sym_super] = ACTIONS(1490), + [sym_crate] = ACTIONS(1490), + [sym_metavariable] = ACTIONS(1488), + [sym_raw_string_literal] = ACTIONS(1488), + [sym_float_literal] = ACTIONS(1488), [sym_block_comment] = ACTIONS(3), }, [357] = { - [ts_builtin_sym_end] = ACTIONS(1510), - [sym_identifier] = ACTIONS(1512), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_macro_rules_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_u8] = ACTIONS(1512), - [anon_sym_i8] = ACTIONS(1512), - [anon_sym_u16] = ACTIONS(1512), - [anon_sym_i16] = ACTIONS(1512), - [anon_sym_u32] = ACTIONS(1512), - [anon_sym_i32] = ACTIONS(1512), - [anon_sym_u64] = ACTIONS(1512), - [anon_sym_i64] = ACTIONS(1512), - [anon_sym_u128] = ACTIONS(1512), - [anon_sym_i128] = ACTIONS(1512), - [anon_sym_isize] = ACTIONS(1512), - [anon_sym_usize] = ACTIONS(1512), - [anon_sym_f32] = ACTIONS(1512), - [anon_sym_f64] = ACTIONS(1512), - [anon_sym_bool] = ACTIONS(1512), - [anon_sym_str] = ACTIONS(1512), - [anon_sym_char] = ACTIONS(1512), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_async] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_continue] = ACTIONS(1512), - [anon_sym_default] = ACTIONS(1512), - [anon_sym_enum] = ACTIONS(1512), - [anon_sym_fn] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_impl] = ACTIONS(1512), - [anon_sym_let] = ACTIONS(1512), - [anon_sym_loop] = ACTIONS(1512), - [anon_sym_match] = ACTIONS(1512), - [anon_sym_mod] = ACTIONS(1512), - [anon_sym_pub] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1512), - [anon_sym_struct] = ACTIONS(1512), - [anon_sym_trait] = ACTIONS(1512), - [anon_sym_type] = ACTIONS(1512), - [anon_sym_union] = ACTIONS(1512), - [anon_sym_unsafe] = ACTIONS(1512), - [anon_sym_use] = ACTIONS(1512), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_POUND] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1510), - [anon_sym_COLON_COLON] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_DOT_DOT] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_yield] = ACTIONS(1512), - [anon_sym_move] = ACTIONS(1512), - [sym_integer_literal] = ACTIONS(1510), - [aux_sym_string_literal_token1] = ACTIONS(1510), - [sym_char_literal] = ACTIONS(1510), - [anon_sym_true] = ACTIONS(1512), - [anon_sym_false] = ACTIONS(1512), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1512), - [sym_super] = ACTIONS(1512), - [sym_crate] = ACTIONS(1512), - [sym_metavariable] = ACTIONS(1510), - [sym_raw_string_literal] = ACTIONS(1510), - [sym_float_literal] = ACTIONS(1510), + [ts_builtin_sym_end] = ACTIONS(1492), + [sym_identifier] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_macro_rules_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_u8] = ACTIONS(1494), + [anon_sym_i8] = ACTIONS(1494), + [anon_sym_u16] = ACTIONS(1494), + [anon_sym_i16] = ACTIONS(1494), + [anon_sym_u32] = ACTIONS(1494), + [anon_sym_i32] = ACTIONS(1494), + [anon_sym_u64] = ACTIONS(1494), + [anon_sym_i64] = ACTIONS(1494), + [anon_sym_u128] = ACTIONS(1494), + [anon_sym_i128] = ACTIONS(1494), + [anon_sym_isize] = ACTIONS(1494), + [anon_sym_usize] = ACTIONS(1494), + [anon_sym_f32] = ACTIONS(1494), + [anon_sym_f64] = ACTIONS(1494), + [anon_sym_bool] = ACTIONS(1494), + [anon_sym_str] = ACTIONS(1494), + [anon_sym_char] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_async] = ACTIONS(1494), + [anon_sym_break] = ACTIONS(1494), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_continue] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(1494), + [anon_sym_enum] = ACTIONS(1494), + [anon_sym_fn] = ACTIONS(1494), + [anon_sym_for] = ACTIONS(1494), + [anon_sym_if] = ACTIONS(1494), + [anon_sym_impl] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(1494), + [anon_sym_loop] = ACTIONS(1494), + [anon_sym_match] = ACTIONS(1494), + [anon_sym_mod] = ACTIONS(1494), + [anon_sym_pub] = ACTIONS(1494), + [anon_sym_return] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1494), + [anon_sym_struct] = ACTIONS(1494), + [anon_sym_trait] = ACTIONS(1494), + [anon_sym_type] = ACTIONS(1494), + [anon_sym_union] = ACTIONS(1494), + [anon_sym_unsafe] = ACTIONS(1494), + [anon_sym_use] = ACTIONS(1494), + [anon_sym_while] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1494), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_COLON_COLON] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_DOT_DOT] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_yield] = ACTIONS(1494), + [anon_sym_move] = ACTIONS(1494), + [sym_integer_literal] = ACTIONS(1492), + [aux_sym_string_literal_token1] = ACTIONS(1492), + [sym_char_literal] = ACTIONS(1492), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1494), + [sym_super] = ACTIONS(1494), + [sym_crate] = ACTIONS(1494), + [sym_metavariable] = ACTIONS(1492), + [sym_raw_string_literal] = ACTIONS(1492), + [sym_float_literal] = ACTIONS(1492), [sym_block_comment] = ACTIONS(3), }, [358] = { - [ts_builtin_sym_end] = ACTIONS(1514), - [sym_identifier] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_macro_rules_BANG] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_u8] = ACTIONS(1516), - [anon_sym_i8] = ACTIONS(1516), - [anon_sym_u16] = ACTIONS(1516), - [anon_sym_i16] = ACTIONS(1516), - [anon_sym_u32] = ACTIONS(1516), - [anon_sym_i32] = ACTIONS(1516), - [anon_sym_u64] = ACTIONS(1516), - [anon_sym_i64] = ACTIONS(1516), - [anon_sym_u128] = ACTIONS(1516), - [anon_sym_i128] = ACTIONS(1516), - [anon_sym_isize] = ACTIONS(1516), - [anon_sym_usize] = ACTIONS(1516), - [anon_sym_f32] = ACTIONS(1516), - [anon_sym_f64] = ACTIONS(1516), - [anon_sym_bool] = ACTIONS(1516), - [anon_sym_str] = ACTIONS(1516), - [anon_sym_char] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1516), - [anon_sym_async] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_const] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_default] = ACTIONS(1516), - [anon_sym_enum] = ACTIONS(1516), - [anon_sym_fn] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1516), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_impl] = ACTIONS(1516), - [anon_sym_let] = ACTIONS(1516), - [anon_sym_loop] = ACTIONS(1516), - [anon_sym_match] = ACTIONS(1516), - [anon_sym_mod] = ACTIONS(1516), - [anon_sym_pub] = ACTIONS(1516), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1516), - [anon_sym_struct] = ACTIONS(1516), - [anon_sym_trait] = ACTIONS(1516), - [anon_sym_type] = ACTIONS(1516), - [anon_sym_union] = ACTIONS(1516), - [anon_sym_unsafe] = ACTIONS(1516), - [anon_sym_use] = ACTIONS(1516), - [anon_sym_while] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_COLON_COLON] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_DOT_DOT] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_yield] = ACTIONS(1516), - [anon_sym_move] = ACTIONS(1516), - [sym_integer_literal] = ACTIONS(1514), - [aux_sym_string_literal_token1] = ACTIONS(1514), - [sym_char_literal] = ACTIONS(1514), - [anon_sym_true] = ACTIONS(1516), - [anon_sym_false] = ACTIONS(1516), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1516), - [sym_super] = ACTIONS(1516), - [sym_crate] = ACTIONS(1516), - [sym_metavariable] = ACTIONS(1514), - [sym_raw_string_literal] = ACTIONS(1514), - [sym_float_literal] = ACTIONS(1514), + [ts_builtin_sym_end] = ACTIONS(1496), + [sym_identifier] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_macro_rules_BANG] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_u8] = ACTIONS(1498), + [anon_sym_i8] = ACTIONS(1498), + [anon_sym_u16] = ACTIONS(1498), + [anon_sym_i16] = ACTIONS(1498), + [anon_sym_u32] = ACTIONS(1498), + [anon_sym_i32] = ACTIONS(1498), + [anon_sym_u64] = ACTIONS(1498), + [anon_sym_i64] = ACTIONS(1498), + [anon_sym_u128] = ACTIONS(1498), + [anon_sym_i128] = ACTIONS(1498), + [anon_sym_isize] = ACTIONS(1498), + [anon_sym_usize] = ACTIONS(1498), + [anon_sym_f32] = ACTIONS(1498), + [anon_sym_f64] = ACTIONS(1498), + [anon_sym_bool] = ACTIONS(1498), + [anon_sym_str] = ACTIONS(1498), + [anon_sym_char] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_async] = ACTIONS(1498), + [anon_sym_break] = ACTIONS(1498), + [anon_sym_const] = ACTIONS(1498), + [anon_sym_continue] = ACTIONS(1498), + [anon_sym_default] = ACTIONS(1498), + [anon_sym_enum] = ACTIONS(1498), + [anon_sym_fn] = ACTIONS(1498), + [anon_sym_for] = ACTIONS(1498), + [anon_sym_if] = ACTIONS(1498), + [anon_sym_impl] = ACTIONS(1498), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_loop] = ACTIONS(1498), + [anon_sym_match] = ACTIONS(1498), + [anon_sym_mod] = ACTIONS(1498), + [anon_sym_pub] = ACTIONS(1498), + [anon_sym_return] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_struct] = ACTIONS(1498), + [anon_sym_trait] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_union] = ACTIONS(1498), + [anon_sym_unsafe] = ACTIONS(1498), + [anon_sym_use] = ACTIONS(1498), + [anon_sym_while] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_COLON_COLON] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_DOT_DOT] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_yield] = ACTIONS(1498), + [anon_sym_move] = ACTIONS(1498), + [sym_integer_literal] = ACTIONS(1496), + [aux_sym_string_literal_token1] = ACTIONS(1496), + [sym_char_literal] = ACTIONS(1496), + [anon_sym_true] = ACTIONS(1498), + [anon_sym_false] = ACTIONS(1498), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1498), + [sym_super] = ACTIONS(1498), + [sym_crate] = ACTIONS(1498), + [sym_metavariable] = ACTIONS(1496), + [sym_raw_string_literal] = ACTIONS(1496), + [sym_float_literal] = ACTIONS(1496), [sym_block_comment] = ACTIONS(3), }, [359] = { - [ts_builtin_sym_end] = ACTIONS(1518), - [sym_identifier] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_macro_rules_BANG] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_u8] = ACTIONS(1520), - [anon_sym_i8] = ACTIONS(1520), - [anon_sym_u16] = ACTIONS(1520), - [anon_sym_i16] = ACTIONS(1520), - [anon_sym_u32] = ACTIONS(1520), - [anon_sym_i32] = ACTIONS(1520), - [anon_sym_u64] = ACTIONS(1520), - [anon_sym_i64] = ACTIONS(1520), - [anon_sym_u128] = ACTIONS(1520), - [anon_sym_i128] = ACTIONS(1520), - [anon_sym_isize] = ACTIONS(1520), - [anon_sym_usize] = ACTIONS(1520), - [anon_sym_f32] = ACTIONS(1520), - [anon_sym_f64] = ACTIONS(1520), - [anon_sym_bool] = ACTIONS(1520), - [anon_sym_str] = ACTIONS(1520), - [anon_sym_char] = ACTIONS(1520), - [anon_sym_SQUOTE] = ACTIONS(1520), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_break] = ACTIONS(1520), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_continue] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1520), - [anon_sym_enum] = ACTIONS(1520), - [anon_sym_fn] = ACTIONS(1520), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_impl] = ACTIONS(1520), - [anon_sym_let] = ACTIONS(1520), - [anon_sym_loop] = ACTIONS(1520), - [anon_sym_match] = ACTIONS(1520), - [anon_sym_mod] = ACTIONS(1520), - [anon_sym_pub] = ACTIONS(1520), - [anon_sym_return] = ACTIONS(1520), - [anon_sym_static] = ACTIONS(1520), - [anon_sym_struct] = ACTIONS(1520), - [anon_sym_trait] = ACTIONS(1520), - [anon_sym_type] = ACTIONS(1520), - [anon_sym_union] = ACTIONS(1520), - [anon_sym_unsafe] = ACTIONS(1520), - [anon_sym_use] = ACTIONS(1520), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_COLON_COLON] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_yield] = ACTIONS(1520), - [anon_sym_move] = ACTIONS(1520), - [sym_integer_literal] = ACTIONS(1518), - [aux_sym_string_literal_token1] = ACTIONS(1518), - [sym_char_literal] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1520), - [sym_super] = ACTIONS(1520), - [sym_crate] = ACTIONS(1520), - [sym_metavariable] = ACTIONS(1518), - [sym_raw_string_literal] = ACTIONS(1518), - [sym_float_literal] = ACTIONS(1518), + [ts_builtin_sym_end] = ACTIONS(1500), + [sym_identifier] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_macro_rules_BANG] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_u8] = ACTIONS(1502), + [anon_sym_i8] = ACTIONS(1502), + [anon_sym_u16] = ACTIONS(1502), + [anon_sym_i16] = ACTIONS(1502), + [anon_sym_u32] = ACTIONS(1502), + [anon_sym_i32] = ACTIONS(1502), + [anon_sym_u64] = ACTIONS(1502), + [anon_sym_i64] = ACTIONS(1502), + [anon_sym_u128] = ACTIONS(1502), + [anon_sym_i128] = ACTIONS(1502), + [anon_sym_isize] = ACTIONS(1502), + [anon_sym_usize] = ACTIONS(1502), + [anon_sym_f32] = ACTIONS(1502), + [anon_sym_f64] = ACTIONS(1502), + [anon_sym_bool] = ACTIONS(1502), + [anon_sym_str] = ACTIONS(1502), + [anon_sym_char] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_break] = ACTIONS(1502), + [anon_sym_const] = ACTIONS(1502), + [anon_sym_continue] = ACTIONS(1502), + [anon_sym_default] = ACTIONS(1502), + [anon_sym_enum] = ACTIONS(1502), + [anon_sym_fn] = ACTIONS(1502), + [anon_sym_for] = ACTIONS(1502), + [anon_sym_if] = ACTIONS(1502), + [anon_sym_impl] = ACTIONS(1502), + [anon_sym_let] = ACTIONS(1502), + [anon_sym_loop] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_mod] = ACTIONS(1502), + [anon_sym_pub] = ACTIONS(1502), + [anon_sym_return] = ACTIONS(1502), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1502), + [anon_sym_trait] = ACTIONS(1502), + [anon_sym_type] = ACTIONS(1502), + [anon_sym_union] = ACTIONS(1502), + [anon_sym_unsafe] = ACTIONS(1502), + [anon_sym_use] = ACTIONS(1502), + [anon_sym_while] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_COLON_COLON] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_yield] = ACTIONS(1502), + [anon_sym_move] = ACTIONS(1502), + [sym_integer_literal] = ACTIONS(1500), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1500), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1500), + [sym_raw_string_literal] = ACTIONS(1500), + [sym_float_literal] = ACTIONS(1500), [sym_block_comment] = ACTIONS(3), }, [360] = { - [ts_builtin_sym_end] = ACTIONS(1522), - [sym_identifier] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_macro_rules_BANG] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_u8] = ACTIONS(1524), - [anon_sym_i8] = ACTIONS(1524), - [anon_sym_u16] = ACTIONS(1524), - [anon_sym_i16] = ACTIONS(1524), - [anon_sym_u32] = ACTIONS(1524), - [anon_sym_i32] = ACTIONS(1524), - [anon_sym_u64] = ACTIONS(1524), - [anon_sym_i64] = ACTIONS(1524), - [anon_sym_u128] = ACTIONS(1524), - [anon_sym_i128] = ACTIONS(1524), - [anon_sym_isize] = ACTIONS(1524), - [anon_sym_usize] = ACTIONS(1524), - [anon_sym_f32] = ACTIONS(1524), - [anon_sym_f64] = ACTIONS(1524), - [anon_sym_bool] = ACTIONS(1524), - [anon_sym_str] = ACTIONS(1524), - [anon_sym_char] = ACTIONS(1524), - [anon_sym_SQUOTE] = ACTIONS(1524), - [anon_sym_async] = ACTIONS(1524), - [anon_sym_break] = ACTIONS(1524), - [anon_sym_const] = ACTIONS(1524), - [anon_sym_continue] = ACTIONS(1524), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_enum] = ACTIONS(1524), - [anon_sym_fn] = ACTIONS(1524), - [anon_sym_for] = ACTIONS(1524), - [anon_sym_if] = ACTIONS(1524), - [anon_sym_impl] = ACTIONS(1524), - [anon_sym_let] = ACTIONS(1524), - [anon_sym_loop] = ACTIONS(1524), - [anon_sym_match] = ACTIONS(1524), - [anon_sym_mod] = ACTIONS(1524), - [anon_sym_pub] = ACTIONS(1524), - [anon_sym_return] = ACTIONS(1524), - [anon_sym_static] = ACTIONS(1524), - [anon_sym_struct] = ACTIONS(1524), - [anon_sym_trait] = ACTIONS(1524), - [anon_sym_type] = ACTIONS(1524), - [anon_sym_union] = ACTIONS(1524), - [anon_sym_unsafe] = ACTIONS(1524), - [anon_sym_use] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_POUND] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1522), - [anon_sym_extern] = ACTIONS(1524), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_COLON_COLON] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_DOT_DOT] = ACTIONS(1522), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_yield] = ACTIONS(1524), - [anon_sym_move] = ACTIONS(1524), - [sym_integer_literal] = ACTIONS(1522), - [aux_sym_string_literal_token1] = ACTIONS(1522), - [sym_char_literal] = ACTIONS(1522), - [anon_sym_true] = ACTIONS(1524), - [anon_sym_false] = ACTIONS(1524), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1524), - [sym_super] = ACTIONS(1524), - [sym_crate] = ACTIONS(1524), - [sym_metavariable] = ACTIONS(1522), - [sym_raw_string_literal] = ACTIONS(1522), - [sym_float_literal] = ACTIONS(1522), + [ts_builtin_sym_end] = ACTIONS(1504), + [sym_identifier] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_macro_rules_BANG] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_u8] = ACTIONS(1506), + [anon_sym_i8] = ACTIONS(1506), + [anon_sym_u16] = ACTIONS(1506), + [anon_sym_i16] = ACTIONS(1506), + [anon_sym_u32] = ACTIONS(1506), + [anon_sym_i32] = ACTIONS(1506), + [anon_sym_u64] = ACTIONS(1506), + [anon_sym_i64] = ACTIONS(1506), + [anon_sym_u128] = ACTIONS(1506), + [anon_sym_i128] = ACTIONS(1506), + [anon_sym_isize] = ACTIONS(1506), + [anon_sym_usize] = ACTIONS(1506), + [anon_sym_f32] = ACTIONS(1506), + [anon_sym_f64] = ACTIONS(1506), + [anon_sym_bool] = ACTIONS(1506), + [anon_sym_str] = ACTIONS(1506), + [anon_sym_char] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_async] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_default] = ACTIONS(1506), + [anon_sym_enum] = ACTIONS(1506), + [anon_sym_fn] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_impl] = ACTIONS(1506), + [anon_sym_let] = ACTIONS(1506), + [anon_sym_loop] = ACTIONS(1506), + [anon_sym_match] = ACTIONS(1506), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_pub] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_static] = ACTIONS(1506), + [anon_sym_struct] = ACTIONS(1506), + [anon_sym_trait] = ACTIONS(1506), + [anon_sym_type] = ACTIONS(1506), + [anon_sym_union] = ACTIONS(1506), + [anon_sym_unsafe] = ACTIONS(1506), + [anon_sym_use] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_COLON_COLON] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_DOT_DOT] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_yield] = ACTIONS(1506), + [anon_sym_move] = ACTIONS(1506), + [sym_integer_literal] = ACTIONS(1504), + [aux_sym_string_literal_token1] = ACTIONS(1504), + [sym_char_literal] = ACTIONS(1504), + [anon_sym_true] = ACTIONS(1506), + [anon_sym_false] = ACTIONS(1506), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1506), + [sym_super] = ACTIONS(1506), + [sym_crate] = ACTIONS(1506), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(1504), + [sym_float_literal] = ACTIONS(1504), [sym_block_comment] = ACTIONS(3), }, [361] = { - [ts_builtin_sym_end] = ACTIONS(1526), - [sym_identifier] = ACTIONS(1528), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_macro_rules_BANG] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACE] = ACTIONS(1526), - [anon_sym_RBRACE] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1526), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_u8] = ACTIONS(1528), - [anon_sym_i8] = ACTIONS(1528), - [anon_sym_u16] = ACTIONS(1528), - [anon_sym_i16] = ACTIONS(1528), - [anon_sym_u32] = ACTIONS(1528), - [anon_sym_i32] = ACTIONS(1528), - [anon_sym_u64] = ACTIONS(1528), - [anon_sym_i64] = ACTIONS(1528), - [anon_sym_u128] = ACTIONS(1528), - [anon_sym_i128] = ACTIONS(1528), - [anon_sym_isize] = ACTIONS(1528), - [anon_sym_usize] = ACTIONS(1528), - [anon_sym_f32] = ACTIONS(1528), - [anon_sym_f64] = ACTIONS(1528), - [anon_sym_bool] = ACTIONS(1528), - [anon_sym_str] = ACTIONS(1528), - [anon_sym_char] = ACTIONS(1528), - [anon_sym_SQUOTE] = ACTIONS(1528), - [anon_sym_async] = ACTIONS(1528), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_const] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1528), - [anon_sym_enum] = ACTIONS(1528), - [anon_sym_fn] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_impl] = ACTIONS(1528), - [anon_sym_let] = ACTIONS(1528), - [anon_sym_loop] = ACTIONS(1528), - [anon_sym_match] = ACTIONS(1528), - [anon_sym_mod] = ACTIONS(1528), - [anon_sym_pub] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_static] = ACTIONS(1528), - [anon_sym_struct] = ACTIONS(1528), - [anon_sym_trait] = ACTIONS(1528), - [anon_sym_type] = ACTIONS(1528), - [anon_sym_union] = ACTIONS(1528), - [anon_sym_unsafe] = ACTIONS(1528), - [anon_sym_use] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1526), - [anon_sym_COLON_COLON] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_DOT_DOT] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_yield] = ACTIONS(1528), - [anon_sym_move] = ACTIONS(1528), - [sym_integer_literal] = ACTIONS(1526), - [aux_sym_string_literal_token1] = ACTIONS(1526), - [sym_char_literal] = ACTIONS(1526), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1528), - [sym_crate] = ACTIONS(1528), - [sym_metavariable] = ACTIONS(1526), - [sym_raw_string_literal] = ACTIONS(1526), - [sym_float_literal] = ACTIONS(1526), + [ts_builtin_sym_end] = ACTIONS(1508), + [sym_identifier] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_macro_rules_BANG] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_u8] = ACTIONS(1510), + [anon_sym_i8] = ACTIONS(1510), + [anon_sym_u16] = ACTIONS(1510), + [anon_sym_i16] = ACTIONS(1510), + [anon_sym_u32] = ACTIONS(1510), + [anon_sym_i32] = ACTIONS(1510), + [anon_sym_u64] = ACTIONS(1510), + [anon_sym_i64] = ACTIONS(1510), + [anon_sym_u128] = ACTIONS(1510), + [anon_sym_i128] = ACTIONS(1510), + [anon_sym_isize] = ACTIONS(1510), + [anon_sym_usize] = ACTIONS(1510), + [anon_sym_f32] = ACTIONS(1510), + [anon_sym_f64] = ACTIONS(1510), + [anon_sym_bool] = ACTIONS(1510), + [anon_sym_str] = ACTIONS(1510), + [anon_sym_char] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_async] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_default] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_fn] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_impl] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(1510), + [anon_sym_loop] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_mod] = ACTIONS(1510), + [anon_sym_pub] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_struct] = ACTIONS(1510), + [anon_sym_trait] = ACTIONS(1510), + [anon_sym_type] = ACTIONS(1510), + [anon_sym_union] = ACTIONS(1510), + [anon_sym_unsafe] = ACTIONS(1510), + [anon_sym_use] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_COLON_COLON] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_move] = ACTIONS(1510), + [sym_integer_literal] = ACTIONS(1508), + [aux_sym_string_literal_token1] = ACTIONS(1508), + [sym_char_literal] = ACTIONS(1508), + [anon_sym_true] = ACTIONS(1510), + [anon_sym_false] = ACTIONS(1510), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1510), + [sym_super] = ACTIONS(1510), + [sym_crate] = ACTIONS(1510), + [sym_metavariable] = ACTIONS(1508), + [sym_raw_string_literal] = ACTIONS(1508), + [sym_float_literal] = ACTIONS(1508), [sym_block_comment] = ACTIONS(3), }, [362] = { - [ts_builtin_sym_end] = ACTIONS(1530), - [sym_identifier] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_macro_rules_BANG] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), + [ts_builtin_sym_end] = ACTIONS(1512), + [sym_identifier] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_macro_rules_BANG] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_u8] = ACTIONS(1514), + [anon_sym_i8] = ACTIONS(1514), + [anon_sym_u16] = ACTIONS(1514), + [anon_sym_i16] = ACTIONS(1514), + [anon_sym_u32] = ACTIONS(1514), + [anon_sym_i32] = ACTIONS(1514), + [anon_sym_u64] = ACTIONS(1514), + [anon_sym_i64] = ACTIONS(1514), + [anon_sym_u128] = ACTIONS(1514), + [anon_sym_i128] = ACTIONS(1514), + [anon_sym_isize] = ACTIONS(1514), + [anon_sym_usize] = ACTIONS(1514), + [anon_sym_f32] = ACTIONS(1514), + [anon_sym_f64] = ACTIONS(1514), + [anon_sym_bool] = ACTIONS(1514), + [anon_sym_str] = ACTIONS(1514), + [anon_sym_char] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_async] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_default] = ACTIONS(1514), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_fn] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_impl] = ACTIONS(1514), + [anon_sym_let] = ACTIONS(1514), + [anon_sym_loop] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_pub] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_static] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(1514), + [anon_sym_trait] = ACTIONS(1514), + [anon_sym_type] = ACTIONS(1514), + [anon_sym_union] = ACTIONS(1514), + [anon_sym_unsafe] = ACTIONS(1514), + [anon_sym_use] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_COLON_COLON] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_DOT_DOT] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_yield] = ACTIONS(1514), + [anon_sym_move] = ACTIONS(1514), + [sym_integer_literal] = ACTIONS(1512), + [aux_sym_string_literal_token1] = ACTIONS(1512), + [sym_char_literal] = ACTIONS(1512), + [anon_sym_true] = ACTIONS(1514), + [anon_sym_false] = ACTIONS(1514), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1514), + [sym_super] = ACTIONS(1514), + [sym_crate] = ACTIONS(1514), + [sym_metavariable] = ACTIONS(1512), + [sym_raw_string_literal] = ACTIONS(1512), + [sym_float_literal] = ACTIONS(1512), + [sym_block_comment] = ACTIONS(3), + }, + [363] = { + [ts_builtin_sym_end] = ACTIONS(1516), + [sym_identifier] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_macro_rules_BANG] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_enum] = ACTIONS(1518), + [anon_sym_fn] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_impl] = ACTIONS(1518), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_loop] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_mod] = ACTIONS(1518), + [anon_sym_pub] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1518), + [anon_sym_trait] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_union] = ACTIONS(1518), + [anon_sym_unsafe] = ACTIONS(1518), + [anon_sym_use] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1516), + [anon_sym_COLON_COLON] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_yield] = ACTIONS(1518), + [anon_sym_move] = ACTIONS(1518), + [sym_integer_literal] = ACTIONS(1516), + [aux_sym_string_literal_token1] = ACTIONS(1516), + [sym_char_literal] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1518), + [anon_sym_false] = ACTIONS(1518), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1518), + [sym_super] = ACTIONS(1518), + [sym_crate] = ACTIONS(1518), + [sym_metavariable] = ACTIONS(1516), + [sym_raw_string_literal] = ACTIONS(1516), + [sym_float_literal] = ACTIONS(1516), + [sym_block_comment] = ACTIONS(3), + }, + [364] = { + [ts_builtin_sym_end] = ACTIONS(1520), + [sym_identifier] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_macro_rules_BANG] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_async] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_enum] = ACTIONS(1522), + [anon_sym_fn] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_impl] = ACTIONS(1522), + [anon_sym_let] = ACTIONS(1522), + [anon_sym_loop] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_mod] = ACTIONS(1522), + [anon_sym_pub] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_static] = ACTIONS(1522), + [anon_sym_struct] = ACTIONS(1522), + [anon_sym_trait] = ACTIONS(1522), + [anon_sym_type] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_unsafe] = ACTIONS(1522), + [anon_sym_use] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_COLON_COLON] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_yield] = ACTIONS(1522), + [anon_sym_move] = ACTIONS(1522), + [sym_integer_literal] = ACTIONS(1520), + [aux_sym_string_literal_token1] = ACTIONS(1520), + [sym_char_literal] = ACTIONS(1520), + [anon_sym_true] = ACTIONS(1522), + [anon_sym_false] = ACTIONS(1522), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1522), + [sym_super] = ACTIONS(1522), + [sym_crate] = ACTIONS(1522), + [sym_metavariable] = ACTIONS(1520), + [sym_raw_string_literal] = ACTIONS(1520), + [sym_float_literal] = ACTIONS(1520), + [sym_block_comment] = ACTIONS(3), + }, + [365] = { + [sym_attribute_item] = STATE(547), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_match_arm] = STATE(490), + [sym_last_match_arm] = STATE(2385), + [sym_match_pattern] = STATE(2387), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1981), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_enum_variant_list_repeat1] = STATE(547), + [aux_sym_match_block_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1528), [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(1530), [anon_sym_u8] = ACTIONS(1532), [anon_sym_i8] = ACTIONS(1532), [anon_sym_u16] = ACTIONS(1532), @@ -52151,272 +52404,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1532), [anon_sym_str] = ACTIONS(1532), [anon_sym_char] = ACTIONS(1532), - [anon_sym_SQUOTE] = ACTIONS(1532), - [anon_sym_async] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1532), - [anon_sym_continue] = ACTIONS(1532), - [anon_sym_default] = ACTIONS(1532), - [anon_sym_enum] = ACTIONS(1532), - [anon_sym_fn] = ACTIONS(1532), - [anon_sym_for] = ACTIONS(1532), - [anon_sym_if] = ACTIONS(1532), - [anon_sym_impl] = ACTIONS(1532), - [anon_sym_let] = ACTIONS(1532), - [anon_sym_loop] = ACTIONS(1532), - [anon_sym_match] = ACTIONS(1532), - [anon_sym_mod] = ACTIONS(1532), - [anon_sym_pub] = ACTIONS(1532), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_struct] = ACTIONS(1532), - [anon_sym_trait] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_union] = ACTIONS(1532), - [anon_sym_unsafe] = ACTIONS(1532), - [anon_sym_use] = ACTIONS(1532), - [anon_sym_while] = ACTIONS(1532), - [anon_sym_POUND] = ACTIONS(1530), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_extern] = ACTIONS(1532), - [anon_sym_LT] = ACTIONS(1530), - [anon_sym_COLON_COLON] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1530), - [anon_sym_DOT_DOT] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_yield] = ACTIONS(1532), - [anon_sym_move] = ACTIONS(1532), - [sym_integer_literal] = ACTIONS(1530), - [aux_sym_string_literal_token1] = ACTIONS(1530), - [sym_char_literal] = ACTIONS(1530), - [anon_sym_true] = ACTIONS(1532), - [anon_sym_false] = ACTIONS(1532), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1532), - [sym_super] = ACTIONS(1532), - [sym_crate] = ACTIONS(1532), - [sym_metavariable] = ACTIONS(1530), - [sym_raw_string_literal] = ACTIONS(1530), - [sym_float_literal] = ACTIONS(1530), - [sym_block_comment] = ACTIONS(3), - }, - [363] = { - [ts_builtin_sym_end] = ACTIONS(1534), - [sym_identifier] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_macro_rules_BANG] = ACTIONS(1534), - [anon_sym_LPAREN] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_RBRACE] = ACTIONS(1534), - [anon_sym_LBRACK] = ACTIONS(1534), - [anon_sym_STAR] = ACTIONS(1534), - [anon_sym_u8] = ACTIONS(1536), - [anon_sym_i8] = ACTIONS(1536), - [anon_sym_u16] = ACTIONS(1536), - [anon_sym_i16] = ACTIONS(1536), - [anon_sym_u32] = ACTIONS(1536), - [anon_sym_i32] = ACTIONS(1536), - [anon_sym_u64] = ACTIONS(1536), - [anon_sym_i64] = ACTIONS(1536), - [anon_sym_u128] = ACTIONS(1536), - [anon_sym_i128] = ACTIONS(1536), - [anon_sym_isize] = ACTIONS(1536), - [anon_sym_usize] = ACTIONS(1536), - [anon_sym_f32] = ACTIONS(1536), - [anon_sym_f64] = ACTIONS(1536), - [anon_sym_bool] = ACTIONS(1536), - [anon_sym_str] = ACTIONS(1536), - [anon_sym_char] = ACTIONS(1536), - [anon_sym_SQUOTE] = ACTIONS(1536), - [anon_sym_async] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1534), [anon_sym_default] = ACTIONS(1536), - [anon_sym_enum] = ACTIONS(1536), - [anon_sym_fn] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_impl] = ACTIONS(1536), - [anon_sym_let] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1536), - [anon_sym_match] = ACTIONS(1536), - [anon_sym_mod] = ACTIONS(1536), - [anon_sym_pub] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_static] = ACTIONS(1536), - [anon_sym_struct] = ACTIONS(1536), - [anon_sym_trait] = ACTIONS(1536), - [anon_sym_type] = ACTIONS(1536), [anon_sym_union] = ACTIONS(1536), - [anon_sym_unsafe] = ACTIONS(1536), - [anon_sym_use] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1534), - [anon_sym_extern] = ACTIONS(1536), - [anon_sym_LT] = ACTIONS(1534), - [anon_sym_COLON_COLON] = ACTIONS(1534), - [anon_sym_AMP] = ACTIONS(1534), - [anon_sym_DOT_DOT] = ACTIONS(1534), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_PIPE] = ACTIONS(1534), - [anon_sym_yield] = ACTIONS(1536), - [anon_sym_move] = ACTIONS(1536), - [sym_integer_literal] = ACTIONS(1534), - [aux_sym_string_literal_token1] = ACTIONS(1534), - [sym_char_literal] = ACTIONS(1534), - [anon_sym_true] = ACTIONS(1536), - [anon_sym_false] = ACTIONS(1536), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1534), - [sym_raw_string_literal] = ACTIONS(1534), - [sym_float_literal] = ACTIONS(1534), - [sym_block_comment] = ACTIONS(3), - }, - [364] = { - [ts_builtin_sym_end] = ACTIONS(1538), - [sym_identifier] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_macro_rules_BANG] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_u8] = ACTIONS(1540), - [anon_sym_i8] = ACTIONS(1540), - [anon_sym_u16] = ACTIONS(1540), - [anon_sym_i16] = ACTIONS(1540), - [anon_sym_u32] = ACTIONS(1540), - [anon_sym_i32] = ACTIONS(1540), - [anon_sym_u64] = ACTIONS(1540), - [anon_sym_i64] = ACTIONS(1540), - [anon_sym_u128] = ACTIONS(1540), - [anon_sym_i128] = ACTIONS(1540), - [anon_sym_isize] = ACTIONS(1540), - [anon_sym_usize] = ACTIONS(1540), - [anon_sym_f32] = ACTIONS(1540), - [anon_sym_f64] = ACTIONS(1540), - [anon_sym_bool] = ACTIONS(1540), - [anon_sym_str] = ACTIONS(1540), - [anon_sym_char] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(1540), - [anon_sym_async] = ACTIONS(1540), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_enum] = ACTIONS(1540), - [anon_sym_fn] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_impl] = ACTIONS(1540), - [anon_sym_let] = ACTIONS(1540), - [anon_sym_loop] = ACTIONS(1540), - [anon_sym_match] = ACTIONS(1540), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_pub] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_static] = ACTIONS(1540), - [anon_sym_struct] = ACTIONS(1540), - [anon_sym_trait] = ACTIONS(1540), - [anon_sym_type] = ACTIONS(1540), - [anon_sym_union] = ACTIONS(1540), - [anon_sym_unsafe] = ACTIONS(1540), - [anon_sym_use] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(1538), - [anon_sym_BANG] = ACTIONS(1538), - [anon_sym_extern] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(1538), - [anon_sym_DOT_DOT] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_yield] = ACTIONS(1540), - [anon_sym_move] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1538), - [aux_sym_string_literal_token1] = ACTIONS(1538), - [sym_char_literal] = ACTIONS(1538), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1540), - [sym_super] = ACTIONS(1540), - [sym_crate] = ACTIONS(1540), - [sym_metavariable] = ACTIONS(1538), - [sym_raw_string_literal] = ACTIONS(1538), - [sym_float_literal] = ACTIONS(1538), - [sym_block_comment] = ACTIONS(3), - }, - [365] = { - [sym_attribute_item] = STATE(545), - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_match_arm] = STATE(487), - [sym_last_match_arm] = STATE(2527), - [sym_match_pattern] = STATE(2531), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2068), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_enum_variant_list_repeat1] = STATE(545), - [aux_sym_match_block_repeat1] = STATE(487), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -52424,2014 +52422,2014 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [366] = { - [ts_builtin_sym_end] = ACTIONS(1544), - [sym_identifier] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_macro_rules_BANG] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1544), - [anon_sym_u8] = ACTIONS(1546), - [anon_sym_i8] = ACTIONS(1546), - [anon_sym_u16] = ACTIONS(1546), - [anon_sym_i16] = ACTIONS(1546), - [anon_sym_u32] = ACTIONS(1546), - [anon_sym_i32] = ACTIONS(1546), - [anon_sym_u64] = ACTIONS(1546), - [anon_sym_i64] = ACTIONS(1546), - [anon_sym_u128] = ACTIONS(1546), - [anon_sym_i128] = ACTIONS(1546), - [anon_sym_isize] = ACTIONS(1546), - [anon_sym_usize] = ACTIONS(1546), - [anon_sym_f32] = ACTIONS(1546), - [anon_sym_f64] = ACTIONS(1546), - [anon_sym_bool] = ACTIONS(1546), - [anon_sym_str] = ACTIONS(1546), - [anon_sym_char] = ACTIONS(1546), - [anon_sym_SQUOTE] = ACTIONS(1546), - [anon_sym_async] = ACTIONS(1546), - [anon_sym_break] = ACTIONS(1546), - [anon_sym_const] = ACTIONS(1546), - [anon_sym_continue] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1546), - [anon_sym_enum] = ACTIONS(1546), - [anon_sym_fn] = ACTIONS(1546), - [anon_sym_for] = ACTIONS(1546), - [anon_sym_if] = ACTIONS(1546), - [anon_sym_impl] = ACTIONS(1546), - [anon_sym_let] = ACTIONS(1546), - [anon_sym_loop] = ACTIONS(1546), - [anon_sym_match] = ACTIONS(1546), - [anon_sym_mod] = ACTIONS(1546), - [anon_sym_pub] = ACTIONS(1546), - [anon_sym_return] = ACTIONS(1546), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_struct] = ACTIONS(1546), - [anon_sym_trait] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_union] = ACTIONS(1546), - [anon_sym_unsafe] = ACTIONS(1546), - [anon_sym_use] = ACTIONS(1546), - [anon_sym_while] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1544), - [anon_sym_extern] = ACTIONS(1546), - [anon_sym_LT] = ACTIONS(1544), - [anon_sym_COLON_COLON] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_yield] = ACTIONS(1546), - [anon_sym_move] = ACTIONS(1546), - [sym_integer_literal] = ACTIONS(1544), - [aux_sym_string_literal_token1] = ACTIONS(1544), - [sym_char_literal] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1546), - [anon_sym_false] = ACTIONS(1546), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1546), - [sym_super] = ACTIONS(1546), - [sym_crate] = ACTIONS(1546), - [sym_metavariable] = ACTIONS(1544), - [sym_raw_string_literal] = ACTIONS(1544), - [sym_float_literal] = ACTIONS(1544), + [ts_builtin_sym_end] = ACTIONS(1546), + [sym_identifier] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_macro_rules_BANG] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_u8] = ACTIONS(1548), + [anon_sym_i8] = ACTIONS(1548), + [anon_sym_u16] = ACTIONS(1548), + [anon_sym_i16] = ACTIONS(1548), + [anon_sym_u32] = ACTIONS(1548), + [anon_sym_i32] = ACTIONS(1548), + [anon_sym_u64] = ACTIONS(1548), + [anon_sym_i64] = ACTIONS(1548), + [anon_sym_u128] = ACTIONS(1548), + [anon_sym_i128] = ACTIONS(1548), + [anon_sym_isize] = ACTIONS(1548), + [anon_sym_usize] = ACTIONS(1548), + [anon_sym_f32] = ACTIONS(1548), + [anon_sym_f64] = ACTIONS(1548), + [anon_sym_bool] = ACTIONS(1548), + [anon_sym_str] = ACTIONS(1548), + [anon_sym_char] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1548), + [anon_sym_async] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_continue] = ACTIONS(1548), + [anon_sym_default] = ACTIONS(1548), + [anon_sym_enum] = ACTIONS(1548), + [anon_sym_fn] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_impl] = ACTIONS(1548), + [anon_sym_let] = ACTIONS(1548), + [anon_sym_loop] = ACTIONS(1548), + [anon_sym_match] = ACTIONS(1548), + [anon_sym_mod] = ACTIONS(1548), + [anon_sym_pub] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_static] = ACTIONS(1548), + [anon_sym_struct] = ACTIONS(1548), + [anon_sym_trait] = ACTIONS(1548), + [anon_sym_type] = ACTIONS(1548), + [anon_sym_union] = ACTIONS(1548), + [anon_sym_unsafe] = ACTIONS(1548), + [anon_sym_use] = ACTIONS(1548), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_POUND] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_extern] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_COLON_COLON] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_DOT_DOT] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_yield] = ACTIONS(1548), + [anon_sym_move] = ACTIONS(1548), + [sym_integer_literal] = ACTIONS(1546), + [aux_sym_string_literal_token1] = ACTIONS(1546), + [sym_char_literal] = ACTIONS(1546), + [anon_sym_true] = ACTIONS(1548), + [anon_sym_false] = ACTIONS(1548), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1548), + [sym_super] = ACTIONS(1548), + [sym_crate] = ACTIONS(1548), + [sym_metavariable] = ACTIONS(1546), + [sym_raw_string_literal] = ACTIONS(1546), + [sym_float_literal] = ACTIONS(1546), [sym_block_comment] = ACTIONS(3), }, [367] = { - [ts_builtin_sym_end] = ACTIONS(1548), - [sym_identifier] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1548), - [anon_sym_macro_rules_BANG] = ACTIONS(1548), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1548), - [anon_sym_u8] = ACTIONS(1550), - [anon_sym_i8] = ACTIONS(1550), - [anon_sym_u16] = ACTIONS(1550), - [anon_sym_i16] = ACTIONS(1550), - [anon_sym_u32] = ACTIONS(1550), - [anon_sym_i32] = ACTIONS(1550), - [anon_sym_u64] = ACTIONS(1550), - [anon_sym_i64] = ACTIONS(1550), - [anon_sym_u128] = ACTIONS(1550), - [anon_sym_i128] = ACTIONS(1550), - [anon_sym_isize] = ACTIONS(1550), - [anon_sym_usize] = ACTIONS(1550), - [anon_sym_f32] = ACTIONS(1550), - [anon_sym_f64] = ACTIONS(1550), - [anon_sym_bool] = ACTIONS(1550), - [anon_sym_str] = ACTIONS(1550), - [anon_sym_char] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1550), - [anon_sym_async] = ACTIONS(1550), - [anon_sym_break] = ACTIONS(1550), - [anon_sym_const] = ACTIONS(1550), - [anon_sym_continue] = ACTIONS(1550), - [anon_sym_default] = ACTIONS(1550), - [anon_sym_enum] = ACTIONS(1550), - [anon_sym_fn] = ACTIONS(1550), - [anon_sym_for] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_impl] = ACTIONS(1550), - [anon_sym_let] = ACTIONS(1550), - [anon_sym_loop] = ACTIONS(1550), - [anon_sym_match] = ACTIONS(1550), - [anon_sym_mod] = ACTIONS(1550), - [anon_sym_pub] = ACTIONS(1550), - [anon_sym_return] = ACTIONS(1550), - [anon_sym_static] = ACTIONS(1550), - [anon_sym_struct] = ACTIONS(1550), - [anon_sym_trait] = ACTIONS(1550), - [anon_sym_type] = ACTIONS(1550), - [anon_sym_union] = ACTIONS(1550), - [anon_sym_unsafe] = ACTIONS(1550), - [anon_sym_use] = ACTIONS(1550), - [anon_sym_while] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(1548), - [anon_sym_BANG] = ACTIONS(1548), - [anon_sym_extern] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1548), - [anon_sym_COLON_COLON] = ACTIONS(1548), - [anon_sym_AMP] = ACTIONS(1548), - [anon_sym_DOT_DOT] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_move] = ACTIONS(1550), - [sym_integer_literal] = ACTIONS(1548), - [aux_sym_string_literal_token1] = ACTIONS(1548), - [sym_char_literal] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1550), - [anon_sym_false] = ACTIONS(1550), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1550), - [sym_super] = ACTIONS(1550), - [sym_crate] = ACTIONS(1550), - [sym_metavariable] = ACTIONS(1548), - [sym_raw_string_literal] = ACTIONS(1548), - [sym_float_literal] = ACTIONS(1548), + [ts_builtin_sym_end] = ACTIONS(1550), + [sym_identifier] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym_macro_rules_BANG] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_RBRACE] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(1550), + [anon_sym_u8] = ACTIONS(1552), + [anon_sym_i8] = ACTIONS(1552), + [anon_sym_u16] = ACTIONS(1552), + [anon_sym_i16] = ACTIONS(1552), + [anon_sym_u32] = ACTIONS(1552), + [anon_sym_i32] = ACTIONS(1552), + [anon_sym_u64] = ACTIONS(1552), + [anon_sym_i64] = ACTIONS(1552), + [anon_sym_u128] = ACTIONS(1552), + [anon_sym_i128] = ACTIONS(1552), + [anon_sym_isize] = ACTIONS(1552), + [anon_sym_usize] = ACTIONS(1552), + [anon_sym_f32] = ACTIONS(1552), + [anon_sym_f64] = ACTIONS(1552), + [anon_sym_bool] = ACTIONS(1552), + [anon_sym_str] = ACTIONS(1552), + [anon_sym_char] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_async] = ACTIONS(1552), + [anon_sym_break] = ACTIONS(1552), + [anon_sym_const] = ACTIONS(1552), + [anon_sym_continue] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1552), + [anon_sym_enum] = ACTIONS(1552), + [anon_sym_fn] = ACTIONS(1552), + [anon_sym_for] = ACTIONS(1552), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_impl] = ACTIONS(1552), + [anon_sym_let] = ACTIONS(1552), + [anon_sym_loop] = ACTIONS(1552), + [anon_sym_match] = ACTIONS(1552), + [anon_sym_mod] = ACTIONS(1552), + [anon_sym_pub] = ACTIONS(1552), + [anon_sym_return] = ACTIONS(1552), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_struct] = ACTIONS(1552), + [anon_sym_trait] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_union] = ACTIONS(1552), + [anon_sym_unsafe] = ACTIONS(1552), + [anon_sym_use] = ACTIONS(1552), + [anon_sym_while] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(1550), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_extern] = ACTIONS(1552), + [anon_sym_LT] = ACTIONS(1550), + [anon_sym_COLON_COLON] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1550), + [anon_sym_DOT_DOT] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1550), + [anon_sym_PIPE] = ACTIONS(1550), + [anon_sym_yield] = ACTIONS(1552), + [anon_sym_move] = ACTIONS(1552), + [sym_integer_literal] = ACTIONS(1550), + [aux_sym_string_literal_token1] = ACTIONS(1550), + [sym_char_literal] = ACTIONS(1550), + [anon_sym_true] = ACTIONS(1552), + [anon_sym_false] = ACTIONS(1552), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1552), + [sym_super] = ACTIONS(1552), + [sym_crate] = ACTIONS(1552), + [sym_metavariable] = ACTIONS(1550), + [sym_raw_string_literal] = ACTIONS(1550), + [sym_float_literal] = ACTIONS(1550), [sym_block_comment] = ACTIONS(3), }, [368] = { - [ts_builtin_sym_end] = ACTIONS(1552), - [sym_identifier] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_macro_rules_BANG] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1552), - [anon_sym_u8] = ACTIONS(1554), - [anon_sym_i8] = ACTIONS(1554), - [anon_sym_u16] = ACTIONS(1554), - [anon_sym_i16] = ACTIONS(1554), - [anon_sym_u32] = ACTIONS(1554), - [anon_sym_i32] = ACTIONS(1554), - [anon_sym_u64] = ACTIONS(1554), - [anon_sym_i64] = ACTIONS(1554), - [anon_sym_u128] = ACTIONS(1554), - [anon_sym_i128] = ACTIONS(1554), - [anon_sym_isize] = ACTIONS(1554), - [anon_sym_usize] = ACTIONS(1554), - [anon_sym_f32] = ACTIONS(1554), - [anon_sym_f64] = ACTIONS(1554), - [anon_sym_bool] = ACTIONS(1554), - [anon_sym_str] = ACTIONS(1554), - [anon_sym_char] = ACTIONS(1554), - [anon_sym_SQUOTE] = ACTIONS(1554), - [anon_sym_async] = ACTIONS(1554), - [anon_sym_break] = ACTIONS(1554), - [anon_sym_const] = ACTIONS(1554), - [anon_sym_continue] = ACTIONS(1554), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_enum] = ACTIONS(1554), - [anon_sym_fn] = ACTIONS(1554), - [anon_sym_for] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1554), - [anon_sym_impl] = ACTIONS(1554), - [anon_sym_let] = ACTIONS(1554), - [anon_sym_loop] = ACTIONS(1554), - [anon_sym_match] = ACTIONS(1554), - [anon_sym_mod] = ACTIONS(1554), - [anon_sym_pub] = ACTIONS(1554), - [anon_sym_return] = ACTIONS(1554), - [anon_sym_static] = ACTIONS(1554), - [anon_sym_struct] = ACTIONS(1554), - [anon_sym_trait] = ACTIONS(1554), - [anon_sym_type] = ACTIONS(1554), - [anon_sym_union] = ACTIONS(1554), - [anon_sym_unsafe] = ACTIONS(1554), - [anon_sym_use] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(1552), - [anon_sym_BANG] = ACTIONS(1552), - [anon_sym_extern] = ACTIONS(1554), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_COLON_COLON] = ACTIONS(1552), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1552), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_yield] = ACTIONS(1554), - [anon_sym_move] = ACTIONS(1554), - [sym_integer_literal] = ACTIONS(1552), - [aux_sym_string_literal_token1] = ACTIONS(1552), - [sym_char_literal] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1554), - [anon_sym_false] = ACTIONS(1554), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1554), - [sym_super] = ACTIONS(1554), - [sym_crate] = ACTIONS(1554), - [sym_metavariable] = ACTIONS(1552), - [sym_raw_string_literal] = ACTIONS(1552), - [sym_float_literal] = ACTIONS(1552), + [ts_builtin_sym_end] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym_macro_rules_BANG] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_RBRACE] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1554), + [anon_sym_u8] = ACTIONS(1556), + [anon_sym_i8] = ACTIONS(1556), + [anon_sym_u16] = ACTIONS(1556), + [anon_sym_i16] = ACTIONS(1556), + [anon_sym_u32] = ACTIONS(1556), + [anon_sym_i32] = ACTIONS(1556), + [anon_sym_u64] = ACTIONS(1556), + [anon_sym_i64] = ACTIONS(1556), + [anon_sym_u128] = ACTIONS(1556), + [anon_sym_i128] = ACTIONS(1556), + [anon_sym_isize] = ACTIONS(1556), + [anon_sym_usize] = ACTIONS(1556), + [anon_sym_f32] = ACTIONS(1556), + [anon_sym_f64] = ACTIONS(1556), + [anon_sym_bool] = ACTIONS(1556), + [anon_sym_str] = ACTIONS(1556), + [anon_sym_char] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1556), + [anon_sym_async] = ACTIONS(1556), + [anon_sym_break] = ACTIONS(1556), + [anon_sym_const] = ACTIONS(1556), + [anon_sym_continue] = ACTIONS(1556), + [anon_sym_default] = ACTIONS(1556), + [anon_sym_enum] = ACTIONS(1556), + [anon_sym_fn] = ACTIONS(1556), + [anon_sym_for] = ACTIONS(1556), + [anon_sym_if] = ACTIONS(1556), + [anon_sym_impl] = ACTIONS(1556), + [anon_sym_let] = ACTIONS(1556), + [anon_sym_loop] = ACTIONS(1556), + [anon_sym_match] = ACTIONS(1556), + [anon_sym_mod] = ACTIONS(1556), + [anon_sym_pub] = ACTIONS(1556), + [anon_sym_return] = ACTIONS(1556), + [anon_sym_static] = ACTIONS(1556), + [anon_sym_struct] = ACTIONS(1556), + [anon_sym_trait] = ACTIONS(1556), + [anon_sym_type] = ACTIONS(1556), + [anon_sym_union] = ACTIONS(1556), + [anon_sym_unsafe] = ACTIONS(1556), + [anon_sym_use] = ACTIONS(1556), + [anon_sym_while] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(1554), + [anon_sym_BANG] = ACTIONS(1554), + [anon_sym_extern] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(1554), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1554), + [anon_sym_DOT_DOT] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_PIPE] = ACTIONS(1554), + [anon_sym_yield] = ACTIONS(1556), + [anon_sym_move] = ACTIONS(1556), + [sym_integer_literal] = ACTIONS(1554), + [aux_sym_string_literal_token1] = ACTIONS(1554), + [sym_char_literal] = ACTIONS(1554), + [anon_sym_true] = ACTIONS(1556), + [anon_sym_false] = ACTIONS(1556), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1556), + [sym_super] = ACTIONS(1556), + [sym_crate] = ACTIONS(1556), + [sym_metavariable] = ACTIONS(1554), + [sym_raw_string_literal] = ACTIONS(1554), + [sym_float_literal] = ACTIONS(1554), [sym_block_comment] = ACTIONS(3), }, [369] = { - [ts_builtin_sym_end] = ACTIONS(1556), - [sym_identifier] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_macro_rules_BANG] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_u8] = ACTIONS(1558), - [anon_sym_i8] = ACTIONS(1558), - [anon_sym_u16] = ACTIONS(1558), - [anon_sym_i16] = ACTIONS(1558), - [anon_sym_u32] = ACTIONS(1558), - [anon_sym_i32] = ACTIONS(1558), - [anon_sym_u64] = ACTIONS(1558), - [anon_sym_i64] = ACTIONS(1558), - [anon_sym_u128] = ACTIONS(1558), - [anon_sym_i128] = ACTIONS(1558), - [anon_sym_isize] = ACTIONS(1558), - [anon_sym_usize] = ACTIONS(1558), - [anon_sym_f32] = ACTIONS(1558), - [anon_sym_f64] = ACTIONS(1558), - [anon_sym_bool] = ACTIONS(1558), - [anon_sym_str] = ACTIONS(1558), - [anon_sym_char] = ACTIONS(1558), - [anon_sym_SQUOTE] = ACTIONS(1558), - [anon_sym_async] = ACTIONS(1558), - [anon_sym_break] = ACTIONS(1558), - [anon_sym_const] = ACTIONS(1558), - [anon_sym_continue] = ACTIONS(1558), - [anon_sym_default] = ACTIONS(1558), - [anon_sym_enum] = ACTIONS(1558), - [anon_sym_fn] = ACTIONS(1558), - [anon_sym_for] = ACTIONS(1558), - [anon_sym_if] = ACTIONS(1558), - [anon_sym_impl] = ACTIONS(1558), - [anon_sym_let] = ACTIONS(1558), - [anon_sym_loop] = ACTIONS(1558), - [anon_sym_match] = ACTIONS(1558), - [anon_sym_mod] = ACTIONS(1558), - [anon_sym_pub] = ACTIONS(1558), - [anon_sym_return] = ACTIONS(1558), - [anon_sym_static] = ACTIONS(1558), - [anon_sym_struct] = ACTIONS(1558), - [anon_sym_trait] = ACTIONS(1558), - [anon_sym_type] = ACTIONS(1558), - [anon_sym_union] = ACTIONS(1558), - [anon_sym_unsafe] = ACTIONS(1558), - [anon_sym_use] = ACTIONS(1558), - [anon_sym_while] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(1556), - [anon_sym_BANG] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1558), - [anon_sym_LT] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_move] = ACTIONS(1558), - [sym_integer_literal] = ACTIONS(1556), - [aux_sym_string_literal_token1] = ACTIONS(1556), - [sym_char_literal] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1558), - [anon_sym_false] = ACTIONS(1558), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1558), - [sym_super] = ACTIONS(1558), - [sym_crate] = ACTIONS(1558), - [sym_metavariable] = ACTIONS(1556), - [sym_raw_string_literal] = ACTIONS(1556), - [sym_float_literal] = ACTIONS(1556), + [ts_builtin_sym_end] = ACTIONS(1558), + [sym_identifier] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_macro_rules_BANG] = ACTIONS(1558), + [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1558), + [anon_sym_u8] = ACTIONS(1560), + [anon_sym_i8] = ACTIONS(1560), + [anon_sym_u16] = ACTIONS(1560), + [anon_sym_i16] = ACTIONS(1560), + [anon_sym_u32] = ACTIONS(1560), + [anon_sym_i32] = ACTIONS(1560), + [anon_sym_u64] = ACTIONS(1560), + [anon_sym_i64] = ACTIONS(1560), + [anon_sym_u128] = ACTIONS(1560), + [anon_sym_i128] = ACTIONS(1560), + [anon_sym_isize] = ACTIONS(1560), + [anon_sym_usize] = ACTIONS(1560), + [anon_sym_f32] = ACTIONS(1560), + [anon_sym_f64] = ACTIONS(1560), + [anon_sym_bool] = ACTIONS(1560), + [anon_sym_str] = ACTIONS(1560), + [anon_sym_char] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(1560), + [anon_sym_break] = ACTIONS(1560), + [anon_sym_const] = ACTIONS(1560), + [anon_sym_continue] = ACTIONS(1560), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_enum] = ACTIONS(1560), + [anon_sym_fn] = ACTIONS(1560), + [anon_sym_for] = ACTIONS(1560), + [anon_sym_if] = ACTIONS(1560), + [anon_sym_impl] = ACTIONS(1560), + [anon_sym_let] = ACTIONS(1560), + [anon_sym_loop] = ACTIONS(1560), + [anon_sym_match] = ACTIONS(1560), + [anon_sym_mod] = ACTIONS(1560), + [anon_sym_pub] = ACTIONS(1560), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_static] = ACTIONS(1560), + [anon_sym_struct] = ACTIONS(1560), + [anon_sym_trait] = ACTIONS(1560), + [anon_sym_type] = ACTIONS(1560), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_unsafe] = ACTIONS(1560), + [anon_sym_use] = ACTIONS(1560), + [anon_sym_while] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(1558), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_extern] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1558), + [anon_sym_COLON_COLON] = ACTIONS(1558), + [anon_sym_AMP] = ACTIONS(1558), + [anon_sym_DOT_DOT] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_yield] = ACTIONS(1560), + [anon_sym_move] = ACTIONS(1560), + [sym_integer_literal] = ACTIONS(1558), + [aux_sym_string_literal_token1] = ACTIONS(1558), + [sym_char_literal] = ACTIONS(1558), + [anon_sym_true] = ACTIONS(1560), + [anon_sym_false] = ACTIONS(1560), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1560), + [sym_super] = ACTIONS(1560), + [sym_crate] = ACTIONS(1560), + [sym_metavariable] = ACTIONS(1558), + [sym_raw_string_literal] = ACTIONS(1558), + [sym_float_literal] = ACTIONS(1558), [sym_block_comment] = ACTIONS(3), }, [370] = { - [ts_builtin_sym_end] = ACTIONS(1560), - [sym_identifier] = ACTIONS(1562), - [anon_sym_SEMI] = ACTIONS(1560), - [anon_sym_macro_rules_BANG] = ACTIONS(1560), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_u8] = ACTIONS(1562), - [anon_sym_i8] = ACTIONS(1562), - [anon_sym_u16] = ACTIONS(1562), - [anon_sym_i16] = ACTIONS(1562), - [anon_sym_u32] = ACTIONS(1562), - [anon_sym_i32] = ACTIONS(1562), - [anon_sym_u64] = ACTIONS(1562), - [anon_sym_i64] = ACTIONS(1562), - [anon_sym_u128] = ACTIONS(1562), - [anon_sym_i128] = ACTIONS(1562), - [anon_sym_isize] = ACTIONS(1562), - [anon_sym_usize] = ACTIONS(1562), - [anon_sym_f32] = ACTIONS(1562), - [anon_sym_f64] = ACTIONS(1562), - [anon_sym_bool] = ACTIONS(1562), - [anon_sym_str] = ACTIONS(1562), - [anon_sym_char] = ACTIONS(1562), - [anon_sym_SQUOTE] = ACTIONS(1562), - [anon_sym_async] = ACTIONS(1562), - [anon_sym_break] = ACTIONS(1562), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_continue] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1562), - [anon_sym_enum] = ACTIONS(1562), - [anon_sym_fn] = ACTIONS(1562), - [anon_sym_for] = ACTIONS(1562), - [anon_sym_if] = ACTIONS(1562), - [anon_sym_impl] = ACTIONS(1562), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_loop] = ACTIONS(1562), - [anon_sym_match] = ACTIONS(1562), - [anon_sym_mod] = ACTIONS(1562), - [anon_sym_pub] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_struct] = ACTIONS(1562), - [anon_sym_trait] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_union] = ACTIONS(1562), - [anon_sym_unsafe] = ACTIONS(1562), - [anon_sym_use] = ACTIONS(1562), - [anon_sym_while] = ACTIONS(1562), - [anon_sym_POUND] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1560), - [anon_sym_extern] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1560), - [anon_sym_COLON_COLON] = ACTIONS(1560), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_DOT_DOT] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_PIPE] = ACTIONS(1560), - [anon_sym_yield] = ACTIONS(1562), - [anon_sym_move] = ACTIONS(1562), - [sym_integer_literal] = ACTIONS(1560), - [aux_sym_string_literal_token1] = ACTIONS(1560), - [sym_char_literal] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1562), - [anon_sym_false] = ACTIONS(1562), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1562), - [sym_super] = ACTIONS(1562), - [sym_crate] = ACTIONS(1562), - [sym_metavariable] = ACTIONS(1560), - [sym_raw_string_literal] = ACTIONS(1560), - [sym_float_literal] = ACTIONS(1560), + [ts_builtin_sym_end] = ACTIONS(1562), + [sym_identifier] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1562), + [anon_sym_macro_rules_BANG] = ACTIONS(1562), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1562), + [anon_sym_RBRACE] = ACTIONS(1562), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1562), + [anon_sym_u8] = ACTIONS(1564), + [anon_sym_i8] = ACTIONS(1564), + [anon_sym_u16] = ACTIONS(1564), + [anon_sym_i16] = ACTIONS(1564), + [anon_sym_u32] = ACTIONS(1564), + [anon_sym_i32] = ACTIONS(1564), + [anon_sym_u64] = ACTIONS(1564), + [anon_sym_i64] = ACTIONS(1564), + [anon_sym_u128] = ACTIONS(1564), + [anon_sym_i128] = ACTIONS(1564), + [anon_sym_isize] = ACTIONS(1564), + [anon_sym_usize] = ACTIONS(1564), + [anon_sym_f32] = ACTIONS(1564), + [anon_sym_f64] = ACTIONS(1564), + [anon_sym_bool] = ACTIONS(1564), + [anon_sym_str] = ACTIONS(1564), + [anon_sym_char] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [anon_sym_async] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1564), + [anon_sym_const] = ACTIONS(1564), + [anon_sym_continue] = ACTIONS(1564), + [anon_sym_default] = ACTIONS(1564), + [anon_sym_enum] = ACTIONS(1564), + [anon_sym_fn] = ACTIONS(1564), + [anon_sym_for] = ACTIONS(1564), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_impl] = ACTIONS(1564), + [anon_sym_let] = ACTIONS(1564), + [anon_sym_loop] = ACTIONS(1564), + [anon_sym_match] = ACTIONS(1564), + [anon_sym_mod] = ACTIONS(1564), + [anon_sym_pub] = ACTIONS(1564), + [anon_sym_return] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_struct] = ACTIONS(1564), + [anon_sym_trait] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_union] = ACTIONS(1564), + [anon_sym_unsafe] = ACTIONS(1564), + [anon_sym_use] = ACTIONS(1564), + [anon_sym_while] = ACTIONS(1564), + [anon_sym_POUND] = ACTIONS(1562), + [anon_sym_BANG] = ACTIONS(1562), + [anon_sym_extern] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(1562), + [anon_sym_COLON_COLON] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_DOT_DOT] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_move] = ACTIONS(1564), + [sym_integer_literal] = ACTIONS(1562), + [aux_sym_string_literal_token1] = ACTIONS(1562), + [sym_char_literal] = ACTIONS(1562), + [anon_sym_true] = ACTIONS(1564), + [anon_sym_false] = ACTIONS(1564), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1564), + [sym_super] = ACTIONS(1564), + [sym_crate] = ACTIONS(1564), + [sym_metavariable] = ACTIONS(1562), + [sym_raw_string_literal] = ACTIONS(1562), + [sym_float_literal] = ACTIONS(1562), [sym_block_comment] = ACTIONS(3), }, [371] = { - [ts_builtin_sym_end] = ACTIONS(1564), - [sym_identifier] = ACTIONS(1566), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_macro_rules_BANG] = ACTIONS(1564), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_RBRACE] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1564), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_SQUOTE] = ACTIONS(1566), - [anon_sym_async] = ACTIONS(1566), - [anon_sym_break] = ACTIONS(1566), - [anon_sym_const] = ACTIONS(1566), - [anon_sym_continue] = ACTIONS(1566), - [anon_sym_default] = ACTIONS(1566), - [anon_sym_enum] = ACTIONS(1566), - [anon_sym_fn] = ACTIONS(1566), - [anon_sym_for] = ACTIONS(1566), - [anon_sym_if] = ACTIONS(1566), - [anon_sym_impl] = ACTIONS(1566), - [anon_sym_let] = ACTIONS(1566), - [anon_sym_loop] = ACTIONS(1566), - [anon_sym_match] = ACTIONS(1566), - [anon_sym_mod] = ACTIONS(1566), - [anon_sym_pub] = ACTIONS(1566), - [anon_sym_return] = ACTIONS(1566), - [anon_sym_static] = ACTIONS(1566), - [anon_sym_struct] = ACTIONS(1566), - [anon_sym_trait] = ACTIONS(1566), - [anon_sym_type] = ACTIONS(1566), - [anon_sym_union] = ACTIONS(1566), - [anon_sym_unsafe] = ACTIONS(1566), - [anon_sym_use] = ACTIONS(1566), - [anon_sym_while] = ACTIONS(1566), - [anon_sym_POUND] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1564), - [anon_sym_extern] = ACTIONS(1566), - [anon_sym_LT] = ACTIONS(1564), - [anon_sym_COLON_COLON] = ACTIONS(1564), - [anon_sym_AMP] = ACTIONS(1564), - [anon_sym_DOT_DOT] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_yield] = ACTIONS(1566), - [anon_sym_move] = ACTIONS(1566), - [sym_integer_literal] = ACTIONS(1564), - [aux_sym_string_literal_token1] = ACTIONS(1564), - [sym_char_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(1566), - [anon_sym_false] = ACTIONS(1566), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1566), - [sym_super] = ACTIONS(1566), - [sym_crate] = ACTIONS(1566), - [sym_metavariable] = ACTIONS(1564), - [sym_raw_string_literal] = ACTIONS(1564), - [sym_float_literal] = ACTIONS(1564), + [ts_builtin_sym_end] = ACTIONS(1566), + [sym_identifier] = ACTIONS(1568), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_macro_rules_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1566), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_u8] = ACTIONS(1568), + [anon_sym_i8] = ACTIONS(1568), + [anon_sym_u16] = ACTIONS(1568), + [anon_sym_i16] = ACTIONS(1568), + [anon_sym_u32] = ACTIONS(1568), + [anon_sym_i32] = ACTIONS(1568), + [anon_sym_u64] = ACTIONS(1568), + [anon_sym_i64] = ACTIONS(1568), + [anon_sym_u128] = ACTIONS(1568), + [anon_sym_i128] = ACTIONS(1568), + [anon_sym_isize] = ACTIONS(1568), + [anon_sym_usize] = ACTIONS(1568), + [anon_sym_f32] = ACTIONS(1568), + [anon_sym_f64] = ACTIONS(1568), + [anon_sym_bool] = ACTIONS(1568), + [anon_sym_str] = ACTIONS(1568), + [anon_sym_char] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1568), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_break] = ACTIONS(1568), + [anon_sym_const] = ACTIONS(1568), + [anon_sym_continue] = ACTIONS(1568), + [anon_sym_default] = ACTIONS(1568), + [anon_sym_enum] = ACTIONS(1568), + [anon_sym_fn] = ACTIONS(1568), + [anon_sym_for] = ACTIONS(1568), + [anon_sym_if] = ACTIONS(1568), + [anon_sym_impl] = ACTIONS(1568), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_loop] = ACTIONS(1568), + [anon_sym_match] = ACTIONS(1568), + [anon_sym_mod] = ACTIONS(1568), + [anon_sym_pub] = ACTIONS(1568), + [anon_sym_return] = ACTIONS(1568), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_struct] = ACTIONS(1568), + [anon_sym_trait] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_union] = ACTIONS(1568), + [anon_sym_unsafe] = ACTIONS(1568), + [anon_sym_use] = ACTIONS(1568), + [anon_sym_while] = ACTIONS(1568), + [anon_sym_POUND] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_extern] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(1566), + [anon_sym_COLON_COLON] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_DOT_DOT] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1566), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_yield] = ACTIONS(1568), + [anon_sym_move] = ACTIONS(1568), + [sym_integer_literal] = ACTIONS(1566), + [aux_sym_string_literal_token1] = ACTIONS(1566), + [sym_char_literal] = ACTIONS(1566), + [anon_sym_true] = ACTIONS(1568), + [anon_sym_false] = ACTIONS(1568), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1568), + [sym_super] = ACTIONS(1568), + [sym_crate] = ACTIONS(1568), + [sym_metavariable] = ACTIONS(1566), + [sym_raw_string_literal] = ACTIONS(1566), + [sym_float_literal] = ACTIONS(1566), [sym_block_comment] = ACTIONS(3), }, [372] = { - [ts_builtin_sym_end] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [anon_sym_SEMI] = ACTIONS(1568), - [anon_sym_macro_rules_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_RBRACE] = ACTIONS(1568), - [anon_sym_LBRACK] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1568), - [anon_sym_u8] = ACTIONS(1570), - [anon_sym_i8] = ACTIONS(1570), - [anon_sym_u16] = ACTIONS(1570), - [anon_sym_i16] = ACTIONS(1570), - [anon_sym_u32] = ACTIONS(1570), - [anon_sym_i32] = ACTIONS(1570), - [anon_sym_u64] = ACTIONS(1570), - [anon_sym_i64] = ACTIONS(1570), - [anon_sym_u128] = ACTIONS(1570), - [anon_sym_i128] = ACTIONS(1570), - [anon_sym_isize] = ACTIONS(1570), - [anon_sym_usize] = ACTIONS(1570), - [anon_sym_f32] = ACTIONS(1570), - [anon_sym_f64] = ACTIONS(1570), - [anon_sym_bool] = ACTIONS(1570), - [anon_sym_str] = ACTIONS(1570), - [anon_sym_char] = ACTIONS(1570), - [anon_sym_SQUOTE] = ACTIONS(1570), - [anon_sym_async] = ACTIONS(1570), - [anon_sym_break] = ACTIONS(1570), - [anon_sym_const] = ACTIONS(1570), - [anon_sym_continue] = ACTIONS(1570), - [anon_sym_default] = ACTIONS(1570), - [anon_sym_enum] = ACTIONS(1570), - [anon_sym_fn] = ACTIONS(1570), - [anon_sym_for] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_impl] = ACTIONS(1570), - [anon_sym_let] = ACTIONS(1570), - [anon_sym_loop] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1570), - [anon_sym_mod] = ACTIONS(1570), - [anon_sym_pub] = ACTIONS(1570), - [anon_sym_return] = ACTIONS(1570), - [anon_sym_static] = ACTIONS(1570), - [anon_sym_struct] = ACTIONS(1570), - [anon_sym_trait] = ACTIONS(1570), - [anon_sym_type] = ACTIONS(1570), - [anon_sym_union] = ACTIONS(1570), - [anon_sym_unsafe] = ACTIONS(1570), - [anon_sym_use] = ACTIONS(1570), - [anon_sym_while] = ACTIONS(1570), - [anon_sym_POUND] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_extern] = ACTIONS(1570), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_COLON_COLON] = ACTIONS(1568), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_DOT_DOT] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_yield] = ACTIONS(1570), - [anon_sym_move] = ACTIONS(1570), - [sym_integer_literal] = ACTIONS(1568), - [aux_sym_string_literal_token1] = ACTIONS(1568), - [sym_char_literal] = ACTIONS(1568), - [anon_sym_true] = ACTIONS(1570), - [anon_sym_false] = ACTIONS(1570), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1570), - [sym_super] = ACTIONS(1570), - [sym_crate] = ACTIONS(1570), - [sym_metavariable] = ACTIONS(1568), - [sym_raw_string_literal] = ACTIONS(1568), - [sym_float_literal] = ACTIONS(1568), + [ts_builtin_sym_end] = ACTIONS(1570), + [sym_identifier] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1570), + [anon_sym_macro_rules_BANG] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1570), + [anon_sym_RBRACE] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1570), + [anon_sym_STAR] = ACTIONS(1570), + [anon_sym_u8] = ACTIONS(1572), + [anon_sym_i8] = ACTIONS(1572), + [anon_sym_u16] = ACTIONS(1572), + [anon_sym_i16] = ACTIONS(1572), + [anon_sym_u32] = ACTIONS(1572), + [anon_sym_i32] = ACTIONS(1572), + [anon_sym_u64] = ACTIONS(1572), + [anon_sym_i64] = ACTIONS(1572), + [anon_sym_u128] = ACTIONS(1572), + [anon_sym_i128] = ACTIONS(1572), + [anon_sym_isize] = ACTIONS(1572), + [anon_sym_usize] = ACTIONS(1572), + [anon_sym_f32] = ACTIONS(1572), + [anon_sym_f64] = ACTIONS(1572), + [anon_sym_bool] = ACTIONS(1572), + [anon_sym_str] = ACTIONS(1572), + [anon_sym_char] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(1572), + [anon_sym_async] = ACTIONS(1572), + [anon_sym_break] = ACTIONS(1572), + [anon_sym_const] = ACTIONS(1572), + [anon_sym_continue] = ACTIONS(1572), + [anon_sym_default] = ACTIONS(1572), + [anon_sym_enum] = ACTIONS(1572), + [anon_sym_fn] = ACTIONS(1572), + [anon_sym_for] = ACTIONS(1572), + [anon_sym_if] = ACTIONS(1572), + [anon_sym_impl] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1572), + [anon_sym_loop] = ACTIONS(1572), + [anon_sym_match] = ACTIONS(1572), + [anon_sym_mod] = ACTIONS(1572), + [anon_sym_pub] = ACTIONS(1572), + [anon_sym_return] = ACTIONS(1572), + [anon_sym_static] = ACTIONS(1572), + [anon_sym_struct] = ACTIONS(1572), + [anon_sym_trait] = ACTIONS(1572), + [anon_sym_type] = ACTIONS(1572), + [anon_sym_union] = ACTIONS(1572), + [anon_sym_unsafe] = ACTIONS(1572), + [anon_sym_use] = ACTIONS(1572), + [anon_sym_while] = ACTIONS(1572), + [anon_sym_POUND] = ACTIONS(1570), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_extern] = ACTIONS(1572), + [anon_sym_LT] = ACTIONS(1570), + [anon_sym_COLON_COLON] = ACTIONS(1570), + [anon_sym_AMP] = ACTIONS(1570), + [anon_sym_DOT_DOT] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_PIPE] = ACTIONS(1570), + [anon_sym_yield] = ACTIONS(1572), + [anon_sym_move] = ACTIONS(1572), + [sym_integer_literal] = ACTIONS(1570), + [aux_sym_string_literal_token1] = ACTIONS(1570), + [sym_char_literal] = ACTIONS(1570), + [anon_sym_true] = ACTIONS(1572), + [anon_sym_false] = ACTIONS(1572), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1572), + [sym_super] = ACTIONS(1572), + [sym_crate] = ACTIONS(1572), + [sym_metavariable] = ACTIONS(1570), + [sym_raw_string_literal] = ACTIONS(1570), + [sym_float_literal] = ACTIONS(1570), [sym_block_comment] = ACTIONS(3), }, [373] = { - [ts_builtin_sym_end] = ACTIONS(1572), - [sym_identifier] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_macro_rules_BANG] = ACTIONS(1572), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1572), - [anon_sym_u8] = ACTIONS(1574), - [anon_sym_i8] = ACTIONS(1574), - [anon_sym_u16] = ACTIONS(1574), - [anon_sym_i16] = ACTIONS(1574), - [anon_sym_u32] = ACTIONS(1574), - [anon_sym_i32] = ACTIONS(1574), - [anon_sym_u64] = ACTIONS(1574), - [anon_sym_i64] = ACTIONS(1574), - [anon_sym_u128] = ACTIONS(1574), - [anon_sym_i128] = ACTIONS(1574), - [anon_sym_isize] = ACTIONS(1574), - [anon_sym_usize] = ACTIONS(1574), - [anon_sym_f32] = ACTIONS(1574), - [anon_sym_f64] = ACTIONS(1574), - [anon_sym_bool] = ACTIONS(1574), - [anon_sym_str] = ACTIONS(1574), - [anon_sym_char] = ACTIONS(1574), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1574), - [anon_sym_break] = ACTIONS(1574), - [anon_sym_const] = ACTIONS(1574), - [anon_sym_continue] = ACTIONS(1574), - [anon_sym_default] = ACTIONS(1574), - [anon_sym_enum] = ACTIONS(1574), - [anon_sym_fn] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1574), - [anon_sym_if] = ACTIONS(1574), - [anon_sym_impl] = ACTIONS(1574), - [anon_sym_let] = ACTIONS(1574), - [anon_sym_loop] = ACTIONS(1574), - [anon_sym_match] = ACTIONS(1574), - [anon_sym_mod] = ACTIONS(1574), - [anon_sym_pub] = ACTIONS(1574), - [anon_sym_return] = ACTIONS(1574), - [anon_sym_static] = ACTIONS(1574), - [anon_sym_struct] = ACTIONS(1574), - [anon_sym_trait] = ACTIONS(1574), - [anon_sym_type] = ACTIONS(1574), - [anon_sym_union] = ACTIONS(1574), - [anon_sym_unsafe] = ACTIONS(1574), - [anon_sym_use] = ACTIONS(1574), - [anon_sym_while] = ACTIONS(1574), - [anon_sym_POUND] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1572), - [anon_sym_extern] = ACTIONS(1574), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_DOT_DOT] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_yield] = ACTIONS(1574), - [anon_sym_move] = ACTIONS(1574), - [sym_integer_literal] = ACTIONS(1572), - [aux_sym_string_literal_token1] = ACTIONS(1572), - [sym_char_literal] = ACTIONS(1572), - [anon_sym_true] = ACTIONS(1574), - [anon_sym_false] = ACTIONS(1574), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1574), - [sym_super] = ACTIONS(1574), - [sym_crate] = ACTIONS(1574), - [sym_metavariable] = ACTIONS(1572), - [sym_raw_string_literal] = ACTIONS(1572), - [sym_float_literal] = ACTIONS(1572), + [ts_builtin_sym_end] = ACTIONS(1574), + [sym_identifier] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_macro_rules_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1574), + [anon_sym_LBRACE] = ACTIONS(1574), + [anon_sym_RBRACE] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1574), + [anon_sym_STAR] = ACTIONS(1574), + [anon_sym_u8] = ACTIONS(1576), + [anon_sym_i8] = ACTIONS(1576), + [anon_sym_u16] = ACTIONS(1576), + [anon_sym_i16] = ACTIONS(1576), + [anon_sym_u32] = ACTIONS(1576), + [anon_sym_i32] = ACTIONS(1576), + [anon_sym_u64] = ACTIONS(1576), + [anon_sym_i64] = ACTIONS(1576), + [anon_sym_u128] = ACTIONS(1576), + [anon_sym_i128] = ACTIONS(1576), + [anon_sym_isize] = ACTIONS(1576), + [anon_sym_usize] = ACTIONS(1576), + [anon_sym_f32] = ACTIONS(1576), + [anon_sym_f64] = ACTIONS(1576), + [anon_sym_bool] = ACTIONS(1576), + [anon_sym_str] = ACTIONS(1576), + [anon_sym_char] = ACTIONS(1576), + [anon_sym_SQUOTE] = ACTIONS(1576), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_break] = ACTIONS(1576), + [anon_sym_const] = ACTIONS(1576), + [anon_sym_continue] = ACTIONS(1576), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_enum] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1576), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_if] = ACTIONS(1576), + [anon_sym_impl] = ACTIONS(1576), + [anon_sym_let] = ACTIONS(1576), + [anon_sym_loop] = ACTIONS(1576), + [anon_sym_match] = ACTIONS(1576), + [anon_sym_mod] = ACTIONS(1576), + [anon_sym_pub] = ACTIONS(1576), + [anon_sym_return] = ACTIONS(1576), + [anon_sym_static] = ACTIONS(1576), + [anon_sym_struct] = ACTIONS(1576), + [anon_sym_trait] = ACTIONS(1576), + [anon_sym_type] = ACTIONS(1576), + [anon_sym_union] = ACTIONS(1576), + [anon_sym_unsafe] = ACTIONS(1576), + [anon_sym_use] = ACTIONS(1576), + [anon_sym_while] = ACTIONS(1576), + [anon_sym_POUND] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_extern] = ACTIONS(1576), + [anon_sym_LT] = ACTIONS(1574), + [anon_sym_COLON_COLON] = ACTIONS(1574), + [anon_sym_AMP] = ACTIONS(1574), + [anon_sym_DOT_DOT] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_yield] = ACTIONS(1576), + [anon_sym_move] = ACTIONS(1576), + [sym_integer_literal] = ACTIONS(1574), + [aux_sym_string_literal_token1] = ACTIONS(1574), + [sym_char_literal] = ACTIONS(1574), + [anon_sym_true] = ACTIONS(1576), + [anon_sym_false] = ACTIONS(1576), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1576), + [sym_super] = ACTIONS(1576), + [sym_crate] = ACTIONS(1576), + [sym_metavariable] = ACTIONS(1574), + [sym_raw_string_literal] = ACTIONS(1574), + [sym_float_literal] = ACTIONS(1574), [sym_block_comment] = ACTIONS(3), }, [374] = { - [ts_builtin_sym_end] = ACTIONS(1576), - [sym_identifier] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [anon_sym_macro_rules_BANG] = ACTIONS(1576), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_RBRACE] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1576), - [anon_sym_u8] = ACTIONS(1578), - [anon_sym_i8] = ACTIONS(1578), - [anon_sym_u16] = ACTIONS(1578), - [anon_sym_i16] = ACTIONS(1578), - [anon_sym_u32] = ACTIONS(1578), - [anon_sym_i32] = ACTIONS(1578), - [anon_sym_u64] = ACTIONS(1578), - [anon_sym_i64] = ACTIONS(1578), - [anon_sym_u128] = ACTIONS(1578), - [anon_sym_i128] = ACTIONS(1578), - [anon_sym_isize] = ACTIONS(1578), - [anon_sym_usize] = ACTIONS(1578), - [anon_sym_f32] = ACTIONS(1578), - [anon_sym_f64] = ACTIONS(1578), - [anon_sym_bool] = ACTIONS(1578), - [anon_sym_str] = ACTIONS(1578), - [anon_sym_char] = ACTIONS(1578), - [anon_sym_SQUOTE] = ACTIONS(1578), - [anon_sym_async] = ACTIONS(1578), - [anon_sym_break] = ACTIONS(1578), - [anon_sym_const] = ACTIONS(1578), - [anon_sym_continue] = ACTIONS(1578), - [anon_sym_default] = ACTIONS(1578), - [anon_sym_enum] = ACTIONS(1578), - [anon_sym_fn] = ACTIONS(1578), - [anon_sym_for] = ACTIONS(1578), - [anon_sym_if] = ACTIONS(1578), - [anon_sym_impl] = ACTIONS(1578), - [anon_sym_let] = ACTIONS(1578), - [anon_sym_loop] = ACTIONS(1578), - [anon_sym_match] = ACTIONS(1578), - [anon_sym_mod] = ACTIONS(1578), - [anon_sym_pub] = ACTIONS(1578), - [anon_sym_return] = ACTIONS(1578), - [anon_sym_static] = ACTIONS(1578), - [anon_sym_struct] = ACTIONS(1578), - [anon_sym_trait] = ACTIONS(1578), - [anon_sym_type] = ACTIONS(1578), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1578), - [anon_sym_use] = ACTIONS(1578), - [anon_sym_while] = ACTIONS(1578), - [anon_sym_POUND] = ACTIONS(1576), - [anon_sym_BANG] = ACTIONS(1576), - [anon_sym_extern] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_COLON_COLON] = ACTIONS(1576), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_DOT_DOT] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_yield] = ACTIONS(1578), - [anon_sym_move] = ACTIONS(1578), - [sym_integer_literal] = ACTIONS(1576), - [aux_sym_string_literal_token1] = ACTIONS(1576), - [sym_char_literal] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1578), - [anon_sym_false] = ACTIONS(1578), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1578), - [sym_super] = ACTIONS(1578), - [sym_crate] = ACTIONS(1578), - [sym_metavariable] = ACTIONS(1576), - [sym_raw_string_literal] = ACTIONS(1576), - [sym_float_literal] = ACTIONS(1576), + [ts_builtin_sym_end] = ACTIONS(1578), + [sym_identifier] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_macro_rules_BANG] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_STAR] = ACTIONS(1578), + [anon_sym_u8] = ACTIONS(1580), + [anon_sym_i8] = ACTIONS(1580), + [anon_sym_u16] = ACTIONS(1580), + [anon_sym_i16] = ACTIONS(1580), + [anon_sym_u32] = ACTIONS(1580), + [anon_sym_i32] = ACTIONS(1580), + [anon_sym_u64] = ACTIONS(1580), + [anon_sym_i64] = ACTIONS(1580), + [anon_sym_u128] = ACTIONS(1580), + [anon_sym_i128] = ACTIONS(1580), + [anon_sym_isize] = ACTIONS(1580), + [anon_sym_usize] = ACTIONS(1580), + [anon_sym_f32] = ACTIONS(1580), + [anon_sym_f64] = ACTIONS(1580), + [anon_sym_bool] = ACTIONS(1580), + [anon_sym_str] = ACTIONS(1580), + [anon_sym_char] = ACTIONS(1580), + [anon_sym_SQUOTE] = ACTIONS(1580), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_break] = ACTIONS(1580), + [anon_sym_const] = ACTIONS(1580), + [anon_sym_continue] = ACTIONS(1580), + [anon_sym_default] = ACTIONS(1580), + [anon_sym_enum] = ACTIONS(1580), + [anon_sym_fn] = ACTIONS(1580), + [anon_sym_for] = ACTIONS(1580), + [anon_sym_if] = ACTIONS(1580), + [anon_sym_impl] = ACTIONS(1580), + [anon_sym_let] = ACTIONS(1580), + [anon_sym_loop] = ACTIONS(1580), + [anon_sym_match] = ACTIONS(1580), + [anon_sym_mod] = ACTIONS(1580), + [anon_sym_pub] = ACTIONS(1580), + [anon_sym_return] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1580), + [anon_sym_struct] = ACTIONS(1580), + [anon_sym_trait] = ACTIONS(1580), + [anon_sym_type] = ACTIONS(1580), + [anon_sym_union] = ACTIONS(1580), + [anon_sym_unsafe] = ACTIONS(1580), + [anon_sym_use] = ACTIONS(1580), + [anon_sym_while] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(1578), + [anon_sym_BANG] = ACTIONS(1578), + [anon_sym_extern] = ACTIONS(1580), + [anon_sym_LT] = ACTIONS(1578), + [anon_sym_COLON_COLON] = ACTIONS(1578), + [anon_sym_AMP] = ACTIONS(1578), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_DASH] = ACTIONS(1578), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_yield] = ACTIONS(1580), + [anon_sym_move] = ACTIONS(1580), + [sym_integer_literal] = ACTIONS(1578), + [aux_sym_string_literal_token1] = ACTIONS(1578), + [sym_char_literal] = ACTIONS(1578), + [anon_sym_true] = ACTIONS(1580), + [anon_sym_false] = ACTIONS(1580), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1580), + [sym_super] = ACTIONS(1580), + [sym_crate] = ACTIONS(1580), + [sym_metavariable] = ACTIONS(1578), + [sym_raw_string_literal] = ACTIONS(1578), + [sym_float_literal] = ACTIONS(1578), [sym_block_comment] = ACTIONS(3), }, [375] = { - [ts_builtin_sym_end] = ACTIONS(1580), - [sym_identifier] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_macro_rules_BANG] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_RBRACE] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_STAR] = ACTIONS(1580), - [anon_sym_u8] = ACTIONS(1582), - [anon_sym_i8] = ACTIONS(1582), - [anon_sym_u16] = ACTIONS(1582), - [anon_sym_i16] = ACTIONS(1582), - [anon_sym_u32] = ACTIONS(1582), - [anon_sym_i32] = ACTIONS(1582), - [anon_sym_u64] = ACTIONS(1582), - [anon_sym_i64] = ACTIONS(1582), - [anon_sym_u128] = ACTIONS(1582), - [anon_sym_i128] = ACTIONS(1582), - [anon_sym_isize] = ACTIONS(1582), - [anon_sym_usize] = ACTIONS(1582), - [anon_sym_f32] = ACTIONS(1582), - [anon_sym_f64] = ACTIONS(1582), - [anon_sym_bool] = ACTIONS(1582), - [anon_sym_str] = ACTIONS(1582), - [anon_sym_char] = ACTIONS(1582), - [anon_sym_SQUOTE] = ACTIONS(1582), - [anon_sym_async] = ACTIONS(1582), - [anon_sym_break] = ACTIONS(1582), - [anon_sym_const] = ACTIONS(1582), - [anon_sym_continue] = ACTIONS(1582), - [anon_sym_default] = ACTIONS(1582), - [anon_sym_enum] = ACTIONS(1582), - [anon_sym_fn] = ACTIONS(1582), - [anon_sym_for] = ACTIONS(1582), - [anon_sym_if] = ACTIONS(1582), - [anon_sym_impl] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1582), - [anon_sym_loop] = ACTIONS(1582), - [anon_sym_match] = ACTIONS(1582), - [anon_sym_mod] = ACTIONS(1582), - [anon_sym_pub] = ACTIONS(1582), - [anon_sym_return] = ACTIONS(1582), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_struct] = ACTIONS(1582), - [anon_sym_trait] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_union] = ACTIONS(1582), - [anon_sym_unsafe] = ACTIONS(1582), - [anon_sym_use] = ACTIONS(1582), - [anon_sym_while] = ACTIONS(1582), - [anon_sym_POUND] = ACTIONS(1580), - [anon_sym_BANG] = ACTIONS(1580), - [anon_sym_extern] = ACTIONS(1582), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_COLON_COLON] = ACTIONS(1580), - [anon_sym_AMP] = ACTIONS(1580), - [anon_sym_DOT_DOT] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(1580), - [anon_sym_yield] = ACTIONS(1582), - [anon_sym_move] = ACTIONS(1582), - [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1580), - [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1582), - [anon_sym_false] = ACTIONS(1582), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1580), - [sym_raw_string_literal] = ACTIONS(1580), - [sym_float_literal] = ACTIONS(1580), + [ts_builtin_sym_end] = ACTIONS(1582), + [sym_identifier] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_macro_rules_BANG] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(1582), + [anon_sym_u8] = ACTIONS(1584), + [anon_sym_i8] = ACTIONS(1584), + [anon_sym_u16] = ACTIONS(1584), + [anon_sym_i16] = ACTIONS(1584), + [anon_sym_u32] = ACTIONS(1584), + [anon_sym_i32] = ACTIONS(1584), + [anon_sym_u64] = ACTIONS(1584), + [anon_sym_i64] = ACTIONS(1584), + [anon_sym_u128] = ACTIONS(1584), + [anon_sym_i128] = ACTIONS(1584), + [anon_sym_isize] = ACTIONS(1584), + [anon_sym_usize] = ACTIONS(1584), + [anon_sym_f32] = ACTIONS(1584), + [anon_sym_f64] = ACTIONS(1584), + [anon_sym_bool] = ACTIONS(1584), + [anon_sym_str] = ACTIONS(1584), + [anon_sym_char] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1584), + [anon_sym_async] = ACTIONS(1584), + [anon_sym_break] = ACTIONS(1584), + [anon_sym_const] = ACTIONS(1584), + [anon_sym_continue] = ACTIONS(1584), + [anon_sym_default] = ACTIONS(1584), + [anon_sym_enum] = ACTIONS(1584), + [anon_sym_fn] = ACTIONS(1584), + [anon_sym_for] = ACTIONS(1584), + [anon_sym_if] = ACTIONS(1584), + [anon_sym_impl] = ACTIONS(1584), + [anon_sym_let] = ACTIONS(1584), + [anon_sym_loop] = ACTIONS(1584), + [anon_sym_match] = ACTIONS(1584), + [anon_sym_mod] = ACTIONS(1584), + [anon_sym_pub] = ACTIONS(1584), + [anon_sym_return] = ACTIONS(1584), + [anon_sym_static] = ACTIONS(1584), + [anon_sym_struct] = ACTIONS(1584), + [anon_sym_trait] = ACTIONS(1584), + [anon_sym_type] = ACTIONS(1584), + [anon_sym_union] = ACTIONS(1584), + [anon_sym_unsafe] = ACTIONS(1584), + [anon_sym_use] = ACTIONS(1584), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_POUND] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_extern] = ACTIONS(1584), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_COLON_COLON] = ACTIONS(1582), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_yield] = ACTIONS(1584), + [anon_sym_move] = ACTIONS(1584), + [sym_integer_literal] = ACTIONS(1582), + [aux_sym_string_literal_token1] = ACTIONS(1582), + [sym_char_literal] = ACTIONS(1582), + [anon_sym_true] = ACTIONS(1584), + [anon_sym_false] = ACTIONS(1584), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1584), + [sym_super] = ACTIONS(1584), + [sym_crate] = ACTIONS(1584), + [sym_metavariable] = ACTIONS(1582), + [sym_raw_string_literal] = ACTIONS(1582), + [sym_float_literal] = ACTIONS(1582), [sym_block_comment] = ACTIONS(3), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(1584), - [sym_identifier] = ACTIONS(1586), - [anon_sym_SEMI] = ACTIONS(1584), - [anon_sym_macro_rules_BANG] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(1584), - [anon_sym_u8] = ACTIONS(1586), - [anon_sym_i8] = ACTIONS(1586), - [anon_sym_u16] = ACTIONS(1586), - [anon_sym_i16] = ACTIONS(1586), - [anon_sym_u32] = ACTIONS(1586), - [anon_sym_i32] = ACTIONS(1586), - [anon_sym_u64] = ACTIONS(1586), - [anon_sym_i64] = ACTIONS(1586), - [anon_sym_u128] = ACTIONS(1586), - [anon_sym_i128] = ACTIONS(1586), - [anon_sym_isize] = ACTIONS(1586), - [anon_sym_usize] = ACTIONS(1586), - [anon_sym_f32] = ACTIONS(1586), - [anon_sym_f64] = ACTIONS(1586), - [anon_sym_bool] = ACTIONS(1586), - [anon_sym_str] = ACTIONS(1586), - [anon_sym_char] = ACTIONS(1586), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_async] = ACTIONS(1586), - [anon_sym_break] = ACTIONS(1586), - [anon_sym_const] = ACTIONS(1586), - [anon_sym_continue] = ACTIONS(1586), - [anon_sym_default] = ACTIONS(1586), - [anon_sym_enum] = ACTIONS(1586), - [anon_sym_fn] = ACTIONS(1586), - [anon_sym_for] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_impl] = ACTIONS(1586), - [anon_sym_let] = ACTIONS(1586), - [anon_sym_loop] = ACTIONS(1586), - [anon_sym_match] = ACTIONS(1586), - [anon_sym_mod] = ACTIONS(1586), - [anon_sym_pub] = ACTIONS(1586), - [anon_sym_return] = ACTIONS(1586), - [anon_sym_static] = ACTIONS(1586), - [anon_sym_struct] = ACTIONS(1586), - [anon_sym_trait] = ACTIONS(1586), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_union] = ACTIONS(1586), - [anon_sym_unsafe] = ACTIONS(1586), - [anon_sym_use] = ACTIONS(1586), - [anon_sym_while] = ACTIONS(1586), - [anon_sym_POUND] = ACTIONS(1584), - [anon_sym_BANG] = ACTIONS(1584), - [anon_sym_extern] = ACTIONS(1586), - [anon_sym_LT] = ACTIONS(1584), - [anon_sym_COLON_COLON] = ACTIONS(1584), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_DOT_DOT] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_PIPE] = ACTIONS(1584), - [anon_sym_yield] = ACTIONS(1586), - [anon_sym_move] = ACTIONS(1586), - [sym_integer_literal] = ACTIONS(1584), - [aux_sym_string_literal_token1] = ACTIONS(1584), - [sym_char_literal] = ACTIONS(1584), - [anon_sym_true] = ACTIONS(1586), - [anon_sym_false] = ACTIONS(1586), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1586), - [sym_super] = ACTIONS(1586), - [sym_crate] = ACTIONS(1586), - [sym_metavariable] = ACTIONS(1584), - [sym_raw_string_literal] = ACTIONS(1584), - [sym_float_literal] = ACTIONS(1584), + [ts_builtin_sym_end] = ACTIONS(1586), + [sym_identifier] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_macro_rules_BANG] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(1586), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [anon_sym_async] = ACTIONS(1588), + [anon_sym_break] = ACTIONS(1588), + [anon_sym_const] = ACTIONS(1588), + [anon_sym_continue] = ACTIONS(1588), + [anon_sym_default] = ACTIONS(1588), + [anon_sym_enum] = ACTIONS(1588), + [anon_sym_fn] = ACTIONS(1588), + [anon_sym_for] = ACTIONS(1588), + [anon_sym_if] = ACTIONS(1588), + [anon_sym_impl] = ACTIONS(1588), + [anon_sym_let] = ACTIONS(1588), + [anon_sym_loop] = ACTIONS(1588), + [anon_sym_match] = ACTIONS(1588), + [anon_sym_mod] = ACTIONS(1588), + [anon_sym_pub] = ACTIONS(1588), + [anon_sym_return] = ACTIONS(1588), + [anon_sym_static] = ACTIONS(1588), + [anon_sym_struct] = ACTIONS(1588), + [anon_sym_trait] = ACTIONS(1588), + [anon_sym_type] = ACTIONS(1588), + [anon_sym_union] = ACTIONS(1588), + [anon_sym_unsafe] = ACTIONS(1588), + [anon_sym_use] = ACTIONS(1588), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_POUND] = ACTIONS(1586), + [anon_sym_BANG] = ACTIONS(1586), + [anon_sym_extern] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1586), + [anon_sym_COLON_COLON] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1586), + [anon_sym_DOT_DOT] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_yield] = ACTIONS(1588), + [anon_sym_move] = ACTIONS(1588), + [sym_integer_literal] = ACTIONS(1586), + [aux_sym_string_literal_token1] = ACTIONS(1586), + [sym_char_literal] = ACTIONS(1586), + [anon_sym_true] = ACTIONS(1588), + [anon_sym_false] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1588), + [sym_super] = ACTIONS(1588), + [sym_crate] = ACTIONS(1588), + [sym_metavariable] = ACTIONS(1586), + [sym_raw_string_literal] = ACTIONS(1586), + [sym_float_literal] = ACTIONS(1586), [sym_block_comment] = ACTIONS(3), }, [377] = { - [ts_builtin_sym_end] = ACTIONS(1588), - [sym_identifier] = ACTIONS(1590), - [anon_sym_SEMI] = ACTIONS(1588), - [anon_sym_macro_rules_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_RBRACE] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_STAR] = ACTIONS(1588), - [anon_sym_u8] = ACTIONS(1590), - [anon_sym_i8] = ACTIONS(1590), - [anon_sym_u16] = ACTIONS(1590), - [anon_sym_i16] = ACTIONS(1590), - [anon_sym_u32] = ACTIONS(1590), - [anon_sym_i32] = ACTIONS(1590), - [anon_sym_u64] = ACTIONS(1590), - [anon_sym_i64] = ACTIONS(1590), - [anon_sym_u128] = ACTIONS(1590), - [anon_sym_i128] = ACTIONS(1590), - [anon_sym_isize] = ACTIONS(1590), - [anon_sym_usize] = ACTIONS(1590), - [anon_sym_f32] = ACTIONS(1590), - [anon_sym_f64] = ACTIONS(1590), - [anon_sym_bool] = ACTIONS(1590), - [anon_sym_str] = ACTIONS(1590), - [anon_sym_char] = ACTIONS(1590), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(1590), - [anon_sym_break] = ACTIONS(1590), - [anon_sym_const] = ACTIONS(1590), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_default] = ACTIONS(1590), - [anon_sym_enum] = ACTIONS(1590), - [anon_sym_fn] = ACTIONS(1590), - [anon_sym_for] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1590), - [anon_sym_impl] = ACTIONS(1590), - [anon_sym_let] = ACTIONS(1590), - [anon_sym_loop] = ACTIONS(1590), - [anon_sym_match] = ACTIONS(1590), - [anon_sym_mod] = ACTIONS(1590), - [anon_sym_pub] = ACTIONS(1590), - [anon_sym_return] = ACTIONS(1590), - [anon_sym_static] = ACTIONS(1590), - [anon_sym_struct] = ACTIONS(1590), - [anon_sym_trait] = ACTIONS(1590), - [anon_sym_type] = ACTIONS(1590), - [anon_sym_union] = ACTIONS(1590), - [anon_sym_unsafe] = ACTIONS(1590), - [anon_sym_use] = ACTIONS(1590), - [anon_sym_while] = ACTIONS(1590), - [anon_sym_POUND] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_extern] = ACTIONS(1590), - [anon_sym_LT] = ACTIONS(1588), - [anon_sym_COLON_COLON] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_DOT_DOT] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_move] = ACTIONS(1590), - [sym_integer_literal] = ACTIONS(1588), - [aux_sym_string_literal_token1] = ACTIONS(1588), - [sym_char_literal] = ACTIONS(1588), - [anon_sym_true] = ACTIONS(1590), - [anon_sym_false] = ACTIONS(1590), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1590), - [sym_super] = ACTIONS(1590), - [sym_crate] = ACTIONS(1590), - [sym_metavariable] = ACTIONS(1588), - [sym_raw_string_literal] = ACTIONS(1588), - [sym_float_literal] = ACTIONS(1588), + [ts_builtin_sym_end] = ACTIONS(1590), + [sym_identifier] = ACTIONS(1592), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_macro_rules_BANG] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_u8] = ACTIONS(1592), + [anon_sym_i8] = ACTIONS(1592), + [anon_sym_u16] = ACTIONS(1592), + [anon_sym_i16] = ACTIONS(1592), + [anon_sym_u32] = ACTIONS(1592), + [anon_sym_i32] = ACTIONS(1592), + [anon_sym_u64] = ACTIONS(1592), + [anon_sym_i64] = ACTIONS(1592), + [anon_sym_u128] = ACTIONS(1592), + [anon_sym_i128] = ACTIONS(1592), + [anon_sym_isize] = ACTIONS(1592), + [anon_sym_usize] = ACTIONS(1592), + [anon_sym_f32] = ACTIONS(1592), + [anon_sym_f64] = ACTIONS(1592), + [anon_sym_bool] = ACTIONS(1592), + [anon_sym_str] = ACTIONS(1592), + [anon_sym_char] = ACTIONS(1592), + [anon_sym_SQUOTE] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_break] = ACTIONS(1592), + [anon_sym_const] = ACTIONS(1592), + [anon_sym_continue] = ACTIONS(1592), + [anon_sym_default] = ACTIONS(1592), + [anon_sym_enum] = ACTIONS(1592), + [anon_sym_fn] = ACTIONS(1592), + [anon_sym_for] = ACTIONS(1592), + [anon_sym_if] = ACTIONS(1592), + [anon_sym_impl] = ACTIONS(1592), + [anon_sym_let] = ACTIONS(1592), + [anon_sym_loop] = ACTIONS(1592), + [anon_sym_match] = ACTIONS(1592), + [anon_sym_mod] = ACTIONS(1592), + [anon_sym_pub] = ACTIONS(1592), + [anon_sym_return] = ACTIONS(1592), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_struct] = ACTIONS(1592), + [anon_sym_trait] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_union] = ACTIONS(1592), + [anon_sym_unsafe] = ACTIONS(1592), + [anon_sym_use] = ACTIONS(1592), + [anon_sym_while] = ACTIONS(1592), + [anon_sym_POUND] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_extern] = ACTIONS(1592), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_COLON_COLON] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_DOT_DOT] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1592), + [anon_sym_move] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(1590), + [aux_sym_string_literal_token1] = ACTIONS(1590), + [sym_char_literal] = ACTIONS(1590), + [anon_sym_true] = ACTIONS(1592), + [anon_sym_false] = ACTIONS(1592), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1592), + [sym_super] = ACTIONS(1592), + [sym_crate] = ACTIONS(1592), + [sym_metavariable] = ACTIONS(1590), + [sym_raw_string_literal] = ACTIONS(1590), + [sym_float_literal] = ACTIONS(1590), [sym_block_comment] = ACTIONS(3), }, [378] = { - [ts_builtin_sym_end] = ACTIONS(1592), - [sym_identifier] = ACTIONS(1594), - [anon_sym_SEMI] = ACTIONS(1592), - [anon_sym_macro_rules_BANG] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1592), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_RBRACE] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1592), - [anon_sym_u8] = ACTIONS(1594), - [anon_sym_i8] = ACTIONS(1594), - [anon_sym_u16] = ACTIONS(1594), - [anon_sym_i16] = ACTIONS(1594), - [anon_sym_u32] = ACTIONS(1594), - [anon_sym_i32] = ACTIONS(1594), - [anon_sym_u64] = ACTIONS(1594), - [anon_sym_i64] = ACTIONS(1594), - [anon_sym_u128] = ACTIONS(1594), - [anon_sym_i128] = ACTIONS(1594), - [anon_sym_isize] = ACTIONS(1594), - [anon_sym_usize] = ACTIONS(1594), - [anon_sym_f32] = ACTIONS(1594), - [anon_sym_f64] = ACTIONS(1594), - [anon_sym_bool] = ACTIONS(1594), - [anon_sym_str] = ACTIONS(1594), - [anon_sym_char] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1594), - [anon_sym_async] = ACTIONS(1594), - [anon_sym_break] = ACTIONS(1594), - [anon_sym_const] = ACTIONS(1594), - [anon_sym_continue] = ACTIONS(1594), - [anon_sym_default] = ACTIONS(1594), - [anon_sym_enum] = ACTIONS(1594), - [anon_sym_fn] = ACTIONS(1594), - [anon_sym_for] = ACTIONS(1594), - [anon_sym_if] = ACTIONS(1594), - [anon_sym_impl] = ACTIONS(1594), - [anon_sym_let] = ACTIONS(1594), - [anon_sym_loop] = ACTIONS(1594), - [anon_sym_match] = ACTIONS(1594), - [anon_sym_mod] = ACTIONS(1594), - [anon_sym_pub] = ACTIONS(1594), - [anon_sym_return] = ACTIONS(1594), - [anon_sym_static] = ACTIONS(1594), - [anon_sym_struct] = ACTIONS(1594), - [anon_sym_trait] = ACTIONS(1594), - [anon_sym_type] = ACTIONS(1594), - [anon_sym_union] = ACTIONS(1594), - [anon_sym_unsafe] = ACTIONS(1594), - [anon_sym_use] = ACTIONS(1594), - [anon_sym_while] = ACTIONS(1594), - [anon_sym_POUND] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1592), - [anon_sym_extern] = ACTIONS(1594), - [anon_sym_LT] = ACTIONS(1592), - [anon_sym_COLON_COLON] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1592), - [anon_sym_DOT_DOT] = ACTIONS(1592), - [anon_sym_DASH] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(1592), - [anon_sym_yield] = ACTIONS(1594), - [anon_sym_move] = ACTIONS(1594), - [sym_integer_literal] = ACTIONS(1592), - [aux_sym_string_literal_token1] = ACTIONS(1592), - [sym_char_literal] = ACTIONS(1592), - [anon_sym_true] = ACTIONS(1594), - [anon_sym_false] = ACTIONS(1594), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1594), - [sym_super] = ACTIONS(1594), - [sym_crate] = ACTIONS(1594), - [sym_metavariable] = ACTIONS(1592), - [sym_raw_string_literal] = ACTIONS(1592), - [sym_float_literal] = ACTIONS(1592), + [ts_builtin_sym_end] = ACTIONS(1594), + [sym_identifier] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_macro_rules_BANG] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_LBRACK] = ACTIONS(1594), + [anon_sym_STAR] = ACTIONS(1594), + [anon_sym_u8] = ACTIONS(1596), + [anon_sym_i8] = ACTIONS(1596), + [anon_sym_u16] = ACTIONS(1596), + [anon_sym_i16] = ACTIONS(1596), + [anon_sym_u32] = ACTIONS(1596), + [anon_sym_i32] = ACTIONS(1596), + [anon_sym_u64] = ACTIONS(1596), + [anon_sym_i64] = ACTIONS(1596), + [anon_sym_u128] = ACTIONS(1596), + [anon_sym_i128] = ACTIONS(1596), + [anon_sym_isize] = ACTIONS(1596), + [anon_sym_usize] = ACTIONS(1596), + [anon_sym_f32] = ACTIONS(1596), + [anon_sym_f64] = ACTIONS(1596), + [anon_sym_bool] = ACTIONS(1596), + [anon_sym_str] = ACTIONS(1596), + [anon_sym_char] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(1596), + [anon_sym_break] = ACTIONS(1596), + [anon_sym_const] = ACTIONS(1596), + [anon_sym_continue] = ACTIONS(1596), + [anon_sym_default] = ACTIONS(1596), + [anon_sym_enum] = ACTIONS(1596), + [anon_sym_fn] = ACTIONS(1596), + [anon_sym_for] = ACTIONS(1596), + [anon_sym_if] = ACTIONS(1596), + [anon_sym_impl] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1596), + [anon_sym_loop] = ACTIONS(1596), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_mod] = ACTIONS(1596), + [anon_sym_pub] = ACTIONS(1596), + [anon_sym_return] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1596), + [anon_sym_struct] = ACTIONS(1596), + [anon_sym_trait] = ACTIONS(1596), + [anon_sym_type] = ACTIONS(1596), + [anon_sym_union] = ACTIONS(1596), + [anon_sym_unsafe] = ACTIONS(1596), + [anon_sym_use] = ACTIONS(1596), + [anon_sym_while] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1594), + [anon_sym_extern] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1594), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1594), + [anon_sym_DOT_DOT] = ACTIONS(1594), + [anon_sym_DASH] = ACTIONS(1594), + [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_yield] = ACTIONS(1596), + [anon_sym_move] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(1594), + [aux_sym_string_literal_token1] = ACTIONS(1594), + [sym_char_literal] = ACTIONS(1594), + [anon_sym_true] = ACTIONS(1596), + [anon_sym_false] = ACTIONS(1596), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1596), + [sym_super] = ACTIONS(1596), + [sym_crate] = ACTIONS(1596), + [sym_metavariable] = ACTIONS(1594), + [sym_raw_string_literal] = ACTIONS(1594), + [sym_float_literal] = ACTIONS(1594), [sym_block_comment] = ACTIONS(3), }, [379] = { - [ts_builtin_sym_end] = ACTIONS(1596), - [sym_identifier] = ACTIONS(1598), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_macro_rules_BANG] = ACTIONS(1596), - [anon_sym_LPAREN] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_LBRACK] = ACTIONS(1596), - [anon_sym_STAR] = ACTIONS(1596), - [anon_sym_u8] = ACTIONS(1598), - [anon_sym_i8] = ACTIONS(1598), - [anon_sym_u16] = ACTIONS(1598), - [anon_sym_i16] = ACTIONS(1598), - [anon_sym_u32] = ACTIONS(1598), - [anon_sym_i32] = ACTIONS(1598), - [anon_sym_u64] = ACTIONS(1598), - [anon_sym_i64] = ACTIONS(1598), - [anon_sym_u128] = ACTIONS(1598), - [anon_sym_i128] = ACTIONS(1598), - [anon_sym_isize] = ACTIONS(1598), - [anon_sym_usize] = ACTIONS(1598), - [anon_sym_f32] = ACTIONS(1598), - [anon_sym_f64] = ACTIONS(1598), - [anon_sym_bool] = ACTIONS(1598), - [anon_sym_str] = ACTIONS(1598), - [anon_sym_char] = ACTIONS(1598), - [anon_sym_SQUOTE] = ACTIONS(1598), - [anon_sym_async] = ACTIONS(1598), - [anon_sym_break] = ACTIONS(1598), - [anon_sym_const] = ACTIONS(1598), - [anon_sym_continue] = ACTIONS(1598), - [anon_sym_default] = ACTIONS(1598), - [anon_sym_enum] = ACTIONS(1598), - [anon_sym_fn] = ACTIONS(1598), - [anon_sym_for] = ACTIONS(1598), - [anon_sym_if] = ACTIONS(1598), - [anon_sym_impl] = ACTIONS(1598), - [anon_sym_let] = ACTIONS(1598), - [anon_sym_loop] = ACTIONS(1598), - [anon_sym_match] = ACTIONS(1598), - [anon_sym_mod] = ACTIONS(1598), - [anon_sym_pub] = ACTIONS(1598), - [anon_sym_return] = ACTIONS(1598), - [anon_sym_static] = ACTIONS(1598), - [anon_sym_struct] = ACTIONS(1598), - [anon_sym_trait] = ACTIONS(1598), - [anon_sym_type] = ACTIONS(1598), - [anon_sym_union] = ACTIONS(1598), - [anon_sym_unsafe] = ACTIONS(1598), - [anon_sym_use] = ACTIONS(1598), - [anon_sym_while] = ACTIONS(1598), - [anon_sym_POUND] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(1596), - [anon_sym_extern] = ACTIONS(1598), - [anon_sym_LT] = ACTIONS(1596), - [anon_sym_COLON_COLON] = ACTIONS(1596), - [anon_sym_AMP] = ACTIONS(1596), - [anon_sym_DOT_DOT] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_yield] = ACTIONS(1598), - [anon_sym_move] = ACTIONS(1598), - [sym_integer_literal] = ACTIONS(1596), - [aux_sym_string_literal_token1] = ACTIONS(1596), - [sym_char_literal] = ACTIONS(1596), - [anon_sym_true] = ACTIONS(1598), - [anon_sym_false] = ACTIONS(1598), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1598), - [sym_super] = ACTIONS(1598), - [sym_crate] = ACTIONS(1598), - [sym_metavariable] = ACTIONS(1596), - [sym_raw_string_literal] = ACTIONS(1596), - [sym_float_literal] = ACTIONS(1596), + [ts_builtin_sym_end] = ACTIONS(1598), + [sym_identifier] = ACTIONS(1600), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_macro_rules_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_u8] = ACTIONS(1600), + [anon_sym_i8] = ACTIONS(1600), + [anon_sym_u16] = ACTIONS(1600), + [anon_sym_i16] = ACTIONS(1600), + [anon_sym_u32] = ACTIONS(1600), + [anon_sym_i32] = ACTIONS(1600), + [anon_sym_u64] = ACTIONS(1600), + [anon_sym_i64] = ACTIONS(1600), + [anon_sym_u128] = ACTIONS(1600), + [anon_sym_i128] = ACTIONS(1600), + [anon_sym_isize] = ACTIONS(1600), + [anon_sym_usize] = ACTIONS(1600), + [anon_sym_f32] = ACTIONS(1600), + [anon_sym_f64] = ACTIONS(1600), + [anon_sym_bool] = ACTIONS(1600), + [anon_sym_str] = ACTIONS(1600), + [anon_sym_char] = ACTIONS(1600), + [anon_sym_SQUOTE] = ACTIONS(1600), + [anon_sym_async] = ACTIONS(1600), + [anon_sym_break] = ACTIONS(1600), + [anon_sym_const] = ACTIONS(1600), + [anon_sym_continue] = ACTIONS(1600), + [anon_sym_default] = ACTIONS(1600), + [anon_sym_enum] = ACTIONS(1600), + [anon_sym_fn] = ACTIONS(1600), + [anon_sym_for] = ACTIONS(1600), + [anon_sym_if] = ACTIONS(1600), + [anon_sym_impl] = ACTIONS(1600), + [anon_sym_let] = ACTIONS(1600), + [anon_sym_loop] = ACTIONS(1600), + [anon_sym_match] = ACTIONS(1600), + [anon_sym_mod] = ACTIONS(1600), + [anon_sym_pub] = ACTIONS(1600), + [anon_sym_return] = ACTIONS(1600), + [anon_sym_static] = ACTIONS(1600), + [anon_sym_struct] = ACTIONS(1600), + [anon_sym_trait] = ACTIONS(1600), + [anon_sym_type] = ACTIONS(1600), + [anon_sym_union] = ACTIONS(1600), + [anon_sym_unsafe] = ACTIONS(1600), + [anon_sym_use] = ACTIONS(1600), + [anon_sym_while] = ACTIONS(1600), + [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_extern] = ACTIONS(1600), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_COLON_COLON] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_DOT_DOT] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_yield] = ACTIONS(1600), + [anon_sym_move] = ACTIONS(1600), + [sym_integer_literal] = ACTIONS(1598), + [aux_sym_string_literal_token1] = ACTIONS(1598), + [sym_char_literal] = ACTIONS(1598), + [anon_sym_true] = ACTIONS(1600), + [anon_sym_false] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1600), + [sym_super] = ACTIONS(1600), + [sym_crate] = ACTIONS(1600), + [sym_metavariable] = ACTIONS(1598), + [sym_raw_string_literal] = ACTIONS(1598), + [sym_float_literal] = ACTIONS(1598), [sym_block_comment] = ACTIONS(3), }, [380] = { - [ts_builtin_sym_end] = ACTIONS(1600), - [sym_identifier] = ACTIONS(1602), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_macro_rules_BANG] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1600), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_RBRACE] = ACTIONS(1600), - [anon_sym_LBRACK] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1600), - [anon_sym_u8] = ACTIONS(1602), - [anon_sym_i8] = ACTIONS(1602), - [anon_sym_u16] = ACTIONS(1602), - [anon_sym_i16] = ACTIONS(1602), - [anon_sym_u32] = ACTIONS(1602), - [anon_sym_i32] = ACTIONS(1602), - [anon_sym_u64] = ACTIONS(1602), - [anon_sym_i64] = ACTIONS(1602), - [anon_sym_u128] = ACTIONS(1602), - [anon_sym_i128] = ACTIONS(1602), - [anon_sym_isize] = ACTIONS(1602), - [anon_sym_usize] = ACTIONS(1602), - [anon_sym_f32] = ACTIONS(1602), - [anon_sym_f64] = ACTIONS(1602), - [anon_sym_bool] = ACTIONS(1602), - [anon_sym_str] = ACTIONS(1602), - [anon_sym_char] = ACTIONS(1602), - [anon_sym_SQUOTE] = ACTIONS(1602), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_break] = ACTIONS(1602), - [anon_sym_const] = ACTIONS(1602), - [anon_sym_continue] = ACTIONS(1602), - [anon_sym_default] = ACTIONS(1602), - [anon_sym_enum] = ACTIONS(1602), - [anon_sym_fn] = ACTIONS(1602), - [anon_sym_for] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(1602), - [anon_sym_impl] = ACTIONS(1602), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_loop] = ACTIONS(1602), - [anon_sym_match] = ACTIONS(1602), - [anon_sym_mod] = ACTIONS(1602), - [anon_sym_pub] = ACTIONS(1602), - [anon_sym_return] = ACTIONS(1602), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_struct] = ACTIONS(1602), - [anon_sym_trait] = ACTIONS(1602), - [anon_sym_type] = ACTIONS(1602), - [anon_sym_union] = ACTIONS(1602), - [anon_sym_unsafe] = ACTIONS(1602), - [anon_sym_use] = ACTIONS(1602), - [anon_sym_while] = ACTIONS(1602), - [anon_sym_POUND] = ACTIONS(1600), - [anon_sym_BANG] = ACTIONS(1600), - [anon_sym_extern] = ACTIONS(1602), - [anon_sym_LT] = ACTIONS(1600), - [anon_sym_COLON_COLON] = ACTIONS(1600), - [anon_sym_AMP] = ACTIONS(1600), - [anon_sym_DOT_DOT] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_PIPE] = ACTIONS(1600), - [anon_sym_yield] = ACTIONS(1602), - [anon_sym_move] = ACTIONS(1602), - [sym_integer_literal] = ACTIONS(1600), - [aux_sym_string_literal_token1] = ACTIONS(1600), - [sym_char_literal] = ACTIONS(1600), - [anon_sym_true] = ACTIONS(1602), - [anon_sym_false] = ACTIONS(1602), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1602), - [sym_super] = ACTIONS(1602), - [sym_crate] = ACTIONS(1602), - [sym_metavariable] = ACTIONS(1600), - [sym_raw_string_literal] = ACTIONS(1600), - [sym_float_literal] = ACTIONS(1600), + [ts_builtin_sym_end] = ACTIONS(1602), + [sym_identifier] = ACTIONS(1604), + [anon_sym_SEMI] = ACTIONS(1602), + [anon_sym_macro_rules_BANG] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1602), + [anon_sym_u8] = ACTIONS(1604), + [anon_sym_i8] = ACTIONS(1604), + [anon_sym_u16] = ACTIONS(1604), + [anon_sym_i16] = ACTIONS(1604), + [anon_sym_u32] = ACTIONS(1604), + [anon_sym_i32] = ACTIONS(1604), + [anon_sym_u64] = ACTIONS(1604), + [anon_sym_i64] = ACTIONS(1604), + [anon_sym_u128] = ACTIONS(1604), + [anon_sym_i128] = ACTIONS(1604), + [anon_sym_isize] = ACTIONS(1604), + [anon_sym_usize] = ACTIONS(1604), + [anon_sym_f32] = ACTIONS(1604), + [anon_sym_f64] = ACTIONS(1604), + [anon_sym_bool] = ACTIONS(1604), + [anon_sym_str] = ACTIONS(1604), + [anon_sym_char] = ACTIONS(1604), + [anon_sym_SQUOTE] = ACTIONS(1604), + [anon_sym_async] = ACTIONS(1604), + [anon_sym_break] = ACTIONS(1604), + [anon_sym_const] = ACTIONS(1604), + [anon_sym_continue] = ACTIONS(1604), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_enum] = ACTIONS(1604), + [anon_sym_fn] = ACTIONS(1604), + [anon_sym_for] = ACTIONS(1604), + [anon_sym_if] = ACTIONS(1604), + [anon_sym_impl] = ACTIONS(1604), + [anon_sym_let] = ACTIONS(1604), + [anon_sym_loop] = ACTIONS(1604), + [anon_sym_match] = ACTIONS(1604), + [anon_sym_mod] = ACTIONS(1604), + [anon_sym_pub] = ACTIONS(1604), + [anon_sym_return] = ACTIONS(1604), + [anon_sym_static] = ACTIONS(1604), + [anon_sym_struct] = ACTIONS(1604), + [anon_sym_trait] = ACTIONS(1604), + [anon_sym_type] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_unsafe] = ACTIONS(1604), + [anon_sym_use] = ACTIONS(1604), + [anon_sym_while] = ACTIONS(1604), + [anon_sym_POUND] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_extern] = ACTIONS(1604), + [anon_sym_LT] = ACTIONS(1602), + [anon_sym_COLON_COLON] = ACTIONS(1602), + [anon_sym_AMP] = ACTIONS(1602), + [anon_sym_DOT_DOT] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_PIPE] = ACTIONS(1602), + [anon_sym_yield] = ACTIONS(1604), + [anon_sym_move] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(1602), + [aux_sym_string_literal_token1] = ACTIONS(1602), + [sym_char_literal] = ACTIONS(1602), + [anon_sym_true] = ACTIONS(1604), + [anon_sym_false] = ACTIONS(1604), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1604), + [sym_super] = ACTIONS(1604), + [sym_crate] = ACTIONS(1604), + [sym_metavariable] = ACTIONS(1602), + [sym_raw_string_literal] = ACTIONS(1602), + [sym_float_literal] = ACTIONS(1602), [sym_block_comment] = ACTIONS(3), }, [381] = { - [ts_builtin_sym_end] = ACTIONS(1604), - [sym_identifier] = ACTIONS(1606), - [anon_sym_SEMI] = ACTIONS(1604), - [anon_sym_macro_rules_BANG] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1604), - [anon_sym_RBRACE] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1604), - [anon_sym_u8] = ACTIONS(1606), - [anon_sym_i8] = ACTIONS(1606), - [anon_sym_u16] = ACTIONS(1606), - [anon_sym_i16] = ACTIONS(1606), - [anon_sym_u32] = ACTIONS(1606), - [anon_sym_i32] = ACTIONS(1606), - [anon_sym_u64] = ACTIONS(1606), - [anon_sym_i64] = ACTIONS(1606), - [anon_sym_u128] = ACTIONS(1606), - [anon_sym_i128] = ACTIONS(1606), - [anon_sym_isize] = ACTIONS(1606), - [anon_sym_usize] = ACTIONS(1606), - [anon_sym_f32] = ACTIONS(1606), - [anon_sym_f64] = ACTIONS(1606), - [anon_sym_bool] = ACTIONS(1606), - [anon_sym_str] = ACTIONS(1606), - [anon_sym_char] = ACTIONS(1606), - [anon_sym_SQUOTE] = ACTIONS(1606), - [anon_sym_async] = ACTIONS(1606), - [anon_sym_break] = ACTIONS(1606), - [anon_sym_const] = ACTIONS(1606), - [anon_sym_continue] = ACTIONS(1606), - [anon_sym_default] = ACTIONS(1606), - [anon_sym_enum] = ACTIONS(1606), - [anon_sym_fn] = ACTIONS(1606), - [anon_sym_for] = ACTIONS(1606), - [anon_sym_if] = ACTIONS(1606), - [anon_sym_impl] = ACTIONS(1606), - [anon_sym_let] = ACTIONS(1606), - [anon_sym_loop] = ACTIONS(1606), - [anon_sym_match] = ACTIONS(1606), - [anon_sym_mod] = ACTIONS(1606), - [anon_sym_pub] = ACTIONS(1606), - [anon_sym_return] = ACTIONS(1606), - [anon_sym_static] = ACTIONS(1606), - [anon_sym_struct] = ACTIONS(1606), - [anon_sym_trait] = ACTIONS(1606), - [anon_sym_type] = ACTIONS(1606), - [anon_sym_union] = ACTIONS(1606), - [anon_sym_unsafe] = ACTIONS(1606), - [anon_sym_use] = ACTIONS(1606), - [anon_sym_while] = ACTIONS(1606), - [anon_sym_POUND] = ACTIONS(1604), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_extern] = ACTIONS(1606), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_COLON_COLON] = ACTIONS(1604), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_DOT_DOT] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_PIPE] = ACTIONS(1604), - [anon_sym_yield] = ACTIONS(1606), - [anon_sym_move] = ACTIONS(1606), - [sym_integer_literal] = ACTIONS(1604), - [aux_sym_string_literal_token1] = ACTIONS(1604), - [sym_char_literal] = ACTIONS(1604), - [anon_sym_true] = ACTIONS(1606), - [anon_sym_false] = ACTIONS(1606), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1606), - [sym_super] = ACTIONS(1606), - [sym_crate] = ACTIONS(1606), - [sym_metavariable] = ACTIONS(1604), - [sym_raw_string_literal] = ACTIONS(1604), - [sym_float_literal] = ACTIONS(1604), + [ts_builtin_sym_end] = ACTIONS(1606), + [sym_identifier] = ACTIONS(1608), + [anon_sym_SEMI] = ACTIONS(1606), + [anon_sym_macro_rules_BANG] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(1606), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_u8] = ACTIONS(1608), + [anon_sym_i8] = ACTIONS(1608), + [anon_sym_u16] = ACTIONS(1608), + [anon_sym_i16] = ACTIONS(1608), + [anon_sym_u32] = ACTIONS(1608), + [anon_sym_i32] = ACTIONS(1608), + [anon_sym_u64] = ACTIONS(1608), + [anon_sym_i64] = ACTIONS(1608), + [anon_sym_u128] = ACTIONS(1608), + [anon_sym_i128] = ACTIONS(1608), + [anon_sym_isize] = ACTIONS(1608), + [anon_sym_usize] = ACTIONS(1608), + [anon_sym_f32] = ACTIONS(1608), + [anon_sym_f64] = ACTIONS(1608), + [anon_sym_bool] = ACTIONS(1608), + [anon_sym_str] = ACTIONS(1608), + [anon_sym_char] = ACTIONS(1608), + [anon_sym_SQUOTE] = ACTIONS(1608), + [anon_sym_async] = ACTIONS(1608), + [anon_sym_break] = ACTIONS(1608), + [anon_sym_const] = ACTIONS(1608), + [anon_sym_continue] = ACTIONS(1608), + [anon_sym_default] = ACTIONS(1608), + [anon_sym_enum] = ACTIONS(1608), + [anon_sym_fn] = ACTIONS(1608), + [anon_sym_for] = ACTIONS(1608), + [anon_sym_if] = ACTIONS(1608), + [anon_sym_impl] = ACTIONS(1608), + [anon_sym_let] = ACTIONS(1608), + [anon_sym_loop] = ACTIONS(1608), + [anon_sym_match] = ACTIONS(1608), + [anon_sym_mod] = ACTIONS(1608), + [anon_sym_pub] = ACTIONS(1608), + [anon_sym_return] = ACTIONS(1608), + [anon_sym_static] = ACTIONS(1608), + [anon_sym_struct] = ACTIONS(1608), + [anon_sym_trait] = ACTIONS(1608), + [anon_sym_type] = ACTIONS(1608), + [anon_sym_union] = ACTIONS(1608), + [anon_sym_unsafe] = ACTIONS(1608), + [anon_sym_use] = ACTIONS(1608), + [anon_sym_while] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1606), + [anon_sym_extern] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(1606), + [anon_sym_COLON_COLON] = ACTIONS(1606), + [anon_sym_AMP] = ACTIONS(1606), + [anon_sym_DOT_DOT] = ACTIONS(1606), + [anon_sym_DASH] = ACTIONS(1606), + [anon_sym_PIPE] = ACTIONS(1606), + [anon_sym_yield] = ACTIONS(1608), + [anon_sym_move] = ACTIONS(1608), + [sym_integer_literal] = ACTIONS(1606), + [aux_sym_string_literal_token1] = ACTIONS(1606), + [sym_char_literal] = ACTIONS(1606), + [anon_sym_true] = ACTIONS(1608), + [anon_sym_false] = ACTIONS(1608), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1608), + [sym_super] = ACTIONS(1608), + [sym_crate] = ACTIONS(1608), + [sym_metavariable] = ACTIONS(1606), + [sym_raw_string_literal] = ACTIONS(1606), + [sym_float_literal] = ACTIONS(1606), [sym_block_comment] = ACTIONS(3), }, [382] = { - [ts_builtin_sym_end] = ACTIONS(1608), - [sym_identifier] = ACTIONS(1610), - [anon_sym_SEMI] = ACTIONS(1608), - [anon_sym_macro_rules_BANG] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_STAR] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1610), - [anon_sym_i8] = ACTIONS(1610), - [anon_sym_u16] = ACTIONS(1610), - [anon_sym_i16] = ACTIONS(1610), - [anon_sym_u32] = ACTIONS(1610), - [anon_sym_i32] = ACTIONS(1610), - [anon_sym_u64] = ACTIONS(1610), - [anon_sym_i64] = ACTIONS(1610), - [anon_sym_u128] = ACTIONS(1610), - [anon_sym_i128] = ACTIONS(1610), - [anon_sym_isize] = ACTIONS(1610), - [anon_sym_usize] = ACTIONS(1610), - [anon_sym_f32] = ACTIONS(1610), - [anon_sym_f64] = ACTIONS(1610), - [anon_sym_bool] = ACTIONS(1610), - [anon_sym_str] = ACTIONS(1610), - [anon_sym_char] = ACTIONS(1610), - [anon_sym_SQUOTE] = ACTIONS(1610), - [anon_sym_async] = ACTIONS(1610), - [anon_sym_break] = ACTIONS(1610), - [anon_sym_const] = ACTIONS(1610), - [anon_sym_continue] = ACTIONS(1610), - [anon_sym_default] = ACTIONS(1610), - [anon_sym_enum] = ACTIONS(1610), - [anon_sym_fn] = ACTIONS(1610), - [anon_sym_for] = ACTIONS(1610), - [anon_sym_if] = ACTIONS(1610), - [anon_sym_impl] = ACTIONS(1610), - [anon_sym_let] = ACTIONS(1610), - [anon_sym_loop] = ACTIONS(1610), - [anon_sym_match] = ACTIONS(1610), - [anon_sym_mod] = ACTIONS(1610), - [anon_sym_pub] = ACTIONS(1610), - [anon_sym_return] = ACTIONS(1610), - [anon_sym_static] = ACTIONS(1610), - [anon_sym_struct] = ACTIONS(1610), - [anon_sym_trait] = ACTIONS(1610), - [anon_sym_type] = ACTIONS(1610), - [anon_sym_union] = ACTIONS(1610), - [anon_sym_unsafe] = ACTIONS(1610), - [anon_sym_use] = ACTIONS(1610), - [anon_sym_while] = ACTIONS(1610), - [anon_sym_POUND] = ACTIONS(1608), - [anon_sym_BANG] = ACTIONS(1608), - [anon_sym_extern] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1608), - [anon_sym_AMP] = ACTIONS(1608), - [anon_sym_DOT_DOT] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_PIPE] = ACTIONS(1608), - [anon_sym_yield] = ACTIONS(1610), - [anon_sym_move] = ACTIONS(1610), - [sym_integer_literal] = ACTIONS(1608), - [aux_sym_string_literal_token1] = ACTIONS(1608), - [sym_char_literal] = ACTIONS(1608), - [anon_sym_true] = ACTIONS(1610), - [anon_sym_false] = ACTIONS(1610), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1610), - [sym_super] = ACTIONS(1610), - [sym_crate] = ACTIONS(1610), - [sym_metavariable] = ACTIONS(1608), - [sym_raw_string_literal] = ACTIONS(1608), - [sym_float_literal] = ACTIONS(1608), + [ts_builtin_sym_end] = ACTIONS(1610), + [sym_identifier] = ACTIONS(1612), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_macro_rules_BANG] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1610), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_u8] = ACTIONS(1612), + [anon_sym_i8] = ACTIONS(1612), + [anon_sym_u16] = ACTIONS(1612), + [anon_sym_i16] = ACTIONS(1612), + [anon_sym_u32] = ACTIONS(1612), + [anon_sym_i32] = ACTIONS(1612), + [anon_sym_u64] = ACTIONS(1612), + [anon_sym_i64] = ACTIONS(1612), + [anon_sym_u128] = ACTIONS(1612), + [anon_sym_i128] = ACTIONS(1612), + [anon_sym_isize] = ACTIONS(1612), + [anon_sym_usize] = ACTIONS(1612), + [anon_sym_f32] = ACTIONS(1612), + [anon_sym_f64] = ACTIONS(1612), + [anon_sym_bool] = ACTIONS(1612), + [anon_sym_str] = ACTIONS(1612), + [anon_sym_char] = ACTIONS(1612), + [anon_sym_SQUOTE] = ACTIONS(1612), + [anon_sym_async] = ACTIONS(1612), + [anon_sym_break] = ACTIONS(1612), + [anon_sym_const] = ACTIONS(1612), + [anon_sym_continue] = ACTIONS(1612), + [anon_sym_default] = ACTIONS(1612), + [anon_sym_enum] = ACTIONS(1612), + [anon_sym_fn] = ACTIONS(1612), + [anon_sym_for] = ACTIONS(1612), + [anon_sym_if] = ACTIONS(1612), + [anon_sym_impl] = ACTIONS(1612), + [anon_sym_let] = ACTIONS(1612), + [anon_sym_loop] = ACTIONS(1612), + [anon_sym_match] = ACTIONS(1612), + [anon_sym_mod] = ACTIONS(1612), + [anon_sym_pub] = ACTIONS(1612), + [anon_sym_return] = ACTIONS(1612), + [anon_sym_static] = ACTIONS(1612), + [anon_sym_struct] = ACTIONS(1612), + [anon_sym_trait] = ACTIONS(1612), + [anon_sym_type] = ACTIONS(1612), + [anon_sym_union] = ACTIONS(1612), + [anon_sym_unsafe] = ACTIONS(1612), + [anon_sym_use] = ACTIONS(1612), + [anon_sym_while] = ACTIONS(1612), + [anon_sym_POUND] = ACTIONS(1610), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_extern] = ACTIONS(1612), + [anon_sym_LT] = ACTIONS(1610), + [anon_sym_COLON_COLON] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_DOT_DOT] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_yield] = ACTIONS(1612), + [anon_sym_move] = ACTIONS(1612), + [sym_integer_literal] = ACTIONS(1610), + [aux_sym_string_literal_token1] = ACTIONS(1610), + [sym_char_literal] = ACTIONS(1610), + [anon_sym_true] = ACTIONS(1612), + [anon_sym_false] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1612), + [sym_super] = ACTIONS(1612), + [sym_crate] = ACTIONS(1612), + [sym_metavariable] = ACTIONS(1610), + [sym_raw_string_literal] = ACTIONS(1610), + [sym_float_literal] = ACTIONS(1610), [sym_block_comment] = ACTIONS(3), }, [383] = { - [ts_builtin_sym_end] = ACTIONS(1612), - [sym_identifier] = ACTIONS(1614), - [anon_sym_SEMI] = ACTIONS(1612), - [anon_sym_macro_rules_BANG] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1612), - [anon_sym_RBRACE] = ACTIONS(1612), - [anon_sym_LBRACK] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1612), - [anon_sym_u8] = ACTIONS(1614), - [anon_sym_i8] = ACTIONS(1614), - [anon_sym_u16] = ACTIONS(1614), - [anon_sym_i16] = ACTIONS(1614), - [anon_sym_u32] = ACTIONS(1614), - [anon_sym_i32] = ACTIONS(1614), - [anon_sym_u64] = ACTIONS(1614), - [anon_sym_i64] = ACTIONS(1614), - [anon_sym_u128] = ACTIONS(1614), - [anon_sym_i128] = ACTIONS(1614), - [anon_sym_isize] = ACTIONS(1614), - [anon_sym_usize] = ACTIONS(1614), - [anon_sym_f32] = ACTIONS(1614), - [anon_sym_f64] = ACTIONS(1614), - [anon_sym_bool] = ACTIONS(1614), - [anon_sym_str] = ACTIONS(1614), - [anon_sym_char] = ACTIONS(1614), - [anon_sym_SQUOTE] = ACTIONS(1614), - [anon_sym_async] = ACTIONS(1614), - [anon_sym_break] = ACTIONS(1614), - [anon_sym_const] = ACTIONS(1614), - [anon_sym_continue] = ACTIONS(1614), - [anon_sym_default] = ACTIONS(1614), - [anon_sym_enum] = ACTIONS(1614), - [anon_sym_fn] = ACTIONS(1614), - [anon_sym_for] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(1614), - [anon_sym_impl] = ACTIONS(1614), - [anon_sym_let] = ACTIONS(1614), - [anon_sym_loop] = ACTIONS(1614), - [anon_sym_match] = ACTIONS(1614), - [anon_sym_mod] = ACTIONS(1614), - [anon_sym_pub] = ACTIONS(1614), - [anon_sym_return] = ACTIONS(1614), - [anon_sym_static] = ACTIONS(1614), - [anon_sym_struct] = ACTIONS(1614), - [anon_sym_trait] = ACTIONS(1614), - [anon_sym_type] = ACTIONS(1614), - [anon_sym_union] = ACTIONS(1614), - [anon_sym_unsafe] = ACTIONS(1614), - [anon_sym_use] = ACTIONS(1614), - [anon_sym_while] = ACTIONS(1614), - [anon_sym_POUND] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1612), - [anon_sym_extern] = ACTIONS(1614), - [anon_sym_LT] = ACTIONS(1612), - [anon_sym_COLON_COLON] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_DOT_DOT] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1614), - [anon_sym_move] = ACTIONS(1614), - [sym_integer_literal] = ACTIONS(1612), - [aux_sym_string_literal_token1] = ACTIONS(1612), - [sym_char_literal] = ACTIONS(1612), - [anon_sym_true] = ACTIONS(1614), - [anon_sym_false] = ACTIONS(1614), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1614), - [sym_super] = ACTIONS(1614), - [sym_crate] = ACTIONS(1614), - [sym_metavariable] = ACTIONS(1612), - [sym_raw_string_literal] = ACTIONS(1612), - [sym_float_literal] = ACTIONS(1612), + [ts_builtin_sym_end] = ACTIONS(1614), + [sym_identifier] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_macro_rules_BANG] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1614), + [anon_sym_u8] = ACTIONS(1616), + [anon_sym_i8] = ACTIONS(1616), + [anon_sym_u16] = ACTIONS(1616), + [anon_sym_i16] = ACTIONS(1616), + [anon_sym_u32] = ACTIONS(1616), + [anon_sym_i32] = ACTIONS(1616), + [anon_sym_u64] = ACTIONS(1616), + [anon_sym_i64] = ACTIONS(1616), + [anon_sym_u128] = ACTIONS(1616), + [anon_sym_i128] = ACTIONS(1616), + [anon_sym_isize] = ACTIONS(1616), + [anon_sym_usize] = ACTIONS(1616), + [anon_sym_f32] = ACTIONS(1616), + [anon_sym_f64] = ACTIONS(1616), + [anon_sym_bool] = ACTIONS(1616), + [anon_sym_str] = ACTIONS(1616), + [anon_sym_char] = ACTIONS(1616), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_async] = ACTIONS(1616), + [anon_sym_break] = ACTIONS(1616), + [anon_sym_const] = ACTIONS(1616), + [anon_sym_continue] = ACTIONS(1616), + [anon_sym_default] = ACTIONS(1616), + [anon_sym_enum] = ACTIONS(1616), + [anon_sym_fn] = ACTIONS(1616), + [anon_sym_for] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_impl] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1616), + [anon_sym_loop] = ACTIONS(1616), + [anon_sym_match] = ACTIONS(1616), + [anon_sym_mod] = ACTIONS(1616), + [anon_sym_pub] = ACTIONS(1616), + [anon_sym_return] = ACTIONS(1616), + [anon_sym_static] = ACTIONS(1616), + [anon_sym_struct] = ACTIONS(1616), + [anon_sym_trait] = ACTIONS(1616), + [anon_sym_type] = ACTIONS(1616), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1616), + [anon_sym_use] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [anon_sym_POUND] = ACTIONS(1614), + [anon_sym_BANG] = ACTIONS(1614), + [anon_sym_extern] = ACTIONS(1616), + [anon_sym_LT] = ACTIONS(1614), + [anon_sym_COLON_COLON] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1614), + [anon_sym_DOT_DOT] = ACTIONS(1614), + [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_PIPE] = ACTIONS(1614), + [anon_sym_yield] = ACTIONS(1616), + [anon_sym_move] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(1614), + [aux_sym_string_literal_token1] = ACTIONS(1614), + [sym_char_literal] = ACTIONS(1614), + [anon_sym_true] = ACTIONS(1616), + [anon_sym_false] = ACTIONS(1616), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1616), + [sym_super] = ACTIONS(1616), + [sym_crate] = ACTIONS(1616), + [sym_metavariable] = ACTIONS(1614), + [sym_raw_string_literal] = ACTIONS(1614), + [sym_float_literal] = ACTIONS(1614), [sym_block_comment] = ACTIONS(3), }, [384] = { - [ts_builtin_sym_end] = ACTIONS(1616), - [sym_identifier] = ACTIONS(1618), - [anon_sym_SEMI] = ACTIONS(1616), - [anon_sym_macro_rules_BANG] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1616), - [anon_sym_RBRACE] = ACTIONS(1616), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1616), - [anon_sym_u8] = ACTIONS(1618), - [anon_sym_i8] = ACTIONS(1618), - [anon_sym_u16] = ACTIONS(1618), - [anon_sym_i16] = ACTIONS(1618), - [anon_sym_u32] = ACTIONS(1618), - [anon_sym_i32] = ACTIONS(1618), - [anon_sym_u64] = ACTIONS(1618), - [anon_sym_i64] = ACTIONS(1618), - [anon_sym_u128] = ACTIONS(1618), - [anon_sym_i128] = ACTIONS(1618), - [anon_sym_isize] = ACTIONS(1618), - [anon_sym_usize] = ACTIONS(1618), - [anon_sym_f32] = ACTIONS(1618), - [anon_sym_f64] = ACTIONS(1618), - [anon_sym_bool] = ACTIONS(1618), - [anon_sym_str] = ACTIONS(1618), - [anon_sym_char] = ACTIONS(1618), - [anon_sym_SQUOTE] = ACTIONS(1618), - [anon_sym_async] = ACTIONS(1618), - [anon_sym_break] = ACTIONS(1618), - [anon_sym_const] = ACTIONS(1618), - [anon_sym_continue] = ACTIONS(1618), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_enum] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1618), - [anon_sym_for] = ACTIONS(1618), - [anon_sym_if] = ACTIONS(1618), - [anon_sym_impl] = ACTIONS(1618), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_loop] = ACTIONS(1618), - [anon_sym_match] = ACTIONS(1618), - [anon_sym_mod] = ACTIONS(1618), - [anon_sym_pub] = ACTIONS(1618), - [anon_sym_return] = ACTIONS(1618), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_struct] = ACTIONS(1618), - [anon_sym_trait] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_union] = ACTIONS(1618), - [anon_sym_unsafe] = ACTIONS(1618), - [anon_sym_use] = ACTIONS(1618), - [anon_sym_while] = ACTIONS(1618), - [anon_sym_POUND] = ACTIONS(1616), - [anon_sym_BANG] = ACTIONS(1616), - [anon_sym_extern] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(1616), - [anon_sym_COLON_COLON] = ACTIONS(1616), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_DOT_DOT] = ACTIONS(1616), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1616), - [anon_sym_yield] = ACTIONS(1618), - [anon_sym_move] = ACTIONS(1618), - [sym_integer_literal] = ACTIONS(1616), - [aux_sym_string_literal_token1] = ACTIONS(1616), - [sym_char_literal] = ACTIONS(1616), - [anon_sym_true] = ACTIONS(1618), - [anon_sym_false] = ACTIONS(1618), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1618), - [sym_super] = ACTIONS(1618), - [sym_crate] = ACTIONS(1618), - [sym_metavariable] = ACTIONS(1616), - [sym_raw_string_literal] = ACTIONS(1616), - [sym_float_literal] = ACTIONS(1616), + [ts_builtin_sym_end] = ACTIONS(1618), + [sym_identifier] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_macro_rules_BANG] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_SQUOTE] = ACTIONS(1620), + [anon_sym_async] = ACTIONS(1620), + [anon_sym_break] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1620), + [anon_sym_continue] = ACTIONS(1620), + [anon_sym_default] = ACTIONS(1620), + [anon_sym_enum] = ACTIONS(1620), + [anon_sym_fn] = ACTIONS(1620), + [anon_sym_for] = ACTIONS(1620), + [anon_sym_if] = ACTIONS(1620), + [anon_sym_impl] = ACTIONS(1620), + [anon_sym_let] = ACTIONS(1620), + [anon_sym_loop] = ACTIONS(1620), + [anon_sym_match] = ACTIONS(1620), + [anon_sym_mod] = ACTIONS(1620), + [anon_sym_pub] = ACTIONS(1620), + [anon_sym_return] = ACTIONS(1620), + [anon_sym_static] = ACTIONS(1620), + [anon_sym_struct] = ACTIONS(1620), + [anon_sym_trait] = ACTIONS(1620), + [anon_sym_type] = ACTIONS(1620), + [anon_sym_union] = ACTIONS(1620), + [anon_sym_unsafe] = ACTIONS(1620), + [anon_sym_use] = ACTIONS(1620), + [anon_sym_while] = ACTIONS(1620), + [anon_sym_POUND] = ACTIONS(1618), + [anon_sym_BANG] = ACTIONS(1618), + [anon_sym_extern] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_COLON_COLON] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1618), + [anon_sym_DOT_DOT] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_yield] = ACTIONS(1620), + [anon_sym_move] = ACTIONS(1620), + [sym_integer_literal] = ACTIONS(1618), + [aux_sym_string_literal_token1] = ACTIONS(1618), + [sym_char_literal] = ACTIONS(1618), + [anon_sym_true] = ACTIONS(1620), + [anon_sym_false] = ACTIONS(1620), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1618), + [sym_raw_string_literal] = ACTIONS(1618), + [sym_float_literal] = ACTIONS(1618), [sym_block_comment] = ACTIONS(3), }, [385] = { - [ts_builtin_sym_end] = ACTIONS(1620), - [sym_identifier] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_macro_rules_BANG] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_RBRACE] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1620), - [anon_sym_u8] = ACTIONS(1622), - [anon_sym_i8] = ACTIONS(1622), - [anon_sym_u16] = ACTIONS(1622), - [anon_sym_i16] = ACTIONS(1622), - [anon_sym_u32] = ACTIONS(1622), - [anon_sym_i32] = ACTIONS(1622), - [anon_sym_u64] = ACTIONS(1622), - [anon_sym_i64] = ACTIONS(1622), - [anon_sym_u128] = ACTIONS(1622), - [anon_sym_i128] = ACTIONS(1622), - [anon_sym_isize] = ACTIONS(1622), - [anon_sym_usize] = ACTIONS(1622), - [anon_sym_f32] = ACTIONS(1622), - [anon_sym_f64] = ACTIONS(1622), - [anon_sym_bool] = ACTIONS(1622), - [anon_sym_str] = ACTIONS(1622), - [anon_sym_char] = ACTIONS(1622), - [anon_sym_SQUOTE] = ACTIONS(1622), - [anon_sym_async] = ACTIONS(1622), - [anon_sym_break] = ACTIONS(1622), - [anon_sym_const] = ACTIONS(1622), - [anon_sym_continue] = ACTIONS(1622), - [anon_sym_default] = ACTIONS(1622), - [anon_sym_enum] = ACTIONS(1622), - [anon_sym_fn] = ACTIONS(1622), - [anon_sym_for] = ACTIONS(1622), - [anon_sym_if] = ACTIONS(1622), - [anon_sym_impl] = ACTIONS(1622), - [anon_sym_let] = ACTIONS(1622), - [anon_sym_loop] = ACTIONS(1622), - [anon_sym_match] = ACTIONS(1622), - [anon_sym_mod] = ACTIONS(1622), - [anon_sym_pub] = ACTIONS(1622), - [anon_sym_return] = ACTIONS(1622), - [anon_sym_static] = ACTIONS(1622), - [anon_sym_struct] = ACTIONS(1622), - [anon_sym_trait] = ACTIONS(1622), - [anon_sym_type] = ACTIONS(1622), - [anon_sym_union] = ACTIONS(1622), - [anon_sym_unsafe] = ACTIONS(1622), - [anon_sym_use] = ACTIONS(1622), - [anon_sym_while] = ACTIONS(1622), - [anon_sym_POUND] = ACTIONS(1620), - [anon_sym_BANG] = ACTIONS(1620), - [anon_sym_extern] = ACTIONS(1622), - [anon_sym_LT] = ACTIONS(1620), - [anon_sym_COLON_COLON] = ACTIONS(1620), - [anon_sym_AMP] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1620), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_yield] = ACTIONS(1622), - [anon_sym_move] = ACTIONS(1622), - [sym_integer_literal] = ACTIONS(1620), - [aux_sym_string_literal_token1] = ACTIONS(1620), - [sym_char_literal] = ACTIONS(1620), - [anon_sym_true] = ACTIONS(1622), - [anon_sym_false] = ACTIONS(1622), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1622), - [sym_super] = ACTIONS(1622), - [sym_crate] = ACTIONS(1622), - [sym_metavariable] = ACTIONS(1620), - [sym_raw_string_literal] = ACTIONS(1620), - [sym_float_literal] = ACTIONS(1620), + [ts_builtin_sym_end] = ACTIONS(1622), + [sym_identifier] = ACTIONS(1624), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_macro_rules_BANG] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1622), + [anon_sym_u8] = ACTIONS(1624), + [anon_sym_i8] = ACTIONS(1624), + [anon_sym_u16] = ACTIONS(1624), + [anon_sym_i16] = ACTIONS(1624), + [anon_sym_u32] = ACTIONS(1624), + [anon_sym_i32] = ACTIONS(1624), + [anon_sym_u64] = ACTIONS(1624), + [anon_sym_i64] = ACTIONS(1624), + [anon_sym_u128] = ACTIONS(1624), + [anon_sym_i128] = ACTIONS(1624), + [anon_sym_isize] = ACTIONS(1624), + [anon_sym_usize] = ACTIONS(1624), + [anon_sym_f32] = ACTIONS(1624), + [anon_sym_f64] = ACTIONS(1624), + [anon_sym_bool] = ACTIONS(1624), + [anon_sym_str] = ACTIONS(1624), + [anon_sym_char] = ACTIONS(1624), + [anon_sym_SQUOTE] = ACTIONS(1624), + [anon_sym_async] = ACTIONS(1624), + [anon_sym_break] = ACTIONS(1624), + [anon_sym_const] = ACTIONS(1624), + [anon_sym_continue] = ACTIONS(1624), + [anon_sym_default] = ACTIONS(1624), + [anon_sym_enum] = ACTIONS(1624), + [anon_sym_fn] = ACTIONS(1624), + [anon_sym_for] = ACTIONS(1624), + [anon_sym_if] = ACTIONS(1624), + [anon_sym_impl] = ACTIONS(1624), + [anon_sym_let] = ACTIONS(1624), + [anon_sym_loop] = ACTIONS(1624), + [anon_sym_match] = ACTIONS(1624), + [anon_sym_mod] = ACTIONS(1624), + [anon_sym_pub] = ACTIONS(1624), + [anon_sym_return] = ACTIONS(1624), + [anon_sym_static] = ACTIONS(1624), + [anon_sym_struct] = ACTIONS(1624), + [anon_sym_trait] = ACTIONS(1624), + [anon_sym_type] = ACTIONS(1624), + [anon_sym_union] = ACTIONS(1624), + [anon_sym_unsafe] = ACTIONS(1624), + [anon_sym_use] = ACTIONS(1624), + [anon_sym_while] = ACTIONS(1624), + [anon_sym_POUND] = ACTIONS(1622), + [anon_sym_BANG] = ACTIONS(1622), + [anon_sym_extern] = ACTIONS(1624), + [anon_sym_LT] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(1622), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_DOT_DOT] = ACTIONS(1622), + [anon_sym_DASH] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_yield] = ACTIONS(1624), + [anon_sym_move] = ACTIONS(1624), + [sym_integer_literal] = ACTIONS(1622), + [aux_sym_string_literal_token1] = ACTIONS(1622), + [sym_char_literal] = ACTIONS(1622), + [anon_sym_true] = ACTIONS(1624), + [anon_sym_false] = ACTIONS(1624), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1624), + [sym_super] = ACTIONS(1624), + [sym_crate] = ACTIONS(1624), + [sym_metavariable] = ACTIONS(1622), + [sym_raw_string_literal] = ACTIONS(1622), + [sym_float_literal] = ACTIONS(1622), [sym_block_comment] = ACTIONS(3), }, [386] = { - [ts_builtin_sym_end] = ACTIONS(1624), - [sym_identifier] = ACTIONS(1626), - [anon_sym_SEMI] = ACTIONS(1624), - [anon_sym_macro_rules_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1624), - [anon_sym_RBRACE] = ACTIONS(1624), - [anon_sym_LBRACK] = ACTIONS(1624), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_u8] = ACTIONS(1626), - [anon_sym_i8] = ACTIONS(1626), - [anon_sym_u16] = ACTIONS(1626), - [anon_sym_i16] = ACTIONS(1626), - [anon_sym_u32] = ACTIONS(1626), - [anon_sym_i32] = ACTIONS(1626), - [anon_sym_u64] = ACTIONS(1626), - [anon_sym_i64] = ACTIONS(1626), - [anon_sym_u128] = ACTIONS(1626), - [anon_sym_i128] = ACTIONS(1626), - [anon_sym_isize] = ACTIONS(1626), - [anon_sym_usize] = ACTIONS(1626), - [anon_sym_f32] = ACTIONS(1626), - [anon_sym_f64] = ACTIONS(1626), - [anon_sym_bool] = ACTIONS(1626), - [anon_sym_str] = ACTIONS(1626), - [anon_sym_char] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1626), - [anon_sym_async] = ACTIONS(1626), - [anon_sym_break] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1626), - [anon_sym_continue] = ACTIONS(1626), - [anon_sym_default] = ACTIONS(1626), - [anon_sym_enum] = ACTIONS(1626), - [anon_sym_fn] = ACTIONS(1626), - [anon_sym_for] = ACTIONS(1626), - [anon_sym_if] = ACTIONS(1626), - [anon_sym_impl] = ACTIONS(1626), - [anon_sym_let] = ACTIONS(1626), - [anon_sym_loop] = ACTIONS(1626), - [anon_sym_match] = ACTIONS(1626), - [anon_sym_mod] = ACTIONS(1626), - [anon_sym_pub] = ACTIONS(1626), - [anon_sym_return] = ACTIONS(1626), - [anon_sym_static] = ACTIONS(1626), - [anon_sym_struct] = ACTIONS(1626), - [anon_sym_trait] = ACTIONS(1626), - [anon_sym_type] = ACTIONS(1626), - [anon_sym_union] = ACTIONS(1626), - [anon_sym_unsafe] = ACTIONS(1626), - [anon_sym_use] = ACTIONS(1626), - [anon_sym_while] = ACTIONS(1626), - [anon_sym_POUND] = ACTIONS(1624), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_extern] = ACTIONS(1626), - [anon_sym_LT] = ACTIONS(1624), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_AMP] = ACTIONS(1624), - [anon_sym_DOT_DOT] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_PIPE] = ACTIONS(1624), - [anon_sym_yield] = ACTIONS(1626), - [anon_sym_move] = ACTIONS(1626), - [sym_integer_literal] = ACTIONS(1624), - [aux_sym_string_literal_token1] = ACTIONS(1624), - [sym_char_literal] = ACTIONS(1624), - [anon_sym_true] = ACTIONS(1626), - [anon_sym_false] = ACTIONS(1626), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1626), - [sym_super] = ACTIONS(1626), - [sym_crate] = ACTIONS(1626), - [sym_metavariable] = ACTIONS(1624), - [sym_raw_string_literal] = ACTIONS(1624), - [sym_float_literal] = ACTIONS(1624), + [ts_builtin_sym_end] = ACTIONS(1626), + [sym_identifier] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1626), + [anon_sym_macro_rules_BANG] = ACTIONS(1626), + [anon_sym_LPAREN] = ACTIONS(1626), + [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_RBRACE] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_STAR] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u128] = ACTIONS(1628), + [anon_sym_i128] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_str] = ACTIONS(1628), + [anon_sym_char] = ACTIONS(1628), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1628), + [anon_sym_break] = ACTIONS(1628), + [anon_sym_const] = ACTIONS(1628), + [anon_sym_continue] = ACTIONS(1628), + [anon_sym_default] = ACTIONS(1628), + [anon_sym_enum] = ACTIONS(1628), + [anon_sym_fn] = ACTIONS(1628), + [anon_sym_for] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1628), + [anon_sym_impl] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1628), + [anon_sym_loop] = ACTIONS(1628), + [anon_sym_match] = ACTIONS(1628), + [anon_sym_mod] = ACTIONS(1628), + [anon_sym_pub] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1628), + [anon_sym_static] = ACTIONS(1628), + [anon_sym_struct] = ACTIONS(1628), + [anon_sym_trait] = ACTIONS(1628), + [anon_sym_type] = ACTIONS(1628), + [anon_sym_union] = ACTIONS(1628), + [anon_sym_unsafe] = ACTIONS(1628), + [anon_sym_use] = ACTIONS(1628), + [anon_sym_while] = ACTIONS(1628), + [anon_sym_POUND] = ACTIONS(1626), + [anon_sym_BANG] = ACTIONS(1626), + [anon_sym_extern] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(1626), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_AMP] = ACTIONS(1626), + [anon_sym_DOT_DOT] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_PIPE] = ACTIONS(1626), + [anon_sym_yield] = ACTIONS(1628), + [anon_sym_move] = ACTIONS(1628), + [sym_integer_literal] = ACTIONS(1626), + [aux_sym_string_literal_token1] = ACTIONS(1626), + [sym_char_literal] = ACTIONS(1626), + [anon_sym_true] = ACTIONS(1628), + [anon_sym_false] = ACTIONS(1628), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1628), + [sym_super] = ACTIONS(1628), + [sym_crate] = ACTIONS(1628), + [sym_metavariable] = ACTIONS(1626), + [sym_raw_string_literal] = ACTIONS(1626), + [sym_float_literal] = ACTIONS(1626), [sym_block_comment] = ACTIONS(3), }, [387] = { - [ts_builtin_sym_end] = ACTIONS(1628), - [sym_identifier] = ACTIONS(1630), - [anon_sym_SEMI] = ACTIONS(1628), - [anon_sym_macro_rules_BANG] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1628), - [anon_sym_RBRACE] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1628), - [anon_sym_u8] = ACTIONS(1630), - [anon_sym_i8] = ACTIONS(1630), - [anon_sym_u16] = ACTIONS(1630), - [anon_sym_i16] = ACTIONS(1630), - [anon_sym_u32] = ACTIONS(1630), - [anon_sym_i32] = ACTIONS(1630), - [anon_sym_u64] = ACTIONS(1630), - [anon_sym_i64] = ACTIONS(1630), - [anon_sym_u128] = ACTIONS(1630), - [anon_sym_i128] = ACTIONS(1630), - [anon_sym_isize] = ACTIONS(1630), - [anon_sym_usize] = ACTIONS(1630), - [anon_sym_f32] = ACTIONS(1630), - [anon_sym_f64] = ACTIONS(1630), - [anon_sym_bool] = ACTIONS(1630), - [anon_sym_str] = ACTIONS(1630), - [anon_sym_char] = ACTIONS(1630), - [anon_sym_SQUOTE] = ACTIONS(1630), - [anon_sym_async] = ACTIONS(1630), - [anon_sym_break] = ACTIONS(1630), - [anon_sym_const] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(1630), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_enum] = ACTIONS(1630), - [anon_sym_fn] = ACTIONS(1630), - [anon_sym_for] = ACTIONS(1630), - [anon_sym_if] = ACTIONS(1630), - [anon_sym_impl] = ACTIONS(1630), - [anon_sym_let] = ACTIONS(1630), - [anon_sym_loop] = ACTIONS(1630), - [anon_sym_match] = ACTIONS(1630), - [anon_sym_mod] = ACTIONS(1630), - [anon_sym_pub] = ACTIONS(1630), - [anon_sym_return] = ACTIONS(1630), - [anon_sym_static] = ACTIONS(1630), - [anon_sym_struct] = ACTIONS(1630), - [anon_sym_trait] = ACTIONS(1630), - [anon_sym_type] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_unsafe] = ACTIONS(1630), - [anon_sym_use] = ACTIONS(1630), - [anon_sym_while] = ACTIONS(1630), - [anon_sym_POUND] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1628), - [anon_sym_extern] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(1628), - [anon_sym_COLON_COLON] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1628), - [anon_sym_DOT_DOT] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_PIPE] = ACTIONS(1628), - [anon_sym_yield] = ACTIONS(1630), - [anon_sym_move] = ACTIONS(1630), - [sym_integer_literal] = ACTIONS(1628), - [aux_sym_string_literal_token1] = ACTIONS(1628), - [sym_char_literal] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1630), - [anon_sym_false] = ACTIONS(1630), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1630), - [sym_super] = ACTIONS(1630), - [sym_crate] = ACTIONS(1630), - [sym_metavariable] = ACTIONS(1628), - [sym_raw_string_literal] = ACTIONS(1628), - [sym_float_literal] = ACTIONS(1628), + [ts_builtin_sym_end] = ACTIONS(1630), + [sym_identifier] = ACTIONS(1632), + [anon_sym_SEMI] = ACTIONS(1630), + [anon_sym_macro_rules_BANG] = ACTIONS(1630), + [anon_sym_LPAREN] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1630), + [anon_sym_RBRACE] = ACTIONS(1630), + [anon_sym_LBRACK] = ACTIONS(1630), + [anon_sym_STAR] = ACTIONS(1630), + [anon_sym_u8] = ACTIONS(1632), + [anon_sym_i8] = ACTIONS(1632), + [anon_sym_u16] = ACTIONS(1632), + [anon_sym_i16] = ACTIONS(1632), + [anon_sym_u32] = ACTIONS(1632), + [anon_sym_i32] = ACTIONS(1632), + [anon_sym_u64] = ACTIONS(1632), + [anon_sym_i64] = ACTIONS(1632), + [anon_sym_u128] = ACTIONS(1632), + [anon_sym_i128] = ACTIONS(1632), + [anon_sym_isize] = ACTIONS(1632), + [anon_sym_usize] = ACTIONS(1632), + [anon_sym_f32] = ACTIONS(1632), + [anon_sym_f64] = ACTIONS(1632), + [anon_sym_bool] = ACTIONS(1632), + [anon_sym_str] = ACTIONS(1632), + [anon_sym_char] = ACTIONS(1632), + [anon_sym_SQUOTE] = ACTIONS(1632), + [anon_sym_async] = ACTIONS(1632), + [anon_sym_break] = ACTIONS(1632), + [anon_sym_const] = ACTIONS(1632), + [anon_sym_continue] = ACTIONS(1632), + [anon_sym_default] = ACTIONS(1632), + [anon_sym_enum] = ACTIONS(1632), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1632), + [anon_sym_if] = ACTIONS(1632), + [anon_sym_impl] = ACTIONS(1632), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_loop] = ACTIONS(1632), + [anon_sym_match] = ACTIONS(1632), + [anon_sym_mod] = ACTIONS(1632), + [anon_sym_pub] = ACTIONS(1632), + [anon_sym_return] = ACTIONS(1632), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_struct] = ACTIONS(1632), + [anon_sym_trait] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_union] = ACTIONS(1632), + [anon_sym_unsafe] = ACTIONS(1632), + [anon_sym_use] = ACTIONS(1632), + [anon_sym_while] = ACTIONS(1632), + [anon_sym_POUND] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1630), + [anon_sym_extern] = ACTIONS(1632), + [anon_sym_LT] = ACTIONS(1630), + [anon_sym_COLON_COLON] = ACTIONS(1630), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_DOT_DOT] = ACTIONS(1630), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_yield] = ACTIONS(1632), + [anon_sym_move] = ACTIONS(1632), + [sym_integer_literal] = ACTIONS(1630), + [aux_sym_string_literal_token1] = ACTIONS(1630), + [sym_char_literal] = ACTIONS(1630), + [anon_sym_true] = ACTIONS(1632), + [anon_sym_false] = ACTIONS(1632), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1632), + [sym_super] = ACTIONS(1632), + [sym_crate] = ACTIONS(1632), + [sym_metavariable] = ACTIONS(1630), + [sym_raw_string_literal] = ACTIONS(1630), + [sym_float_literal] = ACTIONS(1630), [sym_block_comment] = ACTIONS(3), }, [388] = { - [ts_builtin_sym_end] = ACTIONS(1632), - [sym_identifier] = ACTIONS(1634), - [anon_sym_SEMI] = ACTIONS(1632), - [anon_sym_macro_rules_BANG] = ACTIONS(1632), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(1632), - [anon_sym_RBRACE] = ACTIONS(1632), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1632), - [anon_sym_u8] = ACTIONS(1634), - [anon_sym_i8] = ACTIONS(1634), - [anon_sym_u16] = ACTIONS(1634), - [anon_sym_i16] = ACTIONS(1634), - [anon_sym_u32] = ACTIONS(1634), - [anon_sym_i32] = ACTIONS(1634), - [anon_sym_u64] = ACTIONS(1634), - [anon_sym_i64] = ACTIONS(1634), - [anon_sym_u128] = ACTIONS(1634), - [anon_sym_i128] = ACTIONS(1634), - [anon_sym_isize] = ACTIONS(1634), - [anon_sym_usize] = ACTIONS(1634), - [anon_sym_f32] = ACTIONS(1634), - [anon_sym_f64] = ACTIONS(1634), - [anon_sym_bool] = ACTIONS(1634), - [anon_sym_str] = ACTIONS(1634), - [anon_sym_char] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1634), - [anon_sym_async] = ACTIONS(1634), - [anon_sym_break] = ACTIONS(1634), - [anon_sym_const] = ACTIONS(1634), - [anon_sym_continue] = ACTIONS(1634), - [anon_sym_default] = ACTIONS(1634), - [anon_sym_enum] = ACTIONS(1634), - [anon_sym_fn] = ACTIONS(1634), - [anon_sym_for] = ACTIONS(1634), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_impl] = ACTIONS(1634), - [anon_sym_let] = ACTIONS(1634), - [anon_sym_loop] = ACTIONS(1634), - [anon_sym_match] = ACTIONS(1634), - [anon_sym_mod] = ACTIONS(1634), - [anon_sym_pub] = ACTIONS(1634), - [anon_sym_return] = ACTIONS(1634), - [anon_sym_static] = ACTIONS(1634), - [anon_sym_struct] = ACTIONS(1634), - [anon_sym_trait] = ACTIONS(1634), - [anon_sym_type] = ACTIONS(1634), - [anon_sym_union] = ACTIONS(1634), - [anon_sym_unsafe] = ACTIONS(1634), - [anon_sym_use] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1632), - [anon_sym_extern] = ACTIONS(1634), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_COLON_COLON] = ACTIONS(1632), - [anon_sym_AMP] = ACTIONS(1632), - [anon_sym_DOT_DOT] = ACTIONS(1632), - [anon_sym_DASH] = ACTIONS(1632), - [anon_sym_PIPE] = ACTIONS(1632), - [anon_sym_yield] = ACTIONS(1634), - [anon_sym_move] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1632), - [aux_sym_string_literal_token1] = ACTIONS(1632), - [sym_char_literal] = ACTIONS(1632), - [anon_sym_true] = ACTIONS(1634), - [anon_sym_false] = ACTIONS(1634), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1634), - [sym_super] = ACTIONS(1634), - [sym_crate] = ACTIONS(1634), - [sym_metavariable] = ACTIONS(1632), - [sym_raw_string_literal] = ACTIONS(1632), - [sym_float_literal] = ACTIONS(1632), + [ts_builtin_sym_end] = ACTIONS(1634), + [sym_identifier] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1634), + [anon_sym_macro_rules_BANG] = ACTIONS(1634), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_RBRACE] = ACTIONS(1634), + [anon_sym_LBRACK] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1634), + [anon_sym_u8] = ACTIONS(1636), + [anon_sym_i8] = ACTIONS(1636), + [anon_sym_u16] = ACTIONS(1636), + [anon_sym_i16] = ACTIONS(1636), + [anon_sym_u32] = ACTIONS(1636), + [anon_sym_i32] = ACTIONS(1636), + [anon_sym_u64] = ACTIONS(1636), + [anon_sym_i64] = ACTIONS(1636), + [anon_sym_u128] = ACTIONS(1636), + [anon_sym_i128] = ACTIONS(1636), + [anon_sym_isize] = ACTIONS(1636), + [anon_sym_usize] = ACTIONS(1636), + [anon_sym_f32] = ACTIONS(1636), + [anon_sym_f64] = ACTIONS(1636), + [anon_sym_bool] = ACTIONS(1636), + [anon_sym_str] = ACTIONS(1636), + [anon_sym_char] = ACTIONS(1636), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_async] = ACTIONS(1636), + [anon_sym_break] = ACTIONS(1636), + [anon_sym_const] = ACTIONS(1636), + [anon_sym_continue] = ACTIONS(1636), + [anon_sym_default] = ACTIONS(1636), + [anon_sym_enum] = ACTIONS(1636), + [anon_sym_fn] = ACTIONS(1636), + [anon_sym_for] = ACTIONS(1636), + [anon_sym_if] = ACTIONS(1636), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_let] = ACTIONS(1636), + [anon_sym_loop] = ACTIONS(1636), + [anon_sym_match] = ACTIONS(1636), + [anon_sym_mod] = ACTIONS(1636), + [anon_sym_pub] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1636), + [anon_sym_static] = ACTIONS(1636), + [anon_sym_struct] = ACTIONS(1636), + [anon_sym_trait] = ACTIONS(1636), + [anon_sym_type] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1636), + [anon_sym_unsafe] = ACTIONS(1636), + [anon_sym_use] = ACTIONS(1636), + [anon_sym_while] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(1634), + [anon_sym_BANG] = ACTIONS(1634), + [anon_sym_extern] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1634), + [anon_sym_COLON_COLON] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1634), + [anon_sym_DOT_DOT] = ACTIONS(1634), + [anon_sym_DASH] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1634), + [anon_sym_yield] = ACTIONS(1636), + [anon_sym_move] = ACTIONS(1636), + [sym_integer_literal] = ACTIONS(1634), + [aux_sym_string_literal_token1] = ACTIONS(1634), + [sym_char_literal] = ACTIONS(1634), + [anon_sym_true] = ACTIONS(1636), + [anon_sym_false] = ACTIONS(1636), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1636), + [sym_super] = ACTIONS(1636), + [sym_crate] = ACTIONS(1636), + [sym_metavariable] = ACTIONS(1634), + [sym_raw_string_literal] = ACTIONS(1634), + [sym_float_literal] = ACTIONS(1634), [sym_block_comment] = ACTIONS(3), }, [389] = { - [ts_builtin_sym_end] = ACTIONS(1636), - [sym_identifier] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_macro_rules_BANG] = ACTIONS(1636), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_STAR] = ACTIONS(1636), - [anon_sym_u8] = ACTIONS(1638), - [anon_sym_i8] = ACTIONS(1638), - [anon_sym_u16] = ACTIONS(1638), - [anon_sym_i16] = ACTIONS(1638), - [anon_sym_u32] = ACTIONS(1638), - [anon_sym_i32] = ACTIONS(1638), - [anon_sym_u64] = ACTIONS(1638), - [anon_sym_i64] = ACTIONS(1638), - [anon_sym_u128] = ACTIONS(1638), - [anon_sym_i128] = ACTIONS(1638), - [anon_sym_isize] = ACTIONS(1638), - [anon_sym_usize] = ACTIONS(1638), - [anon_sym_f32] = ACTIONS(1638), - [anon_sym_f64] = ACTIONS(1638), - [anon_sym_bool] = ACTIONS(1638), - [anon_sym_str] = ACTIONS(1638), - [anon_sym_char] = ACTIONS(1638), - [anon_sym_SQUOTE] = ACTIONS(1638), - [anon_sym_async] = ACTIONS(1638), - [anon_sym_break] = ACTIONS(1638), - [anon_sym_const] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(1638), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_enum] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1638), - [anon_sym_for] = ACTIONS(1638), - [anon_sym_if] = ACTIONS(1638), - [anon_sym_impl] = ACTIONS(1638), - [anon_sym_let] = ACTIONS(1638), - [anon_sym_loop] = ACTIONS(1638), - [anon_sym_match] = ACTIONS(1638), - [anon_sym_mod] = ACTIONS(1638), - [anon_sym_pub] = ACTIONS(1638), - [anon_sym_return] = ACTIONS(1638), - [anon_sym_static] = ACTIONS(1638), - [anon_sym_struct] = ACTIONS(1638), - [anon_sym_trait] = ACTIONS(1638), - [anon_sym_type] = ACTIONS(1638), - [anon_sym_union] = ACTIONS(1638), - [anon_sym_unsafe] = ACTIONS(1638), - [anon_sym_use] = ACTIONS(1638), - [anon_sym_while] = ACTIONS(1638), - [anon_sym_POUND] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_extern] = ACTIONS(1638), - [anon_sym_LT] = ACTIONS(1636), - [anon_sym_COLON_COLON] = ACTIONS(1636), - [anon_sym_AMP] = ACTIONS(1636), - [anon_sym_DOT_DOT] = ACTIONS(1636), - [anon_sym_DASH] = ACTIONS(1636), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_yield] = ACTIONS(1638), - [anon_sym_move] = ACTIONS(1638), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1636), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1638), - [anon_sym_false] = ACTIONS(1638), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1638), - [sym_super] = ACTIONS(1638), - [sym_crate] = ACTIONS(1638), - [sym_metavariable] = ACTIONS(1636), - [sym_raw_string_literal] = ACTIONS(1636), - [sym_float_literal] = ACTIONS(1636), + [ts_builtin_sym_end] = ACTIONS(1638), + [sym_identifier] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1638), + [anon_sym_macro_rules_BANG] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_LBRACE] = ACTIONS(1638), + [anon_sym_RBRACE] = ACTIONS(1638), + [anon_sym_LBRACK] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1638), + [anon_sym_u8] = ACTIONS(1640), + [anon_sym_i8] = ACTIONS(1640), + [anon_sym_u16] = ACTIONS(1640), + [anon_sym_i16] = ACTIONS(1640), + [anon_sym_u32] = ACTIONS(1640), + [anon_sym_i32] = ACTIONS(1640), + [anon_sym_u64] = ACTIONS(1640), + [anon_sym_i64] = ACTIONS(1640), + [anon_sym_u128] = ACTIONS(1640), + [anon_sym_i128] = ACTIONS(1640), + [anon_sym_isize] = ACTIONS(1640), + [anon_sym_usize] = ACTIONS(1640), + [anon_sym_f32] = ACTIONS(1640), + [anon_sym_f64] = ACTIONS(1640), + [anon_sym_bool] = ACTIONS(1640), + [anon_sym_str] = ACTIONS(1640), + [anon_sym_char] = ACTIONS(1640), + [anon_sym_SQUOTE] = ACTIONS(1640), + [anon_sym_async] = ACTIONS(1640), + [anon_sym_break] = ACTIONS(1640), + [anon_sym_const] = ACTIONS(1640), + [anon_sym_continue] = ACTIONS(1640), + [anon_sym_default] = ACTIONS(1640), + [anon_sym_enum] = ACTIONS(1640), + [anon_sym_fn] = ACTIONS(1640), + [anon_sym_for] = ACTIONS(1640), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_impl] = ACTIONS(1640), + [anon_sym_let] = ACTIONS(1640), + [anon_sym_loop] = ACTIONS(1640), + [anon_sym_match] = ACTIONS(1640), + [anon_sym_mod] = ACTIONS(1640), + [anon_sym_pub] = ACTIONS(1640), + [anon_sym_return] = ACTIONS(1640), + [anon_sym_static] = ACTIONS(1640), + [anon_sym_struct] = ACTIONS(1640), + [anon_sym_trait] = ACTIONS(1640), + [anon_sym_type] = ACTIONS(1640), + [anon_sym_union] = ACTIONS(1640), + [anon_sym_unsafe] = ACTIONS(1640), + [anon_sym_use] = ACTIONS(1640), + [anon_sym_while] = ACTIONS(1640), + [anon_sym_POUND] = ACTIONS(1638), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_extern] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1638), + [anon_sym_COLON_COLON] = ACTIONS(1638), + [anon_sym_AMP] = ACTIONS(1638), + [anon_sym_DOT_DOT] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_PIPE] = ACTIONS(1638), + [anon_sym_yield] = ACTIONS(1640), + [anon_sym_move] = ACTIONS(1640), + [sym_integer_literal] = ACTIONS(1638), + [aux_sym_string_literal_token1] = ACTIONS(1638), + [sym_char_literal] = ACTIONS(1638), + [anon_sym_true] = ACTIONS(1640), + [anon_sym_false] = ACTIONS(1640), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1640), + [sym_super] = ACTIONS(1640), + [sym_crate] = ACTIONS(1640), + [sym_metavariable] = ACTIONS(1638), + [sym_raw_string_literal] = ACTIONS(1638), + [sym_float_literal] = ACTIONS(1638), [sym_block_comment] = ACTIONS(3), }, [390] = { - [ts_builtin_sym_end] = ACTIONS(1640), - [sym_identifier] = ACTIONS(1642), - [anon_sym_SEMI] = ACTIONS(1640), - [anon_sym_macro_rules_BANG] = ACTIONS(1640), - [anon_sym_LPAREN] = ACTIONS(1640), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_RBRACE] = ACTIONS(1640), - [anon_sym_LBRACK] = ACTIONS(1640), - [anon_sym_STAR] = ACTIONS(1640), - [anon_sym_u8] = ACTIONS(1642), - [anon_sym_i8] = ACTIONS(1642), - [anon_sym_u16] = ACTIONS(1642), - [anon_sym_i16] = ACTIONS(1642), - [anon_sym_u32] = ACTIONS(1642), - [anon_sym_i32] = ACTIONS(1642), - [anon_sym_u64] = ACTIONS(1642), - [anon_sym_i64] = ACTIONS(1642), - [anon_sym_u128] = ACTIONS(1642), - [anon_sym_i128] = ACTIONS(1642), - [anon_sym_isize] = ACTIONS(1642), - [anon_sym_usize] = ACTIONS(1642), - [anon_sym_f32] = ACTIONS(1642), - [anon_sym_f64] = ACTIONS(1642), - [anon_sym_bool] = ACTIONS(1642), - [anon_sym_str] = ACTIONS(1642), - [anon_sym_char] = ACTIONS(1642), - [anon_sym_SQUOTE] = ACTIONS(1642), - [anon_sym_async] = ACTIONS(1642), - [anon_sym_break] = ACTIONS(1642), - [anon_sym_const] = ACTIONS(1642), - [anon_sym_continue] = ACTIONS(1642), - [anon_sym_default] = ACTIONS(1642), - [anon_sym_enum] = ACTIONS(1642), - [anon_sym_fn] = ACTIONS(1642), - [anon_sym_for] = ACTIONS(1642), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1642), - [anon_sym_let] = ACTIONS(1642), - [anon_sym_loop] = ACTIONS(1642), - [anon_sym_match] = ACTIONS(1642), - [anon_sym_mod] = ACTIONS(1642), - [anon_sym_pub] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1642), - [anon_sym_static] = ACTIONS(1642), - [anon_sym_struct] = ACTIONS(1642), - [anon_sym_trait] = ACTIONS(1642), - [anon_sym_type] = ACTIONS(1642), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_use] = ACTIONS(1642), - [anon_sym_while] = ACTIONS(1642), - [anon_sym_POUND] = ACTIONS(1640), - [anon_sym_BANG] = ACTIONS(1640), - [anon_sym_extern] = ACTIONS(1642), - [anon_sym_LT] = ACTIONS(1640), - [anon_sym_COLON_COLON] = ACTIONS(1640), - [anon_sym_AMP] = ACTIONS(1640), - [anon_sym_DOT_DOT] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_PIPE] = ACTIONS(1640), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_move] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1640), - [aux_sym_string_literal_token1] = ACTIONS(1640), - [sym_char_literal] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1642), - [anon_sym_false] = ACTIONS(1642), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1640), - [sym_raw_string_literal] = ACTIONS(1640), - [sym_float_literal] = ACTIONS(1640), + [ts_builtin_sym_end] = ACTIONS(1642), + [sym_identifier] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1642), + [anon_sym_macro_rules_BANG] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(1642), + [anon_sym_LBRACE] = ACTIONS(1642), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_STAR] = ACTIONS(1642), + [anon_sym_u8] = ACTIONS(1644), + [anon_sym_i8] = ACTIONS(1644), + [anon_sym_u16] = ACTIONS(1644), + [anon_sym_i16] = ACTIONS(1644), + [anon_sym_u32] = ACTIONS(1644), + [anon_sym_i32] = ACTIONS(1644), + [anon_sym_u64] = ACTIONS(1644), + [anon_sym_i64] = ACTIONS(1644), + [anon_sym_u128] = ACTIONS(1644), + [anon_sym_i128] = ACTIONS(1644), + [anon_sym_isize] = ACTIONS(1644), + [anon_sym_usize] = ACTIONS(1644), + [anon_sym_f32] = ACTIONS(1644), + [anon_sym_f64] = ACTIONS(1644), + [anon_sym_bool] = ACTIONS(1644), + [anon_sym_str] = ACTIONS(1644), + [anon_sym_char] = ACTIONS(1644), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_async] = ACTIONS(1644), + [anon_sym_break] = ACTIONS(1644), + [anon_sym_const] = ACTIONS(1644), + [anon_sym_continue] = ACTIONS(1644), + [anon_sym_default] = ACTIONS(1644), + [anon_sym_enum] = ACTIONS(1644), + [anon_sym_fn] = ACTIONS(1644), + [anon_sym_for] = ACTIONS(1644), + [anon_sym_if] = ACTIONS(1644), + [anon_sym_impl] = ACTIONS(1644), + [anon_sym_let] = ACTIONS(1644), + [anon_sym_loop] = ACTIONS(1644), + [anon_sym_match] = ACTIONS(1644), + [anon_sym_mod] = ACTIONS(1644), + [anon_sym_pub] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1644), + [anon_sym_static] = ACTIONS(1644), + [anon_sym_struct] = ACTIONS(1644), + [anon_sym_trait] = ACTIONS(1644), + [anon_sym_type] = ACTIONS(1644), + [anon_sym_union] = ACTIONS(1644), + [anon_sym_unsafe] = ACTIONS(1644), + [anon_sym_use] = ACTIONS(1644), + [anon_sym_while] = ACTIONS(1644), + [anon_sym_POUND] = ACTIONS(1642), + [anon_sym_BANG] = ACTIONS(1642), + [anon_sym_extern] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_COLON_COLON] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1642), + [anon_sym_DOT_DOT] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1642), + [anon_sym_yield] = ACTIONS(1644), + [anon_sym_move] = ACTIONS(1644), + [sym_integer_literal] = ACTIONS(1642), + [aux_sym_string_literal_token1] = ACTIONS(1642), + [sym_char_literal] = ACTIONS(1642), + [anon_sym_true] = ACTIONS(1644), + [anon_sym_false] = ACTIONS(1644), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1644), + [sym_super] = ACTIONS(1644), + [sym_crate] = ACTIONS(1644), + [sym_metavariable] = ACTIONS(1642), + [sym_raw_string_literal] = ACTIONS(1642), + [sym_float_literal] = ACTIONS(1642), [sym_block_comment] = ACTIONS(3), }, [391] = { - [ts_builtin_sym_end] = ACTIONS(1644), - [sym_identifier] = ACTIONS(1646), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_macro_rules_BANG] = ACTIONS(1644), - [anon_sym_LPAREN] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1644), - [anon_sym_RBRACE] = ACTIONS(1644), - [anon_sym_LBRACK] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1644), - [anon_sym_u8] = ACTIONS(1646), - [anon_sym_i8] = ACTIONS(1646), - [anon_sym_u16] = ACTIONS(1646), - [anon_sym_i16] = ACTIONS(1646), - [anon_sym_u32] = ACTIONS(1646), - [anon_sym_i32] = ACTIONS(1646), - [anon_sym_u64] = ACTIONS(1646), - [anon_sym_i64] = ACTIONS(1646), - [anon_sym_u128] = ACTIONS(1646), - [anon_sym_i128] = ACTIONS(1646), - [anon_sym_isize] = ACTIONS(1646), - [anon_sym_usize] = ACTIONS(1646), - [anon_sym_f32] = ACTIONS(1646), - [anon_sym_f64] = ACTIONS(1646), - [anon_sym_bool] = ACTIONS(1646), - [anon_sym_str] = ACTIONS(1646), - [anon_sym_char] = ACTIONS(1646), - [anon_sym_SQUOTE] = ACTIONS(1646), - [anon_sym_async] = ACTIONS(1646), - [anon_sym_break] = ACTIONS(1646), - [anon_sym_const] = ACTIONS(1646), - [anon_sym_continue] = ACTIONS(1646), - [anon_sym_default] = ACTIONS(1646), - [anon_sym_enum] = ACTIONS(1646), - [anon_sym_fn] = ACTIONS(1646), - [anon_sym_for] = ACTIONS(1646), - [anon_sym_if] = ACTIONS(1646), - [anon_sym_impl] = ACTIONS(1646), - [anon_sym_let] = ACTIONS(1646), - [anon_sym_loop] = ACTIONS(1646), - [anon_sym_match] = ACTIONS(1646), - [anon_sym_mod] = ACTIONS(1646), - [anon_sym_pub] = ACTIONS(1646), - [anon_sym_return] = ACTIONS(1646), - [anon_sym_static] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1646), - [anon_sym_trait] = ACTIONS(1646), - [anon_sym_type] = ACTIONS(1646), - [anon_sym_union] = ACTIONS(1646), - [anon_sym_unsafe] = ACTIONS(1646), - [anon_sym_use] = ACTIONS(1646), - [anon_sym_while] = ACTIONS(1646), - [anon_sym_POUND] = ACTIONS(1644), - [anon_sym_BANG] = ACTIONS(1644), - [anon_sym_extern] = ACTIONS(1646), - [anon_sym_LT] = ACTIONS(1644), - [anon_sym_COLON_COLON] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1644), - [anon_sym_DOT_DOT] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_PIPE] = ACTIONS(1644), - [anon_sym_yield] = ACTIONS(1646), - [anon_sym_move] = ACTIONS(1646), - [sym_integer_literal] = ACTIONS(1644), - [aux_sym_string_literal_token1] = ACTIONS(1644), - [sym_char_literal] = ACTIONS(1644), - [anon_sym_true] = ACTIONS(1646), - [anon_sym_false] = ACTIONS(1646), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1646), - [sym_super] = ACTIONS(1646), - [sym_crate] = ACTIONS(1646), - [sym_metavariable] = ACTIONS(1644), - [sym_raw_string_literal] = ACTIONS(1644), - [sym_float_literal] = ACTIONS(1644), + [sym_attribute_item] = STATE(547), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_match_arm] = STATE(484), + [sym_last_match_arm] = STATE(2338), + [sym_match_pattern] = STATE(2387), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1981), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_enum_variant_list_repeat1] = STATE(547), + [aux_sym_match_block_repeat1] = STATE(484), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [392] = { @@ -56283,4161 +56281,4161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [416] = { - [sym_attribute_item] = STATE(545), - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_match_arm] = STATE(483), - [sym_last_match_arm] = STATE(2342), - [sym_match_pattern] = STATE(2531), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2068), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_enum_variant_list_repeat1] = STATE(545), - [aux_sym_match_block_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), + [ts_builtin_sym_end] = ACTIONS(1744), + [sym_identifier] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_macro_rules_BANG] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1744), [anon_sym_RBRACE] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_u8] = ACTIONS(1746), + [anon_sym_i8] = ACTIONS(1746), + [anon_sym_u16] = ACTIONS(1746), + [anon_sym_i16] = ACTIONS(1746), + [anon_sym_u32] = ACTIONS(1746), + [anon_sym_i32] = ACTIONS(1746), + [anon_sym_u64] = ACTIONS(1746), + [anon_sym_i64] = ACTIONS(1746), + [anon_sym_u128] = ACTIONS(1746), + [anon_sym_i128] = ACTIONS(1746), + [anon_sym_isize] = ACTIONS(1746), + [anon_sym_usize] = ACTIONS(1746), + [anon_sym_f32] = ACTIONS(1746), + [anon_sym_f64] = ACTIONS(1746), + [anon_sym_bool] = ACTIONS(1746), + [anon_sym_str] = ACTIONS(1746), + [anon_sym_char] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1746), + [anon_sym_async] = ACTIONS(1746), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_const] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1746), + [anon_sym_default] = ACTIONS(1746), + [anon_sym_enum] = ACTIONS(1746), + [anon_sym_fn] = ACTIONS(1746), + [anon_sym_for] = ACTIONS(1746), + [anon_sym_if] = ACTIONS(1746), + [anon_sym_impl] = ACTIONS(1746), + [anon_sym_let] = ACTIONS(1746), + [anon_sym_loop] = ACTIONS(1746), + [anon_sym_match] = ACTIONS(1746), + [anon_sym_mod] = ACTIONS(1746), + [anon_sym_pub] = ACTIONS(1746), + [anon_sym_return] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(1746), + [anon_sym_struct] = ACTIONS(1746), + [anon_sym_trait] = ACTIONS(1746), + [anon_sym_type] = ACTIONS(1746), + [anon_sym_union] = ACTIONS(1746), + [anon_sym_unsafe] = ACTIONS(1746), + [anon_sym_use] = ACTIONS(1746), + [anon_sym_while] = ACTIONS(1746), + [anon_sym_POUND] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_AMP] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_yield] = ACTIONS(1746), + [anon_sym_move] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [aux_sym_string_literal_token1] = ACTIONS(1744), + [sym_char_literal] = ACTIONS(1744), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1746), + [sym_super] = ACTIONS(1746), + [sym_crate] = ACTIONS(1746), + [sym_metavariable] = ACTIONS(1744), + [sym_raw_string_literal] = ACTIONS(1744), + [sym_float_literal] = ACTIONS(1744), [sym_block_comment] = ACTIONS(3), }, [417] = { - [ts_builtin_sym_end] = ACTIONS(1746), - [sym_identifier] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_macro_rules_BANG] = ACTIONS(1746), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_u8] = ACTIONS(1748), - [anon_sym_i8] = ACTIONS(1748), - [anon_sym_u16] = ACTIONS(1748), - [anon_sym_i16] = ACTIONS(1748), - [anon_sym_u32] = ACTIONS(1748), - [anon_sym_i32] = ACTIONS(1748), - [anon_sym_u64] = ACTIONS(1748), - [anon_sym_i64] = ACTIONS(1748), - [anon_sym_u128] = ACTIONS(1748), - [anon_sym_i128] = ACTIONS(1748), - [anon_sym_isize] = ACTIONS(1748), - [anon_sym_usize] = ACTIONS(1748), - [anon_sym_f32] = ACTIONS(1748), - [anon_sym_f64] = ACTIONS(1748), - [anon_sym_bool] = ACTIONS(1748), - [anon_sym_str] = ACTIONS(1748), - [anon_sym_char] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_async] = ACTIONS(1748), - [anon_sym_break] = ACTIONS(1748), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_continue] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1748), - [anon_sym_enum] = ACTIONS(1748), - [anon_sym_fn] = ACTIONS(1748), - [anon_sym_for] = ACTIONS(1748), - [anon_sym_if] = ACTIONS(1748), - [anon_sym_impl] = ACTIONS(1748), - [anon_sym_let] = ACTIONS(1748), - [anon_sym_loop] = ACTIONS(1748), - [anon_sym_match] = ACTIONS(1748), - [anon_sym_mod] = ACTIONS(1748), - [anon_sym_pub] = ACTIONS(1748), - [anon_sym_return] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1748), - [anon_sym_struct] = ACTIONS(1748), - [anon_sym_trait] = ACTIONS(1748), - [anon_sym_type] = ACTIONS(1748), - [anon_sym_union] = ACTIONS(1748), - [anon_sym_unsafe] = ACTIONS(1748), - [anon_sym_use] = ACTIONS(1748), - [anon_sym_while] = ACTIONS(1748), - [anon_sym_POUND] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1748), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_COLON_COLON] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_DOT_DOT] = ACTIONS(1746), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_yield] = ACTIONS(1748), - [anon_sym_move] = ACTIONS(1748), - [sym_integer_literal] = ACTIONS(1746), - [aux_sym_string_literal_token1] = ACTIONS(1746), - [sym_char_literal] = ACTIONS(1746), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1748), - [sym_super] = ACTIONS(1748), - [sym_crate] = ACTIONS(1748), - [sym_metavariable] = ACTIONS(1746), - [sym_raw_string_literal] = ACTIONS(1746), - [sym_float_literal] = ACTIONS(1746), + [ts_builtin_sym_end] = ACTIONS(1748), + [sym_identifier] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1748), + [anon_sym_macro_rules_BANG] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1748), + [anon_sym_LBRACE] = ACTIONS(1748), + [anon_sym_RBRACE] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1748), + [anon_sym_u8] = ACTIONS(1750), + [anon_sym_i8] = ACTIONS(1750), + [anon_sym_u16] = ACTIONS(1750), + [anon_sym_i16] = ACTIONS(1750), + [anon_sym_u32] = ACTIONS(1750), + [anon_sym_i32] = ACTIONS(1750), + [anon_sym_u64] = ACTIONS(1750), + [anon_sym_i64] = ACTIONS(1750), + [anon_sym_u128] = ACTIONS(1750), + [anon_sym_i128] = ACTIONS(1750), + [anon_sym_isize] = ACTIONS(1750), + [anon_sym_usize] = ACTIONS(1750), + [anon_sym_f32] = ACTIONS(1750), + [anon_sym_f64] = ACTIONS(1750), + [anon_sym_bool] = ACTIONS(1750), + [anon_sym_str] = ACTIONS(1750), + [anon_sym_char] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1750), + [anon_sym_async] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_const] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_enum] = ACTIONS(1750), + [anon_sym_fn] = ACTIONS(1750), + [anon_sym_for] = ACTIONS(1750), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_impl] = ACTIONS(1750), + [anon_sym_let] = ACTIONS(1750), + [anon_sym_loop] = ACTIONS(1750), + [anon_sym_match] = ACTIONS(1750), + [anon_sym_mod] = ACTIONS(1750), + [anon_sym_pub] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_static] = ACTIONS(1750), + [anon_sym_struct] = ACTIONS(1750), + [anon_sym_trait] = ACTIONS(1750), + [anon_sym_type] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_unsafe] = ACTIONS(1750), + [anon_sym_use] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_POUND] = ACTIONS(1748), + [anon_sym_BANG] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1748), + [anon_sym_COLON_COLON] = ACTIONS(1748), + [anon_sym_AMP] = ACTIONS(1748), + [anon_sym_DOT_DOT] = ACTIONS(1748), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_PIPE] = ACTIONS(1748), + [anon_sym_yield] = ACTIONS(1750), + [anon_sym_move] = ACTIONS(1750), + [sym_integer_literal] = ACTIONS(1748), + [aux_sym_string_literal_token1] = ACTIONS(1748), + [sym_char_literal] = ACTIONS(1748), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1750), + [sym_super] = ACTIONS(1750), + [sym_crate] = ACTIONS(1750), + [sym_metavariable] = ACTIONS(1748), + [sym_raw_string_literal] = ACTIONS(1748), + [sym_float_literal] = ACTIONS(1748), [sym_block_comment] = ACTIONS(3), }, [418] = { - [ts_builtin_sym_end] = ACTIONS(1750), - [sym_identifier] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_macro_rules_BANG] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1750), - [anon_sym_RBRACE] = ACTIONS(1750), - [anon_sym_LBRACK] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1750), - [anon_sym_u8] = ACTIONS(1752), - [anon_sym_i8] = ACTIONS(1752), - [anon_sym_u16] = ACTIONS(1752), - [anon_sym_i16] = ACTIONS(1752), - [anon_sym_u32] = ACTIONS(1752), - [anon_sym_i32] = ACTIONS(1752), - [anon_sym_u64] = ACTIONS(1752), - [anon_sym_i64] = ACTIONS(1752), - [anon_sym_u128] = ACTIONS(1752), - [anon_sym_i128] = ACTIONS(1752), - [anon_sym_isize] = ACTIONS(1752), - [anon_sym_usize] = ACTIONS(1752), - [anon_sym_f32] = ACTIONS(1752), - [anon_sym_f64] = ACTIONS(1752), - [anon_sym_bool] = ACTIONS(1752), - [anon_sym_str] = ACTIONS(1752), - [anon_sym_char] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_async] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_const] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_default] = ACTIONS(1752), - [anon_sym_enum] = ACTIONS(1752), - [anon_sym_fn] = ACTIONS(1752), - [anon_sym_for] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_impl] = ACTIONS(1752), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_loop] = ACTIONS(1752), - [anon_sym_match] = ACTIONS(1752), - [anon_sym_mod] = ACTIONS(1752), - [anon_sym_pub] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_struct] = ACTIONS(1752), - [anon_sym_trait] = ACTIONS(1752), - [anon_sym_type] = ACTIONS(1752), - [anon_sym_union] = ACTIONS(1752), - [anon_sym_unsafe] = ACTIONS(1752), - [anon_sym_use] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_POUND] = ACTIONS(1750), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(1750), - [anon_sym_COLON_COLON] = ACTIONS(1750), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_DOT_DOT] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1750), - [anon_sym_yield] = ACTIONS(1752), - [anon_sym_move] = ACTIONS(1752), - [sym_integer_literal] = ACTIONS(1750), - [aux_sym_string_literal_token1] = ACTIONS(1750), - [sym_char_literal] = ACTIONS(1750), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1750), - [sym_raw_string_literal] = ACTIONS(1750), - [sym_float_literal] = ACTIONS(1750), + [ts_builtin_sym_end] = ACTIONS(1752), + [sym_identifier] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_macro_rules_BANG] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_u8] = ACTIONS(1754), + [anon_sym_i8] = ACTIONS(1754), + [anon_sym_u16] = ACTIONS(1754), + [anon_sym_i16] = ACTIONS(1754), + [anon_sym_u32] = ACTIONS(1754), + [anon_sym_i32] = ACTIONS(1754), + [anon_sym_u64] = ACTIONS(1754), + [anon_sym_i64] = ACTIONS(1754), + [anon_sym_u128] = ACTIONS(1754), + [anon_sym_i128] = ACTIONS(1754), + [anon_sym_isize] = ACTIONS(1754), + [anon_sym_usize] = ACTIONS(1754), + [anon_sym_f32] = ACTIONS(1754), + [anon_sym_f64] = ACTIONS(1754), + [anon_sym_bool] = ACTIONS(1754), + [anon_sym_str] = ACTIONS(1754), + [anon_sym_char] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1754), + [anon_sym_async] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_const] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_default] = ACTIONS(1754), + [anon_sym_enum] = ACTIONS(1754), + [anon_sym_fn] = ACTIONS(1754), + [anon_sym_for] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_impl] = ACTIONS(1754), + [anon_sym_let] = ACTIONS(1754), + [anon_sym_loop] = ACTIONS(1754), + [anon_sym_match] = ACTIONS(1754), + [anon_sym_mod] = ACTIONS(1754), + [anon_sym_pub] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(1754), + [anon_sym_trait] = ACTIONS(1754), + [anon_sym_type] = ACTIONS(1754), + [anon_sym_union] = ACTIONS(1754), + [anon_sym_unsafe] = ACTIONS(1754), + [anon_sym_use] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_POUND] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_extern] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_PIPE] = ACTIONS(1752), + [anon_sym_yield] = ACTIONS(1754), + [anon_sym_move] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [aux_sym_string_literal_token1] = ACTIONS(1752), + [sym_char_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1754), + [sym_super] = ACTIONS(1754), + [sym_crate] = ACTIONS(1754), + [sym_metavariable] = ACTIONS(1752), + [sym_raw_string_literal] = ACTIONS(1752), + [sym_float_literal] = ACTIONS(1752), [sym_block_comment] = ACTIONS(3), }, [419] = { - [ts_builtin_sym_end] = ACTIONS(1754), - [sym_identifier] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_macro_rules_BANG] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1754), - [anon_sym_u8] = ACTIONS(1756), - [anon_sym_i8] = ACTIONS(1756), - [anon_sym_u16] = ACTIONS(1756), - [anon_sym_i16] = ACTIONS(1756), - [anon_sym_u32] = ACTIONS(1756), - [anon_sym_i32] = ACTIONS(1756), - [anon_sym_u64] = ACTIONS(1756), - [anon_sym_i64] = ACTIONS(1756), - [anon_sym_u128] = ACTIONS(1756), - [anon_sym_i128] = ACTIONS(1756), - [anon_sym_isize] = ACTIONS(1756), - [anon_sym_usize] = ACTIONS(1756), - [anon_sym_f32] = ACTIONS(1756), - [anon_sym_f64] = ACTIONS(1756), - [anon_sym_bool] = ACTIONS(1756), - [anon_sym_str] = ACTIONS(1756), - [anon_sym_char] = ACTIONS(1756), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_async] = ACTIONS(1756), - [anon_sym_break] = ACTIONS(1756), - [anon_sym_const] = ACTIONS(1756), - [anon_sym_continue] = ACTIONS(1756), - [anon_sym_default] = ACTIONS(1756), - [anon_sym_enum] = ACTIONS(1756), - [anon_sym_fn] = ACTIONS(1756), - [anon_sym_for] = ACTIONS(1756), - [anon_sym_if] = ACTIONS(1756), - [anon_sym_impl] = ACTIONS(1756), - [anon_sym_let] = ACTIONS(1756), - [anon_sym_loop] = ACTIONS(1756), - [anon_sym_match] = ACTIONS(1756), - [anon_sym_mod] = ACTIONS(1756), - [anon_sym_pub] = ACTIONS(1756), - [anon_sym_return] = ACTIONS(1756), - [anon_sym_static] = ACTIONS(1756), - [anon_sym_struct] = ACTIONS(1756), - [anon_sym_trait] = ACTIONS(1756), - [anon_sym_type] = ACTIONS(1756), - [anon_sym_union] = ACTIONS(1756), - [anon_sym_unsafe] = ACTIONS(1756), - [anon_sym_use] = ACTIONS(1756), - [anon_sym_while] = ACTIONS(1756), - [anon_sym_POUND] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_extern] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_yield] = ACTIONS(1756), - [anon_sym_move] = ACTIONS(1756), - [sym_integer_literal] = ACTIONS(1754), - [aux_sym_string_literal_token1] = ACTIONS(1754), - [sym_char_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1756), - [anon_sym_false] = ACTIONS(1756), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1756), - [sym_super] = ACTIONS(1756), - [sym_crate] = ACTIONS(1756), - [sym_metavariable] = ACTIONS(1754), - [sym_raw_string_literal] = ACTIONS(1754), - [sym_float_literal] = ACTIONS(1754), + [ts_builtin_sym_end] = ACTIONS(1756), + [sym_identifier] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_macro_rules_BANG] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1756), + [anon_sym_u8] = ACTIONS(1758), + [anon_sym_i8] = ACTIONS(1758), + [anon_sym_u16] = ACTIONS(1758), + [anon_sym_i16] = ACTIONS(1758), + [anon_sym_u32] = ACTIONS(1758), + [anon_sym_i32] = ACTIONS(1758), + [anon_sym_u64] = ACTIONS(1758), + [anon_sym_i64] = ACTIONS(1758), + [anon_sym_u128] = ACTIONS(1758), + [anon_sym_i128] = ACTIONS(1758), + [anon_sym_isize] = ACTIONS(1758), + [anon_sym_usize] = ACTIONS(1758), + [anon_sym_f32] = ACTIONS(1758), + [anon_sym_f64] = ACTIONS(1758), + [anon_sym_bool] = ACTIONS(1758), + [anon_sym_str] = ACTIONS(1758), + [anon_sym_char] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1758), + [anon_sym_async] = ACTIONS(1758), + [anon_sym_break] = ACTIONS(1758), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_continue] = ACTIONS(1758), + [anon_sym_default] = ACTIONS(1758), + [anon_sym_enum] = ACTIONS(1758), + [anon_sym_fn] = ACTIONS(1758), + [anon_sym_for] = ACTIONS(1758), + [anon_sym_if] = ACTIONS(1758), + [anon_sym_impl] = ACTIONS(1758), + [anon_sym_let] = ACTIONS(1758), + [anon_sym_loop] = ACTIONS(1758), + [anon_sym_match] = ACTIONS(1758), + [anon_sym_mod] = ACTIONS(1758), + [anon_sym_pub] = ACTIONS(1758), + [anon_sym_return] = ACTIONS(1758), + [anon_sym_static] = ACTIONS(1758), + [anon_sym_struct] = ACTIONS(1758), + [anon_sym_trait] = ACTIONS(1758), + [anon_sym_type] = ACTIONS(1758), + [anon_sym_union] = ACTIONS(1758), + [anon_sym_unsafe] = ACTIONS(1758), + [anon_sym_use] = ACTIONS(1758), + [anon_sym_while] = ACTIONS(1758), + [anon_sym_POUND] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1756), + [anon_sym_extern] = ACTIONS(1758), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_yield] = ACTIONS(1758), + [anon_sym_move] = ACTIONS(1758), + [sym_integer_literal] = ACTIONS(1756), + [aux_sym_string_literal_token1] = ACTIONS(1756), + [sym_char_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1758), + [anon_sym_false] = ACTIONS(1758), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1758), + [sym_super] = ACTIONS(1758), + [sym_crate] = ACTIONS(1758), + [sym_metavariable] = ACTIONS(1756), + [sym_raw_string_literal] = ACTIONS(1756), + [sym_float_literal] = ACTIONS(1756), [sym_block_comment] = ACTIONS(3), }, [420] = { - [ts_builtin_sym_end] = ACTIONS(1758), - [sym_identifier] = ACTIONS(1760), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_macro_rules_BANG] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_RBRACE] = ACTIONS(1758), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_u8] = ACTIONS(1760), - [anon_sym_i8] = ACTIONS(1760), - [anon_sym_u16] = ACTIONS(1760), - [anon_sym_i16] = ACTIONS(1760), - [anon_sym_u32] = ACTIONS(1760), - [anon_sym_i32] = ACTIONS(1760), - [anon_sym_u64] = ACTIONS(1760), - [anon_sym_i64] = ACTIONS(1760), - [anon_sym_u128] = ACTIONS(1760), - [anon_sym_i128] = ACTIONS(1760), - [anon_sym_isize] = ACTIONS(1760), - [anon_sym_usize] = ACTIONS(1760), - [anon_sym_f32] = ACTIONS(1760), - [anon_sym_f64] = ACTIONS(1760), - [anon_sym_bool] = ACTIONS(1760), - [anon_sym_str] = ACTIONS(1760), - [anon_sym_char] = ACTIONS(1760), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_async] = ACTIONS(1760), - [anon_sym_break] = ACTIONS(1760), - [anon_sym_const] = ACTIONS(1760), - [anon_sym_continue] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1760), - [anon_sym_enum] = ACTIONS(1760), - [anon_sym_fn] = ACTIONS(1760), - [anon_sym_for] = ACTIONS(1760), - [anon_sym_if] = ACTIONS(1760), - [anon_sym_impl] = ACTIONS(1760), - [anon_sym_let] = ACTIONS(1760), - [anon_sym_loop] = ACTIONS(1760), - [anon_sym_match] = ACTIONS(1760), - [anon_sym_mod] = ACTIONS(1760), - [anon_sym_pub] = ACTIONS(1760), - [anon_sym_return] = ACTIONS(1760), - [anon_sym_static] = ACTIONS(1760), - [anon_sym_struct] = ACTIONS(1760), - [anon_sym_trait] = ACTIONS(1760), - [anon_sym_type] = ACTIONS(1760), - [anon_sym_union] = ACTIONS(1760), - [anon_sym_unsafe] = ACTIONS(1760), - [anon_sym_use] = ACTIONS(1760), - [anon_sym_while] = ACTIONS(1760), - [anon_sym_POUND] = ACTIONS(1758), - [anon_sym_BANG] = ACTIONS(1758), - [anon_sym_extern] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1758), - [anon_sym_COLON_COLON] = ACTIONS(1758), - [anon_sym_AMP] = ACTIONS(1758), - [anon_sym_DOT_DOT] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_yield] = ACTIONS(1760), - [anon_sym_move] = ACTIONS(1760), - [sym_integer_literal] = ACTIONS(1758), - [aux_sym_string_literal_token1] = ACTIONS(1758), - [sym_char_literal] = ACTIONS(1758), - [anon_sym_true] = ACTIONS(1760), - [anon_sym_false] = ACTIONS(1760), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1760), - [sym_super] = ACTIONS(1760), - [sym_crate] = ACTIONS(1760), - [sym_metavariable] = ACTIONS(1758), - [sym_raw_string_literal] = ACTIONS(1758), - [sym_float_literal] = ACTIONS(1758), + [ts_builtin_sym_end] = ACTIONS(1760), + [sym_identifier] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_macro_rules_BANG] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_LBRACK] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_u8] = ACTIONS(1762), + [anon_sym_i8] = ACTIONS(1762), + [anon_sym_u16] = ACTIONS(1762), + [anon_sym_i16] = ACTIONS(1762), + [anon_sym_u32] = ACTIONS(1762), + [anon_sym_i32] = ACTIONS(1762), + [anon_sym_u64] = ACTIONS(1762), + [anon_sym_i64] = ACTIONS(1762), + [anon_sym_u128] = ACTIONS(1762), + [anon_sym_i128] = ACTIONS(1762), + [anon_sym_isize] = ACTIONS(1762), + [anon_sym_usize] = ACTIONS(1762), + [anon_sym_f32] = ACTIONS(1762), + [anon_sym_f64] = ACTIONS(1762), + [anon_sym_bool] = ACTIONS(1762), + [anon_sym_str] = ACTIONS(1762), + [anon_sym_char] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1762), + [anon_sym_async] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_default] = ACTIONS(1762), + [anon_sym_enum] = ACTIONS(1762), + [anon_sym_fn] = ACTIONS(1762), + [anon_sym_for] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_impl] = ACTIONS(1762), + [anon_sym_let] = ACTIONS(1762), + [anon_sym_loop] = ACTIONS(1762), + [anon_sym_match] = ACTIONS(1762), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_pub] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_struct] = ACTIONS(1762), + [anon_sym_trait] = ACTIONS(1762), + [anon_sym_type] = ACTIONS(1762), + [anon_sym_union] = ACTIONS(1762), + [anon_sym_unsafe] = ACTIONS(1762), + [anon_sym_use] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1760), + [anon_sym_AMP] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_yield] = ACTIONS(1762), + [anon_sym_move] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [aux_sym_string_literal_token1] = ACTIONS(1760), + [sym_char_literal] = ACTIONS(1760), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1762), + [sym_super] = ACTIONS(1762), + [sym_crate] = ACTIONS(1762), + [sym_metavariable] = ACTIONS(1760), + [sym_raw_string_literal] = ACTIONS(1760), + [sym_float_literal] = ACTIONS(1760), [sym_block_comment] = ACTIONS(3), }, [421] = { - [ts_builtin_sym_end] = ACTIONS(1762), - [sym_identifier] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1762), - [anon_sym_macro_rules_BANG] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1762), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_RBRACE] = ACTIONS(1762), - [anon_sym_LBRACK] = ACTIONS(1762), - [anon_sym_STAR] = ACTIONS(1762), - [anon_sym_u8] = ACTIONS(1764), - [anon_sym_i8] = ACTIONS(1764), - [anon_sym_u16] = ACTIONS(1764), - [anon_sym_i16] = ACTIONS(1764), - [anon_sym_u32] = ACTIONS(1764), - [anon_sym_i32] = ACTIONS(1764), - [anon_sym_u64] = ACTIONS(1764), - [anon_sym_i64] = ACTIONS(1764), - [anon_sym_u128] = ACTIONS(1764), - [anon_sym_i128] = ACTIONS(1764), - [anon_sym_isize] = ACTIONS(1764), - [anon_sym_usize] = ACTIONS(1764), - [anon_sym_f32] = ACTIONS(1764), - [anon_sym_f64] = ACTIONS(1764), - [anon_sym_bool] = ACTIONS(1764), - [anon_sym_str] = ACTIONS(1764), - [anon_sym_char] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1764), - [anon_sym_async] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_const] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_default] = ACTIONS(1764), - [anon_sym_enum] = ACTIONS(1764), - [anon_sym_fn] = ACTIONS(1764), - [anon_sym_for] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_impl] = ACTIONS(1764), - [anon_sym_let] = ACTIONS(1764), - [anon_sym_loop] = ACTIONS(1764), - [anon_sym_match] = ACTIONS(1764), - [anon_sym_mod] = ACTIONS(1764), - [anon_sym_pub] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_static] = ACTIONS(1764), - [anon_sym_struct] = ACTIONS(1764), - [anon_sym_trait] = ACTIONS(1764), - [anon_sym_type] = ACTIONS(1764), - [anon_sym_union] = ACTIONS(1764), - [anon_sym_unsafe] = ACTIONS(1764), - [anon_sym_use] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_POUND] = ACTIONS(1762), - [anon_sym_BANG] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1764), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_COLON_COLON] = ACTIONS(1762), - [anon_sym_AMP] = ACTIONS(1762), - [anon_sym_DOT_DOT] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(1762), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_yield] = ACTIONS(1764), - [anon_sym_move] = ACTIONS(1764), - [sym_integer_literal] = ACTIONS(1762), - [aux_sym_string_literal_token1] = ACTIONS(1762), - [sym_char_literal] = ACTIONS(1762), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1764), - [sym_super] = ACTIONS(1764), - [sym_crate] = ACTIONS(1764), - [sym_metavariable] = ACTIONS(1762), - [sym_raw_string_literal] = ACTIONS(1762), - [sym_float_literal] = ACTIONS(1762), + [ts_builtin_sym_end] = ACTIONS(1764), + [sym_identifier] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_macro_rules_BANG] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_u8] = ACTIONS(1766), + [anon_sym_i8] = ACTIONS(1766), + [anon_sym_u16] = ACTIONS(1766), + [anon_sym_i16] = ACTIONS(1766), + [anon_sym_u32] = ACTIONS(1766), + [anon_sym_i32] = ACTIONS(1766), + [anon_sym_u64] = ACTIONS(1766), + [anon_sym_i64] = ACTIONS(1766), + [anon_sym_u128] = ACTIONS(1766), + [anon_sym_i128] = ACTIONS(1766), + [anon_sym_isize] = ACTIONS(1766), + [anon_sym_usize] = ACTIONS(1766), + [anon_sym_f32] = ACTIONS(1766), + [anon_sym_f64] = ACTIONS(1766), + [anon_sym_bool] = ACTIONS(1766), + [anon_sym_str] = ACTIONS(1766), + [anon_sym_char] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_async] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_default] = ACTIONS(1766), + [anon_sym_enum] = ACTIONS(1766), + [anon_sym_fn] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_impl] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_loop] = ACTIONS(1766), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_mod] = ACTIONS(1766), + [anon_sym_pub] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_static] = ACTIONS(1766), + [anon_sym_struct] = ACTIONS(1766), + [anon_sym_trait] = ACTIONS(1766), + [anon_sym_type] = ACTIONS(1766), + [anon_sym_union] = ACTIONS(1766), + [anon_sym_unsafe] = ACTIONS(1766), + [anon_sym_use] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_AMP] = ACTIONS(1764), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_DASH] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1764), + [anon_sym_yield] = ACTIONS(1766), + [anon_sym_move] = ACTIONS(1766), + [sym_integer_literal] = ACTIONS(1764), + [aux_sym_string_literal_token1] = ACTIONS(1764), + [sym_char_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1766), + [anon_sym_false] = ACTIONS(1766), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1766), + [sym_super] = ACTIONS(1766), + [sym_crate] = ACTIONS(1766), + [sym_metavariable] = ACTIONS(1764), + [sym_raw_string_literal] = ACTIONS(1764), + [sym_float_literal] = ACTIONS(1764), [sym_block_comment] = ACTIONS(3), }, [422] = { - [ts_builtin_sym_end] = ACTIONS(1766), - [sym_identifier] = ACTIONS(1768), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_macro_rules_BANG] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_STAR] = ACTIONS(1766), - [anon_sym_u8] = ACTIONS(1768), - [anon_sym_i8] = ACTIONS(1768), - [anon_sym_u16] = ACTIONS(1768), - [anon_sym_i16] = ACTIONS(1768), - [anon_sym_u32] = ACTIONS(1768), - [anon_sym_i32] = ACTIONS(1768), - [anon_sym_u64] = ACTIONS(1768), - [anon_sym_i64] = ACTIONS(1768), - [anon_sym_u128] = ACTIONS(1768), - [anon_sym_i128] = ACTIONS(1768), - [anon_sym_isize] = ACTIONS(1768), - [anon_sym_usize] = ACTIONS(1768), - [anon_sym_f32] = ACTIONS(1768), - [anon_sym_f64] = ACTIONS(1768), - [anon_sym_bool] = ACTIONS(1768), - [anon_sym_str] = ACTIONS(1768), - [anon_sym_char] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_async] = ACTIONS(1768), - [anon_sym_break] = ACTIONS(1768), - [anon_sym_const] = ACTIONS(1768), - [anon_sym_continue] = ACTIONS(1768), - [anon_sym_default] = ACTIONS(1768), - [anon_sym_enum] = ACTIONS(1768), - [anon_sym_fn] = ACTIONS(1768), - [anon_sym_for] = ACTIONS(1768), - [anon_sym_if] = ACTIONS(1768), - [anon_sym_impl] = ACTIONS(1768), - [anon_sym_let] = ACTIONS(1768), - [anon_sym_loop] = ACTIONS(1768), - [anon_sym_match] = ACTIONS(1768), - [anon_sym_mod] = ACTIONS(1768), - [anon_sym_pub] = ACTIONS(1768), - [anon_sym_return] = ACTIONS(1768), - [anon_sym_static] = ACTIONS(1768), - [anon_sym_struct] = ACTIONS(1768), - [anon_sym_trait] = ACTIONS(1768), - [anon_sym_type] = ACTIONS(1768), - [anon_sym_union] = ACTIONS(1768), - [anon_sym_unsafe] = ACTIONS(1768), - [anon_sym_use] = ACTIONS(1768), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_POUND] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1766), - [anon_sym_extern] = ACTIONS(1768), - [anon_sym_LT] = ACTIONS(1766), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_AMP] = ACTIONS(1766), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_yield] = ACTIONS(1768), - [anon_sym_move] = ACTIONS(1768), - [sym_integer_literal] = ACTIONS(1766), - [aux_sym_string_literal_token1] = ACTIONS(1766), - [sym_char_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1768), - [sym_super] = ACTIONS(1768), - [sym_crate] = ACTIONS(1768), - [sym_metavariable] = ACTIONS(1766), - [sym_raw_string_literal] = ACTIONS(1766), - [sym_float_literal] = ACTIONS(1766), + [ts_builtin_sym_end] = ACTIONS(1768), + [sym_identifier] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_macro_rules_BANG] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_u8] = ACTIONS(1770), + [anon_sym_i8] = ACTIONS(1770), + [anon_sym_u16] = ACTIONS(1770), + [anon_sym_i16] = ACTIONS(1770), + [anon_sym_u32] = ACTIONS(1770), + [anon_sym_i32] = ACTIONS(1770), + [anon_sym_u64] = ACTIONS(1770), + [anon_sym_i64] = ACTIONS(1770), + [anon_sym_u128] = ACTIONS(1770), + [anon_sym_i128] = ACTIONS(1770), + [anon_sym_isize] = ACTIONS(1770), + [anon_sym_usize] = ACTIONS(1770), + [anon_sym_f32] = ACTIONS(1770), + [anon_sym_f64] = ACTIONS(1770), + [anon_sym_bool] = ACTIONS(1770), + [anon_sym_str] = ACTIONS(1770), + [anon_sym_char] = ACTIONS(1770), + [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_async] = ACTIONS(1770), + [anon_sym_break] = ACTIONS(1770), + [anon_sym_const] = ACTIONS(1770), + [anon_sym_continue] = ACTIONS(1770), + [anon_sym_default] = ACTIONS(1770), + [anon_sym_enum] = ACTIONS(1770), + [anon_sym_fn] = ACTIONS(1770), + [anon_sym_for] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_impl] = ACTIONS(1770), + [anon_sym_let] = ACTIONS(1770), + [anon_sym_loop] = ACTIONS(1770), + [anon_sym_match] = ACTIONS(1770), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_pub] = ACTIONS(1770), + [anon_sym_return] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1770), + [anon_sym_struct] = ACTIONS(1770), + [anon_sym_trait] = ACTIONS(1770), + [anon_sym_type] = ACTIONS(1770), + [anon_sym_union] = ACTIONS(1770), + [anon_sym_unsafe] = ACTIONS(1770), + [anon_sym_use] = ACTIONS(1770), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_extern] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1768), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_yield] = ACTIONS(1770), + [anon_sym_move] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [aux_sym_string_literal_token1] = ACTIONS(1768), + [sym_char_literal] = ACTIONS(1768), + [anon_sym_true] = ACTIONS(1770), + [anon_sym_false] = ACTIONS(1770), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1770), + [sym_super] = ACTIONS(1770), + [sym_crate] = ACTIONS(1770), + [sym_metavariable] = ACTIONS(1768), + [sym_raw_string_literal] = ACTIONS(1768), + [sym_float_literal] = ACTIONS(1768), [sym_block_comment] = ACTIONS(3), }, [423] = { - [ts_builtin_sym_end] = ACTIONS(1770), - [sym_identifier] = ACTIONS(1772), - [anon_sym_SEMI] = ACTIONS(1770), - [anon_sym_macro_rules_BANG] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [anon_sym_u8] = ACTIONS(1772), - [anon_sym_i8] = ACTIONS(1772), - [anon_sym_u16] = ACTIONS(1772), - [anon_sym_i16] = ACTIONS(1772), - [anon_sym_u32] = ACTIONS(1772), - [anon_sym_i32] = ACTIONS(1772), - [anon_sym_u64] = ACTIONS(1772), - [anon_sym_i64] = ACTIONS(1772), - [anon_sym_u128] = ACTIONS(1772), - [anon_sym_i128] = ACTIONS(1772), - [anon_sym_isize] = ACTIONS(1772), - [anon_sym_usize] = ACTIONS(1772), - [anon_sym_f32] = ACTIONS(1772), - [anon_sym_f64] = ACTIONS(1772), - [anon_sym_bool] = ACTIONS(1772), - [anon_sym_str] = ACTIONS(1772), - [anon_sym_char] = ACTIONS(1772), - [anon_sym_SQUOTE] = ACTIONS(1772), - [anon_sym_async] = ACTIONS(1772), - [anon_sym_break] = ACTIONS(1772), - [anon_sym_const] = ACTIONS(1772), - [anon_sym_continue] = ACTIONS(1772), - [anon_sym_default] = ACTIONS(1772), - [anon_sym_enum] = ACTIONS(1772), - [anon_sym_fn] = ACTIONS(1772), - [anon_sym_for] = ACTIONS(1772), - [anon_sym_if] = ACTIONS(1772), - [anon_sym_impl] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1772), - [anon_sym_loop] = ACTIONS(1772), - [anon_sym_match] = ACTIONS(1772), - [anon_sym_mod] = ACTIONS(1772), - [anon_sym_pub] = ACTIONS(1772), - [anon_sym_return] = ACTIONS(1772), - [anon_sym_static] = ACTIONS(1772), - [anon_sym_struct] = ACTIONS(1772), - [anon_sym_trait] = ACTIONS(1772), - [anon_sym_type] = ACTIONS(1772), - [anon_sym_union] = ACTIONS(1772), - [anon_sym_unsafe] = ACTIONS(1772), - [anon_sym_use] = ACTIONS(1772), - [anon_sym_while] = ACTIONS(1772), - [anon_sym_POUND] = ACTIONS(1770), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_yield] = ACTIONS(1772), - [anon_sym_move] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [aux_sym_string_literal_token1] = ACTIONS(1770), - [sym_char_literal] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1772), - [sym_super] = ACTIONS(1772), - [sym_crate] = ACTIONS(1772), - [sym_metavariable] = ACTIONS(1770), - [sym_raw_string_literal] = ACTIONS(1770), - [sym_float_literal] = ACTIONS(1770), + [ts_builtin_sym_end] = ACTIONS(1772), + [sym_identifier] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_macro_rules_BANG] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_u8] = ACTIONS(1774), + [anon_sym_i8] = ACTIONS(1774), + [anon_sym_u16] = ACTIONS(1774), + [anon_sym_i16] = ACTIONS(1774), + [anon_sym_u32] = ACTIONS(1774), + [anon_sym_i32] = ACTIONS(1774), + [anon_sym_u64] = ACTIONS(1774), + [anon_sym_i64] = ACTIONS(1774), + [anon_sym_u128] = ACTIONS(1774), + [anon_sym_i128] = ACTIONS(1774), + [anon_sym_isize] = ACTIONS(1774), + [anon_sym_usize] = ACTIONS(1774), + [anon_sym_f32] = ACTIONS(1774), + [anon_sym_f64] = ACTIONS(1774), + [anon_sym_bool] = ACTIONS(1774), + [anon_sym_str] = ACTIONS(1774), + [anon_sym_char] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_async] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_const] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1774), + [anon_sym_enum] = ACTIONS(1774), + [anon_sym_fn] = ACTIONS(1774), + [anon_sym_for] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_impl] = ACTIONS(1774), + [anon_sym_let] = ACTIONS(1774), + [anon_sym_loop] = ACTIONS(1774), + [anon_sym_match] = ACTIONS(1774), + [anon_sym_mod] = ACTIONS(1774), + [anon_sym_pub] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1774), + [anon_sym_struct] = ACTIONS(1774), + [anon_sym_trait] = ACTIONS(1774), + [anon_sym_type] = ACTIONS(1774), + [anon_sym_union] = ACTIONS(1774), + [anon_sym_unsafe] = ACTIONS(1774), + [anon_sym_use] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_BANG] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1774), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_COLON_COLON] = ACTIONS(1772), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym_DOT_DOT] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_yield] = ACTIONS(1774), + [anon_sym_move] = ACTIONS(1774), + [sym_integer_literal] = ACTIONS(1772), + [aux_sym_string_literal_token1] = ACTIONS(1772), + [sym_char_literal] = ACTIONS(1772), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1774), + [sym_super] = ACTIONS(1774), + [sym_crate] = ACTIONS(1774), + [sym_metavariable] = ACTIONS(1772), + [sym_raw_string_literal] = ACTIONS(1772), + [sym_float_literal] = ACTIONS(1772), [sym_block_comment] = ACTIONS(3), }, [424] = { - [ts_builtin_sym_end] = ACTIONS(1774), - [sym_identifier] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_macro_rules_BANG] = ACTIONS(1774), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1774), - [anon_sym_RBRACE] = ACTIONS(1774), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1774), - [anon_sym_u8] = ACTIONS(1776), - [anon_sym_i8] = ACTIONS(1776), - [anon_sym_u16] = ACTIONS(1776), - [anon_sym_i16] = ACTIONS(1776), - [anon_sym_u32] = ACTIONS(1776), - [anon_sym_i32] = ACTIONS(1776), - [anon_sym_u64] = ACTIONS(1776), - [anon_sym_i64] = ACTIONS(1776), - [anon_sym_u128] = ACTIONS(1776), - [anon_sym_i128] = ACTIONS(1776), - [anon_sym_isize] = ACTIONS(1776), - [anon_sym_usize] = ACTIONS(1776), - [anon_sym_f32] = ACTIONS(1776), - [anon_sym_f64] = ACTIONS(1776), - [anon_sym_bool] = ACTIONS(1776), - [anon_sym_str] = ACTIONS(1776), - [anon_sym_char] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_async] = ACTIONS(1776), - [anon_sym_break] = ACTIONS(1776), - [anon_sym_const] = ACTIONS(1776), - [anon_sym_continue] = ACTIONS(1776), - [anon_sym_default] = ACTIONS(1776), - [anon_sym_enum] = ACTIONS(1776), - [anon_sym_fn] = ACTIONS(1776), - [anon_sym_for] = ACTIONS(1776), - [anon_sym_if] = ACTIONS(1776), - [anon_sym_impl] = ACTIONS(1776), - [anon_sym_let] = ACTIONS(1776), - [anon_sym_loop] = ACTIONS(1776), - [anon_sym_match] = ACTIONS(1776), - [anon_sym_mod] = ACTIONS(1776), - [anon_sym_pub] = ACTIONS(1776), - [anon_sym_return] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1776), - [anon_sym_struct] = ACTIONS(1776), - [anon_sym_trait] = ACTIONS(1776), - [anon_sym_type] = ACTIONS(1776), - [anon_sym_union] = ACTIONS(1776), - [anon_sym_unsafe] = ACTIONS(1776), - [anon_sym_use] = ACTIONS(1776), - [anon_sym_while] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(1774), - [anon_sym_BANG] = ACTIONS(1774), - [anon_sym_extern] = ACTIONS(1776), - [anon_sym_LT] = ACTIONS(1774), - [anon_sym_COLON_COLON] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1774), - [anon_sym_DOT_DOT] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_yield] = ACTIONS(1776), - [anon_sym_move] = ACTIONS(1776), - [sym_integer_literal] = ACTIONS(1774), - [aux_sym_string_literal_token1] = ACTIONS(1774), - [sym_char_literal] = ACTIONS(1774), - [anon_sym_true] = ACTIONS(1776), - [anon_sym_false] = ACTIONS(1776), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1776), - [sym_super] = ACTIONS(1776), - [sym_crate] = ACTIONS(1776), - [sym_metavariable] = ACTIONS(1774), - [sym_raw_string_literal] = ACTIONS(1774), - [sym_float_literal] = ACTIONS(1774), + [ts_builtin_sym_end] = ACTIONS(1776), + [sym_identifier] = ACTIONS(1778), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_macro_rules_BANG] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_u8] = ACTIONS(1778), + [anon_sym_i8] = ACTIONS(1778), + [anon_sym_u16] = ACTIONS(1778), + [anon_sym_i16] = ACTIONS(1778), + [anon_sym_u32] = ACTIONS(1778), + [anon_sym_i32] = ACTIONS(1778), + [anon_sym_u64] = ACTIONS(1778), + [anon_sym_i64] = ACTIONS(1778), + [anon_sym_u128] = ACTIONS(1778), + [anon_sym_i128] = ACTIONS(1778), + [anon_sym_isize] = ACTIONS(1778), + [anon_sym_usize] = ACTIONS(1778), + [anon_sym_f32] = ACTIONS(1778), + [anon_sym_f64] = ACTIONS(1778), + [anon_sym_bool] = ACTIONS(1778), + [anon_sym_str] = ACTIONS(1778), + [anon_sym_char] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(1778), + [anon_sym_async] = ACTIONS(1778), + [anon_sym_break] = ACTIONS(1778), + [anon_sym_const] = ACTIONS(1778), + [anon_sym_continue] = ACTIONS(1778), + [anon_sym_default] = ACTIONS(1778), + [anon_sym_enum] = ACTIONS(1778), + [anon_sym_fn] = ACTIONS(1778), + [anon_sym_for] = ACTIONS(1778), + [anon_sym_if] = ACTIONS(1778), + [anon_sym_impl] = ACTIONS(1778), + [anon_sym_let] = ACTIONS(1778), + [anon_sym_loop] = ACTIONS(1778), + [anon_sym_match] = ACTIONS(1778), + [anon_sym_mod] = ACTIONS(1778), + [anon_sym_pub] = ACTIONS(1778), + [anon_sym_return] = ACTIONS(1778), + [anon_sym_static] = ACTIONS(1778), + [anon_sym_struct] = ACTIONS(1778), + [anon_sym_trait] = ACTIONS(1778), + [anon_sym_type] = ACTIONS(1778), + [anon_sym_union] = ACTIONS(1778), + [anon_sym_unsafe] = ACTIONS(1778), + [anon_sym_use] = ACTIONS(1778), + [anon_sym_while] = ACTIONS(1778), + [anon_sym_POUND] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1776), + [anon_sym_extern] = ACTIONS(1778), + [anon_sym_LT] = ACTIONS(1776), + [anon_sym_COLON_COLON] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(1776), + [anon_sym_DOT_DOT] = ACTIONS(1776), + [anon_sym_DASH] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1776), + [anon_sym_yield] = ACTIONS(1778), + [anon_sym_move] = ACTIONS(1778), + [sym_integer_literal] = ACTIONS(1776), + [aux_sym_string_literal_token1] = ACTIONS(1776), + [sym_char_literal] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1778), + [anon_sym_false] = ACTIONS(1778), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1778), + [sym_super] = ACTIONS(1778), + [sym_crate] = ACTIONS(1778), + [sym_metavariable] = ACTIONS(1776), + [sym_raw_string_literal] = ACTIONS(1776), + [sym_float_literal] = ACTIONS(1776), [sym_block_comment] = ACTIONS(3), }, [425] = { - [ts_builtin_sym_end] = ACTIONS(1778), - [sym_identifier] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1778), - [anon_sym_macro_rules_BANG] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_u8] = ACTIONS(1780), - [anon_sym_i8] = ACTIONS(1780), - [anon_sym_u16] = ACTIONS(1780), - [anon_sym_i16] = ACTIONS(1780), - [anon_sym_u32] = ACTIONS(1780), - [anon_sym_i32] = ACTIONS(1780), - [anon_sym_u64] = ACTIONS(1780), - [anon_sym_i64] = ACTIONS(1780), - [anon_sym_u128] = ACTIONS(1780), - [anon_sym_i128] = ACTIONS(1780), - [anon_sym_isize] = ACTIONS(1780), - [anon_sym_usize] = ACTIONS(1780), - [anon_sym_f32] = ACTIONS(1780), - [anon_sym_f64] = ACTIONS(1780), - [anon_sym_bool] = ACTIONS(1780), - [anon_sym_str] = ACTIONS(1780), - [anon_sym_char] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1780), - [anon_sym_async] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_const] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_default] = ACTIONS(1780), - [anon_sym_enum] = ACTIONS(1780), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_impl] = ACTIONS(1780), - [anon_sym_let] = ACTIONS(1780), - [anon_sym_loop] = ACTIONS(1780), - [anon_sym_match] = ACTIONS(1780), - [anon_sym_mod] = ACTIONS(1780), - [anon_sym_pub] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_static] = ACTIONS(1780), - [anon_sym_struct] = ACTIONS(1780), - [anon_sym_trait] = ACTIONS(1780), - [anon_sym_type] = ACTIONS(1780), - [anon_sym_union] = ACTIONS(1780), - [anon_sym_unsafe] = ACTIONS(1780), - [anon_sym_use] = ACTIONS(1780), - [anon_sym_while] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1778), - [anon_sym_extern] = ACTIONS(1780), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_COLON_COLON] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_yield] = ACTIONS(1780), - [anon_sym_move] = ACTIONS(1780), - [sym_integer_literal] = ACTIONS(1778), - [aux_sym_string_literal_token1] = ACTIONS(1778), - [sym_char_literal] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1780), - [sym_super] = ACTIONS(1780), - [sym_crate] = ACTIONS(1780), - [sym_metavariable] = ACTIONS(1778), - [sym_raw_string_literal] = ACTIONS(1778), - [sym_float_literal] = ACTIONS(1778), + [ts_builtin_sym_end] = ACTIONS(1780), + [sym_identifier] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1780), + [anon_sym_macro_rules_BANG] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_u8] = ACTIONS(1782), + [anon_sym_i8] = ACTIONS(1782), + [anon_sym_u16] = ACTIONS(1782), + [anon_sym_i16] = ACTIONS(1782), + [anon_sym_u32] = ACTIONS(1782), + [anon_sym_i32] = ACTIONS(1782), + [anon_sym_u64] = ACTIONS(1782), + [anon_sym_i64] = ACTIONS(1782), + [anon_sym_u128] = ACTIONS(1782), + [anon_sym_i128] = ACTIONS(1782), + [anon_sym_isize] = ACTIONS(1782), + [anon_sym_usize] = ACTIONS(1782), + [anon_sym_f32] = ACTIONS(1782), + [anon_sym_f64] = ACTIONS(1782), + [anon_sym_bool] = ACTIONS(1782), + [anon_sym_str] = ACTIONS(1782), + [anon_sym_char] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1782), + [anon_sym_async] = ACTIONS(1782), + [anon_sym_break] = ACTIONS(1782), + [anon_sym_const] = ACTIONS(1782), + [anon_sym_continue] = ACTIONS(1782), + [anon_sym_default] = ACTIONS(1782), + [anon_sym_enum] = ACTIONS(1782), + [anon_sym_fn] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1782), + [anon_sym_impl] = ACTIONS(1782), + [anon_sym_let] = ACTIONS(1782), + [anon_sym_loop] = ACTIONS(1782), + [anon_sym_match] = ACTIONS(1782), + [anon_sym_mod] = ACTIONS(1782), + [anon_sym_pub] = ACTIONS(1782), + [anon_sym_return] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1782), + [anon_sym_struct] = ACTIONS(1782), + [anon_sym_trait] = ACTIONS(1782), + [anon_sym_type] = ACTIONS(1782), + [anon_sym_union] = ACTIONS(1782), + [anon_sym_unsafe] = ACTIONS(1782), + [anon_sym_use] = ACTIONS(1782), + [anon_sym_while] = ACTIONS(1782), + [anon_sym_POUND] = ACTIONS(1780), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_extern] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_COLON_COLON] = ACTIONS(1780), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(1780), + [anon_sym_yield] = ACTIONS(1782), + [anon_sym_move] = ACTIONS(1782), + [sym_integer_literal] = ACTIONS(1780), + [aux_sym_string_literal_token1] = ACTIONS(1780), + [sym_char_literal] = ACTIONS(1780), + [anon_sym_true] = ACTIONS(1782), + [anon_sym_false] = ACTIONS(1782), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1782), + [sym_super] = ACTIONS(1782), + [sym_crate] = ACTIONS(1782), + [sym_metavariable] = ACTIONS(1780), + [sym_raw_string_literal] = ACTIONS(1780), + [sym_float_literal] = ACTIONS(1780), [sym_block_comment] = ACTIONS(3), }, [426] = { - [ts_builtin_sym_end] = ACTIONS(1782), - [sym_identifier] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1782), - [anon_sym_macro_rules_BANG] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_u8] = ACTIONS(1784), - [anon_sym_i8] = ACTIONS(1784), - [anon_sym_u16] = ACTIONS(1784), - [anon_sym_i16] = ACTIONS(1784), - [anon_sym_u32] = ACTIONS(1784), - [anon_sym_i32] = ACTIONS(1784), - [anon_sym_u64] = ACTIONS(1784), - [anon_sym_i64] = ACTIONS(1784), - [anon_sym_u128] = ACTIONS(1784), - [anon_sym_i128] = ACTIONS(1784), - [anon_sym_isize] = ACTIONS(1784), - [anon_sym_usize] = ACTIONS(1784), - [anon_sym_f32] = ACTIONS(1784), - [anon_sym_f64] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_str] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1784), - [anon_sym_async] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_const] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_enum] = ACTIONS(1784), - [anon_sym_fn] = ACTIONS(1784), - [anon_sym_for] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_impl] = ACTIONS(1784), - [anon_sym_let] = ACTIONS(1784), - [anon_sym_loop] = ACTIONS(1784), - [anon_sym_match] = ACTIONS(1784), - [anon_sym_mod] = ACTIONS(1784), - [anon_sym_pub] = ACTIONS(1784), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_static] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1784), - [anon_sym_trait] = ACTIONS(1784), - [anon_sym_type] = ACTIONS(1784), - [anon_sym_union] = ACTIONS(1784), - [anon_sym_unsafe] = ACTIONS(1784), - [anon_sym_use] = ACTIONS(1784), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_POUND] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1782), - [anon_sym_extern] = ACTIONS(1784), - [anon_sym_LT] = ACTIONS(1782), - [anon_sym_COLON_COLON] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1782), - [anon_sym_DOT_DOT] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_PIPE] = ACTIONS(1782), - [anon_sym_yield] = ACTIONS(1784), - [anon_sym_move] = ACTIONS(1784), - [sym_integer_literal] = ACTIONS(1782), - [aux_sym_string_literal_token1] = ACTIONS(1782), - [sym_char_literal] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1784), - [sym_super] = ACTIONS(1784), - [sym_crate] = ACTIONS(1784), - [sym_metavariable] = ACTIONS(1782), - [sym_raw_string_literal] = ACTIONS(1782), - [sym_float_literal] = ACTIONS(1782), + [ts_builtin_sym_end] = ACTIONS(1784), + [sym_identifier] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1784), + [anon_sym_macro_rules_BANG] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1784), + [anon_sym_LBRACK] = ACTIONS(1784), + [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_u8] = ACTIONS(1786), + [anon_sym_i8] = ACTIONS(1786), + [anon_sym_u16] = ACTIONS(1786), + [anon_sym_i16] = ACTIONS(1786), + [anon_sym_u32] = ACTIONS(1786), + [anon_sym_i32] = ACTIONS(1786), + [anon_sym_u64] = ACTIONS(1786), + [anon_sym_i64] = ACTIONS(1786), + [anon_sym_u128] = ACTIONS(1786), + [anon_sym_i128] = ACTIONS(1786), + [anon_sym_isize] = ACTIONS(1786), + [anon_sym_usize] = ACTIONS(1786), + [anon_sym_f32] = ACTIONS(1786), + [anon_sym_f64] = ACTIONS(1786), + [anon_sym_bool] = ACTIONS(1786), + [anon_sym_str] = ACTIONS(1786), + [anon_sym_char] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1786), + [anon_sym_async] = ACTIONS(1786), + [anon_sym_break] = ACTIONS(1786), + [anon_sym_const] = ACTIONS(1786), + [anon_sym_continue] = ACTIONS(1786), + [anon_sym_default] = ACTIONS(1786), + [anon_sym_enum] = ACTIONS(1786), + [anon_sym_fn] = ACTIONS(1786), + [anon_sym_for] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1786), + [anon_sym_impl] = ACTIONS(1786), + [anon_sym_let] = ACTIONS(1786), + [anon_sym_loop] = ACTIONS(1786), + [anon_sym_match] = ACTIONS(1786), + [anon_sym_mod] = ACTIONS(1786), + [anon_sym_pub] = ACTIONS(1786), + [anon_sym_return] = ACTIONS(1786), + [anon_sym_static] = ACTIONS(1786), + [anon_sym_struct] = ACTIONS(1786), + [anon_sym_trait] = ACTIONS(1786), + [anon_sym_type] = ACTIONS(1786), + [anon_sym_union] = ACTIONS(1786), + [anon_sym_unsafe] = ACTIONS(1786), + [anon_sym_use] = ACTIONS(1786), + [anon_sym_while] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(1784), + [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_extern] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(1784), + [anon_sym_COLON_COLON] = ACTIONS(1784), + [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_DOT_DOT] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_yield] = ACTIONS(1786), + [anon_sym_move] = ACTIONS(1786), + [sym_integer_literal] = ACTIONS(1784), + [aux_sym_string_literal_token1] = ACTIONS(1784), + [sym_char_literal] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(1786), + [anon_sym_false] = ACTIONS(1786), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1786), + [sym_super] = ACTIONS(1786), + [sym_crate] = ACTIONS(1786), + [sym_metavariable] = ACTIONS(1784), + [sym_raw_string_literal] = ACTIONS(1784), + [sym_float_literal] = ACTIONS(1784), [sym_block_comment] = ACTIONS(3), }, [427] = { - [ts_builtin_sym_end] = ACTIONS(1786), - [sym_identifier] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_macro_rules_BANG] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_u8] = ACTIONS(1788), - [anon_sym_i8] = ACTIONS(1788), - [anon_sym_u16] = ACTIONS(1788), - [anon_sym_i16] = ACTIONS(1788), - [anon_sym_u32] = ACTIONS(1788), - [anon_sym_i32] = ACTIONS(1788), - [anon_sym_u64] = ACTIONS(1788), - [anon_sym_i64] = ACTIONS(1788), - [anon_sym_u128] = ACTIONS(1788), - [anon_sym_i128] = ACTIONS(1788), - [anon_sym_isize] = ACTIONS(1788), - [anon_sym_usize] = ACTIONS(1788), - [anon_sym_f32] = ACTIONS(1788), - [anon_sym_f64] = ACTIONS(1788), - [anon_sym_bool] = ACTIONS(1788), - [anon_sym_str] = ACTIONS(1788), - [anon_sym_char] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_async] = ACTIONS(1788), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_default] = ACTIONS(1788), - [anon_sym_enum] = ACTIONS(1788), - [anon_sym_fn] = ACTIONS(1788), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_if] = ACTIONS(1788), - [anon_sym_impl] = ACTIONS(1788), - [anon_sym_let] = ACTIONS(1788), - [anon_sym_loop] = ACTIONS(1788), - [anon_sym_match] = ACTIONS(1788), - [anon_sym_mod] = ACTIONS(1788), - [anon_sym_pub] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1788), - [anon_sym_struct] = ACTIONS(1788), - [anon_sym_trait] = ACTIONS(1788), - [anon_sym_type] = ACTIONS(1788), - [anon_sym_union] = ACTIONS(1788), - [anon_sym_unsafe] = ACTIONS(1788), - [anon_sym_use] = ACTIONS(1788), - [anon_sym_while] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1788), - [anon_sym_LT] = ACTIONS(1786), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [anon_sym_AMP] = ACTIONS(1786), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_yield] = ACTIONS(1788), - [anon_sym_move] = ACTIONS(1788), - [sym_integer_literal] = ACTIONS(1786), - [aux_sym_string_literal_token1] = ACTIONS(1786), - [sym_char_literal] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1788), - [anon_sym_false] = ACTIONS(1788), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1788), - [sym_super] = ACTIONS(1788), - [sym_crate] = ACTIONS(1788), - [sym_metavariable] = ACTIONS(1786), - [sym_raw_string_literal] = ACTIONS(1786), - [sym_float_literal] = ACTIONS(1786), + [ts_builtin_sym_end] = ACTIONS(1788), + [sym_identifier] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1788), + [anon_sym_macro_rules_BANG] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_LBRACK] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1788), + [anon_sym_u8] = ACTIONS(1790), + [anon_sym_i8] = ACTIONS(1790), + [anon_sym_u16] = ACTIONS(1790), + [anon_sym_i16] = ACTIONS(1790), + [anon_sym_u32] = ACTIONS(1790), + [anon_sym_i32] = ACTIONS(1790), + [anon_sym_u64] = ACTIONS(1790), + [anon_sym_i64] = ACTIONS(1790), + [anon_sym_u128] = ACTIONS(1790), + [anon_sym_i128] = ACTIONS(1790), + [anon_sym_isize] = ACTIONS(1790), + [anon_sym_usize] = ACTIONS(1790), + [anon_sym_f32] = ACTIONS(1790), + [anon_sym_f64] = ACTIONS(1790), + [anon_sym_bool] = ACTIONS(1790), + [anon_sym_str] = ACTIONS(1790), + [anon_sym_char] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_async] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_const] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1790), + [anon_sym_default] = ACTIONS(1790), + [anon_sym_enum] = ACTIONS(1790), + [anon_sym_fn] = ACTIONS(1790), + [anon_sym_for] = ACTIONS(1790), + [anon_sym_if] = ACTIONS(1790), + [anon_sym_impl] = ACTIONS(1790), + [anon_sym_let] = ACTIONS(1790), + [anon_sym_loop] = ACTIONS(1790), + [anon_sym_match] = ACTIONS(1790), + [anon_sym_mod] = ACTIONS(1790), + [anon_sym_pub] = ACTIONS(1790), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1790), + [anon_sym_struct] = ACTIONS(1790), + [anon_sym_trait] = ACTIONS(1790), + [anon_sym_type] = ACTIONS(1790), + [anon_sym_union] = ACTIONS(1790), + [anon_sym_unsafe] = ACTIONS(1790), + [anon_sym_use] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1790), + [anon_sym_POUND] = ACTIONS(1788), + [anon_sym_BANG] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1790), + [anon_sym_LT] = ACTIONS(1788), + [anon_sym_COLON_COLON] = ACTIONS(1788), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_DOT_DOT] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PIPE] = ACTIONS(1788), + [anon_sym_yield] = ACTIONS(1790), + [anon_sym_move] = ACTIONS(1790), + [sym_integer_literal] = ACTIONS(1788), + [aux_sym_string_literal_token1] = ACTIONS(1788), + [sym_char_literal] = ACTIONS(1788), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1790), + [sym_super] = ACTIONS(1790), + [sym_crate] = ACTIONS(1790), + [sym_metavariable] = ACTIONS(1788), + [sym_raw_string_literal] = ACTIONS(1788), + [sym_float_literal] = ACTIONS(1788), [sym_block_comment] = ACTIONS(3), }, [428] = { - [ts_builtin_sym_end] = ACTIONS(1790), - [sym_identifier] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1790), - [anon_sym_macro_rules_BANG] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_u8] = ACTIONS(1792), - [anon_sym_i8] = ACTIONS(1792), - [anon_sym_u16] = ACTIONS(1792), - [anon_sym_i16] = ACTIONS(1792), - [anon_sym_u32] = ACTIONS(1792), - [anon_sym_i32] = ACTIONS(1792), - [anon_sym_u64] = ACTIONS(1792), - [anon_sym_i64] = ACTIONS(1792), - [anon_sym_u128] = ACTIONS(1792), - [anon_sym_i128] = ACTIONS(1792), - [anon_sym_isize] = ACTIONS(1792), - [anon_sym_usize] = ACTIONS(1792), - [anon_sym_f32] = ACTIONS(1792), - [anon_sym_f64] = ACTIONS(1792), - [anon_sym_bool] = ACTIONS(1792), - [anon_sym_str] = ACTIONS(1792), - [anon_sym_char] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_async] = ACTIONS(1792), - [anon_sym_break] = ACTIONS(1792), - [anon_sym_const] = ACTIONS(1792), - [anon_sym_continue] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1792), - [anon_sym_enum] = ACTIONS(1792), - [anon_sym_fn] = ACTIONS(1792), - [anon_sym_for] = ACTIONS(1792), - [anon_sym_if] = ACTIONS(1792), - [anon_sym_impl] = ACTIONS(1792), - [anon_sym_let] = ACTIONS(1792), - [anon_sym_loop] = ACTIONS(1792), - [anon_sym_match] = ACTIONS(1792), - [anon_sym_mod] = ACTIONS(1792), - [anon_sym_pub] = ACTIONS(1792), - [anon_sym_return] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1792), - [anon_sym_struct] = ACTIONS(1792), - [anon_sym_trait] = ACTIONS(1792), - [anon_sym_type] = ACTIONS(1792), - [anon_sym_union] = ACTIONS(1792), - [anon_sym_unsafe] = ACTIONS(1792), - [anon_sym_use] = ACTIONS(1792), - [anon_sym_while] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1790), - [anon_sym_AMP] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_yield] = ACTIONS(1792), - [anon_sym_move] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [aux_sym_string_literal_token1] = ACTIONS(1790), - [sym_char_literal] = ACTIONS(1790), - [anon_sym_true] = ACTIONS(1792), - [anon_sym_false] = ACTIONS(1792), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1792), - [sym_super] = ACTIONS(1792), - [sym_crate] = ACTIONS(1792), - [sym_metavariable] = ACTIONS(1790), - [sym_raw_string_literal] = ACTIONS(1790), - [sym_float_literal] = ACTIONS(1790), + [ts_builtin_sym_end] = ACTIONS(1792), + [sym_identifier] = ACTIONS(1794), + [anon_sym_SEMI] = ACTIONS(1792), + [anon_sym_macro_rules_BANG] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(1792), + [anon_sym_u8] = ACTIONS(1794), + [anon_sym_i8] = ACTIONS(1794), + [anon_sym_u16] = ACTIONS(1794), + [anon_sym_i16] = ACTIONS(1794), + [anon_sym_u32] = ACTIONS(1794), + [anon_sym_i32] = ACTIONS(1794), + [anon_sym_u64] = ACTIONS(1794), + [anon_sym_i64] = ACTIONS(1794), + [anon_sym_u128] = ACTIONS(1794), + [anon_sym_i128] = ACTIONS(1794), + [anon_sym_isize] = ACTIONS(1794), + [anon_sym_usize] = ACTIONS(1794), + [anon_sym_f32] = ACTIONS(1794), + [anon_sym_f64] = ACTIONS(1794), + [anon_sym_bool] = ACTIONS(1794), + [anon_sym_str] = ACTIONS(1794), + [anon_sym_char] = ACTIONS(1794), + [anon_sym_SQUOTE] = ACTIONS(1794), + [anon_sym_async] = ACTIONS(1794), + [anon_sym_break] = ACTIONS(1794), + [anon_sym_const] = ACTIONS(1794), + [anon_sym_continue] = ACTIONS(1794), + [anon_sym_default] = ACTIONS(1794), + [anon_sym_enum] = ACTIONS(1794), + [anon_sym_fn] = ACTIONS(1794), + [anon_sym_for] = ACTIONS(1794), + [anon_sym_if] = ACTIONS(1794), + [anon_sym_impl] = ACTIONS(1794), + [anon_sym_let] = ACTIONS(1794), + [anon_sym_loop] = ACTIONS(1794), + [anon_sym_match] = ACTIONS(1794), + [anon_sym_mod] = ACTIONS(1794), + [anon_sym_pub] = ACTIONS(1794), + [anon_sym_return] = ACTIONS(1794), + [anon_sym_static] = ACTIONS(1794), + [anon_sym_struct] = ACTIONS(1794), + [anon_sym_trait] = ACTIONS(1794), + [anon_sym_type] = ACTIONS(1794), + [anon_sym_union] = ACTIONS(1794), + [anon_sym_unsafe] = ACTIONS(1794), + [anon_sym_use] = ACTIONS(1794), + [anon_sym_while] = ACTIONS(1794), + [anon_sym_POUND] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_extern] = ACTIONS(1794), + [anon_sym_LT] = ACTIONS(1792), + [anon_sym_COLON_COLON] = ACTIONS(1792), + [anon_sym_AMP] = ACTIONS(1792), + [anon_sym_DOT_DOT] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_PIPE] = ACTIONS(1792), + [anon_sym_yield] = ACTIONS(1794), + [anon_sym_move] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(1792), + [aux_sym_string_literal_token1] = ACTIONS(1792), + [sym_char_literal] = ACTIONS(1792), + [anon_sym_true] = ACTIONS(1794), + [anon_sym_false] = ACTIONS(1794), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1794), + [sym_super] = ACTIONS(1794), + [sym_crate] = ACTIONS(1794), + [sym_metavariable] = ACTIONS(1792), + [sym_raw_string_literal] = ACTIONS(1792), + [sym_float_literal] = ACTIONS(1792), [sym_block_comment] = ACTIONS(3), }, [429] = { - [ts_builtin_sym_end] = ACTIONS(1794), - [sym_identifier] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_macro_rules_BANG] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1794), - [anon_sym_u8] = ACTIONS(1796), - [anon_sym_i8] = ACTIONS(1796), - [anon_sym_u16] = ACTIONS(1796), - [anon_sym_i16] = ACTIONS(1796), - [anon_sym_u32] = ACTIONS(1796), - [anon_sym_i32] = ACTIONS(1796), - [anon_sym_u64] = ACTIONS(1796), - [anon_sym_i64] = ACTIONS(1796), - [anon_sym_u128] = ACTIONS(1796), - [anon_sym_i128] = ACTIONS(1796), - [anon_sym_isize] = ACTIONS(1796), - [anon_sym_usize] = ACTIONS(1796), - [anon_sym_f32] = ACTIONS(1796), - [anon_sym_f64] = ACTIONS(1796), - [anon_sym_bool] = ACTIONS(1796), - [anon_sym_str] = ACTIONS(1796), - [anon_sym_char] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_async] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_const] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_default] = ACTIONS(1796), - [anon_sym_enum] = ACTIONS(1796), - [anon_sym_fn] = ACTIONS(1796), - [anon_sym_for] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_impl] = ACTIONS(1796), - [anon_sym_let] = ACTIONS(1796), - [anon_sym_loop] = ACTIONS(1796), - [anon_sym_match] = ACTIONS(1796), - [anon_sym_mod] = ACTIONS(1796), - [anon_sym_pub] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1796), - [anon_sym_struct] = ACTIONS(1796), - [anon_sym_trait] = ACTIONS(1796), - [anon_sym_type] = ACTIONS(1796), - [anon_sym_union] = ACTIONS(1796), - [anon_sym_unsafe] = ACTIONS(1796), - [anon_sym_use] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_POUND] = ACTIONS(1794), - [anon_sym_BANG] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1796), - [anon_sym_LT] = ACTIONS(1794), - [anon_sym_COLON_COLON] = ACTIONS(1794), - [anon_sym_AMP] = ACTIONS(1794), - [anon_sym_DOT_DOT] = ACTIONS(1794), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_yield] = ACTIONS(1796), - [anon_sym_move] = ACTIONS(1796), - [sym_integer_literal] = ACTIONS(1794), - [aux_sym_string_literal_token1] = ACTIONS(1794), - [sym_char_literal] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1796), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1794), - [sym_raw_string_literal] = ACTIONS(1794), - [sym_float_literal] = ACTIONS(1794), + [ts_builtin_sym_end] = ACTIONS(1796), + [sym_identifier] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1796), + [anon_sym_macro_rules_BANG] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1796), + [anon_sym_u8] = ACTIONS(1798), + [anon_sym_i8] = ACTIONS(1798), + [anon_sym_u16] = ACTIONS(1798), + [anon_sym_i16] = ACTIONS(1798), + [anon_sym_u32] = ACTIONS(1798), + [anon_sym_i32] = ACTIONS(1798), + [anon_sym_u64] = ACTIONS(1798), + [anon_sym_i64] = ACTIONS(1798), + [anon_sym_u128] = ACTIONS(1798), + [anon_sym_i128] = ACTIONS(1798), + [anon_sym_isize] = ACTIONS(1798), + [anon_sym_usize] = ACTIONS(1798), + [anon_sym_f32] = ACTIONS(1798), + [anon_sym_f64] = ACTIONS(1798), + [anon_sym_bool] = ACTIONS(1798), + [anon_sym_str] = ACTIONS(1798), + [anon_sym_char] = ACTIONS(1798), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_async] = ACTIONS(1798), + [anon_sym_break] = ACTIONS(1798), + [anon_sym_const] = ACTIONS(1798), + [anon_sym_continue] = ACTIONS(1798), + [anon_sym_default] = ACTIONS(1798), + [anon_sym_enum] = ACTIONS(1798), + [anon_sym_fn] = ACTIONS(1798), + [anon_sym_for] = ACTIONS(1798), + [anon_sym_if] = ACTIONS(1798), + [anon_sym_impl] = ACTIONS(1798), + [anon_sym_let] = ACTIONS(1798), + [anon_sym_loop] = ACTIONS(1798), + [anon_sym_match] = ACTIONS(1798), + [anon_sym_mod] = ACTIONS(1798), + [anon_sym_pub] = ACTIONS(1798), + [anon_sym_return] = ACTIONS(1798), + [anon_sym_static] = ACTIONS(1798), + [anon_sym_struct] = ACTIONS(1798), + [anon_sym_trait] = ACTIONS(1798), + [anon_sym_type] = ACTIONS(1798), + [anon_sym_union] = ACTIONS(1798), + [anon_sym_unsafe] = ACTIONS(1798), + [anon_sym_use] = ACTIONS(1798), + [anon_sym_while] = ACTIONS(1798), + [anon_sym_POUND] = ACTIONS(1796), + [anon_sym_BANG] = ACTIONS(1796), + [anon_sym_extern] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1796), + [anon_sym_COLON_COLON] = ACTIONS(1796), + [anon_sym_AMP] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PIPE] = ACTIONS(1796), + [anon_sym_yield] = ACTIONS(1798), + [anon_sym_move] = ACTIONS(1798), + [sym_integer_literal] = ACTIONS(1796), + [aux_sym_string_literal_token1] = ACTIONS(1796), + [sym_char_literal] = ACTIONS(1796), + [anon_sym_true] = ACTIONS(1798), + [anon_sym_false] = ACTIONS(1798), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1798), + [sym_super] = ACTIONS(1798), + [sym_crate] = ACTIONS(1798), + [sym_metavariable] = ACTIONS(1796), + [sym_raw_string_literal] = ACTIONS(1796), + [sym_float_literal] = ACTIONS(1796), [sym_block_comment] = ACTIONS(3), }, [430] = { - [ts_builtin_sym_end] = ACTIONS(1798), - [sym_identifier] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_macro_rules_BANG] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_u8] = ACTIONS(1800), - [anon_sym_i8] = ACTIONS(1800), - [anon_sym_u16] = ACTIONS(1800), - [anon_sym_i16] = ACTIONS(1800), - [anon_sym_u32] = ACTIONS(1800), - [anon_sym_i32] = ACTIONS(1800), - [anon_sym_u64] = ACTIONS(1800), - [anon_sym_i64] = ACTIONS(1800), - [anon_sym_u128] = ACTIONS(1800), - [anon_sym_i128] = ACTIONS(1800), - [anon_sym_isize] = ACTIONS(1800), - [anon_sym_usize] = ACTIONS(1800), - [anon_sym_f32] = ACTIONS(1800), - [anon_sym_f64] = ACTIONS(1800), - [anon_sym_bool] = ACTIONS(1800), - [anon_sym_str] = ACTIONS(1800), - [anon_sym_char] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_async] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_default] = ACTIONS(1800), - [anon_sym_enum] = ACTIONS(1800), - [anon_sym_fn] = ACTIONS(1800), - [anon_sym_for] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_impl] = ACTIONS(1800), - [anon_sym_let] = ACTIONS(1800), - [anon_sym_loop] = ACTIONS(1800), - [anon_sym_match] = ACTIONS(1800), - [anon_sym_mod] = ACTIONS(1800), - [anon_sym_pub] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1800), - [anon_sym_struct] = ACTIONS(1800), - [anon_sym_trait] = ACTIONS(1800), - [anon_sym_type] = ACTIONS(1800), - [anon_sym_union] = ACTIONS(1800), - [anon_sym_unsafe] = ACTIONS(1800), - [anon_sym_use] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_POUND] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1800), - [anon_sym_LT] = ACTIONS(1798), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_AMP] = ACTIONS(1798), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PIPE] = ACTIONS(1798), - [anon_sym_yield] = ACTIONS(1800), - [anon_sym_move] = ACTIONS(1800), - [sym_integer_literal] = ACTIONS(1798), - [aux_sym_string_literal_token1] = ACTIONS(1798), - [sym_char_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1800), - [sym_super] = ACTIONS(1800), - [sym_crate] = ACTIONS(1800), - [sym_metavariable] = ACTIONS(1798), - [sym_raw_string_literal] = ACTIONS(1798), - [sym_float_literal] = ACTIONS(1798), + [ts_builtin_sym_end] = ACTIONS(1800), + [sym_identifier] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_macro_rules_BANG] = ACTIONS(1800), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_LBRACK] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1800), + [anon_sym_u8] = ACTIONS(1802), + [anon_sym_i8] = ACTIONS(1802), + [anon_sym_u16] = ACTIONS(1802), + [anon_sym_i16] = ACTIONS(1802), + [anon_sym_u32] = ACTIONS(1802), + [anon_sym_i32] = ACTIONS(1802), + [anon_sym_u64] = ACTIONS(1802), + [anon_sym_i64] = ACTIONS(1802), + [anon_sym_u128] = ACTIONS(1802), + [anon_sym_i128] = ACTIONS(1802), + [anon_sym_isize] = ACTIONS(1802), + [anon_sym_usize] = ACTIONS(1802), + [anon_sym_f32] = ACTIONS(1802), + [anon_sym_f64] = ACTIONS(1802), + [anon_sym_bool] = ACTIONS(1802), + [anon_sym_str] = ACTIONS(1802), + [anon_sym_char] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_async] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1802), + [anon_sym_enum] = ACTIONS(1802), + [anon_sym_fn] = ACTIONS(1802), + [anon_sym_for] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_impl] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1802), + [anon_sym_loop] = ACTIONS(1802), + [anon_sym_match] = ACTIONS(1802), + [anon_sym_mod] = ACTIONS(1802), + [anon_sym_pub] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_struct] = ACTIONS(1802), + [anon_sym_trait] = ACTIONS(1802), + [anon_sym_type] = ACTIONS(1802), + [anon_sym_union] = ACTIONS(1802), + [anon_sym_unsafe] = ACTIONS(1802), + [anon_sym_use] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_POUND] = ACTIONS(1800), + [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_LT] = ACTIONS(1800), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_AMP] = ACTIONS(1800), + [anon_sym_DOT_DOT] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_yield] = ACTIONS(1802), + [anon_sym_move] = ACTIONS(1802), + [sym_integer_literal] = ACTIONS(1800), + [aux_sym_string_literal_token1] = ACTIONS(1800), + [sym_char_literal] = ACTIONS(1800), + [anon_sym_true] = ACTIONS(1802), + [anon_sym_false] = ACTIONS(1802), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1802), + [sym_super] = ACTIONS(1802), + [sym_crate] = ACTIONS(1802), + [sym_metavariable] = ACTIONS(1800), + [sym_raw_string_literal] = ACTIONS(1800), + [sym_float_literal] = ACTIONS(1800), [sym_block_comment] = ACTIONS(3), }, [431] = { - [ts_builtin_sym_end] = ACTIONS(1802), - [sym_identifier] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_macro_rules_BANG] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_u8] = ACTIONS(1804), - [anon_sym_i8] = ACTIONS(1804), - [anon_sym_u16] = ACTIONS(1804), - [anon_sym_i16] = ACTIONS(1804), - [anon_sym_u32] = ACTIONS(1804), - [anon_sym_i32] = ACTIONS(1804), - [anon_sym_u64] = ACTIONS(1804), - [anon_sym_i64] = ACTIONS(1804), - [anon_sym_u128] = ACTIONS(1804), - [anon_sym_i128] = ACTIONS(1804), - [anon_sym_isize] = ACTIONS(1804), - [anon_sym_usize] = ACTIONS(1804), - [anon_sym_f32] = ACTIONS(1804), - [anon_sym_f64] = ACTIONS(1804), - [anon_sym_bool] = ACTIONS(1804), - [anon_sym_str] = ACTIONS(1804), - [anon_sym_char] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_async] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_continue] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_enum] = ACTIONS(1804), - [anon_sym_fn] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_impl] = ACTIONS(1804), - [anon_sym_let] = ACTIONS(1804), - [anon_sym_loop] = ACTIONS(1804), - [anon_sym_match] = ACTIONS(1804), - [anon_sym_mod] = ACTIONS(1804), - [anon_sym_pub] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1804), - [anon_sym_struct] = ACTIONS(1804), - [anon_sym_trait] = ACTIONS(1804), - [anon_sym_type] = ACTIONS(1804), - [anon_sym_union] = ACTIONS(1804), - [anon_sym_unsafe] = ACTIONS(1804), - [anon_sym_use] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1804), - [anon_sym_LT] = ACTIONS(1802), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_yield] = ACTIONS(1804), - [anon_sym_move] = ACTIONS(1804), - [sym_integer_literal] = ACTIONS(1802), - [aux_sym_string_literal_token1] = ACTIONS(1802), - [sym_char_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1804), - [sym_super] = ACTIONS(1804), - [sym_crate] = ACTIONS(1804), - [sym_metavariable] = ACTIONS(1802), - [sym_raw_string_literal] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1802), + [ts_builtin_sym_end] = ACTIONS(1804), + [sym_identifier] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_macro_rules_BANG] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_u8] = ACTIONS(1806), + [anon_sym_i8] = ACTIONS(1806), + [anon_sym_u16] = ACTIONS(1806), + [anon_sym_i16] = ACTIONS(1806), + [anon_sym_u32] = ACTIONS(1806), + [anon_sym_i32] = ACTIONS(1806), + [anon_sym_u64] = ACTIONS(1806), + [anon_sym_i64] = ACTIONS(1806), + [anon_sym_u128] = ACTIONS(1806), + [anon_sym_i128] = ACTIONS(1806), + [anon_sym_isize] = ACTIONS(1806), + [anon_sym_usize] = ACTIONS(1806), + [anon_sym_f32] = ACTIONS(1806), + [anon_sym_f64] = ACTIONS(1806), + [anon_sym_bool] = ACTIONS(1806), + [anon_sym_str] = ACTIONS(1806), + [anon_sym_char] = ACTIONS(1806), + [anon_sym_SQUOTE] = ACTIONS(1806), + [anon_sym_async] = ACTIONS(1806), + [anon_sym_break] = ACTIONS(1806), + [anon_sym_const] = ACTIONS(1806), + [anon_sym_continue] = ACTIONS(1806), + [anon_sym_default] = ACTIONS(1806), + [anon_sym_enum] = ACTIONS(1806), + [anon_sym_fn] = ACTIONS(1806), + [anon_sym_for] = ACTIONS(1806), + [anon_sym_if] = ACTIONS(1806), + [anon_sym_impl] = ACTIONS(1806), + [anon_sym_let] = ACTIONS(1806), + [anon_sym_loop] = ACTIONS(1806), + [anon_sym_match] = ACTIONS(1806), + [anon_sym_mod] = ACTIONS(1806), + [anon_sym_pub] = ACTIONS(1806), + [anon_sym_return] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1806), + [anon_sym_trait] = ACTIONS(1806), + [anon_sym_type] = ACTIONS(1806), + [anon_sym_union] = ACTIONS(1806), + [anon_sym_unsafe] = ACTIONS(1806), + [anon_sym_use] = ACTIONS(1806), + [anon_sym_while] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(1804), + [anon_sym_BANG] = ACTIONS(1804), + [anon_sym_extern] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(1804), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_AMP] = ACTIONS(1804), + [anon_sym_DOT_DOT] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_PIPE] = ACTIONS(1804), + [anon_sym_yield] = ACTIONS(1806), + [anon_sym_move] = ACTIONS(1806), + [sym_integer_literal] = ACTIONS(1804), + [aux_sym_string_literal_token1] = ACTIONS(1804), + [sym_char_literal] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1806), + [anon_sym_false] = ACTIONS(1806), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1804), + [sym_raw_string_literal] = ACTIONS(1804), + [sym_float_literal] = ACTIONS(1804), [sym_block_comment] = ACTIONS(3), }, [432] = { - [ts_builtin_sym_end] = ACTIONS(1806), - [sym_identifier] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_macro_rules_BANG] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1806), - [anon_sym_u8] = ACTIONS(1808), - [anon_sym_i8] = ACTIONS(1808), - [anon_sym_u16] = ACTIONS(1808), - [anon_sym_i16] = ACTIONS(1808), - [anon_sym_u32] = ACTIONS(1808), - [anon_sym_i32] = ACTIONS(1808), - [anon_sym_u64] = ACTIONS(1808), - [anon_sym_i64] = ACTIONS(1808), - [anon_sym_u128] = ACTIONS(1808), - [anon_sym_i128] = ACTIONS(1808), - [anon_sym_isize] = ACTIONS(1808), - [anon_sym_usize] = ACTIONS(1808), - [anon_sym_f32] = ACTIONS(1808), - [anon_sym_f64] = ACTIONS(1808), - [anon_sym_bool] = ACTIONS(1808), - [anon_sym_str] = ACTIONS(1808), - [anon_sym_char] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1808), - [anon_sym_async] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_const] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_default] = ACTIONS(1808), - [anon_sym_enum] = ACTIONS(1808), - [anon_sym_fn] = ACTIONS(1808), - [anon_sym_for] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_impl] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1808), - [anon_sym_loop] = ACTIONS(1808), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_mod] = ACTIONS(1808), - [anon_sym_pub] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1808), - [anon_sym_struct] = ACTIONS(1808), - [anon_sym_trait] = ACTIONS(1808), - [anon_sym_type] = ACTIONS(1808), - [anon_sym_union] = ACTIONS(1808), - [anon_sym_unsafe] = ACTIONS(1808), - [anon_sym_use] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1806), - [anon_sym_extern] = ACTIONS(1808), - [anon_sym_LT] = ACTIONS(1806), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1806), - [anon_sym_DOT_DOT] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_yield] = ACTIONS(1808), - [anon_sym_move] = ACTIONS(1808), - [sym_integer_literal] = ACTIONS(1806), - [aux_sym_string_literal_token1] = ACTIONS(1806), - [sym_char_literal] = ACTIONS(1806), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1806), - [sym_raw_string_literal] = ACTIONS(1806), - [sym_float_literal] = ACTIONS(1806), + [ts_builtin_sym_end] = ACTIONS(1808), + [sym_identifier] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1808), + [anon_sym_macro_rules_BANG] = ACTIONS(1808), + [anon_sym_LPAREN] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1808), + [anon_sym_RBRACE] = ACTIONS(1808), + [anon_sym_LBRACK] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1808), + [anon_sym_u8] = ACTIONS(1810), + [anon_sym_i8] = ACTIONS(1810), + [anon_sym_u16] = ACTIONS(1810), + [anon_sym_i16] = ACTIONS(1810), + [anon_sym_u32] = ACTIONS(1810), + [anon_sym_i32] = ACTIONS(1810), + [anon_sym_u64] = ACTIONS(1810), + [anon_sym_i64] = ACTIONS(1810), + [anon_sym_u128] = ACTIONS(1810), + [anon_sym_i128] = ACTIONS(1810), + [anon_sym_isize] = ACTIONS(1810), + [anon_sym_usize] = ACTIONS(1810), + [anon_sym_f32] = ACTIONS(1810), + [anon_sym_f64] = ACTIONS(1810), + [anon_sym_bool] = ACTIONS(1810), + [anon_sym_str] = ACTIONS(1810), + [anon_sym_char] = ACTIONS(1810), + [anon_sym_SQUOTE] = ACTIONS(1810), + [anon_sym_async] = ACTIONS(1810), + [anon_sym_break] = ACTIONS(1810), + [anon_sym_const] = ACTIONS(1810), + [anon_sym_continue] = ACTIONS(1810), + [anon_sym_default] = ACTIONS(1810), + [anon_sym_enum] = ACTIONS(1810), + [anon_sym_fn] = ACTIONS(1810), + [anon_sym_for] = ACTIONS(1810), + [anon_sym_if] = ACTIONS(1810), + [anon_sym_impl] = ACTIONS(1810), + [anon_sym_let] = ACTIONS(1810), + [anon_sym_loop] = ACTIONS(1810), + [anon_sym_match] = ACTIONS(1810), + [anon_sym_mod] = ACTIONS(1810), + [anon_sym_pub] = ACTIONS(1810), + [anon_sym_return] = ACTIONS(1810), + [anon_sym_static] = ACTIONS(1810), + [anon_sym_struct] = ACTIONS(1810), + [anon_sym_trait] = ACTIONS(1810), + [anon_sym_type] = ACTIONS(1810), + [anon_sym_union] = ACTIONS(1810), + [anon_sym_unsafe] = ACTIONS(1810), + [anon_sym_use] = ACTIONS(1810), + [anon_sym_while] = ACTIONS(1810), + [anon_sym_POUND] = ACTIONS(1808), + [anon_sym_BANG] = ACTIONS(1808), + [anon_sym_extern] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1808), + [anon_sym_COLON_COLON] = ACTIONS(1808), + [anon_sym_AMP] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_PIPE] = ACTIONS(1808), + [anon_sym_yield] = ACTIONS(1810), + [anon_sym_move] = ACTIONS(1810), + [sym_integer_literal] = ACTIONS(1808), + [aux_sym_string_literal_token1] = ACTIONS(1808), + [sym_char_literal] = ACTIONS(1808), + [anon_sym_true] = ACTIONS(1810), + [anon_sym_false] = ACTIONS(1810), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1810), + [sym_super] = ACTIONS(1810), + [sym_crate] = ACTIONS(1810), + [sym_metavariable] = ACTIONS(1808), + [sym_raw_string_literal] = ACTIONS(1808), + [sym_float_literal] = ACTIONS(1808), [sym_block_comment] = ACTIONS(3), }, [433] = { - [ts_builtin_sym_end] = ACTIONS(1810), - [sym_identifier] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_macro_rules_BANG] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_u8] = ACTIONS(1812), - [anon_sym_i8] = ACTIONS(1812), - [anon_sym_u16] = ACTIONS(1812), - [anon_sym_i16] = ACTIONS(1812), - [anon_sym_u32] = ACTIONS(1812), - [anon_sym_i32] = ACTIONS(1812), - [anon_sym_u64] = ACTIONS(1812), - [anon_sym_i64] = ACTIONS(1812), - [anon_sym_u128] = ACTIONS(1812), - [anon_sym_i128] = ACTIONS(1812), - [anon_sym_isize] = ACTIONS(1812), - [anon_sym_usize] = ACTIONS(1812), - [anon_sym_f32] = ACTIONS(1812), - [anon_sym_f64] = ACTIONS(1812), - [anon_sym_bool] = ACTIONS(1812), - [anon_sym_str] = ACTIONS(1812), - [anon_sym_char] = ACTIONS(1812), - [anon_sym_SQUOTE] = ACTIONS(1812), - [anon_sym_async] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_default] = ACTIONS(1812), - [anon_sym_enum] = ACTIONS(1812), - [anon_sym_fn] = ACTIONS(1812), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_if] = ACTIONS(1812), - [anon_sym_impl] = ACTIONS(1812), - [anon_sym_let] = ACTIONS(1812), - [anon_sym_loop] = ACTIONS(1812), - [anon_sym_match] = ACTIONS(1812), - [anon_sym_mod] = ACTIONS(1812), - [anon_sym_pub] = ACTIONS(1812), - [anon_sym_return] = ACTIONS(1812), - [anon_sym_static] = ACTIONS(1812), - [anon_sym_struct] = ACTIONS(1812), - [anon_sym_trait] = ACTIONS(1812), - [anon_sym_type] = ACTIONS(1812), - [anon_sym_union] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(1812), - [anon_sym_use] = ACTIONS(1812), - [anon_sym_while] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_extern] = ACTIONS(1812), - [anon_sym_LT] = ACTIONS(1810), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_DASH] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_yield] = ACTIONS(1812), - [anon_sym_move] = ACTIONS(1812), - [sym_integer_literal] = ACTIONS(1810), - [aux_sym_string_literal_token1] = ACTIONS(1810), - [sym_char_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1812), - [anon_sym_false] = ACTIONS(1812), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1812), - [sym_super] = ACTIONS(1812), - [sym_crate] = ACTIONS(1812), - [sym_metavariable] = ACTIONS(1810), - [sym_raw_string_literal] = ACTIONS(1810), - [sym_float_literal] = ACTIONS(1810), + [ts_builtin_sym_end] = ACTIONS(1812), + [sym_identifier] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1812), + [anon_sym_macro_rules_BANG] = ACTIONS(1812), + [anon_sym_LPAREN] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1812), + [anon_sym_RBRACE] = ACTIONS(1812), + [anon_sym_LBRACK] = ACTIONS(1812), + [anon_sym_STAR] = ACTIONS(1812), + [anon_sym_u8] = ACTIONS(1814), + [anon_sym_i8] = ACTIONS(1814), + [anon_sym_u16] = ACTIONS(1814), + [anon_sym_i16] = ACTIONS(1814), + [anon_sym_u32] = ACTIONS(1814), + [anon_sym_i32] = ACTIONS(1814), + [anon_sym_u64] = ACTIONS(1814), + [anon_sym_i64] = ACTIONS(1814), + [anon_sym_u128] = ACTIONS(1814), + [anon_sym_i128] = ACTIONS(1814), + [anon_sym_isize] = ACTIONS(1814), + [anon_sym_usize] = ACTIONS(1814), + [anon_sym_f32] = ACTIONS(1814), + [anon_sym_f64] = ACTIONS(1814), + [anon_sym_bool] = ACTIONS(1814), + [anon_sym_str] = ACTIONS(1814), + [anon_sym_char] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1814), + [anon_sym_async] = ACTIONS(1814), + [anon_sym_break] = ACTIONS(1814), + [anon_sym_const] = ACTIONS(1814), + [anon_sym_continue] = ACTIONS(1814), + [anon_sym_default] = ACTIONS(1814), + [anon_sym_enum] = ACTIONS(1814), + [anon_sym_fn] = ACTIONS(1814), + [anon_sym_for] = ACTIONS(1814), + [anon_sym_if] = ACTIONS(1814), + [anon_sym_impl] = ACTIONS(1814), + [anon_sym_let] = ACTIONS(1814), + [anon_sym_loop] = ACTIONS(1814), + [anon_sym_match] = ACTIONS(1814), + [anon_sym_mod] = ACTIONS(1814), + [anon_sym_pub] = ACTIONS(1814), + [anon_sym_return] = ACTIONS(1814), + [anon_sym_static] = ACTIONS(1814), + [anon_sym_struct] = ACTIONS(1814), + [anon_sym_trait] = ACTIONS(1814), + [anon_sym_type] = ACTIONS(1814), + [anon_sym_union] = ACTIONS(1814), + [anon_sym_unsafe] = ACTIONS(1814), + [anon_sym_use] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1814), + [anon_sym_POUND] = ACTIONS(1812), + [anon_sym_BANG] = ACTIONS(1812), + [anon_sym_extern] = ACTIONS(1814), + [anon_sym_LT] = ACTIONS(1812), + [anon_sym_COLON_COLON] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(1812), + [anon_sym_DOT_DOT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_PIPE] = ACTIONS(1812), + [anon_sym_yield] = ACTIONS(1814), + [anon_sym_move] = ACTIONS(1814), + [sym_integer_literal] = ACTIONS(1812), + [aux_sym_string_literal_token1] = ACTIONS(1812), + [sym_char_literal] = ACTIONS(1812), + [anon_sym_true] = ACTIONS(1814), + [anon_sym_false] = ACTIONS(1814), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1814), + [sym_super] = ACTIONS(1814), + [sym_crate] = ACTIONS(1814), + [sym_metavariable] = ACTIONS(1812), + [sym_raw_string_literal] = ACTIONS(1812), + [sym_float_literal] = ACTIONS(1812), [sym_block_comment] = ACTIONS(3), }, [434] = { - [ts_builtin_sym_end] = ACTIONS(1814), - [sym_identifier] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_macro_rules_BANG] = ACTIONS(1814), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_RBRACE] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_u8] = ACTIONS(1816), - [anon_sym_i8] = ACTIONS(1816), - [anon_sym_u16] = ACTIONS(1816), - [anon_sym_i16] = ACTIONS(1816), - [anon_sym_u32] = ACTIONS(1816), - [anon_sym_i32] = ACTIONS(1816), - [anon_sym_u64] = ACTIONS(1816), - [anon_sym_i64] = ACTIONS(1816), - [anon_sym_u128] = ACTIONS(1816), - [anon_sym_i128] = ACTIONS(1816), - [anon_sym_isize] = ACTIONS(1816), - [anon_sym_usize] = ACTIONS(1816), - [anon_sym_f32] = ACTIONS(1816), - [anon_sym_f64] = ACTIONS(1816), - [anon_sym_bool] = ACTIONS(1816), - [anon_sym_str] = ACTIONS(1816), - [anon_sym_char] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_async] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_const] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_default] = ACTIONS(1816), - [anon_sym_enum] = ACTIONS(1816), - [anon_sym_fn] = ACTIONS(1816), - [anon_sym_for] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_impl] = ACTIONS(1816), - [anon_sym_let] = ACTIONS(1816), - [anon_sym_loop] = ACTIONS(1816), - [anon_sym_match] = ACTIONS(1816), - [anon_sym_mod] = ACTIONS(1816), - [anon_sym_pub] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1816), - [anon_sym_struct] = ACTIONS(1816), - [anon_sym_trait] = ACTIONS(1816), - [anon_sym_type] = ACTIONS(1816), - [anon_sym_union] = ACTIONS(1816), - [anon_sym_unsafe] = ACTIONS(1816), - [anon_sym_use] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1814), - [anon_sym_extern] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1814), - [anon_sym_COLON_COLON] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1814), - [anon_sym_DOT_DOT] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_PIPE] = ACTIONS(1814), - [anon_sym_yield] = ACTIONS(1816), - [anon_sym_move] = ACTIONS(1816), - [sym_integer_literal] = ACTIONS(1814), - [aux_sym_string_literal_token1] = ACTIONS(1814), - [sym_char_literal] = ACTIONS(1814), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1816), - [sym_super] = ACTIONS(1816), - [sym_crate] = ACTIONS(1816), - [sym_metavariable] = ACTIONS(1814), - [sym_raw_string_literal] = ACTIONS(1814), - [sym_float_literal] = ACTIONS(1814), + [ts_builtin_sym_end] = ACTIONS(1816), + [sym_identifier] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_macro_rules_BANG] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_STAR] = ACTIONS(1816), + [anon_sym_u8] = ACTIONS(1818), + [anon_sym_i8] = ACTIONS(1818), + [anon_sym_u16] = ACTIONS(1818), + [anon_sym_i16] = ACTIONS(1818), + [anon_sym_u32] = ACTIONS(1818), + [anon_sym_i32] = ACTIONS(1818), + [anon_sym_u64] = ACTIONS(1818), + [anon_sym_i64] = ACTIONS(1818), + [anon_sym_u128] = ACTIONS(1818), + [anon_sym_i128] = ACTIONS(1818), + [anon_sym_isize] = ACTIONS(1818), + [anon_sym_usize] = ACTIONS(1818), + [anon_sym_f32] = ACTIONS(1818), + [anon_sym_f64] = ACTIONS(1818), + [anon_sym_bool] = ACTIONS(1818), + [anon_sym_str] = ACTIONS(1818), + [anon_sym_char] = ACTIONS(1818), + [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_async] = ACTIONS(1818), + [anon_sym_break] = ACTIONS(1818), + [anon_sym_const] = ACTIONS(1818), + [anon_sym_continue] = ACTIONS(1818), + [anon_sym_default] = ACTIONS(1818), + [anon_sym_enum] = ACTIONS(1818), + [anon_sym_fn] = ACTIONS(1818), + [anon_sym_for] = ACTIONS(1818), + [anon_sym_if] = ACTIONS(1818), + [anon_sym_impl] = ACTIONS(1818), + [anon_sym_let] = ACTIONS(1818), + [anon_sym_loop] = ACTIONS(1818), + [anon_sym_match] = ACTIONS(1818), + [anon_sym_mod] = ACTIONS(1818), + [anon_sym_pub] = ACTIONS(1818), + [anon_sym_return] = ACTIONS(1818), + [anon_sym_static] = ACTIONS(1818), + [anon_sym_struct] = ACTIONS(1818), + [anon_sym_trait] = ACTIONS(1818), + [anon_sym_type] = ACTIONS(1818), + [anon_sym_union] = ACTIONS(1818), + [anon_sym_unsafe] = ACTIONS(1818), + [anon_sym_use] = ACTIONS(1818), + [anon_sym_while] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(1816), + [anon_sym_BANG] = ACTIONS(1816), + [anon_sym_extern] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(1816), + [anon_sym_COLON_COLON] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1816), + [anon_sym_DOT_DOT] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_yield] = ACTIONS(1818), + [anon_sym_move] = ACTIONS(1818), + [sym_integer_literal] = ACTIONS(1816), + [aux_sym_string_literal_token1] = ACTIONS(1816), + [sym_char_literal] = ACTIONS(1816), + [anon_sym_true] = ACTIONS(1818), + [anon_sym_false] = ACTIONS(1818), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1818), + [sym_super] = ACTIONS(1818), + [sym_crate] = ACTIONS(1818), + [sym_metavariable] = ACTIONS(1816), + [sym_raw_string_literal] = ACTIONS(1816), + [sym_float_literal] = ACTIONS(1816), [sym_block_comment] = ACTIONS(3), }, [435] = { - [ts_builtin_sym_end] = ACTIONS(1818), - [sym_identifier] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_macro_rules_BANG] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_u8] = ACTIONS(1820), - [anon_sym_i8] = ACTIONS(1820), - [anon_sym_u16] = ACTIONS(1820), - [anon_sym_i16] = ACTIONS(1820), - [anon_sym_u32] = ACTIONS(1820), - [anon_sym_i32] = ACTIONS(1820), - [anon_sym_u64] = ACTIONS(1820), - [anon_sym_i64] = ACTIONS(1820), - [anon_sym_u128] = ACTIONS(1820), - [anon_sym_i128] = ACTIONS(1820), - [anon_sym_isize] = ACTIONS(1820), - [anon_sym_usize] = ACTIONS(1820), - [anon_sym_f32] = ACTIONS(1820), - [anon_sym_f64] = ACTIONS(1820), - [anon_sym_bool] = ACTIONS(1820), - [anon_sym_str] = ACTIONS(1820), - [anon_sym_char] = ACTIONS(1820), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_async] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_const] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_default] = ACTIONS(1820), - [anon_sym_enum] = ACTIONS(1820), - [anon_sym_fn] = ACTIONS(1820), - [anon_sym_for] = ACTIONS(1820), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_impl] = ACTIONS(1820), - [anon_sym_let] = ACTIONS(1820), - [anon_sym_loop] = ACTIONS(1820), - [anon_sym_match] = ACTIONS(1820), - [anon_sym_mod] = ACTIONS(1820), - [anon_sym_pub] = ACTIONS(1820), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_static] = ACTIONS(1820), - [anon_sym_struct] = ACTIONS(1820), - [anon_sym_trait] = ACTIONS(1820), - [anon_sym_type] = ACTIONS(1820), - [anon_sym_union] = ACTIONS(1820), - [anon_sym_unsafe] = ACTIONS(1820), - [anon_sym_use] = ACTIONS(1820), - [anon_sym_while] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_LT] = ACTIONS(1818), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1818), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_PIPE] = ACTIONS(1818), - [anon_sym_yield] = ACTIONS(1820), - [anon_sym_move] = ACTIONS(1820), - [sym_integer_literal] = ACTIONS(1818), - [aux_sym_string_literal_token1] = ACTIONS(1818), - [sym_char_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1820), - [sym_super] = ACTIONS(1820), - [sym_crate] = ACTIONS(1820), - [sym_metavariable] = ACTIONS(1818), - [sym_raw_string_literal] = ACTIONS(1818), - [sym_float_literal] = ACTIONS(1818), + [ts_builtin_sym_end] = ACTIONS(1820), + [sym_identifier] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_macro_rules_BANG] = ACTIONS(1820), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1820), + [anon_sym_u8] = ACTIONS(1822), + [anon_sym_i8] = ACTIONS(1822), + [anon_sym_u16] = ACTIONS(1822), + [anon_sym_i16] = ACTIONS(1822), + [anon_sym_u32] = ACTIONS(1822), + [anon_sym_i32] = ACTIONS(1822), + [anon_sym_u64] = ACTIONS(1822), + [anon_sym_i64] = ACTIONS(1822), + [anon_sym_u128] = ACTIONS(1822), + [anon_sym_i128] = ACTIONS(1822), + [anon_sym_isize] = ACTIONS(1822), + [anon_sym_usize] = ACTIONS(1822), + [anon_sym_f32] = ACTIONS(1822), + [anon_sym_f64] = ACTIONS(1822), + [anon_sym_bool] = ACTIONS(1822), + [anon_sym_str] = ACTIONS(1822), + [anon_sym_char] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_async] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_const] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_default] = ACTIONS(1822), + [anon_sym_enum] = ACTIONS(1822), + [anon_sym_fn] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_impl] = ACTIONS(1822), + [anon_sym_let] = ACTIONS(1822), + [anon_sym_loop] = ACTIONS(1822), + [anon_sym_match] = ACTIONS(1822), + [anon_sym_mod] = ACTIONS(1822), + [anon_sym_pub] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_static] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1822), + [anon_sym_trait] = ACTIONS(1822), + [anon_sym_type] = ACTIONS(1822), + [anon_sym_union] = ACTIONS(1822), + [anon_sym_unsafe] = ACTIONS(1822), + [anon_sym_use] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(1820), + [anon_sym_BANG] = ACTIONS(1820), + [anon_sym_extern] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_COLON_COLON] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1820), + [anon_sym_DOT_DOT] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_PIPE] = ACTIONS(1820), + [anon_sym_yield] = ACTIONS(1822), + [anon_sym_move] = ACTIONS(1822), + [sym_integer_literal] = ACTIONS(1820), + [aux_sym_string_literal_token1] = ACTIONS(1820), + [sym_char_literal] = ACTIONS(1820), + [anon_sym_true] = ACTIONS(1822), + [anon_sym_false] = ACTIONS(1822), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1822), + [sym_super] = ACTIONS(1822), + [sym_crate] = ACTIONS(1822), + [sym_metavariable] = ACTIONS(1820), + [sym_raw_string_literal] = ACTIONS(1820), + [sym_float_literal] = ACTIONS(1820), [sym_block_comment] = ACTIONS(3), }, [436] = { - [ts_builtin_sym_end] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_macro_rules_BANG] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [anon_sym_u8] = ACTIONS(1824), - [anon_sym_i8] = ACTIONS(1824), - [anon_sym_u16] = ACTIONS(1824), - [anon_sym_i16] = ACTIONS(1824), - [anon_sym_u32] = ACTIONS(1824), - [anon_sym_i32] = ACTIONS(1824), - [anon_sym_u64] = ACTIONS(1824), - [anon_sym_i64] = ACTIONS(1824), - [anon_sym_u128] = ACTIONS(1824), - [anon_sym_i128] = ACTIONS(1824), - [anon_sym_isize] = ACTIONS(1824), - [anon_sym_usize] = ACTIONS(1824), - [anon_sym_f32] = ACTIONS(1824), - [anon_sym_f64] = ACTIONS(1824), - [anon_sym_bool] = ACTIONS(1824), - [anon_sym_str] = ACTIONS(1824), - [anon_sym_char] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_async] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_const] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_default] = ACTIONS(1824), - [anon_sym_enum] = ACTIONS(1824), - [anon_sym_fn] = ACTIONS(1824), - [anon_sym_for] = ACTIONS(1824), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_impl] = ACTIONS(1824), - [anon_sym_let] = ACTIONS(1824), - [anon_sym_loop] = ACTIONS(1824), - [anon_sym_match] = ACTIONS(1824), - [anon_sym_mod] = ACTIONS(1824), - [anon_sym_pub] = ACTIONS(1824), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1824), - [anon_sym_struct] = ACTIONS(1824), - [anon_sym_trait] = ACTIONS(1824), - [anon_sym_type] = ACTIONS(1824), - [anon_sym_union] = ACTIONS(1824), - [anon_sym_unsafe] = ACTIONS(1824), - [anon_sym_use] = ACTIONS(1824), - [anon_sym_while] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_yield] = ACTIONS(1824), - [anon_sym_move] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [aux_sym_string_literal_token1] = ACTIONS(1822), - [sym_char_literal] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1824), - [anon_sym_false] = ACTIONS(1824), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1824), - [sym_super] = ACTIONS(1824), - [sym_crate] = ACTIONS(1824), - [sym_metavariable] = ACTIONS(1822), - [sym_raw_string_literal] = ACTIONS(1822), - [sym_float_literal] = ACTIONS(1822), + [ts_builtin_sym_end] = ACTIONS(1824), + [sym_identifier] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1824), + [anon_sym_macro_rules_BANG] = ACTIONS(1824), + [anon_sym_LPAREN] = ACTIONS(1824), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1824), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_STAR] = ACTIONS(1824), + [anon_sym_u8] = ACTIONS(1826), + [anon_sym_i8] = ACTIONS(1826), + [anon_sym_u16] = ACTIONS(1826), + [anon_sym_i16] = ACTIONS(1826), + [anon_sym_u32] = ACTIONS(1826), + [anon_sym_i32] = ACTIONS(1826), + [anon_sym_u64] = ACTIONS(1826), + [anon_sym_i64] = ACTIONS(1826), + [anon_sym_u128] = ACTIONS(1826), + [anon_sym_i128] = ACTIONS(1826), + [anon_sym_isize] = ACTIONS(1826), + [anon_sym_usize] = ACTIONS(1826), + [anon_sym_f32] = ACTIONS(1826), + [anon_sym_f64] = ACTIONS(1826), + [anon_sym_bool] = ACTIONS(1826), + [anon_sym_str] = ACTIONS(1826), + [anon_sym_char] = ACTIONS(1826), + [anon_sym_SQUOTE] = ACTIONS(1826), + [anon_sym_async] = ACTIONS(1826), + [anon_sym_break] = ACTIONS(1826), + [anon_sym_const] = ACTIONS(1826), + [anon_sym_continue] = ACTIONS(1826), + [anon_sym_default] = ACTIONS(1826), + [anon_sym_enum] = ACTIONS(1826), + [anon_sym_fn] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_impl] = ACTIONS(1826), + [anon_sym_let] = ACTIONS(1826), + [anon_sym_loop] = ACTIONS(1826), + [anon_sym_match] = ACTIONS(1826), + [anon_sym_mod] = ACTIONS(1826), + [anon_sym_pub] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_static] = ACTIONS(1826), + [anon_sym_struct] = ACTIONS(1826), + [anon_sym_trait] = ACTIONS(1826), + [anon_sym_type] = ACTIONS(1826), + [anon_sym_union] = ACTIONS(1826), + [anon_sym_unsafe] = ACTIONS(1826), + [anon_sym_use] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(1824), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_extern] = ACTIONS(1826), + [anon_sym_LT] = ACTIONS(1824), + [anon_sym_COLON_COLON] = ACTIONS(1824), + [anon_sym_AMP] = ACTIONS(1824), + [anon_sym_DOT_DOT] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_PIPE] = ACTIONS(1824), + [anon_sym_yield] = ACTIONS(1826), + [anon_sym_move] = ACTIONS(1826), + [sym_integer_literal] = ACTIONS(1824), + [aux_sym_string_literal_token1] = ACTIONS(1824), + [sym_char_literal] = ACTIONS(1824), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1826), + [sym_super] = ACTIONS(1826), + [sym_crate] = ACTIONS(1826), + [sym_metavariable] = ACTIONS(1824), + [sym_raw_string_literal] = ACTIONS(1824), + [sym_float_literal] = ACTIONS(1824), [sym_block_comment] = ACTIONS(3), }, [437] = { - [ts_builtin_sym_end] = ACTIONS(1826), - [sym_identifier] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_macro_rules_BANG] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_u8] = ACTIONS(1828), - [anon_sym_i8] = ACTIONS(1828), - [anon_sym_u16] = ACTIONS(1828), - [anon_sym_i16] = ACTIONS(1828), - [anon_sym_u32] = ACTIONS(1828), - [anon_sym_i32] = ACTIONS(1828), - [anon_sym_u64] = ACTIONS(1828), - [anon_sym_i64] = ACTIONS(1828), - [anon_sym_u128] = ACTIONS(1828), - [anon_sym_i128] = ACTIONS(1828), - [anon_sym_isize] = ACTIONS(1828), - [anon_sym_usize] = ACTIONS(1828), - [anon_sym_f32] = ACTIONS(1828), - [anon_sym_f64] = ACTIONS(1828), - [anon_sym_bool] = ACTIONS(1828), - [anon_sym_str] = ACTIONS(1828), - [anon_sym_char] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_async] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_default] = ACTIONS(1828), - [anon_sym_enum] = ACTIONS(1828), - [anon_sym_fn] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_impl] = ACTIONS(1828), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_loop] = ACTIONS(1828), - [anon_sym_match] = ACTIONS(1828), - [anon_sym_mod] = ACTIONS(1828), - [anon_sym_pub] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1828), - [anon_sym_struct] = ACTIONS(1828), - [anon_sym_trait] = ACTIONS(1828), - [anon_sym_type] = ACTIONS(1828), - [anon_sym_union] = ACTIONS(1828), - [anon_sym_unsafe] = ACTIONS(1828), - [anon_sym_use] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1828), - [anon_sym_POUND] = ACTIONS(1826), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_LT] = ACTIONS(1826), - [anon_sym_COLON_COLON] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_yield] = ACTIONS(1828), - [anon_sym_move] = ACTIONS(1828), - [sym_integer_literal] = ACTIONS(1826), - [aux_sym_string_literal_token1] = ACTIONS(1826), - [sym_char_literal] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1828), - [sym_super] = ACTIONS(1828), - [sym_crate] = ACTIONS(1828), - [sym_metavariable] = ACTIONS(1826), - [sym_raw_string_literal] = ACTIONS(1826), - [sym_float_literal] = ACTIONS(1826), + [ts_builtin_sym_end] = ACTIONS(1828), + [sym_identifier] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_macro_rules_BANG] = ACTIONS(1828), + [anon_sym_LPAREN] = ACTIONS(1828), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_STAR] = ACTIONS(1828), + [anon_sym_u8] = ACTIONS(1830), + [anon_sym_i8] = ACTIONS(1830), + [anon_sym_u16] = ACTIONS(1830), + [anon_sym_i16] = ACTIONS(1830), + [anon_sym_u32] = ACTIONS(1830), + [anon_sym_i32] = ACTIONS(1830), + [anon_sym_u64] = ACTIONS(1830), + [anon_sym_i64] = ACTIONS(1830), + [anon_sym_u128] = ACTIONS(1830), + [anon_sym_i128] = ACTIONS(1830), + [anon_sym_isize] = ACTIONS(1830), + [anon_sym_usize] = ACTIONS(1830), + [anon_sym_f32] = ACTIONS(1830), + [anon_sym_f64] = ACTIONS(1830), + [anon_sym_bool] = ACTIONS(1830), + [anon_sym_str] = ACTIONS(1830), + [anon_sym_char] = ACTIONS(1830), + [anon_sym_SQUOTE] = ACTIONS(1830), + [anon_sym_async] = ACTIONS(1830), + [anon_sym_break] = ACTIONS(1830), + [anon_sym_const] = ACTIONS(1830), + [anon_sym_continue] = ACTIONS(1830), + [anon_sym_default] = ACTIONS(1830), + [anon_sym_enum] = ACTIONS(1830), + [anon_sym_fn] = ACTIONS(1830), + [anon_sym_for] = ACTIONS(1830), + [anon_sym_if] = ACTIONS(1830), + [anon_sym_impl] = ACTIONS(1830), + [anon_sym_let] = ACTIONS(1830), + [anon_sym_loop] = ACTIONS(1830), + [anon_sym_match] = ACTIONS(1830), + [anon_sym_mod] = ACTIONS(1830), + [anon_sym_pub] = ACTIONS(1830), + [anon_sym_return] = ACTIONS(1830), + [anon_sym_static] = ACTIONS(1830), + [anon_sym_struct] = ACTIONS(1830), + [anon_sym_trait] = ACTIONS(1830), + [anon_sym_type] = ACTIONS(1830), + [anon_sym_union] = ACTIONS(1830), + [anon_sym_unsafe] = ACTIONS(1830), + [anon_sym_use] = ACTIONS(1830), + [anon_sym_while] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(1828), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_extern] = ACTIONS(1830), + [anon_sym_LT] = ACTIONS(1828), + [anon_sym_COLON_COLON] = ACTIONS(1828), + [anon_sym_AMP] = ACTIONS(1828), + [anon_sym_DOT_DOT] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_PIPE] = ACTIONS(1828), + [anon_sym_yield] = ACTIONS(1830), + [anon_sym_move] = ACTIONS(1830), + [sym_integer_literal] = ACTIONS(1828), + [aux_sym_string_literal_token1] = ACTIONS(1828), + [sym_char_literal] = ACTIONS(1828), + [anon_sym_true] = ACTIONS(1830), + [anon_sym_false] = ACTIONS(1830), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1830), + [sym_super] = ACTIONS(1830), + [sym_crate] = ACTIONS(1830), + [sym_metavariable] = ACTIONS(1828), + [sym_raw_string_literal] = ACTIONS(1828), + [sym_float_literal] = ACTIONS(1828), [sym_block_comment] = ACTIONS(3), }, [438] = { - [ts_builtin_sym_end] = ACTIONS(1830), - [sym_identifier] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_macro_rules_BANG] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_u8] = ACTIONS(1832), - [anon_sym_i8] = ACTIONS(1832), - [anon_sym_u16] = ACTIONS(1832), - [anon_sym_i16] = ACTIONS(1832), - [anon_sym_u32] = ACTIONS(1832), - [anon_sym_i32] = ACTIONS(1832), - [anon_sym_u64] = ACTIONS(1832), - [anon_sym_i64] = ACTIONS(1832), - [anon_sym_u128] = ACTIONS(1832), - [anon_sym_i128] = ACTIONS(1832), - [anon_sym_isize] = ACTIONS(1832), - [anon_sym_usize] = ACTIONS(1832), - [anon_sym_f32] = ACTIONS(1832), - [anon_sym_f64] = ACTIONS(1832), - [anon_sym_bool] = ACTIONS(1832), - [anon_sym_str] = ACTIONS(1832), - [anon_sym_char] = ACTIONS(1832), - [anon_sym_SQUOTE] = ACTIONS(1832), - [anon_sym_async] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_const] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_default] = ACTIONS(1832), - [anon_sym_enum] = ACTIONS(1832), - [anon_sym_fn] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_impl] = ACTIONS(1832), - [anon_sym_let] = ACTIONS(1832), - [anon_sym_loop] = ACTIONS(1832), - [anon_sym_match] = ACTIONS(1832), - [anon_sym_mod] = ACTIONS(1832), - [anon_sym_pub] = ACTIONS(1832), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_static] = ACTIONS(1832), - [anon_sym_struct] = ACTIONS(1832), - [anon_sym_trait] = ACTIONS(1832), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_union] = ACTIONS(1832), - [anon_sym_unsafe] = ACTIONS(1832), - [anon_sym_use] = ACTIONS(1832), - [anon_sym_while] = ACTIONS(1832), - [anon_sym_POUND] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_extern] = ACTIONS(1832), - [anon_sym_LT] = ACTIONS(1830), - [anon_sym_COLON_COLON] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1830), - [anon_sym_DOT_DOT] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_yield] = ACTIONS(1832), - [anon_sym_move] = ACTIONS(1832), - [sym_integer_literal] = ACTIONS(1830), - [aux_sym_string_literal_token1] = ACTIONS(1830), - [sym_char_literal] = ACTIONS(1830), - [anon_sym_true] = ACTIONS(1832), - [anon_sym_false] = ACTIONS(1832), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1832), - [sym_super] = ACTIONS(1832), - [sym_crate] = ACTIONS(1832), - [sym_metavariable] = ACTIONS(1830), - [sym_raw_string_literal] = ACTIONS(1830), - [sym_float_literal] = ACTIONS(1830), + [ts_builtin_sym_end] = ACTIONS(1832), + [sym_identifier] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_macro_rules_BANG] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_LBRACE] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1832), + [anon_sym_LBRACK] = ACTIONS(1832), + [anon_sym_STAR] = ACTIONS(1832), + [anon_sym_u8] = ACTIONS(1834), + [anon_sym_i8] = ACTIONS(1834), + [anon_sym_u16] = ACTIONS(1834), + [anon_sym_i16] = ACTIONS(1834), + [anon_sym_u32] = ACTIONS(1834), + [anon_sym_i32] = ACTIONS(1834), + [anon_sym_u64] = ACTIONS(1834), + [anon_sym_i64] = ACTIONS(1834), + [anon_sym_u128] = ACTIONS(1834), + [anon_sym_i128] = ACTIONS(1834), + [anon_sym_isize] = ACTIONS(1834), + [anon_sym_usize] = ACTIONS(1834), + [anon_sym_f32] = ACTIONS(1834), + [anon_sym_f64] = ACTIONS(1834), + [anon_sym_bool] = ACTIONS(1834), + [anon_sym_str] = ACTIONS(1834), + [anon_sym_char] = ACTIONS(1834), + [anon_sym_SQUOTE] = ACTIONS(1834), + [anon_sym_async] = ACTIONS(1834), + [anon_sym_break] = ACTIONS(1834), + [anon_sym_const] = ACTIONS(1834), + [anon_sym_continue] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1834), + [anon_sym_enum] = ACTIONS(1834), + [anon_sym_fn] = ACTIONS(1834), + [anon_sym_for] = ACTIONS(1834), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_impl] = ACTIONS(1834), + [anon_sym_let] = ACTIONS(1834), + [anon_sym_loop] = ACTIONS(1834), + [anon_sym_match] = ACTIONS(1834), + [anon_sym_mod] = ACTIONS(1834), + [anon_sym_pub] = ACTIONS(1834), + [anon_sym_return] = ACTIONS(1834), + [anon_sym_static] = ACTIONS(1834), + [anon_sym_struct] = ACTIONS(1834), + [anon_sym_trait] = ACTIONS(1834), + [anon_sym_type] = ACTIONS(1834), + [anon_sym_union] = ACTIONS(1834), + [anon_sym_unsafe] = ACTIONS(1834), + [anon_sym_use] = ACTIONS(1834), + [anon_sym_while] = ACTIONS(1834), + [anon_sym_POUND] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1832), + [anon_sym_extern] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1832), + [anon_sym_COLON_COLON] = ACTIONS(1832), + [anon_sym_AMP] = ACTIONS(1832), + [anon_sym_DOT_DOT] = ACTIONS(1832), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_PIPE] = ACTIONS(1832), + [anon_sym_yield] = ACTIONS(1834), + [anon_sym_move] = ACTIONS(1834), + [sym_integer_literal] = ACTIONS(1832), + [aux_sym_string_literal_token1] = ACTIONS(1832), + [sym_char_literal] = ACTIONS(1832), + [anon_sym_true] = ACTIONS(1834), + [anon_sym_false] = ACTIONS(1834), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1834), + [sym_super] = ACTIONS(1834), + [sym_crate] = ACTIONS(1834), + [sym_metavariable] = ACTIONS(1832), + [sym_raw_string_literal] = ACTIONS(1832), + [sym_float_literal] = ACTIONS(1832), [sym_block_comment] = ACTIONS(3), }, [439] = { - [ts_builtin_sym_end] = ACTIONS(1834), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_macro_rules_BANG] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_RBRACE] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_u8] = ACTIONS(1836), - [anon_sym_i8] = ACTIONS(1836), - [anon_sym_u16] = ACTIONS(1836), - [anon_sym_i16] = ACTIONS(1836), - [anon_sym_u32] = ACTIONS(1836), - [anon_sym_i32] = ACTIONS(1836), - [anon_sym_u64] = ACTIONS(1836), - [anon_sym_i64] = ACTIONS(1836), - [anon_sym_u128] = ACTIONS(1836), - [anon_sym_i128] = ACTIONS(1836), - [anon_sym_isize] = ACTIONS(1836), - [anon_sym_usize] = ACTIONS(1836), - [anon_sym_f32] = ACTIONS(1836), - [anon_sym_f64] = ACTIONS(1836), - [anon_sym_bool] = ACTIONS(1836), - [anon_sym_str] = ACTIONS(1836), - [anon_sym_char] = ACTIONS(1836), - [anon_sym_SQUOTE] = ACTIONS(1836), - [anon_sym_async] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_const] = ACTIONS(1836), - [anon_sym_continue] = ACTIONS(1836), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_fn] = ACTIONS(1836), - [anon_sym_for] = ACTIONS(1836), - [anon_sym_if] = ACTIONS(1836), - [anon_sym_impl] = ACTIONS(1836), - [anon_sym_let] = ACTIONS(1836), - [anon_sym_loop] = ACTIONS(1836), - [anon_sym_match] = ACTIONS(1836), - [anon_sym_mod] = ACTIONS(1836), - [anon_sym_pub] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_static] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_trait] = ACTIONS(1836), - [anon_sym_type] = ACTIONS(1836), - [anon_sym_union] = ACTIONS(1836), - [anon_sym_unsafe] = ACTIONS(1836), - [anon_sym_use] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_extern] = ACTIONS(1836), - [anon_sym_LT] = ACTIONS(1834), - [anon_sym_COLON_COLON] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_DOT_DOT] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_move] = ACTIONS(1836), - [sym_integer_literal] = ACTIONS(1834), - [aux_sym_string_literal_token1] = ACTIONS(1834), - [sym_char_literal] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(1836), - [anon_sym_false] = ACTIONS(1836), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1836), - [sym_super] = ACTIONS(1836), - [sym_crate] = ACTIONS(1836), - [sym_metavariable] = ACTIONS(1834), - [sym_raw_string_literal] = ACTIONS(1834), - [sym_float_literal] = ACTIONS(1834), + [ts_builtin_sym_end] = ACTIONS(1836), + [sym_identifier] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_macro_rules_BANG] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1836), + [anon_sym_LBRACK] = ACTIONS(1836), + [anon_sym_STAR] = ACTIONS(1836), + [anon_sym_u8] = ACTIONS(1838), + [anon_sym_i8] = ACTIONS(1838), + [anon_sym_u16] = ACTIONS(1838), + [anon_sym_i16] = ACTIONS(1838), + [anon_sym_u32] = ACTIONS(1838), + [anon_sym_i32] = ACTIONS(1838), + [anon_sym_u64] = ACTIONS(1838), + [anon_sym_i64] = ACTIONS(1838), + [anon_sym_u128] = ACTIONS(1838), + [anon_sym_i128] = ACTIONS(1838), + [anon_sym_isize] = ACTIONS(1838), + [anon_sym_usize] = ACTIONS(1838), + [anon_sym_f32] = ACTIONS(1838), + [anon_sym_f64] = ACTIONS(1838), + [anon_sym_bool] = ACTIONS(1838), + [anon_sym_str] = ACTIONS(1838), + [anon_sym_char] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [anon_sym_async] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_default] = ACTIONS(1838), + [anon_sym_enum] = ACTIONS(1838), + [anon_sym_fn] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_impl] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1838), + [anon_sym_loop] = ACTIONS(1838), + [anon_sym_match] = ACTIONS(1838), + [anon_sym_mod] = ACTIONS(1838), + [anon_sym_pub] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_static] = ACTIONS(1838), + [anon_sym_struct] = ACTIONS(1838), + [anon_sym_trait] = ACTIONS(1838), + [anon_sym_type] = ACTIONS(1838), + [anon_sym_union] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1838), + [anon_sym_use] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_POUND] = ACTIONS(1836), + [anon_sym_BANG] = ACTIONS(1836), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_COLON_COLON] = ACTIONS(1836), + [anon_sym_AMP] = ACTIONS(1836), + [anon_sym_DOT_DOT] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_yield] = ACTIONS(1838), + [anon_sym_move] = ACTIONS(1838), + [sym_integer_literal] = ACTIONS(1836), + [aux_sym_string_literal_token1] = ACTIONS(1836), + [sym_char_literal] = ACTIONS(1836), + [anon_sym_true] = ACTIONS(1838), + [anon_sym_false] = ACTIONS(1838), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1838), + [sym_super] = ACTIONS(1838), + [sym_crate] = ACTIONS(1838), + [sym_metavariable] = ACTIONS(1836), + [sym_raw_string_literal] = ACTIONS(1836), + [sym_float_literal] = ACTIONS(1836), [sym_block_comment] = ACTIONS(3), }, [440] = { - [ts_builtin_sym_end] = ACTIONS(1838), - [sym_identifier] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_macro_rules_BANG] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_u8] = ACTIONS(1840), - [anon_sym_i8] = ACTIONS(1840), - [anon_sym_u16] = ACTIONS(1840), - [anon_sym_i16] = ACTIONS(1840), - [anon_sym_u32] = ACTIONS(1840), - [anon_sym_i32] = ACTIONS(1840), - [anon_sym_u64] = ACTIONS(1840), - [anon_sym_i64] = ACTIONS(1840), - [anon_sym_u128] = ACTIONS(1840), - [anon_sym_i128] = ACTIONS(1840), - [anon_sym_isize] = ACTIONS(1840), - [anon_sym_usize] = ACTIONS(1840), - [anon_sym_f32] = ACTIONS(1840), - [anon_sym_f64] = ACTIONS(1840), - [anon_sym_bool] = ACTIONS(1840), - [anon_sym_str] = ACTIONS(1840), - [anon_sym_char] = ACTIONS(1840), - [anon_sym_SQUOTE] = ACTIONS(1840), - [anon_sym_async] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [anon_sym_continue] = ACTIONS(1840), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_enum] = ACTIONS(1840), - [anon_sym_fn] = ACTIONS(1840), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_if] = ACTIONS(1840), - [anon_sym_impl] = ACTIONS(1840), - [anon_sym_let] = ACTIONS(1840), - [anon_sym_loop] = ACTIONS(1840), - [anon_sym_match] = ACTIONS(1840), - [anon_sym_mod] = ACTIONS(1840), - [anon_sym_pub] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1840), - [anon_sym_struct] = ACTIONS(1840), - [anon_sym_trait] = ACTIONS(1840), - [anon_sym_type] = ACTIONS(1840), - [anon_sym_union] = ACTIONS(1840), - [anon_sym_unsafe] = ACTIONS(1840), - [anon_sym_use] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1840), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_BANG] = ACTIONS(1838), - [anon_sym_extern] = ACTIONS(1840), - [anon_sym_LT] = ACTIONS(1838), - [anon_sym_COLON_COLON] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1838), - [anon_sym_DOT_DOT] = ACTIONS(1838), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_yield] = ACTIONS(1840), - [anon_sym_move] = ACTIONS(1840), - [sym_integer_literal] = ACTIONS(1838), - [aux_sym_string_literal_token1] = ACTIONS(1838), - [sym_char_literal] = ACTIONS(1838), - [anon_sym_true] = ACTIONS(1840), - [anon_sym_false] = ACTIONS(1840), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1840), - [sym_super] = ACTIONS(1840), - [sym_crate] = ACTIONS(1840), - [sym_metavariable] = ACTIONS(1838), - [sym_raw_string_literal] = ACTIONS(1838), - [sym_float_literal] = ACTIONS(1838), + [ts_builtin_sym_end] = ACTIONS(1840), + [sym_identifier] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1840), + [anon_sym_macro_rules_BANG] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1840), + [anon_sym_LBRACK] = ACTIONS(1840), + [anon_sym_STAR] = ACTIONS(1840), + [anon_sym_u8] = ACTIONS(1842), + [anon_sym_i8] = ACTIONS(1842), + [anon_sym_u16] = ACTIONS(1842), + [anon_sym_i16] = ACTIONS(1842), + [anon_sym_u32] = ACTIONS(1842), + [anon_sym_i32] = ACTIONS(1842), + [anon_sym_u64] = ACTIONS(1842), + [anon_sym_i64] = ACTIONS(1842), + [anon_sym_u128] = ACTIONS(1842), + [anon_sym_i128] = ACTIONS(1842), + [anon_sym_isize] = ACTIONS(1842), + [anon_sym_usize] = ACTIONS(1842), + [anon_sym_f32] = ACTIONS(1842), + [anon_sym_f64] = ACTIONS(1842), + [anon_sym_bool] = ACTIONS(1842), + [anon_sym_str] = ACTIONS(1842), + [anon_sym_char] = ACTIONS(1842), + [anon_sym_SQUOTE] = ACTIONS(1842), + [anon_sym_async] = ACTIONS(1842), + [anon_sym_break] = ACTIONS(1842), + [anon_sym_const] = ACTIONS(1842), + [anon_sym_continue] = ACTIONS(1842), + [anon_sym_default] = ACTIONS(1842), + [anon_sym_enum] = ACTIONS(1842), + [anon_sym_fn] = ACTIONS(1842), + [anon_sym_for] = ACTIONS(1842), + [anon_sym_if] = ACTIONS(1842), + [anon_sym_impl] = ACTIONS(1842), + [anon_sym_let] = ACTIONS(1842), + [anon_sym_loop] = ACTIONS(1842), + [anon_sym_match] = ACTIONS(1842), + [anon_sym_mod] = ACTIONS(1842), + [anon_sym_pub] = ACTIONS(1842), + [anon_sym_return] = ACTIONS(1842), + [anon_sym_static] = ACTIONS(1842), + [anon_sym_struct] = ACTIONS(1842), + [anon_sym_trait] = ACTIONS(1842), + [anon_sym_type] = ACTIONS(1842), + [anon_sym_union] = ACTIONS(1842), + [anon_sym_unsafe] = ACTIONS(1842), + [anon_sym_use] = ACTIONS(1842), + [anon_sym_while] = ACTIONS(1842), + [anon_sym_POUND] = ACTIONS(1840), + [anon_sym_BANG] = ACTIONS(1840), + [anon_sym_extern] = ACTIONS(1842), + [anon_sym_LT] = ACTIONS(1840), + [anon_sym_COLON_COLON] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1840), + [anon_sym_DOT_DOT] = ACTIONS(1840), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1840), + [anon_sym_yield] = ACTIONS(1842), + [anon_sym_move] = ACTIONS(1842), + [sym_integer_literal] = ACTIONS(1840), + [aux_sym_string_literal_token1] = ACTIONS(1840), + [sym_char_literal] = ACTIONS(1840), + [anon_sym_true] = ACTIONS(1842), + [anon_sym_false] = ACTIONS(1842), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1842), + [sym_super] = ACTIONS(1842), + [sym_crate] = ACTIONS(1842), + [sym_metavariable] = ACTIONS(1840), + [sym_raw_string_literal] = ACTIONS(1840), + [sym_float_literal] = ACTIONS(1840), [sym_block_comment] = ACTIONS(3), }, [441] = { - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_identifier] = ACTIONS(1844), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_macro_rules_BANG] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_u8] = ACTIONS(1844), - [anon_sym_i8] = ACTIONS(1844), - [anon_sym_u16] = ACTIONS(1844), - [anon_sym_i16] = ACTIONS(1844), - [anon_sym_u32] = ACTIONS(1844), - [anon_sym_i32] = ACTIONS(1844), - [anon_sym_u64] = ACTIONS(1844), - [anon_sym_i64] = ACTIONS(1844), - [anon_sym_u128] = ACTIONS(1844), - [anon_sym_i128] = ACTIONS(1844), - [anon_sym_isize] = ACTIONS(1844), - [anon_sym_usize] = ACTIONS(1844), - [anon_sym_f32] = ACTIONS(1844), - [anon_sym_f64] = ACTIONS(1844), - [anon_sym_bool] = ACTIONS(1844), - [anon_sym_str] = ACTIONS(1844), - [anon_sym_char] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_async] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1844), - [anon_sym_default] = ACTIONS(1844), - [anon_sym_enum] = ACTIONS(1844), - [anon_sym_fn] = ACTIONS(1844), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1844), - [anon_sym_impl] = ACTIONS(1844), - [anon_sym_let] = ACTIONS(1844), - [anon_sym_loop] = ACTIONS(1844), - [anon_sym_match] = ACTIONS(1844), - [anon_sym_mod] = ACTIONS(1844), - [anon_sym_pub] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_static] = ACTIONS(1844), - [anon_sym_struct] = ACTIONS(1844), - [anon_sym_trait] = ACTIONS(1844), - [anon_sym_type] = ACTIONS(1844), - [anon_sym_union] = ACTIONS(1844), - [anon_sym_unsafe] = ACTIONS(1844), - [anon_sym_use] = ACTIONS(1844), - [anon_sym_while] = ACTIONS(1844), - [anon_sym_POUND] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_extern] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1842), - [anon_sym_COLON_COLON] = ACTIONS(1842), - [anon_sym_AMP] = ACTIONS(1842), - [anon_sym_DOT_DOT] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_yield] = ACTIONS(1844), - [anon_sym_move] = ACTIONS(1844), - [sym_integer_literal] = ACTIONS(1842), - [aux_sym_string_literal_token1] = ACTIONS(1842), - [sym_char_literal] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1844), - [anon_sym_false] = ACTIONS(1844), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1844), - [sym_super] = ACTIONS(1844), - [sym_crate] = ACTIONS(1844), - [sym_metavariable] = ACTIONS(1842), - [sym_raw_string_literal] = ACTIONS(1842), - [sym_float_literal] = ACTIONS(1842), + [ts_builtin_sym_end] = ACTIONS(1844), + [sym_identifier] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_macro_rules_BANG] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_LBRACK] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(1844), + [anon_sym_u8] = ACTIONS(1846), + [anon_sym_i8] = ACTIONS(1846), + [anon_sym_u16] = ACTIONS(1846), + [anon_sym_i16] = ACTIONS(1846), + [anon_sym_u32] = ACTIONS(1846), + [anon_sym_i32] = ACTIONS(1846), + [anon_sym_u64] = ACTIONS(1846), + [anon_sym_i64] = ACTIONS(1846), + [anon_sym_u128] = ACTIONS(1846), + [anon_sym_i128] = ACTIONS(1846), + [anon_sym_isize] = ACTIONS(1846), + [anon_sym_usize] = ACTIONS(1846), + [anon_sym_f32] = ACTIONS(1846), + [anon_sym_f64] = ACTIONS(1846), + [anon_sym_bool] = ACTIONS(1846), + [anon_sym_str] = ACTIONS(1846), + [anon_sym_char] = ACTIONS(1846), + [anon_sym_SQUOTE] = ACTIONS(1846), + [anon_sym_async] = ACTIONS(1846), + [anon_sym_break] = ACTIONS(1846), + [anon_sym_const] = ACTIONS(1846), + [anon_sym_continue] = ACTIONS(1846), + [anon_sym_default] = ACTIONS(1846), + [anon_sym_enum] = ACTIONS(1846), + [anon_sym_fn] = ACTIONS(1846), + [anon_sym_for] = ACTIONS(1846), + [anon_sym_if] = ACTIONS(1846), + [anon_sym_impl] = ACTIONS(1846), + [anon_sym_let] = ACTIONS(1846), + [anon_sym_loop] = ACTIONS(1846), + [anon_sym_match] = ACTIONS(1846), + [anon_sym_mod] = ACTIONS(1846), + [anon_sym_pub] = ACTIONS(1846), + [anon_sym_return] = ACTIONS(1846), + [anon_sym_static] = ACTIONS(1846), + [anon_sym_struct] = ACTIONS(1846), + [anon_sym_trait] = ACTIONS(1846), + [anon_sym_type] = ACTIONS(1846), + [anon_sym_union] = ACTIONS(1846), + [anon_sym_unsafe] = ACTIONS(1846), + [anon_sym_use] = ACTIONS(1846), + [anon_sym_while] = ACTIONS(1846), + [anon_sym_POUND] = ACTIONS(1844), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_extern] = ACTIONS(1846), + [anon_sym_LT] = ACTIONS(1844), + [anon_sym_COLON_COLON] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_DOT_DOT] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_yield] = ACTIONS(1846), + [anon_sym_move] = ACTIONS(1846), + [sym_integer_literal] = ACTIONS(1844), + [aux_sym_string_literal_token1] = ACTIONS(1844), + [sym_char_literal] = ACTIONS(1844), + [anon_sym_true] = ACTIONS(1846), + [anon_sym_false] = ACTIONS(1846), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1846), + [sym_super] = ACTIONS(1846), + [sym_crate] = ACTIONS(1846), + [sym_metavariable] = ACTIONS(1844), + [sym_raw_string_literal] = ACTIONS(1844), + [sym_float_literal] = ACTIONS(1844), [sym_block_comment] = ACTIONS(3), }, [442] = { - [ts_builtin_sym_end] = ACTIONS(1846), - [sym_identifier] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_macro_rules_BANG] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_u8] = ACTIONS(1848), - [anon_sym_i8] = ACTIONS(1848), - [anon_sym_u16] = ACTIONS(1848), - [anon_sym_i16] = ACTIONS(1848), - [anon_sym_u32] = ACTIONS(1848), - [anon_sym_i32] = ACTIONS(1848), - [anon_sym_u64] = ACTIONS(1848), - [anon_sym_i64] = ACTIONS(1848), - [anon_sym_u128] = ACTIONS(1848), - [anon_sym_i128] = ACTIONS(1848), - [anon_sym_isize] = ACTIONS(1848), - [anon_sym_usize] = ACTIONS(1848), - [anon_sym_f32] = ACTIONS(1848), - [anon_sym_f64] = ACTIONS(1848), - [anon_sym_bool] = ACTIONS(1848), - [anon_sym_str] = ACTIONS(1848), - [anon_sym_char] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_async] = ACTIONS(1848), - [anon_sym_break] = ACTIONS(1848), - [anon_sym_const] = ACTIONS(1848), - [anon_sym_continue] = ACTIONS(1848), - [anon_sym_default] = ACTIONS(1848), - [anon_sym_enum] = ACTIONS(1848), - [anon_sym_fn] = ACTIONS(1848), - [anon_sym_for] = ACTIONS(1848), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_impl] = ACTIONS(1848), - [anon_sym_let] = ACTIONS(1848), - [anon_sym_loop] = ACTIONS(1848), - [anon_sym_match] = ACTIONS(1848), - [anon_sym_mod] = ACTIONS(1848), - [anon_sym_pub] = ACTIONS(1848), - [anon_sym_return] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1848), - [anon_sym_struct] = ACTIONS(1848), - [anon_sym_trait] = ACTIONS(1848), - [anon_sym_type] = ACTIONS(1848), - [anon_sym_union] = ACTIONS(1848), - [anon_sym_unsafe] = ACTIONS(1848), - [anon_sym_use] = ACTIONS(1848), - [anon_sym_while] = ACTIONS(1848), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_BANG] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1848), - [anon_sym_LT] = ACTIONS(1846), - [anon_sym_COLON_COLON] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_DOT_DOT] = ACTIONS(1846), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_yield] = ACTIONS(1848), - [anon_sym_move] = ACTIONS(1848), - [sym_integer_literal] = ACTIONS(1846), - [aux_sym_string_literal_token1] = ACTIONS(1846), - [sym_char_literal] = ACTIONS(1846), - [anon_sym_true] = ACTIONS(1848), - [anon_sym_false] = ACTIONS(1848), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1848), - [sym_super] = ACTIONS(1848), - [sym_crate] = ACTIONS(1848), - [sym_metavariable] = ACTIONS(1846), - [sym_raw_string_literal] = ACTIONS(1846), - [sym_float_literal] = ACTIONS(1846), + [ts_builtin_sym_end] = ACTIONS(1848), + [sym_identifier] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_macro_rules_BANG] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_LBRACK] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_u8] = ACTIONS(1850), + [anon_sym_i8] = ACTIONS(1850), + [anon_sym_u16] = ACTIONS(1850), + [anon_sym_i16] = ACTIONS(1850), + [anon_sym_u32] = ACTIONS(1850), + [anon_sym_i32] = ACTIONS(1850), + [anon_sym_u64] = ACTIONS(1850), + [anon_sym_i64] = ACTIONS(1850), + [anon_sym_u128] = ACTIONS(1850), + [anon_sym_i128] = ACTIONS(1850), + [anon_sym_isize] = ACTIONS(1850), + [anon_sym_usize] = ACTIONS(1850), + [anon_sym_f32] = ACTIONS(1850), + [anon_sym_f64] = ACTIONS(1850), + [anon_sym_bool] = ACTIONS(1850), + [anon_sym_str] = ACTIONS(1850), + [anon_sym_char] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_async] = ACTIONS(1850), + [anon_sym_break] = ACTIONS(1850), + [anon_sym_const] = ACTIONS(1850), + [anon_sym_continue] = ACTIONS(1850), + [anon_sym_default] = ACTIONS(1850), + [anon_sym_enum] = ACTIONS(1850), + [anon_sym_fn] = ACTIONS(1850), + [anon_sym_for] = ACTIONS(1850), + [anon_sym_if] = ACTIONS(1850), + [anon_sym_impl] = ACTIONS(1850), + [anon_sym_let] = ACTIONS(1850), + [anon_sym_loop] = ACTIONS(1850), + [anon_sym_match] = ACTIONS(1850), + [anon_sym_mod] = ACTIONS(1850), + [anon_sym_pub] = ACTIONS(1850), + [anon_sym_return] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1850), + [anon_sym_struct] = ACTIONS(1850), + [anon_sym_trait] = ACTIONS(1850), + [anon_sym_type] = ACTIONS(1850), + [anon_sym_union] = ACTIONS(1850), + [anon_sym_unsafe] = ACTIONS(1850), + [anon_sym_use] = ACTIONS(1850), + [anon_sym_while] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(1848), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1850), + [anon_sym_LT] = ACTIONS(1848), + [anon_sym_COLON_COLON] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_DOT_DOT] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_yield] = ACTIONS(1850), + [anon_sym_move] = ACTIONS(1850), + [sym_integer_literal] = ACTIONS(1848), + [aux_sym_string_literal_token1] = ACTIONS(1848), + [sym_char_literal] = ACTIONS(1848), + [anon_sym_true] = ACTIONS(1850), + [anon_sym_false] = ACTIONS(1850), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1850), + [sym_super] = ACTIONS(1850), + [sym_crate] = ACTIONS(1850), + [sym_metavariable] = ACTIONS(1848), + [sym_raw_string_literal] = ACTIONS(1848), + [sym_float_literal] = ACTIONS(1848), [sym_block_comment] = ACTIONS(3), }, [443] = { - [ts_builtin_sym_end] = ACTIONS(1850), - [sym_identifier] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_macro_rules_BANG] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1850), - [anon_sym_u8] = ACTIONS(1852), - [anon_sym_i8] = ACTIONS(1852), - [anon_sym_u16] = ACTIONS(1852), - [anon_sym_i16] = ACTIONS(1852), - [anon_sym_u32] = ACTIONS(1852), - [anon_sym_i32] = ACTIONS(1852), - [anon_sym_u64] = ACTIONS(1852), - [anon_sym_i64] = ACTIONS(1852), - [anon_sym_u128] = ACTIONS(1852), - [anon_sym_i128] = ACTIONS(1852), - [anon_sym_isize] = ACTIONS(1852), - [anon_sym_usize] = ACTIONS(1852), - [anon_sym_f32] = ACTIONS(1852), - [anon_sym_f64] = ACTIONS(1852), - [anon_sym_bool] = ACTIONS(1852), - [anon_sym_str] = ACTIONS(1852), - [anon_sym_char] = ACTIONS(1852), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_async] = ACTIONS(1852), - [anon_sym_break] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1852), - [anon_sym_continue] = ACTIONS(1852), - [anon_sym_default] = ACTIONS(1852), - [anon_sym_enum] = ACTIONS(1852), - [anon_sym_fn] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1852), - [anon_sym_if] = ACTIONS(1852), - [anon_sym_impl] = ACTIONS(1852), - [anon_sym_let] = ACTIONS(1852), - [anon_sym_loop] = ACTIONS(1852), - [anon_sym_match] = ACTIONS(1852), - [anon_sym_mod] = ACTIONS(1852), - [anon_sym_pub] = ACTIONS(1852), - [anon_sym_return] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1852), - [anon_sym_struct] = ACTIONS(1852), - [anon_sym_trait] = ACTIONS(1852), - [anon_sym_type] = ACTIONS(1852), - [anon_sym_union] = ACTIONS(1852), - [anon_sym_unsafe] = ACTIONS(1852), - [anon_sym_use] = ACTIONS(1852), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(1850), - [anon_sym_BANG] = ACTIONS(1850), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_LT] = ACTIONS(1850), - [anon_sym_COLON_COLON] = ACTIONS(1850), - [anon_sym_AMP] = ACTIONS(1850), - [anon_sym_DOT_DOT] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_yield] = ACTIONS(1852), - [anon_sym_move] = ACTIONS(1852), - [sym_integer_literal] = ACTIONS(1850), - [aux_sym_string_literal_token1] = ACTIONS(1850), - [sym_char_literal] = ACTIONS(1850), - [anon_sym_true] = ACTIONS(1852), - [anon_sym_false] = ACTIONS(1852), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1852), - [sym_super] = ACTIONS(1852), - [sym_crate] = ACTIONS(1852), - [sym_metavariable] = ACTIONS(1850), - [sym_raw_string_literal] = ACTIONS(1850), - [sym_float_literal] = ACTIONS(1850), + [ts_builtin_sym_end] = ACTIONS(1852), + [sym_identifier] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_macro_rules_BANG] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_LBRACK] = ACTIONS(1852), + [anon_sym_STAR] = ACTIONS(1852), + [anon_sym_u8] = ACTIONS(1854), + [anon_sym_i8] = ACTIONS(1854), + [anon_sym_u16] = ACTIONS(1854), + [anon_sym_i16] = ACTIONS(1854), + [anon_sym_u32] = ACTIONS(1854), + [anon_sym_i32] = ACTIONS(1854), + [anon_sym_u64] = ACTIONS(1854), + [anon_sym_i64] = ACTIONS(1854), + [anon_sym_u128] = ACTIONS(1854), + [anon_sym_i128] = ACTIONS(1854), + [anon_sym_isize] = ACTIONS(1854), + [anon_sym_usize] = ACTIONS(1854), + [anon_sym_f32] = ACTIONS(1854), + [anon_sym_f64] = ACTIONS(1854), + [anon_sym_bool] = ACTIONS(1854), + [anon_sym_str] = ACTIONS(1854), + [anon_sym_char] = ACTIONS(1854), + [anon_sym_SQUOTE] = ACTIONS(1854), + [anon_sym_async] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_default] = ACTIONS(1854), + [anon_sym_enum] = ACTIONS(1854), + [anon_sym_fn] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_impl] = ACTIONS(1854), + [anon_sym_let] = ACTIONS(1854), + [anon_sym_loop] = ACTIONS(1854), + [anon_sym_match] = ACTIONS(1854), + [anon_sym_mod] = ACTIONS(1854), + [anon_sym_pub] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_static] = ACTIONS(1854), + [anon_sym_struct] = ACTIONS(1854), + [anon_sym_trait] = ACTIONS(1854), + [anon_sym_type] = ACTIONS(1854), + [anon_sym_union] = ACTIONS(1854), + [anon_sym_unsafe] = ACTIONS(1854), + [anon_sym_use] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(1852), + [anon_sym_BANG] = ACTIONS(1852), + [anon_sym_extern] = ACTIONS(1854), + [anon_sym_LT] = ACTIONS(1852), + [anon_sym_COLON_COLON] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1852), + [anon_sym_DOT_DOT] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_yield] = ACTIONS(1854), + [anon_sym_move] = ACTIONS(1854), + [sym_integer_literal] = ACTIONS(1852), + [aux_sym_string_literal_token1] = ACTIONS(1852), + [sym_char_literal] = ACTIONS(1852), + [anon_sym_true] = ACTIONS(1854), + [anon_sym_false] = ACTIONS(1854), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1854), + [sym_super] = ACTIONS(1854), + [sym_crate] = ACTIONS(1854), + [sym_metavariable] = ACTIONS(1852), + [sym_raw_string_literal] = ACTIONS(1852), + [sym_float_literal] = ACTIONS(1852), [sym_block_comment] = ACTIONS(3), }, [444] = { - [ts_builtin_sym_end] = ACTIONS(1854), - [sym_identifier] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_macro_rules_BANG] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1854), - [anon_sym_u8] = ACTIONS(1856), - [anon_sym_i8] = ACTIONS(1856), - [anon_sym_u16] = ACTIONS(1856), - [anon_sym_i16] = ACTIONS(1856), - [anon_sym_u32] = ACTIONS(1856), - [anon_sym_i32] = ACTIONS(1856), - [anon_sym_u64] = ACTIONS(1856), - [anon_sym_i64] = ACTIONS(1856), - [anon_sym_u128] = ACTIONS(1856), - [anon_sym_i128] = ACTIONS(1856), - [anon_sym_isize] = ACTIONS(1856), - [anon_sym_usize] = ACTIONS(1856), - [anon_sym_f32] = ACTIONS(1856), - [anon_sym_f64] = ACTIONS(1856), - [anon_sym_bool] = ACTIONS(1856), - [anon_sym_str] = ACTIONS(1856), - [anon_sym_char] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_async] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_const] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_default] = ACTIONS(1856), - [anon_sym_enum] = ACTIONS(1856), - [anon_sym_fn] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_impl] = ACTIONS(1856), - [anon_sym_let] = ACTIONS(1856), - [anon_sym_loop] = ACTIONS(1856), - [anon_sym_match] = ACTIONS(1856), - [anon_sym_mod] = ACTIONS(1856), - [anon_sym_pub] = ACTIONS(1856), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1856), - [anon_sym_struct] = ACTIONS(1856), - [anon_sym_trait] = ACTIONS(1856), - [anon_sym_type] = ACTIONS(1856), - [anon_sym_union] = ACTIONS(1856), - [anon_sym_unsafe] = ACTIONS(1856), - [anon_sym_use] = ACTIONS(1856), - [anon_sym_while] = ACTIONS(1856), - [anon_sym_POUND] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1856), - [anon_sym_LT] = ACTIONS(1854), - [anon_sym_COLON_COLON] = ACTIONS(1854), - [anon_sym_AMP] = ACTIONS(1854), - [anon_sym_DOT_DOT] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_yield] = ACTIONS(1856), - [anon_sym_move] = ACTIONS(1856), - [sym_integer_literal] = ACTIONS(1854), - [aux_sym_string_literal_token1] = ACTIONS(1854), - [sym_char_literal] = ACTIONS(1854), - [anon_sym_true] = ACTIONS(1856), - [anon_sym_false] = ACTIONS(1856), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1856), - [sym_super] = ACTIONS(1856), - [sym_crate] = ACTIONS(1856), - [sym_metavariable] = ACTIONS(1854), - [sym_raw_string_literal] = ACTIONS(1854), - [sym_float_literal] = ACTIONS(1854), + [ts_builtin_sym_end] = ACTIONS(1856), + [sym_identifier] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_macro_rules_BANG] = ACTIONS(1856), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_STAR] = ACTIONS(1856), + [anon_sym_u8] = ACTIONS(1858), + [anon_sym_i8] = ACTIONS(1858), + [anon_sym_u16] = ACTIONS(1858), + [anon_sym_i16] = ACTIONS(1858), + [anon_sym_u32] = ACTIONS(1858), + [anon_sym_i32] = ACTIONS(1858), + [anon_sym_u64] = ACTIONS(1858), + [anon_sym_i64] = ACTIONS(1858), + [anon_sym_u128] = ACTIONS(1858), + [anon_sym_i128] = ACTIONS(1858), + [anon_sym_isize] = ACTIONS(1858), + [anon_sym_usize] = ACTIONS(1858), + [anon_sym_f32] = ACTIONS(1858), + [anon_sym_f64] = ACTIONS(1858), + [anon_sym_bool] = ACTIONS(1858), + [anon_sym_str] = ACTIONS(1858), + [anon_sym_char] = ACTIONS(1858), + [anon_sym_SQUOTE] = ACTIONS(1858), + [anon_sym_async] = ACTIONS(1858), + [anon_sym_break] = ACTIONS(1858), + [anon_sym_const] = ACTIONS(1858), + [anon_sym_continue] = ACTIONS(1858), + [anon_sym_default] = ACTIONS(1858), + [anon_sym_enum] = ACTIONS(1858), + [anon_sym_fn] = ACTIONS(1858), + [anon_sym_for] = ACTIONS(1858), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_impl] = ACTIONS(1858), + [anon_sym_let] = ACTIONS(1858), + [anon_sym_loop] = ACTIONS(1858), + [anon_sym_match] = ACTIONS(1858), + [anon_sym_mod] = ACTIONS(1858), + [anon_sym_pub] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_static] = ACTIONS(1858), + [anon_sym_struct] = ACTIONS(1858), + [anon_sym_trait] = ACTIONS(1858), + [anon_sym_type] = ACTIONS(1858), + [anon_sym_union] = ACTIONS(1858), + [anon_sym_unsafe] = ACTIONS(1858), + [anon_sym_use] = ACTIONS(1858), + [anon_sym_while] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(1856), + [anon_sym_BANG] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(1858), + [anon_sym_LT] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(1856), + [anon_sym_AMP] = ACTIONS(1856), + [anon_sym_DOT_DOT] = ACTIONS(1856), + [anon_sym_DASH] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_yield] = ACTIONS(1858), + [anon_sym_move] = ACTIONS(1858), + [sym_integer_literal] = ACTIONS(1856), + [aux_sym_string_literal_token1] = ACTIONS(1856), + [sym_char_literal] = ACTIONS(1856), + [anon_sym_true] = ACTIONS(1858), + [anon_sym_false] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1858), + [sym_super] = ACTIONS(1858), + [sym_crate] = ACTIONS(1858), + [sym_metavariable] = ACTIONS(1856), + [sym_raw_string_literal] = ACTIONS(1856), + [sym_float_literal] = ACTIONS(1856), [sym_block_comment] = ACTIONS(3), }, [445] = { - [ts_builtin_sym_end] = ACTIONS(1858), - [sym_identifier] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_macro_rules_BANG] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_STAR] = ACTIONS(1858), - [anon_sym_u8] = ACTIONS(1860), - [anon_sym_i8] = ACTIONS(1860), - [anon_sym_u16] = ACTIONS(1860), - [anon_sym_i16] = ACTIONS(1860), - [anon_sym_u32] = ACTIONS(1860), - [anon_sym_i32] = ACTIONS(1860), - [anon_sym_u64] = ACTIONS(1860), - [anon_sym_i64] = ACTIONS(1860), - [anon_sym_u128] = ACTIONS(1860), - [anon_sym_i128] = ACTIONS(1860), - [anon_sym_isize] = ACTIONS(1860), - [anon_sym_usize] = ACTIONS(1860), - [anon_sym_f32] = ACTIONS(1860), - [anon_sym_f64] = ACTIONS(1860), - [anon_sym_bool] = ACTIONS(1860), - [anon_sym_str] = ACTIONS(1860), - [anon_sym_char] = ACTIONS(1860), - [anon_sym_SQUOTE] = ACTIONS(1860), - [anon_sym_async] = ACTIONS(1860), - [anon_sym_break] = ACTIONS(1860), - [anon_sym_const] = ACTIONS(1860), - [anon_sym_continue] = ACTIONS(1860), - [anon_sym_default] = ACTIONS(1860), - [anon_sym_enum] = ACTIONS(1860), - [anon_sym_fn] = ACTIONS(1860), - [anon_sym_for] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_impl] = ACTIONS(1860), - [anon_sym_let] = ACTIONS(1860), - [anon_sym_loop] = ACTIONS(1860), - [anon_sym_match] = ACTIONS(1860), - [anon_sym_mod] = ACTIONS(1860), - [anon_sym_pub] = ACTIONS(1860), - [anon_sym_return] = ACTIONS(1860), - [anon_sym_static] = ACTIONS(1860), - [anon_sym_struct] = ACTIONS(1860), - [anon_sym_trait] = ACTIONS(1860), - [anon_sym_type] = ACTIONS(1860), - [anon_sym_union] = ACTIONS(1860), - [anon_sym_unsafe] = ACTIONS(1860), - [anon_sym_use] = ACTIONS(1860), - [anon_sym_while] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1858), - [anon_sym_extern] = ACTIONS(1860), - [anon_sym_LT] = ACTIONS(1858), - [anon_sym_COLON_COLON] = ACTIONS(1858), - [anon_sym_AMP] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_yield] = ACTIONS(1860), - [anon_sym_move] = ACTIONS(1860), - [sym_integer_literal] = ACTIONS(1858), - [aux_sym_string_literal_token1] = ACTIONS(1858), - [sym_char_literal] = ACTIONS(1858), - [anon_sym_true] = ACTIONS(1860), - [anon_sym_false] = ACTIONS(1860), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1860), - [sym_super] = ACTIONS(1860), - [sym_crate] = ACTIONS(1860), - [sym_metavariable] = ACTIONS(1858), - [sym_raw_string_literal] = ACTIONS(1858), - [sym_float_literal] = ACTIONS(1858), + [ts_builtin_sym_end] = ACTIONS(1860), + [sym_identifier] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_macro_rules_BANG] = ACTIONS(1860), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1860), + [anon_sym_RBRACE] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1860), + [anon_sym_u8] = ACTIONS(1862), + [anon_sym_i8] = ACTIONS(1862), + [anon_sym_u16] = ACTIONS(1862), + [anon_sym_i16] = ACTIONS(1862), + [anon_sym_u32] = ACTIONS(1862), + [anon_sym_i32] = ACTIONS(1862), + [anon_sym_u64] = ACTIONS(1862), + [anon_sym_i64] = ACTIONS(1862), + [anon_sym_u128] = ACTIONS(1862), + [anon_sym_i128] = ACTIONS(1862), + [anon_sym_isize] = ACTIONS(1862), + [anon_sym_usize] = ACTIONS(1862), + [anon_sym_f32] = ACTIONS(1862), + [anon_sym_f64] = ACTIONS(1862), + [anon_sym_bool] = ACTIONS(1862), + [anon_sym_str] = ACTIONS(1862), + [anon_sym_char] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_async] = ACTIONS(1862), + [anon_sym_break] = ACTIONS(1862), + [anon_sym_const] = ACTIONS(1862), + [anon_sym_continue] = ACTIONS(1862), + [anon_sym_default] = ACTIONS(1862), + [anon_sym_enum] = ACTIONS(1862), + [anon_sym_fn] = ACTIONS(1862), + [anon_sym_for] = ACTIONS(1862), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_impl] = ACTIONS(1862), + [anon_sym_let] = ACTIONS(1862), + [anon_sym_loop] = ACTIONS(1862), + [anon_sym_match] = ACTIONS(1862), + [anon_sym_mod] = ACTIONS(1862), + [anon_sym_pub] = ACTIONS(1862), + [anon_sym_return] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1862), + [anon_sym_struct] = ACTIONS(1862), + [anon_sym_trait] = ACTIONS(1862), + [anon_sym_type] = ACTIONS(1862), + [anon_sym_union] = ACTIONS(1862), + [anon_sym_unsafe] = ACTIONS(1862), + [anon_sym_use] = ACTIONS(1862), + [anon_sym_while] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(1860), + [anon_sym_BANG] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1862), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_COLON_COLON] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_yield] = ACTIONS(1862), + [anon_sym_move] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(1860), + [aux_sym_string_literal_token1] = ACTIONS(1860), + [sym_char_literal] = ACTIONS(1860), + [anon_sym_true] = ACTIONS(1862), + [anon_sym_false] = ACTIONS(1862), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1862), + [sym_super] = ACTIONS(1862), + [sym_crate] = ACTIONS(1862), + [sym_metavariable] = ACTIONS(1860), + [sym_raw_string_literal] = ACTIONS(1860), + [sym_float_literal] = ACTIONS(1860), [sym_block_comment] = ACTIONS(3), }, [446] = { - [ts_builtin_sym_end] = ACTIONS(1862), - [sym_identifier] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_macro_rules_BANG] = ACTIONS(1862), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1862), - [anon_sym_u8] = ACTIONS(1864), - [anon_sym_i8] = ACTIONS(1864), - [anon_sym_u16] = ACTIONS(1864), - [anon_sym_i16] = ACTIONS(1864), - [anon_sym_u32] = ACTIONS(1864), - [anon_sym_i32] = ACTIONS(1864), - [anon_sym_u64] = ACTIONS(1864), - [anon_sym_i64] = ACTIONS(1864), - [anon_sym_u128] = ACTIONS(1864), - [anon_sym_i128] = ACTIONS(1864), - [anon_sym_isize] = ACTIONS(1864), - [anon_sym_usize] = ACTIONS(1864), - [anon_sym_f32] = ACTIONS(1864), - [anon_sym_f64] = ACTIONS(1864), - [anon_sym_bool] = ACTIONS(1864), - [anon_sym_str] = ACTIONS(1864), - [anon_sym_char] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_async] = ACTIONS(1864), - [anon_sym_break] = ACTIONS(1864), - [anon_sym_const] = ACTIONS(1864), - [anon_sym_continue] = ACTIONS(1864), - [anon_sym_default] = ACTIONS(1864), - [anon_sym_enum] = ACTIONS(1864), - [anon_sym_fn] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1864), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_impl] = ACTIONS(1864), - [anon_sym_let] = ACTIONS(1864), - [anon_sym_loop] = ACTIONS(1864), - [anon_sym_match] = ACTIONS(1864), - [anon_sym_mod] = ACTIONS(1864), - [anon_sym_pub] = ACTIONS(1864), - [anon_sym_return] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1864), - [anon_sym_struct] = ACTIONS(1864), - [anon_sym_trait] = ACTIONS(1864), - [anon_sym_type] = ACTIONS(1864), - [anon_sym_union] = ACTIONS(1864), - [anon_sym_unsafe] = ACTIONS(1864), - [anon_sym_use] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_POUND] = ACTIONS(1862), - [anon_sym_BANG] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1864), - [anon_sym_LT] = ACTIONS(1862), - [anon_sym_COLON_COLON] = ACTIONS(1862), - [anon_sym_AMP] = ACTIONS(1862), - [anon_sym_DOT_DOT] = ACTIONS(1862), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_yield] = ACTIONS(1864), - [anon_sym_move] = ACTIONS(1864), - [sym_integer_literal] = ACTIONS(1862), - [aux_sym_string_literal_token1] = ACTIONS(1862), - [sym_char_literal] = ACTIONS(1862), - [anon_sym_true] = ACTIONS(1864), - [anon_sym_false] = ACTIONS(1864), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1864), - [sym_super] = ACTIONS(1864), - [sym_crate] = ACTIONS(1864), - [sym_metavariable] = ACTIONS(1862), - [sym_raw_string_literal] = ACTIONS(1862), - [sym_float_literal] = ACTIONS(1862), + [ts_builtin_sym_end] = ACTIONS(1864), + [sym_identifier] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1864), + [anon_sym_macro_rules_BANG] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(1864), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_STAR] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_async] = ACTIONS(1866), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_const] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1866), + [anon_sym_default] = ACTIONS(1866), + [anon_sym_enum] = ACTIONS(1866), + [anon_sym_fn] = ACTIONS(1866), + [anon_sym_for] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_impl] = ACTIONS(1866), + [anon_sym_let] = ACTIONS(1866), + [anon_sym_loop] = ACTIONS(1866), + [anon_sym_match] = ACTIONS(1866), + [anon_sym_mod] = ACTIONS(1866), + [anon_sym_pub] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_static] = ACTIONS(1866), + [anon_sym_struct] = ACTIONS(1866), + [anon_sym_trait] = ACTIONS(1866), + [anon_sym_type] = ACTIONS(1866), + [anon_sym_union] = ACTIONS(1866), + [anon_sym_unsafe] = ACTIONS(1866), + [anon_sym_use] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1864), + [anon_sym_extern] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1864), + [anon_sym_COLON_COLON] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1864), + [anon_sym_DOT_DOT] = ACTIONS(1864), + [anon_sym_DASH] = ACTIONS(1864), + [anon_sym_PIPE] = ACTIONS(1864), + [anon_sym_yield] = ACTIONS(1866), + [anon_sym_move] = ACTIONS(1866), + [sym_integer_literal] = ACTIONS(1864), + [aux_sym_string_literal_token1] = ACTIONS(1864), + [sym_char_literal] = ACTIONS(1864), + [anon_sym_true] = ACTIONS(1866), + [anon_sym_false] = ACTIONS(1866), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1866), + [sym_super] = ACTIONS(1866), + [sym_crate] = ACTIONS(1866), + [sym_metavariable] = ACTIONS(1864), + [sym_raw_string_literal] = ACTIONS(1864), + [sym_float_literal] = ACTIONS(1864), [sym_block_comment] = ACTIONS(3), }, [447] = { - [ts_builtin_sym_end] = ACTIONS(1866), - [sym_identifier] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_macro_rules_BANG] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1866), - [anon_sym_u8] = ACTIONS(1868), - [anon_sym_i8] = ACTIONS(1868), - [anon_sym_u16] = ACTIONS(1868), - [anon_sym_i16] = ACTIONS(1868), - [anon_sym_u32] = ACTIONS(1868), - [anon_sym_i32] = ACTIONS(1868), - [anon_sym_u64] = ACTIONS(1868), - [anon_sym_i64] = ACTIONS(1868), - [anon_sym_u128] = ACTIONS(1868), - [anon_sym_i128] = ACTIONS(1868), - [anon_sym_isize] = ACTIONS(1868), - [anon_sym_usize] = ACTIONS(1868), - [anon_sym_f32] = ACTIONS(1868), - [anon_sym_f64] = ACTIONS(1868), - [anon_sym_bool] = ACTIONS(1868), - [anon_sym_str] = ACTIONS(1868), - [anon_sym_char] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_async] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_const] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_default] = ACTIONS(1868), - [anon_sym_enum] = ACTIONS(1868), - [anon_sym_fn] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_impl] = ACTIONS(1868), - [anon_sym_let] = ACTIONS(1868), - [anon_sym_loop] = ACTIONS(1868), - [anon_sym_match] = ACTIONS(1868), - [anon_sym_mod] = ACTIONS(1868), - [anon_sym_pub] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1868), - [anon_sym_struct] = ACTIONS(1868), - [anon_sym_trait] = ACTIONS(1868), - [anon_sym_type] = ACTIONS(1868), - [anon_sym_union] = ACTIONS(1868), - [anon_sym_unsafe] = ACTIONS(1868), - [anon_sym_use] = ACTIONS(1868), - [anon_sym_while] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(1866), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1866), - [anon_sym_COLON_COLON] = ACTIONS(1866), - [anon_sym_AMP] = ACTIONS(1866), - [anon_sym_DOT_DOT] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_yield] = ACTIONS(1868), - [anon_sym_move] = ACTIONS(1868), - [sym_integer_literal] = ACTIONS(1866), - [aux_sym_string_literal_token1] = ACTIONS(1866), - [sym_char_literal] = ACTIONS(1866), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1868), - [sym_super] = ACTIONS(1868), - [sym_crate] = ACTIONS(1868), - [sym_metavariable] = ACTIONS(1866), - [sym_raw_string_literal] = ACTIONS(1866), - [sym_float_literal] = ACTIONS(1866), + [ts_builtin_sym_end] = ACTIONS(1868), + [sym_identifier] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_macro_rules_BANG] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1868), + [anon_sym_RBRACE] = ACTIONS(1868), + [anon_sym_LBRACK] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1868), + [anon_sym_u8] = ACTIONS(1870), + [anon_sym_i8] = ACTIONS(1870), + [anon_sym_u16] = ACTIONS(1870), + [anon_sym_i16] = ACTIONS(1870), + [anon_sym_u32] = ACTIONS(1870), + [anon_sym_i32] = ACTIONS(1870), + [anon_sym_u64] = ACTIONS(1870), + [anon_sym_i64] = ACTIONS(1870), + [anon_sym_u128] = ACTIONS(1870), + [anon_sym_i128] = ACTIONS(1870), + [anon_sym_isize] = ACTIONS(1870), + [anon_sym_usize] = ACTIONS(1870), + [anon_sym_f32] = ACTIONS(1870), + [anon_sym_f64] = ACTIONS(1870), + [anon_sym_bool] = ACTIONS(1870), + [anon_sym_str] = ACTIONS(1870), + [anon_sym_char] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_break] = ACTIONS(1870), + [anon_sym_const] = ACTIONS(1870), + [anon_sym_continue] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1870), + [anon_sym_enum] = ACTIONS(1870), + [anon_sym_fn] = ACTIONS(1870), + [anon_sym_for] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(1870), + [anon_sym_impl] = ACTIONS(1870), + [anon_sym_let] = ACTIONS(1870), + [anon_sym_loop] = ACTIONS(1870), + [anon_sym_match] = ACTIONS(1870), + [anon_sym_mod] = ACTIONS(1870), + [anon_sym_pub] = ACTIONS(1870), + [anon_sym_return] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1870), + [anon_sym_struct] = ACTIONS(1870), + [anon_sym_trait] = ACTIONS(1870), + [anon_sym_type] = ACTIONS(1870), + [anon_sym_union] = ACTIONS(1870), + [anon_sym_unsafe] = ACTIONS(1870), + [anon_sym_use] = ACTIONS(1870), + [anon_sym_while] = ACTIONS(1870), + [anon_sym_POUND] = ACTIONS(1868), + [anon_sym_BANG] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1870), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_COLON_COLON] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_DOT_DOT] = ACTIONS(1868), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_yield] = ACTIONS(1870), + [anon_sym_move] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(1868), + [aux_sym_string_literal_token1] = ACTIONS(1868), + [sym_char_literal] = ACTIONS(1868), + [anon_sym_true] = ACTIONS(1870), + [anon_sym_false] = ACTIONS(1870), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1870), + [sym_super] = ACTIONS(1870), + [sym_crate] = ACTIONS(1870), + [sym_metavariable] = ACTIONS(1868), + [sym_raw_string_literal] = ACTIONS(1868), + [sym_float_literal] = ACTIONS(1868), [sym_block_comment] = ACTIONS(3), }, [448] = { - [ts_builtin_sym_end] = ACTIONS(1870), - [sym_identifier] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_macro_rules_BANG] = ACTIONS(1870), - [anon_sym_LPAREN] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_LBRACK] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1870), - [anon_sym_u8] = ACTIONS(1872), - [anon_sym_i8] = ACTIONS(1872), - [anon_sym_u16] = ACTIONS(1872), - [anon_sym_i16] = ACTIONS(1872), - [anon_sym_u32] = ACTIONS(1872), - [anon_sym_i32] = ACTIONS(1872), - [anon_sym_u64] = ACTIONS(1872), - [anon_sym_i64] = ACTIONS(1872), - [anon_sym_u128] = ACTIONS(1872), - [anon_sym_i128] = ACTIONS(1872), - [anon_sym_isize] = ACTIONS(1872), - [anon_sym_usize] = ACTIONS(1872), - [anon_sym_f32] = ACTIONS(1872), - [anon_sym_f64] = ACTIONS(1872), - [anon_sym_bool] = ACTIONS(1872), - [anon_sym_str] = ACTIONS(1872), - [anon_sym_char] = ACTIONS(1872), - [anon_sym_SQUOTE] = ACTIONS(1872), - [anon_sym_async] = ACTIONS(1872), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_const] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1872), - [anon_sym_default] = ACTIONS(1872), - [anon_sym_enum] = ACTIONS(1872), - [anon_sym_fn] = ACTIONS(1872), - [anon_sym_for] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(1872), - [anon_sym_impl] = ACTIONS(1872), - [anon_sym_let] = ACTIONS(1872), - [anon_sym_loop] = ACTIONS(1872), - [anon_sym_match] = ACTIONS(1872), - [anon_sym_mod] = ACTIONS(1872), - [anon_sym_pub] = ACTIONS(1872), - [anon_sym_return] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1872), - [anon_sym_struct] = ACTIONS(1872), - [anon_sym_trait] = ACTIONS(1872), - [anon_sym_type] = ACTIONS(1872), - [anon_sym_union] = ACTIONS(1872), - [anon_sym_unsafe] = ACTIONS(1872), - [anon_sym_use] = ACTIONS(1872), - [anon_sym_while] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(1870), - [anon_sym_BANG] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(1872), - [anon_sym_LT] = ACTIONS(1870), - [anon_sym_COLON_COLON] = ACTIONS(1870), - [anon_sym_AMP] = ACTIONS(1870), - [anon_sym_DOT_DOT] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_yield] = ACTIONS(1872), - [anon_sym_move] = ACTIONS(1872), - [sym_integer_literal] = ACTIONS(1870), - [aux_sym_string_literal_token1] = ACTIONS(1870), - [sym_char_literal] = ACTIONS(1870), - [anon_sym_true] = ACTIONS(1872), - [anon_sym_false] = ACTIONS(1872), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1872), - [sym_super] = ACTIONS(1872), - [sym_crate] = ACTIONS(1872), - [sym_metavariable] = ACTIONS(1870), - [sym_raw_string_literal] = ACTIONS(1870), - [sym_float_literal] = ACTIONS(1870), + [ts_builtin_sym_end] = ACTIONS(1872), + [sym_identifier] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_macro_rules_BANG] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_LBRACK] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_u8] = ACTIONS(1874), + [anon_sym_i8] = ACTIONS(1874), + [anon_sym_u16] = ACTIONS(1874), + [anon_sym_i16] = ACTIONS(1874), + [anon_sym_u32] = ACTIONS(1874), + [anon_sym_i32] = ACTIONS(1874), + [anon_sym_u64] = ACTIONS(1874), + [anon_sym_i64] = ACTIONS(1874), + [anon_sym_u128] = ACTIONS(1874), + [anon_sym_i128] = ACTIONS(1874), + [anon_sym_isize] = ACTIONS(1874), + [anon_sym_usize] = ACTIONS(1874), + [anon_sym_f32] = ACTIONS(1874), + [anon_sym_f64] = ACTIONS(1874), + [anon_sym_bool] = ACTIONS(1874), + [anon_sym_str] = ACTIONS(1874), + [anon_sym_char] = ACTIONS(1874), + [anon_sym_SQUOTE] = ACTIONS(1874), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_break] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1874), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_default] = ACTIONS(1874), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_fn] = ACTIONS(1874), + [anon_sym_for] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_impl] = ACTIONS(1874), + [anon_sym_let] = ACTIONS(1874), + [anon_sym_loop] = ACTIONS(1874), + [anon_sym_match] = ACTIONS(1874), + [anon_sym_mod] = ACTIONS(1874), + [anon_sym_pub] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_static] = ACTIONS(1874), + [anon_sym_struct] = ACTIONS(1874), + [anon_sym_trait] = ACTIONS(1874), + [anon_sym_type] = ACTIONS(1874), + [anon_sym_union] = ACTIONS(1874), + [anon_sym_unsafe] = ACTIONS(1874), + [anon_sym_use] = ACTIONS(1874), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(1872), + [anon_sym_BANG] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1872), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1874), + [anon_sym_move] = ACTIONS(1874), + [sym_integer_literal] = ACTIONS(1872), + [aux_sym_string_literal_token1] = ACTIONS(1872), + [sym_char_literal] = ACTIONS(1872), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1874), + [sym_super] = ACTIONS(1874), + [sym_crate] = ACTIONS(1874), + [sym_metavariable] = ACTIONS(1872), + [sym_raw_string_literal] = ACTIONS(1872), + [sym_float_literal] = ACTIONS(1872), [sym_block_comment] = ACTIONS(3), }, [449] = { - [ts_builtin_sym_end] = ACTIONS(1874), - [sym_identifier] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_macro_rules_BANG] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_u8] = ACTIONS(1876), - [anon_sym_i8] = ACTIONS(1876), - [anon_sym_u16] = ACTIONS(1876), - [anon_sym_i16] = ACTIONS(1876), - [anon_sym_u32] = ACTIONS(1876), - [anon_sym_i32] = ACTIONS(1876), - [anon_sym_u64] = ACTIONS(1876), - [anon_sym_i64] = ACTIONS(1876), - [anon_sym_u128] = ACTIONS(1876), - [anon_sym_i128] = ACTIONS(1876), - [anon_sym_isize] = ACTIONS(1876), - [anon_sym_usize] = ACTIONS(1876), - [anon_sym_f32] = ACTIONS(1876), - [anon_sym_f64] = ACTIONS(1876), - [anon_sym_bool] = ACTIONS(1876), - [anon_sym_str] = ACTIONS(1876), - [anon_sym_char] = ACTIONS(1876), - [anon_sym_SQUOTE] = ACTIONS(1876), - [anon_sym_async] = ACTIONS(1876), - [anon_sym_break] = ACTIONS(1876), - [anon_sym_const] = ACTIONS(1876), - [anon_sym_continue] = ACTIONS(1876), - [anon_sym_default] = ACTIONS(1876), - [anon_sym_enum] = ACTIONS(1876), - [anon_sym_fn] = ACTIONS(1876), - [anon_sym_for] = ACTIONS(1876), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_impl] = ACTIONS(1876), - [anon_sym_let] = ACTIONS(1876), - [anon_sym_loop] = ACTIONS(1876), - [anon_sym_match] = ACTIONS(1876), - [anon_sym_mod] = ACTIONS(1876), - [anon_sym_pub] = ACTIONS(1876), - [anon_sym_return] = ACTIONS(1876), - [anon_sym_static] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1876), - [anon_sym_trait] = ACTIONS(1876), - [anon_sym_type] = ACTIONS(1876), - [anon_sym_union] = ACTIONS(1876), - [anon_sym_unsafe] = ACTIONS(1876), - [anon_sym_use] = ACTIONS(1876), - [anon_sym_while] = ACTIONS(1876), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_BANG] = ACTIONS(1874), - [anon_sym_extern] = ACTIONS(1876), - [anon_sym_LT] = ACTIONS(1874), - [anon_sym_COLON_COLON] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1874), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_yield] = ACTIONS(1876), - [anon_sym_move] = ACTIONS(1876), - [sym_integer_literal] = ACTIONS(1874), - [aux_sym_string_literal_token1] = ACTIONS(1874), - [sym_char_literal] = ACTIONS(1874), - [anon_sym_true] = ACTIONS(1876), - [anon_sym_false] = ACTIONS(1876), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1876), - [sym_super] = ACTIONS(1876), - [sym_crate] = ACTIONS(1876), - [sym_metavariable] = ACTIONS(1874), - [sym_raw_string_literal] = ACTIONS(1874), - [sym_float_literal] = ACTIONS(1874), + [ts_builtin_sym_end] = ACTIONS(1876), + [sym_identifier] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_macro_rules_BANG] = ACTIONS(1876), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1876), + [anon_sym_RBRACE] = ACTIONS(1876), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(1876), + [anon_sym_u8] = ACTIONS(1878), + [anon_sym_i8] = ACTIONS(1878), + [anon_sym_u16] = ACTIONS(1878), + [anon_sym_i16] = ACTIONS(1878), + [anon_sym_u32] = ACTIONS(1878), + [anon_sym_i32] = ACTIONS(1878), + [anon_sym_u64] = ACTIONS(1878), + [anon_sym_i64] = ACTIONS(1878), + [anon_sym_u128] = ACTIONS(1878), + [anon_sym_i128] = ACTIONS(1878), + [anon_sym_isize] = ACTIONS(1878), + [anon_sym_usize] = ACTIONS(1878), + [anon_sym_f32] = ACTIONS(1878), + [anon_sym_f64] = ACTIONS(1878), + [anon_sym_bool] = ACTIONS(1878), + [anon_sym_str] = ACTIONS(1878), + [anon_sym_char] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_async] = ACTIONS(1878), + [anon_sym_break] = ACTIONS(1878), + [anon_sym_const] = ACTIONS(1878), + [anon_sym_continue] = ACTIONS(1878), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_enum] = ACTIONS(1878), + [anon_sym_fn] = ACTIONS(1878), + [anon_sym_for] = ACTIONS(1878), + [anon_sym_if] = ACTIONS(1878), + [anon_sym_impl] = ACTIONS(1878), + [anon_sym_let] = ACTIONS(1878), + [anon_sym_loop] = ACTIONS(1878), + [anon_sym_match] = ACTIONS(1878), + [anon_sym_mod] = ACTIONS(1878), + [anon_sym_pub] = ACTIONS(1878), + [anon_sym_return] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1878), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_trait] = ACTIONS(1878), + [anon_sym_type] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_unsafe] = ACTIONS(1878), + [anon_sym_use] = ACTIONS(1878), + [anon_sym_while] = ACTIONS(1878), + [anon_sym_POUND] = ACTIONS(1876), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1876), + [anon_sym_AMP] = ACTIONS(1876), + [anon_sym_DOT_DOT] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1876), + [anon_sym_yield] = ACTIONS(1878), + [anon_sym_move] = ACTIONS(1878), + [sym_integer_literal] = ACTIONS(1876), + [aux_sym_string_literal_token1] = ACTIONS(1876), + [sym_char_literal] = ACTIONS(1876), + [anon_sym_true] = ACTIONS(1878), + [anon_sym_false] = ACTIONS(1878), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1878), + [sym_super] = ACTIONS(1878), + [sym_crate] = ACTIONS(1878), + [sym_metavariable] = ACTIONS(1876), + [sym_raw_string_literal] = ACTIONS(1876), + [sym_float_literal] = ACTIONS(1876), [sym_block_comment] = ACTIONS(3), }, [450] = { - [ts_builtin_sym_end] = ACTIONS(1878), - [sym_identifier] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_macro_rules_BANG] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1878), - [anon_sym_u8] = ACTIONS(1880), - [anon_sym_i8] = ACTIONS(1880), - [anon_sym_u16] = ACTIONS(1880), - [anon_sym_i16] = ACTIONS(1880), - [anon_sym_u32] = ACTIONS(1880), - [anon_sym_i32] = ACTIONS(1880), - [anon_sym_u64] = ACTIONS(1880), - [anon_sym_i64] = ACTIONS(1880), - [anon_sym_u128] = ACTIONS(1880), - [anon_sym_i128] = ACTIONS(1880), - [anon_sym_isize] = ACTIONS(1880), - [anon_sym_usize] = ACTIONS(1880), - [anon_sym_f32] = ACTIONS(1880), - [anon_sym_f64] = ACTIONS(1880), - [anon_sym_bool] = ACTIONS(1880), - [anon_sym_str] = ACTIONS(1880), - [anon_sym_char] = ACTIONS(1880), - [anon_sym_SQUOTE] = ACTIONS(1880), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_const] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_default] = ACTIONS(1880), - [anon_sym_enum] = ACTIONS(1880), - [anon_sym_fn] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1880), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_impl] = ACTIONS(1880), - [anon_sym_let] = ACTIONS(1880), - [anon_sym_loop] = ACTIONS(1880), - [anon_sym_match] = ACTIONS(1880), - [anon_sym_mod] = ACTIONS(1880), - [anon_sym_pub] = ACTIONS(1880), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_static] = ACTIONS(1880), - [anon_sym_struct] = ACTIONS(1880), - [anon_sym_trait] = ACTIONS(1880), - [anon_sym_type] = ACTIONS(1880), - [anon_sym_union] = ACTIONS(1880), - [anon_sym_unsafe] = ACTIONS(1880), - [anon_sym_use] = ACTIONS(1880), - [anon_sym_while] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(1878), - [anon_sym_BANG] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(1880), - [anon_sym_LT] = ACTIONS(1878), - [anon_sym_COLON_COLON] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1878), - [anon_sym_DOT_DOT] = ACTIONS(1878), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_yield] = ACTIONS(1880), - [anon_sym_move] = ACTIONS(1880), - [sym_integer_literal] = ACTIONS(1878), - [aux_sym_string_literal_token1] = ACTIONS(1878), - [sym_char_literal] = ACTIONS(1878), - [anon_sym_true] = ACTIONS(1880), - [anon_sym_false] = ACTIONS(1880), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1880), - [sym_super] = ACTIONS(1880), - [sym_crate] = ACTIONS(1880), - [sym_metavariable] = ACTIONS(1878), - [sym_raw_string_literal] = ACTIONS(1878), - [sym_float_literal] = ACTIONS(1878), + [ts_builtin_sym_end] = ACTIONS(1880), + [sym_identifier] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_macro_rules_BANG] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_STAR] = ACTIONS(1880), + [anon_sym_u8] = ACTIONS(1882), + [anon_sym_i8] = ACTIONS(1882), + [anon_sym_u16] = ACTIONS(1882), + [anon_sym_i16] = ACTIONS(1882), + [anon_sym_u32] = ACTIONS(1882), + [anon_sym_i32] = ACTIONS(1882), + [anon_sym_u64] = ACTIONS(1882), + [anon_sym_i64] = ACTIONS(1882), + [anon_sym_u128] = ACTIONS(1882), + [anon_sym_i128] = ACTIONS(1882), + [anon_sym_isize] = ACTIONS(1882), + [anon_sym_usize] = ACTIONS(1882), + [anon_sym_f32] = ACTIONS(1882), + [anon_sym_f64] = ACTIONS(1882), + [anon_sym_bool] = ACTIONS(1882), + [anon_sym_str] = ACTIONS(1882), + [anon_sym_char] = ACTIONS(1882), + [anon_sym_SQUOTE] = ACTIONS(1882), + [anon_sym_async] = ACTIONS(1882), + [anon_sym_break] = ACTIONS(1882), + [anon_sym_const] = ACTIONS(1882), + [anon_sym_continue] = ACTIONS(1882), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_enum] = ACTIONS(1882), + [anon_sym_fn] = ACTIONS(1882), + [anon_sym_for] = ACTIONS(1882), + [anon_sym_if] = ACTIONS(1882), + [anon_sym_impl] = ACTIONS(1882), + [anon_sym_let] = ACTIONS(1882), + [anon_sym_loop] = ACTIONS(1882), + [anon_sym_match] = ACTIONS(1882), + [anon_sym_mod] = ACTIONS(1882), + [anon_sym_pub] = ACTIONS(1882), + [anon_sym_return] = ACTIONS(1882), + [anon_sym_static] = ACTIONS(1882), + [anon_sym_struct] = ACTIONS(1882), + [anon_sym_trait] = ACTIONS(1882), + [anon_sym_type] = ACTIONS(1882), + [anon_sym_union] = ACTIONS(1882), + [anon_sym_unsafe] = ACTIONS(1882), + [anon_sym_use] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1882), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1880), + [anon_sym_extern] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_AMP] = ACTIONS(1880), + [anon_sym_DOT_DOT] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_yield] = ACTIONS(1882), + [anon_sym_move] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(1880), + [aux_sym_string_literal_token1] = ACTIONS(1880), + [sym_char_literal] = ACTIONS(1880), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1882), + [sym_super] = ACTIONS(1882), + [sym_crate] = ACTIONS(1882), + [sym_metavariable] = ACTIONS(1880), + [sym_raw_string_literal] = ACTIONS(1880), + [sym_float_literal] = ACTIONS(1880), [sym_block_comment] = ACTIONS(3), }, [451] = { - [ts_builtin_sym_end] = ACTIONS(1882), - [sym_identifier] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_macro_rules_BANG] = ACTIONS(1882), - [anon_sym_LPAREN] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1882), - [anon_sym_u8] = ACTIONS(1884), - [anon_sym_i8] = ACTIONS(1884), - [anon_sym_u16] = ACTIONS(1884), - [anon_sym_i16] = ACTIONS(1884), - [anon_sym_u32] = ACTIONS(1884), - [anon_sym_i32] = ACTIONS(1884), - [anon_sym_u64] = ACTIONS(1884), - [anon_sym_i64] = ACTIONS(1884), - [anon_sym_u128] = ACTIONS(1884), - [anon_sym_i128] = ACTIONS(1884), - [anon_sym_isize] = ACTIONS(1884), - [anon_sym_usize] = ACTIONS(1884), - [anon_sym_f32] = ACTIONS(1884), - [anon_sym_f64] = ACTIONS(1884), - [anon_sym_bool] = ACTIONS(1884), - [anon_sym_str] = ACTIONS(1884), - [anon_sym_char] = ACTIONS(1884), - [anon_sym_SQUOTE] = ACTIONS(1884), - [anon_sym_async] = ACTIONS(1884), - [anon_sym_break] = ACTIONS(1884), - [anon_sym_const] = ACTIONS(1884), - [anon_sym_continue] = ACTIONS(1884), - [anon_sym_default] = ACTIONS(1884), - [anon_sym_enum] = ACTIONS(1884), - [anon_sym_fn] = ACTIONS(1884), - [anon_sym_for] = ACTIONS(1884), - [anon_sym_if] = ACTIONS(1884), - [anon_sym_impl] = ACTIONS(1884), - [anon_sym_let] = ACTIONS(1884), - [anon_sym_loop] = ACTIONS(1884), - [anon_sym_match] = ACTIONS(1884), - [anon_sym_mod] = ACTIONS(1884), - [anon_sym_pub] = ACTIONS(1884), - [anon_sym_return] = ACTIONS(1884), - [anon_sym_static] = ACTIONS(1884), - [anon_sym_struct] = ACTIONS(1884), - [anon_sym_trait] = ACTIONS(1884), - [anon_sym_type] = ACTIONS(1884), - [anon_sym_union] = ACTIONS(1884), - [anon_sym_unsafe] = ACTIONS(1884), - [anon_sym_use] = ACTIONS(1884), - [anon_sym_while] = ACTIONS(1884), - [anon_sym_POUND] = ACTIONS(1882), - [anon_sym_BANG] = ACTIONS(1882), - [anon_sym_extern] = ACTIONS(1884), - [anon_sym_LT] = ACTIONS(1882), - [anon_sym_COLON_COLON] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1882), - [anon_sym_DOT_DOT] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_yield] = ACTIONS(1884), - [anon_sym_move] = ACTIONS(1884), - [sym_integer_literal] = ACTIONS(1882), - [aux_sym_string_literal_token1] = ACTIONS(1882), - [sym_char_literal] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(1884), - [anon_sym_false] = ACTIONS(1884), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1884), - [sym_super] = ACTIONS(1884), - [sym_crate] = ACTIONS(1884), - [sym_metavariable] = ACTIONS(1882), - [sym_raw_string_literal] = ACTIONS(1882), - [sym_float_literal] = ACTIONS(1882), + [ts_builtin_sym_end] = ACTIONS(1884), + [sym_identifier] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_macro_rules_BANG] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_u8] = ACTIONS(1886), + [anon_sym_i8] = ACTIONS(1886), + [anon_sym_u16] = ACTIONS(1886), + [anon_sym_i16] = ACTIONS(1886), + [anon_sym_u32] = ACTIONS(1886), + [anon_sym_i32] = ACTIONS(1886), + [anon_sym_u64] = ACTIONS(1886), + [anon_sym_i64] = ACTIONS(1886), + [anon_sym_u128] = ACTIONS(1886), + [anon_sym_i128] = ACTIONS(1886), + [anon_sym_isize] = ACTIONS(1886), + [anon_sym_usize] = ACTIONS(1886), + [anon_sym_f32] = ACTIONS(1886), + [anon_sym_f64] = ACTIONS(1886), + [anon_sym_bool] = ACTIONS(1886), + [anon_sym_str] = ACTIONS(1886), + [anon_sym_char] = ACTIONS(1886), + [anon_sym_SQUOTE] = ACTIONS(1886), + [anon_sym_async] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_default] = ACTIONS(1886), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_impl] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1886), + [anon_sym_loop] = ACTIONS(1886), + [anon_sym_match] = ACTIONS(1886), + [anon_sym_mod] = ACTIONS(1886), + [anon_sym_pub] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_static] = ACTIONS(1886), + [anon_sym_struct] = ACTIONS(1886), + [anon_sym_trait] = ACTIONS(1886), + [anon_sym_type] = ACTIONS(1886), + [anon_sym_union] = ACTIONS(1886), + [anon_sym_unsafe] = ACTIONS(1886), + [anon_sym_use] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_extern] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_COLON_COLON] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_yield] = ACTIONS(1886), + [anon_sym_move] = ACTIONS(1886), + [sym_integer_literal] = ACTIONS(1884), + [aux_sym_string_literal_token1] = ACTIONS(1884), + [sym_char_literal] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1886), + [anon_sym_false] = ACTIONS(1886), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1886), + [sym_super] = ACTIONS(1886), + [sym_crate] = ACTIONS(1886), + [sym_metavariable] = ACTIONS(1884), + [sym_raw_string_literal] = ACTIONS(1884), + [sym_float_literal] = ACTIONS(1884), [sym_block_comment] = ACTIONS(3), }, [452] = { - [ts_builtin_sym_end] = ACTIONS(1886), - [sym_identifier] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_macro_rules_BANG] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_u8] = ACTIONS(1888), - [anon_sym_i8] = ACTIONS(1888), - [anon_sym_u16] = ACTIONS(1888), - [anon_sym_i16] = ACTIONS(1888), - [anon_sym_u32] = ACTIONS(1888), - [anon_sym_i32] = ACTIONS(1888), - [anon_sym_u64] = ACTIONS(1888), - [anon_sym_i64] = ACTIONS(1888), - [anon_sym_u128] = ACTIONS(1888), - [anon_sym_i128] = ACTIONS(1888), - [anon_sym_isize] = ACTIONS(1888), - [anon_sym_usize] = ACTIONS(1888), - [anon_sym_f32] = ACTIONS(1888), - [anon_sym_f64] = ACTIONS(1888), - [anon_sym_bool] = ACTIONS(1888), - [anon_sym_str] = ACTIONS(1888), - [anon_sym_char] = ACTIONS(1888), - [anon_sym_SQUOTE] = ACTIONS(1888), - [anon_sym_async] = ACTIONS(1888), - [anon_sym_break] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(1888), - [anon_sym_continue] = ACTIONS(1888), - [anon_sym_default] = ACTIONS(1888), - [anon_sym_enum] = ACTIONS(1888), - [anon_sym_fn] = ACTIONS(1888), - [anon_sym_for] = ACTIONS(1888), - [anon_sym_if] = ACTIONS(1888), - [anon_sym_impl] = ACTIONS(1888), - [anon_sym_let] = ACTIONS(1888), - [anon_sym_loop] = ACTIONS(1888), - [anon_sym_match] = ACTIONS(1888), - [anon_sym_mod] = ACTIONS(1888), - [anon_sym_pub] = ACTIONS(1888), - [anon_sym_return] = ACTIONS(1888), - [anon_sym_static] = ACTIONS(1888), - [anon_sym_struct] = ACTIONS(1888), - [anon_sym_trait] = ACTIONS(1888), - [anon_sym_type] = ACTIONS(1888), - [anon_sym_union] = ACTIONS(1888), - [anon_sym_unsafe] = ACTIONS(1888), - [anon_sym_use] = ACTIONS(1888), - [anon_sym_while] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_extern] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_COLON_COLON] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_yield] = ACTIONS(1888), - [anon_sym_move] = ACTIONS(1888), - [sym_integer_literal] = ACTIONS(1886), - [aux_sym_string_literal_token1] = ACTIONS(1886), - [sym_char_literal] = ACTIONS(1886), - [anon_sym_true] = ACTIONS(1888), - [anon_sym_false] = ACTIONS(1888), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1888), - [sym_super] = ACTIONS(1888), - [sym_crate] = ACTIONS(1888), - [sym_metavariable] = ACTIONS(1886), - [sym_raw_string_literal] = ACTIONS(1886), - [sym_float_literal] = ACTIONS(1886), + [ts_builtin_sym_end] = ACTIONS(1888), + [sym_identifier] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_macro_rules_BANG] = ACTIONS(1888), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1888), + [anon_sym_u8] = ACTIONS(1890), + [anon_sym_i8] = ACTIONS(1890), + [anon_sym_u16] = ACTIONS(1890), + [anon_sym_i16] = ACTIONS(1890), + [anon_sym_u32] = ACTIONS(1890), + [anon_sym_i32] = ACTIONS(1890), + [anon_sym_u64] = ACTIONS(1890), + [anon_sym_i64] = ACTIONS(1890), + [anon_sym_u128] = ACTIONS(1890), + [anon_sym_i128] = ACTIONS(1890), + [anon_sym_isize] = ACTIONS(1890), + [anon_sym_usize] = ACTIONS(1890), + [anon_sym_f32] = ACTIONS(1890), + [anon_sym_f64] = ACTIONS(1890), + [anon_sym_bool] = ACTIONS(1890), + [anon_sym_str] = ACTIONS(1890), + [anon_sym_char] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_enum] = ACTIONS(1890), + [anon_sym_fn] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_impl] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_mod] = ACTIONS(1890), + [anon_sym_pub] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_trait] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1890), + [anon_sym_unsafe] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_COLON_COLON] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1888), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_yield] = ACTIONS(1890), + [anon_sym_move] = ACTIONS(1890), + [sym_integer_literal] = ACTIONS(1888), + [aux_sym_string_literal_token1] = ACTIONS(1888), + [sym_char_literal] = ACTIONS(1888), + [anon_sym_true] = ACTIONS(1890), + [anon_sym_false] = ACTIONS(1890), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1890), + [sym_super] = ACTIONS(1890), + [sym_crate] = ACTIONS(1890), + [sym_metavariable] = ACTIONS(1888), + [sym_raw_string_literal] = ACTIONS(1888), + [sym_float_literal] = ACTIONS(1888), [sym_block_comment] = ACTIONS(3), }, [453] = { - [ts_builtin_sym_end] = ACTIONS(1890), - [sym_identifier] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_macro_rules_BANG] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1890), - [anon_sym_u8] = ACTIONS(1892), - [anon_sym_i8] = ACTIONS(1892), - [anon_sym_u16] = ACTIONS(1892), - [anon_sym_i16] = ACTIONS(1892), - [anon_sym_u32] = ACTIONS(1892), - [anon_sym_i32] = ACTIONS(1892), - [anon_sym_u64] = ACTIONS(1892), - [anon_sym_i64] = ACTIONS(1892), - [anon_sym_u128] = ACTIONS(1892), - [anon_sym_i128] = ACTIONS(1892), - [anon_sym_isize] = ACTIONS(1892), - [anon_sym_usize] = ACTIONS(1892), - [anon_sym_f32] = ACTIONS(1892), - [anon_sym_f64] = ACTIONS(1892), - [anon_sym_bool] = ACTIONS(1892), - [anon_sym_str] = ACTIONS(1892), - [anon_sym_char] = ACTIONS(1892), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_async] = ACTIONS(1892), - [anon_sym_break] = ACTIONS(1892), - [anon_sym_const] = ACTIONS(1892), - [anon_sym_continue] = ACTIONS(1892), - [anon_sym_default] = ACTIONS(1892), - [anon_sym_enum] = ACTIONS(1892), - [anon_sym_fn] = ACTIONS(1892), - [anon_sym_for] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_impl] = ACTIONS(1892), - [anon_sym_let] = ACTIONS(1892), - [anon_sym_loop] = ACTIONS(1892), - [anon_sym_match] = ACTIONS(1892), - [anon_sym_mod] = ACTIONS(1892), - [anon_sym_pub] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1892), - [anon_sym_struct] = ACTIONS(1892), - [anon_sym_trait] = ACTIONS(1892), - [anon_sym_type] = ACTIONS(1892), - [anon_sym_union] = ACTIONS(1892), - [anon_sym_unsafe] = ACTIONS(1892), - [anon_sym_use] = ACTIONS(1892), - [anon_sym_while] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1892), - [anon_sym_LT] = ACTIONS(1890), - [anon_sym_COLON_COLON] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_DOT_DOT] = ACTIONS(1890), - [anon_sym_DASH] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_yield] = ACTIONS(1892), - [anon_sym_move] = ACTIONS(1892), - [sym_integer_literal] = ACTIONS(1890), - [aux_sym_string_literal_token1] = ACTIONS(1890), - [sym_char_literal] = ACTIONS(1890), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1892), - [sym_super] = ACTIONS(1892), - [sym_crate] = ACTIONS(1892), - [sym_metavariable] = ACTIONS(1890), - [sym_raw_string_literal] = ACTIONS(1890), - [sym_float_literal] = ACTIONS(1890), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_identifier] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_macro_rules_BANG] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1892), + [anon_sym_u8] = ACTIONS(1894), + [anon_sym_i8] = ACTIONS(1894), + [anon_sym_u16] = ACTIONS(1894), + [anon_sym_i16] = ACTIONS(1894), + [anon_sym_u32] = ACTIONS(1894), + [anon_sym_i32] = ACTIONS(1894), + [anon_sym_u64] = ACTIONS(1894), + [anon_sym_i64] = ACTIONS(1894), + [anon_sym_u128] = ACTIONS(1894), + [anon_sym_i128] = ACTIONS(1894), + [anon_sym_isize] = ACTIONS(1894), + [anon_sym_usize] = ACTIONS(1894), + [anon_sym_f32] = ACTIONS(1894), + [anon_sym_f64] = ACTIONS(1894), + [anon_sym_bool] = ACTIONS(1894), + [anon_sym_str] = ACTIONS(1894), + [anon_sym_char] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_async] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1894), + [anon_sym_continue] = ACTIONS(1894), + [anon_sym_default] = ACTIONS(1894), + [anon_sym_enum] = ACTIONS(1894), + [anon_sym_fn] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_impl] = ACTIONS(1894), + [anon_sym_let] = ACTIONS(1894), + [anon_sym_loop] = ACTIONS(1894), + [anon_sym_match] = ACTIONS(1894), + [anon_sym_mod] = ACTIONS(1894), + [anon_sym_pub] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_static] = ACTIONS(1894), + [anon_sym_struct] = ACTIONS(1894), + [anon_sym_trait] = ACTIONS(1894), + [anon_sym_type] = ACTIONS(1894), + [anon_sym_union] = ACTIONS(1894), + [anon_sym_unsafe] = ACTIONS(1894), + [anon_sym_use] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_POUND] = ACTIONS(1892), + [anon_sym_BANG] = ACTIONS(1892), + [anon_sym_extern] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_COLON_COLON] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_yield] = ACTIONS(1894), + [anon_sym_move] = ACTIONS(1894), + [sym_integer_literal] = ACTIONS(1892), + [aux_sym_string_literal_token1] = ACTIONS(1892), + [sym_char_literal] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1894), + [sym_super] = ACTIONS(1894), + [sym_crate] = ACTIONS(1894), + [sym_metavariable] = ACTIONS(1892), + [sym_raw_string_literal] = ACTIONS(1892), + [sym_float_literal] = ACTIONS(1892), [sym_block_comment] = ACTIONS(3), }, [454] = { - [ts_builtin_sym_end] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1894), - [anon_sym_macro_rules_BANG] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1894), - [anon_sym_u8] = ACTIONS(1896), - [anon_sym_i8] = ACTIONS(1896), - [anon_sym_u16] = ACTIONS(1896), - [anon_sym_i16] = ACTIONS(1896), - [anon_sym_u32] = ACTIONS(1896), - [anon_sym_i32] = ACTIONS(1896), - [anon_sym_u64] = ACTIONS(1896), - [anon_sym_i64] = ACTIONS(1896), - [anon_sym_u128] = ACTIONS(1896), - [anon_sym_i128] = ACTIONS(1896), - [anon_sym_isize] = ACTIONS(1896), - [anon_sym_usize] = ACTIONS(1896), - [anon_sym_f32] = ACTIONS(1896), - [anon_sym_f64] = ACTIONS(1896), - [anon_sym_bool] = ACTIONS(1896), - [anon_sym_str] = ACTIONS(1896), - [anon_sym_char] = ACTIONS(1896), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(1896), - [anon_sym_break] = ACTIONS(1896), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_continue] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(1896), - [anon_sym_enum] = ACTIONS(1896), - [anon_sym_fn] = ACTIONS(1896), - [anon_sym_for] = ACTIONS(1896), - [anon_sym_if] = ACTIONS(1896), - [anon_sym_impl] = ACTIONS(1896), - [anon_sym_let] = ACTIONS(1896), - [anon_sym_loop] = ACTIONS(1896), - [anon_sym_match] = ACTIONS(1896), - [anon_sym_mod] = ACTIONS(1896), - [anon_sym_pub] = ACTIONS(1896), - [anon_sym_return] = ACTIONS(1896), - [anon_sym_static] = ACTIONS(1896), - [anon_sym_struct] = ACTIONS(1896), - [anon_sym_trait] = ACTIONS(1896), - [anon_sym_type] = ACTIONS(1896), - [anon_sym_union] = ACTIONS(1896), - [anon_sym_unsafe] = ACTIONS(1896), - [anon_sym_use] = ACTIONS(1896), - [anon_sym_while] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(1894), - [anon_sym_BANG] = ACTIONS(1894), - [anon_sym_extern] = ACTIONS(1896), - [anon_sym_LT] = ACTIONS(1894), - [anon_sym_COLON_COLON] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1894), - [anon_sym_DOT_DOT] = ACTIONS(1894), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PIPE] = ACTIONS(1894), - [anon_sym_yield] = ACTIONS(1896), - [anon_sym_move] = ACTIONS(1896), - [sym_integer_literal] = ACTIONS(1894), - [aux_sym_string_literal_token1] = ACTIONS(1894), - [sym_char_literal] = ACTIONS(1894), - [anon_sym_true] = ACTIONS(1896), - [anon_sym_false] = ACTIONS(1896), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1896), - [sym_super] = ACTIONS(1896), - [sym_crate] = ACTIONS(1896), - [sym_metavariable] = ACTIONS(1894), - [sym_raw_string_literal] = ACTIONS(1894), - [sym_float_literal] = ACTIONS(1894), + [ts_builtin_sym_end] = ACTIONS(1896), + [sym_identifier] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_macro_rules_BANG] = ACTIONS(1896), + [anon_sym_LPAREN] = ACTIONS(1896), + [anon_sym_LBRACE] = ACTIONS(1896), + [anon_sym_RBRACE] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(1896), + [anon_sym_u8] = ACTIONS(1898), + [anon_sym_i8] = ACTIONS(1898), + [anon_sym_u16] = ACTIONS(1898), + [anon_sym_i16] = ACTIONS(1898), + [anon_sym_u32] = ACTIONS(1898), + [anon_sym_i32] = ACTIONS(1898), + [anon_sym_u64] = ACTIONS(1898), + [anon_sym_i64] = ACTIONS(1898), + [anon_sym_u128] = ACTIONS(1898), + [anon_sym_i128] = ACTIONS(1898), + [anon_sym_isize] = ACTIONS(1898), + [anon_sym_usize] = ACTIONS(1898), + [anon_sym_f32] = ACTIONS(1898), + [anon_sym_f64] = ACTIONS(1898), + [anon_sym_bool] = ACTIONS(1898), + [anon_sym_str] = ACTIONS(1898), + [anon_sym_char] = ACTIONS(1898), + [anon_sym_SQUOTE] = ACTIONS(1898), + [anon_sym_async] = ACTIONS(1898), + [anon_sym_break] = ACTIONS(1898), + [anon_sym_const] = ACTIONS(1898), + [anon_sym_continue] = ACTIONS(1898), + [anon_sym_default] = ACTIONS(1898), + [anon_sym_enum] = ACTIONS(1898), + [anon_sym_fn] = ACTIONS(1898), + [anon_sym_for] = ACTIONS(1898), + [anon_sym_if] = ACTIONS(1898), + [anon_sym_impl] = ACTIONS(1898), + [anon_sym_let] = ACTIONS(1898), + [anon_sym_loop] = ACTIONS(1898), + [anon_sym_match] = ACTIONS(1898), + [anon_sym_mod] = ACTIONS(1898), + [anon_sym_pub] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1898), + [anon_sym_static] = ACTIONS(1898), + [anon_sym_struct] = ACTIONS(1898), + [anon_sym_trait] = ACTIONS(1898), + [anon_sym_type] = ACTIONS(1898), + [anon_sym_union] = ACTIONS(1898), + [anon_sym_unsafe] = ACTIONS(1898), + [anon_sym_use] = ACTIONS(1898), + [anon_sym_while] = ACTIONS(1898), + [anon_sym_POUND] = ACTIONS(1896), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_extern] = ACTIONS(1898), + [anon_sym_LT] = ACTIONS(1896), + [anon_sym_COLON_COLON] = ACTIONS(1896), + [anon_sym_AMP] = ACTIONS(1896), + [anon_sym_DOT_DOT] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1896), + [anon_sym_yield] = ACTIONS(1898), + [anon_sym_move] = ACTIONS(1898), + [sym_integer_literal] = ACTIONS(1896), + [aux_sym_string_literal_token1] = ACTIONS(1896), + [sym_char_literal] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(1898), + [anon_sym_false] = ACTIONS(1898), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1898), + [sym_super] = ACTIONS(1898), + [sym_crate] = ACTIONS(1898), + [sym_metavariable] = ACTIONS(1896), + [sym_raw_string_literal] = ACTIONS(1896), + [sym_float_literal] = ACTIONS(1896), [sym_block_comment] = ACTIONS(3), }, [455] = { - [ts_builtin_sym_end] = ACTIONS(1898), - [sym_identifier] = ACTIONS(1900), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_macro_rules_BANG] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1898), - [anon_sym_LBRACE] = ACTIONS(1898), - [anon_sym_RBRACE] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_u8] = ACTIONS(1900), - [anon_sym_i8] = ACTIONS(1900), - [anon_sym_u16] = ACTIONS(1900), - [anon_sym_i16] = ACTIONS(1900), - [anon_sym_u32] = ACTIONS(1900), - [anon_sym_i32] = ACTIONS(1900), - [anon_sym_u64] = ACTIONS(1900), - [anon_sym_i64] = ACTIONS(1900), - [anon_sym_u128] = ACTIONS(1900), - [anon_sym_i128] = ACTIONS(1900), - [anon_sym_isize] = ACTIONS(1900), - [anon_sym_usize] = ACTIONS(1900), - [anon_sym_f32] = ACTIONS(1900), - [anon_sym_f64] = ACTIONS(1900), - [anon_sym_bool] = ACTIONS(1900), - [anon_sym_str] = ACTIONS(1900), - [anon_sym_char] = ACTIONS(1900), - [anon_sym_SQUOTE] = ACTIONS(1900), - [anon_sym_async] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_const] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_default] = ACTIONS(1900), - [anon_sym_enum] = ACTIONS(1900), - [anon_sym_fn] = ACTIONS(1900), - [anon_sym_for] = ACTIONS(1900), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_impl] = ACTIONS(1900), - [anon_sym_let] = ACTIONS(1900), - [anon_sym_loop] = ACTIONS(1900), - [anon_sym_match] = ACTIONS(1900), - [anon_sym_mod] = ACTIONS(1900), - [anon_sym_pub] = ACTIONS(1900), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_static] = ACTIONS(1900), - [anon_sym_struct] = ACTIONS(1900), - [anon_sym_trait] = ACTIONS(1900), - [anon_sym_type] = ACTIONS(1900), - [anon_sym_union] = ACTIONS(1900), - [anon_sym_unsafe] = ACTIONS(1900), - [anon_sym_use] = ACTIONS(1900), - [anon_sym_while] = ACTIONS(1900), - [anon_sym_POUND] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_extern] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1898), - [anon_sym_DOT_DOT] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_yield] = ACTIONS(1900), - [anon_sym_move] = ACTIONS(1900), - [sym_integer_literal] = ACTIONS(1898), - [aux_sym_string_literal_token1] = ACTIONS(1898), - [sym_char_literal] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1900), - [anon_sym_false] = ACTIONS(1900), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1900), - [sym_super] = ACTIONS(1900), - [sym_crate] = ACTIONS(1900), - [sym_metavariable] = ACTIONS(1898), - [sym_raw_string_literal] = ACTIONS(1898), - [sym_float_literal] = ACTIONS(1898), + [ts_builtin_sym_end] = ACTIONS(1900), + [sym_identifier] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_macro_rules_BANG] = ACTIONS(1900), + [anon_sym_LPAREN] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(1900), + [anon_sym_RBRACE] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(1900), + [anon_sym_STAR] = ACTIONS(1900), + [anon_sym_u8] = ACTIONS(1902), + [anon_sym_i8] = ACTIONS(1902), + [anon_sym_u16] = ACTIONS(1902), + [anon_sym_i16] = ACTIONS(1902), + [anon_sym_u32] = ACTIONS(1902), + [anon_sym_i32] = ACTIONS(1902), + [anon_sym_u64] = ACTIONS(1902), + [anon_sym_i64] = ACTIONS(1902), + [anon_sym_u128] = ACTIONS(1902), + [anon_sym_i128] = ACTIONS(1902), + [anon_sym_isize] = ACTIONS(1902), + [anon_sym_usize] = ACTIONS(1902), + [anon_sym_f32] = ACTIONS(1902), + [anon_sym_f64] = ACTIONS(1902), + [anon_sym_bool] = ACTIONS(1902), + [anon_sym_str] = ACTIONS(1902), + [anon_sym_char] = ACTIONS(1902), + [anon_sym_SQUOTE] = ACTIONS(1902), + [anon_sym_async] = ACTIONS(1902), + [anon_sym_break] = ACTIONS(1902), + [anon_sym_const] = ACTIONS(1902), + [anon_sym_continue] = ACTIONS(1902), + [anon_sym_default] = ACTIONS(1902), + [anon_sym_enum] = ACTIONS(1902), + [anon_sym_fn] = ACTIONS(1902), + [anon_sym_for] = ACTIONS(1902), + [anon_sym_if] = ACTIONS(1902), + [anon_sym_impl] = ACTIONS(1902), + [anon_sym_let] = ACTIONS(1902), + [anon_sym_loop] = ACTIONS(1902), + [anon_sym_match] = ACTIONS(1902), + [anon_sym_mod] = ACTIONS(1902), + [anon_sym_pub] = ACTIONS(1902), + [anon_sym_return] = ACTIONS(1902), + [anon_sym_static] = ACTIONS(1902), + [anon_sym_struct] = ACTIONS(1902), + [anon_sym_trait] = ACTIONS(1902), + [anon_sym_type] = ACTIONS(1902), + [anon_sym_union] = ACTIONS(1902), + [anon_sym_unsafe] = ACTIONS(1902), + [anon_sym_use] = ACTIONS(1902), + [anon_sym_while] = ACTIONS(1902), + [anon_sym_POUND] = ACTIONS(1900), + [anon_sym_BANG] = ACTIONS(1900), + [anon_sym_extern] = ACTIONS(1902), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_COLON_COLON] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_PIPE] = ACTIONS(1900), + [anon_sym_yield] = ACTIONS(1902), + [anon_sym_move] = ACTIONS(1902), + [sym_integer_literal] = ACTIONS(1900), + [aux_sym_string_literal_token1] = ACTIONS(1900), + [sym_char_literal] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1902), + [anon_sym_false] = ACTIONS(1902), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1902), + [sym_super] = ACTIONS(1902), + [sym_crate] = ACTIONS(1902), + [sym_metavariable] = ACTIONS(1900), + [sym_raw_string_literal] = ACTIONS(1900), + [sym_float_literal] = ACTIONS(1900), [sym_block_comment] = ACTIONS(3), }, [456] = { - [ts_builtin_sym_end] = ACTIONS(1902), - [sym_identifier] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_macro_rules_BANG] = ACTIONS(1902), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_RBRACE] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_u8] = ACTIONS(1904), - [anon_sym_i8] = ACTIONS(1904), - [anon_sym_u16] = ACTIONS(1904), - [anon_sym_i16] = ACTIONS(1904), - [anon_sym_u32] = ACTIONS(1904), - [anon_sym_i32] = ACTIONS(1904), - [anon_sym_u64] = ACTIONS(1904), - [anon_sym_i64] = ACTIONS(1904), - [anon_sym_u128] = ACTIONS(1904), - [anon_sym_i128] = ACTIONS(1904), - [anon_sym_isize] = ACTIONS(1904), - [anon_sym_usize] = ACTIONS(1904), - [anon_sym_f32] = ACTIONS(1904), - [anon_sym_f64] = ACTIONS(1904), - [anon_sym_bool] = ACTIONS(1904), - [anon_sym_str] = ACTIONS(1904), - [anon_sym_char] = ACTIONS(1904), - [anon_sym_SQUOTE] = ACTIONS(1904), - [anon_sym_async] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_const] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_default] = ACTIONS(1904), - [anon_sym_enum] = ACTIONS(1904), - [anon_sym_fn] = ACTIONS(1904), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_impl] = ACTIONS(1904), - [anon_sym_let] = ACTIONS(1904), - [anon_sym_loop] = ACTIONS(1904), - [anon_sym_match] = ACTIONS(1904), - [anon_sym_mod] = ACTIONS(1904), - [anon_sym_pub] = ACTIONS(1904), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1904), - [anon_sym_struct] = ACTIONS(1904), - [anon_sym_trait] = ACTIONS(1904), - [anon_sym_type] = ACTIONS(1904), - [anon_sym_union] = ACTIONS(1904), - [anon_sym_unsafe] = ACTIONS(1904), - [anon_sym_use] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_POUND] = ACTIONS(1902), - [anon_sym_BANG] = ACTIONS(1902), - [anon_sym_extern] = ACTIONS(1904), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_COLON_COLON] = ACTIONS(1902), - [anon_sym_AMP] = ACTIONS(1902), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_PIPE] = ACTIONS(1902), - [anon_sym_yield] = ACTIONS(1904), - [anon_sym_move] = ACTIONS(1904), - [sym_integer_literal] = ACTIONS(1902), - [aux_sym_string_literal_token1] = ACTIONS(1902), - [sym_char_literal] = ACTIONS(1902), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1904), - [sym_super] = ACTIONS(1904), - [sym_crate] = ACTIONS(1904), - [sym_metavariable] = ACTIONS(1902), - [sym_raw_string_literal] = ACTIONS(1902), - [sym_float_literal] = ACTIONS(1902), + [ts_builtin_sym_end] = ACTIONS(1904), + [sym_identifier] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_macro_rules_BANG] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1904), + [anon_sym_u8] = ACTIONS(1906), + [anon_sym_i8] = ACTIONS(1906), + [anon_sym_u16] = ACTIONS(1906), + [anon_sym_i16] = ACTIONS(1906), + [anon_sym_u32] = ACTIONS(1906), + [anon_sym_i32] = ACTIONS(1906), + [anon_sym_u64] = ACTIONS(1906), + [anon_sym_i64] = ACTIONS(1906), + [anon_sym_u128] = ACTIONS(1906), + [anon_sym_i128] = ACTIONS(1906), + [anon_sym_isize] = ACTIONS(1906), + [anon_sym_usize] = ACTIONS(1906), + [anon_sym_f32] = ACTIONS(1906), + [anon_sym_f64] = ACTIONS(1906), + [anon_sym_bool] = ACTIONS(1906), + [anon_sym_str] = ACTIONS(1906), + [anon_sym_char] = ACTIONS(1906), + [anon_sym_SQUOTE] = ACTIONS(1906), + [anon_sym_async] = ACTIONS(1906), + [anon_sym_break] = ACTIONS(1906), + [anon_sym_const] = ACTIONS(1906), + [anon_sym_continue] = ACTIONS(1906), + [anon_sym_default] = ACTIONS(1906), + [anon_sym_enum] = ACTIONS(1906), + [anon_sym_fn] = ACTIONS(1906), + [anon_sym_for] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1906), + [anon_sym_impl] = ACTIONS(1906), + [anon_sym_let] = ACTIONS(1906), + [anon_sym_loop] = ACTIONS(1906), + [anon_sym_match] = ACTIONS(1906), + [anon_sym_mod] = ACTIONS(1906), + [anon_sym_pub] = ACTIONS(1906), + [anon_sym_return] = ACTIONS(1906), + [anon_sym_static] = ACTIONS(1906), + [anon_sym_struct] = ACTIONS(1906), + [anon_sym_trait] = ACTIONS(1906), + [anon_sym_type] = ACTIONS(1906), + [anon_sym_union] = ACTIONS(1906), + [anon_sym_unsafe] = ACTIONS(1906), + [anon_sym_use] = ACTIONS(1906), + [anon_sym_while] = ACTIONS(1906), + [anon_sym_POUND] = ACTIONS(1904), + [anon_sym_BANG] = ACTIONS(1904), + [anon_sym_extern] = ACTIONS(1906), + [anon_sym_LT] = ACTIONS(1904), + [anon_sym_COLON_COLON] = ACTIONS(1904), + [anon_sym_AMP] = ACTIONS(1904), + [anon_sym_DOT_DOT] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_PIPE] = ACTIONS(1904), + [anon_sym_yield] = ACTIONS(1906), + [anon_sym_move] = ACTIONS(1906), + [sym_integer_literal] = ACTIONS(1904), + [aux_sym_string_literal_token1] = ACTIONS(1904), + [sym_char_literal] = ACTIONS(1904), + [anon_sym_true] = ACTIONS(1906), + [anon_sym_false] = ACTIONS(1906), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1906), + [sym_super] = ACTIONS(1906), + [sym_crate] = ACTIONS(1906), + [sym_metavariable] = ACTIONS(1904), + [sym_raw_string_literal] = ACTIONS(1904), + [sym_float_literal] = ACTIONS(1904), [sym_block_comment] = ACTIONS(3), }, [457] = { - [ts_builtin_sym_end] = ACTIONS(1906), - [sym_identifier] = ACTIONS(1908), - [anon_sym_SEMI] = ACTIONS(1906), - [anon_sym_macro_rules_BANG] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_u8] = ACTIONS(1908), - [anon_sym_i8] = ACTIONS(1908), - [anon_sym_u16] = ACTIONS(1908), - [anon_sym_i16] = ACTIONS(1908), - [anon_sym_u32] = ACTIONS(1908), - [anon_sym_i32] = ACTIONS(1908), - [anon_sym_u64] = ACTIONS(1908), - [anon_sym_i64] = ACTIONS(1908), - [anon_sym_u128] = ACTIONS(1908), - [anon_sym_i128] = ACTIONS(1908), - [anon_sym_isize] = ACTIONS(1908), - [anon_sym_usize] = ACTIONS(1908), - [anon_sym_f32] = ACTIONS(1908), - [anon_sym_f64] = ACTIONS(1908), - [anon_sym_bool] = ACTIONS(1908), - [anon_sym_str] = ACTIONS(1908), - [anon_sym_char] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1908), - [anon_sym_async] = ACTIONS(1908), - [anon_sym_break] = ACTIONS(1908), - [anon_sym_const] = ACTIONS(1908), - [anon_sym_continue] = ACTIONS(1908), - [anon_sym_default] = ACTIONS(1908), - [anon_sym_enum] = ACTIONS(1908), - [anon_sym_fn] = ACTIONS(1908), - [anon_sym_for] = ACTIONS(1908), - [anon_sym_if] = ACTIONS(1908), - [anon_sym_impl] = ACTIONS(1908), - [anon_sym_let] = ACTIONS(1908), - [anon_sym_loop] = ACTIONS(1908), - [anon_sym_match] = ACTIONS(1908), - [anon_sym_mod] = ACTIONS(1908), - [anon_sym_pub] = ACTIONS(1908), - [anon_sym_return] = ACTIONS(1908), - [anon_sym_static] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(1908), - [anon_sym_trait] = ACTIONS(1908), - [anon_sym_type] = ACTIONS(1908), - [anon_sym_union] = ACTIONS(1908), - [anon_sym_unsafe] = ACTIONS(1908), - [anon_sym_use] = ACTIONS(1908), - [anon_sym_while] = ACTIONS(1908), - [anon_sym_POUND] = ACTIONS(1906), - [anon_sym_BANG] = ACTIONS(1906), - [anon_sym_extern] = ACTIONS(1908), - [anon_sym_LT] = ACTIONS(1906), - [anon_sym_COLON_COLON] = ACTIONS(1906), - [anon_sym_AMP] = ACTIONS(1906), - [anon_sym_DOT_DOT] = ACTIONS(1906), - [anon_sym_DASH] = ACTIONS(1906), - [anon_sym_PIPE] = ACTIONS(1906), - [anon_sym_yield] = ACTIONS(1908), - [anon_sym_move] = ACTIONS(1908), - [sym_integer_literal] = ACTIONS(1906), - [aux_sym_string_literal_token1] = ACTIONS(1906), - [sym_char_literal] = ACTIONS(1906), - [anon_sym_true] = ACTIONS(1908), - [anon_sym_false] = ACTIONS(1908), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1908), - [sym_super] = ACTIONS(1908), - [sym_crate] = ACTIONS(1908), - [sym_metavariable] = ACTIONS(1906), - [sym_raw_string_literal] = ACTIONS(1906), - [sym_float_literal] = ACTIONS(1906), + [ts_builtin_sym_end] = ACTIONS(1908), + [sym_identifier] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1908), + [anon_sym_macro_rules_BANG] = ACTIONS(1908), + [anon_sym_LPAREN] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1908), + [anon_sym_RBRACE] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1908), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [anon_sym_POUND] = ACTIONS(1908), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1910), + [anon_sym_LT] = ACTIONS(1908), + [anon_sym_COLON_COLON] = ACTIONS(1908), + [anon_sym_AMP] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_yield] = ACTIONS(1910), + [anon_sym_move] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1908), + [aux_sym_string_literal_token1] = ACTIONS(1908), + [sym_char_literal] = ACTIONS(1908), + [anon_sym_true] = ACTIONS(1910), + [anon_sym_false] = ACTIONS(1910), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1908), + [sym_raw_string_literal] = ACTIONS(1908), + [sym_float_literal] = ACTIONS(1908), [sym_block_comment] = ACTIONS(3), }, [458] = { - [ts_builtin_sym_end] = ACTIONS(1910), - [sym_identifier] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1910), - [anon_sym_macro_rules_BANG] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1910), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_RBRACE] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1910), - [anon_sym_STAR] = ACTIONS(1910), - [anon_sym_u8] = ACTIONS(1912), - [anon_sym_i8] = ACTIONS(1912), - [anon_sym_u16] = ACTIONS(1912), - [anon_sym_i16] = ACTIONS(1912), - [anon_sym_u32] = ACTIONS(1912), - [anon_sym_i32] = ACTIONS(1912), - [anon_sym_u64] = ACTIONS(1912), - [anon_sym_i64] = ACTIONS(1912), - [anon_sym_u128] = ACTIONS(1912), - [anon_sym_i128] = ACTIONS(1912), - [anon_sym_isize] = ACTIONS(1912), - [anon_sym_usize] = ACTIONS(1912), - [anon_sym_f32] = ACTIONS(1912), - [anon_sym_f64] = ACTIONS(1912), - [anon_sym_bool] = ACTIONS(1912), - [anon_sym_str] = ACTIONS(1912), - [anon_sym_char] = ACTIONS(1912), - [anon_sym_SQUOTE] = ACTIONS(1912), - [anon_sym_async] = ACTIONS(1912), - [anon_sym_break] = ACTIONS(1912), - [anon_sym_const] = ACTIONS(1912), - [anon_sym_continue] = ACTIONS(1912), - [anon_sym_default] = ACTIONS(1912), - [anon_sym_enum] = ACTIONS(1912), - [anon_sym_fn] = ACTIONS(1912), - [anon_sym_for] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(1912), - [anon_sym_impl] = ACTIONS(1912), - [anon_sym_let] = ACTIONS(1912), - [anon_sym_loop] = ACTIONS(1912), - [anon_sym_match] = ACTIONS(1912), - [anon_sym_mod] = ACTIONS(1912), - [anon_sym_pub] = ACTIONS(1912), - [anon_sym_return] = ACTIONS(1912), - [anon_sym_static] = ACTIONS(1912), - [anon_sym_struct] = ACTIONS(1912), - [anon_sym_trait] = ACTIONS(1912), - [anon_sym_type] = ACTIONS(1912), - [anon_sym_union] = ACTIONS(1912), - [anon_sym_unsafe] = ACTIONS(1912), - [anon_sym_use] = ACTIONS(1912), - [anon_sym_while] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(1910), - [anon_sym_BANG] = ACTIONS(1910), - [anon_sym_extern] = ACTIONS(1912), - [anon_sym_LT] = ACTIONS(1910), - [anon_sym_COLON_COLON] = ACTIONS(1910), - [anon_sym_AMP] = ACTIONS(1910), - [anon_sym_DOT_DOT] = ACTIONS(1910), - [anon_sym_DASH] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1910), - [anon_sym_yield] = ACTIONS(1912), - [anon_sym_move] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(1910), - [aux_sym_string_literal_token1] = ACTIONS(1910), - [sym_char_literal] = ACTIONS(1910), - [anon_sym_true] = ACTIONS(1912), - [anon_sym_false] = ACTIONS(1912), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1912), - [sym_super] = ACTIONS(1912), - [sym_crate] = ACTIONS(1912), - [sym_metavariable] = ACTIONS(1910), - [sym_raw_string_literal] = ACTIONS(1910), - [sym_float_literal] = ACTIONS(1910), + [ts_builtin_sym_end] = ACTIONS(1912), + [sym_identifier] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_macro_rules_BANG] = ACTIONS(1912), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1912), + [anon_sym_RBRACE] = ACTIONS(1912), + [anon_sym_LBRACK] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_u8] = ACTIONS(1914), + [anon_sym_i8] = ACTIONS(1914), + [anon_sym_u16] = ACTIONS(1914), + [anon_sym_i16] = ACTIONS(1914), + [anon_sym_u32] = ACTIONS(1914), + [anon_sym_i32] = ACTIONS(1914), + [anon_sym_u64] = ACTIONS(1914), + [anon_sym_i64] = ACTIONS(1914), + [anon_sym_u128] = ACTIONS(1914), + [anon_sym_i128] = ACTIONS(1914), + [anon_sym_isize] = ACTIONS(1914), + [anon_sym_usize] = ACTIONS(1914), + [anon_sym_f32] = ACTIONS(1914), + [anon_sym_f64] = ACTIONS(1914), + [anon_sym_bool] = ACTIONS(1914), + [anon_sym_str] = ACTIONS(1914), + [anon_sym_char] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_async] = ACTIONS(1914), + [anon_sym_break] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1914), + [anon_sym_continue] = ACTIONS(1914), + [anon_sym_default] = ACTIONS(1914), + [anon_sym_enum] = ACTIONS(1914), + [anon_sym_fn] = ACTIONS(1914), + [anon_sym_for] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(1914), + [anon_sym_impl] = ACTIONS(1914), + [anon_sym_let] = ACTIONS(1914), + [anon_sym_loop] = ACTIONS(1914), + [anon_sym_match] = ACTIONS(1914), + [anon_sym_mod] = ACTIONS(1914), + [anon_sym_pub] = ACTIONS(1914), + [anon_sym_return] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1914), + [anon_sym_struct] = ACTIONS(1914), + [anon_sym_trait] = ACTIONS(1914), + [anon_sym_type] = ACTIONS(1914), + [anon_sym_union] = ACTIONS(1914), + [anon_sym_unsafe] = ACTIONS(1914), + [anon_sym_use] = ACTIONS(1914), + [anon_sym_while] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(1912), + [anon_sym_BANG] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1914), + [anon_sym_LT] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PIPE] = ACTIONS(1912), + [anon_sym_yield] = ACTIONS(1914), + [anon_sym_move] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(1912), + [aux_sym_string_literal_token1] = ACTIONS(1912), + [sym_char_literal] = ACTIONS(1912), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1914), + [sym_super] = ACTIONS(1914), + [sym_crate] = ACTIONS(1914), + [sym_metavariable] = ACTIONS(1912), + [sym_raw_string_literal] = ACTIONS(1912), + [sym_float_literal] = ACTIONS(1912), [sym_block_comment] = ACTIONS(3), }, [459] = { - [ts_builtin_sym_end] = ACTIONS(1914), - [sym_identifier] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_macro_rules_BANG] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(1914), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1914), - [anon_sym_u8] = ACTIONS(1916), - [anon_sym_i8] = ACTIONS(1916), - [anon_sym_u16] = ACTIONS(1916), - [anon_sym_i16] = ACTIONS(1916), - [anon_sym_u32] = ACTIONS(1916), - [anon_sym_i32] = ACTIONS(1916), - [anon_sym_u64] = ACTIONS(1916), - [anon_sym_i64] = ACTIONS(1916), - [anon_sym_u128] = ACTIONS(1916), - [anon_sym_i128] = ACTIONS(1916), - [anon_sym_isize] = ACTIONS(1916), - [anon_sym_usize] = ACTIONS(1916), - [anon_sym_f32] = ACTIONS(1916), - [anon_sym_f64] = ACTIONS(1916), - [anon_sym_bool] = ACTIONS(1916), - [anon_sym_str] = ACTIONS(1916), - [anon_sym_char] = ACTIONS(1916), - [anon_sym_SQUOTE] = ACTIONS(1916), - [anon_sym_async] = ACTIONS(1916), - [anon_sym_break] = ACTIONS(1916), - [anon_sym_const] = ACTIONS(1916), - [anon_sym_continue] = ACTIONS(1916), - [anon_sym_default] = ACTIONS(1916), - [anon_sym_enum] = ACTIONS(1916), - [anon_sym_fn] = ACTIONS(1916), - [anon_sym_for] = ACTIONS(1916), - [anon_sym_if] = ACTIONS(1916), - [anon_sym_impl] = ACTIONS(1916), - [anon_sym_let] = ACTIONS(1916), - [anon_sym_loop] = ACTIONS(1916), - [anon_sym_match] = ACTIONS(1916), - [anon_sym_mod] = ACTIONS(1916), - [anon_sym_pub] = ACTIONS(1916), - [anon_sym_return] = ACTIONS(1916), - [anon_sym_static] = ACTIONS(1916), - [anon_sym_struct] = ACTIONS(1916), - [anon_sym_trait] = ACTIONS(1916), - [anon_sym_type] = ACTIONS(1916), - [anon_sym_union] = ACTIONS(1916), - [anon_sym_unsafe] = ACTIONS(1916), - [anon_sym_use] = ACTIONS(1916), - [anon_sym_while] = ACTIONS(1916), - [anon_sym_POUND] = ACTIONS(1914), - [anon_sym_BANG] = ACTIONS(1914), - [anon_sym_extern] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(1914), - [anon_sym_COLON_COLON] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1914), - [anon_sym_DOT_DOT] = ACTIONS(1914), - [anon_sym_DASH] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1914), - [anon_sym_yield] = ACTIONS(1916), - [anon_sym_move] = ACTIONS(1916), - [sym_integer_literal] = ACTIONS(1914), - [aux_sym_string_literal_token1] = ACTIONS(1914), - [sym_char_literal] = ACTIONS(1914), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1916), - [sym_super] = ACTIONS(1916), - [sym_crate] = ACTIONS(1916), - [sym_metavariable] = ACTIONS(1914), - [sym_raw_string_literal] = ACTIONS(1914), - [sym_float_literal] = ACTIONS(1914), + [ts_builtin_sym_end] = ACTIONS(1916), + [sym_identifier] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_macro_rules_BANG] = ACTIONS(1916), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [anon_sym_RBRACE] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1916), + [anon_sym_u8] = ACTIONS(1918), + [anon_sym_i8] = ACTIONS(1918), + [anon_sym_u16] = ACTIONS(1918), + [anon_sym_i16] = ACTIONS(1918), + [anon_sym_u32] = ACTIONS(1918), + [anon_sym_i32] = ACTIONS(1918), + [anon_sym_u64] = ACTIONS(1918), + [anon_sym_i64] = ACTIONS(1918), + [anon_sym_u128] = ACTIONS(1918), + [anon_sym_i128] = ACTIONS(1918), + [anon_sym_isize] = ACTIONS(1918), + [anon_sym_usize] = ACTIONS(1918), + [anon_sym_f32] = ACTIONS(1918), + [anon_sym_f64] = ACTIONS(1918), + [anon_sym_bool] = ACTIONS(1918), + [anon_sym_str] = ACTIONS(1918), + [anon_sym_char] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_async] = ACTIONS(1918), + [anon_sym_break] = ACTIONS(1918), + [anon_sym_const] = ACTIONS(1918), + [anon_sym_continue] = ACTIONS(1918), + [anon_sym_default] = ACTIONS(1918), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_fn] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1918), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_impl] = ACTIONS(1918), + [anon_sym_let] = ACTIONS(1918), + [anon_sym_loop] = ACTIONS(1918), + [anon_sym_match] = ACTIONS(1918), + [anon_sym_mod] = ACTIONS(1918), + [anon_sym_pub] = ACTIONS(1918), + [anon_sym_return] = ACTIONS(1918), + [anon_sym_static] = ACTIONS(1918), + [anon_sym_struct] = ACTIONS(1918), + [anon_sym_trait] = ACTIONS(1918), + [anon_sym_type] = ACTIONS(1918), + [anon_sym_union] = ACTIONS(1918), + [anon_sym_unsafe] = ACTIONS(1918), + [anon_sym_use] = ACTIONS(1918), + [anon_sym_while] = ACTIONS(1918), + [anon_sym_POUND] = ACTIONS(1916), + [anon_sym_BANG] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1916), + [anon_sym_COLON_COLON] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1916), + [anon_sym_DOT_DOT] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_yield] = ACTIONS(1918), + [anon_sym_move] = ACTIONS(1918), + [sym_integer_literal] = ACTIONS(1916), + [aux_sym_string_literal_token1] = ACTIONS(1916), + [sym_char_literal] = ACTIONS(1916), + [anon_sym_true] = ACTIONS(1918), + [anon_sym_false] = ACTIONS(1918), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1918), + [sym_super] = ACTIONS(1918), + [sym_crate] = ACTIONS(1918), + [sym_metavariable] = ACTIONS(1916), + [sym_raw_string_literal] = ACTIONS(1916), + [sym_float_literal] = ACTIONS(1916), [sym_block_comment] = ACTIONS(3), }, [460] = { - [ts_builtin_sym_end] = ACTIONS(1918), - [sym_identifier] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_macro_rules_BANG] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_STAR] = ACTIONS(1918), - [anon_sym_u8] = ACTIONS(1920), - [anon_sym_i8] = ACTIONS(1920), - [anon_sym_u16] = ACTIONS(1920), - [anon_sym_i16] = ACTIONS(1920), - [anon_sym_u32] = ACTIONS(1920), - [anon_sym_i32] = ACTIONS(1920), - [anon_sym_u64] = ACTIONS(1920), - [anon_sym_i64] = ACTIONS(1920), - [anon_sym_u128] = ACTIONS(1920), - [anon_sym_i128] = ACTIONS(1920), - [anon_sym_isize] = ACTIONS(1920), - [anon_sym_usize] = ACTIONS(1920), - [anon_sym_f32] = ACTIONS(1920), - [anon_sym_f64] = ACTIONS(1920), - [anon_sym_bool] = ACTIONS(1920), - [anon_sym_str] = ACTIONS(1920), - [anon_sym_char] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1920), - [anon_sym_async] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_default] = ACTIONS(1920), - [anon_sym_enum] = ACTIONS(1920), - [anon_sym_fn] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_impl] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_mod] = ACTIONS(1920), - [anon_sym_pub] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_static] = ACTIONS(1920), - [anon_sym_struct] = ACTIONS(1920), - [anon_sym_trait] = ACTIONS(1920), - [anon_sym_type] = ACTIONS(1920), - [anon_sym_union] = ACTIONS(1920), - [anon_sym_unsafe] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_POUND] = ACTIONS(1918), - [anon_sym_BANG] = ACTIONS(1918), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_COLON_COLON] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - [anon_sym_DOT_DOT] = ACTIONS(1918), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_yield] = ACTIONS(1920), - [anon_sym_move] = ACTIONS(1920), - [sym_integer_literal] = ACTIONS(1918), - [aux_sym_string_literal_token1] = ACTIONS(1918), - [sym_char_literal] = ACTIONS(1918), - [anon_sym_true] = ACTIONS(1920), - [anon_sym_false] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1920), - [sym_super] = ACTIONS(1920), - [sym_crate] = ACTIONS(1920), - [sym_metavariable] = ACTIONS(1918), - [sym_raw_string_literal] = ACTIONS(1918), - [sym_float_literal] = ACTIONS(1918), + [ts_builtin_sym_end] = ACTIONS(1920), + [sym_identifier] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_macro_rules_BANG] = ACTIONS(1920), + [anon_sym_LPAREN] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_u8] = ACTIONS(1922), + [anon_sym_i8] = ACTIONS(1922), + [anon_sym_u16] = ACTIONS(1922), + [anon_sym_i16] = ACTIONS(1922), + [anon_sym_u32] = ACTIONS(1922), + [anon_sym_i32] = ACTIONS(1922), + [anon_sym_u64] = ACTIONS(1922), + [anon_sym_i64] = ACTIONS(1922), + [anon_sym_u128] = ACTIONS(1922), + [anon_sym_i128] = ACTIONS(1922), + [anon_sym_isize] = ACTIONS(1922), + [anon_sym_usize] = ACTIONS(1922), + [anon_sym_f32] = ACTIONS(1922), + [anon_sym_f64] = ACTIONS(1922), + [anon_sym_bool] = ACTIONS(1922), + [anon_sym_str] = ACTIONS(1922), + [anon_sym_char] = ACTIONS(1922), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(1922), + [anon_sym_break] = ACTIONS(1922), + [anon_sym_const] = ACTIONS(1922), + [anon_sym_continue] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1922), + [anon_sym_enum] = ACTIONS(1922), + [anon_sym_fn] = ACTIONS(1922), + [anon_sym_for] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(1922), + [anon_sym_impl] = ACTIONS(1922), + [anon_sym_let] = ACTIONS(1922), + [anon_sym_loop] = ACTIONS(1922), + [anon_sym_match] = ACTIONS(1922), + [anon_sym_mod] = ACTIONS(1922), + [anon_sym_pub] = ACTIONS(1922), + [anon_sym_return] = ACTIONS(1922), + [anon_sym_static] = ACTIONS(1922), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_trait] = ACTIONS(1922), + [anon_sym_type] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1922), + [anon_sym_unsafe] = ACTIONS(1922), + [anon_sym_use] = ACTIONS(1922), + [anon_sym_while] = ACTIONS(1922), + [anon_sym_POUND] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1920), + [anon_sym_extern] = ACTIONS(1922), + [anon_sym_LT] = ACTIONS(1920), + [anon_sym_COLON_COLON] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_PIPE] = ACTIONS(1920), + [anon_sym_yield] = ACTIONS(1922), + [anon_sym_move] = ACTIONS(1922), + [sym_integer_literal] = ACTIONS(1920), + [aux_sym_string_literal_token1] = ACTIONS(1920), + [sym_char_literal] = ACTIONS(1920), + [anon_sym_true] = ACTIONS(1922), + [anon_sym_false] = ACTIONS(1922), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1922), + [sym_super] = ACTIONS(1922), + [sym_crate] = ACTIONS(1922), + [sym_metavariable] = ACTIONS(1920), + [sym_raw_string_literal] = ACTIONS(1920), + [sym_float_literal] = ACTIONS(1920), [sym_block_comment] = ACTIONS(3), }, [461] = { - [ts_builtin_sym_end] = ACTIONS(1922), - [sym_identifier] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1922), - [anon_sym_macro_rules_BANG] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1922), - [anon_sym_RBRACE] = ACTIONS(1922), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_u8] = ACTIONS(1924), - [anon_sym_i8] = ACTIONS(1924), - [anon_sym_u16] = ACTIONS(1924), - [anon_sym_i16] = ACTIONS(1924), - [anon_sym_u32] = ACTIONS(1924), - [anon_sym_i32] = ACTIONS(1924), - [anon_sym_u64] = ACTIONS(1924), - [anon_sym_i64] = ACTIONS(1924), - [anon_sym_u128] = ACTIONS(1924), - [anon_sym_i128] = ACTIONS(1924), - [anon_sym_isize] = ACTIONS(1924), - [anon_sym_usize] = ACTIONS(1924), - [anon_sym_f32] = ACTIONS(1924), - [anon_sym_f64] = ACTIONS(1924), - [anon_sym_bool] = ACTIONS(1924), - [anon_sym_str] = ACTIONS(1924), - [anon_sym_char] = ACTIONS(1924), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_async] = ACTIONS(1924), - [anon_sym_break] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1924), - [anon_sym_continue] = ACTIONS(1924), - [anon_sym_default] = ACTIONS(1924), - [anon_sym_enum] = ACTIONS(1924), - [anon_sym_fn] = ACTIONS(1924), - [anon_sym_for] = ACTIONS(1924), - [anon_sym_if] = ACTIONS(1924), - [anon_sym_impl] = ACTIONS(1924), - [anon_sym_let] = ACTIONS(1924), - [anon_sym_loop] = ACTIONS(1924), - [anon_sym_match] = ACTIONS(1924), - [anon_sym_mod] = ACTIONS(1924), - [anon_sym_pub] = ACTIONS(1924), - [anon_sym_return] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1924), - [anon_sym_struct] = ACTIONS(1924), - [anon_sym_trait] = ACTIONS(1924), - [anon_sym_type] = ACTIONS(1924), - [anon_sym_union] = ACTIONS(1924), - [anon_sym_unsafe] = ACTIONS(1924), - [anon_sym_use] = ACTIONS(1924), - [anon_sym_while] = ACTIONS(1924), - [anon_sym_POUND] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_extern] = ACTIONS(1924), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_COLON_COLON] = ACTIONS(1922), - [anon_sym_AMP] = ACTIONS(1922), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_yield] = ACTIONS(1924), - [anon_sym_move] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(1922), - [aux_sym_string_literal_token1] = ACTIONS(1922), - [sym_char_literal] = ACTIONS(1922), - [anon_sym_true] = ACTIONS(1924), - [anon_sym_false] = ACTIONS(1924), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1924), - [sym_super] = ACTIONS(1924), - [sym_crate] = ACTIONS(1924), - [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1922), - [sym_float_literal] = ACTIONS(1922), + [ts_builtin_sym_end] = ACTIONS(1924), + [sym_identifier] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_macro_rules_BANG] = ACTIONS(1924), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1924), + [anon_sym_RBRACE] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1924), + [anon_sym_u8] = ACTIONS(1926), + [anon_sym_i8] = ACTIONS(1926), + [anon_sym_u16] = ACTIONS(1926), + [anon_sym_i16] = ACTIONS(1926), + [anon_sym_u32] = ACTIONS(1926), + [anon_sym_i32] = ACTIONS(1926), + [anon_sym_u64] = ACTIONS(1926), + [anon_sym_i64] = ACTIONS(1926), + [anon_sym_u128] = ACTIONS(1926), + [anon_sym_i128] = ACTIONS(1926), + [anon_sym_isize] = ACTIONS(1926), + [anon_sym_usize] = ACTIONS(1926), + [anon_sym_f32] = ACTIONS(1926), + [anon_sym_f64] = ACTIONS(1926), + [anon_sym_bool] = ACTIONS(1926), + [anon_sym_str] = ACTIONS(1926), + [anon_sym_char] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_async] = ACTIONS(1926), + [anon_sym_break] = ACTIONS(1926), + [anon_sym_const] = ACTIONS(1926), + [anon_sym_continue] = ACTIONS(1926), + [anon_sym_default] = ACTIONS(1926), + [anon_sym_enum] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1926), + [anon_sym_for] = ACTIONS(1926), + [anon_sym_if] = ACTIONS(1926), + [anon_sym_impl] = ACTIONS(1926), + [anon_sym_let] = ACTIONS(1926), + [anon_sym_loop] = ACTIONS(1926), + [anon_sym_match] = ACTIONS(1926), + [anon_sym_mod] = ACTIONS(1926), + [anon_sym_pub] = ACTIONS(1926), + [anon_sym_return] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1926), + [anon_sym_struct] = ACTIONS(1926), + [anon_sym_trait] = ACTIONS(1926), + [anon_sym_type] = ACTIONS(1926), + [anon_sym_union] = ACTIONS(1926), + [anon_sym_unsafe] = ACTIONS(1926), + [anon_sym_use] = ACTIONS(1926), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_POUND] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1924), + [anon_sym_COLON_COLON] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_yield] = ACTIONS(1926), + [anon_sym_move] = ACTIONS(1926), + [sym_integer_literal] = ACTIONS(1924), + [aux_sym_string_literal_token1] = ACTIONS(1924), + [sym_char_literal] = ACTIONS(1924), + [anon_sym_true] = ACTIONS(1926), + [anon_sym_false] = ACTIONS(1926), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1926), + [sym_super] = ACTIONS(1926), + [sym_crate] = ACTIONS(1926), + [sym_metavariable] = ACTIONS(1924), + [sym_raw_string_literal] = ACTIONS(1924), + [sym_float_literal] = ACTIONS(1924), [sym_block_comment] = ACTIONS(3), }, [462] = { - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1926), - [anon_sym_macro_rules_BANG] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_STAR] = ACTIONS(1926), - [anon_sym_u8] = ACTIONS(1928), - [anon_sym_i8] = ACTIONS(1928), - [anon_sym_u16] = ACTIONS(1928), - [anon_sym_i16] = ACTIONS(1928), - [anon_sym_u32] = ACTIONS(1928), - [anon_sym_i32] = ACTIONS(1928), - [anon_sym_u64] = ACTIONS(1928), - [anon_sym_i64] = ACTIONS(1928), - [anon_sym_u128] = ACTIONS(1928), - [anon_sym_i128] = ACTIONS(1928), - [anon_sym_isize] = ACTIONS(1928), - [anon_sym_usize] = ACTIONS(1928), - [anon_sym_f32] = ACTIONS(1928), - [anon_sym_f64] = ACTIONS(1928), - [anon_sym_bool] = ACTIONS(1928), - [anon_sym_str] = ACTIONS(1928), - [anon_sym_char] = ACTIONS(1928), - [anon_sym_SQUOTE] = ACTIONS(1928), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_break] = ACTIONS(1928), - [anon_sym_const] = ACTIONS(1928), - [anon_sym_continue] = ACTIONS(1928), - [anon_sym_default] = ACTIONS(1928), - [anon_sym_enum] = ACTIONS(1928), - [anon_sym_fn] = ACTIONS(1928), - [anon_sym_for] = ACTIONS(1928), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_impl] = ACTIONS(1928), - [anon_sym_let] = ACTIONS(1928), - [anon_sym_loop] = ACTIONS(1928), - [anon_sym_match] = ACTIONS(1928), - [anon_sym_mod] = ACTIONS(1928), - [anon_sym_pub] = ACTIONS(1928), - [anon_sym_return] = ACTIONS(1928), - [anon_sym_static] = ACTIONS(1928), - [anon_sym_struct] = ACTIONS(1928), - [anon_sym_trait] = ACTIONS(1928), - [anon_sym_type] = ACTIONS(1928), - [anon_sym_union] = ACTIONS(1928), - [anon_sym_unsafe] = ACTIONS(1928), - [anon_sym_use] = ACTIONS(1928), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_POUND] = ACTIONS(1926), - [anon_sym_BANG] = ACTIONS(1926), - [anon_sym_extern] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1926), - [anon_sym_COLON_COLON] = ACTIONS(1926), - [anon_sym_AMP] = ACTIONS(1926), - [anon_sym_DOT_DOT] = ACTIONS(1926), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_PIPE] = ACTIONS(1926), - [anon_sym_yield] = ACTIONS(1928), - [anon_sym_move] = ACTIONS(1928), - [sym_integer_literal] = ACTIONS(1926), - [aux_sym_string_literal_token1] = ACTIONS(1926), - [sym_char_literal] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1928), - [sym_super] = ACTIONS(1928), - [sym_crate] = ACTIONS(1928), - [sym_metavariable] = ACTIONS(1926), - [sym_raw_string_literal] = ACTIONS(1926), - [sym_float_literal] = ACTIONS(1926), + [ts_builtin_sym_end] = ACTIONS(1928), + [sym_identifier] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_macro_rules_BANG] = ACTIONS(1928), + [anon_sym_LPAREN] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(1928), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_u8] = ACTIONS(1930), + [anon_sym_i8] = ACTIONS(1930), + [anon_sym_u16] = ACTIONS(1930), + [anon_sym_i16] = ACTIONS(1930), + [anon_sym_u32] = ACTIONS(1930), + [anon_sym_i32] = ACTIONS(1930), + [anon_sym_u64] = ACTIONS(1930), + [anon_sym_i64] = ACTIONS(1930), + [anon_sym_u128] = ACTIONS(1930), + [anon_sym_i128] = ACTIONS(1930), + [anon_sym_isize] = ACTIONS(1930), + [anon_sym_usize] = ACTIONS(1930), + [anon_sym_f32] = ACTIONS(1930), + [anon_sym_f64] = ACTIONS(1930), + [anon_sym_bool] = ACTIONS(1930), + [anon_sym_str] = ACTIONS(1930), + [anon_sym_char] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1930), + [anon_sym_async] = ACTIONS(1930), + [anon_sym_break] = ACTIONS(1930), + [anon_sym_const] = ACTIONS(1930), + [anon_sym_continue] = ACTIONS(1930), + [anon_sym_default] = ACTIONS(1930), + [anon_sym_enum] = ACTIONS(1930), + [anon_sym_fn] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1930), + [anon_sym_if] = ACTIONS(1930), + [anon_sym_impl] = ACTIONS(1930), + [anon_sym_let] = ACTIONS(1930), + [anon_sym_loop] = ACTIONS(1930), + [anon_sym_match] = ACTIONS(1930), + [anon_sym_mod] = ACTIONS(1930), + [anon_sym_pub] = ACTIONS(1930), + [anon_sym_return] = ACTIONS(1930), + [anon_sym_static] = ACTIONS(1930), + [anon_sym_struct] = ACTIONS(1930), + [anon_sym_trait] = ACTIONS(1930), + [anon_sym_type] = ACTIONS(1930), + [anon_sym_union] = ACTIONS(1930), + [anon_sym_unsafe] = ACTIONS(1930), + [anon_sym_use] = ACTIONS(1930), + [anon_sym_while] = ACTIONS(1930), + [anon_sym_POUND] = ACTIONS(1928), + [anon_sym_BANG] = ACTIONS(1928), + [anon_sym_extern] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_COLON_COLON] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym_DOT_DOT] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_PIPE] = ACTIONS(1928), + [anon_sym_yield] = ACTIONS(1930), + [anon_sym_move] = ACTIONS(1930), + [sym_integer_literal] = ACTIONS(1928), + [aux_sym_string_literal_token1] = ACTIONS(1928), + [sym_char_literal] = ACTIONS(1928), + [anon_sym_true] = ACTIONS(1930), + [anon_sym_false] = ACTIONS(1930), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1930), + [sym_super] = ACTIONS(1930), + [sym_crate] = ACTIONS(1930), + [sym_metavariable] = ACTIONS(1928), + [sym_raw_string_literal] = ACTIONS(1928), + [sym_float_literal] = ACTIONS(1928), [sym_block_comment] = ACTIONS(3), }, [463] = { - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_macro_rules_BANG] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_u8] = ACTIONS(1932), - [anon_sym_i8] = ACTIONS(1932), - [anon_sym_u16] = ACTIONS(1932), - [anon_sym_i16] = ACTIONS(1932), - [anon_sym_u32] = ACTIONS(1932), - [anon_sym_i32] = ACTIONS(1932), - [anon_sym_u64] = ACTIONS(1932), - [anon_sym_i64] = ACTIONS(1932), - [anon_sym_u128] = ACTIONS(1932), - [anon_sym_i128] = ACTIONS(1932), - [anon_sym_isize] = ACTIONS(1932), - [anon_sym_usize] = ACTIONS(1932), - [anon_sym_f32] = ACTIONS(1932), - [anon_sym_f64] = ACTIONS(1932), - [anon_sym_bool] = ACTIONS(1932), - [anon_sym_str] = ACTIONS(1932), - [anon_sym_char] = ACTIONS(1932), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_break] = ACTIONS(1932), - [anon_sym_const] = ACTIONS(1932), - [anon_sym_continue] = ACTIONS(1932), - [anon_sym_default] = ACTIONS(1932), - [anon_sym_enum] = ACTIONS(1932), - [anon_sym_fn] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_impl] = ACTIONS(1932), - [anon_sym_let] = ACTIONS(1932), - [anon_sym_loop] = ACTIONS(1932), - [anon_sym_match] = ACTIONS(1932), - [anon_sym_mod] = ACTIONS(1932), - [anon_sym_pub] = ACTIONS(1932), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_static] = ACTIONS(1932), - [anon_sym_struct] = ACTIONS(1932), - [anon_sym_trait] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_union] = ACTIONS(1932), - [anon_sym_unsafe] = ACTIONS(1932), - [anon_sym_use] = ACTIONS(1932), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_POUND] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1930), - [anon_sym_extern] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_COLON_COLON] = ACTIONS(1930), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_DOT_DOT] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_yield] = ACTIONS(1932), - [anon_sym_move] = ACTIONS(1932), - [sym_integer_literal] = ACTIONS(1930), - [aux_sym_string_literal_token1] = ACTIONS(1930), - [sym_char_literal] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1932), - [sym_super] = ACTIONS(1932), - [sym_crate] = ACTIONS(1932), - [sym_metavariable] = ACTIONS(1930), - [sym_raw_string_literal] = ACTIONS(1930), - [sym_float_literal] = ACTIONS(1930), + [ts_builtin_sym_end] = ACTIONS(1932), + [sym_identifier] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_macro_rules_BANG] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1932), + [anon_sym_RBRACE] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1932), + [anon_sym_u8] = ACTIONS(1934), + [anon_sym_i8] = ACTIONS(1934), + [anon_sym_u16] = ACTIONS(1934), + [anon_sym_i16] = ACTIONS(1934), + [anon_sym_u32] = ACTIONS(1934), + [anon_sym_i32] = ACTIONS(1934), + [anon_sym_u64] = ACTIONS(1934), + [anon_sym_i64] = ACTIONS(1934), + [anon_sym_u128] = ACTIONS(1934), + [anon_sym_i128] = ACTIONS(1934), + [anon_sym_isize] = ACTIONS(1934), + [anon_sym_usize] = ACTIONS(1934), + [anon_sym_f32] = ACTIONS(1934), + [anon_sym_f64] = ACTIONS(1934), + [anon_sym_bool] = ACTIONS(1934), + [anon_sym_str] = ACTIONS(1934), + [anon_sym_char] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_async] = ACTIONS(1934), + [anon_sym_break] = ACTIONS(1934), + [anon_sym_const] = ACTIONS(1934), + [anon_sym_continue] = ACTIONS(1934), + [anon_sym_default] = ACTIONS(1934), + [anon_sym_enum] = ACTIONS(1934), + [anon_sym_fn] = ACTIONS(1934), + [anon_sym_for] = ACTIONS(1934), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_impl] = ACTIONS(1934), + [anon_sym_let] = ACTIONS(1934), + [anon_sym_loop] = ACTIONS(1934), + [anon_sym_match] = ACTIONS(1934), + [anon_sym_mod] = ACTIONS(1934), + [anon_sym_pub] = ACTIONS(1934), + [anon_sym_return] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1934), + [anon_sym_struct] = ACTIONS(1934), + [anon_sym_trait] = ACTIONS(1934), + [anon_sym_type] = ACTIONS(1934), + [anon_sym_union] = ACTIONS(1934), + [anon_sym_unsafe] = ACTIONS(1934), + [anon_sym_use] = ACTIONS(1934), + [anon_sym_while] = ACTIONS(1934), + [anon_sym_POUND] = ACTIONS(1932), + [anon_sym_BANG] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1934), + [anon_sym_LT] = ACTIONS(1932), + [anon_sym_COLON_COLON] = ACTIONS(1932), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_DOT_DOT] = ACTIONS(1932), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_yield] = ACTIONS(1934), + [anon_sym_move] = ACTIONS(1934), + [sym_integer_literal] = ACTIONS(1932), + [aux_sym_string_literal_token1] = ACTIONS(1932), + [sym_char_literal] = ACTIONS(1932), + [anon_sym_true] = ACTIONS(1934), + [anon_sym_false] = ACTIONS(1934), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1934), + [sym_super] = ACTIONS(1934), + [sym_crate] = ACTIONS(1934), + [sym_metavariable] = ACTIONS(1932), + [sym_raw_string_literal] = ACTIONS(1932), + [sym_float_literal] = ACTIONS(1932), [sym_block_comment] = ACTIONS(3), }, [464] = { - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_macro_rules_BANG] = ACTIONS(1934), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_u8] = ACTIONS(1936), - [anon_sym_i8] = ACTIONS(1936), - [anon_sym_u16] = ACTIONS(1936), - [anon_sym_i16] = ACTIONS(1936), - [anon_sym_u32] = ACTIONS(1936), - [anon_sym_i32] = ACTIONS(1936), - [anon_sym_u64] = ACTIONS(1936), - [anon_sym_i64] = ACTIONS(1936), - [anon_sym_u128] = ACTIONS(1936), - [anon_sym_i128] = ACTIONS(1936), - [anon_sym_isize] = ACTIONS(1936), - [anon_sym_usize] = ACTIONS(1936), - [anon_sym_f32] = ACTIONS(1936), - [anon_sym_f64] = ACTIONS(1936), - [anon_sym_bool] = ACTIONS(1936), - [anon_sym_str] = ACTIONS(1936), - [anon_sym_char] = ACTIONS(1936), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_break] = ACTIONS(1936), - [anon_sym_const] = ACTIONS(1936), - [anon_sym_continue] = ACTIONS(1936), - [anon_sym_default] = ACTIONS(1936), - [anon_sym_enum] = ACTIONS(1936), - [anon_sym_fn] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_impl] = ACTIONS(1936), - [anon_sym_let] = ACTIONS(1936), - [anon_sym_loop] = ACTIONS(1936), - [anon_sym_match] = ACTIONS(1936), - [anon_sym_mod] = ACTIONS(1936), - [anon_sym_pub] = ACTIONS(1936), - [anon_sym_return] = ACTIONS(1936), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_struct] = ACTIONS(1936), - [anon_sym_trait] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_union] = ACTIONS(1936), - [anon_sym_unsafe] = ACTIONS(1936), - [anon_sym_use] = ACTIONS(1936), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_POUND] = ACTIONS(1934), - [anon_sym_BANG] = ACTIONS(1934), - [anon_sym_extern] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1934), - [anon_sym_COLON_COLON] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1934), - [anon_sym_DOT_DOT] = ACTIONS(1934), - [anon_sym_DASH] = ACTIONS(1934), - [anon_sym_PIPE] = ACTIONS(1934), - [anon_sym_yield] = ACTIONS(1936), - [anon_sym_move] = ACTIONS(1936), - [sym_integer_literal] = ACTIONS(1934), - [aux_sym_string_literal_token1] = ACTIONS(1934), - [sym_char_literal] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1936), - [sym_super] = ACTIONS(1936), - [sym_crate] = ACTIONS(1936), - [sym_metavariable] = ACTIONS(1934), - [sym_raw_string_literal] = ACTIONS(1934), - [sym_float_literal] = ACTIONS(1934), + [ts_builtin_sym_end] = ACTIONS(1936), + [sym_identifier] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_macro_rules_BANG] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1936), + [anon_sym_RBRACE] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_break] = ACTIONS(1938), + [anon_sym_const] = ACTIONS(1938), + [anon_sym_continue] = ACTIONS(1938), + [anon_sym_default] = ACTIONS(1938), + [anon_sym_enum] = ACTIONS(1938), + [anon_sym_fn] = ACTIONS(1938), + [anon_sym_for] = ACTIONS(1938), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_impl] = ACTIONS(1938), + [anon_sym_let] = ACTIONS(1938), + [anon_sym_loop] = ACTIONS(1938), + [anon_sym_match] = ACTIONS(1938), + [anon_sym_mod] = ACTIONS(1938), + [anon_sym_pub] = ACTIONS(1938), + [anon_sym_return] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_struct] = ACTIONS(1938), + [anon_sym_trait] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_union] = ACTIONS(1938), + [anon_sym_unsafe] = ACTIONS(1938), + [anon_sym_use] = ACTIONS(1938), + [anon_sym_while] = ACTIONS(1938), + [anon_sym_POUND] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_extern] = ACTIONS(1938), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_COLON_COLON] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1936), + [anon_sym_DOT_DOT] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_yield] = ACTIONS(1938), + [anon_sym_move] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(1936), + [aux_sym_string_literal_token1] = ACTIONS(1936), + [sym_char_literal] = ACTIONS(1936), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1938), + [sym_super] = ACTIONS(1938), + [sym_crate] = ACTIONS(1938), + [sym_metavariable] = ACTIONS(1936), + [sym_raw_string_literal] = ACTIONS(1936), + [sym_float_literal] = ACTIONS(1936), [sym_block_comment] = ACTIONS(3), }, [465] = { - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_macro_rules_BANG] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_u8] = ACTIONS(1940), - [anon_sym_i8] = ACTIONS(1940), - [anon_sym_u16] = ACTIONS(1940), - [anon_sym_i16] = ACTIONS(1940), - [anon_sym_u32] = ACTIONS(1940), - [anon_sym_i32] = ACTIONS(1940), - [anon_sym_u64] = ACTIONS(1940), - [anon_sym_i64] = ACTIONS(1940), - [anon_sym_u128] = ACTIONS(1940), - [anon_sym_i128] = ACTIONS(1940), - [anon_sym_isize] = ACTIONS(1940), - [anon_sym_usize] = ACTIONS(1940), - [anon_sym_f32] = ACTIONS(1940), - [anon_sym_f64] = ACTIONS(1940), - [anon_sym_bool] = ACTIONS(1940), - [anon_sym_str] = ACTIONS(1940), - [anon_sym_char] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_const] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_default] = ACTIONS(1940), - [anon_sym_enum] = ACTIONS(1940), - [anon_sym_fn] = ACTIONS(1940), - [anon_sym_for] = ACTIONS(1940), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_impl] = ACTIONS(1940), - [anon_sym_let] = ACTIONS(1940), - [anon_sym_loop] = ACTIONS(1940), - [anon_sym_match] = ACTIONS(1940), - [anon_sym_mod] = ACTIONS(1940), - [anon_sym_pub] = ACTIONS(1940), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_struct] = ACTIONS(1940), - [anon_sym_trait] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_union] = ACTIONS(1940), - [anon_sym_unsafe] = ACTIONS(1940), - [anon_sym_use] = ACTIONS(1940), - [anon_sym_while] = ACTIONS(1940), - [anon_sym_POUND] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1938), - [anon_sym_extern] = ACTIONS(1940), - [anon_sym_LT] = ACTIONS(1938), - [anon_sym_COLON_COLON] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1938), - [anon_sym_DASH] = ACTIONS(1938), - [anon_sym_PIPE] = ACTIONS(1938), - [anon_sym_yield] = ACTIONS(1940), - [anon_sym_move] = ACTIONS(1940), - [sym_integer_literal] = ACTIONS(1938), - [aux_sym_string_literal_token1] = ACTIONS(1938), - [sym_char_literal] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1940), - [sym_super] = ACTIONS(1940), - [sym_crate] = ACTIONS(1940), - [sym_metavariable] = ACTIONS(1938), - [sym_raw_string_literal] = ACTIONS(1938), - [sym_float_literal] = ACTIONS(1938), + [ts_builtin_sym_end] = ACTIONS(1940), + [sym_identifier] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_macro_rules_BANG] = ACTIONS(1940), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1940), + [anon_sym_RBRACE] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1940), + [anon_sym_u8] = ACTIONS(1942), + [anon_sym_i8] = ACTIONS(1942), + [anon_sym_u16] = ACTIONS(1942), + [anon_sym_i16] = ACTIONS(1942), + [anon_sym_u32] = ACTIONS(1942), + [anon_sym_i32] = ACTIONS(1942), + [anon_sym_u64] = ACTIONS(1942), + [anon_sym_i64] = ACTIONS(1942), + [anon_sym_u128] = ACTIONS(1942), + [anon_sym_i128] = ACTIONS(1942), + [anon_sym_isize] = ACTIONS(1942), + [anon_sym_usize] = ACTIONS(1942), + [anon_sym_f32] = ACTIONS(1942), + [anon_sym_f64] = ACTIONS(1942), + [anon_sym_bool] = ACTIONS(1942), + [anon_sym_str] = ACTIONS(1942), + [anon_sym_char] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_async] = ACTIONS(1942), + [anon_sym_break] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1942), + [anon_sym_continue] = ACTIONS(1942), + [anon_sym_default] = ACTIONS(1942), + [anon_sym_enum] = ACTIONS(1942), + [anon_sym_fn] = ACTIONS(1942), + [anon_sym_for] = ACTIONS(1942), + [anon_sym_if] = ACTIONS(1942), + [anon_sym_impl] = ACTIONS(1942), + [anon_sym_let] = ACTIONS(1942), + [anon_sym_loop] = ACTIONS(1942), + [anon_sym_match] = ACTIONS(1942), + [anon_sym_mod] = ACTIONS(1942), + [anon_sym_pub] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1942), + [anon_sym_struct] = ACTIONS(1942), + [anon_sym_trait] = ACTIONS(1942), + [anon_sym_type] = ACTIONS(1942), + [anon_sym_union] = ACTIONS(1942), + [anon_sym_unsafe] = ACTIONS(1942), + [anon_sym_use] = ACTIONS(1942), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_POUND] = ACTIONS(1940), + [anon_sym_BANG] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1942), + [anon_sym_LT] = ACTIONS(1940), + [anon_sym_COLON_COLON] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1940), + [anon_sym_yield] = ACTIONS(1942), + [anon_sym_move] = ACTIONS(1942), + [sym_integer_literal] = ACTIONS(1940), + [aux_sym_string_literal_token1] = ACTIONS(1940), + [sym_char_literal] = ACTIONS(1940), + [anon_sym_true] = ACTIONS(1942), + [anon_sym_false] = ACTIONS(1942), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1942), + [sym_super] = ACTIONS(1942), + [sym_crate] = ACTIONS(1942), + [sym_metavariable] = ACTIONS(1940), + [sym_raw_string_literal] = ACTIONS(1940), + [sym_float_literal] = ACTIONS(1940), [sym_block_comment] = ACTIONS(3), }, [466] = { - [ts_builtin_sym_end] = ACTIONS(1942), - [sym_identifier] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_macro_rules_BANG] = ACTIONS(1942), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_RBRACE] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1942), - [anon_sym_u8] = ACTIONS(1944), - [anon_sym_i8] = ACTIONS(1944), - [anon_sym_u16] = ACTIONS(1944), - [anon_sym_i16] = ACTIONS(1944), - [anon_sym_u32] = ACTIONS(1944), - [anon_sym_i32] = ACTIONS(1944), - [anon_sym_u64] = ACTIONS(1944), - [anon_sym_i64] = ACTIONS(1944), - [anon_sym_u128] = ACTIONS(1944), - [anon_sym_i128] = ACTIONS(1944), - [anon_sym_isize] = ACTIONS(1944), - [anon_sym_usize] = ACTIONS(1944), - [anon_sym_f32] = ACTIONS(1944), - [anon_sym_f64] = ACTIONS(1944), - [anon_sym_bool] = ACTIONS(1944), - [anon_sym_str] = ACTIONS(1944), - [anon_sym_char] = ACTIONS(1944), - [anon_sym_SQUOTE] = ACTIONS(1944), - [anon_sym_async] = ACTIONS(1944), - [anon_sym_break] = ACTIONS(1944), - [anon_sym_const] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(1944), - [anon_sym_default] = ACTIONS(1944), - [anon_sym_enum] = ACTIONS(1944), - [anon_sym_fn] = ACTIONS(1944), - [anon_sym_for] = ACTIONS(1944), - [anon_sym_if] = ACTIONS(1944), - [anon_sym_impl] = ACTIONS(1944), - [anon_sym_let] = ACTIONS(1944), - [anon_sym_loop] = ACTIONS(1944), - [anon_sym_match] = ACTIONS(1944), - [anon_sym_mod] = ACTIONS(1944), - [anon_sym_pub] = ACTIONS(1944), - [anon_sym_return] = ACTIONS(1944), - [anon_sym_static] = ACTIONS(1944), - [anon_sym_struct] = ACTIONS(1944), - [anon_sym_trait] = ACTIONS(1944), - [anon_sym_type] = ACTIONS(1944), - [anon_sym_union] = ACTIONS(1944), - [anon_sym_unsafe] = ACTIONS(1944), - [anon_sym_use] = ACTIONS(1944), - [anon_sym_while] = ACTIONS(1944), - [anon_sym_POUND] = ACTIONS(1942), - [anon_sym_BANG] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1944), - [anon_sym_LT] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_DOT_DOT] = ACTIONS(1942), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_PIPE] = ACTIONS(1942), - [anon_sym_yield] = ACTIONS(1944), - [anon_sym_move] = ACTIONS(1944), - [sym_integer_literal] = ACTIONS(1942), - [aux_sym_string_literal_token1] = ACTIONS(1942), - [sym_char_literal] = ACTIONS(1942), - [anon_sym_true] = ACTIONS(1944), - [anon_sym_false] = ACTIONS(1944), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1944), - [sym_super] = ACTIONS(1944), - [sym_crate] = ACTIONS(1944), - [sym_metavariable] = ACTIONS(1942), - [sym_raw_string_literal] = ACTIONS(1942), - [sym_float_literal] = ACTIONS(1942), + [ts_builtin_sym_end] = ACTIONS(1944), + [sym_identifier] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1944), + [anon_sym_macro_rules_BANG] = ACTIONS(1944), + [anon_sym_LPAREN] = ACTIONS(1944), + [anon_sym_LBRACE] = ACTIONS(1944), + [anon_sym_RBRACE] = ACTIONS(1944), + [anon_sym_LBRACK] = ACTIONS(1944), + [anon_sym_STAR] = ACTIONS(1944), + [anon_sym_u8] = ACTIONS(1946), + [anon_sym_i8] = ACTIONS(1946), + [anon_sym_u16] = ACTIONS(1946), + [anon_sym_i16] = ACTIONS(1946), + [anon_sym_u32] = ACTIONS(1946), + [anon_sym_i32] = ACTIONS(1946), + [anon_sym_u64] = ACTIONS(1946), + [anon_sym_i64] = ACTIONS(1946), + [anon_sym_u128] = ACTIONS(1946), + [anon_sym_i128] = ACTIONS(1946), + [anon_sym_isize] = ACTIONS(1946), + [anon_sym_usize] = ACTIONS(1946), + [anon_sym_f32] = ACTIONS(1946), + [anon_sym_f64] = ACTIONS(1946), + [anon_sym_bool] = ACTIONS(1946), + [anon_sym_str] = ACTIONS(1946), + [anon_sym_char] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1946), + [anon_sym_async] = ACTIONS(1946), + [anon_sym_break] = ACTIONS(1946), + [anon_sym_const] = ACTIONS(1946), + [anon_sym_continue] = ACTIONS(1946), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_enum] = ACTIONS(1946), + [anon_sym_fn] = ACTIONS(1946), + [anon_sym_for] = ACTIONS(1946), + [anon_sym_if] = ACTIONS(1946), + [anon_sym_impl] = ACTIONS(1946), + [anon_sym_let] = ACTIONS(1946), + [anon_sym_loop] = ACTIONS(1946), + [anon_sym_match] = ACTIONS(1946), + [anon_sym_mod] = ACTIONS(1946), + [anon_sym_pub] = ACTIONS(1946), + [anon_sym_return] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1946), + [anon_sym_struct] = ACTIONS(1946), + [anon_sym_trait] = ACTIONS(1946), + [anon_sym_type] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_unsafe] = ACTIONS(1946), + [anon_sym_use] = ACTIONS(1946), + [anon_sym_while] = ACTIONS(1946), + [anon_sym_POUND] = ACTIONS(1944), + [anon_sym_BANG] = ACTIONS(1944), + [anon_sym_extern] = ACTIONS(1946), + [anon_sym_LT] = ACTIONS(1944), + [anon_sym_COLON_COLON] = ACTIONS(1944), + [anon_sym_AMP] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DASH] = ACTIONS(1944), + [anon_sym_PIPE] = ACTIONS(1944), + [anon_sym_yield] = ACTIONS(1946), + [anon_sym_move] = ACTIONS(1946), + [sym_integer_literal] = ACTIONS(1944), + [aux_sym_string_literal_token1] = ACTIONS(1944), + [sym_char_literal] = ACTIONS(1944), + [anon_sym_true] = ACTIONS(1946), + [anon_sym_false] = ACTIONS(1946), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1946), + [sym_super] = ACTIONS(1946), + [sym_crate] = ACTIONS(1946), + [sym_metavariable] = ACTIONS(1944), + [sym_raw_string_literal] = ACTIONS(1944), + [sym_float_literal] = ACTIONS(1944), [sym_block_comment] = ACTIONS(3), }, [467] = { - [ts_builtin_sym_end] = ACTIONS(1946), - [sym_identifier] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1946), - [anon_sym_macro_rules_BANG] = ACTIONS(1946), - [anon_sym_LPAREN] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_RBRACE] = ACTIONS(1946), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1946), - [anon_sym_u8] = ACTIONS(1948), - [anon_sym_i8] = ACTIONS(1948), - [anon_sym_u16] = ACTIONS(1948), - [anon_sym_i16] = ACTIONS(1948), - [anon_sym_u32] = ACTIONS(1948), - [anon_sym_i32] = ACTIONS(1948), - [anon_sym_u64] = ACTIONS(1948), - [anon_sym_i64] = ACTIONS(1948), - [anon_sym_u128] = ACTIONS(1948), - [anon_sym_i128] = ACTIONS(1948), - [anon_sym_isize] = ACTIONS(1948), - [anon_sym_usize] = ACTIONS(1948), - [anon_sym_f32] = ACTIONS(1948), - [anon_sym_f64] = ACTIONS(1948), - [anon_sym_bool] = ACTIONS(1948), - [anon_sym_str] = ACTIONS(1948), - [anon_sym_char] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_async] = ACTIONS(1948), - [anon_sym_break] = ACTIONS(1948), - [anon_sym_const] = ACTIONS(1948), - [anon_sym_continue] = ACTIONS(1948), - [anon_sym_default] = ACTIONS(1948), - [anon_sym_enum] = ACTIONS(1948), - [anon_sym_fn] = ACTIONS(1948), - [anon_sym_for] = ACTIONS(1948), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_impl] = ACTIONS(1948), - [anon_sym_let] = ACTIONS(1948), - [anon_sym_loop] = ACTIONS(1948), - [anon_sym_match] = ACTIONS(1948), - [anon_sym_mod] = ACTIONS(1948), - [anon_sym_pub] = ACTIONS(1948), - [anon_sym_return] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1948), - [anon_sym_struct] = ACTIONS(1948), - [anon_sym_trait] = ACTIONS(1948), - [anon_sym_type] = ACTIONS(1948), - [anon_sym_union] = ACTIONS(1948), - [anon_sym_unsafe] = ACTIONS(1948), - [anon_sym_use] = ACTIONS(1948), - [anon_sym_while] = ACTIONS(1948), - [anon_sym_POUND] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1948), - [anon_sym_LT] = ACTIONS(1946), - [anon_sym_COLON_COLON] = ACTIONS(1946), - [anon_sym_AMP] = ACTIONS(1946), - [anon_sym_DOT_DOT] = ACTIONS(1946), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PIPE] = ACTIONS(1946), - [anon_sym_yield] = ACTIONS(1948), - [anon_sym_move] = ACTIONS(1948), - [sym_integer_literal] = ACTIONS(1946), - [aux_sym_string_literal_token1] = ACTIONS(1946), - [sym_char_literal] = ACTIONS(1946), - [anon_sym_true] = ACTIONS(1948), - [anon_sym_false] = ACTIONS(1948), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1948), - [sym_super] = ACTIONS(1948), - [sym_crate] = ACTIONS(1948), - [sym_metavariable] = ACTIONS(1946), - [sym_raw_string_literal] = ACTIONS(1946), - [sym_float_literal] = ACTIONS(1946), + [ts_builtin_sym_end] = ACTIONS(1948), + [sym_identifier] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1948), + [anon_sym_macro_rules_BANG] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1948), + [anon_sym_RBRACE] = ACTIONS(1948), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_u8] = ACTIONS(1950), + [anon_sym_i8] = ACTIONS(1950), + [anon_sym_u16] = ACTIONS(1950), + [anon_sym_i16] = ACTIONS(1950), + [anon_sym_u32] = ACTIONS(1950), + [anon_sym_i32] = ACTIONS(1950), + [anon_sym_u64] = ACTIONS(1950), + [anon_sym_i64] = ACTIONS(1950), + [anon_sym_u128] = ACTIONS(1950), + [anon_sym_i128] = ACTIONS(1950), + [anon_sym_isize] = ACTIONS(1950), + [anon_sym_usize] = ACTIONS(1950), + [anon_sym_f32] = ACTIONS(1950), + [anon_sym_f64] = ACTIONS(1950), + [anon_sym_bool] = ACTIONS(1950), + [anon_sym_str] = ACTIONS(1950), + [anon_sym_char] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_async] = ACTIONS(1950), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_const] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1950), + [anon_sym_default] = ACTIONS(1950), + [anon_sym_enum] = ACTIONS(1950), + [anon_sym_fn] = ACTIONS(1950), + [anon_sym_for] = ACTIONS(1950), + [anon_sym_if] = ACTIONS(1950), + [anon_sym_impl] = ACTIONS(1950), + [anon_sym_let] = ACTIONS(1950), + [anon_sym_loop] = ACTIONS(1950), + [anon_sym_match] = ACTIONS(1950), + [anon_sym_mod] = ACTIONS(1950), + [anon_sym_pub] = ACTIONS(1950), + [anon_sym_return] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1950), + [anon_sym_struct] = ACTIONS(1950), + [anon_sym_trait] = ACTIONS(1950), + [anon_sym_type] = ACTIONS(1950), + [anon_sym_union] = ACTIONS(1950), + [anon_sym_unsafe] = ACTIONS(1950), + [anon_sym_use] = ACTIONS(1950), + [anon_sym_while] = ACTIONS(1950), + [anon_sym_POUND] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1950), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_COLON_COLON] = ACTIONS(1948), + [anon_sym_AMP] = ACTIONS(1948), + [anon_sym_DOT_DOT] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_yield] = ACTIONS(1950), + [anon_sym_move] = ACTIONS(1950), + [sym_integer_literal] = ACTIONS(1948), + [aux_sym_string_literal_token1] = ACTIONS(1948), + [sym_char_literal] = ACTIONS(1948), + [anon_sym_true] = ACTIONS(1950), + [anon_sym_false] = ACTIONS(1950), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1950), + [sym_super] = ACTIONS(1950), + [sym_crate] = ACTIONS(1950), + [sym_metavariable] = ACTIONS(1948), + [sym_raw_string_literal] = ACTIONS(1948), + [sym_float_literal] = ACTIONS(1948), [sym_block_comment] = ACTIONS(3), }, [468] = { - [ts_builtin_sym_end] = ACTIONS(1950), - [sym_identifier] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1950), - [anon_sym_macro_rules_BANG] = ACTIONS(1950), - [anon_sym_LPAREN] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1950), - [anon_sym_RBRACE] = ACTIONS(1950), - [anon_sym_LBRACK] = ACTIONS(1950), - [anon_sym_STAR] = ACTIONS(1950), - [anon_sym_u8] = ACTIONS(1952), - [anon_sym_i8] = ACTIONS(1952), - [anon_sym_u16] = ACTIONS(1952), - [anon_sym_i16] = ACTIONS(1952), - [anon_sym_u32] = ACTIONS(1952), - [anon_sym_i32] = ACTIONS(1952), - [anon_sym_u64] = ACTIONS(1952), - [anon_sym_i64] = ACTIONS(1952), - [anon_sym_u128] = ACTIONS(1952), - [anon_sym_i128] = ACTIONS(1952), - [anon_sym_isize] = ACTIONS(1952), - [anon_sym_usize] = ACTIONS(1952), - [anon_sym_f32] = ACTIONS(1952), - [anon_sym_f64] = ACTIONS(1952), - [anon_sym_bool] = ACTIONS(1952), - [anon_sym_str] = ACTIONS(1952), - [anon_sym_char] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_async] = ACTIONS(1952), - [anon_sym_break] = ACTIONS(1952), - [anon_sym_const] = ACTIONS(1952), - [anon_sym_continue] = ACTIONS(1952), - [anon_sym_default] = ACTIONS(1952), - [anon_sym_enum] = ACTIONS(1952), - [anon_sym_fn] = ACTIONS(1952), - [anon_sym_for] = ACTIONS(1952), - [anon_sym_if] = ACTIONS(1952), - [anon_sym_impl] = ACTIONS(1952), - [anon_sym_let] = ACTIONS(1952), - [anon_sym_loop] = ACTIONS(1952), - [anon_sym_match] = ACTIONS(1952), - [anon_sym_mod] = ACTIONS(1952), - [anon_sym_pub] = ACTIONS(1952), - [anon_sym_return] = ACTIONS(1952), - [anon_sym_static] = ACTIONS(1952), - [anon_sym_struct] = ACTIONS(1952), - [anon_sym_trait] = ACTIONS(1952), - [anon_sym_type] = ACTIONS(1952), - [anon_sym_union] = ACTIONS(1952), - [anon_sym_unsafe] = ACTIONS(1952), - [anon_sym_use] = ACTIONS(1952), - [anon_sym_while] = ACTIONS(1952), - [anon_sym_POUND] = ACTIONS(1950), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_extern] = ACTIONS(1952), - [anon_sym_LT] = ACTIONS(1950), - [anon_sym_COLON_COLON] = ACTIONS(1950), - [anon_sym_AMP] = ACTIONS(1950), - [anon_sym_DOT_DOT] = ACTIONS(1950), - [anon_sym_DASH] = ACTIONS(1950), - [anon_sym_PIPE] = ACTIONS(1950), - [anon_sym_yield] = ACTIONS(1952), - [anon_sym_move] = ACTIONS(1952), - [sym_integer_literal] = ACTIONS(1950), - [aux_sym_string_literal_token1] = ACTIONS(1950), - [sym_char_literal] = ACTIONS(1950), - [anon_sym_true] = ACTIONS(1952), - [anon_sym_false] = ACTIONS(1952), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1952), - [sym_super] = ACTIONS(1952), - [sym_crate] = ACTIONS(1952), - [sym_metavariable] = ACTIONS(1950), - [sym_raw_string_literal] = ACTIONS(1950), - [sym_float_literal] = ACTIONS(1950), + [ts_builtin_sym_end] = ACTIONS(1952), + [sym_identifier] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1952), + [anon_sym_macro_rules_BANG] = ACTIONS(1952), + [anon_sym_LPAREN] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1952), + [anon_sym_RBRACE] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(1952), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_u8] = ACTIONS(1954), + [anon_sym_i8] = ACTIONS(1954), + [anon_sym_u16] = ACTIONS(1954), + [anon_sym_i16] = ACTIONS(1954), + [anon_sym_u32] = ACTIONS(1954), + [anon_sym_i32] = ACTIONS(1954), + [anon_sym_u64] = ACTIONS(1954), + [anon_sym_i64] = ACTIONS(1954), + [anon_sym_u128] = ACTIONS(1954), + [anon_sym_i128] = ACTIONS(1954), + [anon_sym_isize] = ACTIONS(1954), + [anon_sym_usize] = ACTIONS(1954), + [anon_sym_f32] = ACTIONS(1954), + [anon_sym_f64] = ACTIONS(1954), + [anon_sym_bool] = ACTIONS(1954), + [anon_sym_str] = ACTIONS(1954), + [anon_sym_char] = ACTIONS(1954), + [anon_sym_SQUOTE] = ACTIONS(1954), + [anon_sym_async] = ACTIONS(1954), + [anon_sym_break] = ACTIONS(1954), + [anon_sym_const] = ACTIONS(1954), + [anon_sym_continue] = ACTIONS(1954), + [anon_sym_default] = ACTIONS(1954), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_fn] = ACTIONS(1954), + [anon_sym_for] = ACTIONS(1954), + [anon_sym_if] = ACTIONS(1954), + [anon_sym_impl] = ACTIONS(1954), + [anon_sym_let] = ACTIONS(1954), + [anon_sym_loop] = ACTIONS(1954), + [anon_sym_match] = ACTIONS(1954), + [anon_sym_mod] = ACTIONS(1954), + [anon_sym_pub] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1954), + [anon_sym_static] = ACTIONS(1954), + [anon_sym_struct] = ACTIONS(1954), + [anon_sym_trait] = ACTIONS(1954), + [anon_sym_type] = ACTIONS(1954), + [anon_sym_union] = ACTIONS(1954), + [anon_sym_unsafe] = ACTIONS(1954), + [anon_sym_use] = ACTIONS(1954), + [anon_sym_while] = ACTIONS(1954), + [anon_sym_POUND] = ACTIONS(1952), + [anon_sym_BANG] = ACTIONS(1952), + [anon_sym_extern] = ACTIONS(1954), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_COLON_COLON] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1952), + [anon_sym_DOT_DOT] = ACTIONS(1952), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_yield] = ACTIONS(1954), + [anon_sym_move] = ACTIONS(1954), + [sym_integer_literal] = ACTIONS(1952), + [aux_sym_string_literal_token1] = ACTIONS(1952), + [sym_char_literal] = ACTIONS(1952), + [anon_sym_true] = ACTIONS(1954), + [anon_sym_false] = ACTIONS(1954), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1954), + [sym_super] = ACTIONS(1954), + [sym_crate] = ACTIONS(1954), + [sym_metavariable] = ACTIONS(1952), + [sym_raw_string_literal] = ACTIONS(1952), + [sym_float_literal] = ACTIONS(1952), [sym_block_comment] = ACTIONS(3), }, [469] = { - [ts_builtin_sym_end] = ACTIONS(1954), - [sym_identifier] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym_macro_rules_BANG] = ACTIONS(1954), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_STAR] = ACTIONS(1954), - [anon_sym_u8] = ACTIONS(1956), - [anon_sym_i8] = ACTIONS(1956), - [anon_sym_u16] = ACTIONS(1956), - [anon_sym_i16] = ACTIONS(1956), - [anon_sym_u32] = ACTIONS(1956), - [anon_sym_i32] = ACTIONS(1956), - [anon_sym_u64] = ACTIONS(1956), - [anon_sym_i64] = ACTIONS(1956), - [anon_sym_u128] = ACTIONS(1956), - [anon_sym_i128] = ACTIONS(1956), - [anon_sym_isize] = ACTIONS(1956), - [anon_sym_usize] = ACTIONS(1956), - [anon_sym_f32] = ACTIONS(1956), - [anon_sym_f64] = ACTIONS(1956), - [anon_sym_bool] = ACTIONS(1956), - [anon_sym_str] = ACTIONS(1956), - [anon_sym_char] = ACTIONS(1956), - [anon_sym_SQUOTE] = ACTIONS(1956), - [anon_sym_async] = ACTIONS(1956), - [anon_sym_break] = ACTIONS(1956), - [anon_sym_const] = ACTIONS(1956), - [anon_sym_continue] = ACTIONS(1956), - [anon_sym_default] = ACTIONS(1956), - [anon_sym_enum] = ACTIONS(1956), - [anon_sym_fn] = ACTIONS(1956), - [anon_sym_for] = ACTIONS(1956), - [anon_sym_if] = ACTIONS(1956), - [anon_sym_impl] = ACTIONS(1956), - [anon_sym_let] = ACTIONS(1956), - [anon_sym_loop] = ACTIONS(1956), - [anon_sym_match] = ACTIONS(1956), - [anon_sym_mod] = ACTIONS(1956), - [anon_sym_pub] = ACTIONS(1956), - [anon_sym_return] = ACTIONS(1956), - [anon_sym_static] = ACTIONS(1956), - [anon_sym_struct] = ACTIONS(1956), - [anon_sym_trait] = ACTIONS(1956), - [anon_sym_type] = ACTIONS(1956), - [anon_sym_union] = ACTIONS(1956), - [anon_sym_unsafe] = ACTIONS(1956), - [anon_sym_use] = ACTIONS(1956), - [anon_sym_while] = ACTIONS(1956), - [anon_sym_POUND] = ACTIONS(1954), - [anon_sym_BANG] = ACTIONS(1954), - [anon_sym_extern] = ACTIONS(1956), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_COLON_COLON] = ACTIONS(1954), - [anon_sym_AMP] = ACTIONS(1954), - [anon_sym_DOT_DOT] = ACTIONS(1954), - [anon_sym_DASH] = ACTIONS(1954), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_yield] = ACTIONS(1956), - [anon_sym_move] = ACTIONS(1956), - [sym_integer_literal] = ACTIONS(1954), - [aux_sym_string_literal_token1] = ACTIONS(1954), - [sym_char_literal] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1956), - [sym_super] = ACTIONS(1956), - [sym_crate] = ACTIONS(1956), - [sym_metavariable] = ACTIONS(1954), - [sym_raw_string_literal] = ACTIONS(1954), - [sym_float_literal] = ACTIONS(1954), + [sym_attribute_item] = STATE(547), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_match_arm] = STATE(486), + [sym_last_match_arm] = STATE(2454), + [sym_match_pattern] = STATE(2387), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1981), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_enum_variant_list_repeat1] = STATE(547), + [aux_sym_match_block_repeat1] = STATE(486), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1956), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [470] = { @@ -61288,14 +61286,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [481] = { - [sym__token_pattern] = STATE(485), - [sym_token_tree_pattern] = STATE(485), - [sym_token_binding_pattern] = STATE(485), - [sym_token_repetition_pattern] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_pattern_repeat1] = STATE(485), + [sym__token_pattern] = STATE(497), + [sym_token_tree_pattern] = STATE(497), + [sym_token_binding_pattern] = STATE(497), + [sym_token_repetition_pattern] = STATE(497), + [sym__literal] = STATE(497), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(497), [sym_identifier] = ACTIONS(2002), [anon_sym_LPAREN] = ACTIONS(2004), [anon_sym_LBRACE] = ACTIONS(2006), @@ -61364,14 +61362,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [482] = { - [sym__token_pattern] = STATE(498), - [sym_token_tree_pattern] = STATE(498), - [sym_token_binding_pattern] = STATE(498), - [sym_token_repetition_pattern] = STATE(498), - [sym__literal] = STATE(498), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_pattern_repeat1] = STATE(498), + [sym__token_pattern] = STATE(491), + [sym_token_tree_pattern] = STATE(491), + [sym_token_binding_pattern] = STATE(491), + [sym_token_repetition_pattern] = STATE(491), + [sym__literal] = STATE(491), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(491), [sym_identifier] = ACTIONS(2022), [anon_sym_LPAREN] = ACTIONS(2004), [anon_sym_RPAREN] = ACTIONS(2024), @@ -61433,255 +61431,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(912), [sym_self] = ACTIONS(2022), [sym_super] = ACTIONS(2022), - [sym_crate] = ACTIONS(2022), - [sym_metavariable] = ACTIONS(2020), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), - [sym_block_comment] = ACTIONS(3), - }, - [483] = { - [sym_attribute_item] = STATE(545), - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_match_arm] = STATE(500), - [sym_last_match_arm] = STATE(2339), - [sym_match_pattern] = STATE(2531), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2068), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_enum_variant_list_repeat1] = STATE(545), - [aux_sym_match_block_repeat1] = STATE(500), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [484] = { - [sym__token_pattern] = STATE(239), - [sym_token_tree_pattern] = STATE(239), - [sym_token_binding_pattern] = STATE(239), - [sym_token_repetition_pattern] = STATE(239), - [sym__literal] = STATE(239), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_pattern_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_RPAREN] = ACTIONS(2028), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2026), - [anon_sym_i8] = ACTIONS(2026), - [anon_sym_u16] = ACTIONS(2026), - [anon_sym_i16] = ACTIONS(2026), - [anon_sym_u32] = ACTIONS(2026), - [anon_sym_i32] = ACTIONS(2026), - [anon_sym_u64] = ACTIONS(2026), - [anon_sym_i64] = ACTIONS(2026), - [anon_sym_u128] = ACTIONS(2026), - [anon_sym_i128] = ACTIONS(2026), - [anon_sym_isize] = ACTIONS(2026), - [anon_sym_usize] = ACTIONS(2026), - [anon_sym_f32] = ACTIONS(2026), - [anon_sym_f64] = ACTIONS(2026), - [anon_sym_bool] = ACTIONS(2026), - [anon_sym_str] = ACTIONS(2026), - [anon_sym_char] = ACTIONS(2026), - [aux_sym__non_special_token_token1] = ACTIONS(2026), - [anon_sym_SQUOTE] = ACTIONS(2026), - [anon_sym_as] = ACTIONS(2026), - [anon_sym_async] = ACTIONS(2026), - [anon_sym_await] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_fn] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_impl] = ACTIONS(2026), - [anon_sym_let] = ACTIONS(2026), - [anon_sym_loop] = ACTIONS(2026), - [anon_sym_match] = ACTIONS(2026), - [anon_sym_mod] = ACTIONS(2026), - [anon_sym_pub] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_trait] = ACTIONS(2026), - [anon_sym_type] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_unsafe] = ACTIONS(2026), - [anon_sym_use] = ACTIONS(2026), - [anon_sym_where] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [sym_mutable_specifier] = ACTIONS(2026), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2016), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_crate] = ACTIONS(2026), - [sym_metavariable] = ACTIONS(2020), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), - [sym_block_comment] = ACTIONS(3), - }, - [485] = { - [sym__token_pattern] = STATE(239), - [sym_token_tree_pattern] = STATE(239), - [sym_token_binding_pattern] = STATE(239), - [sym_token_repetition_pattern] = STATE(239), - [sym__literal] = STATE(239), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_pattern_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2026), - [anon_sym_i8] = ACTIONS(2026), - [anon_sym_u16] = ACTIONS(2026), - [anon_sym_i16] = ACTIONS(2026), - [anon_sym_u32] = ACTIONS(2026), - [anon_sym_i32] = ACTIONS(2026), - [anon_sym_u64] = ACTIONS(2026), - [anon_sym_i64] = ACTIONS(2026), - [anon_sym_u128] = ACTIONS(2026), - [anon_sym_i128] = ACTIONS(2026), - [anon_sym_isize] = ACTIONS(2026), - [anon_sym_usize] = ACTIONS(2026), - [anon_sym_f32] = ACTIONS(2026), - [anon_sym_f64] = ACTIONS(2026), - [anon_sym_bool] = ACTIONS(2026), - [anon_sym_str] = ACTIONS(2026), - [anon_sym_char] = ACTIONS(2026), - [aux_sym__non_special_token_token1] = ACTIONS(2026), - [anon_sym_SQUOTE] = ACTIONS(2026), - [anon_sym_as] = ACTIONS(2026), - [anon_sym_async] = ACTIONS(2026), - [anon_sym_await] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_fn] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_impl] = ACTIONS(2026), - [anon_sym_let] = ACTIONS(2026), - [anon_sym_loop] = ACTIONS(2026), - [anon_sym_match] = ACTIONS(2026), - [anon_sym_mod] = ACTIONS(2026), - [anon_sym_pub] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_trait] = ACTIONS(2026), - [anon_sym_type] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_unsafe] = ACTIONS(2026), - [anon_sym_use] = ACTIONS(2026), - [anon_sym_where] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [sym_mutable_specifier] = ACTIONS(2026), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2016), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_crate] = ACTIONS(2026), - [sym_metavariable] = ACTIONS(2020), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), - [sym_block_comment] = ACTIONS(3), - }, - [486] = { - [sym__token_pattern] = STATE(239), - [sym_token_tree_pattern] = STATE(239), - [sym_token_binding_pattern] = STATE(239), - [sym_token_repetition_pattern] = STATE(239), - [sym__literal] = STATE(239), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_pattern_repeat1] = STATE(239), + [sym_crate] = ACTIONS(2022), + [sym_metavariable] = ACTIONS(2020), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), + [sym_block_comment] = ACTIONS(3), + }, + [483] = { + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_RBRACK] = ACTIONS(2028), - [anon_sym_DOLLAR] = ACTIONS(2012), + [anon_sym_LPAREN] = ACTIONS(2029), + [anon_sym_RPAREN] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2032), + [anon_sym_LBRACK] = ACTIONS(2037), + [anon_sym_RBRACK] = ACTIONS(2032), + [anon_sym_DOLLAR] = ACTIONS(2040), [anon_sym_u8] = ACTIONS(2026), [anon_sym_i8] = ACTIONS(2026), [anon_sym_u16] = ACTIONS(2026), @@ -61729,81 +61500,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2026), [anon_sym_while] = ACTIONS(2026), [sym_mutable_specifier] = ACTIONS(2026), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2016), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), + [sym_integer_literal] = ACTIONS(2043), + [aux_sym_string_literal_token1] = ACTIONS(2046), + [sym_char_literal] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(2049), + [anon_sym_false] = ACTIONS(2049), [sym_line_comment] = ACTIONS(912), [sym_self] = ACTIONS(2026), [sym_super] = ACTIONS(2026), [sym_crate] = ACTIONS(2026), - [sym_metavariable] = ACTIONS(2020), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [sym_raw_string_literal] = ACTIONS(2043), + [sym_float_literal] = ACTIONS(2043), [sym_block_comment] = ACTIONS(3), }, - [487] = { - [sym_attribute_item] = STATE(545), - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), + [484] = { + [sym_attribute_item] = STATE(547), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), [sym_match_arm] = STATE(500), - [sym_last_match_arm] = STATE(2408), - [sym_match_pattern] = STATE(2531), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2068), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_enum_variant_list_repeat1] = STATE(545), + [sym_last_match_arm] = STATE(2333), + [sym_match_pattern] = STATE(2387), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1981), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_enum_variant_list_repeat1] = STATE(547), [aux_sym_match_block_repeat1] = STATE(500), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -61811,75 +61581,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [488] = { - [sym_attribute_item] = STATE(545), - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), + [485] = { + [sym_token_tree] = STATE(485), + [sym_token_repetition] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2052), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_RPAREN] = ACTIONS(2058), + [anon_sym_LBRACE] = ACTIONS(2060), + [anon_sym_RBRACE] = ACTIONS(2058), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_RBRACK] = ACTIONS(2058), + [anon_sym_DOLLAR] = ACTIONS(2066), + [anon_sym_u8] = ACTIONS(2052), + [anon_sym_i8] = ACTIONS(2052), + [anon_sym_u16] = ACTIONS(2052), + [anon_sym_i16] = ACTIONS(2052), + [anon_sym_u32] = ACTIONS(2052), + [anon_sym_i32] = ACTIONS(2052), + [anon_sym_u64] = ACTIONS(2052), + [anon_sym_i64] = ACTIONS(2052), + [anon_sym_u128] = ACTIONS(2052), + [anon_sym_i128] = ACTIONS(2052), + [anon_sym_isize] = ACTIONS(2052), + [anon_sym_usize] = ACTIONS(2052), + [anon_sym_f32] = ACTIONS(2052), + [anon_sym_f64] = ACTIONS(2052), + [anon_sym_bool] = ACTIONS(2052), + [anon_sym_str] = ACTIONS(2052), + [anon_sym_char] = ACTIONS(2052), + [aux_sym__non_special_token_token1] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2052), + [anon_sym_as] = ACTIONS(2052), + [anon_sym_async] = ACTIONS(2052), + [anon_sym_await] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_default] = ACTIONS(2052), + [anon_sym_enum] = ACTIONS(2052), + [anon_sym_fn] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_impl] = ACTIONS(2052), + [anon_sym_let] = ACTIONS(2052), + [anon_sym_loop] = ACTIONS(2052), + [anon_sym_match] = ACTIONS(2052), + [anon_sym_mod] = ACTIONS(2052), + [anon_sym_pub] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_static] = ACTIONS(2052), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_trait] = ACTIONS(2052), + [anon_sym_type] = ACTIONS(2052), + [anon_sym_union] = ACTIONS(2052), + [anon_sym_unsafe] = ACTIONS(2052), + [anon_sym_use] = ACTIONS(2052), + [anon_sym_where] = ACTIONS(2052), + [anon_sym_while] = ACTIONS(2052), + [sym_mutable_specifier] = ACTIONS(2052), + [sym_integer_literal] = ACTIONS(2069), + [aux_sym_string_literal_token1] = ACTIONS(2072), + [sym_char_literal] = ACTIONS(2069), + [anon_sym_true] = ACTIONS(2075), + [anon_sym_false] = ACTIONS(2075), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2052), + [sym_super] = ACTIONS(2052), + [sym_crate] = ACTIONS(2052), + [sym_metavariable] = ACTIONS(2078), + [sym_raw_string_literal] = ACTIONS(2069), + [sym_float_literal] = ACTIONS(2069), + [sym_block_comment] = ACTIONS(3), + }, + [486] = { + [sym_attribute_item] = STATE(547), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), [sym_match_arm] = STATE(500), - [sym_last_match_arm] = STATE(2517), - [sym_match_pattern] = STATE(2531), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2068), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_enum_variant_list_repeat1] = STATE(545), + [sym_last_match_arm] = STATE(2427), + [sym_match_pattern] = STATE(2387), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1981), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_enum_variant_list_repeat1] = STATE(547), [aux_sym_match_block_repeat1] = STATE(500), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -61887,788 +61733,940 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [489] = { - [sym__token_pattern] = STATE(493), - [sym_token_tree_pattern] = STATE(493), - [sym_token_binding_pattern] = STATE(493), - [sym_token_repetition_pattern] = STATE(493), - [sym__literal] = STATE(493), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_pattern_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(2030), + [487] = { + [sym__token_pattern] = STATE(239), + [sym_token_tree_pattern] = STATE(239), + [sym_token_binding_pattern] = STATE(239), + [sym_token_repetition_pattern] = STATE(239), + [sym__literal] = STATE(239), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(2081), [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_RPAREN] = ACTIONS(2032), [anon_sym_LBRACE] = ACTIONS(2006), [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_RBRACK] = ACTIONS(2083), [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2030), - [anon_sym_i8] = ACTIONS(2030), - [anon_sym_u16] = ACTIONS(2030), - [anon_sym_i16] = ACTIONS(2030), - [anon_sym_u32] = ACTIONS(2030), - [anon_sym_i32] = ACTIONS(2030), - [anon_sym_u64] = ACTIONS(2030), - [anon_sym_i64] = ACTIONS(2030), - [anon_sym_u128] = ACTIONS(2030), - [anon_sym_i128] = ACTIONS(2030), - [anon_sym_isize] = ACTIONS(2030), - [anon_sym_usize] = ACTIONS(2030), - [anon_sym_f32] = ACTIONS(2030), - [anon_sym_f64] = ACTIONS(2030), - [anon_sym_bool] = ACTIONS(2030), - [anon_sym_str] = ACTIONS(2030), - [anon_sym_char] = ACTIONS(2030), - [aux_sym__non_special_token_token1] = ACTIONS(2030), - [anon_sym_SQUOTE] = ACTIONS(2030), - [anon_sym_as] = ACTIONS(2030), - [anon_sym_async] = ACTIONS(2030), - [anon_sym_await] = ACTIONS(2030), - [anon_sym_break] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(2030), - [anon_sym_continue] = ACTIONS(2030), - [anon_sym_default] = ACTIONS(2030), - [anon_sym_enum] = ACTIONS(2030), - [anon_sym_fn] = ACTIONS(2030), - [anon_sym_for] = ACTIONS(2030), - [anon_sym_if] = ACTIONS(2030), - [anon_sym_impl] = ACTIONS(2030), - [anon_sym_let] = ACTIONS(2030), - [anon_sym_loop] = ACTIONS(2030), - [anon_sym_match] = ACTIONS(2030), - [anon_sym_mod] = ACTIONS(2030), - [anon_sym_pub] = ACTIONS(2030), - [anon_sym_return] = ACTIONS(2030), - [anon_sym_static] = ACTIONS(2030), - [anon_sym_struct] = ACTIONS(2030), - [anon_sym_trait] = ACTIONS(2030), - [anon_sym_type] = ACTIONS(2030), - [anon_sym_union] = ACTIONS(2030), - [anon_sym_unsafe] = ACTIONS(2030), - [anon_sym_use] = ACTIONS(2030), - [anon_sym_where] = ACTIONS(2030), - [anon_sym_while] = ACTIONS(2030), - [sym_mutable_specifier] = ACTIONS(2030), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2081), + [anon_sym_SQUOTE] = ACTIONS(2081), + [anon_sym_as] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_await] = ACTIONS(2081), + [anon_sym_break] = ACTIONS(2081), + [anon_sym_const] = ACTIONS(2081), + [anon_sym_continue] = ACTIONS(2081), + [anon_sym_default] = ACTIONS(2081), + [anon_sym_enum] = ACTIONS(2081), + [anon_sym_fn] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_impl] = ACTIONS(2081), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_loop] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_mod] = ACTIONS(2081), + [anon_sym_pub] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_static] = ACTIONS(2081), + [anon_sym_struct] = ACTIONS(2081), + [anon_sym_trait] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_union] = ACTIONS(2081), + [anon_sym_unsafe] = ACTIONS(2081), + [anon_sym_use] = ACTIONS(2081), + [anon_sym_where] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [sym_mutable_specifier] = ACTIONS(2081), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2030), - [sym_super] = ACTIONS(2030), - [sym_crate] = ACTIONS(2030), + [sym_self] = ACTIONS(2081), + [sym_super] = ACTIONS(2081), + [sym_crate] = ACTIONS(2081), [sym_metavariable] = ACTIONS(2020), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [490] = { - [sym__token_pattern] = STATE(494), - [sym_token_tree_pattern] = STATE(494), - [sym_token_binding_pattern] = STATE(494), - [sym_token_repetition_pattern] = STATE(494), - [sym__literal] = STATE(494), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_pattern_repeat1] = STATE(494), - [sym_identifier] = ACTIONS(2034), + [488] = { + [sym__token_pattern] = STATE(239), + [sym_token_tree_pattern] = STATE(239), + [sym_token_binding_pattern] = STATE(239), + [sym_token_repetition_pattern] = STATE(239), + [sym__literal] = STATE(239), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(2081), [anon_sym_LPAREN] = ACTIONS(2004), [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2032), + [anon_sym_RBRACE] = ACTIONS(2083), [anon_sym_LBRACK] = ACTIONS(2010), [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2034), - [anon_sym_i8] = ACTIONS(2034), - [anon_sym_u16] = ACTIONS(2034), - [anon_sym_i16] = ACTIONS(2034), - [anon_sym_u32] = ACTIONS(2034), - [anon_sym_i32] = ACTIONS(2034), - [anon_sym_u64] = ACTIONS(2034), - [anon_sym_i64] = ACTIONS(2034), - [anon_sym_u128] = ACTIONS(2034), - [anon_sym_i128] = ACTIONS(2034), - [anon_sym_isize] = ACTIONS(2034), - [anon_sym_usize] = ACTIONS(2034), - [anon_sym_f32] = ACTIONS(2034), - [anon_sym_f64] = ACTIONS(2034), - [anon_sym_bool] = ACTIONS(2034), - [anon_sym_str] = ACTIONS(2034), - [anon_sym_char] = ACTIONS(2034), - [aux_sym__non_special_token_token1] = ACTIONS(2034), - [anon_sym_SQUOTE] = ACTIONS(2034), - [anon_sym_as] = ACTIONS(2034), - [anon_sym_async] = ACTIONS(2034), - [anon_sym_await] = ACTIONS(2034), - [anon_sym_break] = ACTIONS(2034), - [anon_sym_const] = ACTIONS(2034), - [anon_sym_continue] = ACTIONS(2034), - [anon_sym_default] = ACTIONS(2034), - [anon_sym_enum] = ACTIONS(2034), - [anon_sym_fn] = ACTIONS(2034), - [anon_sym_for] = ACTIONS(2034), - [anon_sym_if] = ACTIONS(2034), - [anon_sym_impl] = ACTIONS(2034), - [anon_sym_let] = ACTIONS(2034), - [anon_sym_loop] = ACTIONS(2034), - [anon_sym_match] = ACTIONS(2034), - [anon_sym_mod] = ACTIONS(2034), - [anon_sym_pub] = ACTIONS(2034), - [anon_sym_return] = ACTIONS(2034), - [anon_sym_static] = ACTIONS(2034), - [anon_sym_struct] = ACTIONS(2034), - [anon_sym_trait] = ACTIONS(2034), - [anon_sym_type] = ACTIONS(2034), - [anon_sym_union] = ACTIONS(2034), - [anon_sym_unsafe] = ACTIONS(2034), - [anon_sym_use] = ACTIONS(2034), - [anon_sym_where] = ACTIONS(2034), - [anon_sym_while] = ACTIONS(2034), - [sym_mutable_specifier] = ACTIONS(2034), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2081), + [anon_sym_SQUOTE] = ACTIONS(2081), + [anon_sym_as] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_await] = ACTIONS(2081), + [anon_sym_break] = ACTIONS(2081), + [anon_sym_const] = ACTIONS(2081), + [anon_sym_continue] = ACTIONS(2081), + [anon_sym_default] = ACTIONS(2081), + [anon_sym_enum] = ACTIONS(2081), + [anon_sym_fn] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_impl] = ACTIONS(2081), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_loop] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_mod] = ACTIONS(2081), + [anon_sym_pub] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_static] = ACTIONS(2081), + [anon_sym_struct] = ACTIONS(2081), + [anon_sym_trait] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_union] = ACTIONS(2081), + [anon_sym_unsafe] = ACTIONS(2081), + [anon_sym_use] = ACTIONS(2081), + [anon_sym_where] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [sym_mutable_specifier] = ACTIONS(2081), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2034), - [sym_super] = ACTIONS(2034), - [sym_crate] = ACTIONS(2034), + [sym_self] = ACTIONS(2081), + [sym_super] = ACTIONS(2081), + [sym_crate] = ACTIONS(2081), [sym_metavariable] = ACTIONS(2020), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [491] = { - [sym__token_pattern] = STATE(496), - [sym_token_tree_pattern] = STATE(496), - [sym_token_binding_pattern] = STATE(496), - [sym_token_repetition_pattern] = STATE(496), - [sym__literal] = STATE(496), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_pattern_repeat1] = STATE(496), - [sym_identifier] = ACTIONS(2036), + [489] = { + [sym__token_pattern] = STATE(239), + [sym_token_tree_pattern] = STATE(239), + [sym_token_binding_pattern] = STATE(239), + [sym_token_repetition_pattern] = STATE(239), + [sym__literal] = STATE(239), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(2081), [anon_sym_LPAREN] = ACTIONS(2004), + [anon_sym_RPAREN] = ACTIONS(2083), [anon_sym_LBRACE] = ACTIONS(2006), [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_RBRACK] = ACTIONS(2032), [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2036), - [anon_sym_i8] = ACTIONS(2036), - [anon_sym_u16] = ACTIONS(2036), - [anon_sym_i16] = ACTIONS(2036), - [anon_sym_u32] = ACTIONS(2036), - [anon_sym_i32] = ACTIONS(2036), - [anon_sym_u64] = ACTIONS(2036), - [anon_sym_i64] = ACTIONS(2036), - [anon_sym_u128] = ACTIONS(2036), - [anon_sym_i128] = ACTIONS(2036), - [anon_sym_isize] = ACTIONS(2036), - [anon_sym_usize] = ACTIONS(2036), - [anon_sym_f32] = ACTIONS(2036), - [anon_sym_f64] = ACTIONS(2036), - [anon_sym_bool] = ACTIONS(2036), - [anon_sym_str] = ACTIONS(2036), - [anon_sym_char] = ACTIONS(2036), - [aux_sym__non_special_token_token1] = ACTIONS(2036), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_as] = ACTIONS(2036), - [anon_sym_async] = ACTIONS(2036), - [anon_sym_await] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(2036), - [anon_sym_const] = ACTIONS(2036), - [anon_sym_continue] = ACTIONS(2036), - [anon_sym_default] = ACTIONS(2036), - [anon_sym_enum] = ACTIONS(2036), - [anon_sym_fn] = ACTIONS(2036), - [anon_sym_for] = ACTIONS(2036), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_impl] = ACTIONS(2036), - [anon_sym_let] = ACTIONS(2036), - [anon_sym_loop] = ACTIONS(2036), - [anon_sym_match] = ACTIONS(2036), - [anon_sym_mod] = ACTIONS(2036), - [anon_sym_pub] = ACTIONS(2036), - [anon_sym_return] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2036), - [anon_sym_struct] = ACTIONS(2036), - [anon_sym_trait] = ACTIONS(2036), - [anon_sym_type] = ACTIONS(2036), - [anon_sym_union] = ACTIONS(2036), - [anon_sym_unsafe] = ACTIONS(2036), - [anon_sym_use] = ACTIONS(2036), - [anon_sym_where] = ACTIONS(2036), - [anon_sym_while] = ACTIONS(2036), - [sym_mutable_specifier] = ACTIONS(2036), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2081), + [anon_sym_SQUOTE] = ACTIONS(2081), + [anon_sym_as] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_await] = ACTIONS(2081), + [anon_sym_break] = ACTIONS(2081), + [anon_sym_const] = ACTIONS(2081), + [anon_sym_continue] = ACTIONS(2081), + [anon_sym_default] = ACTIONS(2081), + [anon_sym_enum] = ACTIONS(2081), + [anon_sym_fn] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_impl] = ACTIONS(2081), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_loop] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_mod] = ACTIONS(2081), + [anon_sym_pub] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_static] = ACTIONS(2081), + [anon_sym_struct] = ACTIONS(2081), + [anon_sym_trait] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_union] = ACTIONS(2081), + [anon_sym_unsafe] = ACTIONS(2081), + [anon_sym_use] = ACTIONS(2081), + [anon_sym_where] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [sym_mutable_specifier] = ACTIONS(2081), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2036), - [sym_super] = ACTIONS(2036), - [sym_crate] = ACTIONS(2036), + [sym_self] = ACTIONS(2081), + [sym_super] = ACTIONS(2081), + [sym_crate] = ACTIONS(2081), [sym_metavariable] = ACTIONS(2020), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [492] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_RPAREN] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2046), - [anon_sym_RBRACE] = ACTIONS(2044), - [anon_sym_LBRACK] = ACTIONS(2049), - [anon_sym_RBRACK] = ACTIONS(2044), - [anon_sym_DOLLAR] = ACTIONS(2052), - [anon_sym_u8] = ACTIONS(2038), - [anon_sym_i8] = ACTIONS(2038), - [anon_sym_u16] = ACTIONS(2038), - [anon_sym_i16] = ACTIONS(2038), - [anon_sym_u32] = ACTIONS(2038), - [anon_sym_i32] = ACTIONS(2038), - [anon_sym_u64] = ACTIONS(2038), - [anon_sym_i64] = ACTIONS(2038), - [anon_sym_u128] = ACTIONS(2038), - [anon_sym_i128] = ACTIONS(2038), - [anon_sym_isize] = ACTIONS(2038), - [anon_sym_usize] = ACTIONS(2038), - [anon_sym_f32] = ACTIONS(2038), - [anon_sym_f64] = ACTIONS(2038), - [anon_sym_bool] = ACTIONS(2038), - [anon_sym_str] = ACTIONS(2038), - [anon_sym_char] = ACTIONS(2038), - [aux_sym__non_special_token_token1] = ACTIONS(2038), - [anon_sym_SQUOTE] = ACTIONS(2038), - [anon_sym_as] = ACTIONS(2038), - [anon_sym_async] = ACTIONS(2038), - [anon_sym_await] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_fn] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_impl] = ACTIONS(2038), - [anon_sym_let] = ACTIONS(2038), - [anon_sym_loop] = ACTIONS(2038), - [anon_sym_match] = ACTIONS(2038), - [anon_sym_mod] = ACTIONS(2038), - [anon_sym_pub] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_trait] = ACTIONS(2038), - [anon_sym_type] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_unsafe] = ACTIONS(2038), - [anon_sym_use] = ACTIONS(2038), - [anon_sym_where] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [sym_mutable_specifier] = ACTIONS(2038), - [sym_integer_literal] = ACTIONS(2055), - [aux_sym_string_literal_token1] = ACTIONS(2058), - [sym_char_literal] = ACTIONS(2055), - [anon_sym_true] = ACTIONS(2061), - [anon_sym_false] = ACTIONS(2061), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_crate] = ACTIONS(2038), - [sym_raw_string_literal] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), + [490] = { + [sym_attribute_item] = STATE(547), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_match_arm] = STATE(500), + [sym_last_match_arm] = STATE(2482), + [sym_match_pattern] = STATE(2387), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1981), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_enum_variant_list_repeat1] = STATE(547), + [aux_sym_match_block_repeat1] = STATE(500), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [493] = { + [491] = { [sym__token_pattern] = STATE(239), [sym_token_tree_pattern] = STATE(239), [sym_token_binding_pattern] = STATE(239), [sym_token_repetition_pattern] = STATE(239), [sym__literal] = STATE(239), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), [aux_sym_token_tree_pattern_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(2026), + [sym_identifier] = ACTIONS(2081), [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_RPAREN] = ACTIONS(2064), + [anon_sym_RPAREN] = ACTIONS(2085), [anon_sym_LBRACE] = ACTIONS(2006), [anon_sym_LBRACK] = ACTIONS(2010), [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2026), - [anon_sym_i8] = ACTIONS(2026), - [anon_sym_u16] = ACTIONS(2026), - [anon_sym_i16] = ACTIONS(2026), - [anon_sym_u32] = ACTIONS(2026), - [anon_sym_i32] = ACTIONS(2026), - [anon_sym_u64] = ACTIONS(2026), - [anon_sym_i64] = ACTIONS(2026), - [anon_sym_u128] = ACTIONS(2026), - [anon_sym_i128] = ACTIONS(2026), - [anon_sym_isize] = ACTIONS(2026), - [anon_sym_usize] = ACTIONS(2026), - [anon_sym_f32] = ACTIONS(2026), - [anon_sym_f64] = ACTIONS(2026), - [anon_sym_bool] = ACTIONS(2026), - [anon_sym_str] = ACTIONS(2026), - [anon_sym_char] = ACTIONS(2026), - [aux_sym__non_special_token_token1] = ACTIONS(2026), - [anon_sym_SQUOTE] = ACTIONS(2026), - [anon_sym_as] = ACTIONS(2026), - [anon_sym_async] = ACTIONS(2026), - [anon_sym_await] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_fn] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_impl] = ACTIONS(2026), - [anon_sym_let] = ACTIONS(2026), - [anon_sym_loop] = ACTIONS(2026), - [anon_sym_match] = ACTIONS(2026), - [anon_sym_mod] = ACTIONS(2026), - [anon_sym_pub] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_trait] = ACTIONS(2026), - [anon_sym_type] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_unsafe] = ACTIONS(2026), - [anon_sym_use] = ACTIONS(2026), - [anon_sym_where] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [sym_mutable_specifier] = ACTIONS(2026), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2081), + [anon_sym_SQUOTE] = ACTIONS(2081), + [anon_sym_as] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_await] = ACTIONS(2081), + [anon_sym_break] = ACTIONS(2081), + [anon_sym_const] = ACTIONS(2081), + [anon_sym_continue] = ACTIONS(2081), + [anon_sym_default] = ACTIONS(2081), + [anon_sym_enum] = ACTIONS(2081), + [anon_sym_fn] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_impl] = ACTIONS(2081), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_loop] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_mod] = ACTIONS(2081), + [anon_sym_pub] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_static] = ACTIONS(2081), + [anon_sym_struct] = ACTIONS(2081), + [anon_sym_trait] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_union] = ACTIONS(2081), + [anon_sym_unsafe] = ACTIONS(2081), + [anon_sym_use] = ACTIONS(2081), + [anon_sym_where] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [sym_mutable_specifier] = ACTIONS(2081), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_crate] = ACTIONS(2026), + [sym_self] = ACTIONS(2081), + [sym_super] = ACTIONS(2081), + [sym_crate] = ACTIONS(2081), [sym_metavariable] = ACTIONS(2020), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [494] = { + [492] = { + [sym__token_pattern] = STATE(493), + [sym_token_tree_pattern] = STATE(493), + [sym_token_binding_pattern] = STATE(493), + [sym_token_repetition_pattern] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2004), + [anon_sym_RPAREN] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_DOLLAR] = ACTIONS(2012), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2087), + [anon_sym_SQUOTE] = ACTIONS(2087), + [anon_sym_as] = ACTIONS(2087), + [anon_sym_async] = ACTIONS(2087), + [anon_sym_await] = 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_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_where] = ACTIONS(2087), + [anon_sym_while] = ACTIONS(2087), + [sym_mutable_specifier] = ACTIONS(2087), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2087), + [sym_super] = ACTIONS(2087), + [sym_crate] = ACTIONS(2087), + [sym_metavariable] = ACTIONS(2020), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), + [sym_block_comment] = ACTIONS(3), + }, + [493] = { [sym__token_pattern] = STATE(239), [sym_token_tree_pattern] = STATE(239), [sym_token_binding_pattern] = STATE(239), [sym_token_repetition_pattern] = STATE(239), [sym__literal] = STATE(239), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), [aux_sym_token_tree_pattern_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(2026), + [sym_identifier] = ACTIONS(2081), [anon_sym_LPAREN] = ACTIONS(2004), + [anon_sym_RPAREN] = ACTIONS(2089), [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2064), [anon_sym_LBRACK] = ACTIONS(2010), [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2026), - [anon_sym_i8] = ACTIONS(2026), - [anon_sym_u16] = ACTIONS(2026), - [anon_sym_i16] = ACTIONS(2026), - [anon_sym_u32] = ACTIONS(2026), - [anon_sym_i32] = ACTIONS(2026), - [anon_sym_u64] = ACTIONS(2026), - [anon_sym_i64] = ACTIONS(2026), - [anon_sym_u128] = ACTIONS(2026), - [anon_sym_i128] = ACTIONS(2026), - [anon_sym_isize] = ACTIONS(2026), - [anon_sym_usize] = ACTIONS(2026), - [anon_sym_f32] = ACTIONS(2026), - [anon_sym_f64] = ACTIONS(2026), - [anon_sym_bool] = ACTIONS(2026), - [anon_sym_str] = ACTIONS(2026), - [anon_sym_char] = ACTIONS(2026), - [aux_sym__non_special_token_token1] = ACTIONS(2026), - [anon_sym_SQUOTE] = ACTIONS(2026), - [anon_sym_as] = ACTIONS(2026), - [anon_sym_async] = ACTIONS(2026), - [anon_sym_await] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_fn] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_impl] = ACTIONS(2026), - [anon_sym_let] = ACTIONS(2026), - [anon_sym_loop] = ACTIONS(2026), - [anon_sym_match] = ACTIONS(2026), - [anon_sym_mod] = ACTIONS(2026), - [anon_sym_pub] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_trait] = ACTIONS(2026), - [anon_sym_type] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_unsafe] = ACTIONS(2026), - [anon_sym_use] = ACTIONS(2026), - [anon_sym_where] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [sym_mutable_specifier] = ACTIONS(2026), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2081), + [anon_sym_SQUOTE] = ACTIONS(2081), + [anon_sym_as] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_await] = ACTIONS(2081), + [anon_sym_break] = ACTIONS(2081), + [anon_sym_const] = ACTIONS(2081), + [anon_sym_continue] = ACTIONS(2081), + [anon_sym_default] = ACTIONS(2081), + [anon_sym_enum] = ACTIONS(2081), + [anon_sym_fn] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_impl] = ACTIONS(2081), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_loop] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_mod] = ACTIONS(2081), + [anon_sym_pub] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_static] = ACTIONS(2081), + [anon_sym_struct] = ACTIONS(2081), + [anon_sym_trait] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_union] = ACTIONS(2081), + [anon_sym_unsafe] = ACTIONS(2081), + [anon_sym_use] = ACTIONS(2081), + [anon_sym_where] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [sym_mutable_specifier] = ACTIONS(2081), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_crate] = ACTIONS(2026), + [sym_self] = ACTIONS(2081), + [sym_super] = ACTIONS(2081), + [sym_crate] = ACTIONS(2081), [sym_metavariable] = ACTIONS(2020), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [495] = { - [sym_token_tree] = STATE(495), - [sym_token_repetition] = STATE(495), + [494] = { + [sym__token_pattern] = STATE(495), + [sym_token_tree_pattern] = STATE(495), + [sym_token_binding_pattern] = STATE(495), + [sym_token_repetition_pattern] = STATE(495), [sym__literal] = STATE(495), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2069), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_RBRACK] = ACTIONS(2072), - [anon_sym_DOLLAR] = ACTIONS(2080), - [anon_sym_u8] = ACTIONS(2066), - [anon_sym_i8] = ACTIONS(2066), - [anon_sym_u16] = ACTIONS(2066), - [anon_sym_i16] = ACTIONS(2066), - [anon_sym_u32] = ACTIONS(2066), - [anon_sym_i32] = ACTIONS(2066), - [anon_sym_u64] = ACTIONS(2066), - [anon_sym_i64] = ACTIONS(2066), - [anon_sym_u128] = ACTIONS(2066), - [anon_sym_i128] = ACTIONS(2066), - [anon_sym_isize] = ACTIONS(2066), - [anon_sym_usize] = ACTIONS(2066), - [anon_sym_f32] = ACTIONS(2066), - [anon_sym_f64] = ACTIONS(2066), - [anon_sym_bool] = ACTIONS(2066), - [anon_sym_str] = ACTIONS(2066), - [anon_sym_char] = ACTIONS(2066), - [aux_sym__non_special_token_token1] = ACTIONS(2066), - [anon_sym_SQUOTE] = ACTIONS(2066), - [anon_sym_as] = ACTIONS(2066), - [anon_sym_async] = ACTIONS(2066), - [anon_sym_await] = ACTIONS(2066), - [anon_sym_break] = ACTIONS(2066), - [anon_sym_const] = ACTIONS(2066), - [anon_sym_continue] = ACTIONS(2066), - [anon_sym_default] = ACTIONS(2066), - [anon_sym_enum] = ACTIONS(2066), - [anon_sym_fn] = ACTIONS(2066), - [anon_sym_for] = ACTIONS(2066), - [anon_sym_if] = ACTIONS(2066), - [anon_sym_impl] = ACTIONS(2066), - [anon_sym_let] = ACTIONS(2066), - [anon_sym_loop] = ACTIONS(2066), - [anon_sym_match] = ACTIONS(2066), - [anon_sym_mod] = ACTIONS(2066), - [anon_sym_pub] = ACTIONS(2066), - [anon_sym_return] = ACTIONS(2066), - [anon_sym_static] = ACTIONS(2066), - [anon_sym_struct] = ACTIONS(2066), - [anon_sym_trait] = ACTIONS(2066), - [anon_sym_type] = ACTIONS(2066), - [anon_sym_union] = ACTIONS(2066), - [anon_sym_unsafe] = ACTIONS(2066), - [anon_sym_use] = ACTIONS(2066), - [anon_sym_where] = ACTIONS(2066), - [anon_sym_while] = ACTIONS(2066), - [sym_mutable_specifier] = ACTIONS(2066), - [sym_integer_literal] = ACTIONS(2083), - [aux_sym_string_literal_token1] = ACTIONS(2086), - [sym_char_literal] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(495), + [sym_identifier] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_RBRACK] = ACTIONS(2008), + [anon_sym_DOLLAR] = ACTIONS(2012), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2091), + [anon_sym_SQUOTE] = ACTIONS(2091), + [anon_sym_as] = ACTIONS(2091), + [anon_sym_async] = ACTIONS(2091), + [anon_sym_await] = 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_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_where] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [sym_mutable_specifier] = ACTIONS(2091), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2066), - [sym_super] = ACTIONS(2066), - [sym_crate] = ACTIONS(2066), - [sym_metavariable] = ACTIONS(2092), - [sym_raw_string_literal] = ACTIONS(2083), - [sym_float_literal] = ACTIONS(2083), + [sym_self] = ACTIONS(2091), + [sym_super] = ACTIONS(2091), + [sym_crate] = ACTIONS(2091), + [sym_metavariable] = ACTIONS(2020), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [496] = { + [495] = { [sym__token_pattern] = STATE(239), [sym_token_tree_pattern] = STATE(239), [sym_token_binding_pattern] = STATE(239), [sym_token_repetition_pattern] = STATE(239), [sym__literal] = STATE(239), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), [aux_sym_token_tree_pattern_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(2026), + [sym_identifier] = ACTIONS(2081), [anon_sym_LPAREN] = ACTIONS(2004), [anon_sym_LBRACE] = ACTIONS(2006), [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_RBRACK] = ACTIONS(2064), + [anon_sym_RBRACK] = ACTIONS(2089), [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2026), - [anon_sym_i8] = ACTIONS(2026), - [anon_sym_u16] = ACTIONS(2026), - [anon_sym_i16] = ACTIONS(2026), - [anon_sym_u32] = ACTIONS(2026), - [anon_sym_i32] = ACTIONS(2026), - [anon_sym_u64] = ACTIONS(2026), - [anon_sym_i64] = ACTIONS(2026), - [anon_sym_u128] = ACTIONS(2026), - [anon_sym_i128] = ACTIONS(2026), - [anon_sym_isize] = ACTIONS(2026), - [anon_sym_usize] = ACTIONS(2026), - [anon_sym_f32] = ACTIONS(2026), - [anon_sym_f64] = ACTIONS(2026), - [anon_sym_bool] = ACTIONS(2026), - [anon_sym_str] = ACTIONS(2026), - [anon_sym_char] = ACTIONS(2026), - [aux_sym__non_special_token_token1] = ACTIONS(2026), - [anon_sym_SQUOTE] = ACTIONS(2026), - [anon_sym_as] = ACTIONS(2026), - [anon_sym_async] = ACTIONS(2026), - [anon_sym_await] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_fn] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_impl] = ACTIONS(2026), - [anon_sym_let] = ACTIONS(2026), - [anon_sym_loop] = ACTIONS(2026), - [anon_sym_match] = ACTIONS(2026), - [anon_sym_mod] = ACTIONS(2026), - [anon_sym_pub] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_trait] = ACTIONS(2026), - [anon_sym_type] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_unsafe] = ACTIONS(2026), - [anon_sym_use] = ACTIONS(2026), - [anon_sym_where] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [sym_mutable_specifier] = ACTIONS(2026), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2081), + [anon_sym_SQUOTE] = ACTIONS(2081), + [anon_sym_as] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_await] = ACTIONS(2081), + [anon_sym_break] = ACTIONS(2081), + [anon_sym_const] = ACTIONS(2081), + [anon_sym_continue] = ACTIONS(2081), + [anon_sym_default] = ACTIONS(2081), + [anon_sym_enum] = ACTIONS(2081), + [anon_sym_fn] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_impl] = ACTIONS(2081), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_loop] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_mod] = ACTIONS(2081), + [anon_sym_pub] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_static] = ACTIONS(2081), + [anon_sym_struct] = ACTIONS(2081), + [anon_sym_trait] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_union] = ACTIONS(2081), + [anon_sym_unsafe] = ACTIONS(2081), + [anon_sym_use] = ACTIONS(2081), + [anon_sym_where] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [sym_mutable_specifier] = ACTIONS(2081), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_crate] = ACTIONS(2026), + [sym_self] = ACTIONS(2081), + [sym_super] = ACTIONS(2081), + [sym_crate] = ACTIONS(2081), [sym_metavariable] = ACTIONS(2020), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [497] = { - [sym__token_pattern] = STATE(484), - [sym_token_tree_pattern] = STATE(484), - [sym_token_binding_pattern] = STATE(484), - [sym_token_repetition_pattern] = STATE(484), - [sym__literal] = STATE(484), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_pattern_repeat1] = STATE(484), - [sym_identifier] = ACTIONS(2095), + [496] = { + [sym__token_pattern] = STATE(489), + [sym_token_tree_pattern] = STATE(489), + [sym_token_binding_pattern] = STATE(489), + [sym_token_repetition_pattern] = STATE(489), + [sym__literal] = STATE(489), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(489), + [sym_identifier] = ACTIONS(2093), [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_RPAREN] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2095), [anon_sym_LBRACE] = ACTIONS(2006), [anon_sym_LBRACK] = ACTIONS(2010), [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2095), - [anon_sym_i8] = ACTIONS(2095), - [anon_sym_u16] = ACTIONS(2095), - [anon_sym_i16] = ACTIONS(2095), - [anon_sym_u32] = ACTIONS(2095), - [anon_sym_i32] = ACTIONS(2095), - [anon_sym_u64] = ACTIONS(2095), - [anon_sym_i64] = ACTIONS(2095), - [anon_sym_u128] = ACTIONS(2095), - [anon_sym_i128] = ACTIONS(2095), - [anon_sym_isize] = ACTIONS(2095), - [anon_sym_usize] = ACTIONS(2095), - [anon_sym_f32] = ACTIONS(2095), - [anon_sym_f64] = ACTIONS(2095), - [anon_sym_bool] = ACTIONS(2095), - [anon_sym_str] = ACTIONS(2095), - [anon_sym_char] = ACTIONS(2095), - [aux_sym__non_special_token_token1] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2095), - [anon_sym_as] = ACTIONS(2095), - [anon_sym_async] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(2095), - [anon_sym_break] = ACTIONS(2095), - [anon_sym_const] = ACTIONS(2095), - [anon_sym_continue] = ACTIONS(2095), - [anon_sym_default] = ACTIONS(2095), - [anon_sym_enum] = ACTIONS(2095), - [anon_sym_fn] = ACTIONS(2095), - [anon_sym_for] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_impl] = ACTIONS(2095), - [anon_sym_let] = ACTIONS(2095), - [anon_sym_loop] = ACTIONS(2095), - [anon_sym_match] = ACTIONS(2095), - [anon_sym_mod] = ACTIONS(2095), - [anon_sym_pub] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2095), - [anon_sym_static] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2095), - [anon_sym_trait] = ACTIONS(2095), - [anon_sym_type] = ACTIONS(2095), - [anon_sym_union] = ACTIONS(2095), - [anon_sym_unsafe] = ACTIONS(2095), - [anon_sym_use] = ACTIONS(2095), - [anon_sym_where] = ACTIONS(2095), - [anon_sym_while] = ACTIONS(2095), - [sym_mutable_specifier] = ACTIONS(2095), + [anon_sym_u8] = ACTIONS(2093), + [anon_sym_i8] = ACTIONS(2093), + [anon_sym_u16] = ACTIONS(2093), + [anon_sym_i16] = ACTIONS(2093), + [anon_sym_u32] = ACTIONS(2093), + [anon_sym_i32] = ACTIONS(2093), + [anon_sym_u64] = ACTIONS(2093), + [anon_sym_i64] = ACTIONS(2093), + [anon_sym_u128] = ACTIONS(2093), + [anon_sym_i128] = ACTIONS(2093), + [anon_sym_isize] = ACTIONS(2093), + [anon_sym_usize] = ACTIONS(2093), + [anon_sym_f32] = ACTIONS(2093), + [anon_sym_f64] = ACTIONS(2093), + [anon_sym_bool] = ACTIONS(2093), + [anon_sym_str] = ACTIONS(2093), + [anon_sym_char] = ACTIONS(2093), + [aux_sym__non_special_token_token1] = ACTIONS(2093), + [anon_sym_SQUOTE] = ACTIONS(2093), + [anon_sym_as] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_await] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_impl] = ACTIONS(2093), + [anon_sym_let] = ACTIONS(2093), + [anon_sym_loop] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2093), + [anon_sym_mod] = ACTIONS(2093), + [anon_sym_pub] = ACTIONS(2093), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_union] = ACTIONS(2093), + [anon_sym_unsafe] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_where] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [sym_mutable_specifier] = ACTIONS(2093), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2095), - [sym_super] = ACTIONS(2095), - [sym_crate] = ACTIONS(2095), + [sym_self] = ACTIONS(2093), + [sym_super] = ACTIONS(2093), + [sym_crate] = ACTIONS(2093), [sym_metavariable] = ACTIONS(2020), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [498] = { + [497] = { [sym__token_pattern] = STATE(239), [sym_token_tree_pattern] = STATE(239), [sym_token_binding_pattern] = STATE(239), [sym_token_repetition_pattern] = STATE(239), [sym__literal] = STATE(239), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), [aux_sym_token_tree_pattern_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(2026), + [sym_identifier] = ACTIONS(2081), [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_RPAREN] = ACTIONS(2097), [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2089), [anon_sym_LBRACK] = ACTIONS(2010), [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2026), - [anon_sym_i8] = ACTIONS(2026), - [anon_sym_u16] = ACTIONS(2026), - [anon_sym_i16] = ACTIONS(2026), - [anon_sym_u32] = ACTIONS(2026), - [anon_sym_i32] = ACTIONS(2026), - [anon_sym_u64] = ACTIONS(2026), - [anon_sym_i64] = ACTIONS(2026), - [anon_sym_u128] = ACTIONS(2026), - [anon_sym_i128] = ACTIONS(2026), - [anon_sym_isize] = ACTIONS(2026), - [anon_sym_usize] = ACTIONS(2026), - [anon_sym_f32] = ACTIONS(2026), - [anon_sym_f64] = ACTIONS(2026), - [anon_sym_bool] = ACTIONS(2026), - [anon_sym_str] = ACTIONS(2026), - [anon_sym_char] = ACTIONS(2026), - [aux_sym__non_special_token_token1] = ACTIONS(2026), - [anon_sym_SQUOTE] = ACTIONS(2026), - [anon_sym_as] = ACTIONS(2026), - [anon_sym_async] = ACTIONS(2026), - [anon_sym_await] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_fn] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_impl] = ACTIONS(2026), - [anon_sym_let] = ACTIONS(2026), - [anon_sym_loop] = ACTIONS(2026), - [anon_sym_match] = ACTIONS(2026), - [anon_sym_mod] = ACTIONS(2026), - [anon_sym_pub] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_trait] = ACTIONS(2026), - [anon_sym_type] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_unsafe] = ACTIONS(2026), - [anon_sym_use] = ACTIONS(2026), - [anon_sym_where] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [sym_mutable_specifier] = ACTIONS(2026), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2081), + [anon_sym_SQUOTE] = ACTIONS(2081), + [anon_sym_as] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_await] = ACTIONS(2081), + [anon_sym_break] = ACTIONS(2081), + [anon_sym_const] = ACTIONS(2081), + [anon_sym_continue] = ACTIONS(2081), + [anon_sym_default] = ACTIONS(2081), + [anon_sym_enum] = ACTIONS(2081), + [anon_sym_fn] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_impl] = ACTIONS(2081), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_loop] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_mod] = ACTIONS(2081), + [anon_sym_pub] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_static] = ACTIONS(2081), + [anon_sym_struct] = ACTIONS(2081), + [anon_sym_trait] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_union] = ACTIONS(2081), + [anon_sym_unsafe] = ACTIONS(2081), + [anon_sym_use] = ACTIONS(2081), + [anon_sym_where] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [sym_mutable_specifier] = ACTIONS(2081), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_crate] = ACTIONS(2026), + [sym_self] = ACTIONS(2081), + [sym_super] = ACTIONS(2081), + [sym_crate] = ACTIONS(2081), + [sym_metavariable] = ACTIONS(2020), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), + [sym_block_comment] = ACTIONS(3), + }, + [498] = { + [sym__token_pattern] = STATE(488), + [sym_token_tree_pattern] = STATE(488), + [sym_token_binding_pattern] = STATE(488), + [sym_token_repetition_pattern] = STATE(488), + [sym__literal] = STATE(488), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(488), + [sym_identifier] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_DOLLAR] = ACTIONS(2012), + [anon_sym_u8] = ACTIONS(2097), + [anon_sym_i8] = ACTIONS(2097), + [anon_sym_u16] = ACTIONS(2097), + [anon_sym_i16] = ACTIONS(2097), + [anon_sym_u32] = ACTIONS(2097), + [anon_sym_i32] = ACTIONS(2097), + [anon_sym_u64] = ACTIONS(2097), + [anon_sym_i64] = ACTIONS(2097), + [anon_sym_u128] = ACTIONS(2097), + [anon_sym_i128] = ACTIONS(2097), + [anon_sym_isize] = ACTIONS(2097), + [anon_sym_usize] = ACTIONS(2097), + [anon_sym_f32] = ACTIONS(2097), + [anon_sym_f64] = ACTIONS(2097), + [anon_sym_bool] = ACTIONS(2097), + [anon_sym_str] = ACTIONS(2097), + [anon_sym_char] = ACTIONS(2097), + [aux_sym__non_special_token_token1] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_as] = ACTIONS(2097), + [anon_sym_async] = ACTIONS(2097), + [anon_sym_await] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [anon_sym_fn] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_impl] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_loop] = ACTIONS(2097), + [anon_sym_match] = ACTIONS(2097), + [anon_sym_mod] = ACTIONS(2097), + [anon_sym_pub] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_static] = ACTIONS(2097), + [anon_sym_struct] = ACTIONS(2097), + [anon_sym_trait] = ACTIONS(2097), + [anon_sym_type] = ACTIONS(2097), + [anon_sym_union] = ACTIONS(2097), + [anon_sym_unsafe] = ACTIONS(2097), + [anon_sym_use] = ACTIONS(2097), + [anon_sym_where] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [sym_mutable_specifier] = ACTIONS(2097), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2097), + [sym_super] = ACTIONS(2097), + [sym_crate] = ACTIONS(2097), [sym_metavariable] = ACTIONS(2020), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, [499] = { - [sym__token_pattern] = STATE(486), - [sym_token_tree_pattern] = STATE(486), - [sym_token_binding_pattern] = STATE(486), - [sym_token_repetition_pattern] = STATE(486), - [sym__literal] = STATE(486), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_pattern_repeat1] = STATE(486), + [sym__token_pattern] = STATE(487), + [sym_token_tree_pattern] = STATE(487), + [sym_token_binding_pattern] = STATE(487), + [sym_token_repetition_pattern] = STATE(487), + [sym__literal] = STATE(487), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_pattern_repeat1] = STATE(487), [sym_identifier] = ACTIONS(2099), [anon_sym_LPAREN] = ACTIONS(2004), [anon_sym_LBRACE] = ACTIONS(2006), [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_RBRACK] = ACTIONS(2008), + [anon_sym_RBRACK] = ACTIONS(2095), [anon_sym_DOLLAR] = ACTIONS(2012), [anon_sym_u8] = ACTIONS(2099), [anon_sym_i8] = ACTIONS(2099), @@ -62732,33 +62730,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [500] = { - [sym_attribute_item] = STATE(547), - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), + [sym_attribute_item] = STATE(546), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), [sym_match_arm] = STATE(500), - [sym_match_pattern] = STATE(2474), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2068), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_enum_variant_list_repeat1] = STATE(547), + [sym_match_pattern] = STATE(2548), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1981), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_enum_variant_list_repeat1] = STATE(546), [aux_sym_match_block_repeat1] = STATE(500), [sym_identifier] = ACTIONS(2101), [anon_sym_LPAREN] = ACTIONS(2104), @@ -62807,16 +62805,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [501] = { - [sym_token_tree] = STATE(495), - [sym_token_repetition] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_repeat1] = STATE(495), + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_RPAREN] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2167), [anon_sym_LBRACK] = ACTIONS(2169), [anon_sym_DOLLAR] = ACTIONS(2171), [anon_sym_u8] = ACTIONS(2161), @@ -62866,253 +62865,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2161), [anon_sym_while] = ACTIONS(2161), [sym_mutable_specifier] = ACTIONS(2161), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2016), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), [sym_self] = ACTIONS(2161), [sym_super] = ACTIONS(2161), [sym_crate] = ACTIONS(2161), - [sym_metavariable] = ACTIONS(2173), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, [502] = { - [sym_delim_token_tree] = STATE(526), - [sym__delim_tokens] = STATE(526), - [sym__non_delim_token] = STATE(526), - [sym__literal] = STATE(526), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(526), - [sym_identifier] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2185), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_await] = 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_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_where] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [sym_mutable_specifier] = ACTIONS(2175), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2175), - [sym_super] = ACTIONS(2175), - [sym_crate] = ACTIONS(2175), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), - [sym_block_comment] = ACTIONS(3), - }, - [503] = { - [sym_delim_token_tree] = STATE(525), - [sym__delim_tokens] = STATE(525), - [sym__non_delim_token] = STATE(525), - [sym__literal] = STATE(525), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(525), - [sym_identifier] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2195), - [anon_sym_DOLLAR] = ACTIONS(2197), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_as] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_await] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_default] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [anon_sym_fn] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_impl] = ACTIONS(2193), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_loop] = ACTIONS(2193), - [anon_sym_match] = ACTIONS(2193), - [anon_sym_mod] = ACTIONS(2193), - [anon_sym_pub] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(2193), - [anon_sym_trait] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_union] = ACTIONS(2193), - [anon_sym_unsafe] = ACTIONS(2193), - [anon_sym_use] = ACTIONS(2193), - [anon_sym_where] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [sym_mutable_specifier] = ACTIONS(2193), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_RBRACK] = ACTIONS(2179), + [anon_sym_DOLLAR] = ACTIONS(2171), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2193), - [sym_super] = ACTIONS(2193), - [sym_crate] = ACTIONS(2193), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [504] = { - [sym_token_tree] = STATE(505), - [sym_token_repetition] = STATE(505), - [sym__literal] = STATE(505), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_repeat1] = STATE(505), - [sym_identifier] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_RPAREN] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_DOLLAR] = ACTIONS(2171), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2199), - [anon_sym_SQUOTE] = ACTIONS(2199), - [anon_sym_as] = ACTIONS(2199), - [anon_sym_async] = ACTIONS(2199), - [anon_sym_await] = 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_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_where] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2199), - [sym_mutable_specifier] = ACTIONS(2199), + [503] = { + [sym_token_tree] = STATE(485), + [sym_token_repetition] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2191), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_where] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [sym_mutable_specifier] = ACTIONS(2181), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2199), - [sym_super] = ACTIONS(2199), - [sym_crate] = ACTIONS(2199), - [sym_metavariable] = ACTIONS(2203), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2193), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [505] = { - [sym_token_tree] = STATE(495), - [sym_token_repetition] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_repeat1] = STATE(495), + [504] = { + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_RPAREN] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_RPAREN] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2165), [anon_sym_LBRACK] = ACTIONS(2169), [anon_sym_DOLLAR] = ACTIONS(2171), [anon_sym_u8] = ACTIONS(2161), @@ -63162,105 +63087,401 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2161), [anon_sym_while] = ACTIONS(2161), [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), + [sym_block_comment] = ACTIONS(3), + }, + [505] = { + [sym_delim_token_tree] = STATE(513), + [sym__delim_tokens] = STATE(513), + [sym__non_delim_token] = STATE(513), + [sym__literal] = STATE(513), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(513), + [sym_identifier] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_RBRACK] = ACTIONS(2199), + [anon_sym_DOLLAR] = ACTIONS(2201), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [anon_sym_fn] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_impl] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_loop] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_mod] = ACTIONS(2197), + [anon_sym_pub] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_struct] = ACTIONS(2197), + [anon_sym_trait] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_union] = ACTIONS(2197), + [anon_sym_unsafe] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_where] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [sym_mutable_specifier] = ACTIONS(2197), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_crate] = ACTIONS(2197), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), + [sym_block_comment] = ACTIONS(3), + }, + [506] = { + [sym_token_tree] = STATE(485), + [sym_token_repetition] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_RPAREN] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2191), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_where] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [sym_mutable_specifier] = ACTIONS(2181), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_metavariable] = ACTIONS(2173), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2193), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [506] = { - [sym_delim_token_tree] = STATE(510), - [sym__delim_tokens] = STATE(510), - [sym__non_delim_token] = STATE(510), - [sym__literal] = STATE(510), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(510), - [sym_identifier] = ACTIONS(2207), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2209), + [507] = { + [sym_delim_token_tree] = STATE(519), + [sym__delim_tokens] = STATE(519), + [sym__non_delim_token] = STATE(519), + [sym__literal] = STATE(519), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(519), + [sym_identifier] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_RBRACK] = ACTIONS(2205), + [anon_sym_DOLLAR] = ACTIONS(2207), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2203), + [anon_sym_SQUOTE] = ACTIONS(2203), + [anon_sym_as] = ACTIONS(2203), + [anon_sym_async] = ACTIONS(2203), + [anon_sym_await] = 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_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_where] = ACTIONS(2203), + [anon_sym_while] = ACTIONS(2203), + [sym_mutable_specifier] = ACTIONS(2203), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2203), + [sym_super] = ACTIONS(2203), + [sym_crate] = ACTIONS(2203), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), + [sym_block_comment] = ACTIONS(3), + }, + [508] = { + [sym_delim_token_tree] = STATE(542), + [sym__delim_tokens] = STATE(542), + [sym__non_delim_token] = STATE(542), + [sym__literal] = STATE(542), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(542), + [sym_identifier] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2169), [anon_sym_DOLLAR] = ACTIONS(2211), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2207), - [anon_sym_SQUOTE] = ACTIONS(2207), - [anon_sym_as] = ACTIONS(2207), - [anon_sym_async] = ACTIONS(2207), - [anon_sym_await] = 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_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_where] = ACTIONS(2207), - [anon_sym_while] = ACTIONS(2207), - [sym_mutable_specifier] = ACTIONS(2207), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), + [anon_sym_u8] = ACTIONS(2209), + [anon_sym_i8] = ACTIONS(2209), + [anon_sym_u16] = ACTIONS(2209), + [anon_sym_i16] = ACTIONS(2209), + [anon_sym_u32] = ACTIONS(2209), + [anon_sym_i32] = ACTIONS(2209), + [anon_sym_u64] = ACTIONS(2209), + [anon_sym_i64] = ACTIONS(2209), + [anon_sym_u128] = ACTIONS(2209), + [anon_sym_i128] = ACTIONS(2209), + [anon_sym_isize] = ACTIONS(2209), + [anon_sym_usize] = ACTIONS(2209), + [anon_sym_f32] = ACTIONS(2209), + [anon_sym_f64] = ACTIONS(2209), + [anon_sym_bool] = ACTIONS(2209), + [anon_sym_str] = ACTIONS(2209), + [anon_sym_char] = ACTIONS(2209), + [aux_sym__non_special_token_token1] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_as] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_await] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_default] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), + [anon_sym_fn] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_impl] = ACTIONS(2209), + [anon_sym_let] = ACTIONS(2209), + [anon_sym_loop] = ACTIONS(2209), + [anon_sym_match] = ACTIONS(2209), + [anon_sym_mod] = ACTIONS(2209), + [anon_sym_pub] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(2209), + [anon_sym_struct] = ACTIONS(2209), + [anon_sym_trait] = ACTIONS(2209), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_union] = ACTIONS(2209), + [anon_sym_unsafe] = ACTIONS(2209), + [anon_sym_use] = ACTIONS(2209), + [anon_sym_where] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [sym_mutable_specifier] = ACTIONS(2209), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2207), - [sym_super] = ACTIONS(2207), - [sym_crate] = ACTIONS(2207), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_crate] = ACTIONS(2209), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [507] = { - [sym_token_tree] = STATE(495), - [sym_token_repetition] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_repeat1] = STATE(495), + [509] = { + [sym_delim_token_tree] = STATE(504), + [sym__delim_tokens] = STATE(504), + [sym__non_delim_token] = STATE(504), + [sym__literal] = STATE(504), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(504), + [sym_identifier] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(2215), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_as] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_default] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [anon_sym_fn] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_impl] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_loop] = ACTIONS(2213), + [anon_sym_match] = ACTIONS(2213), + [anon_sym_mod] = ACTIONS(2213), + [anon_sym_pub] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_struct] = ACTIONS(2213), + [anon_sym_trait] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_union] = ACTIONS(2213), + [anon_sym_unsafe] = ACTIONS(2213), + [anon_sym_use] = ACTIONS(2213), + [anon_sym_where] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [sym_mutable_specifier] = ACTIONS(2213), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2213), + [sym_super] = ACTIONS(2213), + [sym_crate] = ACTIONS(2213), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), + [sym_block_comment] = ACTIONS(3), + }, + [510] = { + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_RPAREN] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_RPAREN] = ACTIONS(2217), + [anon_sym_LBRACE] = ACTIONS(2165), [anon_sym_LBRACK] = ACTIONS(2169), [anon_sym_DOLLAR] = ACTIONS(2171), [anon_sym_u8] = ACTIONS(2161), @@ -63310,107 +63531,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2161), [anon_sym_while] = ACTIONS(2161), [sym_mutable_specifier] = ACTIONS(2161), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2016), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), [sym_self] = ACTIONS(2161), [sym_super] = ACTIONS(2161), [sym_crate] = ACTIONS(2161), - [sym_metavariable] = ACTIONS(2173), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), - [sym_block_comment] = ACTIONS(3), - }, - [508] = { - [sym_delim_token_tree] = STATE(542), - [sym__delim_tokens] = STATE(542), - [sym__non_delim_token] = STATE(542), - [sym__literal] = STATE(542), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(542), - [sym_identifier] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2209), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2217), - [anon_sym_u8] = ACTIONS(2215), - [anon_sym_i8] = ACTIONS(2215), - [anon_sym_u16] = ACTIONS(2215), - [anon_sym_i16] = ACTIONS(2215), - [anon_sym_u32] = ACTIONS(2215), - [anon_sym_i32] = ACTIONS(2215), - [anon_sym_u64] = ACTIONS(2215), - [anon_sym_i64] = ACTIONS(2215), - [anon_sym_u128] = ACTIONS(2215), - [anon_sym_i128] = ACTIONS(2215), - [anon_sym_isize] = ACTIONS(2215), - [anon_sym_usize] = ACTIONS(2215), - [anon_sym_f32] = ACTIONS(2215), - [anon_sym_f64] = ACTIONS(2215), - [anon_sym_bool] = ACTIONS(2215), - [anon_sym_str] = ACTIONS(2215), - [anon_sym_char] = ACTIONS(2215), - [aux_sym__non_special_token_token1] = ACTIONS(2215), - [anon_sym_SQUOTE] = ACTIONS(2215), - [anon_sym_as] = ACTIONS(2215), - [anon_sym_async] = ACTIONS(2215), - [anon_sym_await] = ACTIONS(2215), - [anon_sym_break] = ACTIONS(2215), - [anon_sym_const] = ACTIONS(2215), - [anon_sym_continue] = ACTIONS(2215), - [anon_sym_default] = ACTIONS(2215), - [anon_sym_enum] = ACTIONS(2215), - [anon_sym_fn] = ACTIONS(2215), - [anon_sym_for] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2215), - [anon_sym_impl] = ACTIONS(2215), - [anon_sym_let] = ACTIONS(2215), - [anon_sym_loop] = ACTIONS(2215), - [anon_sym_match] = ACTIONS(2215), - [anon_sym_mod] = ACTIONS(2215), - [anon_sym_pub] = ACTIONS(2215), - [anon_sym_return] = ACTIONS(2215), - [anon_sym_static] = ACTIONS(2215), - [anon_sym_struct] = ACTIONS(2215), - [anon_sym_trait] = ACTIONS(2215), - [anon_sym_type] = ACTIONS(2215), - [anon_sym_union] = ACTIONS(2215), - [anon_sym_unsafe] = ACTIONS(2215), - [anon_sym_use] = ACTIONS(2215), - [anon_sym_where] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2215), - [sym_mutable_specifier] = ACTIONS(2215), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2215), - [sym_super] = ACTIONS(2215), - [sym_crate] = ACTIONS(2215), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [509] = { - [sym_token_tree] = STATE(514), - [sym_token_repetition] = STATE(514), - [sym__literal] = STATE(514), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_repeat1] = STATE(514), + [511] = { + [sym_delim_token_tree] = STATE(529), + [sym__delim_tokens] = STATE(529), + [sym__non_delim_token] = STATE(529), + [sym__literal] = STATE(529), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(529), [sym_identifier] = ACTIONS(2219), [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2165), [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_DOLLAR] = ACTIONS(2171), + [anon_sym_RBRACK] = ACTIONS(2221), + [anon_sym_DOLLAR] = ACTIONS(2223), [anon_sym_u8] = ACTIONS(2219), [anon_sym_i8] = ACTIONS(2219), [anon_sym_u16] = ACTIONS(2219), @@ -63458,106 +63605,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2219), [anon_sym_while] = ACTIONS(2219), [sym_mutable_specifier] = ACTIONS(2219), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2016), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), [sym_self] = ACTIONS(2219), [sym_super] = ACTIONS(2219), [sym_crate] = ACTIONS(2219), - [sym_metavariable] = ACTIONS(2221), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [510] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2227), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_await] = 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_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_where] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), + [512] = { + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(2171), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [511] = { - [sym_token_tree] = STATE(495), - [sym_token_repetition] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_repeat1] = STATE(495), + [513] = { + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2165), [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_RBRACK] = ACTIONS(2205), + [anon_sym_RBRACK] = ACTIONS(2217), [anon_sym_DOLLAR] = ACTIONS(2171), [anon_sym_u8] = ACTIONS(2161), [anon_sym_i8] = ACTIONS(2161), @@ -63606,108 +63753,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2161), [anon_sym_while] = ACTIONS(2161), [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), + [sym_block_comment] = ACTIONS(3), + }, + [514] = { + [sym_token_tree] = STATE(525), + [sym_token_repetition] = STATE(525), + [sym__literal] = STATE(525), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(525), + [sym_identifier] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_RBRACK] = ACTIONS(2227), + [anon_sym_DOLLAR] = ACTIONS(2191), + [anon_sym_u8] = ACTIONS(2225), + [anon_sym_i8] = ACTIONS(2225), + [anon_sym_u16] = ACTIONS(2225), + [anon_sym_i16] = ACTIONS(2225), + [anon_sym_u32] = ACTIONS(2225), + [anon_sym_i32] = ACTIONS(2225), + [anon_sym_u64] = ACTIONS(2225), + [anon_sym_i64] = ACTIONS(2225), + [anon_sym_u128] = ACTIONS(2225), + [anon_sym_i128] = ACTIONS(2225), + [anon_sym_isize] = ACTIONS(2225), + [anon_sym_usize] = ACTIONS(2225), + [anon_sym_f32] = ACTIONS(2225), + [anon_sym_f64] = ACTIONS(2225), + [anon_sym_bool] = ACTIONS(2225), + [anon_sym_str] = ACTIONS(2225), + [anon_sym_char] = ACTIONS(2225), + [aux_sym__non_special_token_token1] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_as] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [anon_sym_fn] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_impl] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_loop] = ACTIONS(2225), + [anon_sym_match] = ACTIONS(2225), + [anon_sym_mod] = ACTIONS(2225), + [anon_sym_pub] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_trait] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2225), + [anon_sym_unsafe] = ACTIONS(2225), + [anon_sym_use] = ACTIONS(2225), + [anon_sym_where] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [sym_mutable_specifier] = ACTIONS(2225), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_metavariable] = ACTIONS(2173), + [sym_self] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_crate] = ACTIONS(2225), + [sym_metavariable] = ACTIONS(2229), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [512] = { - [sym_token_tree] = STATE(538), - [sym_token_repetition] = STATE(538), - [sym__literal] = STATE(538), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2231), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_DOLLAR] = ACTIONS(2171), - [anon_sym_u8] = ACTIONS(2229), - [anon_sym_i8] = ACTIONS(2229), - [anon_sym_u16] = ACTIONS(2229), - [anon_sym_i16] = ACTIONS(2229), - [anon_sym_u32] = ACTIONS(2229), - [anon_sym_i32] = ACTIONS(2229), - [anon_sym_u64] = ACTIONS(2229), - [anon_sym_i64] = ACTIONS(2229), - [anon_sym_u128] = ACTIONS(2229), - [anon_sym_i128] = ACTIONS(2229), - [anon_sym_isize] = ACTIONS(2229), - [anon_sym_usize] = ACTIONS(2229), - [anon_sym_f32] = ACTIONS(2229), - [anon_sym_f64] = ACTIONS(2229), - [anon_sym_bool] = ACTIONS(2229), - [anon_sym_str] = ACTIONS(2229), - [anon_sym_char] = ACTIONS(2229), - [aux_sym__non_special_token_token1] = ACTIONS(2229), - [anon_sym_SQUOTE] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_await] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_default] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [anon_sym_fn] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_impl] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_loop] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_mod] = ACTIONS(2229), - [anon_sym_pub] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_static] = ACTIONS(2229), - [anon_sym_struct] = ACTIONS(2229), - [anon_sym_trait] = ACTIONS(2229), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_union] = ACTIONS(2229), - [anon_sym_unsafe] = ACTIONS(2229), - [anon_sym_use] = ACTIONS(2229), - [anon_sym_where] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [sym_mutable_specifier] = ACTIONS(2229), + [515] = { + [sym_token_tree] = STATE(503), + [sym_token_repetition] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2191), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2231), + [anon_sym_SQUOTE] = ACTIONS(2231), + [anon_sym_as] = ACTIONS(2231), + [anon_sym_async] = ACTIONS(2231), + [anon_sym_await] = 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_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_where] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [sym_mutable_specifier] = ACTIONS(2231), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2229), - [sym_super] = ACTIONS(2229), - [sym_crate] = ACTIONS(2229), + [sym_self] = ACTIONS(2231), + [sym_super] = ACTIONS(2231), + [sym_crate] = ACTIONS(2231), [sym_metavariable] = ACTIONS(2233), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [513] = { - [sym_delim_token_tree] = STATE(540), - [sym__delim_tokens] = STATE(540), - [sym__non_delim_token] = STATE(540), - [sym__literal] = STATE(540), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(540), + [516] = { + [sym_token_tree] = STATE(506), + [sym_token_repetition] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(506), [sym_identifier] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_RPAREN] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_RPAREN] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2191), [anon_sym_u8] = ACTIONS(2235), [anon_sym_i8] = ACTIONS(2235), [anon_sym_u16] = ACTIONS(2235), @@ -63755,106 +63974,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2235), [anon_sym_while] = ACTIONS(2235), [sym_mutable_specifier] = ACTIONS(2235), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), - [sym_block_comment] = ACTIONS(3), - }, - [514] = { - [sym_token_tree] = STATE(495), - [sym_token_repetition] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_DOLLAR] = ACTIONS(2171), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2161), - [anon_sym_SQUOTE] = ACTIONS(2161), - [anon_sym_as] = ACTIONS(2161), - [anon_sym_async] = ACTIONS(2161), - [anon_sym_await] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_default] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [anon_sym_fn] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_impl] = ACTIONS(2161), - [anon_sym_let] = ACTIONS(2161), - [anon_sym_loop] = ACTIONS(2161), - [anon_sym_match] = ACTIONS(2161), - [anon_sym_mod] = ACTIONS(2161), - [anon_sym_pub] = ACTIONS(2161), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_struct] = ACTIONS(2161), - [anon_sym_trait] = ACTIONS(2161), - [anon_sym_type] = ACTIONS(2161), - [anon_sym_union] = ACTIONS(2161), - [anon_sym_unsafe] = ACTIONS(2161), - [anon_sym_use] = ACTIONS(2161), - [anon_sym_where] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [sym_mutable_specifier] = ACTIONS(2161), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_metavariable] = ACTIONS(2173), + [sym_self] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_crate] = ACTIONS(2235), + [sym_metavariable] = ACTIONS(2237), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [515] = { - [sym_token_tree] = STATE(544), - [sym_token_repetition] = STATE(544), - [sym__literal] = STATE(544), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_repeat1] = STATE(544), + [517] = { + [sym_delim_token_tree] = STATE(528), + [sym__delim_tokens] = STATE(528), + [sym__non_delim_token] = STATE(528), + [sym__literal] = STATE(528), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(528), [sym_identifier] = ACTIONS(2239), [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2221), [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_RBRACK] = ACTIONS(2231), - [anon_sym_DOLLAR] = ACTIONS(2171), + [anon_sym_DOLLAR] = ACTIONS(2241), [anon_sym_u8] = ACTIONS(2239), [anon_sym_i8] = ACTIONS(2239), [anon_sym_u16] = ACTIONS(2239), @@ -63902,921 +64049,920 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2239), [anon_sym_while] = ACTIONS(2239), [sym_mutable_specifier] = ACTIONS(2239), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2016), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), [sym_self] = ACTIONS(2239), [sym_super] = ACTIONS(2239), [sym_crate] = ACTIONS(2239), - [sym_metavariable] = ACTIONS(2241), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [516] = { - [sym_token_tree] = STATE(501), - [sym_token_repetition] = STATE(501), - [sym__literal] = STATE(501), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_repeat1] = STATE(501), - [sym_identifier] = ACTIONS(2243), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_RPAREN] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_DOLLAR] = ACTIONS(2171), - [anon_sym_u8] = ACTIONS(2243), - [anon_sym_i8] = ACTIONS(2243), - [anon_sym_u16] = ACTIONS(2243), - [anon_sym_i16] = ACTIONS(2243), - [anon_sym_u32] = ACTIONS(2243), - [anon_sym_i32] = ACTIONS(2243), - [anon_sym_u64] = ACTIONS(2243), - [anon_sym_i64] = ACTIONS(2243), - [anon_sym_u128] = ACTIONS(2243), - [anon_sym_i128] = ACTIONS(2243), - [anon_sym_isize] = ACTIONS(2243), - [anon_sym_usize] = ACTIONS(2243), - [anon_sym_f32] = ACTIONS(2243), - [anon_sym_f64] = ACTIONS(2243), - [anon_sym_bool] = ACTIONS(2243), - [anon_sym_str] = ACTIONS(2243), - [anon_sym_char] = ACTIONS(2243), - [aux_sym__non_special_token_token1] = ACTIONS(2243), - [anon_sym_SQUOTE] = ACTIONS(2243), - [anon_sym_as] = ACTIONS(2243), - [anon_sym_async] = ACTIONS(2243), - [anon_sym_await] = ACTIONS(2243), - [anon_sym_break] = ACTIONS(2243), - [anon_sym_const] = ACTIONS(2243), - [anon_sym_continue] = ACTIONS(2243), - [anon_sym_default] = ACTIONS(2243), - [anon_sym_enum] = ACTIONS(2243), - [anon_sym_fn] = ACTIONS(2243), - [anon_sym_for] = ACTIONS(2243), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_impl] = ACTIONS(2243), - [anon_sym_let] = ACTIONS(2243), - [anon_sym_loop] = ACTIONS(2243), - [anon_sym_match] = ACTIONS(2243), - [anon_sym_mod] = ACTIONS(2243), - [anon_sym_pub] = ACTIONS(2243), - [anon_sym_return] = ACTIONS(2243), - [anon_sym_static] = ACTIONS(2243), - [anon_sym_struct] = ACTIONS(2243), - [anon_sym_trait] = ACTIONS(2243), - [anon_sym_type] = ACTIONS(2243), - [anon_sym_union] = ACTIONS(2243), - [anon_sym_unsafe] = ACTIONS(2243), - [anon_sym_use] = ACTIONS(2243), - [anon_sym_where] = ACTIONS(2243), - [anon_sym_while] = ACTIONS(2243), - [sym_mutable_specifier] = ACTIONS(2243), + [518] = { + [sym_token_tree] = STATE(485), + [sym_token_repetition] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_RPAREN] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2191), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_where] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [sym_mutable_specifier] = ACTIONS(2181), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2243), - [sym_super] = ACTIONS(2243), - [sym_crate] = ACTIONS(2243), - [sym_metavariable] = ACTIONS(2245), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2193), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [517] = { - [sym_token_tree] = STATE(511), - [sym_token_repetition] = STATE(511), - [sym__literal] = STATE(511), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_repeat1] = STATE(511), - [sym_identifier] = ACTIONS(2247), + [519] = { + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2165), [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_RBRACK] = ACTIONS(2201), + [anon_sym_RBRACK] = ACTIONS(2195), [anon_sym_DOLLAR] = ACTIONS(2171), - [anon_sym_u8] = ACTIONS(2247), - [anon_sym_i8] = ACTIONS(2247), - [anon_sym_u16] = ACTIONS(2247), - [anon_sym_i16] = ACTIONS(2247), - [anon_sym_u32] = ACTIONS(2247), - [anon_sym_i32] = ACTIONS(2247), - [anon_sym_u64] = ACTIONS(2247), - [anon_sym_i64] = ACTIONS(2247), - [anon_sym_u128] = ACTIONS(2247), - [anon_sym_i128] = ACTIONS(2247), - [anon_sym_isize] = ACTIONS(2247), - [anon_sym_usize] = ACTIONS(2247), - [anon_sym_f32] = ACTIONS(2247), - [anon_sym_f64] = ACTIONS(2247), - [anon_sym_bool] = ACTIONS(2247), - [anon_sym_str] = ACTIONS(2247), - [anon_sym_char] = ACTIONS(2247), - [aux_sym__non_special_token_token1] = ACTIONS(2247), - [anon_sym_SQUOTE] = ACTIONS(2247), - [anon_sym_as] = ACTIONS(2247), - [anon_sym_async] = ACTIONS(2247), - [anon_sym_await] = ACTIONS(2247), - [anon_sym_break] = ACTIONS(2247), - [anon_sym_const] = ACTIONS(2247), - [anon_sym_continue] = ACTIONS(2247), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_enum] = ACTIONS(2247), - [anon_sym_fn] = ACTIONS(2247), - [anon_sym_for] = ACTIONS(2247), - [anon_sym_if] = ACTIONS(2247), - [anon_sym_impl] = ACTIONS(2247), - [anon_sym_let] = ACTIONS(2247), - [anon_sym_loop] = ACTIONS(2247), - [anon_sym_match] = ACTIONS(2247), - [anon_sym_mod] = ACTIONS(2247), - [anon_sym_pub] = ACTIONS(2247), - [anon_sym_return] = ACTIONS(2247), - [anon_sym_static] = ACTIONS(2247), - [anon_sym_struct] = ACTIONS(2247), - [anon_sym_trait] = ACTIONS(2247), - [anon_sym_type] = ACTIONS(2247), - [anon_sym_union] = ACTIONS(2247), - [anon_sym_unsafe] = ACTIONS(2247), - [anon_sym_use] = ACTIONS(2247), - [anon_sym_where] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2247), - [sym_mutable_specifier] = ACTIONS(2247), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2016), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2247), - [sym_super] = ACTIONS(2247), - [sym_crate] = ACTIONS(2247), - [sym_metavariable] = ACTIONS(2249), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), - [sym_block_comment] = ACTIONS(3), - }, - [518] = { - [sym_delim_token_tree] = STATE(521), - [sym__delim_tokens] = STATE(521), - [sym__non_delim_token] = STATE(521), - [sym__literal] = STATE(521), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(521), - [sym_identifier] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2253), - [anon_sym_u8] = ACTIONS(2251), - [anon_sym_i8] = ACTIONS(2251), - [anon_sym_u16] = ACTIONS(2251), - [anon_sym_i16] = ACTIONS(2251), - [anon_sym_u32] = ACTIONS(2251), - [anon_sym_i32] = ACTIONS(2251), - [anon_sym_u64] = ACTIONS(2251), - [anon_sym_i64] = ACTIONS(2251), - [anon_sym_u128] = ACTIONS(2251), - [anon_sym_i128] = ACTIONS(2251), - [anon_sym_isize] = ACTIONS(2251), - [anon_sym_usize] = ACTIONS(2251), - [anon_sym_f32] = ACTIONS(2251), - [anon_sym_f64] = ACTIONS(2251), - [anon_sym_bool] = ACTIONS(2251), - [anon_sym_str] = ACTIONS(2251), - [anon_sym_char] = ACTIONS(2251), - [aux_sym__non_special_token_token1] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), - [anon_sym_as] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_default] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [anon_sym_fn] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_impl] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_loop] = ACTIONS(2251), - [anon_sym_match] = ACTIONS(2251), - [anon_sym_mod] = ACTIONS(2251), - [anon_sym_pub] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_struct] = ACTIONS(2251), - [anon_sym_trait] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_union] = ACTIONS(2251), - [anon_sym_unsafe] = ACTIONS(2251), - [anon_sym_use] = ACTIONS(2251), - [anon_sym_where] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [sym_mutable_specifier] = ACTIONS(2251), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2251), - [sym_super] = ACTIONS(2251), - [sym_crate] = ACTIONS(2251), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), - [sym_block_comment] = ACTIONS(3), - }, - [519] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2255), - [anon_sym_DOLLAR] = ACTIONS(2227), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_await] = 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_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_where] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, [520] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_RPAREN] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2227), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_await] = 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_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_where] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), + [sym_delim_token_tree] = STATE(512), + [sym__delim_tokens] = STATE(512), + [sym__non_delim_token] = STATE(512), + [sym__literal] = STATE(512), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(512), + [sym_identifier] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(2247), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_as] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [anon_sym_fn] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_impl] = ACTIONS(2245), + [anon_sym_let] = ACTIONS(2245), + [anon_sym_loop] = ACTIONS(2245), + [anon_sym_match] = ACTIONS(2245), + [anon_sym_mod] = ACTIONS(2245), + [anon_sym_pub] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_struct] = ACTIONS(2245), + [anon_sym_trait] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_union] = ACTIONS(2245), + [anon_sym_unsafe] = ACTIONS(2245), + [anon_sym_use] = ACTIONS(2245), + [anon_sym_where] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [sym_mutable_specifier] = ACTIONS(2245), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_self] = ACTIONS(2245), + [sym_super] = ACTIONS(2245), + [sym_crate] = ACTIONS(2245), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, [521] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2227), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_await] = 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_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_where] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), + [sym_delim_token_tree] = STATE(536), + [sym__delim_tokens] = STATE(536), + [sym__non_delim_token] = STATE(536), + [sym__literal] = STATE(536), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(536), + [sym_identifier] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_RBRACK] = ACTIONS(2251), + [anon_sym_DOLLAR] = ACTIONS(2253), + [anon_sym_u8] = ACTIONS(2249), + [anon_sym_i8] = ACTIONS(2249), + [anon_sym_u16] = ACTIONS(2249), + [anon_sym_i16] = ACTIONS(2249), + [anon_sym_u32] = ACTIONS(2249), + [anon_sym_i32] = ACTIONS(2249), + [anon_sym_u64] = ACTIONS(2249), + [anon_sym_i64] = ACTIONS(2249), + [anon_sym_u128] = ACTIONS(2249), + [anon_sym_i128] = ACTIONS(2249), + [anon_sym_isize] = ACTIONS(2249), + [anon_sym_usize] = ACTIONS(2249), + [anon_sym_f32] = ACTIONS(2249), + [anon_sym_f64] = ACTIONS(2249), + [anon_sym_bool] = ACTIONS(2249), + [anon_sym_str] = ACTIONS(2249), + [anon_sym_char] = ACTIONS(2249), + [aux_sym__non_special_token_token1] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_as] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_await] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_fn] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_impl] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_loop] = ACTIONS(2249), + [anon_sym_match] = ACTIONS(2249), + [anon_sym_mod] = ACTIONS(2249), + [anon_sym_pub] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_trait] = ACTIONS(2249), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_union] = ACTIONS(2249), + [anon_sym_unsafe] = ACTIONS(2249), + [anon_sym_use] = ACTIONS(2249), + [anon_sym_where] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [sym_mutable_specifier] = ACTIONS(2249), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_self] = ACTIONS(2249), + [sym_super] = ACTIONS(2249), + [sym_crate] = ACTIONS(2249), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, [522] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2227), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_await] = 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_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_where] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), + [sym_delim_token_tree] = STATE(540), + [sym__delim_tokens] = STATE(540), + [sym__non_delim_token] = STATE(540), + [sym__literal] = STATE(540), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(540), + [sym_identifier] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(2259), + [anon_sym_u8] = ACTIONS(2255), + [anon_sym_i8] = ACTIONS(2255), + [anon_sym_u16] = ACTIONS(2255), + [anon_sym_i16] = ACTIONS(2255), + [anon_sym_u32] = ACTIONS(2255), + [anon_sym_i32] = ACTIONS(2255), + [anon_sym_u64] = ACTIONS(2255), + [anon_sym_i64] = ACTIONS(2255), + [anon_sym_u128] = ACTIONS(2255), + [anon_sym_i128] = ACTIONS(2255), + [anon_sym_isize] = ACTIONS(2255), + [anon_sym_usize] = ACTIONS(2255), + [anon_sym_f32] = ACTIONS(2255), + [anon_sym_f64] = ACTIONS(2255), + [anon_sym_bool] = ACTIONS(2255), + [anon_sym_str] = ACTIONS(2255), + [anon_sym_char] = ACTIONS(2255), + [aux_sym__non_special_token_token1] = ACTIONS(2255), + [anon_sym_SQUOTE] = ACTIONS(2255), + [anon_sym_as] = ACTIONS(2255), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2255), + [anon_sym_break] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_continue] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [anon_sym_fn] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_impl] = ACTIONS(2255), + [anon_sym_let] = ACTIONS(2255), + [anon_sym_loop] = ACTIONS(2255), + [anon_sym_match] = ACTIONS(2255), + [anon_sym_mod] = ACTIONS(2255), + [anon_sym_pub] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_struct] = ACTIONS(2255), + [anon_sym_trait] = ACTIONS(2255), + [anon_sym_type] = ACTIONS(2255), + [anon_sym_union] = ACTIONS(2255), + [anon_sym_unsafe] = ACTIONS(2255), + [anon_sym_use] = ACTIONS(2255), + [anon_sym_where] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2255), + [sym_mutable_specifier] = ACTIONS(2255), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_self] = ACTIONS(2255), + [sym_super] = ACTIONS(2255), + [sym_crate] = ACTIONS(2255), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, [523] = { - [sym_delim_token_tree] = STATE(531), - [sym__delim_tokens] = STATE(531), - [sym__non_delim_token] = STATE(531), - [sym__literal] = STATE(531), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(531), - [sym_identifier] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_RPAREN] = ACTIONS(2261), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2183), + [sym_delim_token_tree] = STATE(510), + [sym__delim_tokens] = STATE(510), + [sym__non_delim_token] = STATE(510), + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(510), + [sym_identifier] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2169), [anon_sym_DOLLAR] = ACTIONS(2263), - [anon_sym_u8] = ACTIONS(2259), - [anon_sym_i8] = ACTIONS(2259), - [anon_sym_u16] = ACTIONS(2259), - [anon_sym_i16] = ACTIONS(2259), - [anon_sym_u32] = ACTIONS(2259), - [anon_sym_i32] = ACTIONS(2259), - [anon_sym_u64] = ACTIONS(2259), - [anon_sym_i64] = ACTIONS(2259), - [anon_sym_u128] = ACTIONS(2259), - [anon_sym_i128] = ACTIONS(2259), - [anon_sym_isize] = ACTIONS(2259), - [anon_sym_usize] = ACTIONS(2259), - [anon_sym_f32] = ACTIONS(2259), - [anon_sym_f64] = ACTIONS(2259), - [anon_sym_bool] = ACTIONS(2259), - [anon_sym_str] = ACTIONS(2259), - [anon_sym_char] = ACTIONS(2259), - [aux_sym__non_special_token_token1] = ACTIONS(2259), - [anon_sym_SQUOTE] = ACTIONS(2259), - [anon_sym_as] = ACTIONS(2259), - [anon_sym_async] = ACTIONS(2259), - [anon_sym_await] = ACTIONS(2259), - [anon_sym_break] = ACTIONS(2259), - [anon_sym_const] = ACTIONS(2259), - [anon_sym_continue] = ACTIONS(2259), - [anon_sym_default] = ACTIONS(2259), - [anon_sym_enum] = ACTIONS(2259), - [anon_sym_fn] = ACTIONS(2259), - [anon_sym_for] = ACTIONS(2259), - [anon_sym_if] = ACTIONS(2259), - [anon_sym_impl] = ACTIONS(2259), - [anon_sym_let] = ACTIONS(2259), - [anon_sym_loop] = ACTIONS(2259), - [anon_sym_match] = ACTIONS(2259), - [anon_sym_mod] = ACTIONS(2259), - [anon_sym_pub] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2259), - [anon_sym_static] = ACTIONS(2259), - [anon_sym_struct] = ACTIONS(2259), - [anon_sym_trait] = ACTIONS(2259), - [anon_sym_type] = ACTIONS(2259), - [anon_sym_union] = ACTIONS(2259), - [anon_sym_unsafe] = ACTIONS(2259), - [anon_sym_use] = ACTIONS(2259), - [anon_sym_where] = ACTIONS(2259), - [anon_sym_while] = ACTIONS(2259), - [sym_mutable_specifier] = ACTIONS(2259), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), + [anon_sym_u8] = ACTIONS(2261), + [anon_sym_i8] = ACTIONS(2261), + [anon_sym_u16] = ACTIONS(2261), + [anon_sym_i16] = ACTIONS(2261), + [anon_sym_u32] = ACTIONS(2261), + [anon_sym_i32] = ACTIONS(2261), + [anon_sym_u64] = ACTIONS(2261), + [anon_sym_i64] = ACTIONS(2261), + [anon_sym_u128] = ACTIONS(2261), + [anon_sym_i128] = ACTIONS(2261), + [anon_sym_isize] = ACTIONS(2261), + [anon_sym_usize] = ACTIONS(2261), + [anon_sym_f32] = ACTIONS(2261), + [anon_sym_f64] = ACTIONS(2261), + [anon_sym_bool] = ACTIONS(2261), + [anon_sym_str] = ACTIONS(2261), + [anon_sym_char] = ACTIONS(2261), + [aux_sym__non_special_token_token1] = ACTIONS(2261), + [anon_sym_SQUOTE] = ACTIONS(2261), + [anon_sym_as] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_await] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + [anon_sym_fn] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_impl] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_loop] = ACTIONS(2261), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_mod] = ACTIONS(2261), + [anon_sym_pub] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_struct] = ACTIONS(2261), + [anon_sym_trait] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_union] = ACTIONS(2261), + [anon_sym_unsafe] = ACTIONS(2261), + [anon_sym_use] = ACTIONS(2261), + [anon_sym_where] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [sym_mutable_specifier] = ACTIONS(2261), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2259), - [sym_super] = ACTIONS(2259), - [sym_crate] = ACTIONS(2259), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_self] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_crate] = ACTIONS(2261), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, [524] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2265), - [anon_sym_DOLLAR] = ACTIONS(2227), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_await] = 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_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_where] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(2171), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, [525] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2257), - [anon_sym_DOLLAR] = ACTIONS(2227), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_await] = 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_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_where] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), + [sym_token_tree] = STATE(485), + [sym_token_repetition] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_RBRACK] = ACTIONS(2187), + [anon_sym_DOLLAR] = ACTIONS(2191), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_where] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [sym_mutable_specifier] = ACTIONS(2181), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2193), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, [526] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2265), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2227), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_await] = 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_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_where] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), + [sym_delim_token_tree] = STATE(501), + [sym__delim_tokens] = STATE(501), + [sym__non_delim_token] = STATE(501), + [sym__literal] = STATE(501), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(501), + [sym_identifier] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(2267), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2265), + [anon_sym_SQUOTE] = ACTIONS(2265), + [anon_sym_as] = ACTIONS(2265), + [anon_sym_async] = ACTIONS(2265), + [anon_sym_await] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_default] = ACTIONS(2265), + [anon_sym_enum] = ACTIONS(2265), + [anon_sym_fn] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_impl] = ACTIONS(2265), + [anon_sym_let] = ACTIONS(2265), + [anon_sym_loop] = ACTIONS(2265), + [anon_sym_match] = ACTIONS(2265), + [anon_sym_mod] = ACTIONS(2265), + [anon_sym_pub] = ACTIONS(2265), + [anon_sym_return] = ACTIONS(2265), + [anon_sym_static] = ACTIONS(2265), + [anon_sym_struct] = ACTIONS(2265), + [anon_sym_trait] = ACTIONS(2265), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_union] = ACTIONS(2265), + [anon_sym_unsafe] = ACTIONS(2265), + [anon_sym_use] = ACTIONS(2265), + [anon_sym_where] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2265), + [sym_mutable_specifier] = ACTIONS(2265), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2265), + [sym_super] = ACTIONS(2265), + [sym_crate] = ACTIONS(2265), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), + [sym_block_comment] = ACTIONS(3), + }, + [527] = { + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(2171), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), + [sym_block_comment] = ACTIONS(3), + }, + [528] = { + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2269), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(2171), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [527] = { - [sym_delim_token_tree] = STATE(532), - [sym__delim_tokens] = STATE(532), - [sym__non_delim_token] = STATE(532), - [sym__literal] = STATE(532), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(532), - [sym_identifier] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2269), - [anon_sym_u8] = ACTIONS(2267), - [anon_sym_i8] = ACTIONS(2267), - [anon_sym_u16] = ACTIONS(2267), - [anon_sym_i16] = ACTIONS(2267), - [anon_sym_u32] = ACTIONS(2267), - [anon_sym_i32] = ACTIONS(2267), - [anon_sym_u64] = ACTIONS(2267), - [anon_sym_i64] = ACTIONS(2267), - [anon_sym_u128] = ACTIONS(2267), - [anon_sym_i128] = ACTIONS(2267), - [anon_sym_isize] = ACTIONS(2267), - [anon_sym_usize] = ACTIONS(2267), - [anon_sym_f32] = ACTIONS(2267), - [anon_sym_f64] = ACTIONS(2267), - [anon_sym_bool] = ACTIONS(2267), - [anon_sym_str] = ACTIONS(2267), - [anon_sym_char] = ACTIONS(2267), - [aux_sym__non_special_token_token1] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2267), - [anon_sym_as] = ACTIONS(2267), - [anon_sym_async] = ACTIONS(2267), - [anon_sym_await] = ACTIONS(2267), - [anon_sym_break] = ACTIONS(2267), - [anon_sym_const] = ACTIONS(2267), - [anon_sym_continue] = ACTIONS(2267), - [anon_sym_default] = ACTIONS(2267), - [anon_sym_enum] = ACTIONS(2267), - [anon_sym_fn] = ACTIONS(2267), - [anon_sym_for] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(2267), - [anon_sym_impl] = ACTIONS(2267), - [anon_sym_let] = ACTIONS(2267), - [anon_sym_loop] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2267), - [anon_sym_mod] = ACTIONS(2267), - [anon_sym_pub] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2267), - [anon_sym_static] = ACTIONS(2267), - [anon_sym_struct] = ACTIONS(2267), - [anon_sym_trait] = ACTIONS(2267), - [anon_sym_type] = ACTIONS(2267), - [anon_sym_union] = ACTIONS(2267), - [anon_sym_unsafe] = ACTIONS(2267), - [anon_sym_use] = ACTIONS(2267), - [anon_sym_where] = ACTIONS(2267), - [anon_sym_while] = ACTIONS(2267), - [sym_mutable_specifier] = ACTIONS(2267), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), + [529] = { + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_RBRACK] = ACTIONS(2269), + [anon_sym_DOLLAR] = ACTIONS(2171), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2267), - [sym_super] = ACTIONS(2267), - [sym_crate] = ACTIONS(2267), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [528] = { - [sym_delim_token_tree] = STATE(533), - [sym__delim_tokens] = STATE(533), - [sym__non_delim_token] = STATE(533), - [sym__literal] = STATE(533), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(533), + [530] = { + [sym_delim_token_tree] = STATE(543), + [sym__delim_tokens] = STATE(543), + [sym__non_delim_token] = STATE(543), + [sym__literal] = STATE(543), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(543), [sym_identifier] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2169), [anon_sym_DOLLAR] = ACTIONS(2273), [anon_sym_u8] = ACTIONS(2271), [anon_sym_i8] = ACTIONS(2271), @@ -64865,33 +65011,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2271), [anon_sym_while] = ACTIONS(2271), [sym_mutable_specifier] = ACTIONS(2271), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), [sym_self] = ACTIONS(2271), [sym_super] = ACTIONS(2271), [sym_crate] = ACTIONS(2271), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [529] = { - [sym_delim_token_tree] = STATE(537), - [sym__delim_tokens] = STATE(537), - [sym__non_delim_token] = STATE(537), - [sym__literal] = STATE(537), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(537), + [531] = { + [sym_delim_token_tree] = STATE(524), + [sym__delim_tokens] = STATE(524), + [sym__non_delim_token] = STATE(524), + [sym__literal] = STATE(524), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(524), [sym_identifier] = ACTIONS(2275), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_RPAREN] = ACTIONS(2277), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(2277), [anon_sym_u8] = ACTIONS(2275), [anon_sym_i8] = ACTIONS(2275), [anon_sym_u16] = ACTIONS(2275), @@ -64939,623 +65085,328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2275), [anon_sym_while] = ACTIONS(2275), [sym_mutable_specifier] = ACTIONS(2275), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), [sym_self] = ACTIONS(2275), [sym_super] = ACTIONS(2275), [sym_crate] = ACTIONS(2275), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), - [sym_block_comment] = ACTIONS(3), - }, - [530] = { - [sym_delim_token_tree] = STATE(522), - [sym__delim_tokens] = STATE(522), - [sym__non_delim_token] = STATE(522), - [sym__literal] = STATE(522), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(522), - [sym_identifier] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2277), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2283), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2281), - [anon_sym_SQUOTE] = ACTIONS(2281), - [anon_sym_as] = ACTIONS(2281), - [anon_sym_async] = ACTIONS(2281), - [anon_sym_await] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_default] = ACTIONS(2281), - [anon_sym_enum] = ACTIONS(2281), - [anon_sym_fn] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_impl] = ACTIONS(2281), - [anon_sym_let] = ACTIONS(2281), - [anon_sym_loop] = ACTIONS(2281), - [anon_sym_match] = ACTIONS(2281), - [anon_sym_mod] = ACTIONS(2281), - [anon_sym_pub] = ACTIONS(2281), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_static] = ACTIONS(2281), - [anon_sym_struct] = ACTIONS(2281), - [anon_sym_trait] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2281), - [anon_sym_union] = ACTIONS(2281), - [anon_sym_unsafe] = ACTIONS(2281), - [anon_sym_use] = ACTIONS(2281), - [anon_sym_where] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [sym_mutable_specifier] = ACTIONS(2281), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2281), - [sym_super] = ACTIONS(2281), - [sym_crate] = ACTIONS(2281), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), - [sym_block_comment] = ACTIONS(3), - }, - [531] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_RPAREN] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2227), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_await] = 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_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_where] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, [532] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2227), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_await] = 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_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_where] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), + [sym_delim_token_tree] = STATE(527), + [sym__delim_tokens] = STATE(527), + [sym__non_delim_token] = STATE(527), + [sym__literal] = STATE(527), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(527), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(2281), + [anon_sym_u8] = ACTIONS(2279), + [anon_sym_i8] = ACTIONS(2279), + [anon_sym_u16] = ACTIONS(2279), + [anon_sym_i16] = ACTIONS(2279), + [anon_sym_u32] = ACTIONS(2279), + [anon_sym_i32] = ACTIONS(2279), + [anon_sym_u64] = ACTIONS(2279), + [anon_sym_i64] = ACTIONS(2279), + [anon_sym_u128] = ACTIONS(2279), + [anon_sym_i128] = ACTIONS(2279), + [anon_sym_isize] = ACTIONS(2279), + [anon_sym_usize] = ACTIONS(2279), + [anon_sym_f32] = ACTIONS(2279), + [anon_sym_f64] = ACTIONS(2279), + [anon_sym_bool] = ACTIONS(2279), + [anon_sym_str] = ACTIONS(2279), + [anon_sym_char] = ACTIONS(2279), + [aux_sym__non_special_token_token1] = ACTIONS(2279), + [anon_sym_SQUOTE] = ACTIONS(2279), + [anon_sym_as] = ACTIONS(2279), + [anon_sym_async] = ACTIONS(2279), + [anon_sym_await] = ACTIONS(2279), + [anon_sym_break] = ACTIONS(2279), + [anon_sym_const] = ACTIONS(2279), + [anon_sym_continue] = ACTIONS(2279), + [anon_sym_default] = ACTIONS(2279), + [anon_sym_enum] = ACTIONS(2279), + [anon_sym_fn] = ACTIONS(2279), + [anon_sym_for] = ACTIONS(2279), + [anon_sym_if] = ACTIONS(2279), + [anon_sym_impl] = ACTIONS(2279), + [anon_sym_let] = ACTIONS(2279), + [anon_sym_loop] = ACTIONS(2279), + [anon_sym_match] = ACTIONS(2279), + [anon_sym_mod] = ACTIONS(2279), + [anon_sym_pub] = ACTIONS(2279), + [anon_sym_return] = ACTIONS(2279), + [anon_sym_static] = ACTIONS(2279), + [anon_sym_struct] = ACTIONS(2279), + [anon_sym_trait] = ACTIONS(2279), + [anon_sym_type] = ACTIONS(2279), + [anon_sym_union] = ACTIONS(2279), + [anon_sym_unsafe] = ACTIONS(2279), + [anon_sym_use] = ACTIONS(2279), + [anon_sym_where] = ACTIONS(2279), + [anon_sym_while] = ACTIONS(2279), + [sym_mutable_specifier] = ACTIONS(2279), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_self] = ACTIONS(2279), + [sym_super] = ACTIONS(2279), + [sym_crate] = ACTIONS(2279), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, [533] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2183), + [sym_token_tree] = STATE(538), + [sym_token_repetition] = STATE(538), + [sym__literal] = STATE(538), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(538), + [sym_identifier] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), [anon_sym_RBRACK] = ACTIONS(2285), - [anon_sym_DOLLAR] = ACTIONS(2227), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_await] = 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_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_where] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), + [anon_sym_DOLLAR] = ACTIONS(2191), + [anon_sym_u8] = ACTIONS(2283), + [anon_sym_i8] = ACTIONS(2283), + [anon_sym_u16] = ACTIONS(2283), + [anon_sym_i16] = ACTIONS(2283), + [anon_sym_u32] = ACTIONS(2283), + [anon_sym_i32] = ACTIONS(2283), + [anon_sym_u64] = ACTIONS(2283), + [anon_sym_i64] = ACTIONS(2283), + [anon_sym_u128] = ACTIONS(2283), + [anon_sym_i128] = ACTIONS(2283), + [anon_sym_isize] = ACTIONS(2283), + [anon_sym_usize] = ACTIONS(2283), + [anon_sym_f32] = ACTIONS(2283), + [anon_sym_f64] = ACTIONS(2283), + [anon_sym_bool] = ACTIONS(2283), + [anon_sym_str] = ACTIONS(2283), + [anon_sym_char] = ACTIONS(2283), + [aux_sym__non_special_token_token1] = ACTIONS(2283), + [anon_sym_SQUOTE] = ACTIONS(2283), + [anon_sym_as] = ACTIONS(2283), + [anon_sym_async] = ACTIONS(2283), + [anon_sym_await] = ACTIONS(2283), + [anon_sym_break] = ACTIONS(2283), + [anon_sym_const] = ACTIONS(2283), + [anon_sym_continue] = ACTIONS(2283), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_enum] = ACTIONS(2283), + [anon_sym_fn] = ACTIONS(2283), + [anon_sym_for] = ACTIONS(2283), + [anon_sym_if] = ACTIONS(2283), + [anon_sym_impl] = ACTIONS(2283), + [anon_sym_let] = ACTIONS(2283), + [anon_sym_loop] = ACTIONS(2283), + [anon_sym_match] = ACTIONS(2283), + [anon_sym_mod] = ACTIONS(2283), + [anon_sym_pub] = ACTIONS(2283), + [anon_sym_return] = ACTIONS(2283), + [anon_sym_static] = ACTIONS(2283), + [anon_sym_struct] = ACTIONS(2283), + [anon_sym_trait] = ACTIONS(2283), + [anon_sym_type] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_unsafe] = ACTIONS(2283), + [anon_sym_use] = ACTIONS(2283), + [anon_sym_where] = ACTIONS(2283), + [anon_sym_while] = ACTIONS(2283), + [sym_mutable_specifier] = ACTIONS(2283), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_self] = ACTIONS(2283), + [sym_super] = ACTIONS(2283), + [sym_crate] = ACTIONS(2283), + [sym_metavariable] = ACTIONS(2287), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, [534] = { - [sym_delim_token_tree] = STATE(519), - [sym__delim_tokens] = STATE(519), - [sym__non_delim_token] = STATE(519), - [sym__literal] = STATE(519), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(519), - [sym_identifier] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2277), - [anon_sym_DOLLAR] = ACTIONS(2289), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_as] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_await] = 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_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_where] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [sym_mutable_specifier] = ACTIONS(2287), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_RBRACK] = ACTIONS(2257), + [anon_sym_DOLLAR] = ACTIONS(2291), + [anon_sym_u8] = ACTIONS(2289), + [anon_sym_i8] = ACTIONS(2289), + [anon_sym_u16] = ACTIONS(2289), + [anon_sym_i16] = ACTIONS(2289), + [anon_sym_u32] = ACTIONS(2289), + [anon_sym_i32] = ACTIONS(2289), + [anon_sym_u64] = ACTIONS(2289), + [anon_sym_i64] = ACTIONS(2289), + [anon_sym_u128] = ACTIONS(2289), + [anon_sym_i128] = ACTIONS(2289), + [anon_sym_isize] = ACTIONS(2289), + [anon_sym_usize] = ACTIONS(2289), + [anon_sym_f32] = ACTIONS(2289), + [anon_sym_f64] = ACTIONS(2289), + [anon_sym_bool] = ACTIONS(2289), + [anon_sym_str] = ACTIONS(2289), + [anon_sym_char] = ACTIONS(2289), + [aux_sym__non_special_token_token1] = ACTIONS(2289), + [anon_sym_SQUOTE] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_await] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [anon_sym_fn] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_impl] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_loop] = ACTIONS(2289), + [anon_sym_match] = ACTIONS(2289), + [anon_sym_mod] = ACTIONS(2289), + [anon_sym_pub] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_static] = ACTIONS(2289), + [anon_sym_struct] = ACTIONS(2289), + [anon_sym_trait] = ACTIONS(2289), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_union] = ACTIONS(2289), + [anon_sym_unsafe] = ACTIONS(2289), + [anon_sym_use] = ACTIONS(2289), + [anon_sym_where] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [sym_mutable_specifier] = ACTIONS(2289), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_crate] = ACTIONS(2287), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_self] = ACTIONS(2289), + [sym_super] = ACTIONS(2289), + [sym_crate] = ACTIONS(2289), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, [535] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_RPAREN] = ACTIONS(2265), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2227), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_await] = 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_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_where] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), + [sym_token_tree] = STATE(518), + [sym_token_repetition] = STATE(518), + [sym__literal] = STATE(518), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(518), + [sym_identifier] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_RPAREN] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2191), + [anon_sym_u8] = ACTIONS(2293), + [anon_sym_i8] = ACTIONS(2293), + [anon_sym_u16] = ACTIONS(2293), + [anon_sym_i16] = ACTIONS(2293), + [anon_sym_u32] = ACTIONS(2293), + [anon_sym_i32] = ACTIONS(2293), + [anon_sym_u64] = ACTIONS(2293), + [anon_sym_i64] = ACTIONS(2293), + [anon_sym_u128] = ACTIONS(2293), + [anon_sym_i128] = ACTIONS(2293), + [anon_sym_isize] = ACTIONS(2293), + [anon_sym_usize] = ACTIONS(2293), + [anon_sym_f32] = ACTIONS(2293), + [anon_sym_f64] = ACTIONS(2293), + [anon_sym_bool] = ACTIONS(2293), + [anon_sym_str] = ACTIONS(2293), + [anon_sym_char] = ACTIONS(2293), + [aux_sym__non_special_token_token1] = ACTIONS(2293), + [anon_sym_SQUOTE] = ACTIONS(2293), + [anon_sym_as] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(2293), + [anon_sym_enum] = ACTIONS(2293), + [anon_sym_fn] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_impl] = ACTIONS(2293), + [anon_sym_let] = ACTIONS(2293), + [anon_sym_loop] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_mod] = ACTIONS(2293), + [anon_sym_pub] = ACTIONS(2293), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_static] = ACTIONS(2293), + [anon_sym_struct] = ACTIONS(2293), + [anon_sym_trait] = ACTIONS(2293), + [anon_sym_type] = ACTIONS(2293), + [anon_sym_union] = ACTIONS(2293), + [anon_sym_unsafe] = ACTIONS(2293), + [anon_sym_use] = ACTIONS(2293), + [anon_sym_where] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [sym_mutable_specifier] = ACTIONS(2293), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_self] = ACTIONS(2293), + [sym_super] = ACTIONS(2293), + [sym_crate] = ACTIONS(2293), + [sym_metavariable] = ACTIONS(2295), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, [536] = { - [sym_delim_token_tree] = STATE(535), - [sym__delim_tokens] = STATE(535), - [sym__non_delim_token] = STATE(535), - [sym__literal] = STATE(535), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(535), - [sym_identifier] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_RPAREN] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2293), - [anon_sym_u8] = ACTIONS(2291), - [anon_sym_i8] = ACTIONS(2291), - [anon_sym_u16] = ACTIONS(2291), - [anon_sym_i16] = ACTIONS(2291), - [anon_sym_u32] = ACTIONS(2291), - [anon_sym_i32] = ACTIONS(2291), - [anon_sym_u64] = ACTIONS(2291), - [anon_sym_i64] = ACTIONS(2291), - [anon_sym_u128] = ACTIONS(2291), - [anon_sym_i128] = ACTIONS(2291), - [anon_sym_isize] = ACTIONS(2291), - [anon_sym_usize] = ACTIONS(2291), - [anon_sym_f32] = ACTIONS(2291), - [anon_sym_f64] = ACTIONS(2291), - [anon_sym_bool] = ACTIONS(2291), - [anon_sym_str] = ACTIONS(2291), - [anon_sym_char] = ACTIONS(2291), - [aux_sym__non_special_token_token1] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2291), - [anon_sym_as] = ACTIONS(2291), - [anon_sym_async] = ACTIONS(2291), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_break] = ACTIONS(2291), - [anon_sym_const] = ACTIONS(2291), - [anon_sym_continue] = ACTIONS(2291), - [anon_sym_default] = ACTIONS(2291), - [anon_sym_enum] = ACTIONS(2291), - [anon_sym_fn] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(2291), - [anon_sym_if] = ACTIONS(2291), - [anon_sym_impl] = ACTIONS(2291), - [anon_sym_let] = ACTIONS(2291), - [anon_sym_loop] = ACTIONS(2291), - [anon_sym_match] = ACTIONS(2291), - [anon_sym_mod] = ACTIONS(2291), - [anon_sym_pub] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2291), - [anon_sym_static] = ACTIONS(2291), - [anon_sym_struct] = ACTIONS(2291), - [anon_sym_trait] = ACTIONS(2291), - [anon_sym_type] = ACTIONS(2291), - [anon_sym_union] = ACTIONS(2291), - [anon_sym_unsafe] = ACTIONS(2291), - [anon_sym_use] = ACTIONS(2291), - [anon_sym_where] = ACTIONS(2291), - [anon_sym_while] = ACTIONS(2291), - [sym_mutable_specifier] = ACTIONS(2291), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2291), - [sym_super] = ACTIONS(2291), - [sym_crate] = ACTIONS(2291), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), - [sym_block_comment] = ACTIONS(3), - }, - [537] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_RPAREN] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2227), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_await] = 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_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_where] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), - [sym_block_comment] = ACTIONS(3), - }, - [538] = { - [sym_token_tree] = STATE(495), - [sym_token_repetition] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_repeat1] = STATE(495), + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2165), + [anon_sym_LBRACE] = ACTIONS(2165), [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_RBRACK] = ACTIONS(2167), [anon_sym_DOLLAR] = ACTIONS(2171), [anon_sym_u8] = ACTIONS(2161), [anon_sym_i8] = ACTIONS(2161), @@ -65604,402 +65455,476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2161), [anon_sym_while] = ACTIONS(2161), [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), + [sym_block_comment] = ACTIONS(3), + }, + [537] = { + [sym_token_tree] = STATE(485), + [sym_token_repetition] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_RPAREN] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2191), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_where] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [sym_mutable_specifier] = ACTIONS(2181), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_metavariable] = ACTIONS(2173), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2193), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), + [sym_block_comment] = ACTIONS(3), + }, + [538] = { + [sym_token_tree] = STATE(485), + [sym_token_repetition] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_RBRACK] = ACTIONS(2243), + [anon_sym_DOLLAR] = ACTIONS(2191), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_where] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [sym_mutable_specifier] = ACTIONS(2181), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2193), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, [539] = { - [sym_token_tree] = STATE(507), - [sym_token_repetition] = STATE(507), - [sym__literal] = STATE(507), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_repeat1] = STATE(507), - [sym_identifier] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_RPAREN] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_DOLLAR] = ACTIONS(2171), - [anon_sym_u8] = ACTIONS(2295), - [anon_sym_i8] = ACTIONS(2295), - [anon_sym_u16] = ACTIONS(2295), - [anon_sym_i16] = ACTIONS(2295), - [anon_sym_u32] = ACTIONS(2295), - [anon_sym_i32] = ACTIONS(2295), - [anon_sym_u64] = ACTIONS(2295), - [anon_sym_i64] = ACTIONS(2295), - [anon_sym_u128] = ACTIONS(2295), - [anon_sym_i128] = ACTIONS(2295), - [anon_sym_isize] = ACTIONS(2295), - [anon_sym_usize] = ACTIONS(2295), - [anon_sym_f32] = ACTIONS(2295), - [anon_sym_f64] = ACTIONS(2295), - [anon_sym_bool] = ACTIONS(2295), - [anon_sym_str] = ACTIONS(2295), - [anon_sym_char] = ACTIONS(2295), - [aux_sym__non_special_token_token1] = ACTIONS(2295), - [anon_sym_SQUOTE] = ACTIONS(2295), - [anon_sym_as] = ACTIONS(2295), - [anon_sym_async] = ACTIONS(2295), - [anon_sym_await] = ACTIONS(2295), - [anon_sym_break] = ACTIONS(2295), - [anon_sym_const] = ACTIONS(2295), - [anon_sym_continue] = ACTIONS(2295), - [anon_sym_default] = ACTIONS(2295), - [anon_sym_enum] = ACTIONS(2295), - [anon_sym_fn] = ACTIONS(2295), - [anon_sym_for] = ACTIONS(2295), - [anon_sym_if] = ACTIONS(2295), - [anon_sym_impl] = ACTIONS(2295), - [anon_sym_let] = ACTIONS(2295), - [anon_sym_loop] = ACTIONS(2295), - [anon_sym_match] = ACTIONS(2295), - [anon_sym_mod] = ACTIONS(2295), - [anon_sym_pub] = ACTIONS(2295), - [anon_sym_return] = ACTIONS(2295), - [anon_sym_static] = ACTIONS(2295), - [anon_sym_struct] = ACTIONS(2295), - [anon_sym_trait] = ACTIONS(2295), - [anon_sym_type] = ACTIONS(2295), - [anon_sym_union] = ACTIONS(2295), - [anon_sym_unsafe] = ACTIONS(2295), - [anon_sym_use] = ACTIONS(2295), - [anon_sym_where] = ACTIONS(2295), - [anon_sym_while] = ACTIONS(2295), - [sym_mutable_specifier] = ACTIONS(2295), + [sym_token_tree] = STATE(537), + [sym_token_repetition] = STATE(537), + [sym__literal] = STATE(537), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(537), + [sym_identifier] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_RPAREN] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2191), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2299), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_as] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(2299), + [anon_sym_await] = 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_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_where] = ACTIONS(2299), + [anon_sym_while] = ACTIONS(2299), + [sym_mutable_specifier] = ACTIONS(2299), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2295), - [sym_super] = ACTIONS(2295), - [sym_crate] = ACTIONS(2295), - [sym_metavariable] = ACTIONS(2299), + [sym_self] = ACTIONS(2299), + [sym_super] = ACTIONS(2299), + [sym_crate] = ACTIONS(2299), + [sym_metavariable] = ACTIONS(2303), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, [540] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_RPAREN] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2227), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_await] = 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_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_where] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(2171), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, [541] = { - [sym_delim_token_tree] = STATE(520), - [sym__delim_tokens] = STATE(520), - [sym__non_delim_token] = STATE(520), - [sym__literal] = STATE(520), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(520), - [sym_identifier] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_RPAREN] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2303), - [anon_sym_u8] = ACTIONS(2301), - [anon_sym_i8] = ACTIONS(2301), - [anon_sym_u16] = ACTIONS(2301), - [anon_sym_i16] = ACTIONS(2301), - [anon_sym_u32] = ACTIONS(2301), - [anon_sym_i32] = ACTIONS(2301), - [anon_sym_u64] = ACTIONS(2301), - [anon_sym_i64] = ACTIONS(2301), - [anon_sym_u128] = ACTIONS(2301), - [anon_sym_i128] = ACTIONS(2301), - [anon_sym_isize] = ACTIONS(2301), - [anon_sym_usize] = ACTIONS(2301), - [anon_sym_f32] = ACTIONS(2301), - [anon_sym_f64] = ACTIONS(2301), - [anon_sym_bool] = ACTIONS(2301), - [anon_sym_str] = ACTIONS(2301), - [anon_sym_char] = ACTIONS(2301), - [aux_sym__non_special_token_token1] = ACTIONS(2301), - [anon_sym_SQUOTE] = ACTIONS(2301), - [anon_sym_as] = ACTIONS(2301), - [anon_sym_async] = ACTIONS(2301), - [anon_sym_await] = ACTIONS(2301), - [anon_sym_break] = ACTIONS(2301), - [anon_sym_const] = ACTIONS(2301), - [anon_sym_continue] = ACTIONS(2301), - [anon_sym_default] = ACTIONS(2301), - [anon_sym_enum] = ACTIONS(2301), - [anon_sym_fn] = ACTIONS(2301), - [anon_sym_for] = ACTIONS(2301), - [anon_sym_if] = ACTIONS(2301), - [anon_sym_impl] = ACTIONS(2301), - [anon_sym_let] = ACTIONS(2301), - [anon_sym_loop] = ACTIONS(2301), - [anon_sym_match] = ACTIONS(2301), - [anon_sym_mod] = ACTIONS(2301), - [anon_sym_pub] = ACTIONS(2301), - [anon_sym_return] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2301), - [anon_sym_struct] = ACTIONS(2301), - [anon_sym_trait] = ACTIONS(2301), - [anon_sym_type] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(2301), - [anon_sym_unsafe] = ACTIONS(2301), - [anon_sym_use] = ACTIONS(2301), - [anon_sym_where] = ACTIONS(2301), - [anon_sym_while] = ACTIONS(2301), - [sym_mutable_specifier] = ACTIONS(2301), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), + [sym_token_tree] = STATE(485), + [sym_token_repetition] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2191), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_where] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [sym_mutable_specifier] = ACTIONS(2181), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2301), - [sym_super] = ACTIONS(2301), - [sym_crate] = ACTIONS(2301), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2193), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, [542] = { - [sym_delim_token_tree] = STATE(492), - [sym__delim_tokens] = STATE(492), - [sym__non_delim_token] = STATE(492), - [sym__literal] = STATE(492), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_DOLLAR] = ACTIONS(2227), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_await] = 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_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_where] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [sym_mutable_specifier] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_DOLLAR] = ACTIONS(2171), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, [543] = { - [sym_delim_token_tree] = STATE(524), - [sym__delim_tokens] = STATE(524), - [sym__non_delim_token] = STATE(524), - [sym__literal] = STATE(524), - [sym_string_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [aux_sym_delim_token_tree_repeat1] = STATE(524), - [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_RBRACK] = ACTIONS(2181), - [anon_sym_DOLLAR] = ACTIONS(2307), - [anon_sym_u8] = ACTIONS(2305), - [anon_sym_i8] = ACTIONS(2305), - [anon_sym_u16] = ACTIONS(2305), - [anon_sym_i16] = ACTIONS(2305), - [anon_sym_u32] = ACTIONS(2305), - [anon_sym_i32] = ACTIONS(2305), - [anon_sym_u64] = ACTIONS(2305), - [anon_sym_i64] = ACTIONS(2305), - [anon_sym_u128] = ACTIONS(2305), - [anon_sym_i128] = ACTIONS(2305), - [anon_sym_isize] = ACTIONS(2305), - [anon_sym_usize] = ACTIONS(2305), - [anon_sym_f32] = ACTIONS(2305), - [anon_sym_f64] = ACTIONS(2305), - [anon_sym_bool] = ACTIONS(2305), - [anon_sym_str] = ACTIONS(2305), - [anon_sym_char] = ACTIONS(2305), - [aux_sym__non_special_token_token1] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2305), - [anon_sym_as] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2305), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_default] = ACTIONS(2305), - [anon_sym_enum] = ACTIONS(2305), - [anon_sym_fn] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_impl] = ACTIONS(2305), - [anon_sym_let] = ACTIONS(2305), - [anon_sym_loop] = ACTIONS(2305), - [anon_sym_match] = ACTIONS(2305), - [anon_sym_mod] = ACTIONS(2305), - [anon_sym_pub] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_static] = ACTIONS(2305), - [anon_sym_struct] = ACTIONS(2305), - [anon_sym_trait] = ACTIONS(2305), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_union] = ACTIONS(2305), - [anon_sym_unsafe] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2305), - [anon_sym_where] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [sym_mutable_specifier] = ACTIONS(2305), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2305), - [sym_super] = ACTIONS(2305), - [sym_crate] = ACTIONS(2305), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), - [sym_block_comment] = ACTIONS(3), - }, - [544] = { - [sym_token_tree] = STATE(495), - [sym_token_repetition] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(562), - [sym_boolean_literal] = STATE(562), - [aux_sym_token_tree_repeat1] = STATE(495), + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(592), + [sym_boolean_literal] = STATE(592), + [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2179), [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_RBRACK] = ACTIONS(2165), [anon_sym_DOLLAR] = ACTIONS(2171), [anon_sym_u8] = ACTIONS(2161), [anon_sym_i8] = ACTIONS(2161), @@ -66048,224 +65973,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2161), [anon_sym_while] = ACTIONS(2161), [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), + [sym_block_comment] = ACTIONS(3), + }, + [544] = { + [sym_token_tree] = STATE(541), + [sym_token_repetition] = STATE(541), + [sym__literal] = STATE(541), + [sym_string_literal] = STATE(585), + [sym_boolean_literal] = STATE(585), + [aux_sym_token_tree_repeat1] = STATE(541), + [sym_identifier] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2191), + [anon_sym_u8] = ACTIONS(2305), + [anon_sym_i8] = ACTIONS(2305), + [anon_sym_u16] = ACTIONS(2305), + [anon_sym_i16] = ACTIONS(2305), + [anon_sym_u32] = ACTIONS(2305), + [anon_sym_i32] = ACTIONS(2305), + [anon_sym_u64] = ACTIONS(2305), + [anon_sym_i64] = ACTIONS(2305), + [anon_sym_u128] = ACTIONS(2305), + [anon_sym_i128] = ACTIONS(2305), + [anon_sym_isize] = ACTIONS(2305), + [anon_sym_usize] = ACTIONS(2305), + [anon_sym_f32] = ACTIONS(2305), + [anon_sym_f64] = ACTIONS(2305), + [anon_sym_bool] = ACTIONS(2305), + [anon_sym_str] = ACTIONS(2305), + [anon_sym_char] = ACTIONS(2305), + [aux_sym__non_special_token_token1] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_as] = ACTIONS(2305), + [anon_sym_async] = ACTIONS(2305), + [anon_sym_await] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), + [anon_sym_const] = ACTIONS(2305), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_default] = ACTIONS(2305), + [anon_sym_enum] = ACTIONS(2305), + [anon_sym_fn] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_impl] = ACTIONS(2305), + [anon_sym_let] = ACTIONS(2305), + [anon_sym_loop] = ACTIONS(2305), + [anon_sym_match] = ACTIONS(2305), + [anon_sym_mod] = ACTIONS(2305), + [anon_sym_pub] = ACTIONS(2305), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_static] = ACTIONS(2305), + [anon_sym_struct] = ACTIONS(2305), + [anon_sym_trait] = ACTIONS(2305), + [anon_sym_type] = ACTIONS(2305), + [anon_sym_union] = ACTIONS(2305), + [anon_sym_unsafe] = ACTIONS(2305), + [anon_sym_use] = ACTIONS(2305), + [anon_sym_where] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [sym_mutable_specifier] = ACTIONS(2305), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_metavariable] = ACTIONS(2173), + [sym_self] = ACTIONS(2305), + [sym_super] = ACTIONS(2305), + [sym_crate] = ACTIONS(2305), + [sym_metavariable] = ACTIONS(2307), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, [545] = { - [sym_attribute_item] = STATE(624), - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_match_pattern] = STATE(2406), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2068), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_enum_variant_list_repeat1] = STATE(624), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [546] = { - [sym_attribute_item] = STATE(558), - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym_visibility_modifier] = STATE(688), - [sym__type] = STATE(1764), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [sym_attribute_item] = STATE(554), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym_visibility_modifier] = STATE(686), + [sym__type] = STATE(1821), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_enum_variant_list_repeat1] = STATE(558), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_enum_variant_list_repeat1] = STATE(554), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(856), [anon_sym_RPAREN] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(680), [anon_sym_COMMA] = ACTIONS(2319), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(874), + [sym_metavariable] = ACTIONS(878), + [sym_block_comment] = ACTIONS(3), + }, + [546] = { + [sym_attribute_item] = STATE(621), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_match_pattern] = STATE(2560), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1981), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_enum_variant_list_repeat1] = STATE(621), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [547] = { - [sym_attribute_item] = STATE(624), - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_match_pattern] = STATE(2456), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2068), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [aux_sym_enum_variant_list_repeat1] = STATE(624), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_attribute_item] = STATE(621), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_match_pattern] = STATE(2481), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1981), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [aux_sym_enum_variant_list_repeat1] = STATE(621), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -66273,928 +66271,928 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [548] = { - [sym_attribute_item] = STATE(559), - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym_visibility_modifier] = STATE(716), - [sym__type] = STATE(1869), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [sym_attribute_item] = STATE(557), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym_visibility_modifier] = STATE(645), + [sym__type] = STATE(1917), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_enum_variant_list_repeat1] = STATE(559), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_enum_variant_list_repeat1] = STATE(557), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(856), [anon_sym_RPAREN] = ACTIONS(2323), - [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(874), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, [549] = { - [sym_attribute_item] = STATE(559), - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym_visibility_modifier] = STATE(716), - [sym__type] = STATE(1869), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [sym_attribute_item] = STATE(557), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym_visibility_modifier] = STATE(645), + [sym__type] = STATE(1917), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_enum_variant_list_repeat1] = STATE(559), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_enum_variant_list_repeat1] = STATE(557), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(856), [anon_sym_RPAREN] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(874), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, [550] = { - [sym_attribute_item] = STATE(559), - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym_visibility_modifier] = STATE(716), - [sym__type] = STATE(1869), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [sym_attribute_item] = STATE(557), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym_visibility_modifier] = STATE(645), + [sym__type] = STATE(1917), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_enum_variant_list_repeat1] = STATE(559), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_enum_variant_list_repeat1] = STATE(557), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(856), [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(874), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, [551] = { - [sym_attribute_item] = STATE(559), - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym_visibility_modifier] = STATE(716), - [sym__type] = STATE(1869), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [sym_attribute_item] = STATE(557), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym_visibility_modifier] = STATE(645), + [sym__type] = STATE(1917), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_enum_variant_list_repeat1] = STATE(559), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_enum_variant_list_repeat1] = STATE(557), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(856), [anon_sym_RPAREN] = ACTIONS(2329), - [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(874), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, [552] = { - [sym_attribute_item] = STATE(559), - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym_visibility_modifier] = STATE(716), - [sym__type] = STATE(1869), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [sym_attribute_item] = STATE(557), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym_visibility_modifier] = STATE(645), + [sym__type] = STATE(1917), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_enum_variant_list_repeat1] = STATE(559), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_enum_variant_list_repeat1] = STATE(557), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(856), [anon_sym_RPAREN] = ACTIONS(2331), - [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(874), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, [553] = { - [sym_attribute_item] = STATE(559), - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym_visibility_modifier] = STATE(716), - [sym__type] = STATE(1869), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [sym_attribute_item] = STATE(557), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym_visibility_modifier] = STATE(645), + [sym__type] = STATE(1917), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_enum_variant_list_repeat1] = STATE(559), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_enum_variant_list_repeat1] = STATE(557), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(856), [anon_sym_RPAREN] = ACTIONS(2333), - [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(874), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, [554] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1825), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_COMMA] = ACTIONS(2337), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [555] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1855), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_RBRACK] = ACTIONS(800), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_COMMA] = ACTIONS(808), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [556] = { - [sym_attribute_item] = STATE(559), - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym_visibility_modifier] = STATE(716), - [sym__type] = STATE(1869), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [sym_attribute_item] = STATE(1153), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym_visibility_modifier] = STATE(733), + [sym__type] = STATE(1823), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_enum_variant_list_repeat1] = STATE(559), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_enum_variant_list_repeat1] = STATE(1153), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(874), - [sym_block_comment] = ACTIONS(3), - }, - [557] = { - [sym_identifier] = ACTIONS(2339), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_RPAREN] = ACTIONS(2341), - [anon_sym_LBRACE] = ACTIONS(2341), - [anon_sym_RBRACE] = ACTIONS(2341), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_RBRACK] = ACTIONS(2341), - [anon_sym_COLON] = ACTIONS(2343), - [anon_sym_DOLLAR] = ACTIONS(2339), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2339), - [anon_sym_SQUOTE] = ACTIONS(2339), - [anon_sym_as] = ACTIONS(2339), - [anon_sym_async] = ACTIONS(2339), - [anon_sym_await] = 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_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_where] = ACTIONS(2339), - [anon_sym_while] = ACTIONS(2339), - [sym_mutable_specifier] = ACTIONS(2339), - [sym_integer_literal] = ACTIONS(2341), - [aux_sym_string_literal_token1] = ACTIONS(2341), - [sym_char_literal] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(2339), - [anon_sym_false] = ACTIONS(2339), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2339), - [sym_super] = ACTIONS(2339), - [sym_crate] = ACTIONS(2339), - [sym_metavariable] = ACTIONS(2341), - [sym_raw_string_literal] = ACTIONS(2341), - [sym_float_literal] = ACTIONS(2341), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, - [558] = { - [sym_attribute_item] = STATE(1138), - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym_visibility_modifier] = STATE(641), - [sym__type] = STATE(1821), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [555] = { + [sym_attribute_item] = STATE(557), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym_visibility_modifier] = STATE(645), + [sym__type] = STATE(1917), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_enum_variant_list_repeat1] = STATE(1138), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_enum_variant_list_repeat1] = STATE(557), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(874), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, - [559] = { - [sym_attribute_item] = STATE(1138), - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym_visibility_modifier] = STATE(687), - [sym__type] = STATE(1949), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [556] = { + [sym_parameter] = STATE(1980), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1798), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(2335), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [anon_sym_PIPE] = ACTIONS(2337), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2339), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [557] = { + [sym_attribute_item] = STATE(1153), + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym_visibility_modifier] = STATE(691), + [sym__type] = STATE(1883), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_enum_variant_list_repeat1] = STATE(1138), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_enum_variant_list_repeat1] = STATE(1153), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(874), + [sym_metavariable] = ACTIONS(878), + [sym_block_comment] = ACTIONS(3), + }, + [558] = { + [sym_identifier] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2343), + [anon_sym_RPAREN] = ACTIONS(2343), + [anon_sym_LBRACE] = ACTIONS(2343), + [anon_sym_RBRACE] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(2343), + [anon_sym_RBRACK] = ACTIONS(2343), + [anon_sym_COLON] = ACTIONS(2345), + [anon_sym_DOLLAR] = ACTIONS(2341), + [anon_sym_u8] = ACTIONS(2341), + [anon_sym_i8] = ACTIONS(2341), + [anon_sym_u16] = ACTIONS(2341), + [anon_sym_i16] = ACTIONS(2341), + [anon_sym_u32] = ACTIONS(2341), + [anon_sym_i32] = ACTIONS(2341), + [anon_sym_u64] = ACTIONS(2341), + [anon_sym_i64] = ACTIONS(2341), + [anon_sym_u128] = ACTIONS(2341), + [anon_sym_i128] = ACTIONS(2341), + [anon_sym_isize] = ACTIONS(2341), + [anon_sym_usize] = ACTIONS(2341), + [anon_sym_f32] = ACTIONS(2341), + [anon_sym_f64] = ACTIONS(2341), + [anon_sym_bool] = ACTIONS(2341), + [anon_sym_str] = ACTIONS(2341), + [anon_sym_char] = ACTIONS(2341), + [aux_sym__non_special_token_token1] = ACTIONS(2341), + [anon_sym_SQUOTE] = ACTIONS(2341), + [anon_sym_as] = ACTIONS(2341), + [anon_sym_async] = ACTIONS(2341), + [anon_sym_await] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_default] = ACTIONS(2341), + [anon_sym_enum] = ACTIONS(2341), + [anon_sym_fn] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_impl] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2341), + [anon_sym_loop] = ACTIONS(2341), + [anon_sym_match] = ACTIONS(2341), + [anon_sym_mod] = ACTIONS(2341), + [anon_sym_pub] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_struct] = ACTIONS(2341), + [anon_sym_trait] = ACTIONS(2341), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_union] = ACTIONS(2341), + [anon_sym_unsafe] = ACTIONS(2341), + [anon_sym_use] = ACTIONS(2341), + [anon_sym_where] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [sym_mutable_specifier] = ACTIONS(2341), + [sym_integer_literal] = ACTIONS(2343), + [aux_sym_string_literal_token1] = ACTIONS(2343), + [sym_char_literal] = ACTIONS(2343), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2341), + [sym_super] = ACTIONS(2341), + [sym_crate] = ACTIONS(2341), + [sym_metavariable] = ACTIONS(2343), + [sym_raw_string_literal] = ACTIONS(2343), + [sym_float_literal] = ACTIONS(2343), + [sym_block_comment] = ACTIONS(3), + }, + [559] = { + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1791), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_RBRACK] = ACTIONS(780), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(788), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [560] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1839), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(2345), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_COMMA] = ACTIONS(778), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1759), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_RPAREN] = ACTIONS(2347), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(2349), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -67202,86 +67200,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [561] = { - [sym_parameter] = STATE(2030), - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1792), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1789), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_RPAREN] = ACTIONS(2351), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(806), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(2347), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), - [anon_sym_PIPE] = ACTIONS(2349), [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), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2351), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [562] = { + [sym_parameter] = STATE(2138), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(2088), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(2335), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2339), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [563] = { [sym_identifier] = ACTIONS(2353), [anon_sym_LPAREN] = ACTIONS(2355), [anon_sym_RPAREN] = ACTIONS(2355), @@ -67351,7 +67419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2355), [sym_block_comment] = ACTIONS(3), }, - [563] = { + [564] = { [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(2359), [anon_sym_RPAREN] = ACTIONS(2359), @@ -67421,7 +67489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2359), [sym_block_comment] = ACTIONS(3), }, - [564] = { + [565] = { [sym_identifier] = ACTIONS(2361), [anon_sym_LPAREN] = ACTIONS(2363), [anon_sym_RPAREN] = ACTIONS(2363), @@ -67491,201 +67559,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2363), [sym_block_comment] = ACTIONS(3), }, - [565] = { - [sym_identifier] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_RPAREN] = ACTIONS(2367), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_LBRACK] = ACTIONS(2367), - [anon_sym_RBRACK] = ACTIONS(2367), - [anon_sym_DOLLAR] = ACTIONS(2365), - [anon_sym_u8] = ACTIONS(2365), - [anon_sym_i8] = ACTIONS(2365), - [anon_sym_u16] = ACTIONS(2365), - [anon_sym_i16] = ACTIONS(2365), - [anon_sym_u32] = ACTIONS(2365), - [anon_sym_i32] = ACTIONS(2365), - [anon_sym_u64] = ACTIONS(2365), - [anon_sym_i64] = ACTIONS(2365), - [anon_sym_u128] = ACTIONS(2365), - [anon_sym_i128] = ACTIONS(2365), - [anon_sym_isize] = ACTIONS(2365), - [anon_sym_usize] = ACTIONS(2365), - [anon_sym_f32] = ACTIONS(2365), - [anon_sym_f64] = ACTIONS(2365), - [anon_sym_bool] = ACTIONS(2365), - [anon_sym_str] = ACTIONS(2365), - [anon_sym_char] = ACTIONS(2365), - [aux_sym__non_special_token_token1] = ACTIONS(2365), - [anon_sym_SQUOTE] = ACTIONS(2365), - [anon_sym_as] = ACTIONS(2365), - [anon_sym_async] = ACTIONS(2365), - [anon_sym_await] = ACTIONS(2365), - [anon_sym_break] = ACTIONS(2365), - [anon_sym_const] = ACTIONS(2365), - [anon_sym_continue] = ACTIONS(2365), - [anon_sym_default] = ACTIONS(2365), - [anon_sym_enum] = ACTIONS(2365), - [anon_sym_fn] = ACTIONS(2365), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_impl] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_loop] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_mod] = ACTIONS(2365), - [anon_sym_pub] = ACTIONS(2365), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_static] = ACTIONS(2365), - [anon_sym_struct] = ACTIONS(2365), - [anon_sym_trait] = ACTIONS(2365), - [anon_sym_type] = ACTIONS(2365), - [anon_sym_union] = ACTIONS(2365), - [anon_sym_unsafe] = ACTIONS(2365), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_where] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [sym_mutable_specifier] = ACTIONS(2365), - [sym_integer_literal] = ACTIONS(2367), - [aux_sym_string_literal_token1] = ACTIONS(2367), - [sym_char_literal] = ACTIONS(2367), - [anon_sym_true] = ACTIONS(2365), - [anon_sym_false] = ACTIONS(2365), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2365), - [sym_super] = ACTIONS(2365), - [sym_crate] = ACTIONS(2365), - [sym_metavariable] = ACTIONS(2367), - [sym_raw_string_literal] = ACTIONS(2367), - [sym_float_literal] = ACTIONS(2367), - [sym_block_comment] = ACTIONS(3), - }, [566] = { - [sym_identifier] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_RPAREN] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(2369), - [anon_sym_u8] = ACTIONS(2369), - [anon_sym_i8] = ACTIONS(2369), - [anon_sym_u16] = ACTIONS(2369), - [anon_sym_i16] = ACTIONS(2369), - [anon_sym_u32] = ACTIONS(2369), - [anon_sym_i32] = ACTIONS(2369), - [anon_sym_u64] = ACTIONS(2369), - [anon_sym_i64] = ACTIONS(2369), - [anon_sym_u128] = ACTIONS(2369), - [anon_sym_i128] = ACTIONS(2369), - [anon_sym_isize] = ACTIONS(2369), - [anon_sym_usize] = ACTIONS(2369), - [anon_sym_f32] = ACTIONS(2369), - [anon_sym_f64] = ACTIONS(2369), - [anon_sym_bool] = ACTIONS(2369), - [anon_sym_str] = ACTIONS(2369), - [anon_sym_char] = ACTIONS(2369), - [aux_sym__non_special_token_token1] = ACTIONS(2369), - [anon_sym_SQUOTE] = ACTIONS(2369), - [anon_sym_as] = ACTIONS(2369), - [anon_sym_async] = ACTIONS(2369), - [anon_sym_await] = ACTIONS(2369), - [anon_sym_break] = ACTIONS(2369), - [anon_sym_const] = ACTIONS(2369), - [anon_sym_continue] = ACTIONS(2369), - [anon_sym_default] = ACTIONS(2369), - [anon_sym_enum] = ACTIONS(2369), - [anon_sym_fn] = ACTIONS(2369), - [anon_sym_for] = ACTIONS(2369), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_impl] = ACTIONS(2369), - [anon_sym_let] = ACTIONS(2369), - [anon_sym_loop] = ACTIONS(2369), - [anon_sym_match] = ACTIONS(2369), - [anon_sym_mod] = ACTIONS(2369), - [anon_sym_pub] = ACTIONS(2369), - [anon_sym_return] = ACTIONS(2369), - [anon_sym_static] = ACTIONS(2369), - [anon_sym_struct] = ACTIONS(2369), - [anon_sym_trait] = ACTIONS(2369), - [anon_sym_type] = ACTIONS(2369), - [anon_sym_union] = ACTIONS(2369), - [anon_sym_unsafe] = ACTIONS(2369), - [anon_sym_use] = ACTIONS(2369), - [anon_sym_where] = ACTIONS(2369), - [anon_sym_while] = ACTIONS(2369), - [sym_mutable_specifier] = ACTIONS(2369), - [sym_integer_literal] = ACTIONS(2371), - [aux_sym_string_literal_token1] = ACTIONS(2371), - [sym_char_literal] = ACTIONS(2371), - [anon_sym_true] = ACTIONS(2369), - [anon_sym_false] = ACTIONS(2369), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2369), - [sym_super] = ACTIONS(2369), - [sym_crate] = ACTIONS(2369), - [sym_metavariable] = ACTIONS(2371), - [sym_raw_string_literal] = ACTIONS(2371), - [sym_float_literal] = ACTIONS(2371), - [sym_block_comment] = ACTIONS(3), - }, - [567] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1836), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1804), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_RPAREN] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -67693,139 +67621,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, + [567] = { + [sym_identifier] = ACTIONS(2367), + [anon_sym_LPAREN] = ACTIONS(2369), + [anon_sym_RPAREN] = ACTIONS(2369), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2369), + [anon_sym_RBRACK] = ACTIONS(2369), + [anon_sym_DOLLAR] = ACTIONS(2367), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2367), + [anon_sym_SQUOTE] = ACTIONS(2367), + [anon_sym_as] = ACTIONS(2367), + [anon_sym_async] = ACTIONS(2367), + [anon_sym_await] = 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_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_where] = ACTIONS(2367), + [anon_sym_while] = ACTIONS(2367), + [sym_mutable_specifier] = ACTIONS(2367), + [sym_integer_literal] = ACTIONS(2369), + [aux_sym_string_literal_token1] = ACTIONS(2369), + [sym_char_literal] = ACTIONS(2369), + [anon_sym_true] = ACTIONS(2367), + [anon_sym_false] = ACTIONS(2367), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2367), + [sym_super] = ACTIONS(2367), + [sym_crate] = ACTIONS(2367), + [sym_metavariable] = ACTIONS(2369), + [sym_raw_string_literal] = ACTIONS(2369), + [sym_float_literal] = ACTIONS(2369), + [sym_block_comment] = ACTIONS(3), + }, [568] = { - [sym_identifier] = ACTIONS(2375), - [anon_sym_LPAREN] = ACTIONS(2377), - [anon_sym_RPAREN] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2377), - [anon_sym_RBRACE] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2377), - [anon_sym_RBRACK] = ACTIONS(2377), - [anon_sym_DOLLAR] = ACTIONS(2375), - [anon_sym_u8] = ACTIONS(2375), - [anon_sym_i8] = ACTIONS(2375), - [anon_sym_u16] = ACTIONS(2375), - [anon_sym_i16] = ACTIONS(2375), - [anon_sym_u32] = ACTIONS(2375), - [anon_sym_i32] = ACTIONS(2375), - [anon_sym_u64] = ACTIONS(2375), - [anon_sym_i64] = ACTIONS(2375), - [anon_sym_u128] = ACTIONS(2375), - [anon_sym_i128] = ACTIONS(2375), - [anon_sym_isize] = ACTIONS(2375), - [anon_sym_usize] = ACTIONS(2375), - [anon_sym_f32] = ACTIONS(2375), - [anon_sym_f64] = ACTIONS(2375), - [anon_sym_bool] = ACTIONS(2375), - [anon_sym_str] = ACTIONS(2375), - [anon_sym_char] = ACTIONS(2375), - [aux_sym__non_special_token_token1] = ACTIONS(2375), - [anon_sym_SQUOTE] = ACTIONS(2375), - [anon_sym_as] = ACTIONS(2375), - [anon_sym_async] = ACTIONS(2375), - [anon_sym_await] = ACTIONS(2375), - [anon_sym_break] = ACTIONS(2375), - [anon_sym_const] = ACTIONS(2375), - [anon_sym_continue] = ACTIONS(2375), - [anon_sym_default] = ACTIONS(2375), - [anon_sym_enum] = ACTIONS(2375), - [anon_sym_fn] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2375), - [anon_sym_impl] = ACTIONS(2375), - [anon_sym_let] = ACTIONS(2375), - [anon_sym_loop] = ACTIONS(2375), - [anon_sym_match] = ACTIONS(2375), - [anon_sym_mod] = ACTIONS(2375), - [anon_sym_pub] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2375), - [anon_sym_static] = ACTIONS(2375), - [anon_sym_struct] = ACTIONS(2375), - [anon_sym_trait] = ACTIONS(2375), - [anon_sym_type] = ACTIONS(2375), - [anon_sym_union] = ACTIONS(2375), - [anon_sym_unsafe] = ACTIONS(2375), - [anon_sym_use] = ACTIONS(2375), - [anon_sym_where] = ACTIONS(2375), - [anon_sym_while] = ACTIONS(2375), - [sym_mutable_specifier] = ACTIONS(2375), - [sym_integer_literal] = ACTIONS(2377), - [aux_sym_string_literal_token1] = ACTIONS(2377), - [sym_char_literal] = ACTIONS(2377), - [anon_sym_true] = ACTIONS(2375), - [anon_sym_false] = ACTIONS(2375), + [sym_identifier] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_RPAREN] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_RBRACK] = ACTIONS(2373), + [anon_sym_DOLLAR] = ACTIONS(2371), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2371), + [anon_sym_as] = ACTIONS(2371), + [anon_sym_async] = ACTIONS(2371), + [anon_sym_await] = 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_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_where] = ACTIONS(2371), + [anon_sym_while] = ACTIONS(2371), + [sym_mutable_specifier] = ACTIONS(2371), + [sym_integer_literal] = ACTIONS(2373), + [aux_sym_string_literal_token1] = ACTIONS(2373), + [sym_char_literal] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2371), + [anon_sym_false] = ACTIONS(2371), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2375), - [sym_super] = ACTIONS(2375), - [sym_crate] = ACTIONS(2375), - [sym_metavariable] = ACTIONS(2377), - [sym_raw_string_literal] = ACTIONS(2377), - [sym_float_literal] = ACTIONS(2377), + [sym_self] = ACTIONS(2371), + [sym_super] = ACTIONS(2371), + [sym_crate] = ACTIONS(2371), + [sym_metavariable] = ACTIONS(2373), + [sym_raw_string_literal] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), [sym_block_comment] = ACTIONS(3), }, [569] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1836), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(2379), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_function_modifiers] = STATE(2472), + [sym_const_parameter] = STATE(2006), + [sym_constrained_type_parameter] = STATE(1758), + [sym_optional_type_parameter] = STATE(2006), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(2103), + [sym_bracketed_type] = STATE(2378), + [sym_qualified_type] = STATE(2448), + [sym_lifetime] = STATE(1654), + [sym_array_type] = STATE(1390), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(2375), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(2377), + [anon_sym_default] = ACTIONS(864), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(866), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(2379), + [sym_block_comment] = ACTIONS(3), + }, + [570] = { + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1804), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -67833,209 +67901,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [570] = { - [sym_identifier] = ACTIONS(2381), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_RPAREN] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_RBRACK] = ACTIONS(2383), - [anon_sym_DOLLAR] = ACTIONS(2381), - [anon_sym_u8] = ACTIONS(2381), - [anon_sym_i8] = ACTIONS(2381), - [anon_sym_u16] = ACTIONS(2381), - [anon_sym_i16] = ACTIONS(2381), - [anon_sym_u32] = ACTIONS(2381), - [anon_sym_i32] = ACTIONS(2381), - [anon_sym_u64] = ACTIONS(2381), - [anon_sym_i64] = ACTIONS(2381), - [anon_sym_u128] = ACTIONS(2381), - [anon_sym_i128] = ACTIONS(2381), - [anon_sym_isize] = ACTIONS(2381), - [anon_sym_usize] = ACTIONS(2381), - [anon_sym_f32] = ACTIONS(2381), - [anon_sym_f64] = ACTIONS(2381), - [anon_sym_bool] = ACTIONS(2381), - [anon_sym_str] = ACTIONS(2381), - [anon_sym_char] = ACTIONS(2381), - [aux_sym__non_special_token_token1] = ACTIONS(2381), - [anon_sym_SQUOTE] = ACTIONS(2381), - [anon_sym_as] = ACTIONS(2381), - [anon_sym_async] = ACTIONS(2381), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_break] = ACTIONS(2381), - [anon_sym_const] = ACTIONS(2381), - [anon_sym_continue] = ACTIONS(2381), - [anon_sym_default] = ACTIONS(2381), - [anon_sym_enum] = ACTIONS(2381), - [anon_sym_fn] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(2381), - [anon_sym_if] = ACTIONS(2381), - [anon_sym_impl] = ACTIONS(2381), - [anon_sym_let] = ACTIONS(2381), - [anon_sym_loop] = ACTIONS(2381), - [anon_sym_match] = ACTIONS(2381), - [anon_sym_mod] = ACTIONS(2381), - [anon_sym_pub] = ACTIONS(2381), - [anon_sym_return] = ACTIONS(2381), - [anon_sym_static] = ACTIONS(2381), - [anon_sym_struct] = ACTIONS(2381), - [anon_sym_trait] = ACTIONS(2381), - [anon_sym_type] = ACTIONS(2381), - [anon_sym_union] = ACTIONS(2381), - [anon_sym_unsafe] = ACTIONS(2381), - [anon_sym_use] = ACTIONS(2381), - [anon_sym_where] = ACTIONS(2381), - [anon_sym_while] = ACTIONS(2381), - [sym_mutable_specifier] = ACTIONS(2381), - [sym_integer_literal] = ACTIONS(2383), - [aux_sym_string_literal_token1] = ACTIONS(2383), - [sym_char_literal] = ACTIONS(2383), - [anon_sym_true] = ACTIONS(2381), - [anon_sym_false] = ACTIONS(2381), + [571] = { + [sym_identifier] = ACTIONS(2383), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_RPAREN] = ACTIONS(2385), + [anon_sym_LBRACE] = ACTIONS(2385), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2385), + [anon_sym_RBRACK] = ACTIONS(2385), + [anon_sym_DOLLAR] = ACTIONS(2383), + [anon_sym_u8] = ACTIONS(2383), + [anon_sym_i8] = ACTIONS(2383), + [anon_sym_u16] = ACTIONS(2383), + [anon_sym_i16] = ACTIONS(2383), + [anon_sym_u32] = ACTIONS(2383), + [anon_sym_i32] = ACTIONS(2383), + [anon_sym_u64] = ACTIONS(2383), + [anon_sym_i64] = ACTIONS(2383), + [anon_sym_u128] = ACTIONS(2383), + [anon_sym_i128] = ACTIONS(2383), + [anon_sym_isize] = ACTIONS(2383), + [anon_sym_usize] = ACTIONS(2383), + [anon_sym_f32] = ACTIONS(2383), + [anon_sym_f64] = ACTIONS(2383), + [anon_sym_bool] = ACTIONS(2383), + [anon_sym_str] = ACTIONS(2383), + [anon_sym_char] = ACTIONS(2383), + [aux_sym__non_special_token_token1] = ACTIONS(2383), + [anon_sym_SQUOTE] = ACTIONS(2383), + [anon_sym_as] = ACTIONS(2383), + [anon_sym_async] = ACTIONS(2383), + [anon_sym_await] = ACTIONS(2383), + [anon_sym_break] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2383), + [anon_sym_continue] = ACTIONS(2383), + [anon_sym_default] = ACTIONS(2383), + [anon_sym_enum] = ACTIONS(2383), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_impl] = ACTIONS(2383), + [anon_sym_let] = ACTIONS(2383), + [anon_sym_loop] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_mod] = ACTIONS(2383), + [anon_sym_pub] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2383), + [anon_sym_static] = ACTIONS(2383), + [anon_sym_struct] = ACTIONS(2383), + [anon_sym_trait] = ACTIONS(2383), + [anon_sym_type] = ACTIONS(2383), + [anon_sym_union] = ACTIONS(2383), + [anon_sym_unsafe] = ACTIONS(2383), + [anon_sym_use] = ACTIONS(2383), + [anon_sym_where] = ACTIONS(2383), + [anon_sym_while] = ACTIONS(2383), + [sym_mutable_specifier] = ACTIONS(2383), + [sym_integer_literal] = ACTIONS(2385), + [aux_sym_string_literal_token1] = ACTIONS(2385), + [sym_char_literal] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(2383), + [anon_sym_false] = ACTIONS(2383), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2381), - [sym_super] = ACTIONS(2381), - [sym_crate] = ACTIONS(2381), - [sym_metavariable] = ACTIONS(2383), - [sym_raw_string_literal] = ACTIONS(2383), - [sym_float_literal] = ACTIONS(2383), + [sym_self] = ACTIONS(2383), + [sym_super] = ACTIONS(2383), + [sym_crate] = ACTIONS(2383), + [sym_metavariable] = ACTIONS(2385), + [sym_raw_string_literal] = ACTIONS(2385), + [sym_float_literal] = ACTIONS(2385), [sym_block_comment] = ACTIONS(3), }, - [571] = { - [sym_function_modifiers] = STATE(2335), - [sym_const_parameter] = STATE(1891), - [sym_constrained_type_parameter] = STATE(1843), - [sym_optional_type_parameter] = STATE(1891), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(2073), - [sym_bracketed_type] = STATE(2382), - [sym_qualified_type] = STATE(2533), - [sym_lifetime] = STATE(1706), - [sym_array_type] = STATE(1389), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(856), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), - [anon_sym_SQUOTE] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(664), + [572] = { + [sym_identifier] = ACTIONS(2387), + [anon_sym_LPAREN] = ACTIONS(2389), + [anon_sym_RPAREN] = ACTIONS(2389), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_RBRACE] = ACTIONS(2389), + [anon_sym_LBRACK] = ACTIONS(2389), + [anon_sym_RBRACK] = ACTIONS(2389), + [anon_sym_DOLLAR] = ACTIONS(2387), + [anon_sym_u8] = ACTIONS(2387), + [anon_sym_i8] = ACTIONS(2387), + [anon_sym_u16] = ACTIONS(2387), + [anon_sym_i16] = ACTIONS(2387), + [anon_sym_u32] = ACTIONS(2387), + [anon_sym_i32] = ACTIONS(2387), + [anon_sym_u64] = ACTIONS(2387), + [anon_sym_i64] = ACTIONS(2387), + [anon_sym_u128] = ACTIONS(2387), + [anon_sym_i128] = ACTIONS(2387), + [anon_sym_isize] = ACTIONS(2387), + [anon_sym_usize] = ACTIONS(2387), + [anon_sym_f32] = ACTIONS(2387), + [anon_sym_f64] = ACTIONS(2387), + [anon_sym_bool] = ACTIONS(2387), + [anon_sym_str] = ACTIONS(2387), + [anon_sym_char] = ACTIONS(2387), + [aux_sym__non_special_token_token1] = ACTIONS(2387), + [anon_sym_SQUOTE] = ACTIONS(2387), + [anon_sym_as] = ACTIONS(2387), + [anon_sym_async] = ACTIONS(2387), + [anon_sym_await] = ACTIONS(2387), + [anon_sym_break] = ACTIONS(2387), [anon_sym_const] = ACTIONS(2387), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), - [anon_sym_dyn] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(2387), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_enum] = ACTIONS(2387), + [anon_sym_fn] = ACTIONS(2387), + [anon_sym_for] = ACTIONS(2387), + [anon_sym_if] = ACTIONS(2387), + [anon_sym_impl] = ACTIONS(2387), + [anon_sym_let] = ACTIONS(2387), + [anon_sym_loop] = ACTIONS(2387), + [anon_sym_match] = ACTIONS(2387), + [anon_sym_mod] = ACTIONS(2387), + [anon_sym_pub] = ACTIONS(2387), + [anon_sym_return] = ACTIONS(2387), + [anon_sym_static] = ACTIONS(2387), + [anon_sym_struct] = ACTIONS(2387), + [anon_sym_trait] = ACTIONS(2387), + [anon_sym_type] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(2387), + [anon_sym_use] = ACTIONS(2387), + [anon_sym_where] = ACTIONS(2387), + [anon_sym_while] = ACTIONS(2387), + [sym_mutable_specifier] = ACTIONS(2387), + [sym_integer_literal] = ACTIONS(2389), + [aux_sym_string_literal_token1] = ACTIONS(2389), + [sym_char_literal] = ACTIONS(2389), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2387), + [sym_super] = ACTIONS(2387), + [sym_crate] = ACTIONS(2387), [sym_metavariable] = ACTIONS(2389), + [sym_raw_string_literal] = ACTIONS(2389), + [sym_float_literal] = ACTIONS(2389), [sym_block_comment] = ACTIONS(3), }, - [572] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1836), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), + [573] = { + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1804), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), [anon_sym_RBRACK] = ACTIONS(2391), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -68043,15 +68111,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [573] = { + [574] = { [sym_identifier] = ACTIONS(2393), [anon_sym_LPAREN] = ACTIONS(2395), [anon_sym_RPAREN] = ACTIONS(2395), @@ -68121,7 +68189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2395), [sym_block_comment] = ACTIONS(3), }, - [574] = { + [575] = { [sym_identifier] = ACTIONS(2397), [anon_sym_LPAREN] = ACTIONS(2399), [anon_sym_RPAREN] = ACTIONS(2399), @@ -68191,61 +68259,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2399), [sym_block_comment] = ACTIONS(3), }, - [575] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1836), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), + [576] = { + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1804), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), [anon_sym_RPAREN] = ACTIONS(2401), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -68253,15 +68321,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [576] = { + [577] = { [sym_identifier] = ACTIONS(2403), [anon_sym_LPAREN] = ACTIONS(2405), [anon_sym_RPAREN] = ACTIONS(2405), @@ -68331,7 +68399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2405), [sym_block_comment] = ACTIONS(3), }, - [577] = { + [578] = { [sym_identifier] = ACTIONS(2407), [anon_sym_LPAREN] = ACTIONS(2409), [anon_sym_RPAREN] = ACTIONS(2409), @@ -68401,7 +68469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2409), [sym_block_comment] = ACTIONS(3), }, - [578] = { + [579] = { [sym_identifier] = ACTIONS(2411), [anon_sym_LPAREN] = ACTIONS(2413), [anon_sym_RPAREN] = ACTIONS(2413), @@ -68471,131 +68539,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2413), [sym_block_comment] = ACTIONS(3), }, - [579] = { - [sym_identifier] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2417), - [anon_sym_RPAREN] = ACTIONS(2417), - [anon_sym_LBRACE] = ACTIONS(2417), - [anon_sym_RBRACE] = ACTIONS(2417), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_RBRACK] = ACTIONS(2417), - [anon_sym_DOLLAR] = ACTIONS(2415), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2415), - [anon_sym_SQUOTE] = ACTIONS(2415), - [anon_sym_as] = ACTIONS(2415), - [anon_sym_async] = ACTIONS(2415), - [anon_sym_await] = 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_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_where] = ACTIONS(2415), - [anon_sym_while] = ACTIONS(2415), - [sym_mutable_specifier] = ACTIONS(2415), - [sym_integer_literal] = ACTIONS(2417), - [aux_sym_string_literal_token1] = ACTIONS(2417), - [sym_char_literal] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2415), - [anon_sym_false] = ACTIONS(2415), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2415), - [sym_super] = ACTIONS(2415), - [sym_crate] = ACTIONS(2415), - [sym_metavariable] = ACTIONS(2417), - [sym_raw_string_literal] = ACTIONS(2417), - [sym_float_literal] = ACTIONS(2417), - [sym_block_comment] = ACTIONS(3), - }, [580] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1836), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1804), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_RPAREN] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -68603,139 +68601,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [581] = { - [sym_identifier] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_RPAREN] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2423), - [anon_sym_RBRACK] = ACTIONS(2423), - [anon_sym_DOLLAR] = ACTIONS(2421), - [anon_sym_u8] = ACTIONS(2421), - [anon_sym_i8] = ACTIONS(2421), - [anon_sym_u16] = ACTIONS(2421), - [anon_sym_i16] = ACTIONS(2421), - [anon_sym_u32] = ACTIONS(2421), - [anon_sym_i32] = ACTIONS(2421), - [anon_sym_u64] = ACTIONS(2421), - [anon_sym_i64] = ACTIONS(2421), - [anon_sym_u128] = ACTIONS(2421), - [anon_sym_i128] = ACTIONS(2421), - [anon_sym_isize] = ACTIONS(2421), - [anon_sym_usize] = ACTIONS(2421), - [anon_sym_f32] = ACTIONS(2421), - [anon_sym_f64] = ACTIONS(2421), - [anon_sym_bool] = ACTIONS(2421), - [anon_sym_str] = ACTIONS(2421), - [anon_sym_char] = ACTIONS(2421), - [aux_sym__non_special_token_token1] = ACTIONS(2421), - [anon_sym_SQUOTE] = ACTIONS(2421), - [anon_sym_as] = ACTIONS(2421), - [anon_sym_async] = ACTIONS(2421), - [anon_sym_await] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_default] = ACTIONS(2421), - [anon_sym_enum] = ACTIONS(2421), - [anon_sym_fn] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_impl] = ACTIONS(2421), - [anon_sym_let] = ACTIONS(2421), - [anon_sym_loop] = ACTIONS(2421), - [anon_sym_match] = ACTIONS(2421), - [anon_sym_mod] = ACTIONS(2421), - [anon_sym_pub] = ACTIONS(2421), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2421), - [anon_sym_trait] = ACTIONS(2421), - [anon_sym_type] = ACTIONS(2421), - [anon_sym_union] = ACTIONS(2421), - [anon_sym_unsafe] = ACTIONS(2421), - [anon_sym_use] = ACTIONS(2421), - [anon_sym_where] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [sym_mutable_specifier] = ACTIONS(2421), - [sym_integer_literal] = ACTIONS(2423), - [aux_sym_string_literal_token1] = ACTIONS(2423), - [sym_char_literal] = ACTIONS(2423), - [anon_sym_true] = ACTIONS(2421), - [anon_sym_false] = ACTIONS(2421), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2421), - [sym_super] = ACTIONS(2421), - [sym_crate] = ACTIONS(2421), - [sym_metavariable] = ACTIONS(2423), - [sym_raw_string_literal] = ACTIONS(2423), - [sym_float_literal] = ACTIONS(2423), - [sym_block_comment] = ACTIONS(3), - }, - [582] = { - [sym_parameter] = STATE(2205), - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1946), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1804), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_RBRACK] = ACTIONS(2417), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(2347), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -68743,82 +68671,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2351), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, + [582] = { + [sym_identifier] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2421), + [anon_sym_RPAREN] = ACTIONS(2421), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_LBRACK] = ACTIONS(2421), + [anon_sym_RBRACK] = ACTIONS(2421), + [anon_sym_DOLLAR] = ACTIONS(2419), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2419), + [anon_sym_SQUOTE] = ACTIONS(2419), + [anon_sym_as] = ACTIONS(2419), + [anon_sym_async] = ACTIONS(2419), + [anon_sym_await] = 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_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_where] = ACTIONS(2419), + [anon_sym_while] = ACTIONS(2419), + [sym_mutable_specifier] = ACTIONS(2419), + [sym_integer_literal] = ACTIONS(2421), + [aux_sym_string_literal_token1] = ACTIONS(2421), + [sym_char_literal] = ACTIONS(2421), + [anon_sym_true] = ACTIONS(2419), + [anon_sym_false] = ACTIONS(2419), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym_raw_string_literal] = ACTIONS(2421), + [sym_float_literal] = ACTIONS(2421), + [sym_block_comment] = ACTIONS(3), + }, [583] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1836), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), + [sym_identifier] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_RPAREN] = ACTIONS(2425), + [anon_sym_LBRACE] = ACTIONS(2425), + [anon_sym_RBRACE] = ACTIONS(2425), + [anon_sym_LBRACK] = ACTIONS(2425), [anon_sym_RBRACK] = ACTIONS(2425), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [anon_sym_DOLLAR] = ACTIONS(2423), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2423), + [anon_sym_SQUOTE] = ACTIONS(2423), + [anon_sym_as] = ACTIONS(2423), + [anon_sym_async] = ACTIONS(2423), + [anon_sym_await] = 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_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_where] = ACTIONS(2423), + [anon_sym_while] = ACTIONS(2423), + [sym_mutable_specifier] = ACTIONS(2423), + [sym_integer_literal] = ACTIONS(2425), + [aux_sym_string_literal_token1] = ACTIONS(2425), + [sym_char_literal] = ACTIONS(2425), + [anon_sym_true] = ACTIONS(2423), + [anon_sym_false] = ACTIONS(2423), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2423), + [sym_super] = ACTIONS(2423), + [sym_crate] = ACTIONS(2423), + [sym_metavariable] = ACTIONS(2425), + [sym_raw_string_literal] = ACTIONS(2425), + [sym_float_literal] = ACTIONS(2425), [sym_block_comment] = ACTIONS(3), }, [584] = { @@ -68962,59 +68960,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [586] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1718), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1451), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -69022,68 +69020,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [587] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2039), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(2285), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -69091,68 +69089,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [588] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1461), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1890), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(2435), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -69160,137 +69158,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [589] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2125), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [sym_identifier] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_RPAREN] = ACTIONS(2429), + [anon_sym_LBRACE] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(2429), + [anon_sym_LBRACK] = ACTIONS(2429), + [anon_sym_RBRACK] = ACTIONS(2429), + [anon_sym_DOLLAR] = ACTIONS(2429), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2427), + [anon_sym_as] = ACTIONS(2427), + [anon_sym_async] = ACTIONS(2427), + [anon_sym_await] = 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_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_where] = ACTIONS(2427), + [anon_sym_while] = ACTIONS(2427), + [sym_mutable_specifier] = ACTIONS(2427), + [sym_integer_literal] = ACTIONS(2429), + [aux_sym_string_literal_token1] = ACTIONS(2429), + [sym_char_literal] = ACTIONS(2429), + [anon_sym_true] = ACTIONS(2427), + [anon_sym_false] = ACTIONS(2427), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2427), + [sym_super] = ACTIONS(2427), + [sym_crate] = ACTIONS(2427), + [sym_raw_string_literal] = ACTIONS(2429), + [sym_float_literal] = ACTIONS(2429), [sym_block_comment] = ACTIONS(3), }, [590] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1757), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1842), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -69298,68 +69296,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(2435), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [591] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2129), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(2133), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -69367,137 +69365,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [592] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(702), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [sym_identifier] = ACTIONS(2431), + [anon_sym_LPAREN] = ACTIONS(2433), + [anon_sym_RPAREN] = ACTIONS(2433), + [anon_sym_LBRACE] = ACTIONS(2433), + [anon_sym_RBRACE] = ACTIONS(2433), + [anon_sym_LBRACK] = ACTIONS(2433), + [anon_sym_RBRACK] = ACTIONS(2433), + [anon_sym_DOLLAR] = ACTIONS(2433), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2431), + [anon_sym_SQUOTE] = ACTIONS(2431), + [anon_sym_as] = ACTIONS(2431), + [anon_sym_async] = ACTIONS(2431), + [anon_sym_await] = 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_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_where] = ACTIONS(2431), + [anon_sym_while] = ACTIONS(2431), + [sym_mutable_specifier] = ACTIONS(2431), + [sym_integer_literal] = ACTIONS(2433), + [aux_sym_string_literal_token1] = ACTIONS(2433), + [sym_char_literal] = ACTIONS(2433), + [anon_sym_true] = ACTIONS(2431), + [anon_sym_false] = ACTIONS(2431), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2431), + [sym_super] = ACTIONS(2431), + [sym_crate] = ACTIONS(2431), + [sym_raw_string_literal] = ACTIONS(2433), + [sym_float_literal] = ACTIONS(2433), [sym_block_comment] = ACTIONS(3), }, [593] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2164), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1939), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -69505,206 +69503,344 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [594] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1462), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_ref] = ACTIONS(686), + [sym_function_modifiers] = STATE(2472), + [sym_higher_ranked_trait_bound] = STATE(1568), + [sym_removed_trait_bound] = STATE(1568), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1570), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(1575), + [sym_array_type] = STATE(1390), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(2437), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(864), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(2439), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(866), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), - [anon_sym_DASH] = ACTIONS(702), - [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_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), + [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, [595] = { - [sym_function_modifiers] = STATE(2335), - [sym_higher_ranked_trait_bound] = STATE(1545), - [sym_removed_trait_bound] = STATE(1545), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1537), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(1544), - [sym_array_type] = STATE(1389), + [sym_function_modifiers] = STATE(2472), + [sym_higher_ranked_trait_bound] = STATE(1568), + [sym_removed_trait_bound] = STATE(1568), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1591), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(1593), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), [anon_sym_QMARK] = ACTIONS(2437), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(2439), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, [596] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2298), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_function_modifiers] = STATE(2472), + [sym_higher_ranked_trait_bound] = STATE(1568), + [sym_removed_trait_bound] = STATE(1568), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1591), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(1575), + [sym_array_type] = STATE(1390), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(2437), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(864), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(2439), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(866), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), + [sym_block_comment] = ACTIONS(3), + }, + [597] = { + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(2246), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [598] = { + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1736), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(2441), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -69712,68 +69848,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [597] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1444), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [599] = { + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1418), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -69781,68 +69917,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [598] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1727), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [600] = { + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1746), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(2441), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -69850,137 +69986,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [599] = { - [sym_identifier] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_RPAREN] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_RBRACK] = ACTIONS(2355), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_u8] = ACTIONS(2353), - [anon_sym_i8] = ACTIONS(2353), - [anon_sym_u16] = ACTIONS(2353), - [anon_sym_i16] = ACTIONS(2353), - [anon_sym_u32] = ACTIONS(2353), - [anon_sym_i32] = ACTIONS(2353), - [anon_sym_u64] = ACTIONS(2353), - [anon_sym_i64] = ACTIONS(2353), - [anon_sym_u128] = ACTIONS(2353), - [anon_sym_i128] = ACTIONS(2353), - [anon_sym_isize] = ACTIONS(2353), - [anon_sym_usize] = ACTIONS(2353), - [anon_sym_f32] = ACTIONS(2353), - [anon_sym_f64] = ACTIONS(2353), - [anon_sym_bool] = ACTIONS(2353), - [anon_sym_str] = ACTIONS(2353), - [anon_sym_char] = ACTIONS(2353), - [aux_sym__non_special_token_token1] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2353), - [anon_sym_as] = ACTIONS(2353), - [anon_sym_async] = ACTIONS(2353), - [anon_sym_await] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_const] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym_default] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), - [anon_sym_fn] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_impl] = ACTIONS(2353), - [anon_sym_let] = ACTIONS(2353), - [anon_sym_loop] = ACTIONS(2353), - [anon_sym_match] = ACTIONS(2353), - [anon_sym_mod] = ACTIONS(2353), - [anon_sym_pub] = ACTIONS(2353), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_static] = ACTIONS(2353), - [anon_sym_struct] = ACTIONS(2353), - [anon_sym_trait] = ACTIONS(2353), - [anon_sym_type] = ACTIONS(2353), - [anon_sym_union] = ACTIONS(2353), - [anon_sym_unsafe] = ACTIONS(2353), - [anon_sym_use] = ACTIONS(2353), - [anon_sym_where] = ACTIONS(2353), - [anon_sym_while] = ACTIONS(2353), - [sym_mutable_specifier] = ACTIONS(2353), - [sym_integer_literal] = ACTIONS(2355), - [aux_sym_string_literal_token1] = ACTIONS(2355), - [sym_char_literal] = ACTIONS(2355), - [anon_sym_true] = ACTIONS(2353), - [anon_sym_false] = ACTIONS(2353), + [601] = { + [sym_identifier] = ACTIONS(2367), + [anon_sym_LPAREN] = ACTIONS(2369), + [anon_sym_RPAREN] = ACTIONS(2369), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2369), + [anon_sym_RBRACK] = ACTIONS(2369), + [anon_sym_DOLLAR] = ACTIONS(2369), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(2367), + [anon_sym_SQUOTE] = ACTIONS(2367), + [anon_sym_as] = ACTIONS(2367), + [anon_sym_async] = ACTIONS(2367), + [anon_sym_await] = 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_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_where] = ACTIONS(2367), + [anon_sym_while] = ACTIONS(2367), + [sym_mutable_specifier] = ACTIONS(2367), + [sym_integer_literal] = ACTIONS(2369), + [aux_sym_string_literal_token1] = ACTIONS(2369), + [sym_char_literal] = ACTIONS(2369), + [anon_sym_true] = ACTIONS(2367), + [anon_sym_false] = ACTIONS(2367), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2353), - [sym_super] = ACTIONS(2353), - [sym_crate] = ACTIONS(2353), - [sym_raw_string_literal] = ACTIONS(2355), - [sym_float_literal] = ACTIONS(2355), + [sym_self] = ACTIONS(2367), + [sym_super] = ACTIONS(2367), + [sym_crate] = ACTIONS(2367), + [sym_raw_string_literal] = ACTIONS(2369), + [sym_float_literal] = ACTIONS(2369), [sym_block_comment] = ACTIONS(3), }, - [600] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1836), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [602] = { + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1458), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -69988,206 +70124,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [601] = { - [sym_function_modifiers] = STATE(2335), - [sym_higher_ranked_trait_bound] = STATE(1582), - [sym_removed_trait_bound] = STATE(1582), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1581), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(1573), - [sym_array_type] = STATE(1389), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(856), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_QMARK] = ACTIONS(2437), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), - [anon_sym_SQUOTE] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), - [anon_sym_dyn] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), - [sym_block_comment] = ACTIONS(3), - }, - [602] = { - [sym_function_modifiers] = STATE(2335), - [sym_higher_ranked_trait_bound] = STATE(1582), - [sym_removed_trait_bound] = STATE(1582), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1568), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(1574), - [sym_array_type] = STATE(1389), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(856), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_QMARK] = ACTIONS(2437), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), - [anon_sym_SQUOTE] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), - [anon_sym_dyn] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), - [sym_block_comment] = ACTIONS(3), - }, [603] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1438), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1842), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -70195,68 +70193,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(2443), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [604] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1453), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1452), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -70264,68 +70262,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [605] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2172), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_identifier] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(438), + [anon_sym_RPAREN] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(438), + [anon_sym_RBRACE] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(438), + [anon_sym_RBRACK] = ACTIONS(438), + [anon_sym_DOLLAR] = ACTIONS(438), + [anon_sym_u8] = ACTIONS(440), + [anon_sym_i8] = ACTIONS(440), + [anon_sym_u16] = ACTIONS(440), + [anon_sym_i16] = ACTIONS(440), + [anon_sym_u32] = ACTIONS(440), + [anon_sym_i32] = ACTIONS(440), + [anon_sym_u64] = ACTIONS(440), + [anon_sym_i64] = ACTIONS(440), + [anon_sym_u128] = ACTIONS(440), + [anon_sym_i128] = ACTIONS(440), + [anon_sym_isize] = ACTIONS(440), + [anon_sym_usize] = ACTIONS(440), + [anon_sym_f32] = ACTIONS(440), + [anon_sym_f64] = ACTIONS(440), + [anon_sym_bool] = ACTIONS(440), + [anon_sym_str] = ACTIONS(440), + [anon_sym_char] = ACTIONS(440), + [aux_sym__non_special_token_token1] = ACTIONS(440), + [anon_sym_SQUOTE] = ACTIONS(440), + [anon_sym_as] = ACTIONS(440), + [anon_sym_async] = ACTIONS(440), + [anon_sym_await] = ACTIONS(440), + [anon_sym_break] = ACTIONS(440), + [anon_sym_const] = ACTIONS(440), + [anon_sym_continue] = ACTIONS(440), + [anon_sym_default] = ACTIONS(440), + [anon_sym_enum] = ACTIONS(440), + [anon_sym_fn] = ACTIONS(440), + [anon_sym_for] = ACTIONS(440), + [anon_sym_if] = ACTIONS(440), + [anon_sym_impl] = ACTIONS(440), + [anon_sym_let] = ACTIONS(440), + [anon_sym_loop] = ACTIONS(440), + [anon_sym_match] = ACTIONS(440), + [anon_sym_mod] = ACTIONS(440), + [anon_sym_pub] = ACTIONS(440), + [anon_sym_return] = ACTIONS(440), + [anon_sym_static] = ACTIONS(440), + [anon_sym_struct] = ACTIONS(440), + [anon_sym_trait] = ACTIONS(440), + [anon_sym_type] = ACTIONS(440), + [anon_sym_union] = ACTIONS(440), + [anon_sym_unsafe] = ACTIONS(440), + [anon_sym_use] = ACTIONS(440), + [anon_sym_where] = ACTIONS(440), + [anon_sym_while] = ACTIONS(440), + [sym_mutable_specifier] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(438), + [aux_sym_string_literal_token1] = ACTIONS(438), + [sym_char_literal] = ACTIONS(438), + [anon_sym_true] = ACTIONS(440), + [anon_sym_false] = ACTIONS(440), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(440), + [sym_super] = ACTIONS(440), + [sym_crate] = ACTIONS(440), + [sym_raw_string_literal] = ACTIONS(438), + [sym_float_literal] = ACTIONS(438), + [sym_block_comment] = ACTIONS(3), + }, + [606] = { + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1804), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -70333,275 +70400,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [606] = { - [sym_function_modifiers] = STATE(2335), - [sym_higher_ranked_trait_bound] = STATE(1582), - [sym_removed_trait_bound] = STATE(1582), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1568), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(1573), - [sym_array_type] = STATE(1389), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(856), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_QMARK] = ACTIONS(2437), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), - [anon_sym_SQUOTE] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), + [607] = { + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1426), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), - [anon_sym_dyn] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), - [sym_block_comment] = ACTIONS(3), - }, - [607] = { - [sym_identifier] = ACTIONS(2375), - [anon_sym_LPAREN] = ACTIONS(2377), - [anon_sym_RPAREN] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2377), - [anon_sym_RBRACE] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2377), - [anon_sym_RBRACK] = ACTIONS(2377), - [anon_sym_DOLLAR] = ACTIONS(2377), - [anon_sym_u8] = ACTIONS(2375), - [anon_sym_i8] = ACTIONS(2375), - [anon_sym_u16] = ACTIONS(2375), - [anon_sym_i16] = ACTIONS(2375), - [anon_sym_u32] = ACTIONS(2375), - [anon_sym_i32] = ACTIONS(2375), - [anon_sym_u64] = ACTIONS(2375), - [anon_sym_i64] = ACTIONS(2375), - [anon_sym_u128] = ACTIONS(2375), - [anon_sym_i128] = ACTIONS(2375), - [anon_sym_isize] = ACTIONS(2375), - [anon_sym_usize] = ACTIONS(2375), - [anon_sym_f32] = ACTIONS(2375), - [anon_sym_f64] = ACTIONS(2375), - [anon_sym_bool] = ACTIONS(2375), - [anon_sym_str] = ACTIONS(2375), - [anon_sym_char] = ACTIONS(2375), - [aux_sym__non_special_token_token1] = ACTIONS(2375), - [anon_sym_SQUOTE] = ACTIONS(2375), - [anon_sym_as] = ACTIONS(2375), - [anon_sym_async] = ACTIONS(2375), - [anon_sym_await] = ACTIONS(2375), - [anon_sym_break] = ACTIONS(2375), - [anon_sym_const] = ACTIONS(2375), - [anon_sym_continue] = ACTIONS(2375), - [anon_sym_default] = ACTIONS(2375), - [anon_sym_enum] = ACTIONS(2375), - [anon_sym_fn] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2375), - [anon_sym_impl] = ACTIONS(2375), - [anon_sym_let] = ACTIONS(2375), - [anon_sym_loop] = ACTIONS(2375), - [anon_sym_match] = ACTIONS(2375), - [anon_sym_mod] = ACTIONS(2375), - [anon_sym_pub] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2375), - [anon_sym_static] = ACTIONS(2375), - [anon_sym_struct] = ACTIONS(2375), - [anon_sym_trait] = ACTIONS(2375), - [anon_sym_type] = ACTIONS(2375), - [anon_sym_union] = ACTIONS(2375), - [anon_sym_unsafe] = ACTIONS(2375), - [anon_sym_use] = ACTIONS(2375), - [anon_sym_where] = ACTIONS(2375), - [anon_sym_while] = ACTIONS(2375), - [sym_mutable_specifier] = ACTIONS(2375), - [sym_integer_literal] = ACTIONS(2377), - [aux_sym_string_literal_token1] = ACTIONS(2377), - [sym_char_literal] = ACTIONS(2377), - [anon_sym_true] = ACTIONS(2375), - [anon_sym_false] = ACTIONS(2375), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2375), - [sym_super] = ACTIONS(2375), - [sym_crate] = ACTIONS(2375), - [sym_raw_string_literal] = ACTIONS(2377), - [sym_float_literal] = ACTIONS(2377), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [608] = { - [sym_identifier] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_RPAREN] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2409), - [anon_sym_RBRACE] = ACTIONS(2409), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_RBRACK] = ACTIONS(2409), - [anon_sym_DOLLAR] = ACTIONS(2409), - [anon_sym_u8] = ACTIONS(2407), - [anon_sym_i8] = ACTIONS(2407), - [anon_sym_u16] = ACTIONS(2407), - [anon_sym_i16] = ACTIONS(2407), - [anon_sym_u32] = ACTIONS(2407), - [anon_sym_i32] = ACTIONS(2407), - [anon_sym_u64] = ACTIONS(2407), - [anon_sym_i64] = ACTIONS(2407), - [anon_sym_u128] = ACTIONS(2407), - [anon_sym_i128] = ACTIONS(2407), - [anon_sym_isize] = ACTIONS(2407), - [anon_sym_usize] = ACTIONS(2407), - [anon_sym_f32] = ACTIONS(2407), - [anon_sym_f64] = ACTIONS(2407), - [anon_sym_bool] = ACTIONS(2407), - [anon_sym_str] = ACTIONS(2407), - [anon_sym_char] = ACTIONS(2407), - [aux_sym__non_special_token_token1] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_as] = ACTIONS(2407), - [anon_sym_async] = ACTIONS(2407), - [anon_sym_await] = ACTIONS(2407), - [anon_sym_break] = ACTIONS(2407), - [anon_sym_const] = ACTIONS(2407), - [anon_sym_continue] = ACTIONS(2407), - [anon_sym_default] = ACTIONS(2407), - [anon_sym_enum] = ACTIONS(2407), - [anon_sym_fn] = ACTIONS(2407), - [anon_sym_for] = ACTIONS(2407), - [anon_sym_if] = ACTIONS(2407), - [anon_sym_impl] = ACTIONS(2407), - [anon_sym_let] = ACTIONS(2407), - [anon_sym_loop] = ACTIONS(2407), - [anon_sym_match] = ACTIONS(2407), - [anon_sym_mod] = ACTIONS(2407), - [anon_sym_pub] = ACTIONS(2407), - [anon_sym_return] = ACTIONS(2407), - [anon_sym_static] = ACTIONS(2407), - [anon_sym_struct] = ACTIONS(2407), - [anon_sym_trait] = ACTIONS(2407), - [anon_sym_type] = ACTIONS(2407), - [anon_sym_union] = ACTIONS(2407), - [anon_sym_unsafe] = ACTIONS(2407), - [anon_sym_use] = ACTIONS(2407), - [anon_sym_where] = ACTIONS(2407), - [anon_sym_while] = ACTIONS(2407), - [sym_mutable_specifier] = ACTIONS(2407), - [sym_integer_literal] = ACTIONS(2409), - [aux_sym_string_literal_token1] = ACTIONS(2409), - [sym_char_literal] = ACTIONS(2409), - [anon_sym_true] = ACTIONS(2407), - [anon_sym_false] = ACTIONS(2407), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2407), - [sym_super] = ACTIONS(2407), - [sym_crate] = ACTIONS(2407), - [sym_raw_string_literal] = ACTIONS(2409), - [sym_float_literal] = ACTIONS(2409), - [sym_block_comment] = ACTIONS(3), - }, - [609] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1779), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1453), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(2445), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -70609,68 +70538,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2443), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [610] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2305), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [609] = { + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1870), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -70678,68 +70607,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, + [610] = { + [sym_function_modifiers] = STATE(2472), + [sym_higher_ranked_trait_bound] = STATE(1537), + [sym_removed_trait_bound] = STATE(1537), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1540), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(1541), + [sym_array_type] = STATE(1390), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(2437), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(864), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(2439), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(866), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), + [sym_block_comment] = ACTIONS(3), + }, [611] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2051), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(2187), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -70747,68 +70745,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [612] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1708), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(2277), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(2445), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -70816,68 +70814,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [613] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1455), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1735), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -70885,137 +70883,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [614] = { - [sym_identifier] = ACTIONS(422), - [anon_sym_LPAREN] = ACTIONS(420), - [anon_sym_RPAREN] = ACTIONS(420), - [anon_sym_LBRACE] = ACTIONS(420), - [anon_sym_RBRACE] = ACTIONS(420), - [anon_sym_LBRACK] = ACTIONS(420), - [anon_sym_RBRACK] = ACTIONS(420), - [anon_sym_DOLLAR] = ACTIONS(420), - [anon_sym_u8] = ACTIONS(422), - [anon_sym_i8] = ACTIONS(422), - [anon_sym_u16] = ACTIONS(422), - [anon_sym_i16] = ACTIONS(422), - [anon_sym_u32] = ACTIONS(422), - [anon_sym_i32] = ACTIONS(422), - [anon_sym_u64] = ACTIONS(422), - [anon_sym_i64] = ACTIONS(422), - [anon_sym_u128] = ACTIONS(422), - [anon_sym_i128] = ACTIONS(422), - [anon_sym_isize] = ACTIONS(422), - [anon_sym_usize] = ACTIONS(422), - [anon_sym_f32] = ACTIONS(422), - [anon_sym_f64] = ACTIONS(422), - [anon_sym_bool] = ACTIONS(422), - [anon_sym_str] = ACTIONS(422), - [anon_sym_char] = ACTIONS(422), - [aux_sym__non_special_token_token1] = ACTIONS(422), - [anon_sym_SQUOTE] = ACTIONS(422), - [anon_sym_as] = ACTIONS(422), - [anon_sym_async] = ACTIONS(422), - [anon_sym_await] = ACTIONS(422), - [anon_sym_break] = ACTIONS(422), - [anon_sym_const] = ACTIONS(422), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_default] = ACTIONS(422), - [anon_sym_enum] = ACTIONS(422), - [anon_sym_fn] = ACTIONS(422), - [anon_sym_for] = ACTIONS(422), - [anon_sym_if] = ACTIONS(422), - [anon_sym_impl] = ACTIONS(422), - [anon_sym_let] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(422), - [anon_sym_match] = ACTIONS(422), - [anon_sym_mod] = ACTIONS(422), - [anon_sym_pub] = ACTIONS(422), - [anon_sym_return] = ACTIONS(422), - [anon_sym_static] = ACTIONS(422), - [anon_sym_struct] = ACTIONS(422), - [anon_sym_trait] = ACTIONS(422), - [anon_sym_type] = ACTIONS(422), - [anon_sym_union] = ACTIONS(422), - [anon_sym_unsafe] = ACTIONS(422), - [anon_sym_use] = ACTIONS(422), - [anon_sym_where] = ACTIONS(422), - [anon_sym_while] = ACTIONS(422), - [sym_mutable_specifier] = ACTIONS(422), - [sym_integer_literal] = ACTIONS(420), - [aux_sym_string_literal_token1] = ACTIONS(420), - [sym_char_literal] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), + [sym_identifier] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_RPAREN] = ACTIONS(2399), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_LBRACK] = ACTIONS(2399), + [anon_sym_RBRACK] = ACTIONS(2399), + [anon_sym_DOLLAR] = ACTIONS(2399), + [anon_sym_u8] = ACTIONS(2397), + [anon_sym_i8] = ACTIONS(2397), + [anon_sym_u16] = ACTIONS(2397), + [anon_sym_i16] = ACTIONS(2397), + [anon_sym_u32] = ACTIONS(2397), + [anon_sym_i32] = ACTIONS(2397), + [anon_sym_u64] = ACTIONS(2397), + [anon_sym_i64] = ACTIONS(2397), + [anon_sym_u128] = ACTIONS(2397), + [anon_sym_i128] = ACTIONS(2397), + [anon_sym_isize] = ACTIONS(2397), + [anon_sym_usize] = ACTIONS(2397), + [anon_sym_f32] = ACTIONS(2397), + [anon_sym_f64] = ACTIONS(2397), + [anon_sym_bool] = ACTIONS(2397), + [anon_sym_str] = ACTIONS(2397), + [anon_sym_char] = ACTIONS(2397), + [aux_sym__non_special_token_token1] = ACTIONS(2397), + [anon_sym_SQUOTE] = ACTIONS(2397), + [anon_sym_as] = ACTIONS(2397), + [anon_sym_async] = ACTIONS(2397), + [anon_sym_await] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_default] = ACTIONS(2397), + [anon_sym_enum] = ACTIONS(2397), + [anon_sym_fn] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_impl] = ACTIONS(2397), + [anon_sym_let] = ACTIONS(2397), + [anon_sym_loop] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_mod] = ACTIONS(2397), + [anon_sym_pub] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_static] = ACTIONS(2397), + [anon_sym_struct] = ACTIONS(2397), + [anon_sym_trait] = ACTIONS(2397), + [anon_sym_type] = ACTIONS(2397), + [anon_sym_union] = ACTIONS(2397), + [anon_sym_unsafe] = ACTIONS(2397), + [anon_sym_use] = ACTIONS(2397), + [anon_sym_where] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [sym_mutable_specifier] = ACTIONS(2397), + [sym_integer_literal] = ACTIONS(2399), + [aux_sym_string_literal_token1] = ACTIONS(2399), + [sym_char_literal] = ACTIONS(2399), + [anon_sym_true] = ACTIONS(2397), + [anon_sym_false] = ACTIONS(2397), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(422), - [sym_super] = ACTIONS(422), - [sym_crate] = ACTIONS(422), - [sym_raw_string_literal] = ACTIONS(420), - [sym_float_literal] = ACTIONS(420), + [sym_self] = ACTIONS(2397), + [sym_super] = ACTIONS(2397), + [sym_crate] = ACTIONS(2397), + [sym_raw_string_literal] = ACTIONS(2399), + [sym_float_literal] = ACTIONS(2399), [sym_block_comment] = ACTIONS(3), }, [615] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(2233), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [sym_identifier] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(614), + [anon_sym_RPAREN] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_RBRACE] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_RBRACK] = ACTIONS(614), + [anon_sym_DOLLAR] = ACTIONS(614), + [anon_sym_u8] = ACTIONS(616), + [anon_sym_i8] = ACTIONS(616), + [anon_sym_u16] = ACTIONS(616), + [anon_sym_i16] = ACTIONS(616), + [anon_sym_u32] = ACTIONS(616), + [anon_sym_i32] = ACTIONS(616), + [anon_sym_u64] = ACTIONS(616), + [anon_sym_i64] = ACTIONS(616), + [anon_sym_u128] = ACTIONS(616), + [anon_sym_i128] = ACTIONS(616), + [anon_sym_isize] = ACTIONS(616), + [anon_sym_usize] = ACTIONS(616), + [anon_sym_f32] = ACTIONS(616), + [anon_sym_f64] = ACTIONS(616), + [anon_sym_bool] = ACTIONS(616), + [anon_sym_str] = ACTIONS(616), + [anon_sym_char] = ACTIONS(616), + [aux_sym__non_special_token_token1] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(616), + [anon_sym_as] = ACTIONS(616), + [anon_sym_async] = ACTIONS(616), + [anon_sym_await] = ACTIONS(616), + [anon_sym_break] = ACTIONS(616), + [anon_sym_const] = ACTIONS(616), + [anon_sym_continue] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_enum] = ACTIONS(616), + [anon_sym_fn] = ACTIONS(616), + [anon_sym_for] = ACTIONS(616), + [anon_sym_if] = ACTIONS(616), + [anon_sym_impl] = ACTIONS(616), + [anon_sym_let] = ACTIONS(616), + [anon_sym_loop] = ACTIONS(616), + [anon_sym_match] = ACTIONS(616), + [anon_sym_mod] = ACTIONS(616), + [anon_sym_pub] = ACTIONS(616), + [anon_sym_return] = ACTIONS(616), + [anon_sym_static] = ACTIONS(616), + [anon_sym_struct] = ACTIONS(616), + [anon_sym_trait] = ACTIONS(616), + [anon_sym_type] = ACTIONS(616), + [anon_sym_union] = ACTIONS(616), + [anon_sym_unsafe] = ACTIONS(616), + [anon_sym_use] = ACTIONS(616), + [anon_sym_where] = ACTIONS(616), + [anon_sym_while] = ACTIONS(616), + [sym_mutable_specifier] = ACTIONS(616), + [sym_integer_literal] = ACTIONS(614), + [aux_sym_string_literal_token1] = ACTIONS(614), + [sym_char_literal] = ACTIONS(614), + [anon_sym_true] = ACTIONS(616), + [anon_sym_false] = ACTIONS(616), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(616), + [sym_super] = ACTIONS(616), + [sym_crate] = ACTIONS(616), + [sym_raw_string_literal] = ACTIONS(614), + [sym_float_literal] = ACTIONS(614), + [sym_block_comment] = ACTIONS(3), + }, + [616] = { + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(1751), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(2447), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -71023,68 +71090,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [616] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1779), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [617] = { + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(2197), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -71092,68 +71159,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2447), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [617] = { - [sym_bracketed_type] = STATE(2369), - [sym_generic_type] = STATE(2368), - [sym_generic_type_with_turbofish] = STATE(2362), - [sym_macro_invocation] = STATE(1458), - [sym_scoped_identifier] = STATE(1342), - [sym_scoped_type_identifier] = STATE(2055), - [sym_const_block] = STATE(1458), - [sym__pattern] = STATE(1881), - [sym_tuple_pattern] = STATE(1458), - [sym_slice_pattern] = STATE(1458), - [sym_tuple_struct_pattern] = STATE(1458), - [sym_struct_pattern] = STATE(1458), - [sym_remaining_field_pattern] = STATE(1458), - [sym_mut_pattern] = STATE(1458), - [sym_range_pattern] = STATE(1458), - [sym_ref_pattern] = STATE(1458), - [sym_captured_pattern] = STATE(1458), - [sym_reference_pattern] = STATE(1458), - [sym_or_pattern] = STATE(1458), - [sym__literal_pattern] = STATE(1388), - [sym_negative_literal] = STATE(1401), - [sym_string_literal] = STATE(1401), - [sym_boolean_literal] = STATE(1401), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1260), - [anon_sym_i8] = ACTIONS(1260), - [anon_sym_u16] = ACTIONS(1260), - [anon_sym_i16] = ACTIONS(1260), - [anon_sym_u32] = ACTIONS(1260), - [anon_sym_i32] = ACTIONS(1260), - [anon_sym_u64] = ACTIONS(1260), - [anon_sym_i64] = ACTIONS(1260), - [anon_sym_u128] = ACTIONS(1260), - [anon_sym_i128] = ACTIONS(1260), - [anon_sym_isize] = ACTIONS(1260), - [anon_sym_usize] = ACTIONS(1260), - [anon_sym_f32] = ACTIONS(1260), - [anon_sym_f64] = ACTIONS(1260), - [anon_sym_bool] = ACTIONS(1260), - [anon_sym_str] = ACTIONS(1260), - [anon_sym_char] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), + [618] = { + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(2273), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1266), - [anon_sym__] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(1268), - [sym_mutable_specifier] = ACTIONS(784), - [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -71161,1919 +71228,1365 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1272), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [618] = { - [sym_identifier] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(452), - [anon_sym_RPAREN] = ACTIONS(452), - [anon_sym_LBRACE] = ACTIONS(452), - [anon_sym_RBRACE] = ACTIONS(452), - [anon_sym_LBRACK] = ACTIONS(452), - [anon_sym_RBRACK] = ACTIONS(452), - [anon_sym_DOLLAR] = ACTIONS(452), - [anon_sym_u8] = ACTIONS(454), - [anon_sym_i8] = ACTIONS(454), - [anon_sym_u16] = ACTIONS(454), - [anon_sym_i16] = ACTIONS(454), - [anon_sym_u32] = ACTIONS(454), - [anon_sym_i32] = ACTIONS(454), - [anon_sym_u64] = ACTIONS(454), - [anon_sym_i64] = ACTIONS(454), - [anon_sym_u128] = ACTIONS(454), - [anon_sym_i128] = ACTIONS(454), - [anon_sym_isize] = ACTIONS(454), - [anon_sym_usize] = ACTIONS(454), - [anon_sym_f32] = ACTIONS(454), - [anon_sym_f64] = ACTIONS(454), - [anon_sym_bool] = ACTIONS(454), - [anon_sym_str] = ACTIONS(454), - [anon_sym_char] = ACTIONS(454), - [aux_sym__non_special_token_token1] = ACTIONS(454), - [anon_sym_SQUOTE] = ACTIONS(454), - [anon_sym_as] = ACTIONS(454), - [anon_sym_async] = ACTIONS(454), - [anon_sym_await] = ACTIONS(454), - [anon_sym_break] = ACTIONS(454), - [anon_sym_const] = ACTIONS(454), - [anon_sym_continue] = ACTIONS(454), - [anon_sym_default] = ACTIONS(454), - [anon_sym_enum] = ACTIONS(454), - [anon_sym_fn] = ACTIONS(454), - [anon_sym_for] = ACTIONS(454), - [anon_sym_if] = ACTIONS(454), - [anon_sym_impl] = ACTIONS(454), - [anon_sym_let] = ACTIONS(454), - [anon_sym_loop] = ACTIONS(454), - [anon_sym_match] = ACTIONS(454), - [anon_sym_mod] = ACTIONS(454), - [anon_sym_pub] = ACTIONS(454), - [anon_sym_return] = ACTIONS(454), - [anon_sym_static] = ACTIONS(454), - [anon_sym_struct] = ACTIONS(454), - [anon_sym_trait] = ACTIONS(454), - [anon_sym_type] = ACTIONS(454), - [anon_sym_union] = ACTIONS(454), - [anon_sym_unsafe] = ACTIONS(454), - [anon_sym_use] = ACTIONS(454), - [anon_sym_where] = ACTIONS(454), - [anon_sym_while] = ACTIONS(454), - [sym_mutable_specifier] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(452), - [aux_sym_string_literal_token1] = ACTIONS(452), - [sym_char_literal] = ACTIONS(452), - [anon_sym_true] = ACTIONS(454), - [anon_sym_false] = ACTIONS(454), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(454), - [sym_super] = ACTIONS(454), - [sym_crate] = ACTIONS(454), - [sym_raw_string_literal] = ACTIONS(452), - [sym_float_literal] = ACTIONS(452), - [sym_block_comment] = ACTIONS(3), - }, [619] = { - [sym_identifier] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2433), - [anon_sym_RPAREN] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_RBRACE] = ACTIONS(2433), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_RBRACK] = ACTIONS(2433), - [anon_sym_DOLLAR] = ACTIONS(2433), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_as] = ACTIONS(2431), - [anon_sym_async] = ACTIONS(2431), - [anon_sym_await] = 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_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_where] = ACTIONS(2431), - [anon_sym_while] = ACTIONS(2431), - [sym_mutable_specifier] = ACTIONS(2431), - [sym_integer_literal] = ACTIONS(2433), - [aux_sym_string_literal_token1] = ACTIONS(2433), - [sym_char_literal] = ACTIONS(2433), - [anon_sym_true] = ACTIONS(2431), - [anon_sym_false] = ACTIONS(2431), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2431), - [sym_super] = ACTIONS(2431), - [sym_crate] = ACTIONS(2431), - [sym_raw_string_literal] = ACTIONS(2433), - [sym_float_literal] = ACTIONS(2433), - [sym_block_comment] = ACTIONS(3), - }, - [620] = { - [sym_function_modifiers] = STATE(2390), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(832), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(2465), - [sym_array_type] = STATE(942), - [sym_for_lifetimes] = STATE(1197), - [sym_function_type] = STATE(942), - [sym_tuple_type] = STATE(942), - [sym_unit_type] = STATE(942), - [sym_generic_type] = STATE(791), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(942), - [sym_reference_type] = STATE(942), - [sym_pointer_type] = STATE(942), - [sym_empty_type] = STATE(942), - [sym_abstract_type] = STATE(942), - [sym_dynamic_type] = STATE(942), - [sym_macro_invocation] = STATE(942), - [sym_scoped_identifier] = STATE(2267), - [sym_scoped_type_identifier] = STATE(757), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_LBRACK] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2455), - [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_SQUOTE] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(2461), - [anon_sym_fn] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(2465), - [anon_sym_union] = ACTIONS(2467), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(2469), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2471), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_dyn] = ACTIONS(2475), - [sym_mutable_specifier] = ACTIONS(2477), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2479), - [sym_super] = ACTIONS(2479), - [sym_crate] = ACTIONS(2479), - [sym_metavariable] = ACTIONS(2481), - [sym_block_comment] = ACTIONS(3), - }, - [621] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(2274), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), - [anon_sym_SQUOTE] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), - [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(2485), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), - [sym_block_comment] = ACTIONS(3), - }, - [622] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1385), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), - [anon_sym_SQUOTE] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), + [sym_bracketed_type] = STATE(2489), + [sym_generic_type] = STATE(2488), + [sym_generic_type_with_turbofish] = STATE(2487), + [sym_macro_invocation] = STATE(1422), + [sym_scoped_identifier] = STATE(1337), + [sym_scoped_type_identifier] = STATE(2013), + [sym_const_block] = STATE(1422), + [sym__pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(1422), + [sym_slice_pattern] = STATE(1422), + [sym_tuple_struct_pattern] = STATE(1422), + [sym_struct_pattern] = STATE(1422), + [sym_remaining_field_pattern] = STATE(1422), + [sym_mut_pattern] = STATE(1422), + [sym_range_pattern] = STATE(1422), + [sym_ref_pattern] = STATE(1422), + [sym_captured_pattern] = STATE(1422), + [sym_reference_pattern] = STATE(1422), + [sym_or_pattern] = STATE(1422), + [sym__literal_pattern] = STATE(1396), + [sym_negative_literal] = STATE(1397), + [sym_string_literal] = STATE(1397), + [sym_boolean_literal] = STATE(1397), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_u8] = ACTIONS(1532), + [anon_sym_i8] = ACTIONS(1532), + [anon_sym_u16] = ACTIONS(1532), + [anon_sym_i16] = ACTIONS(1532), + [anon_sym_u32] = ACTIONS(1532), + [anon_sym_i32] = ACTIONS(1532), + [anon_sym_u64] = ACTIONS(1532), + [anon_sym_i64] = ACTIONS(1532), + [anon_sym_u128] = ACTIONS(1532), + [anon_sym_i128] = ACTIONS(1532), + [anon_sym_isize] = ACTIONS(1532), + [anon_sym_usize] = ACTIONS(1532), + [anon_sym_f32] = ACTIONS(1532), + [anon_sym_f64] = ACTIONS(1532), + [anon_sym_bool] = ACTIONS(1532), + [anon_sym_str] = ACTIONS(1532), + [anon_sym_char] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1536), + [anon_sym_union] = ACTIONS(1536), + [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), - [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(2487), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym__] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(1540), + [sym_mutable_specifier] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(702), + [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), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2489), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1544), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [623] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1385), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [620] = { + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1398), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(2483), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_PLUS] = ACTIONS(2449), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(2491), + [sym_mutable_specifier] = ACTIONS(2451), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), - [sym_block_comment] = ACTIONS(3), - }, - [624] = { - [sym_attribute_item] = STATE(624), - [aux_sym_enum_variant_list_repeat1] = STATE(624), - [sym_identifier] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_LBRACK] = ACTIONS(2495), - [anon_sym_RBRACK] = ACTIONS(2495), - [anon_sym_STAR] = ACTIONS(2495), - [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_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_for] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_loop] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_return] = ACTIONS(2493), - [anon_sym_union] = ACTIONS(2493), - [anon_sym_unsafe] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_COMMA] = ACTIONS(2495), - [anon_sym_ref] = ACTIONS(2493), - [anon_sym_LT] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2495), - [anon_sym__] = ACTIONS(2493), - [anon_sym_AMP] = ACTIONS(2495), - [sym_mutable_specifier] = ACTIONS(2493), - [anon_sym_DOT_DOT] = ACTIONS(2495), - [anon_sym_DASH] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2495), - [anon_sym_yield] = ACTIONS(2493), - [anon_sym_move] = ACTIONS(2493), - [sym_integer_literal] = ACTIONS(2495), - [aux_sym_string_literal_token1] = ACTIONS(2495), - [sym_char_literal] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2493), - [sym_super] = ACTIONS(2493), - [sym_crate] = ACTIONS(2493), - [sym_metavariable] = ACTIONS(2495), - [sym_raw_string_literal] = ACTIONS(2495), - [sym_float_literal] = ACTIONS(2495), + [sym_self] = ACTIONS(2453), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, - [625] = { - [sym_function_modifiers] = STATE(2390), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1113), - [sym_bracketed_type] = STATE(2495), - [sym_lifetime] = STATE(620), - [sym_array_type] = STATE(942), - [sym_for_lifetimes] = STATE(1197), - [sym_function_type] = STATE(942), - [sym_tuple_type] = STATE(942), - [sym_unit_type] = STATE(942), - [sym_generic_type] = STATE(791), - [sym_generic_type_with_turbofish] = STATE(2496), - [sym_bounded_type] = STATE(942), - [sym_reference_type] = STATE(942), - [sym_pointer_type] = STATE(942), - [sym_empty_type] = STATE(942), - [sym_abstract_type] = STATE(942), - [sym_dynamic_type] = STATE(942), - [sym_macro_invocation] = STATE(942), - [sym_scoped_identifier] = STATE(2267), - [sym_scoped_type_identifier] = STATE(757), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_LBRACK] = ACTIONS(2453), + [621] = { + [sym_attribute_item] = STATE(621), + [aux_sym_enum_variant_list_repeat1] = STATE(621), + [sym_identifier] = ACTIONS(2455), + [anon_sym_LPAREN] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2457), + [anon_sym_RBRACK] = 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_SQUOTE] = ACTIONS(2500), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(2461), - [anon_sym_fn] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(2465), - [anon_sym_union] = ACTIONS(2467), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(2469), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2471), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_dyn] = ACTIONS(2475), - [sym_mutable_specifier] = ACTIONS(2502), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2479), - [sym_super] = ACTIONS(2479), - [sym_crate] = ACTIONS(2479), - [sym_metavariable] = ACTIONS(2481), + [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_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_for] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2455), + [anon_sym_loop] = ACTIONS(2455), + [anon_sym_match] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2455), + [anon_sym_union] = ACTIONS(2455), + [anon_sym_unsafe] = ACTIONS(2455), + [anon_sym_while] = ACTIONS(2455), + [anon_sym_POUND] = ACTIONS(2459), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_COMMA] = ACTIONS(2457), + [anon_sym_ref] = ACTIONS(2455), + [anon_sym_LT] = ACTIONS(2457), + [anon_sym_COLON_COLON] = ACTIONS(2457), + [anon_sym__] = ACTIONS(2455), + [anon_sym_AMP] = ACTIONS(2457), + [sym_mutable_specifier] = ACTIONS(2455), + [anon_sym_DOT_DOT] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2457), + [anon_sym_yield] = ACTIONS(2455), + [anon_sym_move] = ACTIONS(2455), + [sym_integer_literal] = ACTIONS(2457), + [aux_sym_string_literal_token1] = ACTIONS(2457), + [sym_char_literal] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(2455), + [anon_sym_false] = ACTIONS(2455), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2455), + [sym_super] = ACTIONS(2455), + [sym_crate] = ACTIONS(2455), + [sym_metavariable] = ACTIONS(2457), + [sym_raw_string_literal] = ACTIONS(2457), + [sym_float_literal] = ACTIONS(2457), [sym_block_comment] = ACTIONS(3), }, - [626] = { - [sym_function_modifiers] = STATE(2335), - [sym_type_parameters] = STATE(715), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1698), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [622] = { + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(2289), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1683), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1518), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(2504), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(856), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_PLUS] = ACTIONS(2449), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(2462), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, - [627] = { - [sym_function_modifiers] = STATE(2335), - [sym_type_parameters] = STATE(671), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1641), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1697), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1520), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(2508), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(856), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [623] = { + [sym_function_modifiers] = STATE(2386), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(941), + [sym_bracketed_type] = STATE(2491), + [sym_lifetime] = STATE(2513), + [sym_array_type] = STATE(1040), + [sym_for_lifetimes] = STATE(1195), + [sym_function_type] = STATE(1040), + [sym_tuple_type] = STATE(1040), + [sym_unit_type] = STATE(1040), + [sym_generic_type] = STATE(790), + [sym_generic_type_with_turbofish] = STATE(2492), + [sym_bounded_type] = STATE(1040), + [sym_reference_type] = STATE(1040), + [sym_pointer_type] = STATE(1040), + [sym_empty_type] = STATE(1040), + [sym_abstract_type] = STATE(1040), + [sym_dynamic_type] = STATE(1040), + [sym_macro_invocation] = STATE(1040), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(760), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(2464), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_u8] = ACTIONS(2474), + [anon_sym_i8] = ACTIONS(2474), + [anon_sym_u16] = ACTIONS(2474), + [anon_sym_i16] = ACTIONS(2474), + [anon_sym_u32] = ACTIONS(2474), + [anon_sym_i32] = ACTIONS(2474), + [anon_sym_u64] = ACTIONS(2474), + [anon_sym_i64] = ACTIONS(2474), + [anon_sym_u128] = ACTIONS(2474), + [anon_sym_i128] = ACTIONS(2474), + [anon_sym_isize] = ACTIONS(2474), + [anon_sym_usize] = ACTIONS(2474), + [anon_sym_f32] = ACTIONS(2474), + [anon_sym_f64] = ACTIONS(2474), + [anon_sym_bool] = ACTIONS(2474), + [anon_sym_str] = ACTIONS(2474), + [anon_sym_char] = ACTIONS(2474), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), - [anon_sym_fn] = ACTIONS(670), + [anon_sym_default] = ACTIONS(2476), + [anon_sym_fn] = ACTIONS(2478), [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), + [anon_sym_impl] = ACTIONS(2480), + [anon_sym_union] = ACTIONS(2482), [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), + [anon_sym_BANG] = ACTIONS(2484), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), - [anon_sym_dyn] = ACTIONS(696), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2486), + [anon_sym_AMP] = ACTIONS(2488), + [anon_sym_dyn] = ACTIONS(2490), + [sym_mutable_specifier] = ACTIONS(2492), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), + [sym_self] = ACTIONS(2494), + [sym_super] = ACTIONS(2494), + [sym_crate] = ACTIONS(2494), + [sym_metavariable] = ACTIONS(2496), [sym_block_comment] = ACTIONS(3), }, - [628] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(2287), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(621), - [sym_array_type] = STATE(1389), + [624] = { + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1398), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_PLUS] = ACTIONS(2449), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), - [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(2510), + [sym_mutable_specifier] = ACTIONS(2498), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, - [629] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1877), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [625] = { + [sym_function_modifiers] = STATE(2472), + [sym_type_parameters] = STATE(704), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1668), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_RPAREN] = ACTIONS(2512), - [anon_sym_LBRACK] = ACTIONS(856), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1639), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1499), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(2500), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(2502), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, - [630] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1795), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [626] = { + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(2305), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(622), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_RPAREN] = ACTIONS(2514), - [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(2504), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(2506), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, - [631] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1877), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [627] = { + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1399), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(624), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_RPAREN] = ACTIONS(2516), - [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(2504), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(2508), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, - [632] = { - [sym_function_modifiers] = STATE(2335), - [sym_type_parameters] = STATE(644), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1678), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [628] = { + [sym_function_modifiers] = STATE(2472), + [sym_type_parameters] = STATE(712), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1656), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1673), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1501), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(856), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1651), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1493), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(2502), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, - [633] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1848), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [629] = { + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(2051), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_RPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_RPAREN] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, - [634] = { - [sym_function_modifiers] = STATE(2335), - [sym_type_parameters] = STATE(649), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1694), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [630] = { + [sym_function_modifiers] = STATE(2472), + [sym_type_parameters] = STATE(659), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1623), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1682), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1486), - [aux_sym_function_modifiers_repeat1] = STATE(1553), - [sym_identifier] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(856), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1659), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1482), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(2514), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(2502), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, - [635] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(2073), - [sym_bracketed_type] = STATE(2382), - [sym_qualified_type] = STATE(2533), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [631] = { + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1827), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_RPAREN] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, - [636] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1398), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(623), - [sym_array_type] = STATE(1389), + [632] = { + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(2051), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_RPAREN] = ACTIONS(2518), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), - [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(2524), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, - [637] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1877), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [633] = { + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(2051), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_RPAREN] = ACTIONS(2526), - [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_RPAREN] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, - [638] = { - [sym_function_modifiers] = STATE(2335), - [sym_extern_modifier] = STATE(1553), - [sym__type] = STATE(1877), - [sym_bracketed_type] = STATE(2382), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1389), + [634] = { + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(2103), + [sym_bracketed_type] = STATE(2378), + [sym_qualified_type] = STATE(2448), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1389), - [sym_tuple_type] = STATE(1389), - [sym_unit_type] = STATE(1389), - [sym_generic_type] = STATE(1362), - [sym_generic_type_with_turbofish] = STATE(2383), - [sym_bounded_type] = STATE(1389), - [sym_reference_type] = STATE(1389), - [sym_pointer_type] = STATE(1389), - [sym_empty_type] = STATE(1389), - [sym_abstract_type] = STATE(1389), - [sym_dynamic_type] = STATE(1389), - [sym_macro_invocation] = STATE(1389), - [sym_scoped_identifier] = STATE(2294), - [sym_scoped_type_identifier] = STATE(1333), - [aux_sym_function_modifiers_repeat1] = STATE(1553), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_RPAREN] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(858), - [anon_sym_i8] = ACTIONS(858), - [anon_sym_u16] = ACTIONS(858), - [anon_sym_i16] = ACTIONS(858), - [anon_sym_u32] = ACTIONS(858), - [anon_sym_i32] = ACTIONS(858), - [anon_sym_u64] = ACTIONS(858), - [anon_sym_i64] = ACTIONS(858), - [anon_sym_u128] = ACTIONS(858), - [anon_sym_i128] = ACTIONS(858), - [anon_sym_isize] = ACTIONS(858), - [anon_sym_usize] = ACTIONS(858), - [anon_sym_f32] = ACTIONS(858), - [anon_sym_f64] = ACTIONS(858), - [anon_sym_bool] = ACTIONS(858), - [anon_sym_str] = ACTIONS(858), - [anon_sym_char] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(860), + [anon_sym_default] = ACTIONS(864), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(862), + [anon_sym_union] = ACTIONS(866), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(866), - [anon_sym_AMP] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(872), - [sym_super] = ACTIONS(872), - [sym_crate] = ACTIONS(872), - [sym_metavariable] = ACTIONS(874), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), [sym_block_comment] = ACTIONS(3), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, - ACTIONS(856), 1, - anon_sym_LBRACK, - ACTIONS(860), 1, - anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, - ACTIONS(866), 1, - anon_sym_COLON_COLON, - ACTIONS(868), 1, - anon_sym_AMP, - ACTIONS(874), 1, - sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1362), 1, - sym_generic_type, - STATE(2181), 1, - sym__type, - STATE(2294), 1, - sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, - sym_bracketed_type, - STATE(2383), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1553), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(872), 3, - sym_self, - sym_super, - sym_crate, - STATE(1389), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(858), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [129] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, - ACTIONS(856), 1, - anon_sym_LBRACK, - ACTIONS(860), 1, - anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, - ACTIONS(866), 1, - anon_sym_COLON_COLON, - ACTIONS(868), 1, - anon_sym_AMP, - ACTIONS(874), 1, - sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1362), 1, - sym_generic_type, - STATE(1982), 1, - sym__type, - STATE(2294), 1, - sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, - sym_bracketed_type, - STATE(2383), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1553), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(872), 3, - sym_self, - sym_super, - sym_crate, - STATE(1389), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(858), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [258] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, - ACTIONS(856), 1, - anon_sym_LBRACK, - ACTIONS(860), 1, - anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, - ACTIONS(866), 1, - anon_sym_COLON_COLON, - ACTIONS(868), 1, - anon_sym_AMP, - ACTIONS(874), 1, - sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1362), 1, - sym_generic_type, - STATE(1845), 1, - sym__type, - STATE(2294), 1, - sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, - sym_bracketed_type, - STATE(2383), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1553), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(872), 3, - sym_self, - sym_super, - sym_crate, - STATE(1389), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(858), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [387] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, - ACTIONS(856), 1, - anon_sym_LBRACK, - ACTIONS(860), 1, - anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, - ACTIONS(866), 1, - anon_sym_COLON_COLON, - ACTIONS(868), 1, - anon_sym_AMP, - ACTIONS(874), 1, - sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1362), 1, - sym_generic_type, - STATE(2294), 1, - sym_scoped_identifier, - STATE(2299), 1, - sym__type, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, - sym_bracketed_type, - STATE(2383), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1553), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(872), 3, - sym_self, - sym_super, - sym_crate, - STATE(1389), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(858), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [516] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, - ACTIONS(856), 1, - anon_sym_LBRACK, - ACTIONS(860), 1, - anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, - ACTIONS(866), 1, - anon_sym_COLON_COLON, - ACTIONS(868), 1, - anon_sym_AMP, - ACTIONS(874), 1, - sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1362), 1, - sym_generic_type, - STATE(1392), 1, - sym__type, - STATE(2294), 1, - sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, - sym_bracketed_type, - STATE(2383), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1553), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(872), 3, - sym_self, - sym_super, - sym_crate, - STATE(1389), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(858), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [645] = 32, + [635] = { + [sym_function_modifiers] = STATE(2472), + [sym_type_parameters] = STATE(723), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1652), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1650), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1506), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(2522), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(864), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(866), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(2502), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), + [sym_block_comment] = ACTIONS(3), + }, + [636] = { + [sym_function_modifiers] = STATE(2386), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1005), + [sym_bracketed_type] = STATE(2491), + [sym_lifetime] = STATE(623), + [sym_array_type] = STATE(1040), + [sym_for_lifetimes] = STATE(1195), + [sym_function_type] = STATE(1040), + [sym_tuple_type] = STATE(1040), + [sym_unit_type] = STATE(1040), + [sym_generic_type] = STATE(790), + [sym_generic_type_with_turbofish] = STATE(2492), + [sym_bounded_type] = STATE(1040), + [sym_reference_type] = STATE(1040), + [sym_pointer_type] = STATE(1040), + [sym_empty_type] = STATE(1040), + [sym_abstract_type] = STATE(1040), + [sym_dynamic_type] = STATE(1040), + [sym_macro_invocation] = STATE(1040), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(760), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(2464), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_u8] = ACTIONS(2474), + [anon_sym_i8] = ACTIONS(2474), + [anon_sym_u16] = ACTIONS(2474), + [anon_sym_i16] = ACTIONS(2474), + [anon_sym_u32] = ACTIONS(2474), + [anon_sym_i32] = ACTIONS(2474), + [anon_sym_u64] = ACTIONS(2474), + [anon_sym_i64] = ACTIONS(2474), + [anon_sym_u128] = ACTIONS(2474), + [anon_sym_i128] = ACTIONS(2474), + [anon_sym_isize] = ACTIONS(2474), + [anon_sym_usize] = ACTIONS(2474), + [anon_sym_f32] = ACTIONS(2474), + [anon_sym_f64] = ACTIONS(2474), + [anon_sym_bool] = ACTIONS(2474), + [anon_sym_str] = ACTIONS(2474), + [anon_sym_char] = ACTIONS(2474), + [anon_sym_SQUOTE] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(2476), + [anon_sym_fn] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(2480), + [anon_sym_union] = ACTIONS(2482), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(2484), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2486), + [anon_sym_AMP] = ACTIONS(2488), + [anon_sym_dyn] = ACTIONS(2490), + [sym_mutable_specifier] = ACTIONS(2524), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2494), + [sym_super] = ACTIONS(2494), + [sym_crate] = ACTIONS(2494), + [sym_metavariable] = ACTIONS(2496), + [sym_block_comment] = ACTIONS(3), + }, + [637] = { + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(2051), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_RPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(864), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(866), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), + [sym_block_comment] = ACTIONS(3), + }, + [638] = { + [sym_function_modifiers] = STATE(2472), + [sym_extern_modifier] = STATE(1526), + [sym__type] = STATE(1831), + [sym_bracketed_type] = STATE(2378), + [sym_lifetime] = STATE(2471), + [sym_array_type] = STATE(1390), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1390), + [sym_tuple_type] = STATE(1390), + [sym_unit_type] = STATE(1390), + [sym_generic_type] = STATE(1359), + [sym_generic_type_with_turbofish] = STATE(2379), + [sym_bounded_type] = STATE(1390), + [sym_reference_type] = STATE(1390), + [sym_pointer_type] = STATE(1390), + [sym_empty_type] = STATE(1390), + [sym_abstract_type] = STATE(1390), + [sym_dynamic_type] = STATE(1390), + [sym_macro_invocation] = STATE(1390), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1331), + [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_identifier] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_RPAREN] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(862), + [anon_sym_i8] = ACTIONS(862), + [anon_sym_u16] = ACTIONS(862), + [anon_sym_i16] = ACTIONS(862), + [anon_sym_u32] = ACTIONS(862), + [anon_sym_i32] = ACTIONS(862), + [anon_sym_u64] = ACTIONS(862), + [anon_sym_i64] = ACTIONS(862), + [anon_sym_u128] = ACTIONS(862), + [anon_sym_i128] = ACTIONS(862), + [anon_sym_isize] = ACTIONS(862), + [anon_sym_usize] = ACTIONS(862), + [anon_sym_f32] = ACTIONS(862), + [anon_sym_f64] = ACTIONS(862), + [anon_sym_bool] = ACTIONS(862), + [anon_sym_str] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), + [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(864), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(866), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(872), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(878), + [sym_block_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73090,310 +72603,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, - ACTIONS(860), 1, - anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, - ACTIONS(866), 1, - anon_sym_COLON_COLON, - ACTIONS(868), 1, - anon_sym_AMP, - ACTIONS(874), 1, - sym_metavariable, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2530), 1, - sym_identifier, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1498), 1, - sym_scoped_type_identifier, - STATE(1617), 1, - sym__type, - STATE(1618), 1, - sym_generic_type, - STATE(2294), 1, - sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, - sym_bracketed_type, - STATE(2383), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1553), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(872), 3, - sym_self, - sym_super, - sym_crate, - STATE(1389), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(858), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [774] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(852), 1, anon_sym_LPAREN, - ACTIONS(856), 1, - anon_sym_LBRACK, ACTIONS(860), 1, - anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, - ACTIONS(866), 1, - anon_sym_COLON_COLON, - ACTIONS(868), 1, - anon_sym_AMP, - ACTIONS(874), 1, - sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1362), 1, - sym_generic_type, - STATE(1885), 1, - sym__type, - STATE(2294), 1, - sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, - sym_bracketed_type, - STATE(2383), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1553), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(872), 3, - sym_self, - sym_super, - sym_crate, - STATE(1389), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(858), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [903] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, - ACTIONS(856), 1, anon_sym_LBRACK, - ACTIONS(860), 1, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, - anon_sym_COLON_COLON, - ACTIONS(868), 1, - anon_sym_AMP, - ACTIONS(874), 1, - sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1333), 1, - sym_scoped_type_identifier, - STATE(1362), 1, - sym_generic_type, - STATE(2025), 1, - sym__type, - STATE(2294), 1, - sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, - sym_bracketed_type, - STATE(2383), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1553), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(872), 3, - sym_self, - sym_super, - sym_crate, - STATE(1389), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(858), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [1032] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, - ACTIONS(856), 1, - anon_sym_LBRACK, - ACTIONS(860), 1, - anon_sym_default, - ACTIONS(862), 1, anon_sym_union, - ACTIONS(866), 1, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -73401,37 +72623,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1692), 1, + STATE(1400), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73443,7 +72665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73461,7 +72683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1161] = 32, + [129] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73478,19 +72700,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -73498,231 +72720,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(2121), 1, - sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, - sym_bracketed_type, - STATE(2383), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1553), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(872), 3, - sym_self, - sym_super, - sym_crate, - STATE(1389), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(858), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [1290] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, - ACTIONS(856), 1, - anon_sym_LBRACK, - ACTIONS(860), 1, - anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, - ACTIONS(866), 1, - anon_sym_COLON_COLON, - ACTIONS(868), 1, - anon_sym_AMP, - ACTIONS(874), 1, - sym_metavariable, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2532), 1, - sym_identifier, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1523), 1, - sym_scoped_type_identifier, - STATE(1652), 1, + STATE(2291), 1, sym__type, - STATE(1662), 1, - sym_generic_type, - STATE(2294), 1, - sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1553), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(872), 3, - sym_self, - sym_super, - sym_crate, - STATE(1389), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(858), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [1419] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2449), 1, - sym_identifier, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2453), 1, - anon_sym_LBRACK, - ACTIONS(2457), 1, - anon_sym_STAR, - ACTIONS(2461), 1, - anon_sym_default, - ACTIONS(2463), 1, - anon_sym_fn, - ACTIONS(2465), 1, - anon_sym_impl, - ACTIONS(2467), 1, - anon_sym_union, - ACTIONS(2469), 1, - anon_sym_BANG, - ACTIONS(2471), 1, - anon_sym_COLON_COLON, - ACTIONS(2473), 1, - anon_sym_AMP, - ACTIONS(2475), 1, - anon_sym_dyn, - ACTIONS(2481), 1, - sym_metavariable, - STATE(757), 1, - sym_scoped_type_identifier, - STATE(791), 1, - sym_generic_type, - STATE(891), 1, - sym__type, - STATE(1197), 1, - sym_for_lifetimes, - STATE(2267), 1, - sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2465), 1, + STATE(2471), 1, sym_lifetime, - STATE(2495), 1, - sym_bracketed_type, - STATE(2496), 1, - sym_generic_type_with_turbofish, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2479), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(942), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73734,7 +72762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2459), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73752,7 +72780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1548] = 32, + [258] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73769,19 +72797,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -73789,37 +72817,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1906), 1, + STATE(2038), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73831,7 +72859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73849,7 +72877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1677] = 32, + [387] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73866,19 +72894,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -73886,37 +72914,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1404), 1, + STATE(1663), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73928,7 +72956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73946,7 +72974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1806] = 32, + [516] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73963,19 +72991,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -73983,37 +73011,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1865), 1, + STATE(1613), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74025,7 +73053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74043,7 +73071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1935] = 32, + [645] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74060,19 +73088,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -74080,37 +73108,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1407), 1, + STATE(1383), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74122,7 +73150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74140,7 +73168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2064] = 32, + [774] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74157,19 +73185,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -74177,37 +73205,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1704), 1, + STATE(1883), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74219,7 +73247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74237,7 +73265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2193] = 32, + [903] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74254,19 +73282,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -74274,37 +73302,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1671), 1, + STATE(1387), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74316,7 +73344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74334,7 +73362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2322] = 32, + [1032] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74351,19 +73379,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -74371,37 +73399,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(2056), 1, + STATE(1879), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74413,7 +73441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74431,7 +73459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2451] = 32, + [1161] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74448,19 +73476,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -74468,37 +73496,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1664), 1, + STATE(1614), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74510,7 +73538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74528,7 +73556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2580] = 32, + [1290] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74545,19 +73573,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -74565,37 +73593,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1619), 1, + STATE(1385), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, + STATE(2378), 1, + sym_bracketed_type, + STATE(2379), 1, + sym_generic_type_with_turbofish, + STATE(2471), 1, sym_lifetime, - STATE(2382), 1, + STATE(2472), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1526), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(876), 3, + sym_self, + sym_super, + sym_crate, + STATE(1390), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(862), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [1419] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(856), 1, + anon_sym_LPAREN, + ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, + anon_sym_default, + ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, + anon_sym_COLON_COLON, + ACTIONS(872), 1, + anon_sym_AMP, + ACTIONS(878), 1, + sym_metavariable, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1331), 1, + sym_scoped_type_identifier, + STATE(1359), 1, + sym_generic_type, + STATE(2068), 1, + sym__type, + STATE(2157), 1, + sym_scoped_identifier, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74607,7 +73732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74625,7 +73750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2709] = 32, + [1548] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74642,19 +73767,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -74662,37 +73787,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1621), 1, + STATE(1811), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74704,7 +73829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74722,7 +73847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2838] = 32, + [1677] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74739,19 +73864,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -74759,37 +73884,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1922), 1, + STATE(1633), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74801,7 +73926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74819,7 +73944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2967] = 32, + [1806] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74836,19 +73961,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -74856,37 +73981,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1796), 1, + STATE(1398), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74898,7 +74023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74916,74 +74041,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3096] = 32, + [1935] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2449), 1, - sym_identifier, - ACTIONS(2451), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(856), 1, anon_sym_LPAREN, - ACTIONS(2453), 1, + ACTIONS(860), 1, anon_sym_LBRACK, - ACTIONS(2457), 1, - anon_sym_STAR, - ACTIONS(2461), 1, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(2463), 1, - anon_sym_fn, - ACTIONS(2465), 1, - anon_sym_impl, - ACTIONS(2467), 1, + ACTIONS(866), 1, anon_sym_union, - ACTIONS(2469), 1, - anon_sym_BANG, - ACTIONS(2471), 1, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(2473), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(2475), 1, - anon_sym_dyn, - ACTIONS(2481), 1, + ACTIONS(878), 1, sym_metavariable, - STATE(757), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(791), 1, + STATE(1359), 1, sym_generic_type, - STATE(886), 1, + STATE(1624), 1, sym__type, - STATE(1197), 1, - sym_for_lifetimes, - STATE(2267), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2465), 1, - sym_lifetime, - STATE(2495), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2479), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(942), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74995,7 +74120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2459), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75013,74 +74138,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3225] = 32, + [2064] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2449), 1, - sym_identifier, - ACTIONS(2451), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(856), 1, anon_sym_LPAREN, - ACTIONS(2453), 1, + ACTIONS(860), 1, anon_sym_LBRACK, - ACTIONS(2457), 1, - anon_sym_STAR, - ACTIONS(2461), 1, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(2463), 1, - anon_sym_fn, - ACTIONS(2465), 1, - anon_sym_impl, - ACTIONS(2467), 1, + ACTIONS(866), 1, anon_sym_union, - ACTIONS(2469), 1, - anon_sym_BANG, - ACTIONS(2471), 1, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(2473), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(2475), 1, - anon_sym_dyn, - ACTIONS(2481), 1, + ACTIONS(878), 1, sym_metavariable, - STATE(757), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(791), 1, + STATE(1359), 1, sym_generic_type, - STATE(883), 1, + STATE(2104), 1, sym__type, - STATE(1197), 1, - sym_for_lifetimes, - STATE(2267), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2465), 1, - sym_lifetime, - STATE(2495), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2479), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(942), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75092,7 +74217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2459), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75110,7 +74235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3354] = 32, + [2193] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75127,19 +74252,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -75147,37 +74272,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1399), 1, + STATE(2045), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75189,7 +74314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75207,7 +74332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3483] = 32, + [2322] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75224,19 +74349,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -75244,37 +74369,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1824), 1, + STATE(2117), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75286,7 +74411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75304,7 +74429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3612] = 32, + [2451] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75321,19 +74446,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -75341,37 +74466,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(2028), 1, + STATE(1875), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75383,7 +74508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75401,74 +74526,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3741] = 32, + [2580] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2449), 1, - sym_identifier, - ACTIONS(2451), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(856), 1, anon_sym_LPAREN, - ACTIONS(2453), 1, + ACTIONS(860), 1, anon_sym_LBRACK, - ACTIONS(2457), 1, - anon_sym_STAR, - ACTIONS(2461), 1, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(2463), 1, - anon_sym_fn, - ACTIONS(2465), 1, - anon_sym_impl, - ACTIONS(2467), 1, + ACTIONS(866), 1, anon_sym_union, - ACTIONS(2469), 1, - anon_sym_BANG, - ACTIONS(2471), 1, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(2473), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(2475), 1, - anon_sym_dyn, - ACTIONS(2481), 1, + ACTIONS(878), 1, sym_metavariable, - STATE(757), 1, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2530), 1, + sym_identifier, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1491), 1, sym_scoped_type_identifier, - STATE(791), 1, - sym_generic_type, - STATE(882), 1, + STATE(1657), 1, sym__type, - STATE(1197), 1, - sym_for_lifetimes, - STATE(2267), 1, + STATE(1679), 1, + sym_generic_type, + STATE(2157), 1, sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2465), 1, - sym_lifetime, - STATE(2495), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2479), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(942), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75480,7 +74605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2459), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75498,7 +74623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3870] = 33, + [2709] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75515,58 +74640,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(2534), 1, - sym_self, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1404), 1, + STATE(1869), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(872), 2, - sym_super, - sym_crate, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - STATE(1389), 11, + ACTIONS(876), 3, + sym_self, + sym_super, + sym_crate, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75578,7 +74702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75596,7 +74720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4001] = 32, + [2838] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75613,19 +74737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -75633,37 +74757,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(2019), 1, + STATE(1405), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75675,7 +74799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75693,7 +74817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4130] = 32, + [2967] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75710,57 +74834,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, + ACTIONS(2309), 1, + sym_identifier, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(2536), 1, - sym_identifier, STATE(1196), 1, sym_for_lifetimes, - STATE(1522), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1626), 1, - sym__type, - STATE(1687), 1, + STATE(1359), 1, sym_generic_type, - STATE(2294), 1, + STATE(1625), 1, + sym__type, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75772,7 +74896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75790,7 +74914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4259] = 32, + [3096] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75807,19 +74931,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -75827,37 +74951,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1629), 1, + STATE(1817), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75869,7 +74993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75887,7 +75011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4388] = 32, + [3225] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75904,19 +75028,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -75924,37 +75048,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(2102), 1, + STATE(1379), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75966,7 +75090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75984,7 +75108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4517] = 32, + [3354] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76001,19 +75125,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -76021,37 +75145,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, STATE(1631), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76063,7 +75187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76081,7 +75205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4646] = 32, + [3483] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76098,19 +75222,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -76118,37 +75242,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1702), 1, + STATE(1394), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76160,7 +75284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76178,74 +75302,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4775] = 32, + [3612] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2449), 1, - sym_identifier, - ACTIONS(2451), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(856), 1, anon_sym_LPAREN, - ACTIONS(2453), 1, + ACTIONS(860), 1, anon_sym_LBRACK, - ACTIONS(2457), 1, - anon_sym_STAR, - ACTIONS(2461), 1, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(2463), 1, - anon_sym_fn, - ACTIONS(2465), 1, - anon_sym_impl, - ACTIONS(2467), 1, + ACTIONS(866), 1, anon_sym_union, - ACTIONS(2469), 1, - anon_sym_BANG, - ACTIONS(2471), 1, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(2473), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(2475), 1, - anon_sym_dyn, - ACTIONS(2481), 1, + ACTIONS(878), 1, sym_metavariable, - STATE(757), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(791), 1, + STATE(1359), 1, sym_generic_type, - STATE(1019), 1, + STATE(1647), 1, sym__type, - STATE(1197), 1, - sym_for_lifetimes, - STATE(2267), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2465), 1, - sym_lifetime, - STATE(2495), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2479), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(942), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76257,7 +75381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2459), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76275,7 +75399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4904] = 32, + [3741] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76292,19 +75416,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -76312,37 +75436,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1394), 1, + STATE(1874), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76354,7 +75478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76372,7 +75496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5033] = 32, + [3870] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76389,19 +75513,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -76409,37 +75533,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1998), 1, + STATE(1381), 1, sym__type, - STATE(2294), 1, + STATE(1382), 1, + sym_lifetime, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, + STATE(2378), 1, + sym_bracketed_type, + STATE(2379), 1, + sym_generic_type_with_turbofish, + STATE(2472), 1, sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1526), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(876), 3, + sym_self, + sym_super, + sym_crate, + STATE(1390), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(862), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [3999] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2464), 1, + sym_identifier, + ACTIONS(2466), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_STAR, + ACTIONS(2476), 1, + anon_sym_default, + ACTIONS(2478), 1, + anon_sym_fn, + ACTIONS(2480), 1, + anon_sym_impl, + ACTIONS(2482), 1, + anon_sym_union, + ACTIONS(2484), 1, + anon_sym_BANG, + ACTIONS(2486), 1, + anon_sym_COLON_COLON, + ACTIONS(2488), 1, + anon_sym_AMP, + ACTIONS(2490), 1, + anon_sym_dyn, + ACTIONS(2496), 1, + sym_metavariable, + STATE(760), 1, + sym_scoped_type_identifier, + STATE(790), 1, + sym_generic_type, + STATE(935), 1, + sym__type, + STATE(1195), 1, + sym_for_lifetimes, + STATE(2216), 1, + sym_scoped_identifier, + STATE(2386), 1, + sym_function_modifiers, + STATE(2491), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2492), 1, sym_generic_type_with_turbofish, + STATE(2513), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(2494), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1040), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76451,7 +75672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(2474), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76469,74 +75690,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5162] = 32, + [4128] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(852), 1, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2464), 1, + sym_identifier, + ACTIONS(2466), 1, anon_sym_LPAREN, - ACTIONS(856), 1, + ACTIONS(2468), 1, anon_sym_LBRACK, - ACTIONS(860), 1, + ACTIONS(2472), 1, + anon_sym_STAR, + ACTIONS(2476), 1, anon_sym_default, - ACTIONS(862), 1, + ACTIONS(2478), 1, + anon_sym_fn, + ACTIONS(2480), 1, + anon_sym_impl, + ACTIONS(2482), 1, anon_sym_union, - ACTIONS(866), 1, + ACTIONS(2484), 1, + anon_sym_BANG, + ACTIONS(2486), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(2490), 1, + anon_sym_dyn, + ACTIONS(2496), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1333), 1, + STATE(760), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(790), 1, sym_generic_type, - STATE(2196), 1, + STATE(942), 1, sym__type, - STATE(2294), 1, + STATE(1195), 1, + sym_for_lifetimes, + STATE(2216), 1, sym_scoped_identifier, - STATE(2335), 1, + STATE(2386), 1, sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2491), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2492), 1, sym_generic_type_with_turbofish, + STATE(2513), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(2494), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1040), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76548,7 +75769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(2474), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76566,74 +75787,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5291] = 32, + [4257] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(852), 1, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2464), 1, + sym_identifier, + ACTIONS(2466), 1, anon_sym_LPAREN, - ACTIONS(856), 1, + ACTIONS(2468), 1, anon_sym_LBRACK, - ACTIONS(860), 1, + ACTIONS(2472), 1, + anon_sym_STAR, + ACTIONS(2476), 1, anon_sym_default, - ACTIONS(862), 1, + ACTIONS(2478), 1, + anon_sym_fn, + ACTIONS(2480), 1, + anon_sym_impl, + ACTIONS(2482), 1, anon_sym_union, - ACTIONS(866), 1, + ACTIONS(2484), 1, + anon_sym_BANG, + ACTIONS(2486), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(2490), 1, + anon_sym_dyn, + ACTIONS(2496), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1333), 1, + STATE(760), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(790), 1, sym_generic_type, - STATE(1378), 1, + STATE(951), 1, sym__type, - STATE(2294), 1, + STATE(1195), 1, + sym_for_lifetimes, + STATE(2216), 1, sym_scoped_identifier, - STATE(2335), 1, + STATE(2386), 1, sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2491), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2492), 1, sym_generic_type_with_turbofish, + STATE(2513), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(2494), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1040), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76645,7 +75866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(2474), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76663,7 +75884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5420] = 32, + [4386] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76680,19 +75901,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -76700,37 +75921,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1643), 1, + STATE(2051), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76742,7 +75963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76760,7 +75981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5549] = 32, + [4515] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76777,19 +75998,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -76797,37 +76018,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1967), 1, - sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2282), 1, + sym__type, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76839,7 +76060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76857,74 +76078,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5678] = 32, + [4644] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(852), 1, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2464), 1, + sym_identifier, + ACTIONS(2466), 1, anon_sym_LPAREN, - ACTIONS(856), 1, + ACTIONS(2468), 1, anon_sym_LBRACK, - ACTIONS(860), 1, + ACTIONS(2472), 1, + anon_sym_STAR, + ACTIONS(2476), 1, anon_sym_default, - ACTIONS(862), 1, + ACTIONS(2478), 1, + anon_sym_fn, + ACTIONS(2480), 1, + anon_sym_impl, + ACTIONS(2482), 1, anon_sym_union, - ACTIONS(866), 1, + ACTIONS(2484), 1, + anon_sym_BANG, + ACTIONS(2486), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(2490), 1, + anon_sym_dyn, + ACTIONS(2496), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1333), 1, + STATE(760), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(790), 1, sym_generic_type, - STATE(1937), 1, + STATE(953), 1, sym__type, - STATE(2294), 1, + STATE(1195), 1, + sym_for_lifetimes, + STATE(2216), 1, sym_scoped_identifier, - STATE(2335), 1, + STATE(2386), 1, sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2491), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2492), 1, sym_generic_type_with_turbofish, + STATE(2513), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(2494), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1040), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76936,7 +76157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(2474), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76954,7 +76175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5807] = 32, + [4773] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76971,19 +76192,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -76991,37 +76212,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1848), 1, + STATE(1619), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77033,7 +76254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77051,7 +76272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5936] = 32, + [4902] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77068,19 +76289,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -77088,37 +76309,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(2190), 1, + STATE(1936), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77130,7 +76351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77148,7 +76369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6065] = 32, + [5031] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77165,19 +76386,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -77185,37 +76406,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1857), 1, + STATE(1381), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77227,7 +76448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77245,7 +76466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6194] = 32, + [5160] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77262,19 +76483,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -77282,37 +76503,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1874), 1, + STATE(1670), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77324,7 +76545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77342,7 +76563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6323] = 32, + [5289] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77359,19 +76580,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -77379,37 +76600,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1821), 1, + STATE(1694), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77421,7 +76642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77439,7 +76660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6452] = 32, + [5418] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77456,19 +76677,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -77476,37 +76697,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1820), 1, + STATE(2025), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77518,7 +76739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77536,7 +76757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6581] = 32, + [5547] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77553,19 +76774,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -77573,37 +76794,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1786), 1, + STATE(1782), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77615,7 +76836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77633,7 +76854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6710] = 32, + [5676] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77650,19 +76871,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -77670,37 +76891,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1768), 1, + STATE(2031), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77712,7 +76933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77730,7 +76951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6839] = 32, + [5805] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77747,19 +76968,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -77767,37 +76988,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1646), 1, + STATE(1889), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77809,7 +77030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77827,7 +77048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6968] = 32, + [5934] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77844,19 +77065,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -77864,37 +77085,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1647), 1, + STATE(1636), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77906,7 +77127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77924,7 +77145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7097] = 32, + [6063] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77941,19 +77162,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -77961,37 +77182,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1661), 1, + STATE(1823), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78003,7 +77224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78021,7 +77242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7226] = 32, + [6192] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78038,19 +77259,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -78058,37 +77279,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1650), 1, + STATE(1655), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78100,7 +77321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78118,7 +77339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7355] = 32, + [6321] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78135,19 +77356,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -78155,37 +77376,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(2274), 1, + STATE(1684), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78197,7 +77418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78215,7 +77436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7484] = 32, + [6450] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78232,19 +77453,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -78252,37 +77473,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(2275), 1, - sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2177), 1, + sym__type, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78294,7 +77515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78312,7 +77533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7613] = 32, + [6579] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78329,19 +77550,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -78349,37 +77570,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(2286), 1, - sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2252), 1, + sym__type, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78391,7 +77612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78409,7 +77630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7742] = 32, + [6708] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78426,19 +77647,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -78446,37 +77667,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1653), 1, + STATE(1867), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78488,7 +77709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78506,75 +77727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7871] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1072), 20, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1074), 42, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [7942] = 32, + [6837] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78591,19 +77744,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -78611,37 +77764,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1654), 1, + STATE(1840), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78653,7 +77806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78671,7 +77824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8071] = 32, + [6966] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78688,19 +77841,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -78708,37 +77861,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1942), 1, + STATE(1831), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78750,7 +77903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78768,7 +77921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8200] = 32, + [7095] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78785,19 +77938,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -78805,37 +77958,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(2245), 1, + STATE(1671), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78847,7 +78000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78865,7 +78018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8329] = 32, + [7224] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78882,19 +78035,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -78902,37 +78055,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1608), 1, + STATE(1669), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78944,7 +78097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78962,7 +78115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8458] = 32, + [7353] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78979,19 +78132,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -78999,37 +78152,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1385), 1, + STATE(2017), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79041,7 +78194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79059,7 +78212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8587] = 32, + [7482] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79076,19 +78229,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -79096,37 +78249,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(2234), 1, + STATE(1928), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79138,7 +78291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79156,7 +78309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8716] = 32, + [7611] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79173,19 +78326,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -79193,37 +78346,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1589), 1, - sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2192), 1, + sym__type, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79235,7 +78388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79253,7 +78406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8845] = 32, + [7740] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79270,19 +78423,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -79290,37 +78443,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1648), 1, + STATE(1678), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79332,7 +78485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79350,7 +78503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8974] = 32, + [7869] = 33, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79367,57 +78520,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, ACTIONS(2313), 1, anon_sym_SQUOTE, + ACTIONS(2532), 1, + sym_self, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1622), 1, + STATE(1383), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, + STATE(2378), 1, + sym_bracketed_type, + STATE(2379), 1, + sym_generic_type_with_turbofish, + STATE(2471), 1, sym_lifetime, - STATE(2382), 1, + STATE(2472), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(876), 2, + sym_super, + sym_crate, + STATE(1526), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + STATE(1390), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(862), 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, + [8000] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(856), 1, + anon_sym_LPAREN, + ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, + anon_sym_default, + ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, + anon_sym_COLON_COLON, + ACTIONS(872), 1, + anon_sym_AMP, + ACTIONS(878), 1, + sym_metavariable, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1331), 1, + sym_scoped_type_identifier, + STATE(1359), 1, + sym_generic_type, + STATE(1985), 1, + sym__type, + STATE(2157), 1, + sym_scoped_identifier, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79429,7 +78680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79447,7 +78698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9103] = 32, + [8129] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79464,19 +78715,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -79484,37 +78735,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1668), 1, + STATE(1572), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79526,7 +78777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79544,7 +78795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9232] = 32, + [8258] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79561,19 +78812,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -79581,37 +78832,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1390), 1, + STATE(1701), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79623,7 +78874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79641,7 +78892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9361] = 32, + [8387] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79658,57 +78909,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, ACTIONS(2313), 1, anon_sym_SQUOTE, + ACTIONS(2534), 1, + sym_identifier, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1497), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1637), 1, sym_generic_type, - STATE(1911), 1, + STATE(1640), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79720,7 +78971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79738,7 +78989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9490] = 32, + [8516] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79755,19 +79006,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -79775,37 +79026,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1901), 1, + STATE(1703), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79817,7 +79068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79835,7 +79086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9619] = 32, + [8645] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79852,19 +79103,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -79872,134 +79123,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1655), 1, + STATE(1999), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1553), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(872), 3, - sym_self, - sym_super, - sym_crate, - STATE(1389), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(858), 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, - [9748] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, - ACTIONS(856), 1, - anon_sym_LBRACK, - ACTIONS(860), 1, - anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, - ACTIONS(866), 1, - anon_sym_COLON_COLON, - ACTIONS(868), 1, - anon_sym_AMP, - ACTIONS(874), 1, - sym_metavariable, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2538), 1, - sym_identifier, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1504), 1, - sym_scoped_type_identifier, - STATE(1696), 1, - sym_generic_type, - STATE(1701), 1, - sym__type, - STATE(2294), 1, - sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, + STATE(2471), 1, sym_lifetime, - STATE(2382), 1, - sym_bracketed_type, - STATE(2383), 1, - sym_generic_type_with_turbofish, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80011,7 +79165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80029,7 +79183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9877] = 32, + [8774] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80046,19 +79200,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -80066,37 +79220,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1949), 1, - sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2222), 1, + sym__type, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80108,7 +79262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80126,7 +79280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10006] = 32, + [8903] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80143,19 +79297,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -80163,37 +79317,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(2072), 1, + STATE(1692), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80205,7 +79359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80223,7 +79377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10135] = 32, + [9032] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80240,19 +79394,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -80260,37 +79414,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(2199), 1, + STATE(1689), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80302,7 +79456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80320,7 +79474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10264] = 32, + [9161] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80337,19 +79491,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -80357,37 +79511,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1391), 1, - sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2230), 1, + sym__type, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80399,7 +79553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80417,7 +79571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10393] = 32, + [9290] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80434,19 +79588,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -80454,37 +79608,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1381), 1, - sym_lifetime, - STATE(1383), 1, + STATE(2021), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80496,7 +79650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80514,7 +79668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10522] = 32, + [9419] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80531,57 +79685,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, ACTIONS(2313), 1, anon_sym_SQUOTE, + ACTIONS(2536), 1, + sym_identifier, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1507), 1, sym_scoped_type_identifier, - STATE(1362), 1, - sym_generic_type, - STATE(1396), 1, + STATE(1642), 1, sym__type, - STATE(2294), 1, + STATE(1643), 1, + sym_generic_type, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80593,7 +79747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80611,74 +79765,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10651] = 32, + [9548] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2449), 1, - sym_identifier, - ACTIONS(2451), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(856), 1, anon_sym_LPAREN, - ACTIONS(2453), 1, + ACTIONS(860), 1, anon_sym_LBRACK, - ACTIONS(2457), 1, - anon_sym_STAR, - ACTIONS(2461), 1, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(2463), 1, - anon_sym_fn, - ACTIONS(2465), 1, - anon_sym_impl, - ACTIONS(2467), 1, + ACTIONS(866), 1, anon_sym_union, - ACTIONS(2469), 1, - anon_sym_BANG, - ACTIONS(2471), 1, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(2473), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(2475), 1, - anon_sym_dyn, - ACTIONS(2481), 1, + ACTIONS(878), 1, sym_metavariable, - STATE(757), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(791), 1, + STATE(1359), 1, sym_generic_type, - STATE(838), 1, + STATE(1950), 1, sym__type, - STATE(1197), 1, - sym_for_lifetimes, - STATE(2267), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2465), 1, - sym_lifetime, - STATE(2495), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2479), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(942), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80690,7 +79844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2459), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80708,7 +79862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10780] = 32, + [9677] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80725,19 +79879,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -80745,134 +79899,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1633), 1, + STATE(2009), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1553), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(872), 3, - sym_self, - sym_super, - sym_crate, - STATE(1389), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(858), 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, - [10909] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2449), 1, - sym_identifier, - ACTIONS(2451), 1, - anon_sym_LPAREN, - ACTIONS(2453), 1, - anon_sym_LBRACK, - ACTIONS(2457), 1, - anon_sym_STAR, - ACTIONS(2461), 1, - anon_sym_default, - ACTIONS(2463), 1, - anon_sym_fn, - ACTIONS(2465), 1, - anon_sym_impl, - ACTIONS(2467), 1, - anon_sym_union, - ACTIONS(2469), 1, - anon_sym_BANG, - ACTIONS(2471), 1, - anon_sym_COLON_COLON, - ACTIONS(2473), 1, - anon_sym_AMP, - ACTIONS(2475), 1, - anon_sym_dyn, - ACTIONS(2481), 1, - sym_metavariable, - STATE(757), 1, - sym_scoped_type_identifier, - STATE(791), 1, - sym_generic_type, - STATE(957), 1, - sym__type, - STATE(1197), 1, - sym_for_lifetimes, - STATE(2267), 1, - sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2465), 1, + STATE(2471), 1, sym_lifetime, - STATE(2495), 1, - sym_bracketed_type, - STATE(2496), 1, - sym_generic_type_with_turbofish, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2479), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(942), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80884,7 +79941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2459), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80902,7 +79959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11038] = 32, + [9806] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80919,19 +79976,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -80939,37 +79996,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1383), 1, + STATE(1660), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80981,7 +80038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80999,7 +80056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11167] = 32, + [9935] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -81016,19 +80073,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -81036,37 +80093,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1688), 1, - sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2203), 1, + sym__type, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81078,7 +80135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81096,7 +80153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11296] = 32, + [10064] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -81113,19 +80170,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -81133,37 +80190,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1659), 1, + STATE(1622), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81175,7 +80232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81193,74 +80250,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11425] = 32, + [10193] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(852), 1, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2464), 1, + sym_identifier, + ACTIONS(2466), 1, anon_sym_LPAREN, - ACTIONS(856), 1, + ACTIONS(2468), 1, anon_sym_LBRACK, - ACTIONS(860), 1, + ACTIONS(2472), 1, + anon_sym_STAR, + ACTIONS(2476), 1, anon_sym_default, - ACTIONS(862), 1, + ACTIONS(2478), 1, + anon_sym_fn, + ACTIONS(2480), 1, + anon_sym_impl, + ACTIONS(2482), 1, anon_sym_union, - ACTIONS(866), 1, + ACTIONS(2484), 1, + anon_sym_BANG, + ACTIONS(2486), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(2490), 1, + anon_sym_dyn, + ACTIONS(2496), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1333), 1, + STATE(760), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(790), 1, sym_generic_type, - STATE(1782), 1, + STATE(856), 1, sym__type, - STATE(2294), 1, + STATE(1195), 1, + sym_for_lifetimes, + STATE(2216), 1, sym_scoped_identifier, - STATE(2335), 1, + STATE(2386), 1, sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2491), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2492), 1, sym_generic_type_with_turbofish, + STATE(2513), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(2494), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1040), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81272,7 +80329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(2474), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81290,74 +80347,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11554] = 32, + [10322] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2449), 1, - sym_identifier, - ACTIONS(2451), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(856), 1, anon_sym_LPAREN, - ACTIONS(2453), 1, + ACTIONS(860), 1, anon_sym_LBRACK, - ACTIONS(2457), 1, - anon_sym_STAR, - ACTIONS(2461), 1, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(2463), 1, - anon_sym_fn, - ACTIONS(2465), 1, - anon_sym_impl, - ACTIONS(2467), 1, + ACTIONS(866), 1, anon_sym_union, - ACTIONS(2469), 1, - anon_sym_BANG, - ACTIONS(2471), 1, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(2473), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(2475), 1, - anon_sym_dyn, - ACTIONS(2481), 1, + ACTIONS(878), 1, sym_metavariable, - STATE(757), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(791), 1, + STATE(1359), 1, sym_generic_type, - STATE(949), 1, + STATE(1392), 1, sym__type, - STATE(1197), 1, - sym_for_lifetimes, - STATE(2267), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2465), 1, - sym_lifetime, - STATE(2495), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2479), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(942), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81369,7 +80426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2459), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81387,7 +80444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11683] = 32, + [10451] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -81404,19 +80461,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -81424,37 +80481,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1929), 1, + STATE(1402), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81466,7 +80523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81484,7 +80541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11812] = 32, + [10580] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -81501,19 +80558,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -81521,37 +80578,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1630), 1, + STATE(1704), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81563,7 +80620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81581,7 +80638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11941] = 32, + [10709] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -81598,19 +80655,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -81618,37 +80675,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(2099), 1, - sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2180), 1, + sym__type, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81660,7 +80717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81678,7 +80735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12070] = 32, + [10838] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -81695,57 +80752,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, ACTIONS(2313), 1, anon_sym_SQUOTE, + ACTIONS(2538), 1, + sym_identifier, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1483), 1, sym_scoped_type_identifier, - STATE(1362), 1, - sym_generic_type, - STATE(1660), 1, + STATE(1685), 1, sym__type, - STATE(2294), 1, + STATE(1686), 1, + sym_generic_type, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81757,7 +80814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81775,74 +80832,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12199] = 32, + [10967] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(852), 1, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2464), 1, + sym_identifier, + ACTIONS(2466), 1, anon_sym_LPAREN, - ACTIONS(856), 1, + ACTIONS(2468), 1, anon_sym_LBRACK, - ACTIONS(860), 1, + ACTIONS(2472), 1, + anon_sym_STAR, + ACTIONS(2476), 1, anon_sym_default, - ACTIONS(862), 1, + ACTIONS(2478), 1, + anon_sym_fn, + ACTIONS(2480), 1, + anon_sym_impl, + ACTIONS(2482), 1, anon_sym_union, - ACTIONS(866), 1, + ACTIONS(2484), 1, + anon_sym_BANG, + ACTIONS(2486), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(2490), 1, + anon_sym_dyn, + ACTIONS(2496), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, + STATE(760), 1, + sym_scoped_type_identifier, + STATE(790), 1, + sym_generic_type, + STATE(862), 1, + sym__type, + STATE(1195), 1, + sym_for_lifetimes, + STATE(2216), 1, + sym_scoped_identifier, + STATE(2386), 1, + sym_function_modifiers, + STATE(2491), 1, + sym_bracketed_type, + STATE(2492), 1, + sym_generic_type_with_turbofish, + STATE(2513), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1526), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2494), 3, + sym_self, + sym_super, + sym_crate, + STATE(1040), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2474), 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, + [11096] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, ACTIONS(2313), 1, anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1333), 1, + ACTIONS(2464), 1, + sym_identifier, + ACTIONS(2466), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_STAR, + ACTIONS(2476), 1, + anon_sym_default, + ACTIONS(2478), 1, + anon_sym_fn, + ACTIONS(2480), 1, + anon_sym_impl, + ACTIONS(2482), 1, + anon_sym_union, + ACTIONS(2484), 1, + anon_sym_BANG, + ACTIONS(2486), 1, + anon_sym_COLON_COLON, + ACTIONS(2488), 1, + anon_sym_AMP, + ACTIONS(2490), 1, + anon_sym_dyn, + ACTIONS(2496), 1, + sym_metavariable, + STATE(760), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(790), 1, sym_generic_type, - STATE(2156), 1, + STATE(865), 1, sym__type, - STATE(2294), 1, + STATE(1195), 1, + sym_for_lifetimes, + STATE(2216), 1, sym_scoped_identifier, - STATE(2335), 1, + STATE(2386), 1, sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2491), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2492), 1, sym_generic_type_with_turbofish, + STATE(2513), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(2494), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1040), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81854,7 +81008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(2474), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81872,7 +81026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12328] = 32, + [11225] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(672), 1, @@ -81881,65 +81035,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(2449), 1, + ACTIONS(2464), 1, sym_identifier, - ACTIONS(2451), 1, + ACTIONS(2466), 1, anon_sym_LPAREN, - ACTIONS(2453), 1, + ACTIONS(2468), 1, anon_sym_LBRACK, - ACTIONS(2457), 1, + ACTIONS(2472), 1, anon_sym_STAR, - ACTIONS(2461), 1, + ACTIONS(2476), 1, anon_sym_default, - ACTIONS(2463), 1, + ACTIONS(2478), 1, anon_sym_fn, - ACTIONS(2465), 1, + ACTIONS(2480), 1, anon_sym_impl, - ACTIONS(2467), 1, + ACTIONS(2482), 1, anon_sym_union, - ACTIONS(2469), 1, + ACTIONS(2484), 1, anon_sym_BANG, - ACTIONS(2471), 1, + ACTIONS(2486), 1, anon_sym_COLON_COLON, - ACTIONS(2473), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2475), 1, + ACTIONS(2490), 1, anon_sym_dyn, - ACTIONS(2481), 1, + ACTIONS(2496), 1, sym_metavariable, - STATE(757), 1, + STATE(760), 1, sym_scoped_type_identifier, - STATE(791), 1, + STATE(790), 1, sym_generic_type, - STATE(955), 1, + STATE(867), 1, sym__type, - STATE(1197), 1, + STATE(1195), 1, sym_for_lifetimes, - STATE(2267), 1, + STATE(2216), 1, sym_scoped_identifier, - STATE(2390), 1, + STATE(2386), 1, sym_function_modifiers, - STATE(2465), 1, - sym_lifetime, - STATE(2495), 1, + STATE(2491), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2492), 1, sym_generic_type_with_turbofish, + STATE(2513), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2479), 3, + ACTIONS(2494), 3, sym_self, sym_super, sym_crate, - STATE(942), 11, + STATE(1040), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81951,7 +81105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2459), 17, + ACTIONS(2474), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81969,7 +81123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12457] = 32, + [11354] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -81986,19 +81140,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -82006,37 +81160,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1672), 1, - sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2289), 1, + sym__type, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82048,7 +81202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82066,74 +81220,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12586] = 32, + [11483] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2449), 1, - sym_identifier, - ACTIONS(2451), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(856), 1, anon_sym_LPAREN, - ACTIONS(2453), 1, + ACTIONS(860), 1, anon_sym_LBRACK, - ACTIONS(2457), 1, - anon_sym_STAR, - ACTIONS(2461), 1, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(2463), 1, - anon_sym_fn, - ACTIONS(2465), 1, - anon_sym_impl, - ACTIONS(2467), 1, + ACTIONS(866), 1, anon_sym_union, - ACTIONS(2469), 1, - anon_sym_BANG, - ACTIONS(2471), 1, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(2473), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(2475), 1, - anon_sym_dyn, - ACTIONS(2481), 1, + ACTIONS(878), 1, sym_metavariable, - STATE(757), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(791), 1, + STATE(1359), 1, sym_generic_type, - STATE(832), 1, + STATE(1992), 1, sym__type, - STATE(1197), 1, - sym_for_lifetimes, - STATE(2267), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2465), 1, - sym_lifetime, - STATE(2495), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2479), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(942), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82145,7 +81299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2459), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82163,7 +81317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12715] = 32, + [11612] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -82180,19 +81334,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -82200,37 +81354,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(2085), 1, + STATE(1688), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82242,7 +81396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82260,7 +81414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12844] = 32, + [11741] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(672), 1, @@ -82269,65 +81423,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(2449), 1, + ACTIONS(2464), 1, sym_identifier, - ACTIONS(2451), 1, + ACTIONS(2466), 1, anon_sym_LPAREN, - ACTIONS(2453), 1, + ACTIONS(2468), 1, anon_sym_LBRACK, - ACTIONS(2457), 1, + ACTIONS(2472), 1, anon_sym_STAR, - ACTIONS(2461), 1, + ACTIONS(2476), 1, anon_sym_default, - ACTIONS(2463), 1, + ACTIONS(2478), 1, anon_sym_fn, - ACTIONS(2465), 1, + ACTIONS(2480), 1, anon_sym_impl, - ACTIONS(2467), 1, + ACTIONS(2482), 1, anon_sym_union, - ACTIONS(2469), 1, + ACTIONS(2484), 1, anon_sym_BANG, - ACTIONS(2471), 1, + ACTIONS(2486), 1, anon_sym_COLON_COLON, - ACTIONS(2473), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2475), 1, + ACTIONS(2490), 1, anon_sym_dyn, - ACTIONS(2481), 1, + ACTIONS(2496), 1, sym_metavariable, - STATE(757), 1, + STATE(760), 1, sym_scoped_type_identifier, - STATE(791), 1, + STATE(790), 1, sym_generic_type, - STATE(956), 1, + STATE(1083), 1, sym__type, - STATE(1197), 1, + STATE(1195), 1, sym_for_lifetimes, - STATE(2267), 1, + STATE(2216), 1, sym_scoped_identifier, - STATE(2390), 1, + STATE(2386), 1, sym_function_modifiers, - STATE(2465), 1, - sym_lifetime, - STATE(2495), 1, + STATE(2491), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2492), 1, sym_generic_type_with_turbofish, + STATE(2513), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2479), 3, + ACTIONS(2494), 3, sym_self, sym_super, sym_crate, - STATE(942), 11, + STATE(1040), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82339,7 +81493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2459), 17, + ACTIONS(2474), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82357,7 +81511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12973] = 32, + [11870] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -82374,19 +81528,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -82394,37 +81548,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1695), 1, + STATE(1919), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82436,7 +81590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82454,7 +81608,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13102] = 32, + [11999] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1344), 20, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(1346), 42, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12070] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -82471,19 +81693,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -82491,37 +81713,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1676), 1, + STATE(1837), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82533,7 +81755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82551,7 +81773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13231] = 32, + [12199] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -82568,19 +81790,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -82588,37 +81810,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1918), 1, - sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2279), 1, + sym__type, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82630,7 +81852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82648,7 +81870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13360] = 32, + [12328] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -82665,19 +81887,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -82685,37 +81907,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(2026), 1, + STATE(1915), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82727,7 +81949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82745,74 +81967,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13489] = 32, + [12457] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2449), 1, - sym_identifier, - ACTIONS(2451), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(856), 1, anon_sym_LPAREN, - ACTIONS(2453), 1, + ACTIONS(860), 1, anon_sym_LBRACK, - ACTIONS(2457), 1, - anon_sym_STAR, - ACTIONS(2461), 1, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(2463), 1, - anon_sym_fn, - ACTIONS(2465), 1, - anon_sym_impl, - ACTIONS(2467), 1, + ACTIONS(866), 1, anon_sym_union, - ACTIONS(2469), 1, - anon_sym_BANG, - ACTIONS(2471), 1, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(2473), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(2475), 1, - anon_sym_dyn, - ACTIONS(2481), 1, + ACTIONS(878), 1, sym_metavariable, - STATE(757), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(791), 1, + STATE(1359), 1, sym_generic_type, - STATE(831), 1, + STATE(1617), 1, sym__type, - STATE(1197), 1, - sym_for_lifetimes, - STATE(2267), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2390), 1, - sym_function_modifiers, - STATE(2465), 1, - sym_lifetime, - STATE(2495), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2479), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(942), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82824,7 +82046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2459), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82842,7 +82064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13618] = 32, + [12586] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -82859,19 +82081,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -82879,37 +82101,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(1877), 1, + STATE(1621), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82921,7 +82143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82939,7 +82161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13747] = 32, + [12715] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -82956,19 +82178,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(852), 1, - anon_sym_LPAREN, ACTIONS(856), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, anon_sym_default, - ACTIONS(862), 1, - anon_sym_union, ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(868), 1, + ACTIONS(872), 1, anon_sym_AMP, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -82976,37 +82198,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1333), 1, + STATE(1331), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1359), 1, sym_generic_type, - STATE(2266), 1, + STATE(1846), 1, sym__type, - STATE(2294), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2335), 1, - sym_function_modifiers, - STATE(2345), 1, - sym_lifetime, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(1389), 11, + STATE(1390), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83018,7 +82240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(858), 17, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83036,156 +82258,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13876] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(842), 17, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_DASH_GT, + [12844] = 32, + ACTIONS(77), 1, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(840), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_DASH, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [13942] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2542), 17, - sym_raw_string_literal, - sym_float_literal, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(856), 1, anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(860), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_DASH_GT, - anon_sym_LT, + ACTIONS(864), 1, + anon_sym_default, + ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, + ACTIONS(872), 1, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(878), 1, sym_metavariable, - ACTIONS(2540), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_DASH, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, + ACTIONS(2309), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [14008] = 3, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1331), 1, + sym_scoped_type_identifier, + STATE(1359), 1, + sym_generic_type, + STATE(1683), 1, + sym__type, + STATE(2157), 1, + sym_scoped_identifier, + STATE(2378), 1, + sym_bracketed_type, + STATE(2379), 1, + sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(508), 18, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2544), 39, + STATE(1526), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(876), 3, + sym_self, + sym_super, + sym_crate, + STATE(1390), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83203,51 +82355,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, + [12973] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(672), 1, anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2464), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [14074] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2548), 17, - sym_raw_string_literal, - sym_float_literal, + ACTIONS(2466), 1, anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(2468), 1, anon_sym_LBRACK, + ACTIONS(2472), 1, anon_sym_STAR, + ACTIONS(2476), 1, + anon_sym_default, + ACTIONS(2478), 1, + anon_sym_fn, + ACTIONS(2480), 1, + anon_sym_impl, + ACTIONS(2482), 1, + anon_sym_union, + ACTIONS(2484), 1, anon_sym_BANG, - anon_sym_DASH_GT, - anon_sym_LT, + ACTIONS(2486), 1, anon_sym_COLON_COLON, + ACTIONS(2488), 1, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(2490), 1, + anon_sym_dyn, + ACTIONS(2496), 1, sym_metavariable, - ACTIONS(2546), 40, + STATE(760), 1, + sym_scoped_type_identifier, + STATE(790), 1, + sym_generic_type, + STATE(946), 1, + sym__type, + STATE(1195), 1, + sym_for_lifetimes, + STATE(2216), 1, + sym_scoped_identifier, + STATE(2386), 1, + sym_function_modifiers, + STATE(2491), 1, + sym_bracketed_type, + STATE(2492), 1, + sym_generic_type_with_turbofish, + STATE(2513), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1526), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2494), 3, + sym_self, + sym_super, + sym_crate, + STATE(1040), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2474), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83265,50 +82452,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + [13102] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(856), 1, + anon_sym_LPAREN, + ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, + anon_sym_default, + ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, + anon_sym_COLON_COLON, + ACTIONS(872), 1, + anon_sym_AMP, + ACTIONS(878), 1, + sym_metavariable, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1331), 1, + sym_scoped_type_identifier, + STATE(1359), 1, + sym_generic_type, + STATE(2093), 1, + sym__type, + STATE(2157), 1, + sym_scoped_identifier, + STATE(2378), 1, + sym_bracketed_type, + STATE(2379), 1, + sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1526), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, anon_sym_async, - anon_sym_break, anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, anon_sym_unsafe, - anon_sym_while, - anon_sym_DASH, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - [14140] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1072), 15, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1074), 38, + STATE(1390), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(862), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83326,680 +82549,514 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_const, - anon_sym_default, + [13231] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, anon_sym_fn, + ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, + ACTIONS(680), 1, + anon_sym_BANG, + ACTIONS(684), 1, anon_sym_extern, - anon_sym_ref, - anon_sym__, + ACTIONS(696), 1, anon_sym_dyn, - sym_mutable_specifier, - anon_sym_DOT_DOT, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14202] = 9, - ACTIONS(2552), 1, - anon_sym_LPAREN, - ACTIONS(2556), 1, - anon_sym_BANG, - ACTIONS(2558), 1, - anon_sym_COLON_COLON, - ACTIONS(2560), 1, - anon_sym_LT2, - STATE(777), 1, - sym_parameters, - STATE(801), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2554), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2550), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14273] = 8, - ACTIONS(2552), 1, + ACTIONS(856), 1, anon_sym_LPAREN, - ACTIONS(2558), 1, - anon_sym_COLON_COLON, - ACTIONS(2560), 1, - anon_sym_LT2, - STATE(777), 1, - sym_parameters, - STATE(801), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2564), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2562), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(860), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14341] = 8, - ACTIONS(2552), 1, - anon_sym_LPAREN, - ACTIONS(2558), 1, + ACTIONS(864), 1, + anon_sym_default, + ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(2560), 1, - anon_sym_LT2, - STATE(777), 1, - sym_parameters, - STATE(801), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2568), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(872), 1, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2566), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14409] = 5, - ACTIONS(2574), 1, - anon_sym_BANG, - ACTIONS(2576), 1, - anon_sym_COLON_COLON, + ACTIONS(878), 1, + sym_metavariable, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1331), 1, + sym_scoped_type_identifier, + STATE(1359), 1, + sym_generic_type, + STATE(1766), 1, + sym__type, + STATE(2157), 1, + sym_scoped_identifier, + STATE(2378), 1, + sym_bracketed_type, + STATE(2379), 1, + sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2572), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2570), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14470] = 5, - ACTIONS(2582), 1, + STATE(1526), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(876), 3, + sym_self, + sym_super, + sym_crate, + STATE(1390), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(862), 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, + [13360] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, anon_sym_BANG, - ACTIONS(2584), 1, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(856), 1, + anon_sym_LPAREN, + ACTIONS(860), 1, + anon_sym_LBRACK, + ACTIONS(864), 1, + anon_sym_default, + ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, + ACTIONS(872), 1, + anon_sym_AMP, + ACTIONS(878), 1, + sym_metavariable, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1331), 1, + sym_scoped_type_identifier, + STATE(1359), 1, + sym_generic_type, + STATE(1595), 1, + sym__type, + STATE(2157), 1, + sym_scoped_identifier, + STATE(2378), 1, + sym_bracketed_type, + STATE(2379), 1, + sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + STATE(1526), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(876), 3, + sym_self, + sym_super, + sym_crate, + STATE(1390), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(862), 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, + [13489] = 32, + ACTIONS(77), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2578), 29, - anon_sym_SEMI, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2464), 1, + sym_identifier, + ACTIONS(2466), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(2468), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14531] = 7, - ACTIONS(2552), 1, - anon_sym_LPAREN, - ACTIONS(2560), 1, - anon_sym_LT2, - STATE(778), 1, - sym_parameters, - STATE(779), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2588), 17, - anon_sym_PLUS, + ACTIONS(2472), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2586), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14596] = 5, - ACTIONS(2594), 1, + ACTIONS(2476), 1, + anon_sym_default, + ACTIONS(2478), 1, + anon_sym_fn, + ACTIONS(2480), 1, + anon_sym_impl, + ACTIONS(2482), 1, + anon_sym_union, + ACTIONS(2484), 1, anon_sym_BANG, - ACTIONS(2596), 1, + ACTIONS(2486), 1, anon_sym_COLON_COLON, + ACTIONS(2488), 1, + anon_sym_AMP, + ACTIONS(2490), 1, + anon_sym_dyn, + ACTIONS(2496), 1, + sym_metavariable, + STATE(760), 1, + sym_scoped_type_identifier, + STATE(790), 1, + sym_generic_type, + STATE(932), 1, + sym__type, + STATE(1195), 1, + sym_for_lifetimes, + STATE(2216), 1, + sym_scoped_identifier, + STATE(2386), 1, + sym_function_modifiers, + STATE(2491), 1, + sym_bracketed_type, + STATE(2492), 1, + sym_generic_type_with_turbofish, + STATE(2513), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2592), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + STATE(1526), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2494), 3, + sym_self, + sym_super, + sym_crate, + STATE(1040), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2474), 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, + [13618] = 32, + ACTIONS(77), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2590), 29, - anon_sym_SEMI, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2464), 1, + sym_identifier, + ACTIONS(2466), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(2468), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14657] = 7, - ACTIONS(2552), 1, - anon_sym_LPAREN, - ACTIONS(2560), 1, - anon_sym_LT2, - STATE(778), 1, - sym_parameters, - STATE(779), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2600), 17, - anon_sym_PLUS, + ACTIONS(2472), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2598), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14722] = 7, - ACTIONS(2556), 1, + ACTIONS(2476), 1, + anon_sym_default, + ACTIONS(2478), 1, + anon_sym_fn, + ACTIONS(2480), 1, + anon_sym_impl, + ACTIONS(2482), 1, + anon_sym_union, + ACTIONS(2484), 1, anon_sym_BANG, - ACTIONS(2602), 1, - anon_sym_LBRACE, - ACTIONS(2604), 1, + ACTIONS(2486), 1, anon_sym_COLON_COLON, - STATE(1109), 1, - sym_field_initializer_list, + ACTIONS(2488), 1, + anon_sym_AMP, + ACTIONS(2490), 1, + anon_sym_dyn, + ACTIONS(2496), 1, + sym_metavariable, + STATE(760), 1, + sym_scoped_type_identifier, + STATE(790), 1, + sym_generic_type, + STATE(941), 1, + sym__type, + STATE(1195), 1, + sym_for_lifetimes, + STATE(2216), 1, + sym_scoped_identifier, + STATE(2386), 1, + sym_function_modifiers, + STATE(2491), 1, + sym_bracketed_type, + STATE(2492), 1, + sym_generic_type_with_turbofish, + STATE(2513), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(472), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + STATE(1526), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2494), 3, + sym_self, + sym_super, + sym_crate, + STATE(1040), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2474), 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, + [13747] = 32, + ACTIONS(77), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(470), 29, - anon_sym_SEMI, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(856), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(860), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [14787] = 5, - ACTIONS(2610), 1, - anon_sym_BANG, - ACTIONS(2612), 1, + ACTIONS(864), 1, + anon_sym_default, + ACTIONS(866), 1, + anon_sym_union, + ACTIONS(870), 1, anon_sym_COLON_COLON, + ACTIONS(872), 1, + anon_sym_AMP, + ACTIONS(878), 1, + sym_metavariable, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1331), 1, + sym_scoped_type_identifier, + STATE(1359), 1, + sym_generic_type, + STATE(2139), 1, + sym__type, + STATE(2157), 1, + sym_scoped_identifier, + STATE(2378), 1, + sym_bracketed_type, + STATE(2379), 1, + sym_generic_type_with_turbofish, + STATE(2471), 1, + sym_lifetime, + STATE(2472), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1526), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(876), 3, + sym_self, + sym_super, + sym_crate, + STATE(1390), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(862), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [13876] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2606), 29, - anon_sym_SEMI, + ACTIONS(2542), 17, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14848] = 7, - ACTIONS(2552), 1, - anon_sym_LPAREN, - ACTIONS(2560), 1, - anon_sym_LT2, - STATE(778), 1, - sym_parameters, - STATE(779), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2616), 17, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, + anon_sym_BANG, + anon_sym_DASH_GT, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_LT_EQ, - anon_sym_DOT, - ACTIONS(2614), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [14913] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1216), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1218), 38, + ACTIONS(2540), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84017,42 +83074,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_SQUOTE, anon_sym_async, + anon_sym_break, anon_sym_const, + anon_sym_continue, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, anon_sym_union, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_while, + anon_sym_DASH, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [14969] = 3, + [13942] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1954), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(2546), 17, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1956), 38, + ACTIONS(2544), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84070,260 +83137,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_SQUOTE, anon_sym_async, + anon_sym_break, anon_sym_const, + anon_sym_continue, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, anon_sym_union, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_while, + anon_sym_DASH, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [15025] = 4, - ACTIONS(2618), 1, - anon_sym_LBRACE, + [14008] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2576), 30, - anon_sym_SEMI, + ACTIONS(502), 18, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15083] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2610), 16, - anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, - anon_sym_EQ, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2612), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15139] = 5, - ACTIONS(2624), 1, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2548), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, anon_sym_SQUOTE, - STATE(1115), 1, - sym_loop_label, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14074] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2620), 30, - anon_sym_SEMI, + ACTIONS(842), 17, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15199] = 6, - ACTIONS(2632), 1, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2634), 1, + anon_sym_DASH_GT, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2630), 6, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(840), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_SQUOTE, anon_sym_async, + anon_sym_break, anon_sym_const, + anon_sym_continue, anon_sym_default, - anon_sym_fn, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, anon_sym_unsafe, - anon_sym_extern, - ACTIONS(2628), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, + anon_sym_while, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2626), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15261] = 3, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14140] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1196), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(1344), 15, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1198), 38, + ACTIONS(1346), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84341,37 +83324,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_SQUOTE, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, anon_sym_extern, + anon_sym_ref, + anon_sym__, + anon_sym_dyn, + sym_mutable_specifier, + anon_sym_DOT_DOT, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [15317] = 4, - ACTIONS(2636), 1, - anon_sym_LBRACE, + [14202] = 9, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(2556), 1, + anon_sym_BANG, + ACTIONS(2558), 1, + anon_sym_COLON_COLON, + ACTIONS(2560), 1, + anon_sym_LT2, + STATE(797), 1, + sym_type_arguments, + STATE(807), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 16, + ACTIONS(2554), 17, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84380,15 +83372,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2612), 30, + ACTIONS(2550), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84397,14 +83391,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -84414,124 +83406,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15375] = 3, + [14273] = 8, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(2558), 1, + anon_sym_COLON_COLON, + ACTIONS(2560), 1, + anon_sym_LT2, + STATE(797), 1, + sym_type_arguments, + STATE(807), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1966), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2564), 17, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, - anon_sym_COMMA, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1968), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15431] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1628), 9, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2562), 27, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - anon_sym_LT, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14341] = 8, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(2558), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1630), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15487] = 4, - ACTIONS(2638), 1, - anon_sym_LBRACE, + ACTIONS(2560), 1, + anon_sym_LT2, + STATE(797), 1, + sym_type_arguments, + STATE(807), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2594), 16, + ACTIONS(2568), 17, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84540,15 +83492,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2596), 30, + ACTIONS(2566), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84557,14 +83511,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -84574,18 +83526,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15545] = 4, - ACTIONS(2640), 1, - anon_sym_LBRACE, + [14409] = 5, + ACTIONS(2574), 1, + anon_sym_BANG, + ACTIONS(2576), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 16, + ACTIONS(2572), 17, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84594,15 +83546,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2584), 30, + ACTIONS(2570), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84611,14 +83566,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -84628,13 +83582,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15603] = 3, + [14470] = 5, + ACTIONS(2582), 1, + anon_sym_BANG, + ACTIONS(2584), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2644), 15, + ACTIONS(2580), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84645,12 +83602,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2642), 31, + ACTIONS(2578), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84662,15 +83621,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -84680,13 +83638,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15658] = 3, + [14531] = 7, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(2560), 1, + anon_sym_LT2, + STATE(799), 1, + sym_type_arguments, + STATE(803), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 15, + ACTIONS(2588), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84697,14 +83662,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2646), 31, + ACTIONS(2586), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84715,14 +83681,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -84732,15 +83696,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15713] = 4, - ACTIONS(2654), 1, - anon_sym_DASH_GT, + [14596] = 7, + ACTIONS(2556), 1, + anon_sym_BANG, + ACTIONS(2590), 1, + anon_sym_LBRACE, + ACTIONS(2592), 1, + anon_sym_COLON_COLON, + STATE(1121), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2652), 15, + ACTIONS(460), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84756,11 +83725,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2650), 30, + ACTIONS(458), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84787,13 +83755,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15770] = 4, - ACTIONS(2660), 1, - anon_sym_DASH_GT, + [14661] = 7, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(2560), 1, + anon_sym_LT2, + STATE(799), 1, + sym_type_arguments, + STATE(803), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2658), 15, + ACTIONS(2596), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84804,14 +83778,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2656), 30, + ACTIONS(2594), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84828,7 +83803,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -84838,13 +83812,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15827] = 3, + [14726] = 7, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(2560), 1, + anon_sym_LT2, + STATE(799), 1, + sym_type_arguments, + STATE(803), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2664), 15, + ACTIONS(2600), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84855,14 +83836,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2662), 31, + ACTIONS(2598), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84873,14 +83855,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -84890,17 +83870,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15882] = 5, - ACTIONS(2556), 1, + [14791] = 5, + ACTIONS(2606), 1, anon_sym_BANG, - ACTIONS(2666), 1, + ACTIONS(2608), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(472), 15, + ACTIONS(2604), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84911,15 +83890,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(470), 29, + ACTIONS(2602), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84929,12 +83911,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -84944,13 +83926,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15941] = 3, + [14852] = 5, + ACTIONS(2614), 1, + anon_sym_BANG, + ACTIONS(2616), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2670), 15, + ACTIONS(2612), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84961,12 +83946,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2668), 31, + ACTIONS(2610), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84979,14 +83966,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -84996,15 +83982,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15996] = 3, + [14913] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1924), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1926), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14969] = 4, + ACTIONS(2618), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(788), 15, + ACTIONS(2582), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85018,20 +84059,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(790), 31, + ACTIONS(2584), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85050,13 +84090,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16051] = 3, + [15027] = 6, + ACTIONS(2626), 1, + anon_sym_BANG, + ACTIONS(2628), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2674), 15, + ACTIONS(2624), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(2622), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85070,20 +84122,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2672), 31, + ACTIONS(2620), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85102,13 +84146,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16106] = 3, + [15089] = 4, + ACTIONS(2630), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2678), 15, + ACTIONS(2614), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85122,11 +84169,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2676), 31, + ACTIONS(2616), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85134,8 +84180,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85154,17 +84200,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16161] = 5, - ACTIONS(2634), 1, + [15147] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1936), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(2680), 1, - anon_sym_BANG, + sym_metavariable, + ACTIONS(1938), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15203] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1352), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1354), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15259] = 4, + ACTIONS(2632), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 15, + ACTIONS(2606), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85178,7 +84329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2626), 29, + ACTIONS(2608), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85190,6 +84341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85208,14 +84360,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16220] = 4, + [15317] = 5, + ACTIONS(2638), 1, + anon_sym_SQUOTE, + STATE(1073), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2684), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2686), 15, + ACTIONS(2636), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85231,10 +84384,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2682), 29, + ACTIONS(2634), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85261,15 +84415,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16277] = 4, - ACTIONS(2688), 1, - anon_sym_COLON_COLON, + [15377] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(472), 15, + ACTIONS(2582), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85283,7 +84436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(470), 30, + ACTIONS(2584), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85296,6 +84449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85314,69 +84468,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16334] = 5, - ACTIONS(2692), 1, - anon_sym_LPAREN, - STATE(1101), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2694), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2690), 29, - anon_sym_SEMI, - anon_sym_RPAREN, + [15433] = 4, + ACTIONS(2640), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16393] = 4, - ACTIONS(2696), 1, - anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 15, + ACTIONS(2574), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -85390,11 +84491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2598), 30, + ACTIONS(2576), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85403,6 +84503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85421,119 +84522,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16450] = 4, - ACTIONS(2702), 1, - anon_sym_DASH_GT, + [15491] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2700), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2698), 30, + ACTIONS(1096), 9, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16507] = 4, - ACTIONS(2696), 1, + anon_sym_LT, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1098), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15547] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2586), 30, + ACTIONS(1376), 9, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, + anon_sym_POUND, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16564] = 4, - ACTIONS(2696), 1, + anon_sym_LT, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1378), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15603] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 15, + ACTIONS(2644), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85549,7 +84648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2614), 30, + ACTIONS(2642), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85561,6 +84660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -85580,11 +84680,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16621] = 3, + [15658] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2706), 15, + ACTIONS(2648), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85600,7 +84700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2704), 31, + ACTIONS(2646), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85612,8 +84712,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85632,14 +84732,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16676] = 4, + [15713] = 5, + ACTIONS(2652), 1, + anon_sym_LPAREN, + STATE(1081), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2686), 15, + ACTIONS(2654), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85655,10 +84756,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2682), 29, + ACTIONS(2650), 29, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85685,15 +84786,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16733] = 5, - ACTIONS(2710), 1, - anon_sym_else, - STATE(827), 1, - sym_else_clause, + [15772] = 4, + ACTIONS(2656), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(402), 15, + ACTIONS(460), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85709,7 +84808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(400), 29, + ACTIONS(458), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85721,6 +84820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85739,11 +84839,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16792] = 3, + [15829] = 4, + ACTIONS(2662), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2714), 15, + ACTIONS(2660), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85759,7 +84861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2712), 31, + ACTIONS(2658), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85772,7 +84874,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85791,11 +84892,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16847] = 3, + [15886] = 5, + ACTIONS(2628), 1, + anon_sym_COLON_COLON, + ACTIONS(2664), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2718), 15, + ACTIONS(2622), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85811,11 +84916,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2716), 31, + ACTIONS(2620), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85823,7 +84927,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -85843,13 +84946,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16902] = 4, - ACTIONS(2724), 1, + [15945] = 4, + ACTIONS(2670), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2722), 15, + ACTIONS(2668), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85865,7 +84968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2720), 30, + ACTIONS(2666), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85896,13 +84999,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16959] = 4, - ACTIONS(2726), 1, - anon_sym_COLON_COLON, + [16002] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 15, + ACTIONS(2674), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85918,7 +85019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2586), 30, + ACTIONS(2672), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85931,6 +85032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85949,11 +85051,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17016] = 3, + [16057] = 4, + ACTIONS(2680), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2730), 15, + ACTIONS(2678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85969,7 +85073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2728), 31, + ACTIONS(2676), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85981,7 +85085,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -86001,11 +85104,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17071] = 3, + [16114] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2734), 15, + ACTIONS(814), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86021,7 +85124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2732), 31, + ACTIONS(816), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86030,11 +85133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -86053,13 +85156,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17126] = 4, - ACTIONS(2740), 1, - anon_sym_DASH_GT, + [16169] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2738), 15, + ACTIONS(2684), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86075,7 +85176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2736), 30, + ACTIONS(2682), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86088,6 +85189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -86106,11 +85208,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17183] = 3, + [16224] = 4, + ACTIONS(2686), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 17, + ACTIONS(2588), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86121,14 +85225,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2606), 29, + ACTIONS(2586), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86142,12 +85244,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -86157,14 +85259,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17238] = 4, - ACTIONS(2746), 1, - anon_sym_DASH_GT, + [16281] = 4, + ACTIONS(2688), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2744), 15, + ACTIONS(2600), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86180,7 +85283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2742), 30, + ACTIONS(2598), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86211,13 +85314,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17295] = 4, - ACTIONS(2748), 1, + [16338] = 4, + ACTIONS(2690), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 15, + ACTIONS(2600), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86233,7 +85336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2586), 30, + ACTIONS(2598), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86264,11 +85367,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17352] = 3, + [16395] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2752), 15, + ACTIONS(2580), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86279,12 +85382,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2750), 31, + ACTIONS(2578), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86296,15 +85401,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -86314,15 +85418,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17407] = 4, - ACTIONS(2758), 1, - anon_sym_DASH_GT, + [16450] = 4, + ACTIONS(2686), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2756), 15, + ACTIONS(2600), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86338,7 +85441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2754), 30, + ACTIONS(2598), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86369,11 +85472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17464] = 3, + [16507] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2762), 15, + ACTIONS(2694), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86389,7 +85492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2760), 30, + ACTIONS(2692), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86401,6 +85504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -86420,62 +85524,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17518] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1108), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + [16562] = 5, + ACTIONS(2556), 1, + anon_sym_BANG, + ACTIONS(2696), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1110), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17572] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2766), 15, + ACTIONS(460), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86491,11 +85548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2764), 30, + ACTIONS(458), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -86522,11 +85578,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17626] = 3, + [16621] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2770), 15, + ACTIONS(2700), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2702), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86542,11 +85601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2768), 30, + ACTIONS(2698), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -86573,11 +85631,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17680] = 3, + [16678] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2774), 15, + ACTIONS(2706), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86593,7 +85651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2772), 30, + ACTIONS(2704), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86606,6 +85664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -86624,62 +85683,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17734] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1942), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1944), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17788] = 3, + [16733] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(426), 15, + ACTIONS(2710), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86695,7 +85703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(424), 30, + ACTIONS(2708), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86707,6 +85715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -86726,164 +85735,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17842] = 3, + [16788] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1946), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1948), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17896] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1930), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1932), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17950] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1882), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + ACTIONS(2712), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1884), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18004] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(412), 15, + ACTIONS(2702), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86899,11 +85758,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(410), 30, + ACTIONS(2698), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -86930,11 +85788,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18058] = 3, + [16845] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(454), 15, + ACTIONS(2716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86950,7 +85808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(452), 30, + ACTIONS(2714), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86963,6 +85821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -86981,62 +85840,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18112] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1798), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1800), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18166] = 3, + [16900] = 4, + ACTIONS(2722), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(434), 15, + ACTIONS(2720), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87052,7 +85862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(432), 30, + ACTIONS(2718), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87083,62 +85893,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18220] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1696), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1698), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18274] = 3, + [16957] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(416), 15, + ACTIONS(2726), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87154,7 +85913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(414), 30, + ACTIONS(2724), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87167,6 +85926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -87185,164 +85945,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18328] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1692), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1694), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18382] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1580), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1582), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18436] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1572), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1574), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18490] = 3, + [17012] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(458), 15, + ACTIONS(2730), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87358,7 +85965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(456), 30, + ACTIONS(2728), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87371,6 +85978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -87389,11 +85997,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18544] = 3, + [17067] = 5, + ACTIONS(2732), 1, + anon_sym_else, + STATE(952), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2778), 15, + ACTIONS(402), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87409,7 +86021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2776), 30, + ACTIONS(400), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87421,7 +86033,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -87440,11 +86051,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18598] = 3, + [17126] = 4, + ACTIONS(2738), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2782), 15, + ACTIONS(2736), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87460,7 +86073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2780), 30, + ACTIONS(2734), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87491,11 +86104,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18652] = 3, + [17183] = 4, + ACTIONS(2744), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2786), 15, + ACTIONS(2742), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87511,7 +86126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2784), 30, + ACTIONS(2740), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87542,11 +86157,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18706] = 3, + [17240] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2790), 15, + ACTIONS(2748), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87562,7 +86177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2788), 30, + ACTIONS(2746), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87575,6 +86190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -87593,11 +86209,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18760] = 3, + [17295] = 4, + ACTIONS(2686), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2794), 15, + ACTIONS(2596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87613,7 +86231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2792), 30, + ACTIONS(2594), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87644,11 +86262,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18814] = 3, + [17352] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2798), 15, + ACTIONS(2752), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87664,7 +86282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2796), 30, + ACTIONS(2750), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87676,6 +86294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -87695,11 +86314,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18868] = 3, + [17407] = 4, + ACTIONS(2758), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2802), 15, + ACTIONS(2756), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87715,7 +86336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2800), 30, + ACTIONS(2754), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87746,11 +86367,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18922] = 3, + [17464] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1286), 7, + ACTIONS(1232), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87758,7 +86379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1288), 38, + ACTIONS(1234), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87797,11 +86418,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18976] = 3, + [17518] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1064), 7, + ACTIONS(1296), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87809,7 +86430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1066), 38, + ACTIONS(1298), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87848,11 +86469,215 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19030] = 3, + [17572] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1558), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1560), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17626] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1618), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1620), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17680] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1630), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1632), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17734] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2762), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2760), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17788] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1282), 7, + ACTIONS(1648), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87860,7 +86685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1284), 38, + ACTIONS(1650), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87899,11 +86724,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19084] = 3, + [17842] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2806), 15, + ACTIONS(2431), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87919,7 +86744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2804), 30, + ACTIONS(2433), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87950,11 +86775,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19138] = 3, + [17896] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2806), 15, + ACTIONS(2766), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87970,7 +86795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2804), 30, + ACTIONS(2764), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88001,11 +86826,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19192] = 3, + [17950] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1248), 7, + ACTIONS(2770), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2768), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18004] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(432), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(430), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18058] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1684), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88013,7 +86940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1250), 38, + ACTIONS(1686), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88052,11 +86979,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19246] = 3, + [18112] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1244), 7, + ACTIONS(1688), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88064,7 +86991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1246), 38, + ACTIONS(1690), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88103,11 +87030,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19300] = 3, + [18166] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1240), 7, + ACTIONS(1692), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88115,7 +87042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1242), 38, + ACTIONS(1694), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88154,62 +87081,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19354] = 3, + [18220] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(492), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(490), 30, + ACTIONS(1696), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [19408] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1698), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18274] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1208), 7, + ACTIONS(1700), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88217,7 +87144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1210), 38, + ACTIONS(1702), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88256,11 +87183,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19462] = 3, + [18328] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1204), 7, + ACTIONS(1704), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88268,7 +87195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1206), 38, + ACTIONS(1706), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88307,11 +87234,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19516] = 3, + [18382] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1188), 7, + ACTIONS(1708), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88319,7 +87246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1190), 38, + ACTIONS(1710), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88358,11 +87285,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19570] = 3, + [18436] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1184), 7, + ACTIONS(1712), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88370,7 +87297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1186), 38, + ACTIONS(1714), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88409,11 +87336,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19624] = 3, + [18490] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1148), 7, + ACTIONS(1724), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88421,7 +87348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1150), 38, + ACTIONS(1726), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88460,11 +87387,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19678] = 3, + [18544] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1144), 7, + ACTIONS(1732), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88472,7 +87399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1146), 38, + ACTIONS(1734), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88511,11 +87438,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19732] = 3, + [18598] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1136), 7, + ACTIONS(1736), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88523,7 +87450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1138), 38, + ACTIONS(1738), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88562,11 +87489,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19786] = 3, + [18652] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1116), 7, + ACTIONS(1740), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88574,7 +87501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1118), 38, + ACTIONS(1742), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88613,11 +87540,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19840] = 3, + [18706] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1112), 7, + ACTIONS(1756), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88625,7 +87552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1114), 38, + ACTIONS(1758), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88664,11 +87591,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19894] = 3, + [18760] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1096), 7, + ACTIONS(1772), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88676,7 +87603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1098), 38, + ACTIONS(1774), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88715,11 +87642,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19948] = 3, + [18814] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1092), 7, + ACTIONS(1780), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88727,7 +87654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1094), 38, + ACTIONS(1782), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88766,11 +87693,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20002] = 3, + [18868] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1084), 7, + ACTIONS(1784), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88778,7 +87705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1086), 38, + ACTIONS(1786), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88817,11 +87744,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20056] = 3, + [18922] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1080), 7, + ACTIONS(1792), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88829,7 +87756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1082), 38, + ACTIONS(1794), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88868,11 +87795,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20110] = 3, + [18976] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1076), 7, + ACTIONS(1804), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88880,7 +87807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1078), 38, + ACTIONS(1806), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88919,11 +87846,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20164] = 3, + [19030] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1068), 7, + ACTIONS(1812), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88931,7 +87858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1070), 38, + ACTIONS(1814), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88970,11 +87897,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20218] = 3, + [19084] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1088), 7, + ACTIONS(2774), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2772), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19138] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1816), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88982,7 +87960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1090), 38, + ACTIONS(1818), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89021,11 +87999,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20272] = 3, + [19192] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1100), 7, + ACTIONS(1820), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89033,7 +88011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1102), 38, + ACTIONS(1822), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89072,11 +88050,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20326] = 3, + [19246] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1124), 7, + ACTIONS(1824), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89084,7 +88062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1126), 38, + ACTIONS(1826), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89123,11 +88101,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20380] = 3, + [19300] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1140), 7, + ACTIONS(2778), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2776), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19354] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2782), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2780), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19408] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1840), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89135,7 +88215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1142), 38, + ACTIONS(1842), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89174,11 +88254,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20434] = 3, + [19462] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1152), 7, + ACTIONS(1056), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89186,7 +88266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1154), 38, + ACTIONS(1058), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89225,11 +88305,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20488] = 3, + [19516] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1164), 7, + ACTIONS(1852), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89237,7 +88317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1166), 38, + ACTIONS(1854), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89276,11 +88356,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20542] = 3, + [19570] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1180), 7, + ACTIONS(1856), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89288,7 +88368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1182), 38, + ACTIONS(1858), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89327,11 +88407,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20596] = 3, + [19624] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1212), 7, + ACTIONS(1880), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89339,7 +88419,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1214), 38, + ACTIONS(1882), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19678] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1888), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1890), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89378,11 +88509,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20650] = 3, + [19732] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1904), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1906), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19786] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1952), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1954), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19840] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(442), 15, + ACTIONS(494), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89398,7 +88631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(440), 30, + ACTIONS(492), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89429,11 +88662,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20704] = 3, + [19894] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1220), 7, + ACTIONS(1982), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89441,7 +88674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1222), 38, + ACTIONS(1984), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89480,11 +88713,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20758] = 3, + [19948] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1228), 7, + ACTIONS(1986), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89492,7 +88725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1230), 38, + ACTIONS(1988), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89531,11 +88764,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20812] = 3, + [20002] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1278), 7, + ACTIONS(1994), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89543,7 +88776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1280), 38, + ACTIONS(1996), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89582,11 +88815,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20866] = 3, + [20056] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(422), 15, + ACTIONS(2786), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89602,7 +88835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(420), 30, + ACTIONS(2784), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89633,11 +88866,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20920] = 3, + [20110] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1294), 7, + ACTIONS(1998), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89645,7 +88878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1296), 38, + ACTIONS(2000), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89684,11 +88917,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20974] = 3, + [20164] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1342), 7, + ACTIONS(1728), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89696,7 +88929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1344), 38, + ACTIONS(1730), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89735,62 +88968,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21028] = 3, + [20218] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(496), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(494), 30, + ACTIONS(1978), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [21082] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1980), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20272] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1438), 7, + ACTIONS(1962), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89798,7 +89031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1440), 38, + ACTIONS(1964), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89837,11 +89070,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21136] = 3, + [20326] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1450), 7, + ACTIONS(1958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89849,7 +89082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1452), 38, + ACTIONS(1960), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89888,11 +89121,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21190] = 3, + [20380] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2790), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2788), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20434] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1458), 7, + ACTIONS(1940), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89900,7 +89184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1460), 38, + ACTIONS(1942), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89939,11 +89223,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21244] = 3, + [20488] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1462), 7, + ACTIONS(1932), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89951,7 +89235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1464), 38, + ACTIONS(1934), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89990,11 +89274,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21298] = 3, + [20542] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(488), 15, + ACTIONS(2794), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90010,7 +89294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(486), 30, + ACTIONS(2792), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90041,11 +89325,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21352] = 3, + [20596] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(464), 15, + ACTIONS(2798), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90061,7 +89345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(462), 30, + ACTIONS(2796), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90092,11 +89376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21406] = 3, + [20650] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2810), 15, + ACTIONS(2802), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90112,7 +89396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2808), 30, + ACTIONS(2800), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90143,11 +89427,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21460] = 3, + [20704] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2814), 15, + ACTIONS(2806), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90163,7 +89447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2812), 30, + ACTIONS(2804), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90194,11 +89478,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21514] = 3, + [20758] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2818), 15, + ACTIONS(448), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90214,7 +89498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2816), 30, + ACTIONS(446), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90245,113 +89529,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21568] = 3, + [20812] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1786), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(464), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1788), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21622] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1790), 7, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(462), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1792), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21676] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20866] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2822), 15, + ACTIONS(2810), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90367,7 +89600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2820), 30, + ACTIONS(2808), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90398,62 +89631,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21730] = 3, + [20920] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1818), 7, + ACTIONS(2814), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2812), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1820), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21784] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20974] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1826), 7, + ACTIONS(1892), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90461,7 +89694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1828), 38, + ACTIONS(1894), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90500,11 +89733,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21838] = 3, + [21028] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1886), 7, + ACTIONS(1884), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90512,7 +89745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1888), 38, + ACTIONS(1886), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90551,11 +89784,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21892] = 3, + [21082] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1894), 7, + ACTIONS(1868), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90563,7 +89796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1896), 38, + ACTIONS(1870), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90602,62 +89835,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21946] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2826), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2824), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22000] = 3, + [21136] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1994), 7, + ACTIONS(1864), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90665,7 +89847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1996), 38, + ACTIONS(1866), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90704,11 +89886,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22054] = 3, + [21190] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1986), 7, + ACTIONS(1760), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90716,7 +89898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1988), 38, + ACTIONS(1762), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90755,11 +89937,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22108] = 3, + [21244] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1060), 7, + ACTIONS(1744), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90767,7 +89949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1062), 38, + ACTIONS(1746), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90806,11 +89988,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22162] = 3, + [21298] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(480), 15, + ACTIONS(616), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90826,7 +90008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(478), 30, + ACTIONS(614), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90857,164 +90039,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22216] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1990), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1992), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22270] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1160), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1162), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22324] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1922), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1924), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22378] = 3, + [21352] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1918), 7, + ACTIONS(1672), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91022,7 +90051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1920), 38, + ACTIONS(1674), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91061,11 +90090,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22432] = 3, + [21406] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1910), 7, + ACTIONS(1582), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91073,7 +90102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1912), 38, + ACTIONS(1584), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91112,11 +90141,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22486] = 3, + [21460] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1878), 7, + ACTIONS(1574), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91124,7 +90153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1880), 38, + ACTIONS(1576), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91163,62 +90192,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22540] = 3, + [21514] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1874), 7, + ACTIONS(486), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(484), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1876), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22594] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [21568] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1870), 7, + ACTIONS(1492), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91226,7 +90255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1872), 38, + ACTIONS(1494), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91265,11 +90294,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22648] = 3, + [21622] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1862), 7, + ACTIONS(1416), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91277,7 +90306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1864), 38, + ACTIONS(1418), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91316,11 +90345,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22702] = 3, + [21676] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1850), 7, + ACTIONS(1408), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91328,7 +90357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1852), 38, + ACTIONS(1410), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91367,11 +90396,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22756] = 3, + [21730] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1846), 7, + ACTIONS(1380), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91379,7 +90408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1848), 38, + ACTIONS(1382), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91418,11 +90447,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22810] = 3, + [21784] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1830), 7, + ACTIONS(1372), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91430,7 +90459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1832), 38, + ACTIONS(1374), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91469,11 +90498,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22864] = 3, + [21838] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1822), 7, + ACTIONS(1368), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91481,7 +90510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1824), 38, + ACTIONS(1370), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91520,11 +90549,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22918] = 3, + [21892] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1810), 7, + ACTIONS(1364), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91532,7 +90561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1812), 38, + ACTIONS(1366), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91571,11 +90600,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22972] = 3, + [21946] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2830), 15, + ACTIONS(2702), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -91591,7 +90620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2828), 30, + ACTIONS(2698), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91622,164 +90651,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23026] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1806), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1808), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23080] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1778), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1780), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23134] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1774), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1776), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23188] = 3, + [22000] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1766), 7, + ACTIONS(1356), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91787,7 +90663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1768), 38, + ACTIONS(1358), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91826,11 +90702,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23242] = 3, + [22054] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1720), 7, + ACTIONS(1348), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91838,7 +90714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1722), 38, + ACTIONS(1350), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91877,11 +90753,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23296] = 3, + [22108] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1684), 7, + ACTIONS(1634), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91889,7 +90765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1686), 38, + ACTIONS(1636), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91928,11 +90804,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23350] = 3, + [22162] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1672), 7, + ACTIONS(1614), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91940,7 +90816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1674), 38, + ACTIONS(1616), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91979,11 +90855,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23404] = 3, + [22216] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(1340), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91991,7 +90867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1666), 38, + ACTIONS(1342), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92030,11 +90906,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23458] = 3, + [22270] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1660), 7, + ACTIONS(1328), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92042,7 +90918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1662), 38, + ACTIONS(1330), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92081,113 +90957,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23512] = 3, + [22324] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1644), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2818), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1646), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23566] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1636), 7, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2816), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1638), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [23620] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [22378] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1632), 7, + ACTIONS(1316), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92195,7 +91020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1634), 38, + ACTIONS(1318), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92234,11 +91059,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23674] = 3, + [22432] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1620), 7, + ACTIONS(1288), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92246,7 +91071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1622), 38, + ACTIONS(1290), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92285,11 +91110,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23728] = 3, + [22486] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1592), 7, + ACTIONS(1280), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92297,7 +91122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1594), 38, + ACTIONS(1282), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92336,11 +91161,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23782] = 3, + [22540] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1584), 7, + ACTIONS(1276), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92348,7 +91173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1586), 38, + ACTIONS(1278), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92387,11 +91212,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23836] = 3, + [22594] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1564), 7, + ACTIONS(1260), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92399,7 +91224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1566), 38, + ACTIONS(1262), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92438,11 +91263,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23890] = 3, + [22648] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1522), 7, + ACTIONS(1244), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92450,7 +91275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1524), 38, + ACTIONS(1246), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92489,11 +91314,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23944] = 3, + [22702] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2834), 15, + ACTIONS(2822), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92509,7 +91334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2832), 30, + ACTIONS(2820), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92540,11 +91365,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23998] = 3, + [22756] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1600), 7, + ACTIONS(1748), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92552,7 +91377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1602), 38, + ACTIONS(1750), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92591,62 +91416,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24052] = 3, + [22810] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2838), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2836), 30, + ACTIONS(1752), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24106] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1754), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22864] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1430), 7, + ACTIONS(1164), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92654,7 +91479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1432), 38, + ACTIONS(1166), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92693,11 +91518,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24160] = 3, + [22918] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1398), 7, + ACTIONS(1160), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92705,7 +91530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1400), 38, + ACTIONS(1162), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92744,11 +91569,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24214] = 3, + [22972] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1374), 7, + ACTIONS(1156), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92756,7 +91581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1376), 38, + ACTIONS(1158), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92795,62 +91620,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24268] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(612), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(610), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24322] = 3, + [23026] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1128), 7, + ACTIONS(1152), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92858,7 +91632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1130), 38, + ACTIONS(1154), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92897,11 +91671,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24376] = 3, + [23080] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1132), 7, + ACTIONS(1100), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92909,7 +91683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1134), 38, + ACTIONS(1102), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92948,11 +91722,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24430] = 3, + [23134] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1176), 7, + ACTIONS(1512), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92960,7 +91734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1178), 38, + ACTIONS(1514), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92999,11 +91773,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24484] = 3, + [23188] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1056), 7, + ACTIONS(1768), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93011,7 +91785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1058), 38, + ACTIONS(1770), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93050,164 +91824,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24538] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2842), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2840), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24592] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2846), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2844), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24646] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2686), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2682), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24700] = 3, + [23242] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 15, + ACTIONS(478), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93223,7 +91844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2586), 30, + ACTIONS(476), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93254,11 +91875,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24754] = 3, + [23296] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1192), 7, + ACTIONS(1088), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93266,7 +91887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1194), 38, + ACTIONS(1090), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93305,215 +91926,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24808] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(602), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(600), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24862] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(608), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(606), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24916] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(476), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(474), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24970] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2850), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2848), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25024] = 3, + [23350] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1232), 7, + ACTIONS(1504), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93521,7 +91938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1234), 38, + ACTIONS(1506), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93560,62 +91977,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25078] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2854), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2852), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25132] = 3, + [23404] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1172), 7, + ACTIONS(600), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93623,7 +91989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1174), 38, + ACTIONS(602), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93662,11 +92028,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25186] = 3, + [23458] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1120), 7, + ACTIONS(1776), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93674,7 +92040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1122), 38, + ACTIONS(1778), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93713,11 +92079,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25240] = 3, + [23512] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1338), 7, + ACTIONS(1808), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93725,7 +92091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1340), 38, + ACTIONS(1810), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93764,11 +92130,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25294] = 3, + [23566] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1224), 7, + ACTIONS(1432), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93776,7 +92142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1226), 38, + ACTIONS(1434), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93815,11 +92181,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25348] = 3, + [23620] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2858), 15, + ACTIONS(2826), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93835,7 +92201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2856), 30, + ACTIONS(2824), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93866,62 +92232,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25402] = 3, + [23674] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2862), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2860), 30, + ACTIONS(1460), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25456] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1462), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23728] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2866), 15, + ACTIONS(2830), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93937,7 +92303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2864), 30, + ACTIONS(2828), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93968,62 +92334,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25510] = 3, + [23782] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2870), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2868), 30, + ACTIONS(1828), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25564] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1830), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23836] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1236), 7, + ACTIONS(1080), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94031,7 +92397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1238), 38, + ACTIONS(1082), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94070,11 +92436,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25618] = 3, + [23890] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1290), 7, + ACTIONS(1638), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94082,7 +92448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1292), 38, + ACTIONS(1640), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94121,11 +92487,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25672] = 3, + [23944] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1378), 7, + ACTIONS(1076), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94133,7 +92499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1380), 38, + ACTIONS(1078), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94172,11 +92538,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25726] = 3, + [23998] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1274), 7, + ACTIONS(1456), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94184,7 +92550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1276), 38, + ACTIONS(1458), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94223,11 +92589,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25780] = 3, + [24052] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1200), 7, + ACTIONS(596), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94235,7 +92601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1202), 38, + ACTIONS(598), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94274,11 +92640,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25834] = 3, + [24106] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2834), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2832), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24160] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2874), 15, + ACTIONS(2834), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94294,7 +92711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2872), 30, + ACTIONS(2832), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94325,11 +92742,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25888] = 3, + [24214] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1716), 7, + ACTIONS(1072), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94337,7 +92754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1718), 38, + ACTIONS(1074), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94376,11 +92793,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25942] = 3, + [24268] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1640), 7, + ACTIONS(1068), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94388,7 +92805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1642), 38, + ACTIONS(1070), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94427,11 +92844,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25996] = 3, + [24322] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(438), 15, + ACTIONS(2838), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94447,7 +92864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(436), 30, + ACTIONS(2836), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94478,11 +92895,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26050] = 3, + [24376] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1858), 7, + ACTIONS(1452), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94490,7 +92907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1860), 38, + ACTIONS(1454), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94529,11 +92946,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26104] = 3, + [24430] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1624), 7, + ACTIONS(1832), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94541,7 +92958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1626), 38, + ACTIONS(1834), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94580,11 +92997,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26158] = 3, + [24484] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1298), 7, + ACTIONS(1836), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94592,7 +93009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1300), 38, + ACTIONS(1838), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94631,11 +93048,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26212] = 3, + [24538] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1306), 7, + ACTIONS(1448), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94643,7 +93060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1308), 38, + ACTIONS(1450), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94682,11 +93099,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26266] = 3, + [24592] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1310), 7, + ACTIONS(1896), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94694,7 +93111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1312), 38, + ACTIONS(1898), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94733,11 +93150,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26320] = 3, + [24646] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2842), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2840), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24700] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2846), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2844), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24754] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1314), 7, + ACTIONS(1908), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94745,7 +93264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1316), 38, + ACTIONS(1910), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94784,11 +93303,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26374] = 3, + [24808] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1326), 7, + ACTIONS(1912), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94796,7 +93315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1328), 38, + ACTIONS(1914), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94835,11 +93354,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26428] = 3, + [24862] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1334), 7, + ACTIONS(1444), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94847,7 +93366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1336), 38, + ACTIONS(1446), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94886,11 +93405,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26482] = 3, + [24916] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2850), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2848), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24970] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1346), 7, + ACTIONS(1440), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94898,7 +93468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1348), 38, + ACTIONS(1442), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94937,11 +93507,317 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26536] = 3, + [25024] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2854), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2852), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25078] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2858), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2856), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25132] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2862), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2860), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25186] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2866), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2864), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25240] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(482), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(480), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25294] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2870), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2868), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25348] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1354), 7, + ACTIONS(1436), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94949,7 +93825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1356), 38, + ACTIONS(1438), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94988,11 +93864,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26590] = 3, + [25402] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1362), 7, + ACTIONS(1060), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95000,7 +93876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1364), 38, + ACTIONS(1062), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95039,11 +93915,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26644] = 3, + [25456] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1366), 7, + ACTIONS(1392), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95051,7 +93927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1368), 38, + ACTIONS(1394), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95090,11 +93966,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26698] = 3, + [25510] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1370), 7, + ACTIONS(1488), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95102,7 +93978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1372), 38, + ACTIONS(1490), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95141,11 +94017,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26752] = 3, + [25564] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1382), 7, + ACTIONS(1428), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95153,7 +94029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1384), 38, + ACTIONS(1430), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95192,11 +94068,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26806] = 3, + [25618] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1386), 7, + ACTIONS(1420), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95204,7 +94080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1388), 38, + ACTIONS(1422), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95243,11 +94119,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26860] = 3, + [25672] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1390), 7, + ACTIONS(1412), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95255,7 +94131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1392), 38, + ACTIONS(1414), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95294,11 +94170,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26914] = 3, + [25726] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(610), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(608), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25780] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1402), 7, + ACTIONS(1388), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95306,7 +94233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1404), 38, + ACTIONS(1390), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95345,11 +94272,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26968] = 3, + [25834] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1406), 7, + ACTIONS(1656), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95357,7 +94284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1408), 38, + ACTIONS(1658), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95396,11 +94323,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27022] = 3, + [25888] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1410), 7, + ACTIONS(1660), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95408,7 +94335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1412), 38, + ACTIONS(1662), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95447,11 +94374,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27076] = 3, + [25942] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1608), 7, + ACTIONS(1788), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95459,7 +94386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1610), 38, + ACTIONS(1790), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95498,62 +94425,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27130] = 3, + [25996] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1588), 7, + ACTIONS(440), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(438), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26050] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(412), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1590), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27184] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(410), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26104] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1442), 7, + ACTIONS(1872), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95561,7 +94539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1444), 38, + ACTIONS(1874), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95600,11 +94578,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27238] = 3, + [26158] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1466), 7, + ACTIONS(1900), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95612,7 +94590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1468), 38, + ACTIONS(1902), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95651,11 +94629,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27292] = 3, + [26212] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1502), 7, + ACTIONS(1948), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95663,7 +94641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1504), 38, + ACTIONS(1950), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95702,11 +94680,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27346] = 3, + [26266] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1506), 7, + ACTIONS(1944), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95714,7 +94692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1508), 38, + ACTIONS(1946), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95753,62 +94731,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27400] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2878), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2876), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27454] = 3, + [26320] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1510), 7, + ACTIONS(1860), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95816,7 +94743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1512), 38, + ACTIONS(1862), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95855,11 +94782,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27508] = 3, + [26374] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2431), 15, + ACTIONS(598), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95875,7 +94802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2433), 30, + ACTIONS(596), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95906,62 +94833,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27562] = 3, + [26428] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1518), 7, + ACTIONS(474), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(472), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1520), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27616] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26482] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1538), 7, + ACTIONS(1716), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95969,7 +94896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1540), 38, + ACTIONS(1718), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96008,11 +94935,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27670] = 3, + [26536] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1556), 7, + ACTIONS(1642), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96020,7 +94947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1558), 38, + ACTIONS(1644), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96059,11 +94986,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27724] = 3, + [26590] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1560), 7, + ACTIONS(1626), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96071,7 +94998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1562), 38, + ACTIONS(1628), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96110,11 +95037,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27778] = 3, + [26644] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1568), 7, + ACTIONS(1610), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96122,7 +95049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1570), 38, + ACTIONS(1612), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96161,62 +95088,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27832] = 3, + [26698] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1958), 7, + ACTIONS(2874), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2872), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1960), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27886] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26752] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1616), 7, + ACTIONS(1590), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96224,7 +95151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1618), 38, + ACTIONS(1592), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96263,11 +95190,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27940] = 3, + [26806] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1708), 7, + ACTIONS(1308), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96275,7 +95202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1710), 38, + ACTIONS(1310), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96314,11 +95241,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27994] = 3, + [26860] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1712), 7, + ACTIONS(1578), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96326,7 +95253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1714), 38, + ACTIONS(1580), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96365,11 +95292,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28048] = 3, + [26914] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1724), 7, + ACTIONS(1554), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96377,7 +95304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1726), 38, + ACTIONS(1556), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96416,11 +95343,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28102] = 3, + [26968] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1732), 7, + ACTIONS(1550), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96428,7 +95355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1734), 38, + ACTIONS(1552), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96467,11 +95394,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28156] = 3, + [27022] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(446), 15, + ACTIONS(424), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96487,7 +95414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(444), 30, + ACTIONS(422), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96518,62 +95445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28210] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1746), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1748), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28264] = 3, + [27076] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1750), 7, + ACTIONS(1304), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96581,7 +95457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1752), 38, + ACTIONS(1306), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96620,11 +95496,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28318] = 3, + [27130] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2882), 15, + ACTIONS(2878), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96640,7 +95516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2880), 30, + ACTIONS(2876), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96671,11 +95547,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28372] = 3, + [27184] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1758), 7, + ACTIONS(1508), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96683,7 +95559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1760), 38, + ACTIONS(1510), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96722,11 +95598,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28426] = 3, + [27238] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2886), 15, + ACTIONS(2367), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96742,7 +95618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2884), 30, + ACTIONS(2369), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96773,11 +95649,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28480] = 3, + [27292] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1770), 7, + ACTIONS(1300), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96785,7 +95661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1772), 38, + ACTIONS(1302), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96824,62 +95700,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28534] = 3, + [27346] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2890), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2888), 30, + ACTIONS(1920), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28588] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1922), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27400] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1576), 7, + ACTIONS(1520), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96887,7 +95763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1578), 38, + ACTIONS(1522), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96926,11 +95802,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28642] = 3, + [27454] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1838), 7, + ACTIONS(1292), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96938,7 +95814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1840), 38, + ACTIONS(1294), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96977,11 +95853,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28696] = 3, + [27508] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1854), 7, + ACTIONS(1284), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96989,7 +95865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1856), 38, + ACTIONS(1286), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97028,11 +95904,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28750] = 3, + [27562] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1866), 7, + ACTIONS(1272), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97040,7 +95916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1868), 38, + ACTIONS(1274), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97079,11 +95955,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28804] = 3, + [27616] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1890), 7, + ACTIONS(1264), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97091,7 +95967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1892), 38, + ACTIONS(1266), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97130,62 +96006,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28858] = 3, + [27670] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2894), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1472), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2892), 30, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1474), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27724] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1464), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28912] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1466), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27778] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1902), 7, + ACTIONS(1256), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97193,7 +96120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1904), 38, + ACTIONS(1258), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97232,11 +96159,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28966] = 3, + [27832] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1906), 7, + ACTIONS(1248), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97244,7 +96171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1908), 38, + ACTIONS(1250), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97283,11 +96210,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29020] = 3, + [27886] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1914), 7, + ACTIONS(1240), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97295,7 +96222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1916), 38, + ACTIONS(1242), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97334,62 +96261,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29074] = 3, + [27940] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1934), 7, + ACTIONS(2588), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2586), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1936), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29128] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27994] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1962), 7, + ACTIONS(1928), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97397,7 +96324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1964), 38, + ACTIONS(1930), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97436,11 +96363,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29182] = 3, + [28048] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1552), 7, + ACTIONS(1236), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97448,7 +96375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1554), 38, + ACTIONS(1238), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97487,11 +96414,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29236] = 3, + [28102] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1970), 7, + ACTIONS(2882), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2880), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28156] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1228), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97499,7 +96477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1972), 38, + ACTIONS(1230), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97538,11 +96516,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29290] = 3, + [28210] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1978), 7, + ACTIONS(1224), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97550,7 +96528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1980), 38, + ACTIONS(1226), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97589,11 +96567,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29344] = 3, + [28264] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1982), 7, + ACTIONS(1220), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97601,7 +96579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1984), 38, + ACTIONS(1222), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97640,11 +96618,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29398] = 3, + [28318] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2898), 15, + ACTIONS(2886), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97660,7 +96638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2896), 30, + ACTIONS(2884), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97691,11 +96669,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29452] = 3, + [28372] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1974), 7, + ACTIONS(1216), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97703,7 +96681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1976), 38, + ACTIONS(1218), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97742,62 +96720,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29506] = 3, + [28426] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1998), 7, + ACTIONS(2890), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2888), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(2000), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29560] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28480] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2902), 15, + ACTIONS(2596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97813,7 +96791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2900), 30, + ACTIONS(2594), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97844,11 +96822,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29614] = 3, + [28534] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1950), 7, + ACTIONS(1212), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97856,7 +96834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1952), 38, + ACTIONS(1214), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97895,11 +96873,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29668] = 3, + [28588] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1938), 7, + ACTIONS(1208), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97907,7 +96885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1940), 38, + ACTIONS(1210), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97946,11 +96924,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29722] = 3, + [28642] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2894), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2892), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28696] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1926), 7, + ACTIONS(1200), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97958,7 +96987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1928), 38, + ACTIONS(1202), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97997,11 +97026,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29776] = 3, + [28750] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2898), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2896), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28804] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1898), 7, + ACTIONS(1196), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98009,7 +97089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1900), 38, + ACTIONS(1198), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98048,11 +97128,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29830] = 3, + [28858] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(1188), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98060,7 +97140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1844), 38, + ACTIONS(1190), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98099,11 +97179,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29884] = 3, + [28912] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1834), 7, + ACTIONS(1176), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98111,7 +97191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1836), 38, + ACTIONS(1178), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98150,11 +97230,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29938] = 3, + [28966] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1814), 7, + ACTIONS(1172), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98162,7 +97242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1816), 38, + ACTIONS(1174), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98201,11 +97281,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29992] = 3, + [29020] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1802), 7, + ACTIONS(1180), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98213,7 +97293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1804), 38, + ACTIONS(1182), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98252,11 +97332,164 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30046] = 3, + [29074] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(602), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(600), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29128] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(606), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(604), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29182] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(408), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(406), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29236] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1794), 7, + ACTIONS(1990), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98264,7 +97497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1796), 38, + ACTIONS(1992), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98303,11 +97536,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30100] = 3, + [29290] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1782), 7, + ACTIONS(1974), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98315,7 +97548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1784), 38, + ACTIONS(1976), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98354,11 +97587,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30154] = 3, + [29344] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2427), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2429), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29398] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2902), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2900), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29452] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1762), 7, + ACTIONS(1148), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98366,7 +97701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1764), 38, + ACTIONS(1150), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98405,11 +97740,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30208] = 3, + [29506] = 4, + ACTIONS(2904), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(460), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(458), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29562] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1754), 7, + ACTIONS(1192), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98417,7 +97804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1756), 38, + ACTIONS(1194), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98456,11 +97843,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30262] = 3, + [29616] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1740), 7, + ACTIONS(1204), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98468,7 +97855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1742), 38, + ACTIONS(1206), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98507,11 +97894,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30316] = 3, + [29670] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1736), 7, + ACTIONS(1144), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98519,7 +97906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1738), 38, + ACTIONS(1146), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98558,11 +97945,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30370] = 3, + [29724] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1728), 7, + ACTIONS(1136), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98570,7 +97957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1730), 38, + ACTIONS(1138), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98602,69 +97989,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_trait, anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [30424] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2906), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2904), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30478] = 3, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29778] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1704), 7, + ACTIONS(1128), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98672,7 +98008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1706), 38, + ACTIONS(1130), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98711,11 +98047,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30532] = 3, + [29832] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1700), 7, + ACTIONS(1108), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98723,7 +98059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1702), 38, + ACTIONS(1110), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98762,11 +98098,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30586] = 3, + [29886] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(616), 15, + ACTIONS(428), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98782,7 +98118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(614), 30, + ACTIONS(426), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98813,62 +98149,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30640] = 3, + [29940] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1688), 7, + ACTIONS(436), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(434), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29994] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2600), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1690), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [30694] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2598), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30048] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1156), 7, + ACTIONS(1092), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98876,7 +98263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1158), 38, + ACTIONS(1094), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98915,11 +98302,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30748] = 3, + [30102] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1680), 7, + ACTIONS(2908), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2906), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30156] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1064), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98927,7 +98365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1682), 38, + ACTIONS(1066), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98966,11 +98404,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30802] = 3, + [30210] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1676), 7, + ACTIONS(1970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98978,7 +98416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1678), 38, + ACTIONS(1972), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99017,11 +98455,164 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30856] = 3, + [30264] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1668), 7, + ACTIONS(452), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(450), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30318] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2912), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2910), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30372] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(490), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(488), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30426] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1680), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99029,7 +98620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1670), 38, + ACTIONS(1682), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99068,11 +98659,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30910] = 3, + [30480] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1656), 7, + ACTIONS(416), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(414), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30534] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1848), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99080,7 +98722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1658), 38, + ACTIONS(1850), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99119,11 +98761,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30964] = 3, + [30588] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(2916), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2914), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30642] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2920), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2918), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30696] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1966), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99131,7 +98875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1654), 38, + ACTIONS(1968), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99170,11 +98914,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31018] = 3, + [30750] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1648), 7, + ACTIONS(2654), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2650), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30804] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1084), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99182,7 +98977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1650), 38, + ACTIONS(1086), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99221,11 +99016,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31072] = 3, + [30858] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1548), 7, + ACTIONS(1116), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99233,7 +99028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1550), 38, + ACTIONS(1118), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99272,11 +99067,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31126] = 3, + [30912] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1612), 7, + ACTIONS(1120), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99284,7 +99079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1614), 38, + ACTIONS(1122), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99323,11 +99118,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31180] = 3, + [30966] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1604), 7, + ACTIONS(1606), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99335,7 +99130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1606), 38, + ACTIONS(1608), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99374,11 +99169,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31234] = 3, + [31020] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1596), 7, + ACTIONS(1124), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99386,7 +99181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1598), 38, + ACTIONS(1126), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99425,11 +99220,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31288] = 3, + [31074] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2924), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2922), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [31128] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1544), 7, + ACTIONS(2928), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2926), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [31182] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1132), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99437,7 +99334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1546), 38, + ACTIONS(1134), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99476,11 +99373,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31342] = 3, + [31236] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1534), 7, + ACTIONS(1562), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99488,7 +99385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1536), 38, + ACTIONS(1564), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99527,11 +99424,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31396] = 3, + [31290] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1530), 7, + ACTIONS(1500), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99539,7 +99436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1532), 38, + ACTIONS(1502), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99578,11 +99475,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31450] = 3, + [31344] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1514), 7, + ACTIONS(1916), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99590,7 +99487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1516), 38, + ACTIONS(1918), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99629,11 +99526,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31504] = 3, + [31398] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1498), 7, + ACTIONS(1140), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99641,7 +99538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1500), 38, + ACTIONS(1142), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99680,11 +99577,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31558] = 3, + [31452] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2910), 15, + ACTIONS(2932), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99700,7 +99597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2908), 30, + ACTIONS(2930), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99731,11 +99628,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31612] = 3, + [31506] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1494), 7, + ACTIONS(1586), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99743,7 +99640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1496), 38, + ACTIONS(1588), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99782,11 +99679,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31666] = 3, + [31560] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2914), 15, + ACTIONS(2936), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99802,7 +99699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2912), 30, + ACTIONS(2934), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99833,11 +99730,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31720] = 3, + [31614] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2918), 15, + ACTIONS(2940), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99853,7 +99750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2916), 30, + ACTIONS(2938), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99884,11 +99781,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31774] = 3, + [31668] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2922), 15, + ACTIONS(2944), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99904,7 +99801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2920), 30, + ACTIONS(2942), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99935,11 +99832,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31828] = 3, + [31722] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1486), 7, + ACTIONS(1496), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99947,7 +99844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1488), 38, + ACTIONS(1498), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99986,11 +99883,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31882] = 3, + [31776] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1478), 7, + ACTIONS(2948), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2946), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [31830] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1360), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99998,7 +99946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1480), 38, + ACTIONS(1362), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100037,11 +99985,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31936] = 3, + [31884] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1474), 7, + ACTIONS(1168), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100049,7 +99997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1476), 38, + ACTIONS(1170), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100088,11 +100036,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31990] = 3, + [31938] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1470), 7, + ACTIONS(1184), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100100,7 +100048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1472), 38, + ACTIONS(1186), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100139,11 +100087,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32044] = 3, + [31992] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1454), 7, + ACTIONS(1252), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100151,7 +100099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1456), 38, + ACTIONS(1254), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100190,11 +100138,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32098] = 3, + [32046] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1446), 7, + ACTIONS(1268), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100202,7 +100150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1448), 38, + ACTIONS(1270), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100241,11 +100189,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32152] = 3, + [32100] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2952), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2950), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32154] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1434), 7, + ACTIONS(1344), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100253,7 +100252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1436), 38, + ACTIONS(1346), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100292,11 +100291,164 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32206] = 3, + [32208] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1426), 7, + ACTIONS(2956), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2954), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32262] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2960), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2958), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32316] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2964), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2962), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32370] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1312), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100304,7 +100456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1428), 38, + ACTIONS(1314), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100343,11 +100495,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32260] = 3, + [32424] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1422), 7, + ACTIONS(1876), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100355,7 +100507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1424), 38, + ACTIONS(1878), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100394,11 +100546,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32314] = 3, + [32478] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1418), 7, + ACTIONS(1320), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100406,7 +100558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1420), 38, + ACTIONS(1322), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100445,11 +100597,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32368] = 3, + [32532] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2968), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2966), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32586] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1414), 7, + ACTIONS(1324), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100457,7 +100660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1416), 38, + ACTIONS(1326), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100496,11 +100699,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32422] = 3, + [32640] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1394), 7, + ACTIONS(1332), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100508,7 +100711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1396), 38, + ACTIONS(1334), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100547,11 +100750,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32476] = 3, + [32694] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1358), 7, + ACTIONS(1844), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100559,7 +100762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1360), 38, + ACTIONS(1846), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100598,11 +100801,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32530] = 3, + [32748] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1350), 7, + ACTIONS(1336), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100610,7 +100813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1352), 38, + ACTIONS(1338), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100649,11 +100852,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32584] = 3, + [32802] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1330), 7, + ACTIONS(1384), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100661,7 +100864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1332), 38, + ACTIONS(1386), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100700,11 +100903,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32638] = 3, + [32856] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1322), 7, + ACTIONS(1396), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100712,7 +100915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1324), 38, + ACTIONS(1398), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100751,11 +100954,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32692] = 3, + [32910] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1318), 7, + ACTIONS(1400), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100763,7 +100966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1320), 38, + ACTIONS(1402), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100802,11 +101005,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32746] = 3, + [32964] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1302), 7, + ACTIONS(1404), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100814,7 +101017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1304), 38, + ACTIONS(1406), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100853,62 +101056,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32800] = 3, + [33018] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(500), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(498), 30, + ACTIONS(1424), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32854] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1426), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33072] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1526), 7, + ACTIONS(1468), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100916,7 +101119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1528), 38, + ACTIONS(1470), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100955,11 +101158,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32908] = 3, + [33126] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1490), 7, + ACTIONS(1476), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100967,7 +101170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1492), 38, + ACTIONS(1478), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101006,11 +101209,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32962] = 3, + [33180] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1482), 7, + ACTIONS(410), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101018,7 +101221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1484), 38, + ACTIONS(412), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101057,113 +101260,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33016] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2616), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2614), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33070] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2926), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2924), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33124] = 3, + [33234] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(448), 7, + ACTIONS(1480), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101171,7 +101272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(450), 38, + ACTIONS(1482), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101210,11 +101311,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33178] = 3, + [33288] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(610), 7, + ACTIONS(1484), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101222,7 +101323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(612), 38, + ACTIONS(1486), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101261,164 +101362,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33232] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2930), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2928), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33286] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2934), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2932), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33340] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2938), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2936), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33394] = 3, + [33342] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1072), 7, + ACTIONS(406), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101426,7 +101374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1074), 38, + ACTIONS(408), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101465,11 +101413,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33448] = 3, + [33396] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(452), 7, + ACTIONS(1516), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101477,7 +101425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(454), 38, + ACTIONS(1518), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101516,11 +101464,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33502] = 3, + [33450] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(420), 7, + ACTIONS(1546), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101528,7 +101476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(422), 38, + ACTIONS(1548), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101567,11 +101515,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33556] = 3, + [33504] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(414), 7, + ACTIONS(1800), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101579,7 +101527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(416), 38, + ACTIONS(1802), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101618,11 +101566,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33610] = 3, + [33558] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(406), 7, + ACTIONS(1566), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101630,7 +101578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(408), 38, + ACTIONS(1568), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101669,11 +101617,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33664] = 3, + [33612] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(410), 7, + ACTIONS(414), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101681,7 +101629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(412), 38, + ACTIONS(416), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101708,431 +101656,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_mod, anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33718] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2942), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2940), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33772] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2407), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2409), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33826] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(330), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(328), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33880] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2353), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2355), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33934] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2946), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2944), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33988] = 3, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33666] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2598), 30, + ACTIONS(1570), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34042] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1572), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33720] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2950), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2948), 30, + ACTIONS(1796), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34096] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1798), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33774] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2954), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2952), 30, + ACTIONS(1104), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34150] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1106), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33828] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2958), 15, + ACTIONS(312), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102148,7 +101841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2956), 30, + ACTIONS(310), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102179,215 +101872,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34204] = 3, + [33882] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2962), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2960), 30, + ACTIONS(1594), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34258] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1596), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33936] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2966), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2964), 30, + ACTIONS(1598), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34312] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1600), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33990] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(450), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(448), 30, + ACTIONS(614), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34366] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(616), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34044] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2694), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2690), 30, + ACTIONS(1602), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34420] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1604), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34098] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1168), 7, + ACTIONS(1622), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102395,7 +102088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1170), 38, + ACTIONS(1624), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102434,63 +102127,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34474] = 4, - ACTIONS(2968), 1, - anon_sym_COLON_COLON, + [34152] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(472), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(470), 29, + ACTIONS(1764), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34530] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1766), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34206] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2375), 15, + ACTIONS(2397), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102506,7 +102198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2377), 30, + ACTIONS(2399), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102537,11 +102229,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34584] = 3, + [34260] = 4, + ACTIONS(2628), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2972), 15, + ACTIONS(2622), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102557,11 +102251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2970), 30, + ACTIONS(2620), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -102588,64 +102281,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34638] = 3, + [34316] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(408), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(406), 30, + ACTIONS(1652), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34692] = 4, - ACTIONS(2634), 1, + anon_sym_POUND, + anon_sym_LT, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1654), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34370] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 15, + ACTIONS(2972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -102661,10 +102352,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2626), 29, + ACTIONS(2970), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -102691,24 +102383,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34748] = 3, + [34424] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2976), 12, + ACTIONS(1664), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_AMP, sym_metavariable, - ACTIONS(2974), 32, + ACTIONS(1666), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102729,190 +102416,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [34801] = 9, - ACTIONS(2980), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_as, - ACTIONS(2990), 1, - anon_sym_DOT_DOT, - ACTIONS(2992), 1, - anon_sym_DOT, + [34478] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2988), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2982), 10, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2978), 25, + ACTIONS(1668), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_else, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34866] = 18, - ACTIONS(2980), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_as, - ACTIONS(2990), 1, - anon_sym_DOT_DOT, - ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(2998), 1, - anon_sym_EQ, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1670), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34532] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2988), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2984), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3012), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2994), 19, + ACTIONS(438), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_else, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34949] = 21, - ACTIONS(77), 1, + anon_sym_POUND, anon_sym_LT, - ACTIONS(866), 1, anon_sym_COLON_COLON, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3020), 1, - anon_sym_LPAREN, - ACTIONS(3022), 1, - anon_sym_STAR, - ACTIONS(3028), 1, - anon_sym_for, - ACTIONS(3030), 1, - anon_sym_AMP, - ACTIONS(3032), 1, sym_metavariable, - STATE(1853), 1, - sym_scoped_type_identifier, - STATE(1861), 1, - sym_generic_type, - STATE(2087), 1, - sym_where_predicate, - STATE(2382), 1, - sym_bracketed_type, - STATE(2383), 1, - sym_generic_type_with_turbofish, - STATE(2438), 1, - sym_scoped_identifier, + ACTIONS(440), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34586] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3018), 2, + ACTIONS(1676), 7, anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(3026), 2, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1678), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - ACTIONS(872), 3, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(2242), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3024), 17, + [34640] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1720), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1722), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102930,26 +102617,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [35038] = 7, - ACTIONS(2980), 1, - anon_sym_LBRACK, - ACTIONS(2990), 1, - anon_sym_DOT_DOT, - ACTIONS(2992), 1, - anon_sym_DOT, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [34694] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2988), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3036), 13, + ACTIONS(444), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -102957,17 +102657,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3034), 26, + anon_sym_DOT, + ACTIONS(442), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -102984,52 +102689,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35099] = 18, - ACTIONS(2980), 1, + [34748] = 14, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2990), 1, anon_sym_DOT_DOT, ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(2994), 1, anon_sym_CARET, - ACTIONS(3040), 1, - anon_sym_EQ, + ACTIONS(2998), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(2978), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(2988), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(2996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3038), 19, + ACTIONS(2984), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2974), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103039,6 +102734,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COMMA, anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103049,52 +102750,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35182] = 18, - ACTIONS(288), 1, - anon_sym_EQ, - ACTIONS(2980), 1, + [34823] = 11, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, ACTIONS(2990), 1, anon_sym_DOT_DOT, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(2978), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(2988), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(2996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(282), 19, + ACTIONS(2984), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(2974), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103104,6 +102792,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COMMA, anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103114,12 +102808,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35265] = 7, - ACTIONS(2980), 1, + [34892] = 7, + ACTIONS(2976), 1, anon_sym_LBRACK, ACTIONS(2990), 1, anon_sym_DOT_DOT, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, @@ -103127,7 +102821,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2988), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3044), 13, + ACTIONS(3002), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -103141,7 +102835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3042), 26, + ACTIONS(3000), 26, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103168,24 +102862,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35326] = 3, + [34953] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(870), 1, + anon_sym_COLON_COLON, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3004), 1, + sym_identifier, + ACTIONS(3008), 1, + anon_sym_LPAREN, + ACTIONS(3010), 1, + anon_sym_STAR, + ACTIONS(3016), 1, + anon_sym_for, + ACTIONS(3018), 1, + anon_sym_AMP, + ACTIONS(3020), 1, + sym_metavariable, + STATE(1788), 1, + sym_scoped_type_identifier, + STATE(1887), 1, + sym_generic_type, + STATE(1953), 1, + sym_where_predicate, + STATE(2378), 1, + sym_bracketed_type, + STATE(2379), 1, + sym_generic_type_with_turbofish, + STATE(2404), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3048), 12, + ACTIONS(3006), 2, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LBRACE, + ACTIONS(3014), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(876), 3, + sym_self, + sym_super, + sym_crate, + STATE(2296), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3012), 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, + [35042] = 18, + ACTIONS(2976), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_DOT_DOT, + ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, + anon_sym_DOT, + ACTIONS(3024), 1, anon_sym_EQ, + ACTIONS(3028), 1, + anon_sym_AMP_AMP, + ACTIONS(3030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2978), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2988), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2996), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3032), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3022), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35125] = 21, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(870), 1, anon_sym_COLON_COLON, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3004), 1, + sym_identifier, + ACTIONS(3008), 1, + anon_sym_LPAREN, + ACTIONS(3010), 1, + anon_sym_STAR, + ACTIONS(3016), 1, + anon_sym_for, + ACTIONS(3018), 1, anon_sym_AMP, + ACTIONS(3020), 1, sym_metavariable, - ACTIONS(3046), 32, + STATE(1788), 1, + sym_scoped_type_identifier, + STATE(1887), 1, + sym_generic_type, + STATE(1953), 1, + sym_where_predicate, + STATE(2378), 1, + sym_bracketed_type, + STATE(2379), 1, + sym_generic_type_with_turbofish, + STATE(2404), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3014), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(3034), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(876), 3, + sym_self, + sym_super, + sym_crate, + STATE(2296), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3012), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103203,43 +103063,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [35379] = 4, - ACTIONS(3054), 1, - anon_sym_RBRACE, + [35214] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3052), 14, - sym_raw_string_literal, - sym_float_literal, + ACTIONS(3038), 12, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_POUND, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3050), 29, + ACTIONS(3036), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103257,38 +103098,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [35434] = 5, - ACTIONS(3056), 1, - anon_sym_POUND, + [35267] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1138), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2495), 9, + ACTIONS(3042), 12, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2493), 32, + ACTIONS(3040), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103312,72 +103154,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_for, anon_sym_impl, - anon_sym_pub, anon_sym_union, anon_sym_unsafe, + anon_sym_where, anon_sym_extern, anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [35491] = 20, - ACTIONS(2980), 1, + [35320] = 18, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2990), 1, anon_sym_DOT_DOT, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3046), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(2978), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(2988), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(2996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2984), 3, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3059), 8, + ACTIONS(3044), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_COMMA, anon_sym_else, - ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103388,52 +103228,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35578] = 18, - ACTIONS(2980), 1, + [35403] = 4, + ACTIONS(3052), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3050), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(2986), 1, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3048), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [35458] = 18, + ACTIONS(288), 1, + anon_sym_EQ, + ACTIONS(2976), 1, + anon_sym_LBRACK, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2990), 1, anon_sym_DOT_DOT, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3069), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(2978), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(2988), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(2996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2984), 3, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 19, + ACTIONS(282), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103453,11 +103344,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35661] = 3, + [35541] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3073), 12, + ACTIONS(3056), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -103470,7 +103361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3071), 32, + ACTIONS(3054), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103503,11 +103394,68 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35714] = 3, + [35594] = 10, + ACTIONS(2976), 1, + anon_sym_LBRACK, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2990), 1, + anon_sym_DOT_DOT, + ACTIONS(2998), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2978), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2988), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2984), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2974), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35661] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3077), 12, + ACTIONS(3060), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -103520,7 +103468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3075), 32, + ACTIONS(3058), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103553,103 +103501,34 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35767] = 4, - ACTIONS(3083), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3081), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3079), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [35822] = 18, - ACTIONS(2980), 1, + [35714] = 7, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_as, ACTIONS(2990), 1, anon_sym_DOT_DOT, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3087), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(2988), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(3064), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3000), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3014), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2984), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3085), 19, + ACTIONS(3062), 26, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103657,8 +103536,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103669,34 +103555,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35905] = 7, - ACTIONS(2980), 1, + [35775] = 12, + ACTIONS(2976), 1, anon_sym_LBRACK, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2990), 1, anon_sym_DOT_DOT, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(2978), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(2988), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3091), 13, - anon_sym_PLUS, + ACTIONS(2996), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2980), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2984), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3089), 26, + ACTIONS(2974), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103704,7 +103596,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, anon_sym_else, anon_sym_AMP_AMP, @@ -103723,38 +103614,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35966] = 10, - ACTIONS(2980), 1, + [35846] = 13, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2990), 1, anon_sym_DOT_DOT, - ACTIONS(2992), 1, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(2978), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(2988), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(2996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2984), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2982), 8, + ACTIONS(2984), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2978), 25, + ACTIONS(2974), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103780,40 +103674,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36033] = 12, - ACTIONS(2980), 1, + [35919] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2990), 1, anon_sym_DOT_DOT, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, + ACTIONS(3028), 1, + anon_sym_AMP_AMP, + ACTIONS(3030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3070), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(2978), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(2988), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(2996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3014), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2984), 3, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2982), 5, + ACTIONS(3032), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3066), 8, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(3072), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36006] = 17, + ACTIONS(2976), 1, + anon_sym_LBRACK, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2984), 1, anon_sym_EQ, + ACTIONS(2986), 1, + anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_DOT_DOT, + ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP_AMP, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2978), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2988), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2996), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(2980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3032), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2974), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36087] = 16, + ACTIONS(2976), 1, + anon_sym_LBRACK, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2984), 1, + anon_sym_EQ, + ACTIONS(2986), 1, + anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_DOT_DOT, + ACTIONS(2992), 1, anon_sym_PIPE, + ACTIONS(2994), 1, anon_sym_CARET, - ACTIONS(2978), 25, + ACTIONS(2998), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2978), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2988), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2996), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3032), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2974), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103825,10 +103858,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36166] = 18, + ACTIONS(2976), 1, + anon_sym_LBRACK, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_DOT_DOT, + ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP_AMP, + ACTIONS(3030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3076), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2978), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2988), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2996), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3074), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_else, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103839,11 +103933,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36104] = 3, + [36249] = 4, + ACTIONS(3082), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3080), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3078), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [36304] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3095), 12, + ACTIONS(3086), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -103856,7 +104001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3093), 32, + ACTIONS(3084), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103889,71 +104034,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36157] = 13, - ACTIONS(2980), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_as, - ACTIONS(2990), 1, - anon_sym_DOT_DOT, - ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2988), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3014), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2984), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2982), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(2978), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_else, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36230] = 3, + [36357] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3099), 12, + ACTIONS(3090), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -103966,7 +104051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3097), 32, + ACTIONS(3088), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103999,112 +104084,52 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36283] = 17, - ACTIONS(2980), 1, + [36410] = 18, + ACTIONS(2976), 1, anon_sym_LBRACK, ACTIONS(2982), 1, - anon_sym_EQ, - ACTIONS(2986), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2990), 1, anon_sym_DOT_DOT, ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3008), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(2994), 1, anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2988), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2984), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3012), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2978), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(2998), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP_AMP, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36364] = 16, - ACTIONS(2980), 1, - anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(3094), 1, anon_sym_EQ, - ACTIONS(2986), 1, - anon_sym_as, - ACTIONS(2990), 1, - anon_sym_DOT_DOT, - ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(2978), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(2988), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(2996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2984), 3, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2978), 21, + ACTIONS(3092), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104114,8 +104139,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COMMA, anon_sym_else, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104126,39 +104149,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36443] = 11, - ACTIONS(2980), 1, + [36493] = 5, + ACTIONS(3096), 1, + anon_sym_POUND, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1153), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2457), 9, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(2986), 1, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2455), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [36550] = 18, + ACTIONS(2976), 1, + anon_sym_LBRACK, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2990), 1, anon_sym_DOT_DOT, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP_AMP, + ACTIONS(3030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3101), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(2978), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(2988), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(2996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3014), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2984), 3, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2982), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2978), 25, + ACTIONS(3032), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3099), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104168,12 +104256,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COMMA, anon_sym_else, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104184,42 +104266,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36512] = 14, - ACTIONS(2980), 1, + [36633] = 7, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_as, ACTIONS(2990), 1, anon_sym_DOT_DOT, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(2988), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(3105), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3014), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2982), 3, + anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2984), 3, - anon_sym_STAR, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2978), 25, + ACTIONS(3103), 26, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104227,6 +104301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, anon_sym_else, anon_sym_AMP_AMP, @@ -104245,54 +104320,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36587] = 20, - ACTIONS(2980), 1, + [36694] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2990), 1, anon_sym_DOT_DOT, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(2978), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(2988), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, ACTIONS(2996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2984), 3, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3101), 8, + ACTIONS(3107), 8, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104301,7 +104376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_else, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104312,120 +104387,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36674] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(866), 1, - anon_sym_COLON_COLON, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3020), 1, - anon_sym_LPAREN, - ACTIONS(3022), 1, - anon_sym_STAR, - ACTIONS(3028), 1, - anon_sym_for, - ACTIONS(3030), 1, - anon_sym_AMP, - ACTIONS(3032), 1, - sym_metavariable, - STATE(1853), 1, - sym_scoped_type_identifier, - STATE(1861), 1, - sym_generic_type, - STATE(2087), 1, - sym_where_predicate, - STATE(2382), 1, - sym_bracketed_type, - STATE(2383), 1, - sym_generic_type_with_turbofish, - STATE(2438), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3026), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(3103), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(872), 3, - sym_self, - sym_super, - sym_crate, - STATE(2242), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3024), 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, - [36763] = 18, - ACTIONS(2980), 1, + [36781] = 8, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, ACTIONS(2990), 1, anon_sym_DOT_DOT, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3107), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(2988), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(2984), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3000), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3014), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2984), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3105), 19, + ACTIONS(2974), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104435,6 +104426,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COMMA, anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104445,14 +104442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36846] = 8, - ACTIONS(2980), 1, + [36844] = 9, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, ACTIONS(2990), 1, anon_sym_DOT_DOT, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, @@ -104460,9 +104457,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2988), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2982), 13, - anon_sym_PLUS, + ACTIONS(2980), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2984), 10, + anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -104472,9 +104472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2978), 25, + ACTIONS(2974), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104504,7 +104502,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3052), 14, + ACTIONS(3050), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -104519,7 +104517,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3050), 29, + ACTIONS(3048), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104553,7 +104551,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3081), 14, + ACTIONS(3080), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -104568,7 +104566,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3079), 29, + ACTIONS(3078), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104599,18 +104597,18 @@ static const uint16_t ts_small_parse_table[] = { sym_super, sym_crate, [37013] = 7, - ACTIONS(2602), 1, + ACTIONS(2590), 1, anon_sym_LBRACE, - ACTIONS(2604), 1, + ACTIONS(2592), 1, anon_sym_COLON_COLON, ACTIONS(3109), 1, anon_sym_BANG, - STATE(1109), 1, + STATE(1121), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(472), 15, + ACTIONS(460), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104626,7 +104624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(470), 24, + ACTIONS(458), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -104654,51 +104652,51 @@ static const uint16_t ts_small_parse_table[] = { [37073] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(866), 1, + ACTIONS(870), 1, anon_sym_COLON_COLON, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3016), 1, + ACTIONS(3004), 1, sym_identifier, - ACTIONS(3020), 1, + ACTIONS(3008), 1, anon_sym_LPAREN, - ACTIONS(3022), 1, + ACTIONS(3010), 1, anon_sym_STAR, - ACTIONS(3028), 1, + ACTIONS(3016), 1, anon_sym_for, - ACTIONS(3030), 1, + ACTIONS(3018), 1, anon_sym_AMP, - ACTIONS(3032), 1, + ACTIONS(3020), 1, sym_metavariable, - STATE(1846), 1, - sym_where_predicate, - STATE(1853), 1, + STATE(1788), 1, sym_scoped_type_identifier, - STATE(1861), 1, + STATE(1790), 1, + sym_where_predicate, + STATE(1887), 1, sym_generic_type, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, - STATE(2438), 1, + STATE(2404), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3026), 2, + ACTIONS(3014), 2, anon_sym_default, anon_sym_union, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - STATE(2242), 5, + STATE(2296), 5, sym_higher_ranked_trait_bound, sym_lifetime, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3024), 17, + ACTIONS(3012), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104716,54 +104714,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37158] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(866), 1, - anon_sym_COLON_COLON, - ACTIONS(3032), 1, - sym_metavariable, - ACTIONS(3111), 1, - sym_identifier, - ACTIONS(3113), 1, - anon_sym_default, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1332), 1, - sym_scoped_type_identifier, - STATE(1356), 1, - sym_generic_type, - STATE(1382), 1, - sym_function_type, - STATE(2335), 1, - sym_function_modifiers, - STATE(2382), 1, - sym_bracketed_type, - STATE(2383), 1, - sym_generic_type_with_turbofish, - STATE(2438), 1, - sym_scoped_identifier, + [37158] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(872), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3026), 18, + ACTIONS(1344), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(1346), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104781,55 +104747,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, anon_sym_union, - [37245] = 21, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [37209] = 21, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(866), 1, + ACTIONS(2478), 1, + anon_sym_fn, + ACTIONS(2486), 1, anon_sym_COLON_COLON, - ACTIONS(3032), 1, - sym_metavariable, - ACTIONS(3113), 1, - anon_sym_default, - ACTIONS(3115), 1, + ACTIONS(3111), 1, sym_identifier, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1334), 1, + ACTIONS(3115), 1, + anon_sym_default, + ACTIONS(3117), 1, + sym_metavariable, + STATE(757), 1, sym_scoped_type_identifier, - STATE(1360), 1, + STATE(786), 1, sym_generic_type, - STATE(1403), 1, + STATE(1002), 1, sym_function_type, - STATE(2335), 1, + STATE(1195), 1, + sym_for_lifetimes, + STATE(2386), 1, sym_function_modifiers, - STATE(2382), 1, + STATE(2411), 1, + sym_scoped_identifier, + STATE(2491), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2492), 1, sym_generic_type_with_turbofish, - STATE(2438), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(2494), 3, sym_self, sym_super, sym_crate, - ACTIONS(3026), 18, + ACTIONS(3113), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104848,119 +104828,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37332] = 20, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(866), 1, - anon_sym_COLON_COLON, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3020), 1, - anon_sym_LPAREN, - ACTIONS(3022), 1, - anon_sym_STAR, - ACTIONS(3028), 1, - anon_sym_for, - ACTIONS(3030), 1, - anon_sym_AMP, - ACTIONS(3032), 1, - sym_metavariable, - STATE(1853), 1, - sym_scoped_type_identifier, - STATE(1861), 1, - sym_generic_type, - STATE(2087), 1, - sym_where_predicate, - STATE(2382), 1, - sym_bracketed_type, - STATE(2383), 1, - sym_generic_type_with_turbofish, - STATE(2438), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3026), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(872), 3, - sym_self, - sym_super, - sym_crate, - STATE(2242), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3024), 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, - [37417] = 21, + [37296] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(672), 1, anon_sym_for, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2463), 1, + ACTIONS(2478), 1, anon_sym_fn, - ACTIONS(2471), 1, + ACTIONS(2486), 1, anon_sym_COLON_COLON, - ACTIONS(3117), 1, - sym_identifier, - ACTIONS(3121), 1, + ACTIONS(3115), 1, anon_sym_default, - ACTIONS(3123), 1, + ACTIONS(3117), 1, sym_metavariable, - STATE(762), 1, + ACTIONS(3119), 1, + sym_identifier, + STATE(759), 1, sym_scoped_type_identifier, - STATE(792), 1, + STATE(805), 1, sym_generic_type, - STATE(1096), 1, + STATE(1012), 1, sym_function_type, - STATE(1197), 1, + STATE(1195), 1, sym_for_lifetimes, - STATE(2390), 1, + STATE(2386), 1, sym_function_modifiers, - STATE(2415), 1, + STATE(2411), 1, sym_scoped_identifier, - STATE(2495), 1, + STATE(2491), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2492), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2479), 3, + ACTIONS(2494), 3, sym_self, sym_super, sym_crate, - ACTIONS(3119), 18, + ACTIONS(3113), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104979,17 +104894,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37504] = 6, - ACTIONS(2632), 1, + [37383] = 6, + ACTIONS(2626), 1, anon_sym_BANG, - ACTIONS(2634), 1, + ACTIONS(2628), 1, anon_sym_COLON_COLON, - ACTIONS(3125), 1, + ACTIONS(3121), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 16, + ACTIONS(2622), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_as, @@ -105006,7 +104921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2626), 23, + ACTIONS(2620), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -105030,54 +104945,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37561] = 21, + [37440] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(870), 1, + anon_sym_COLON_COLON, + ACTIONS(3020), 1, + sym_metavariable, + ACTIONS(3123), 1, + sym_identifier, + ACTIONS(3125), 1, + anon_sym_default, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1327), 1, + sym_scoped_type_identifier, + STATE(1355), 1, + sym_generic_type, + STATE(1384), 1, + sym_function_type, + STATE(2378), 1, + sym_bracketed_type, + STATE(2379), 1, + sym_generic_type_with_turbofish, + STATE(2404), 1, + sym_scoped_identifier, + STATE(2472), 1, + sym_function_modifiers, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1526), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(876), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3014), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [37527] = 20, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(870), 1, + anon_sym_COLON_COLON, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3004), 1, + sym_identifier, + ACTIONS(3008), 1, + anon_sym_LPAREN, + ACTIONS(3010), 1, + anon_sym_STAR, + ACTIONS(3016), 1, + anon_sym_for, + ACTIONS(3018), 1, + anon_sym_AMP, + ACTIONS(3020), 1, + sym_metavariable, + STATE(1788), 1, + sym_scoped_type_identifier, + STATE(1887), 1, + sym_generic_type, + STATE(1953), 1, + sym_where_predicate, + STATE(2378), 1, + sym_bracketed_type, + STATE(2379), 1, + sym_generic_type_with_turbofish, + STATE(2404), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3014), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(876), 3, + sym_self, + sym_super, + sym_crate, + STATE(2296), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3012), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [37612] = 21, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2463), 1, - anon_sym_fn, - ACTIONS(2471), 1, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(3121), 1, - anon_sym_default, - ACTIONS(3123), 1, + ACTIONS(3020), 1, sym_metavariable, + ACTIONS(3125), 1, + anon_sym_default, ACTIONS(3127), 1, sym_identifier, - STATE(759), 1, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1329), 1, sym_scoped_type_identifier, - STATE(789), 1, + STATE(1362), 1, sym_generic_type, - STATE(1114), 1, + STATE(1401), 1, sym_function_type, - STATE(1197), 1, - sym_for_lifetimes, - STATE(2390), 1, - sym_function_modifiers, - STATE(2415), 1, - sym_scoped_identifier, - STATE(2495), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2496), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, + STATE(2404), 1, + sym_scoped_identifier, + STATE(2472), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2479), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - ACTIONS(3119), 18, + ACTIONS(3014), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105096,11 +105142,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37648] = 3, + [37699] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2960), 10, + ACTIONS(2892), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_PLUS, @@ -105111,7 +105157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2962), 32, + ACTIONS(2894), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105144,74 +105190,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37699] = 3, + [37750] = 6, + ACTIONS(2556), 1, + anon_sym_BANG, + ACTIONS(3129), 1, + anon_sym_COLON_COLON, + STATE(1121), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1072), 10, + ACTIONS(460), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(458), 23, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_POUND, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37806] = 5, + ACTIONS(2696), 1, + anon_sym_COLON_COLON, + ACTIONS(3109), 1, anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(460), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_GT, anon_sym_AMP, - sym_metavariable, - ACTIONS(1074), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [37750] = 16, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(458), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37860] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_DASH, ACTIONS(706), 1, aux_sym_string_literal_token1, - ACTIONS(959), 1, + ACTIONS(1042), 1, anon_sym_COLON_COLON, - ACTIONS(3129), 1, + ACTIONS(3131), 1, sym_identifier, - ACTIONS(3135), 1, + ACTIONS(3137), 1, sym_metavariable, - STATE(1419), 1, + STATE(1410), 1, sym_scoped_identifier, STATE(1425), 1, sym__literal_pattern, - STATE(2373), 1, + STATE(2369), 1, sym_bracketed_type, - STATE(2544), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, @@ -105219,11 +105316,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(708), 2, anon_sym_true, anon_sym_false, - ACTIONS(3133), 3, + ACTIONS(3135), 3, sym_self, sym_super, sym_crate, - STATE(1401), 3, + STATE(1397), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, @@ -105232,7 +105329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3131), 19, + ACTIONS(3133), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105252,76 +105349,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37826] = 6, - ACTIONS(2556), 1, - anon_sym_BANG, - ACTIONS(3137), 1, - anon_sym_COLON_COLON, - STATE(1109), 1, - sym_field_initializer_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(472), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(470), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37882] = 16, + [37936] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_DASH, ACTIONS(706), 1, aux_sym_string_literal_token1, - ACTIONS(959), 1, + ACTIONS(1042), 1, anon_sym_COLON_COLON, ACTIONS(3139), 1, sym_identifier, ACTIONS(3145), 1, sym_metavariable, - STATE(1408), 1, + STATE(1413), 1, sym_scoped_identifier, - STATE(1439), 1, + STATE(1447), 1, sym__literal_pattern, - STATE(2373), 1, + STATE(2369), 1, sym_bracketed_type, - STATE(2544), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, @@ -105333,7 +105380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1401), 3, + STATE(1397), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, @@ -105362,15 +105409,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37958] = 5, - ACTIONS(2666), 1, - anon_sym_COLON_COLON, - ACTIONS(3109), 1, + [38012] = 23, + ACTIONS(624), 1, + anon_sym_RBRACK, + ACTIONS(2976), 1, + anon_sym_LBRACK, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, + ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP_AMP, + ACTIONS(3030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3070), 1, + anon_sym_EQ, + ACTIONS(3147), 1, + anon_sym_SEMI, + ACTIONS(3149), 1, + anon_sym_COMMA, + ACTIONS(3153), 1, + anon_sym_DOT_DOT, + STATE(1868), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2978), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2996), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3151), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3032), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3072), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38101] = 5, + ACTIONS(2556), 1, anon_sym_BANG, + ACTIONS(3155), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(472), 15, + ACTIONS(460), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -105386,10 +105499,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(470), 24, - anon_sym_SEMI, + ACTIONS(458), 23, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, @@ -105411,62 +105523,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38012] = 23, - ACTIONS(626), 1, - anon_sym_RBRACK, - ACTIONS(2980), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_as, - ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_EQ, - ACTIONS(3147), 1, - anon_sym_SEMI, - ACTIONS(3149), 1, - anon_sym_COMMA, - ACTIONS(3153), 1, - anon_sym_DOT_DOT, - STATE(1903), 1, - aux_sym_array_expression_repeat1, + [38154] = 5, + ACTIONS(2664), 1, + anon_sym_BANG, + ACTIONS(3157), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2622), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3000), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3014), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3151), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + anon_sym_DOT, + ACTIONS(2620), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105477,64 +105571,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38101] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3157), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, + [38207] = 4, + ACTIONS(3163), 1, anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3155), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [38150] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3161), 9, + ACTIONS(3161), 8, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, anon_sym_BANG, anon_sym_LT, - anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, ACTIONS(3159), 31, @@ -105569,11 +105618,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38199] = 3, + [38258] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3073), 9, + ACTIONS(3060), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -105583,7 +105632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3071), 31, + ACTIONS(3058), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105615,59 +105664,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38248] = 5, - ACTIONS(2680), 1, - anon_sym_BANG, - ACTIONS(3163), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2628), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2626), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38301] = 3, + [38307] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2976), 9, + ACTIONS(3167), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -105677,120 +105678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2974), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [38350] = 23, - ACTIONS(368), 1, - anon_sym_RBRACK, - ACTIONS(2980), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_as, - ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_EQ, - ACTIONS(3153), 1, - anon_sym_DOT_DOT, - ACTIONS(3165), 1, - anon_sym_SEMI, - ACTIONS(3167), 1, - anon_sym_COMMA, - STATE(1973), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3151), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3012), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3065), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38439] = 4, - ACTIONS(3173), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3171), 8, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3169), 31, + ACTIONS(3165), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105822,11 +105710,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38490] = 3, + [38356] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2594), 16, + ACTIONS(2606), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -105843,7 +105731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2596), 24, + ACTIONS(2608), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -105868,42 +105756,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38539] = 3, + [38405] = 23, + ACTIONS(374), 1, + anon_sym_RBRACK, + ACTIONS(2976), 1, + anon_sym_LBRACK, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, + ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP_AMP, + ACTIONS(3030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3070), 1, + anon_sym_EQ, + ACTIONS(3153), 1, + anon_sym_DOT_DOT, + ACTIONS(3169), 1, + anon_sym_SEMI, + ACTIONS(3171), 1, + anon_sym_COMMA, + STATE(1974), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 16, + ACTIONS(2978), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2584), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COLON_COLON, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105914,13 +105822,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38588] = 4, - ACTIONS(3175), 1, + [38494] = 4, + ACTIONS(3173), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3171), 8, + ACTIONS(3161), 8, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, @@ -105929,7 +105837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3169), 31, + ACTIONS(3159), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105961,11 +105869,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38639] = 3, + [38545] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3179), 9, + ACTIONS(3177), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -105975,7 +105883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3177), 31, + ACTIONS(3175), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106007,11 +105915,57 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38688] = 3, + [38594] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 16, + ACTIONS(3181), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3179), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38643] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2614), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -106028,7 +105982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2612), 24, + ACTIONS(2616), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106053,11 +106007,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38737] = 3, + [38692] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 16, + ACTIONS(2582), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -106074,7 +106028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2576), 24, + ACTIONS(2584), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106099,17 +106053,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38786] = 5, - ACTIONS(2556), 1, + [38741] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3042), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, anon_sym_BANG, - ACTIONS(3181), 1, + anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3040), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [38790] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(472), 15, + ACTIONS(2574), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -106123,12 +106120,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(470), 23, + ACTIONS(2576), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -106148,12 +106146,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [38839] = 4, - ACTIONS(2684), 1, + ACTIONS(2700), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2686), 15, + ACTIONS(2702), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106169,7 +106167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2682), 23, + ACTIONS(2698), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106194,12 +106192,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [38889] = 4, - ACTIONS(2708), 1, + ACTIONS(2712), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2686), 15, + ACTIONS(2702), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106215,7 +106213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2682), 23, + ACTIONS(2698), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106239,77 +106237,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38939] = 22, - ACTIONS(390), 1, - anon_sym_RPAREN, - ACTIONS(2980), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_as, - ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_EQ, - ACTIONS(3153), 1, - anon_sym_DOT_DOT, + [38939] = 4, ACTIONS(3183), 1, - anon_sym_COMMA, - STATE(1863), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3151), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3012), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3065), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [39025] = 4, - ACTIONS(3163), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 15, + ACTIONS(460), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106325,7 +106259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2626), 23, + ACTIONS(458), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106349,60 +106283,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39075] = 22, - ACTIONS(2980), 1, + [38989] = 22, + ACTIONS(396), 1, + anon_sym_RPAREN, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, ACTIONS(3185), 1, - anon_sym_RPAREN, - ACTIONS(3187), 1, anon_sym_COMMA, - STATE(1880), 1, + STATE(1976), 1, aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106413,13 +106347,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39161] = 4, - ACTIONS(3189), 1, + [39075] = 4, + ACTIONS(3157), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(472), 15, + ACTIONS(2622), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106435,7 +106369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(470), 23, + ACTIONS(2620), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106459,48 +106393,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39211] = 18, + [39125] = 18, ACTIONS(77), 1, anon_sym_LT, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(866), 1, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(3032), 1, + ACTIONS(3020), 1, sym_metavariable, - ACTIONS(3113), 1, + ACTIONS(3125), 1, anon_sym_default, - ACTIONS(3191), 1, + ACTIONS(3187), 1, sym_identifier, - ACTIONS(3193), 1, + ACTIONS(3189), 1, anon_sym_fn, - STATE(1827), 1, + STATE(1818), 1, sym_scoped_type_identifier, - STATE(2331), 1, - sym_function_modifiers, - STATE(2368), 1, - sym_generic_type, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, - STATE(2438), 1, + STATE(2404), 1, sym_scoped_identifier, + STATE(2413), 1, + sym_function_modifiers, + STATE(2488), 1, + sym_generic_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, sym_super, sym_crate, - ACTIONS(3026), 18, + ACTIONS(3014), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106519,179 +106453,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [39289] = 18, + [39203] = 18, ACTIONS(77), 1, anon_sym_LT, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(866), 1, + ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(3032), 1, + ACTIONS(3020), 1, sym_metavariable, - ACTIONS(3113), 1, + ACTIONS(3125), 1, anon_sym_default, - ACTIONS(3195), 1, + ACTIONS(3191), 1, sym_identifier, - ACTIONS(3197), 1, + ACTIONS(3193), 1, anon_sym_fn, - STATE(1791), 1, + STATE(1792), 1, sym_scoped_type_identifier, - STATE(2368), 1, - sym_generic_type, - STATE(2382), 1, + STATE(2378), 1, sym_bracketed_type, - STATE(2383), 1, + STATE(2379), 1, sym_generic_type_with_turbofish, - STATE(2417), 1, + STATE(2394), 1, sym_function_modifiers, - STATE(2438), 1, + STATE(2404), 1, sym_scoped_identifier, + STATE(2488), 1, + sym_generic_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1553), 2, + STATE(1526), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(872), 3, + ACTIONS(876), 3, sym_self, - sym_super, - sym_crate, - ACTIONS(3026), 18, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_union, - [39367] = 20, - ACTIONS(2980), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_as, - ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_EQ, - ACTIONS(3153), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3151), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3199), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2984), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3012), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3065), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [39448] = 21, - ACTIONS(2980), 1, + sym_super, + sym_crate, + ACTIONS(3014), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [39281] = 22, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3201), 1, - anon_sym_SEMI, - ACTIONS(3203), 1, - anon_sym_else, + ACTIONS(3195), 1, + anon_sym_RPAREN, + ACTIONS(3197), 1, + anon_sym_COMMA, + STATE(2096), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106702,52 +106577,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39531] = 18, - ACTIONS(2980), 1, + [39367] = 18, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3087), 1, + ACTIONS(3046), 1, anon_sym_EQ, - ACTIONS(3211), 1, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3215), 1, + ACTIONS(3209), 1, anon_sym_DOT_DOT, - ACTIONS(3217), 1, + ACTIONS(3211), 1, anon_sym_AMP_AMP, - ACTIONS(3219), 1, + ACTIONS(3213), 1, anon_sym_PIPE_PIPE, - ACTIONS(3221), 1, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3223), 1, + ACTIONS(3217), 1, anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3213), 2, + ACTIONS(3207), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3227), 2, + ACTIONS(3221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3207), 3, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3085), 13, + ACTIONS(3044), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -106761,47 +106636,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39608] = 10, - ACTIONS(2980), 1, + [39444] = 21, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3215), 1, + ACTIONS(3028), 1, + anon_sym_AMP_AMP, + ACTIONS(3030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3070), 1, + anon_sym_EQ, + ACTIONS(3153), 1, anon_sym_DOT_DOT, + ACTIONS(3223), 1, + anon_sym_SEMI, + ACTIONS(3225), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(2996), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3207), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2982), 8, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2978), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106812,43 +106698,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39669] = 12, - ACTIONS(2980), 1, + [39527] = 7, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3215), 1, + ACTIONS(3209), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3207), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3227), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3207), 3, + ACTIONS(3105), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2982), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2978), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3103), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, + anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -106865,58 +106746,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39734] = 21, - ACTIONS(2980), 1, + [39582] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3211), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3213), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(3217), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3227), 1, anon_sym_EQ, - ACTIONS(3153), 1, - anon_sym_DOT_DOT, - ACTIONS(3229), 1, - anon_sym_SEMI, ACTIONS(3231), 1, - anon_sym_RBRACE, + anon_sym_DOT_DOT, + STATE(1127), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(3221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3151), 2, + ACTIONS(3229), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106927,58 +106808,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39817] = 21, - ACTIONS(2980), 1, + [39665] = 21, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3233), 1, - anon_sym_SEMI, ACTIONS(3235), 1, + anon_sym_SEMI, + ACTIONS(3237), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106989,41 +106870,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39900] = 13, - ACTIONS(2980), 1, + [39748] = 8, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3215), 1, + ACTIONS(3209), 1, anon_sym_DOT_DOT, - ACTIONS(3223), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3207), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3227), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3207), 3, + ACTIONS(2984), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2982), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2978), 19, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2974), 19, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -107043,54 +106919,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39967] = 17, - ACTIONS(2980), 1, + [39805] = 21, + ACTIONS(2976), 1, anon_sym_LBRACK, ACTIONS(2982), 1, - anon_sym_EQ, - ACTIONS(2986), 1, anon_sym_as, - ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(3211), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(3215), 1, - anon_sym_DOT_DOT, - ACTIONS(3217), 1, - anon_sym_AMP_AMP, - ACTIONS(3221), 1, + ACTIONS(2992), 1, anon_sym_PIPE, - ACTIONS(3223), 1, + ACTIONS(2994), 1, anon_sym_CARET, + ACTIONS(2998), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP_AMP, + ACTIONS(3030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3070), 1, + anon_sym_EQ, + ACTIONS(3153), 1, + anon_sym_DOT_DOT, + ACTIONS(3239), 1, + anon_sym_SEMI, + ACTIONS(3241), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, + ACTIONS(2996), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3213), 2, + ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3227), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3207), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2978), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107101,53 +106981,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40042] = 16, - ACTIONS(2980), 1, + [39888] = 18, + ACTIONS(2976), 1, anon_sym_LBRACK, ACTIONS(2982), 1, - anon_sym_EQ, - ACTIONS(2986), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3211), 1, + ACTIONS(3101), 1, + anon_sym_EQ, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3215), 1, + ACTIONS(3209), 1, anon_sym_DOT_DOT, - ACTIONS(3221), 1, + ACTIONS(3211), 1, + anon_sym_AMP_AMP, + ACTIONS(3213), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3223), 1, + ACTIONS(3217), 1, anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3213), 2, + ACTIONS(3207), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3227), 2, + ACTIONS(3221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3207), 3, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2978), 15, + ACTIONS(3099), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107158,58 +107040,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40115] = 21, - ACTIONS(2980), 1, + [39965] = 21, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3237), 1, - anon_sym_RPAREN, - ACTIONS(3239), 1, - anon_sym_COMMA, + ACTIONS(3243), 1, + anon_sym_SEMI, + ACTIONS(3245), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107220,97 +107102,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40198] = 11, - ACTIONS(2980), 1, + [40048] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3247), 1, + sym_identifier, + ACTIONS(3249), 1, + anon_sym_LBRACE, + ACTIONS(3251), 1, + anon_sym_RBRACE, + ACTIONS(3253), 1, + anon_sym_STAR, + ACTIONS(3257), 1, + anon_sym_COMMA, + ACTIONS(3259), 1, + anon_sym_COLON_COLON, + ACTIONS(3263), 1, + sym_metavariable, + STATE(1749), 1, + sym_scoped_identifier, + STATE(2457), 1, + sym_generic_type_with_turbofish, + STATE(2527), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3261), 3, + sym_self, + sym_super, + sym_crate, + STATE(1951), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3255), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [40119] = 7, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3215), 1, + ACTIONS(3209), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3213), 2, + ACTIONS(3207), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3227), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3207), 3, + ACTIONS(3002), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2982), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2978), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40261] = 14, - ACTIONS(2980), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_as, - ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3215), 1, - anon_sym_DOT_DOT, - ACTIONS(3221), 1, - anon_sym_PIPE, - ACTIONS(3223), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3213), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2982), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3207), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2978), 19, + ACTIONS(3000), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, + anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -107327,55 +107206,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40330] = 18, - ACTIONS(2980), 1, + [40174] = 21, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3107), 1, - anon_sym_EQ, - ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3215), 1, - anon_sym_DOT_DOT, - ACTIONS(3217), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3219), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3221), 1, - anon_sym_PIPE, - ACTIONS(3223), 1, - anon_sym_CARET, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3070), 1, + anon_sym_EQ, + ACTIONS(3153), 1, + anon_sym_DOT_DOT, + ACTIONS(3265), 1, + anon_sym_SEMI, + ACTIONS(3267), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, + ACTIONS(2996), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3213), 2, + ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3227), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3207), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3105), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107386,58 +107268,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40407] = 21, - ACTIONS(272), 1, - anon_sym_RBRACE, - ACTIONS(2980), 1, + [40257] = 21, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3211), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3213), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(3217), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3227), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3231), 1, anon_sym_DOT_DOT, - ACTIONS(3229), 1, - anon_sym_SEMI, + ACTIONS(3269), 1, + anon_sym_LBRACE, + STATE(60), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(3221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3151), 2, + ACTIONS(3229), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107448,108 +107330,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40490] = 9, - ACTIONS(2980), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_as, - ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(3215), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3213), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3207), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2982), 10, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2978), 19, - anon_sym_LPAREN, + [40340] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40549] = 21, - ACTIONS(2980), 1, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3211), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3213), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(3217), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3227), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3231), 1, anon_sym_DOT_DOT, - ACTIONS(3229), 1, - anon_sym_SEMI, - ACTIONS(3241), 1, - anon_sym_RBRACE, + STATE(69), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(3221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3151), 2, + ACTIONS(3229), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107560,44 +107392,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40632] = 7, - ACTIONS(2980), 1, + [40423] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3215), 1, + ACTIONS(3028), 1, + anon_sym_AMP_AMP, + ACTIONS(3030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3070), 1, + anon_sym_EQ, + ACTIONS(3153), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3213), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3044), 13, + ACTIONS(2978), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3151), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3271), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2980), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3042), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107608,58 +107453,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40687] = 21, - ACTIONS(264), 1, + [40504] = 21, + ACTIONS(270), 1, anon_sym_RBRACE, - ACTIONS(2980), 1, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3229), 1, + ACTIONS(3243), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107670,58 +107515,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40770] = 21, - ACTIONS(2980), 1, + [40587] = 21, + ACTIONS(632), 1, + anon_sym_LBRACE, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3211), 1, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3219), 1, + ACTIONS(3211), 1, + anon_sym_AMP_AMP, + ACTIONS(3213), 1, anon_sym_PIPE_PIPE, - ACTIONS(3221), 1, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3223), 1, + ACTIONS(3217), 1, anon_sym_CARET, - ACTIONS(3243), 1, - anon_sym_LBRACE, - ACTIONS(3245), 1, + ACTIONS(3227), 1, anon_sym_EQ, - ACTIONS(3249), 1, + ACTIONS(3231), 1, anon_sym_DOT_DOT, - ACTIONS(3251), 1, - anon_sym_AMP_AMP, - STATE(1867), 1, - aux_sym_let_chain_repeat1, + STATE(229), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3227), 2, + ACTIONS(3221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3229), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3207), 3, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3253), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107732,57 +107577,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40853] = 20, - ACTIONS(2980), 1, + [40670] = 21, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3215), 1, - anon_sym_DOT_DOT, - ACTIONS(3217), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3219), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3221), 1, - anon_sym_PIPE, - ACTIONS(3223), 1, - anon_sym_CARET, - ACTIONS(3245), 1, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3070), 1, anon_sym_EQ, + ACTIONS(3153), 1, + anon_sym_DOT_DOT, + ACTIONS(3273), 1, + anon_sym_RBRACE, + ACTIONS(3275), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3101), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3205), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, + ACTIONS(2996), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3213), 2, + ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3227), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3207), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3253), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107793,55 +107639,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40934] = 18, - ACTIONS(288), 1, - anon_sym_EQ, - ACTIONS(2980), 1, + [40753] = 21, + ACTIONS(272), 1, + anon_sym_RBRACE, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3215), 1, - anon_sym_DOT_DOT, - ACTIONS(3217), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3219), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3221), 1, - anon_sym_PIPE, - ACTIONS(3223), 1, - anon_sym_CARET, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3070), 1, + anon_sym_EQ, + ACTIONS(3153), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, + ACTIONS(2996), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3213), 2, + ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3227), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3207), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(282), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107852,58 +107701,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41011] = 21, - ACTIONS(2980), 1, + [40836] = 21, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3211), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3213), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(3217), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3227), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3231), 1, anon_sym_DOT_DOT, - ACTIONS(3229), 1, - anon_sym_SEMI, - ACTIONS(3255), 1, - anon_sym_RBRACE, + ACTIONS(3277), 1, + anon_sym_LBRACE, + STATE(985), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(3221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3151), 2, + ACTIONS(3229), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107914,58 +107763,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41094] = 21, - ACTIONS(2980), 1, + [40919] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(3006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, + ACTIONS(2992), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(2994), 1, anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(2998), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP_AMP, + ACTIONS(3030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_EQ_GT, - ACTIONS(3257), 1, - anon_sym_AMP_AMP, - STATE(2023), 1, - aux_sym_let_chain_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(3279), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107976,58 +107824,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41177] = 21, - ACTIONS(2980), 1, + [41000] = 21, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3259), 1, + ACTIONS(3243), 1, + anon_sym_SEMI, + ACTIONS(3281), 1, anon_sym_RBRACE, - ACTIONS(3261), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108038,58 +107886,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41260] = 21, - ACTIONS(266), 1, - anon_sym_RBRACE, - ACTIONS(2980), 1, + [41083] = 21, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3229), 1, + ACTIONS(3243), 1, anon_sym_SEMI, + ACTIONS(3283), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108100,58 +107948,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41343] = 21, - ACTIONS(260), 1, - anon_sym_RBRACE, - ACTIONS(2980), 1, + [41166] = 18, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(3076), 1, + anon_sym_EQ, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3209), 1, + anon_sym_DOT_DOT, + ACTIONS(3211), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3213), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(3217), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_EQ, - ACTIONS(3153), 1, - anon_sym_DOT_DOT, - ACTIONS(3229), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3014), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3151), 2, + ACTIONS(3207), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(3221), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3074), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108162,57 +108007,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41426] = 20, - ACTIONS(2980), 1, + [41243] = 21, + ACTIONS(632), 1, + anon_sym_LBRACE, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3211), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3213), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(3217), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3227), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3231), 1, anon_sym_DOT_DOT, + STATE(224), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(3221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3151), 2, + ACTIONS(3229), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3263), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2984), 3, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108223,57 +108069,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41507] = 20, - ACTIONS(2980), 1, + [41326] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3265), 2, - anon_sym_RBRACE, + ACTIONS(3285), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108284,58 +108130,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41588] = 21, - ACTIONS(2980), 1, + [41407] = 10, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3217), 1, - anon_sym_AMP_AMP, - ACTIONS(3219), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3221), 1, - anon_sym_PIPE, - ACTIONS(3223), 1, - anon_sym_CARET, - ACTIONS(3245), 1, - anon_sym_EQ, - ACTIONS(3249), 1, + ACTIONS(3209), 1, anon_sym_DOT_DOT, - ACTIONS(3267), 1, - anon_sym_LBRACE, - STATE(1092), 1, - sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3227), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3207), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3207), 3, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(2984), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2974), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108346,54 +108181,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41671] = 17, - ACTIONS(2980), 1, + [41468] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, ACTIONS(2982), 1, - anon_sym_EQ, - ACTIONS(2986), 1, anon_sym_as, - ACTIONS(2990), 1, - anon_sym_DOT_DOT, - ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(3008), 1, + ACTIONS(2992), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(2994), 1, anon_sym_CARET, + ACTIONS(2998), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP_AMP, + ACTIONS(3030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3070), 1, + anon_sym_EQ, + ACTIONS(3153), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2988), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(2984), 3, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3151), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3287), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2978), 13, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108404,57 +108242,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41746] = 20, - ACTIONS(2980), 1, + [41549] = 21, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, + ACTIONS(3289), 1, + anon_sym_RPAREN, + ACTIONS(3291), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3272), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108465,58 +108304,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41827] = 21, - ACTIONS(2980), 1, + [41632] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3274), 1, - anon_sym_RPAREN, - ACTIONS(3276), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(3293), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108527,55 +108365,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41910] = 18, - ACTIONS(2980), 1, + [41713] = 21, + ACTIONS(107), 1, + anon_sym_RBRACE, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, - anon_sym_DOT, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, ACTIONS(2998), 1, - anon_sym_EQ, - ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3215), 1, - anon_sym_DOT_DOT, - ACTIONS(3217), 1, + anon_sym_DOT, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3219), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3221), 1, - anon_sym_PIPE, - ACTIONS(3223), 1, - anon_sym_CARET, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3070), 1, + anon_sym_EQ, + ACTIONS(3153), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, + ACTIONS(2996), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3213), 2, + ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3227), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3207), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2994), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108586,58 +108427,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41987] = 21, - ACTIONS(2980), 1, + [41796] = 21, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3278), 1, - anon_sym_SEMI, - ACTIONS(3280), 1, - anon_sym_else, + ACTIONS(3295), 1, + anon_sym_RBRACE, + ACTIONS(3297), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108648,57 +108489,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42070] = 20, - ACTIONS(2980), 1, + [41879] = 21, + ACTIONS(274), 1, + anon_sym_RBRACE, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, + ACTIONS(3243), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3282), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108709,58 +108551,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42151] = 21, - ACTIONS(2980), 1, + [41962] = 21, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3229), 1, + ACTIONS(3299), 1, anon_sym_SEMI, - ACTIONS(3284), 1, - anon_sym_RBRACE, + ACTIONS(3301), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108771,38 +108613,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42234] = 7, - ACTIONS(2980), 1, + [42045] = 12, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2992), 1, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3215), 1, + ACTIONS(3205), 1, + anon_sym_AMP, + ACTIONS(3209), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3213), 2, + ACTIONS(3199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3207), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3036), 13, - anon_sym_PLUS, + ACTIONS(3221), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3201), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2984), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3034), 20, + ACTIONS(2974), 19, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, - anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -108819,58 +108666,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42289] = 21, - ACTIONS(274), 1, - anon_sym_RBRACE, - ACTIONS(2980), 1, + [42110] = 21, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3229), 1, + ACTIONS(3303), 1, anon_sym_SEMI, + ACTIONS(3305), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108881,58 +108728,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42372] = 21, - ACTIONS(632), 1, - anon_sym_LBRACE, - ACTIONS(2980), 1, + [42193] = 21, + ACTIONS(594), 1, + anon_sym_RPAREN, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3217), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3219), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3221), 1, - anon_sym_PIPE, - ACTIONS(3223), 1, - anon_sym_CARET, - ACTIONS(3245), 1, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3070), 1, anon_sym_EQ, - ACTIONS(3249), 1, + ACTIONS(3153), 1, anon_sym_DOT_DOT, - STATE(218), 1, - sym_block, + ACTIONS(3307), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3227), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3207), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3253), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108943,55 +108790,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42455] = 18, - ACTIONS(2980), 1, + [42276] = 13, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3040), 1, - anon_sym_EQ, - ACTIONS(3211), 1, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3215), 1, + ACTIONS(3209), 1, anon_sym_DOT_DOT, ACTIONS(3217), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3207), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3221), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3201), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2984), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(2974), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, - ACTIONS(3219), 1, anon_sym_PIPE_PIPE, - ACTIONS(3221), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [42343] = 17, + ACTIONS(2976), 1, + anon_sym_LBRACK, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2984), 1, + anon_sym_EQ, + ACTIONS(2998), 1, + anon_sym_DOT, + ACTIONS(3205), 1, + anon_sym_AMP, + ACTIONS(3209), 1, + anon_sym_DOT_DOT, + ACTIONS(3211), 1, + anon_sym_AMP_AMP, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3223), 1, + ACTIONS(3217), 1, anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3213), 2, + ACTIONS(3207), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3227), 2, + ACTIONS(3221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3207), 3, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3038), 13, + ACTIONS(2974), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109002,58 +108902,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42532] = 21, - ACTIONS(632), 1, + [42418] = 21, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(2980), 1, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3211), 1, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3217), 1, + ACTIONS(3211), 1, anon_sym_AMP_AMP, - ACTIONS(3219), 1, + ACTIONS(3213), 1, anon_sym_PIPE_PIPE, - ACTIONS(3221), 1, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3223), 1, + ACTIONS(3217), 1, anon_sym_CARET, - ACTIONS(3245), 1, + ACTIONS(3227), 1, anon_sym_EQ, - ACTIONS(3249), 1, + ACTIONS(3231), 1, anon_sym_DOT_DOT, - STATE(220), 1, + STATE(870), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3227), 2, + ACTIONS(3221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3229), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3207), 3, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3253), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109064,58 +108964,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42615] = 21, - ACTIONS(2980), 1, + [42501] = 18, + ACTIONS(288), 1, + anon_sym_EQ, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3209), 1, + anon_sym_DOT_DOT, + ACTIONS(3211), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3213), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(3217), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_EQ, - ACTIONS(3153), 1, - anon_sym_DOT_DOT, - ACTIONS(3229), 1, - anon_sym_SEMI, - ACTIONS(3286), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3014), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3151), 2, + ACTIONS(3207), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(3221), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(282), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109126,58 +109023,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42698] = 21, - ACTIONS(2980), 1, + [42578] = 21, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3288), 1, + ACTIONS(3243), 1, + anon_sym_SEMI, + ACTIONS(3309), 1, anon_sym_RBRACE, - ACTIONS(3290), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109188,58 +109085,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42781] = 21, - ACTIONS(2980), 1, + [42661] = 16, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2984), 1, + anon_sym_EQ, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, + ACTIONS(3209), 1, + anon_sym_DOT_DOT, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(3217), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_EQ, - ACTIONS(3153), 1, - anon_sym_DOT_DOT, - ACTIONS(3292), 1, - anon_sym_SEMI, - ACTIONS(3294), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3014), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3151), 2, + ACTIONS(3207), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(3221), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(2974), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109250,58 +109142,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42864] = 21, - ACTIONS(2980), 1, + [42734] = 11, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3217), 1, - anon_sym_AMP_AMP, - ACTIONS(3219), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3221), 1, - anon_sym_PIPE, - ACTIONS(3223), 1, - anon_sym_CARET, - ACTIONS(3245), 1, - anon_sym_EQ, - ACTIONS(3249), 1, + ACTIONS(3209), 1, anon_sym_DOT_DOT, - ACTIONS(3296), 1, - anon_sym_LBRACE, - STATE(81), 1, - sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3227), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3207), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3207), 3, + ACTIONS(3221), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(2984), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(2974), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109312,58 +109194,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42947] = 21, - ACTIONS(2980), 1, + [42797] = 21, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3229), 1, + ACTIONS(3243), 1, anon_sym_SEMI, - ACTIONS(3298), 1, + ACTIONS(3311), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109374,58 +109256,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43030] = 21, - ACTIONS(2980), 1, + [42880] = 21, + ACTIONS(612), 1, + anon_sym_RPAREN, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3217), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3219), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3221), 1, - anon_sym_PIPE, - ACTIONS(3223), 1, - anon_sym_CARET, - ACTIONS(3245), 1, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3070), 1, anon_sym_EQ, - ACTIONS(3249), 1, + ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3300), 1, - anon_sym_LBRACE, - STATE(221), 1, - sym_match_block, + ACTIONS(3307), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3227), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3207), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3253), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109436,58 +109318,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43113] = 21, - ACTIONS(278), 1, - anon_sym_RBRACE, - ACTIONS(2980), 1, + [42963] = 14, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, + ACTIONS(3209), 1, + anon_sym_DOT_DOT, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(3217), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_EQ, - ACTIONS(3153), 1, - anon_sym_DOT_DOT, - ACTIONS(3229), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3151), 2, + ACTIONS(3207), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(3221), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(2984), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(2974), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109498,44 +109373,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43196] = 7, - ACTIONS(2980), 1, + [43032] = 21, + ACTIONS(2976), 1, anon_sym_LBRACK, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3215), 1, + ACTIONS(3028), 1, + anon_sym_AMP_AMP, + ACTIONS(3030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3070), 1, + anon_sym_EQ, + ACTIONS(3153), 1, anon_sym_DOT_DOT, + ACTIONS(3307), 1, + anon_sym_COMMA, + ACTIONS(3313), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3213), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3091), 13, + ACTIONS(2978), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3089), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3151), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109546,45 +109435,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43251] = 8, - ACTIONS(2980), 1, + [43115] = 21, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3215), 1, + ACTIONS(3028), 1, + anon_sym_AMP_AMP, + ACTIONS(3030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3070), 1, + anon_sym_EQ, + ACTIONS(3153), 1, anon_sym_DOT_DOT, + ACTIONS(3315), 1, + anon_sym_SEMI, + ACTIONS(3317), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3213), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2982), 13, + ACTIONS(2978), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3151), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2980), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2978), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109595,110 +109497,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43308] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3302), 1, - sym_identifier, - ACTIONS(3304), 1, - anon_sym_LBRACE, - ACTIONS(3306), 1, - anon_sym_RBRACE, - ACTIONS(3308), 1, - anon_sym_STAR, - ACTIONS(3312), 1, - anon_sym_COMMA, - ACTIONS(3314), 1, - anon_sym_COLON_COLON, - ACTIONS(3318), 1, - sym_metavariable, - STATE(1709), 1, - sym_scoped_identifier, - STATE(2463), 1, - sym_bracketed_type, - STATE(2544), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3316), 3, - sym_self, - sym_super, - sym_crate, - STATE(1924), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3310), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [43379] = 17, - ACTIONS(2980), 1, + [43198] = 18, + ACTIONS(2976), 1, anon_sym_LBRACK, ACTIONS(2982), 1, - anon_sym_EQ, - ACTIONS(2986), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3211), 1, + ACTIONS(3094), 1, + anon_sym_EQ, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3215), 1, + ACTIONS(3209), 1, anon_sym_DOT_DOT, - ACTIONS(3221), 1, + ACTIONS(3211), 1, + anon_sym_AMP_AMP, + ACTIONS(3213), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3223), 1, + ACTIONS(3217), 1, anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3213), 2, + ACTIONS(3207), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3227), 2, + ACTIONS(3221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - ACTIONS(3207), 3, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2978), 13, + ACTIONS(3092), 13, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_QMARK, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109709,58 +109556,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43454] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(2980), 1, + [43275] = 21, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3211), 1, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3217), 1, + ACTIONS(3211), 1, anon_sym_AMP_AMP, - ACTIONS(3219), 1, + ACTIONS(3213), 1, anon_sym_PIPE_PIPE, - ACTIONS(3221), 1, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3223), 1, + ACTIONS(3217), 1, anon_sym_CARET, - ACTIONS(3245), 1, + ACTIONS(3227), 1, anon_sym_EQ, - ACTIONS(3249), 1, + ACTIONS(3231), 1, anon_sym_DOT_DOT, - STATE(879), 1, - sym_block, + ACTIONS(3319), 1, + anon_sym_LBRACE, + STATE(215), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3227), 2, + ACTIONS(3221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3229), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3207), 3, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3253), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109771,58 +109618,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43537] = 21, - ACTIONS(2980), 1, + [43358] = 9, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(3209), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3207), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3201), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2984), 10, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3004), 1, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2974), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, - ACTIONS(3006), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [43417] = 20, + ACTIONS(2976), 1, + anon_sym_LBRACK, + ACTIONS(2982), 1, + anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, + ACTIONS(2992), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(2994), 1, anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(2998), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP_AMP, + ACTIONS(3030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3320), 1, - anon_sym_SEMI, - ACTIONS(3322), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(3321), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109833,58 +109729,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43620] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2980), 1, + [43498] = 21, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3217), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3219), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3221), 1, - anon_sym_PIPE, - ACTIONS(3223), 1, - anon_sym_CARET, - ACTIONS(3245), 1, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3070), 1, anon_sym_EQ, - ACTIONS(3249), 1, + ACTIONS(3153), 1, anon_sym_DOT_DOT, - STATE(78), 1, - sym_block, + ACTIONS(3323), 1, + anon_sym_SEMI, + ACTIONS(3325), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3227), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3207), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3253), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109895,58 +109791,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43703] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(2980), 1, + [43581] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3217), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3219), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3221), 1, - anon_sym_PIPE, - ACTIONS(3223), 1, - anon_sym_CARET, - ACTIONS(3245), 1, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3070), 1, anon_sym_EQ, - ACTIONS(3249), 1, + ACTIONS(3153), 1, anon_sym_DOT_DOT, - STATE(1051), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3227), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3207), 3, + ACTIONS(3327), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3253), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109957,58 +109852,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43786] = 21, - ACTIONS(604), 1, - anon_sym_RPAREN, - ACTIONS(2980), 1, + [43662] = 7, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3209), 1, anon_sym_DOT_DOT, - ACTIONS(3276), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(3207), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3064), 13, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3000), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(3014), 2, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3151), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3062), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110019,57 +109900,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43869] = 20, - ACTIONS(2980), 1, + [43717] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3324), 2, + ACTIONS(3329), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110080,57 +109961,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43950] = 20, - ACTIONS(2980), 1, + [43798] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3326), 2, + ACTIONS(3331), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110141,58 +110022,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44031] = 21, - ACTIONS(2980), 1, + [43879] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3209), 1, + anon_sym_DOT_DOT, + ACTIONS(3211), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3213), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(3217), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3227), 1, anon_sym_EQ, - ACTIONS(3153), 1, - anon_sym_DOT_DOT, - ACTIONS(3328), 1, - anon_sym_SEMI, - ACTIONS(3330), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(3066), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3014), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3151), 2, + ACTIONS(3207), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(3221), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110203,58 +110083,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44114] = 21, - ACTIONS(418), 1, - anon_sym_RPAREN, - ACTIONS(2980), 1, + [43960] = 21, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3276), 1, - anon_sym_COMMA, + ACTIONS(3243), 1, + anon_sym_SEMI, + ACTIONS(3333), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110265,58 +110145,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44197] = 21, - ACTIONS(2980), 1, + [44043] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3332), 1, - anon_sym_SEMI, - ACTIONS(3334), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(3335), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110327,58 +110206,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44280] = 21, + [44124] = 21, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2980), 1, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3211), 1, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3217), 1, + ACTIONS(3211), 1, anon_sym_AMP_AMP, - ACTIONS(3219), 1, + ACTIONS(3213), 1, anon_sym_PIPE_PIPE, - ACTIONS(3221), 1, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3223), 1, + ACTIONS(3217), 1, anon_sym_CARET, - ACTIONS(3245), 1, + ACTIONS(3227), 1, anon_sym_EQ, - ACTIONS(3249), 1, + ACTIONS(3231), 1, anon_sym_DOT_DOT, - STATE(88), 1, + STATE(65), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3227), 2, + ACTIONS(3221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3229), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3207), 3, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3253), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110389,55 +110268,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44363] = 18, - ACTIONS(2980), 1, + [44207] = 21, + ACTIONS(109), 1, + anon_sym_RBRACE, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3069), 1, - anon_sym_EQ, - ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3215), 1, - anon_sym_DOT_DOT, - ACTIONS(3217), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3219), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3221), 1, - anon_sym_PIPE, - ACTIONS(3223), 1, - anon_sym_CARET, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3070), 1, + anon_sym_EQ, + ACTIONS(3153), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, + ACTIONS(2996), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3213), 2, + ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3227), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3207), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3067), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110448,57 +110330,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44440] = 20, - ACTIONS(2980), 1, + [44290] = 21, + ACTIONS(276), 1, + anon_sym_RBRACE, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3215), 1, - anon_sym_DOT_DOT, - ACTIONS(3217), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3219), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3221), 1, - anon_sym_PIPE, - ACTIONS(3223), 1, - anon_sym_CARET, - ACTIONS(3245), 1, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3070), 1, anon_sym_EQ, + ACTIONS(3153), 1, + anon_sym_DOT_DOT, + ACTIONS(3243), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3059), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3205), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, + ACTIONS(2996), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3026), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3213), 2, + ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3227), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3207), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3253), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110509,57 +110392,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44521] = 20, - ACTIONS(2980), 1, + [44373] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3209), 1, + anon_sym_DOT_DOT, + ACTIONS(3211), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3213), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(3217), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3227), 1, anon_sym_EQ, - ACTIONS(3153), 1, - anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(3107), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3014), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3151), 2, + ACTIONS(3207), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3336), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2984), 3, + ACTIONS(3221), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110570,57 +110453,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44602] = 20, - ACTIONS(2980), 1, + [44454] = 18, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(3024), 1, + anon_sym_EQ, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3209), 1, + anon_sym_DOT_DOT, + ACTIONS(3211), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3213), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(3217), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, - anon_sym_EQ, - ACTIONS(3153), 1, - anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3014), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3151), 2, + ACTIONS(3207), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3338), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2984), 3, + ACTIONS(3221), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3022), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110631,57 +110512,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44683] = 20, - ACTIONS(2980), 1, + [44531] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, + ACTIONS(3337), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3340), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110692,58 +110572,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44764] = 21, - ACTIONS(2980), 1, + [44611] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3342), 1, - anon_sym_SEMI, - ACTIONS(3344), 1, - anon_sym_else, + ACTIONS(3339), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110754,55 +110632,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44847] = 19, - ACTIONS(2980), 1, + [44691] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(3006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, + ACTIONS(2992), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(2994), 1, anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(2998), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP_AMP, + ACTIONS(3030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, + ACTIONS(3243), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3346), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110813,56 +110692,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44925] = 20, - ACTIONS(2980), 1, + [44771] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3348), 1, - anon_sym_COMMA, + ACTIONS(3341), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110873,56 +110752,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45005] = 20, - ACTIONS(2980), 1, + [44851] = 19, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3213), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(3217), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3227), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3231), 1, anon_sym_DOT_DOT, - ACTIONS(3350), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(3221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3151), 2, + ACTIONS(3229), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(3343), 2, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110933,56 +110811,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45085] = 20, - ACTIONS(2980), 1, + [44929] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3352), 1, - anon_sym_RBRACK, + ACTIONS(3345), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110993,56 +110871,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45165] = 20, - ACTIONS(2980), 1, + [45009] = 19, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3213), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(3217), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3227), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3231), 1, anon_sym_DOT_DOT, - ACTIONS(3354), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(3221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3151), 2, + ACTIONS(3229), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(3347), 2, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111053,55 +110930,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45245] = 19, - ACTIONS(2980), 1, + [45087] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3211), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(3219), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3221), 1, + ACTIONS(2992), 1, anon_sym_PIPE, - ACTIONS(3223), 1, + ACTIONS(2994), 1, anon_sym_CARET, - ACTIONS(3245), 1, + ACTIONS(2998), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP_AMP, + ACTIONS(3030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3070), 1, anon_sym_EQ, - ACTIONS(3249), 1, + ACTIONS(3153), 1, anon_sym_DOT_DOT, + ACTIONS(3349), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3227), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3356), 2, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - ACTIONS(3207), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3253), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111112,110 +110990,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45323] = 14, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3302), 1, - sym_identifier, - ACTIONS(3304), 1, - anon_sym_LBRACE, - ACTIONS(3308), 1, - anon_sym_STAR, - ACTIONS(3314), 1, - anon_sym_COLON_COLON, - ACTIONS(3318), 1, - sym_metavariable, - ACTIONS(3358), 1, - anon_sym_RBRACE, - STATE(1709), 1, - sym_scoped_identifier, - STATE(2463), 1, - sym_bracketed_type, - STATE(2544), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3316), 3, - sym_self, - sym_super, - sym_crate, - STATE(2157), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3310), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [45391] = 20, - ACTIONS(2980), 1, + [45167] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3213), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(3217), 1, anon_sym_CARET, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3227), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3231), 1, anon_sym_DOT_DOT, - ACTIONS(3360), 1, - anon_sym_SEMI, + ACTIONS(3351), 1, + anon_sym_LBRACE, + ACTIONS(3353), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(3199), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, + ACTIONS(3203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(3221), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3151), 2, + ACTIONS(3229), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(3201), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3219), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3233), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111226,56 +111050,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45471] = 20, - ACTIONS(2980), 1, + [45247] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3362), 1, - anon_sym_SEMI, + ACTIONS(3355), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111286,56 +111110,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45551] = 20, - ACTIONS(2980), 1, + [45327] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3364), 1, - anon_sym_RBRACK, + ACTIONS(3357), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111346,56 +111170,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45631] = 20, - ACTIONS(2980), 1, + [45407] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3366), 1, - anon_sym_COMMA, + ACTIONS(3359), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111406,110 +111230,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45711] = 14, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3302), 1, - sym_identifier, - ACTIONS(3304), 1, - anon_sym_LBRACE, - ACTIONS(3308), 1, - anon_sym_STAR, - ACTIONS(3314), 1, - anon_sym_COLON_COLON, - ACTIONS(3318), 1, - sym_metavariable, - ACTIONS(3368), 1, - anon_sym_RBRACE, - STATE(1709), 1, - sym_scoped_identifier, - STATE(2463), 1, - sym_bracketed_type, - STATE(2544), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3316), 3, - sym_self, - sym_super, - sym_crate, - STATE(2157), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3310), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [45779] = 20, - ACTIONS(2980), 1, + [45487] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3370), 1, + ACTIONS(3361), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111520,56 +111290,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45859] = 20, - ACTIONS(2980), 1, + [45567] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3372), 1, + ACTIONS(3363), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111580,56 +111350,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45939] = 20, - ACTIONS(2980), 1, + [45647] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3374), 1, + ACTIONS(3365), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111640,56 +111410,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46019] = 20, - ACTIONS(2980), 1, + [45727] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3376), 1, - anon_sym_COMMA, + ACTIONS(3367), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111700,56 +111470,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46099] = 20, - ACTIONS(2980), 1, + [45807] = 19, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, + ACTIONS(2992), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(2994), 1, anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(2998), 1, + anon_sym_DOT, + ACTIONS(3030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3378), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(3347), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111760,56 +111529,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46179] = 20, - ACTIONS(2980), 1, + [45885] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3229), 1, + ACTIONS(3369), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111820,56 +111589,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46259] = 20, - ACTIONS(2980), 1, + [45965] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3380), 1, - anon_sym_SEMI, + ACTIONS(3371), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111880,55 +111649,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46339] = 19, - ACTIONS(2980), 1, + [46045] = 19, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(3006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, + ACTIONS(2992), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(2994), 1, anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(2998), 1, + anon_sym_DOT, + ACTIONS(3030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3356), 2, + ACTIONS(3343), 2, anon_sym_EQ_GT, anon_sym_AMP_AMP, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111939,56 +111708,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46417] = 20, - ACTIONS(2980), 1, + [46123] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3382), 1, + ACTIONS(3373), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111999,56 +111768,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46497] = 20, - ACTIONS(2980), 1, + [46203] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3384), 1, - anon_sym_RBRACK, + ACTIONS(3375), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112059,56 +111828,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46577] = 20, - ACTIONS(2980), 1, + [46283] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3386), 1, - anon_sym_RBRACK, + ACTIONS(3377), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112119,56 +111888,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46657] = 20, - ACTIONS(2980), 1, + [46363] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(3002), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, + ACTIONS(2992), 1, anon_sym_PIPE, - ACTIONS(3010), 1, + ACTIONS(2994), 1, anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(2998), 1, + anon_sym_DOT, + ACTIONS(3030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3388), 1, - anon_sym_SEMI, + ACTIONS(3351), 1, + anon_sym_EQ_GT, + ACTIONS(3379), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112179,56 +111948,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46737] = 20, - ACTIONS(2980), 1, + [46443] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3390), 1, + ACTIONS(3381), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112239,56 +112008,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46817] = 20, - ACTIONS(2980), 1, + [46523] = 14, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3247), 1, + sym_identifier, + ACTIONS(3249), 1, + anon_sym_LBRACE, + ACTIONS(3253), 1, + anon_sym_STAR, + ACTIONS(3259), 1, + anon_sym_COLON_COLON, + ACTIONS(3263), 1, + sym_metavariable, + ACTIONS(3383), 1, + anon_sym_RBRACE, + STATE(1749), 1, + sym_scoped_identifier, + STATE(2457), 1, + sym_generic_type_with_turbofish, + STATE(2527), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3261), 3, + sym_self, + sym_super, + sym_crate, + STATE(2207), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3255), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [46591] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3392), 1, - anon_sym_SEMI, + ACTIONS(3385), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112299,56 +112122,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46897] = 20, - ACTIONS(2980), 1, + [46671] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3276), 1, + ACTIONS(3307), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112359,56 +112182,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46977] = 20, - ACTIONS(2980), 1, + [46751] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3394), 1, - anon_sym_SEMI, + ACTIONS(3387), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112419,55 +112242,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47057] = 19, - ACTIONS(2980), 1, + [46831] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, - ACTIONS(2992), 1, - anon_sym_DOT, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3211), 1, + ACTIONS(2986), 1, anon_sym_AMP, - ACTIONS(3219), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3221), 1, + ACTIONS(2992), 1, anon_sym_PIPE, - ACTIONS(3223), 1, + ACTIONS(2994), 1, anon_sym_CARET, - ACTIONS(3245), 1, + ACTIONS(2998), 1, + anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_AMP_AMP, + ACTIONS(3030), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3068), 1, + anon_sym_QMARK, + ACTIONS(3070), 1, anon_sym_EQ, - ACTIONS(3249), 1, + ACTIONS(3153), 1, anon_sym_DOT_DOT, + ACTIONS(3389), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3205), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3209), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3227), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3247), 2, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3346), 2, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - ACTIONS(3207), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3225), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3253), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112478,56 +112302,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47135] = 20, - ACTIONS(2980), 1, + [46911] = 20, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2982), 1, anon_sym_as, + ACTIONS(2986), 1, + anon_sym_AMP, ACTIONS(2992), 1, + anon_sym_PIPE, + ACTIONS(2994), 1, + anon_sym_CARET, + ACTIONS(2998), 1, anon_sym_DOT, - ACTIONS(3002), 1, - anon_sym_AMP, - ACTIONS(3004), 1, + ACTIONS(3028), 1, anon_sym_AMP_AMP, - ACTIONS(3006), 1, + ACTIONS(3030), 1, anon_sym_PIPE_PIPE, - ACTIONS(3008), 1, - anon_sym_PIPE, - ACTIONS(3010), 1, - anon_sym_CARET, - ACTIONS(3061), 1, + ACTIONS(3068), 1, anon_sym_QMARK, - ACTIONS(3063), 1, + ACTIONS(3070), 1, anon_sym_EQ, ACTIONS(3153), 1, anon_sym_DOT_DOT, - ACTIONS(3396), 1, + ACTIONS(3391), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2996), 2, + ACTIONS(2978), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3000), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3014), 2, + ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3026), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(3151), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 3, + ACTIONS(2980), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3012), 4, + ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3065), 10, + ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112538,39 +112362,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47215] = 13, + [46991] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3302), 1, + ACTIONS(3247), 1, sym_identifier, - ACTIONS(3304), 1, + ACTIONS(3249), 1, anon_sym_LBRACE, - ACTIONS(3308), 1, + ACTIONS(3253), 1, anon_sym_STAR, - ACTIONS(3314), 1, + ACTIONS(3259), 1, anon_sym_COLON_COLON, - ACTIONS(3318), 1, + ACTIONS(3263), 1, sym_metavariable, - STATE(1709), 1, + ACTIONS(3393), 1, + anon_sym_RBRACE, + STATE(1749), 1, sym_scoped_identifier, - STATE(2463), 1, - sym_bracketed_type, - STATE(2544), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, + STATE(2527), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3316), 3, + ACTIONS(3261), 3, sym_self, sym_super, sym_crate, - STATE(2157), 5, + STATE(2207), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3310), 19, + ACTIONS(3255), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112590,39 +112416,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47280] = 13, + [47059] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3302), 1, + ACTIONS(3247), 1, sym_identifier, - ACTIONS(3304), 1, + ACTIONS(3249), 1, anon_sym_LBRACE, - ACTIONS(3308), 1, + ACTIONS(3253), 1, anon_sym_STAR, - ACTIONS(3314), 1, + ACTIONS(3259), 1, anon_sym_COLON_COLON, - ACTIONS(3318), 1, + ACTIONS(3263), 1, sym_metavariable, - STATE(1709), 1, + STATE(1749), 1, sym_scoped_identifier, - STATE(2463), 1, - sym_bracketed_type, - STATE(2544), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, + STATE(2527), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3316), 3, + ACTIONS(3261), 3, sym_self, sym_super, sym_crate, - STATE(2537), 5, + STATE(2207), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3310), 19, + ACTIONS(3255), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112642,39 +112468,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47345] = 13, + [47124] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3302), 1, + ACTIONS(3247), 1, sym_identifier, - ACTIONS(3304), 1, + ACTIONS(3249), 1, anon_sym_LBRACE, - ACTIONS(3308), 1, + ACTIONS(3253), 1, anon_sym_STAR, - ACTIONS(3314), 1, + ACTIONS(3259), 1, anon_sym_COLON_COLON, - ACTIONS(3318), 1, + ACTIONS(3263), 1, sym_metavariable, - STATE(1709), 1, + STATE(1749), 1, sym_scoped_identifier, - STATE(2463), 1, - sym_bracketed_type, - STATE(2544), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, + STATE(2527), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3316), 3, + ACTIONS(3261), 3, sym_self, sym_super, sym_crate, - STATE(2381), 5, + STATE(2330), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3310), 19, + ACTIONS(3255), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112694,39 +112520,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47410] = 13, + [47189] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3302), 1, + ACTIONS(3247), 1, sym_identifier, - ACTIONS(3304), 1, + ACTIONS(3249), 1, anon_sym_LBRACE, - ACTIONS(3308), 1, + ACTIONS(3253), 1, anon_sym_STAR, - ACTIONS(3314), 1, + ACTIONS(3259), 1, anon_sym_COLON_COLON, - ACTIONS(3318), 1, + ACTIONS(3263), 1, sym_metavariable, - STATE(1709), 1, + STATE(1749), 1, sym_scoped_identifier, - STATE(2463), 1, - sym_bracketed_type, - STATE(2544), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, + STATE(2527), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3316), 3, + ACTIONS(3261), 3, sym_self, sym_super, sym_crate, - STATE(2479), 5, + STATE(2475), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3310), 19, + ACTIONS(3255), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112746,39 +112572,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47475] = 13, + [47254] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3302), 1, + ACTIONS(3247), 1, sym_identifier, - ACTIONS(3304), 1, + ACTIONS(3249), 1, anon_sym_LBRACE, - ACTIONS(3308), 1, + ACTIONS(3253), 1, anon_sym_STAR, - ACTIONS(3314), 1, + ACTIONS(3259), 1, anon_sym_COLON_COLON, - ACTIONS(3318), 1, + ACTIONS(3263), 1, sym_metavariable, - STATE(1709), 1, + STATE(1749), 1, sym_scoped_identifier, - STATE(2463), 1, - sym_bracketed_type, - STATE(2544), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, + STATE(2527), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3316), 3, + ACTIONS(3261), 3, sym_self, sym_super, sym_crate, - STATE(2530), 5, + STATE(2506), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3310), 19, + ACTIONS(3255), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112798,15 +112624,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47540] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3400), 3, + [47319] = 13, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(3247), 1, + sym_identifier, + ACTIONS(3249), 1, + anon_sym_LBRACE, + ACTIONS(3253), 1, + anon_sym_STAR, + ACTIONS(3259), 1, anon_sym_COLON_COLON, + ACTIONS(3263), 1, sym_metavariable, - ACTIONS(3398), 28, + STATE(1749), 1, + sym_scoped_identifier, + STATE(2457), 1, + sym_generic_type_with_turbofish, + STATE(2527), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3261), 3, + sym_self, + sym_super, + sym_crate, + STATE(2458), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3255), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112824,26 +112674,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [47580] = 3, + [47384] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3404), 3, + ACTIONS(3397), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3402), 28, + ACTIONS(3395), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112872,15 +112713,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [47620] = 3, + [47424] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3408), 3, + ACTIONS(3401), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(3406), 28, + ACTIONS(3399), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112909,31 +112750,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [47660] = 11, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(959), 1, - anon_sym_COLON_COLON, - ACTIONS(3410), 1, - sym_identifier, - ACTIONS(3416), 1, - sym_metavariable, - STATE(1576), 1, - sym_scoped_identifier, - STATE(2343), 1, - sym_attribute, - STATE(2463), 1, - sym_bracketed_type, - STATE(2544), 1, - sym_generic_type_with_turbofish, + [47464] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3414), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3412), 19, + ACTIONS(3405), 3, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(3403), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112951,33 +112776,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_fn, anon_sym_union, - [47715] = 11, + anon_sym_unsafe, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [47504] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(959), 1, + ACTIONS(1042), 1, anon_sym_COLON_COLON, - ACTIONS(3410), 1, + ACTIONS(3407), 1, sym_identifier, - ACTIONS(3416), 1, + ACTIONS(3413), 1, sym_metavariable, - STATE(1576), 1, + STATE(1599), 1, sym_scoped_identifier, - STATE(2463), 1, - sym_bracketed_type, - STATE(2544), 1, - sym_generic_type_with_turbofish, - STATE(2552), 1, + STATE(2444), 1, sym_attribute, + STATE(2457), 1, + sym_generic_type_with_turbofish, + STATE(2527), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3414), 3, + ACTIONS(3411), 3, sym_self, sym_super, sym_crate, - ACTIONS(3412), 19, + ACTIONS(3409), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112997,31 +112831,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47770] = 11, + [47559] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(959), 1, + ACTIONS(1042), 1, anon_sym_COLON_COLON, - ACTIONS(3410), 1, + ACTIONS(3407), 1, sym_identifier, - ACTIONS(3416), 1, + ACTIONS(3413), 1, sym_metavariable, - STATE(1576), 1, + STATE(1599), 1, sym_scoped_identifier, - STATE(2463), 1, + STATE(2457), 1, + sym_generic_type_with_turbofish, + STATE(2477), 1, + sym_attribute, + STATE(2527), 1, sym_bracketed_type, - STATE(2524), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3411), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3409), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [47614] = 11, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(1042), 1, + anon_sym_COLON_COLON, + ACTIONS(3407), 1, + sym_identifier, + ACTIONS(3413), 1, + sym_metavariable, + STATE(1599), 1, + sym_scoped_identifier, + STATE(2342), 1, sym_attribute, - STATE(2544), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, + STATE(2527), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3414), 3, + ACTIONS(3411), 3, sym_self, sym_super, sym_crate, - ACTIONS(3412), 19, + ACTIONS(3409), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113041,31 +112919,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47825] = 11, + [47669] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(959), 1, + ACTIONS(1042), 1, anon_sym_COLON_COLON, - ACTIONS(3410), 1, + ACTIONS(3407), 1, sym_identifier, - ACTIONS(3416), 1, + ACTIONS(3413), 1, sym_metavariable, - STATE(1576), 1, + STATE(1599), 1, sym_scoped_identifier, - STATE(2360), 1, + STATE(2433), 1, sym_attribute, - STATE(2463), 1, - sym_bracketed_type, - STATE(2544), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, + STATE(2527), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3414), 3, + ACTIONS(3411), 3, sym_self, sym_super, sym_crate, - ACTIONS(3412), 19, + ACTIONS(3409), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113085,31 +112963,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47880] = 11, + [47724] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(959), 1, + ACTIONS(1042), 1, anon_sym_COLON_COLON, - ACTIONS(3410), 1, + ACTIONS(3407), 1, sym_identifier, - ACTIONS(3416), 1, + ACTIONS(3413), 1, sym_metavariable, - STATE(1576), 1, + STATE(1599), 1, sym_scoped_identifier, - STATE(2326), 1, + STATE(2363), 1, sym_attribute, - STATE(2463), 1, - sym_bracketed_type, - STATE(2544), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, + STATE(2527), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3414), 3, + ACTIONS(3411), 3, sym_self, sym_super, sym_crate, - ACTIONS(3412), 19, + ACTIONS(3409), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113129,31 +113007,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47935] = 11, + [47779] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(959), 1, + ACTIONS(1042), 1, anon_sym_COLON_COLON, - ACTIONS(3410), 1, + ACTIONS(3407), 1, sym_identifier, - ACTIONS(3416), 1, + ACTIONS(3413), 1, sym_metavariable, - STATE(1576), 1, + STATE(1599), 1, sym_scoped_identifier, - STATE(2374), 1, + STATE(2322), 1, sym_attribute, - STATE(2463), 1, - sym_bracketed_type, - STATE(2544), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, + STATE(2527), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3414), 3, + ACTIONS(3411), 3, sym_self, sym_super, sym_crate, - ACTIONS(3412), 19, + ACTIONS(3409), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113173,31 +113051,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47990] = 11, + [47834] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(959), 1, + ACTIONS(1042), 1, anon_sym_COLON_COLON, - ACTIONS(3410), 1, + ACTIONS(3407), 1, sym_identifier, - ACTIONS(3416), 1, + ACTIONS(3413), 1, sym_metavariable, - STATE(1576), 1, + STATE(1599), 1, sym_scoped_identifier, - STATE(2463), 1, - sym_bracketed_type, - STATE(2491), 1, + STATE(2339), 1, sym_attribute, - STATE(2544), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, + STATE(2527), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3414), 3, + ACTIONS(3411), 3, sym_self, sym_super, sym_crate, - ACTIONS(3412), 19, + ACTIONS(3409), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113217,29 +113095,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48045] = 10, + [47889] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(959), 1, + ACTIONS(1042), 1, anon_sym_COLON_COLON, - ACTIONS(3418), 1, + ACTIONS(3415), 1, sym_identifier, - ACTIONS(3424), 1, + ACTIONS(3421), 1, sym_metavariable, - STATE(2132), 1, + STATE(2212), 1, sym_scoped_identifier, - STATE(2463), 1, - sym_bracketed_type, - STATE(2544), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, + STATE(2527), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3422), 3, + ACTIONS(3419), 3, sym_self, sym_super, sym_crate, - ACTIONS(3420), 19, + ACTIONS(3417), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113259,29 +113137,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48097] = 10, + [47941] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(959), 1, + ACTIONS(1042), 1, anon_sym_COLON_COLON, - ACTIONS(3426), 1, + ACTIONS(3423), 1, sym_identifier, - ACTIONS(3432), 1, + ACTIONS(3429), 1, sym_metavariable, - STATE(2143), 1, + STATE(2111), 1, sym_scoped_identifier, - STATE(2463), 1, - sym_bracketed_type, - STATE(2544), 1, + STATE(2457), 1, sym_generic_type_with_turbofish, + STATE(2527), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3430), 3, + ACTIONS(3427), 3, sym_self, sym_super, sym_crate, - ACTIONS(3428), 19, + ACTIONS(3425), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113301,13 +113179,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [48149] = 3, - ACTIONS(2407), 1, + [47993] = 3, + ACTIONS(2367), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2409), 21, + ACTIONS(2369), 21, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113329,13 +113207,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48180] = 3, - ACTIONS(2431), 1, + [48024] = 3, + ACTIONS(2397), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2433), 21, + ACTIONS(2399), 21, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113357,31 +113235,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48211] = 11, - ACTIONS(3436), 1, + [48055] = 11, + ACTIONS(3433), 1, anon_sym_LPAREN, - ACTIONS(3438), 1, + ACTIONS(3435), 1, anon_sym_LBRACE, - ACTIONS(3442), 1, + ACTIONS(3439), 1, anon_sym_BANG, - ACTIONS(3444), 1, + ACTIONS(3441), 1, anon_sym_COLON_COLON, - ACTIONS(3448), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3450), 1, + ACTIONS(3447), 1, anon_sym_AT, - STATE(1347), 1, + STATE(1342), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3440), 2, + ACTIONS(3437), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3446), 2, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3434), 10, + ACTIONS(3431), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -113392,20 +113270,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [48257] = 9, + [48101] = 9, ACTIONS(2554), 1, anon_sym_COLON, - ACTIONS(3442), 1, + ACTIONS(3439), 1, anon_sym_BANG, - ACTIONS(3448), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3452), 1, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3454), 1, + ACTIONS(3451), 1, anon_sym_COLON_COLON, - STATE(1347), 1, + STATE(1342), 1, sym_type_arguments, - STATE(1354), 1, + STATE(1361), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -113424,17 +113302,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [48298] = 4, + [48142] = 4, + ACTIONS(2612), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 2, + ACTIONS(2616), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2610), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_LT2, + anon_sym_PIPE, + [48172] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2570), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2594), 2, + ACTIONS(2574), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2596), 15, + ACTIONS(2576), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113450,42 +113354,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48328] = 4, - ACTIONS(2572), 1, + [48202] = 8, + ACTIONS(2564), 1, anon_sym_COLON, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3451), 1, + anon_sym_COLON_COLON, + STATE(1342), 1, + sym_type_arguments, + STATE(1361), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2576), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2570), 16, + ACTIONS(2562), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, anon_sym_else, - anon_sym_LT2, anon_sym_PIPE, - [48358] = 4, - ACTIONS(2608), 1, + [48240] = 4, + ACTIONS(2580), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2612), 2, + ACTIONS(2584), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2606), 16, + ACTIONS(2578), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113502,16 +113410,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LT2, anon_sym_PIPE, - [48388] = 4, - ACTIONS(2580), 1, + [48270] = 4, + ACTIONS(2572), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 2, + ACTIONS(2576), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2578), 16, + ACTIONS(2570), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113528,73 +113436,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LT2, anon_sym_PIPE, - [48418] = 4, - ACTIONS(2592), 1, - anon_sym_COLON, + [48300] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2590), 16, + ACTIONS(2610), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2614), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2616), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, - anon_sym_LT2, - anon_sym_PIPE, - [48448] = 8, - ACTIONS(2568), 1, - anon_sym_COLON, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(3452), 1, - anon_sym_LPAREN, - ACTIONS(3454), 1, anon_sym_COLON_COLON, - STATE(1347), 1, - sym_type_arguments, - STATE(1354), 1, - sym_parameters, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [48330] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2566), 13, + ACTIONS(2578), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(2582), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2584), 15, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48486] = 4, + [48360] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, + ACTIONS(2602), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2582), 2, + ACTIONS(2606), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2584), 15, + ACTIONS(2608), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113610,23 +113514,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48516] = 8, - ACTIONS(2564), 1, + [48390] = 4, + ACTIONS(2604), 1, anon_sym_COLON, - ACTIONS(3448), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2608), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2602), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_LT2, + anon_sym_PIPE, + [48420] = 8, + ACTIONS(2568), 1, + anon_sym_COLON, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3452), 1, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3454), 1, + ACTIONS(3451), 1, anon_sym_COLON_COLON, - STATE(1347), 1, + STATE(1342), 1, sym_type_arguments, - STATE(1354), 1, + STATE(1361), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2562), 13, + ACTIONS(2566), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113640,83 +113570,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [48554] = 4, + [48458] = 6, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1347), 1, + sym_type_arguments, + STATE(1349), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2610), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2612), 15, + ACTIONS(2594), 14, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48584] = 4, + [48491] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2574), 2, + ACTIONS(2614), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2576), 15, + ACTIONS(2616), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_as, anon_sym_if, anon_sym_BANG, anon_sym_COMMA, anon_sym_else, anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48614] = 3, + [48518] = 6, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1347), 1, + sym_type_arguments, + STATE(1349), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2594), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2596), 16, + ACTIONS(2586), 14, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_as, - anon_sym_if, - anon_sym_BANG, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_in, anon_sym_PIPE, - [48641] = 3, + [48551] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -113740,14 +113672,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [48668] = 3, + [48578] = 6, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1347), 1, + sym_type_arguments, + STATE(1349), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 2, + ACTIONS(2598), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, anon_sym_EQ, - ACTIONS(2584), 16, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_PIPE, + [48611] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2606), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2608), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113764,94 +113723,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [48695] = 6, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(3452), 1, - anon_sym_LPAREN, - STATE(1343), 1, - sym_type_arguments, - STATE(1353), 1, - sym_parameters, + [48638] = 3, + ACTIONS(598), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 14, + ACTIONS(596), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_if, anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [48728] = 6, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(3452), 1, - anon_sym_LPAREN, - STATE(1343), 1, - sym_type_arguments, - STATE(1353), 1, - sym_parameters, + [48664] = 17, + ACTIONS(3455), 1, + anon_sym_const, + ACTIONS(3457), 1, + anon_sym_enum, + ACTIONS(3459), 1, + anon_sym_fn, + ACTIONS(3461), 1, + anon_sym_mod, + ACTIONS(3463), 1, + anon_sym_static, + ACTIONS(3465), 1, + anon_sym_struct, + ACTIONS(3467), 1, + anon_sym_trait, + ACTIONS(3469), 1, + anon_sym_type, + ACTIONS(3471), 1, + anon_sym_union, + ACTIONS(3473), 1, + anon_sym_unsafe, + ACTIONS(3475), 1, + anon_sym_use, + ACTIONS(3477), 1, + anon_sym_extern, + STATE(1511), 1, + sym_extern_modifier, + STATE(1526), 1, + aux_sym_function_modifiers_repeat1, + STATE(2558), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, + ACTIONS(3453), 2, + anon_sym_async, + anon_sym_default, + [48718] = 3, + ACTIONS(616), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, - anon_sym_PIPE, - [48761] = 6, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(3452), 1, - anon_sym_LPAREN, - STATE(1343), 1, - sym_type_arguments, - STATE(1353), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 14, + ACTIONS(614), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_if, anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [48794] = 3, - ACTIONS(450), 1, + [48744] = 3, + ACTIONS(602), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(448), 16, + ACTIONS(600), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113868,36 +113829,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [48820] = 3, - ACTIONS(454), 1, - anon_sym_EQ, + [48770] = 7, + ACTIONS(3433), 1, + anon_sym_LPAREN, + ACTIONS(3439), 1, + anon_sym_BANG, + ACTIONS(3479), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(452), 16, + ACTIONS(3437), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3431), 10, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, anon_sym_if, - anon_sym_where, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, anon_sym_in, anon_sym_PIPE, - [48846] = 3, - ACTIONS(612), 1, + [48804] = 3, + ACTIONS(440), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(610), 16, + ACTIONS(438), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113914,48 +113879,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [48872] = 17, - ACTIONS(3458), 1, + [48830] = 17, + ACTIONS(3481), 1, anon_sym_const, - ACTIONS(3460), 1, + ACTIONS(3483), 1, anon_sym_enum, - ACTIONS(3462), 1, + ACTIONS(3485), 1, anon_sym_fn, - ACTIONS(3464), 1, + ACTIONS(3487), 1, anon_sym_mod, - ACTIONS(3466), 1, + ACTIONS(3489), 1, anon_sym_static, - ACTIONS(3468), 1, + ACTIONS(3491), 1, anon_sym_struct, - ACTIONS(3470), 1, + ACTIONS(3493), 1, anon_sym_trait, - ACTIONS(3472), 1, + ACTIONS(3495), 1, anon_sym_type, - ACTIONS(3474), 1, + ACTIONS(3497), 1, anon_sym_union, - ACTIONS(3476), 1, + ACTIONS(3499), 1, anon_sym_unsafe, - ACTIONS(3478), 1, + ACTIONS(3501), 1, anon_sym_use, - ACTIONS(3480), 1, + ACTIONS(3503), 1, anon_sym_extern, - STATE(1487), 1, + STATE(1517), 1, sym_extern_modifier, - STATE(1553), 1, + STATE(1526), 1, aux_sym_function_modifiers_repeat1, - STATE(2411), 1, + STATE(2436), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3456), 2, + ACTIONS(3453), 2, anon_sym_async, anon_sym_default, - [48926] = 2, + [48884] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 17, + ACTIONS(2578), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113973,100 +113938,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LT2, anon_sym_PIPE, - [48950] = 3, - ACTIONS(422), 1, - anon_sym_EQ, + [48908] = 3, + ACTIONS(3505), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(420), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_if, - anon_sym_where, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - [48976] = 17, - ACTIONS(3482), 1, + ACTIONS(3159), 15, + anon_sym_async, anon_sym_const, - ACTIONS(3484), 1, + anon_sym_default, anon_sym_enum, - ACTIONS(3486), 1, anon_sym_fn, - ACTIONS(3488), 1, anon_sym_mod, - ACTIONS(3490), 1, anon_sym_static, - ACTIONS(3492), 1, anon_sym_struct, - ACTIONS(3494), 1, anon_sym_trait, - ACTIONS(3496), 1, anon_sym_type, - ACTIONS(3498), 1, anon_sym_union, - ACTIONS(3500), 1, anon_sym_unsafe, - ACTIONS(3502), 1, anon_sym_use, - ACTIONS(3504), 1, anon_sym_extern, - STATE(1511), 1, - sym_extern_modifier, - STATE(1553), 1, - aux_sym_function_modifiers_repeat1, - STATE(2562), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3456), 2, - anon_sym_async, - anon_sym_default, - [49030] = 7, - ACTIONS(3436), 1, - anon_sym_LPAREN, - ACTIONS(3442), 1, - anon_sym_BANG, - ACTIONS(3506), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3440), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3446), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3434), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - [49064] = 3, - ACTIONS(2664), 1, + sym_identifier, + [48933] = 3, + ACTIONS(2716), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2662), 15, + ACTIONS(2714), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114082,11 +113982,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_COLON_COLON, anon_sym_PIPE, - [49089] = 2, + [48958] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2960), 16, + ACTIONS(2892), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114103,35 +114003,13 @@ static const uint16_t ts_small_parse_table[] = { sym_mutable_specifier, anon_sym_PIPE, sym_self, - [49112] = 3, - ACTIONS(3508), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3169), 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, - [49137] = 3, - ACTIONS(2714), 1, + [48981] = 3, + ACTIONS(2748), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2712), 15, + ACTIONS(2746), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114147,13 +114025,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_COLON_COLON, anon_sym_PIPE, - [49162] = 3, - ACTIONS(2734), 1, + [49006] = 3, + ACTIONS(2674), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2732), 15, + ACTIONS(2672), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114169,13 +114047,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_COLON_COLON, anon_sym_PIPE, - [49187] = 3, - ACTIONS(2670), 1, + [49031] = 3, + ACTIONS(2684), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2668), 15, + ACTIONS(2682), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114191,13 +114069,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_COLON_COLON, anon_sym_PIPE, - [49212] = 3, - ACTIONS(2674), 1, + [49056] = 3, + ACTIONS(2726), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 15, + ACTIONS(2724), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114213,21 +114091,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_COLON_COLON, anon_sym_PIPE, - [49237] = 6, - ACTIONS(3514), 1, + [49081] = 6, + ACTIONS(3511), 1, anon_sym_BANG, - ACTIONS(3516), 1, + ACTIONS(3513), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3512), 2, + ACTIONS(3509), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3518), 2, + ACTIONS(3515), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3510), 10, + ACTIONS(3507), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114238,11 +114116,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [49268] = 2, + [49112] = 3, + ACTIONS(3517), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3159), 15, + ACTIONS(2740), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_PIPE, + [49136] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2692), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_else, + anon_sym_PIPE, + [49158] = 3, + ACTIONS(2904), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3161), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -114257,14 +114178,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [49290] = 3, - ACTIONS(3520), 1, + [49182] = 3, + ACTIONS(3519), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2698), 14, + ACTIONS(2658), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114279,13 +114199,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49314] = 3, - ACTIONS(3522), 1, + [49206] = 3, + ACTIONS(3521), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2656), 14, + ACTIONS(2666), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114300,13 +114220,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49338] = 3, - ACTIONS(3524), 1, - anon_sym_DASH_GT, + [49230] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2650), 14, + ACTIONS(2646), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114318,43 +114236,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49362] = 2, + [49252] = 4, + ACTIONS(2596), 1, + anon_sym_COLON, + ACTIONS(3523), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2716), 15, + ACTIONS(2594), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49384] = 4, - ACTIONS(2616), 1, - anon_sym_COLON, - ACTIONS(3526), 1, - anon_sym_COLON_COLON, + [49278] = 3, + ACTIONS(3525), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 13, + ACTIONS(2676), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -114363,65 +114283,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49410] = 13, - ACTIONS(3434), 1, - anon_sym_PIPE, - ACTIONS(3438), 1, - anon_sym_LBRACE, - ACTIONS(3440), 1, - anon_sym_COLON, - ACTIONS(3442), 1, - anon_sym_BANG, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(3450), 1, - anon_sym_AT, - ACTIONS(3528), 1, - anon_sym_LPAREN, - ACTIONS(3530), 1, - anon_sym_COLON_COLON, - STATE(1347), 1, - sym_type_arguments, - STATE(1354), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3446), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2550), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [49454] = 3, - ACTIONS(3532), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3171), 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, - [49478] = 3, - ACTIONS(3534), 1, + [49302] = 3, + ACTIONS(3527), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2754), 14, + ACTIONS(2734), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114436,10 +114304,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49502] = 4, + [49326] = 3, + ACTIONS(2427), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2429), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [49350] = 4, ACTIONS(2600), 1, anon_sym_COLON, - ACTIONS(3526), 1, + ACTIONS(3523), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -114458,11 +114347,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49528] = 2, + [49376] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2750), 15, + ACTIONS(3165), 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, + [49398] = 3, + ACTIONS(3529), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2754), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114474,14 +114385,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49550] = 4, + [49422] = 4, ACTIONS(2588), 1, anon_sym_COLON, - ACTIONS(3526), 1, + ACTIONS(3523), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -114500,20 +114410,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49576] = 4, - ACTIONS(2588), 1, - anon_sym_COLON, - ACTIONS(3536), 1, - anon_sym_COLON_COLON, + [49448] = 3, + ACTIONS(3531), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 13, + ACTIONS(2718), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -114522,19 +114431,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49602] = 5, - ACTIONS(3516), 1, + [49472] = 5, + ACTIONS(3513), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3512), 2, + ACTIONS(3509), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3518), 2, + ACTIONS(3515), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3510), 10, + ACTIONS(3507), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -114545,11 +114454,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [49630] = 2, + [49500] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2708), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_else, + anon_sym_PIPE, + [49522] = 3, + ACTIONS(3533), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3177), 15, + ACTIONS(3161), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -114564,12 +114495,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [49652] = 2, + [49546] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2676), 15, + ACTIONS(2750), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114585,56 +114515,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49674] = 3, - ACTIONS(2375), 1, - anon_sym_EQ, + [49568] = 4, + ACTIONS(2600), 1, + anon_sym_COLON, + ACTIONS(3163), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2377), 14, + ACTIONS(2598), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49698] = 4, - ACTIONS(2588), 1, - anon_sym_COLON, - ACTIONS(3173), 1, + [49594] = 13, + ACTIONS(3435), 1, + anon_sym_LBRACE, + ACTIONS(3439), 1, + anon_sym_BANG, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3447), 1, + anon_sym_AT, + ACTIONS(3535), 1, + anon_sym_LPAREN, + ACTIONS(3537), 1, + anon_sym_RBRACK, + ACTIONS(3540), 1, anon_sym_COLON_COLON, + STATE(1342), 1, + sym_type_arguments, + STATE(1361), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 13, + ACTIONS(2550), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3431), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [49638] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2642), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49724] = 3, - ACTIONS(2968), 1, - anon_sym_COLON_COLON, + [49660] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3171), 14, + ACTIONS(3175), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -114649,117 +114607,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [49748] = 3, - ACTIONS(3538), 1, - anon_sym_DASH_GT, + sym_identifier, + [49682] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2720), 14, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3179), 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, + [49704] = 14, + ACTIONS(2550), 1, + anon_sym_PLUS, + ACTIONS(3431), 1, + anon_sym_PIPE, + ACTIONS(3435), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3437), 1, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3439), 1, + anon_sym_BANG, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3447), 1, + anon_sym_AT, + ACTIONS(3542), 1, + anon_sym_LPAREN, + ACTIONS(3544), 1, + anon_sym_COLON_COLON, + STATE(1342), 1, + sym_type_arguments, + STATE(1361), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3537), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, - anon_sym_PIPE, - [49772] = 2, + [49750] = 4, + ACTIONS(2600), 1, + anon_sym_COLON, + ACTIONS(3546), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2728), 15, + ACTIONS(2598), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49794] = 14, - ACTIONS(2550), 1, - anon_sym_PLUS, - ACTIONS(3434), 1, + [49776] = 13, + ACTIONS(3431), 1, anon_sym_PIPE, - ACTIONS(3438), 1, + ACTIONS(3435), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3437), 1, anon_sym_COLON, - ACTIONS(3442), 1, + ACTIONS(3439), 1, anon_sym_BANG, - ACTIONS(3448), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3450), 1, + ACTIONS(3447), 1, anon_sym_AT, - ACTIONS(3540), 1, + ACTIONS(3548), 1, anon_sym_LPAREN, - ACTIONS(3545), 1, + ACTIONS(3550), 1, anon_sym_COLON_COLON, - STATE(1347), 1, + STATE(1342), 1, sym_type_arguments, - STATE(1354), 1, + STATE(1361), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3446), 2, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3542), 2, + ACTIONS(2550), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [49840] = 13, - ACTIONS(3438), 1, - anon_sym_LBRACE, - ACTIONS(3442), 1, - anon_sym_BANG, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(3450), 1, - anon_sym_AT, - ACTIONS(3542), 1, - anon_sym_RBRACK, - ACTIONS(3547), 1, - anon_sym_LPAREN, - ACTIONS(3549), 1, - anon_sym_COLON_COLON, - STATE(1347), 1, - sym_type_arguments, - STATE(1354), 1, - sym_parameters, + [49820] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2860), 14, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, - ACTIONS(3434), 2, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, anon_sym_PIPE, - ACTIONS(3446), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [49884] = 3, - ACTIONS(3551), 1, - anon_sym_DASH_GT, + [49841] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2736), 14, + ACTIONS(2906), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114774,13 +114751,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49908] = 3, - ACTIONS(3553), 1, - anon_sym_DASH_GT, + [49862] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2742), 14, + ACTIONS(2804), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114795,11 +114770,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49932] = 2, + [49883] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 15, + ACTIONS(2800), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114811,35 +114786,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49954] = 2, + [49904] = 14, + ACTIONS(3439), 1, + anon_sym_BANG, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3451), 1, + anon_sym_COLON_COLON, + ACTIONS(3552), 1, + anon_sym_COLON, + ACTIONS(3554), 1, + anon_sym_EQ, + ACTIONS(3556), 1, + anon_sym_COMMA, + ACTIONS(3558), 1, + anon_sym_GT, + STATE(1342), 1, + sym_type_arguments, + STATE(1361), 1, + sym_parameters, + STATE(1968), 1, + sym_trait_bounds, + STATE(1969), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3155), 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, - [49976] = 2, + ACTIONS(2550), 2, + anon_sym_PLUS, + anon_sym_as, + [49949] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2892), 14, + ACTIONS(2832), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114854,11 +114839,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49997] = 2, + [49970] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2808), 14, + ACTIONS(2832), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114873,11 +114858,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50018] = 2, + [49991] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2844), 14, + ACTIONS(2792), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114892,11 +114877,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50039] = 2, + [50012] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2804), 14, + ACTIONS(2594), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114911,11 +114896,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50060] = 2, + [50033] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 14, + ACTIONS(2848), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114930,11 +114915,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50081] = 2, + [50054] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2804), 14, + ACTIONS(2856), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114949,11 +114934,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50102] = 2, + [50075] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2760), 14, + ACTIONS(2788), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114968,11 +114953,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50123] = 2, + [50096] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2792), 14, + ACTIONS(2896), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114987,15 +114972,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50144] = 4, - ACTIONS(3557), 1, + [50117] = 4, + ACTIONS(3562), 1, anon_sym_pat, - STATE(570), 1, + STATE(579), 1, sym_fragment_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3555), 12, + ACTIONS(3560), 12, anon_sym_block, anon_sym_expr, anon_sym_ident, @@ -115008,56 +114993,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_tt, anon_sym_ty, anon_sym_vis, - [50169] = 7, - ACTIONS(3512), 1, - anon_sym_COLON, - ACTIONS(3514), 1, - anon_sym_BANG, - ACTIONS(3559), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3518), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3510), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2630), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [50200] = 4, - ACTIONS(3440), 1, - anon_sym_EQ, + [50142] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3446), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3434), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - [50225] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2586), 14, + ACTIONS(2598), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115072,49 +115012,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50246] = 2, + [50163] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2852), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2582), 2, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, - anon_sym_PIPE, - [50267] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2860), 14, + ACTIONS(2584), 12, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [50288] = 2, + [50186] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2812), 14, + ACTIONS(2836), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115129,13 +115051,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50309] = 3, - ACTIONS(3563), 1, + [50207] = 3, + ACTIONS(3566), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3561), 13, + ACTIONS(3564), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115149,11 +115071,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50332] = 2, + [50230] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2788), 14, + ACTIONS(2962), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115168,68 +115090,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50353] = 2, + [50251] = 7, + ACTIONS(3509), 1, + anon_sym_COLON, + ACTIONS(3511), 1, + anon_sym_BANG, + ACTIONS(3568), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2784), 14, - anon_sym_SEMI, + ACTIONS(3515), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3507), 3, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, anon_sym_PIPE, - [50374] = 2, + ACTIONS(2624), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [50282] = 4, + ACTIONS(3437), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2864), 14, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3431), 11, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [50395] = 2, + [50307] = 3, + ACTIONS(3572), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2776), 14, + ACTIONS(3570), 13, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50416] = 2, + [50330] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2944), 14, + ACTIONS(2840), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115244,11 +115174,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50437] = 2, + [50351] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2824), 14, + ACTIONS(2880), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115263,82 +115193,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50458] = 14, - ACTIONS(3442), 1, - anon_sym_BANG, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(3452), 1, - anon_sym_LPAREN, - ACTIONS(3454), 1, - anon_sym_COLON_COLON, - ACTIONS(3565), 1, - anon_sym_COLON, - ACTIONS(3567), 1, - anon_sym_EQ, - ACTIONS(3569), 1, - anon_sym_COMMA, - ACTIONS(3571), 1, - anon_sym_GT, - STATE(1347), 1, - sym_type_arguments, - STATE(1354), 1, - sym_parameters, - STATE(2015), 1, - sym_trait_bounds, - STATE(2020), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2550), 2, - anon_sym_PLUS, - anon_sym_as, - [50503] = 3, - ACTIONS(3575), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3573), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50526] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2610), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2612), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_in, - anon_sym_PIPE, - [50549] = 2, + [50372] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 14, + ACTIONS(2864), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115353,11 +115212,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50570] = 2, + [50393] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2816), 14, + ACTIONS(2586), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115372,11 +115231,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50591] = 2, + [50414] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2970), 14, + ACTIONS(2868), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115391,11 +115250,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50612] = 2, + [50435] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2772), 14, + ACTIONS(2824), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115410,7 +115269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50633] = 2, + [50456] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -115429,36 +115288,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50654] = 4, - ACTIONS(3581), 1, - anon_sym_COLON_COLON, + [50477] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3579), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3577), 10, + ACTIONS(2784), 14, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_else, - anon_sym_in, anon_sym_PIPE, - [50678] = 4, - ACTIONS(3587), 1, + [50498] = 4, + ACTIONS(3578), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3585), 2, + ACTIONS(3576), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3583), 10, + ACTIONS(3574), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115469,36 +115327,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50702] = 4, - ACTIONS(3593), 1, - anon_sym_COLON_COLON, + [50522] = 3, + ACTIONS(416), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3591), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3589), 10, + ACTIONS(414), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50726] = 4, - ACTIONS(3532), 1, + [50544] = 6, + ACTIONS(3511), 1, + anon_sym_BANG, + ACTIONS(3580), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3515), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3507), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2624), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [50572] = 4, + ACTIONS(3586), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3579), 2, + ACTIONS(3584), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3577), 10, + ACTIONS(3582), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115509,16 +115388,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50750] = 4, - ACTIONS(3532), 1, + [50596] = 4, + ACTIONS(3592), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3591), 2, + ACTIONS(3590), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3589), 10, + ACTIONS(3588), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115529,35 +115408,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50774] = 3, - ACTIONS(416), 1, - anon_sym_EQ, + [50620] = 4, + ACTIONS(3578), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(414), 12, + ACTIONS(3596), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3594), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50796] = 4, - ACTIONS(3593), 1, + [50644] = 4, + ACTIONS(3533), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3579), 2, + ACTIONS(3584), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3577), 10, + ACTIONS(3582), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115568,16 +115448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50820] = 4, - ACTIONS(3587), 1, + [50668] = 4, + ACTIONS(3592), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3597), 2, + ACTIONS(3584), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3595), 10, + ACTIONS(3582), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115588,29 +115468,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50844] = 6, - ACTIONS(3514), 1, - anon_sym_BANG, - ACTIONS(3599), 1, - anon_sym_COLON_COLON, + [50692] = 3, + ACTIONS(412), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3518), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3510), 3, + ACTIONS(410), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - ACTIONS(2630), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [50872] = 3, + [50714] = 3, ACTIONS(408), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -115629,35 +115506,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50894] = 3, - ACTIONS(412), 1, - anon_sym_EQ, + [50736] = 4, + ACTIONS(3586), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(410), 12, + ACTIONS(3590), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3588), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50916] = 4, - ACTIONS(3581), 1, + [50760] = 4, + ACTIONS(3533), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3591), 2, + ACTIONS(3590), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3589), 10, + ACTIONS(3588), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115668,13 +115546,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50940] = 3, - ACTIONS(3603), 1, + [50784] = 3, + ACTIONS(3600), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3601), 11, + ACTIONS(3598), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115686,32 +115564,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50961] = 4, + [50805] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3605), 2, + ACTIONS(3602), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2606), 4, + ACTIONS(2610), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2612), 6, + ACTIONS(2616), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50984] = 3, - ACTIONS(3610), 1, + [50828] = 3, + ACTIONS(3607), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3608), 11, + ACTIONS(3605), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115723,13 +115601,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51005] = 3, - ACTIONS(3614), 1, + [50849] = 3, + ACTIONS(3611), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3612), 11, + ACTIONS(3609), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115741,32 +115619,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51026] = 4, + [50870] = 3, + ACTIONS(3437), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3431), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + [50891] = 5, + ACTIONS(2582), 1, + anon_sym_COLON, + ACTIONS(3613), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2584), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [50916] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3616), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2590), 4, + ACTIONS(2602), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2596), 6, + ACTIONS(2608), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51049] = 3, - ACTIONS(3591), 1, + [50939] = 3, + ACTIONS(3590), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3589), 11, + ACTIONS(3588), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115778,7 +115694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51070] = 3, + [50960] = 3, ACTIONS(3621), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -115796,7 +115712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51091] = 3, + [50981] = 3, ACTIONS(3625), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -115814,32 +115730,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51112] = 4, + [51002] = 3, + ACTIONS(3629), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3627), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2578), 4, + ACTIONS(3627), 11, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2584), 6, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [51135] = 3, - ACTIONS(3632), 1, + [51023] = 3, + ACTIONS(3633), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3630), 11, + ACTIONS(3631), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115851,53 +115766,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51156] = 5, - ACTIONS(2610), 1, - anon_sym_COLON, + [51044] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 3, + ACTIONS(3613), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2578), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3605), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2612), 5, + ACTIONS(2584), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51181] = 5, - ACTIONS(2574), 1, + [51067] = 5, + ACTIONS(2614), 1, anon_sym_COLON, + ACTIONS(3602), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 3, + ACTIONS(2610), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3634), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2576), 5, + anon_sym_LT2, + ACTIONS(2616), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51206] = 3, - ACTIONS(3639), 1, + [51092] = 3, + ACTIONS(3637), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3637), 11, + ACTIONS(3635), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115909,31 +115823,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51227] = 3, - ACTIONS(3643), 1, - anon_sym_EQ, + [51113] = 5, + ACTIONS(2574), 1, + anon_sym_COLON, + ACTIONS(3639), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3641), 11, - anon_sym_SEMI, + ACTIONS(2570), 5, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, + anon_sym_LT2, + ACTIONS(2576), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51248] = 3, - ACTIONS(3647), 1, + [51138] = 3, + ACTIONS(3644), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3645), 11, + ACTIONS(3642), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115945,33 +115861,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51269] = 5, - ACTIONS(2594), 1, - anon_sym_COLON, - ACTIONS(3616), 1, - anon_sym_LPAREN, + [51159] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 5, - anon_sym_RPAREN, + ACTIONS(3639), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2570), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2596), 5, + ACTIONS(2576), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51294] = 3, - ACTIONS(3651), 1, + [51182] = 3, + ACTIONS(3648), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3649), 11, + ACTIONS(3646), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115983,13 +115898,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51315] = 3, - ACTIONS(3655), 1, + [51203] = 3, + ACTIONS(3652), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3653), 11, + ACTIONS(3650), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116001,13 +115916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51336] = 3, - ACTIONS(3659), 1, + [51224] = 3, + ACTIONS(3656), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3657), 11, + ACTIONS(3654), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116019,31 +115934,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51357] = 3, - ACTIONS(3579), 1, - anon_sym_EQ, + [51245] = 7, + ACTIONS(3507), 1, + anon_sym_PIPE, + ACTIONS(3509), 1, + anon_sym_COLON, + ACTIONS(3511), 1, + anon_sym_BANG, + ACTIONS(3658), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3577), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - [51378] = 3, - ACTIONS(3663), 1, + ACTIONS(3515), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2624), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [51274] = 3, + ACTIONS(3662), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3661), 11, + ACTIONS(3660), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116055,13 +115974,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51399] = 3, - ACTIONS(3667), 1, + [51295] = 3, + ACTIONS(3666), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3665), 11, + ACTIONS(3664), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116073,13 +115992,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51420] = 3, - ACTIONS(3671), 1, + [51316] = 3, + ACTIONS(3670), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3669), 11, + ACTIONS(3668), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116091,33 +116010,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51441] = 5, - ACTIONS(2582), 1, - anon_sym_COLON, - ACTIONS(3627), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2584), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [51466] = 3, - ACTIONS(3675), 1, + [51337] = 3, + ACTIONS(3674), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3673), 11, + ACTIONS(3672), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116125,57 +116024,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COLON, anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - [51487] = 5, - ACTIONS(2582), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2578), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3627), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2584), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [51512] = 5, - ACTIONS(2610), 1, - anon_sym_COLON, - ACTIONS(3605), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2606), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2612), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [51537] = 3, - ACTIONS(3679), 1, + [51358] = 3, + ACTIONS(3678), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3677), 11, + ACTIONS(3676), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116187,33 +116046,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51558] = 5, - ACTIONS(2574), 1, + [51379] = 5, + ACTIONS(2606), 1, anon_sym_COLON, - ACTIONS(3634), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 5, - anon_sym_RPAREN, + ACTIONS(2602), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2576), 5, + ACTIONS(3616), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2608), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51583] = 3, - ACTIONS(3683), 1, + [51404] = 3, + ACTIONS(3682), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3681), 11, + ACTIONS(3680), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116225,32 +116084,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51604] = 4, + [51425] = 3, + ACTIONS(3584), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3634), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2570), 4, + ACTIONS(3582), 11, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2576), 6, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [51627] = 3, - ACTIONS(3687), 1, + [51446] = 3, + ACTIONS(3686), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3685), 11, + ACTIONS(3684), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116262,13 +116120,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51648] = 3, - ACTIONS(3691), 1, + [51467] = 5, + ACTIONS(2606), 1, + anon_sym_COLON, + ACTIONS(3616), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2602), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2608), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51492] = 3, + ACTIONS(3690), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3689), 11, + ACTIONS(3688), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116280,13 +116158,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51669] = 3, - ACTIONS(3695), 1, + [51513] = 3, + ACTIONS(3694), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3693), 11, + ACTIONS(3692), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116298,13 +116176,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51690] = 3, - ACTIONS(426), 1, + [51534] = 3, + ACTIONS(3698), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(424), 11, + ACTIONS(3696), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116316,13 +116194,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51711] = 3, - ACTIONS(3699), 1, + [51555] = 3, + ACTIONS(3702), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3697), 11, + ACTIONS(3700), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116334,13 +116212,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51732] = 3, - ACTIONS(3703), 1, + [51576] = 3, + ACTIONS(3706), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3701), 11, + ACTIONS(3704), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116352,13 +116230,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51753] = 3, - ACTIONS(3707), 1, + [51597] = 3, + ACTIONS(452), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3705), 11, + ACTIONS(450), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116370,13 +116248,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51774] = 3, - ACTIONS(3440), 1, + [51618] = 3, + ACTIONS(3710), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3434), 11, + ACTIONS(3708), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116388,55 +116266,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51795] = 7, - ACTIONS(3510), 1, - anon_sym_PIPE, - ACTIONS(3512), 1, - anon_sym_COLON, - ACTIONS(3514), 1, - anon_sym_BANG, - ACTIONS(3709), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3518), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2630), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [51824] = 5, - ACTIONS(2594), 1, + [51639] = 5, + ACTIONS(2574), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2590), 3, + ACTIONS(2570), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3616), 3, + ACTIONS(3639), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2596), 5, + ACTIONS(2576), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51849] = 3, - ACTIONS(3713), 1, + [51664] = 3, + ACTIONS(3714), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3711), 11, + ACTIONS(3712), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116448,31 +116304,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51870] = 3, - ACTIONS(3717), 1, - anon_sym_EQ, + [51685] = 5, + ACTIONS(2582), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3715), 11, - anon_sym_SEMI, + ACTIONS(2578), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3613), 3, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, + ACTIONS(2584), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51891] = 3, - ACTIONS(3721), 1, + [51710] = 3, + ACTIONS(3718), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3719), 11, + ACTIONS(3716), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116484,43 +116342,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51912] = 9, - ACTIONS(3442), 1, - anon_sym_BANG, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(3452), 1, - anon_sym_LPAREN, - ACTIONS(3454), 1, - anon_sym_COLON_COLON, - ACTIONS(3723), 1, - anon_sym_for, - STATE(1347), 1, - sym_type_arguments, - STATE(1354), 1, - sym_parameters, + [51731] = 5, + ACTIONS(2614), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 4, - anon_sym_SEMI, + ACTIONS(2610), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_where, - [51944] = 9, - ACTIONS(3442), 1, + anon_sym_LT2, + ACTIONS(3602), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2616), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51756] = 9, + ACTIONS(3439), 1, anon_sym_BANG, - ACTIONS(3448), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3452), 1, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3454), 1, + ACTIONS(3451), 1, anon_sym_COLON_COLON, - ACTIONS(3725), 1, + ACTIONS(3720), 1, anon_sym_for, - STATE(1347), 1, + STATE(1342), 1, sym_type_arguments, - STATE(1354), 1, + STATE(1361), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -116530,20 +116385,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [51976] = 9, - ACTIONS(3442), 1, + [51788] = 9, + ACTIONS(3439), 1, anon_sym_BANG, - ACTIONS(3448), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3452), 1, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3454), 1, + ACTIONS(3451), 1, anon_sym_COLON_COLON, - ACTIONS(3727), 1, + ACTIONS(3722), 1, anon_sym_for, - STATE(1347), 1, + STATE(1342), 1, sym_type_arguments, - STATE(1354), 1, + STATE(1361), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -116553,20 +116408,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52008] = 9, - ACTIONS(3442), 1, + [51820] = 5, + ACTIONS(706), 1, + aux_sym_string_literal_token1, + ACTIONS(3726), 1, + sym_crate, + STATE(1530), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3724), 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, + [51844] = 9, + ACTIONS(3439), 1, anon_sym_BANG, - ACTIONS(3448), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3452), 1, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3454), 1, + ACTIONS(3451), 1, anon_sym_COLON_COLON, - ACTIONS(3729), 1, + ACTIONS(3728), 1, anon_sym_for, - STATE(1347), 1, + STATE(1342), 1, sym_type_arguments, - STATE(1354), 1, + STATE(1361), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -116576,20 +116450,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52040] = 9, - ACTIONS(3442), 1, + [51876] = 9, + ACTIONS(3439), 1, anon_sym_BANG, - ACTIONS(3448), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3452), 1, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3454), 1, + ACTIONS(3451), 1, anon_sym_COLON_COLON, - ACTIONS(3731), 1, + ACTIONS(3730), 1, anon_sym_for, - STATE(1347), 1, + STATE(1342), 1, sym_type_arguments, - STATE(1354), 1, + STATE(1361), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -116599,17 +116473,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52072] = 5, + [51908] = 5, ACTIONS(706), 1, aux_sym_string_literal_token1, - ACTIONS(3735), 1, + ACTIONS(3732), 1, sym_crate, - STATE(1552), 1, + STATE(1530), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3733), 8, + ACTIONS(3724), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -116618,20 +116492,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52096] = 9, - ACTIONS(3442), 1, + [51932] = 9, + ACTIONS(3439), 1, anon_sym_BANG, - ACTIONS(3448), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3452), 1, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3454), 1, + ACTIONS(3451), 1, anon_sym_COLON_COLON, - ACTIONS(3737), 1, + ACTIONS(3734), 1, anon_sym_for, - STATE(1347), 1, + STATE(1342), 1, sym_type_arguments, - STATE(1354), 1, + STATE(1361), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -116641,39 +116515,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52128] = 5, - ACTIONS(706), 1, - aux_sym_string_literal_token1, - ACTIONS(3739), 1, - sym_crate, - STATE(1552), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3733), 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, - [52152] = 9, - ACTIONS(3442), 1, + [51964] = 9, + ACTIONS(3439), 1, anon_sym_BANG, - ACTIONS(3448), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3452), 1, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3454), 1, + ACTIONS(3451), 1, anon_sym_COLON_COLON, - ACTIONS(3741), 1, + ACTIONS(3736), 1, anon_sym_for, - STATE(1347), 1, + STATE(1342), 1, sym_type_arguments, - STATE(1354), 1, + STATE(1361), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -116683,20 +116538,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52184] = 9, - ACTIONS(3442), 1, + [51996] = 9, + ACTIONS(3439), 1, anon_sym_BANG, - ACTIONS(3448), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3452), 1, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3454), 1, + ACTIONS(3451), 1, anon_sym_COLON_COLON, - ACTIONS(3743), 1, + ACTIONS(3738), 1, anon_sym_for, - STATE(1347), 1, + STATE(1342), 1, sym_type_arguments, - STATE(1354), 1, + STATE(1361), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -116706,17 +116561,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52216] = 5, + [52028] = 5, ACTIONS(706), 1, aux_sym_string_literal_token1, - ACTIONS(3745), 1, + ACTIONS(3740), 1, sym_crate, - STATE(1552), 1, + STATE(1530), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3733), 8, + ACTIONS(3724), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -116725,17 +116580,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52240] = 5, + [52052] = 5, ACTIONS(706), 1, aux_sym_string_literal_token1, - ACTIONS(3747), 1, + ACTIONS(3742), 1, sym_crate, - STATE(1552), 1, + STATE(1530), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3733), 8, + ACTIONS(3724), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -116744,106 +116599,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52264] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3749), 1, - sym_identifier, - ACTIONS(3751), 1, - anon_sym_RBRACE, - ACTIONS(3753), 1, - anon_sym_COMMA, - ACTIONS(3755), 1, - sym_crate, - STATE(2103), 1, - sym_field_declaration, - STATE(2441), 1, - sym_visibility_modifier, + [52076] = 9, + ACTIONS(3439), 1, + anon_sym_BANG, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3451), 1, + anon_sym_COLON_COLON, + ACTIONS(3744), 1, + anon_sym_for, + STATE(1342), 1, + sym_type_arguments, + STATE(1361), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1554), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52297] = 6, - ACTIONS(15), 1, + ACTIONS(2550), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3470), 1, - anon_sym_trait, - ACTIONS(3757), 1, - anon_sym_impl, - STATE(75), 1, - sym_block, + anon_sym_PLUS, + anon_sym_where, + [52108] = 7, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3746), 1, + anon_sym_LBRACE, + STATE(1347), 1, + sym_type_arguments, + STATE(1349), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52322] = 8, + ACTIONS(2598), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_COMMA, + [52135] = 8, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3759), 1, + ACTIONS(3748), 1, sym_identifier, - ACTIONS(3761), 1, + ACTIONS(3750), 1, anon_sym_RBRACE, - ACTIONS(3763), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3765), 1, + ACTIONS(3754), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1772), 2, + STATE(1838), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2091), 3, + STATE(1897), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [52351] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - sym_crate, - ACTIONS(3767), 1, - sym_identifier, - ACTIONS(3769), 1, - anon_sym_RBRACE, - ACTIONS(3771), 1, - anon_sym_COMMA, - STATE(2077), 1, - sym_enum_variant, - STATE(2419), 1, - sym_visibility_modifier, + [52164] = 6, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3493), 1, + anon_sym_trait, + ACTIONS(3756), 1, + anon_sym_impl, + STATE(61), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1529), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52384] = 9, - ACTIONS(3442), 1, + ACTIONS(2624), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52189] = 9, + ACTIONS(3439), 1, anon_sym_BANG, - ACTIONS(3448), 1, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3452), 1, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3454), 1, + ACTIONS(3451), 1, anon_sym_COLON_COLON, - ACTIONS(3773), 1, + ACTIONS(3758), 1, anon_sym_EQ, - STATE(1354), 1, + STATE(1361), 1, sym_parameters, - STATE(1731), 1, + STATE(1747), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, @@ -116852,1255 +116704,1224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_COMMA, anon_sym_GT, - [52415] = 10, + [52220] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3749), 1, + ACTIONS(3760), 1, sym_identifier, - ACTIONS(3755), 1, - sym_crate, - ACTIONS(3775), 1, + ACTIONS(3762), 1, anon_sym_RBRACE, - ACTIONS(3777), 1, + ACTIONS(3764), 1, anon_sym_COMMA, + ACTIONS(3766), 1, + sym_crate, STATE(2106), 1, sym_field_declaration, - STATE(2441), 1, + STATE(2410), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1550), 2, + STATE(1562), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52448] = 10, + [52253] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3755), 1, - sym_crate, - ACTIONS(3767), 1, + ACTIONS(3760), 1, sym_identifier, - ACTIONS(3779), 1, + ACTIONS(3766), 1, + sym_crate, + ACTIONS(3768), 1, anon_sym_RBRACE, - ACTIONS(3781), 1, + ACTIONS(3770), 1, anon_sym_COMMA, - STATE(1895), 1, - sym_enum_variant, - STATE(2419), 1, + STATE(2008), 1, + sym_field_declaration, + STATE(2410), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1563), 2, + STATE(1527), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52481] = 7, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(3452), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_LBRACE, - STATE(1343), 1, - sym_type_arguments, - STATE(1353), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2586), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_COMMA, - [52508] = 9, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, + [52286] = 10, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym_crate, + ACTIONS(3772), 1, sym_identifier, - ACTIONS(3787), 1, - anon_sym_const, - ACTIONS(3789), 1, - anon_sym_GT, - ACTIONS(3791), 1, - sym_metavariable, - STATE(1842), 1, - sym_lifetime, - STATE(1889), 1, - sym_constrained_type_parameter, + ACTIONS(3774), 1, + anon_sym_RBRACE, + ACTIONS(3776), 1, + anon_sym_COMMA, + STATE(1880), 1, + sym_enum_variant, + STATE(2335), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2283), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52538] = 9, + STATE(1560), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [52319] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3766), 1, sym_crate, - ACTIONS(3767), 1, + ACTIONS(3772), 1, sym_identifier, - ACTIONS(3793), 1, + ACTIONS(3778), 1, anon_sym_RBRACE, - STATE(2310), 1, + ACTIONS(3780), 1, + anon_sym_COMMA, + STATE(2073), 1, sym_enum_variant, - STATE(2419), 1, + STATE(2335), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1542), 2, + STATE(1559), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52568] = 7, - ACTIONS(3448), 1, + [52352] = 7, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3452), 1, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3795), 1, + ACTIONS(3782), 1, anon_sym_for, - STATE(1343), 1, + STATE(1347), 1, sym_type_arguments, - STATE(1353), 1, + STATE(1349), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2598), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52378] = 7, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3784), 1, + anon_sym_for, + STATE(1347), 1, + sym_type_arguments, + STATE(1349), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 4, + ACTIONS(2598), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52594] = 5, - ACTIONS(3797), 1, + [52404] = 5, + ACTIONS(3786), 1, anon_sym_SEMI, - ACTIONS(3799), 1, + ACTIONS(3788), 1, anon_sym_LBRACE, - STATE(467), 1, + STATE(280), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 6, + ACTIONS(2624), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52616] = 10, - ACTIONS(3801), 1, - anon_sym_SEMI, - ACTIONS(3803), 1, - anon_sym_LPAREN, - ACTIONS(3805), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3809), 1, - anon_sym_LT, - STATE(864), 1, - sym_field_declaration_list, - STATE(1569), 1, - sym_type_parameters, - STATE(2112), 1, - sym_ordered_field_declaration_list, - STATE(2134), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [52648] = 7, - ACTIONS(3436), 1, - anon_sym_LPAREN, - ACTIONS(3440), 1, - anon_sym_COLON, - ACTIONS(3442), 1, - anon_sym_BANG, - ACTIONS(3811), 1, - anon_sym_COLON_COLON, + [52426] = 9, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3790), 1, + sym_identifier, + ACTIONS(3792), 1, + anon_sym_const, + ACTIONS(3794), 1, + anon_sym_GT, + ACTIONS(3796), 1, + sym_metavariable, + STATE(1773), 1, + sym_lifetime, + STATE(2041), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3446), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3434), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [52674] = 10, - ACTIONS(3803), 1, + STATE(2164), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52456] = 10, + ACTIONS(3798), 1, + anon_sym_SEMI, + ACTIONS(3800), 1, anon_sym_LPAREN, - ACTIONS(3807), 1, + ACTIONS(3802), 1, + anon_sym_LBRACE, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3809), 1, + ACTIONS(3806), 1, anon_sym_LT, - ACTIONS(3813), 1, - anon_sym_SEMI, - ACTIONS(3815), 1, - anon_sym_LBRACE, - STATE(275), 1, + STATE(886), 1, sym_field_declaration_list, - STATE(1567), 1, + STATE(1571), 1, sym_type_parameters, - STATE(1912), 1, + STATE(2098), 1, sym_ordered_field_declaration_list, - STATE(2218), 1, + STATE(2130), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52706] = 7, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3759), 1, - sym_identifier, - ACTIONS(3765), 1, - anon_sym_DOT_DOT, - ACTIONS(3817), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1772), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2165), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [52732] = 9, + [52488] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3755), 1, - sym_crate, - ACTIONS(3767), 1, + ACTIONS(3760), 1, sym_identifier, - ACTIONS(3819), 1, + ACTIONS(3766), 1, + sym_crate, + ACTIONS(3808), 1, anon_sym_RBRACE, - STATE(2310), 1, - sym_enum_variant, - STATE(2419), 1, + STATE(2274), 1, + sym_field_declaration, + STATE(2410), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1542), 2, + STATE(1524), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52762] = 9, + [52518] = 9, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3785), 1, + ACTIONS(3790), 1, sym_identifier, - ACTIONS(3787), 1, + ACTIONS(3792), 1, anon_sym_const, - ACTIONS(3791), 1, + ACTIONS(3796), 1, sym_metavariable, - ACTIONS(3821), 1, + ACTIONS(3810), 1, anon_sym_GT, - STATE(1842), 1, + STATE(1832), 1, sym_lifetime, - STATE(1889), 1, + STATE(2041), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2283), 2, + STATE(2164), 2, sym_const_parameter, sym_optional_type_parameter, - [52792] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3823), 1, - anon_sym_move, - STATE(64), 1, - sym_block, + [52548] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3760), 1, + sym_identifier, + ACTIONS(3766), 1, + sym_crate, + ACTIONS(3812), 1, + anon_sym_RBRACE, + STATE(2274), 1, + sym_field_declaration, + STATE(2410), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52814] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, + STATE(1524), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [52578] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym_crate, + ACTIONS(3772), 1, sym_identifier, - STATE(60), 1, - sym_block, + ACTIONS(3814), 1, + anon_sym_RBRACE, + STATE(2248), 1, + sym_enum_variant, + STATE(2335), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3827), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52836] = 9, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, - sym_identifier, - ACTIONS(3787), 1, - anon_sym_const, - ACTIONS(3791), 1, - sym_metavariable, - ACTIONS(3829), 1, - anon_sym_GT, - STATE(1842), 1, - sym_lifetime, - STATE(1889), 1, - sym_constrained_type_parameter, + STATE(1558), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [52608] = 7, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3816), 1, + anon_sym_for, + STATE(1347), 1, + sym_type_arguments, + STATE(1349), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2283), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52866] = 9, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, - sym_identifier, - ACTIONS(3787), 1, - anon_sym_const, - ACTIONS(3791), 1, - sym_metavariable, - ACTIONS(3831), 1, - anon_sym_GT, - STATE(1842), 1, - sym_lifetime, - STATE(1889), 1, - sym_constrained_type_parameter, + ACTIONS(2598), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52634] = 10, + ACTIONS(3800), 1, + anon_sym_LPAREN, + ACTIONS(3802), 1, + anon_sym_LBRACE, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3806), 1, + anon_sym_LT, + ACTIONS(3818), 1, + anon_sym_SEMI, + STATE(980), 1, + sym_field_declaration_list, + STATE(1611), 1, + sym_type_parameters, + STATE(2036), 1, + sym_ordered_field_declaration_list, + STATE(2168), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2283), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52896] = 7, - ACTIONS(3448), 1, + [52666] = 7, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3452), 1, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3833), 1, + ACTIONS(3820), 1, anon_sym_for, - STATE(1343), 1, + STATE(1347), 1, sym_type_arguments, - STATE(1353), 1, + STATE(1349), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 4, + ACTIONS(2598), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52922] = 7, + [52692] = 9, + ACTIONS(53), 1, + anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3759), 1, + ACTIONS(3766), 1, + sym_crate, + ACTIONS(3772), 1, sym_identifier, - ACTIONS(3765), 1, - anon_sym_DOT_DOT, - ACTIONS(3835), 1, + ACTIONS(3822), 1, anon_sym_RBRACE, + STATE(2248), 1, + sym_enum_variant, + STATE(2335), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1772), 2, + STATE(1558), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2165), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [52948] = 9, + [52722] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3749), 1, + ACTIONS(3760), 1, sym_identifier, - ACTIONS(3755), 1, + ACTIONS(3766), 1, sym_crate, - ACTIONS(3837), 1, + ACTIONS(3824), 1, anon_sym_RBRACE, - STATE(2254), 1, + STATE(2274), 1, sym_field_declaration, - STATE(2441), 1, + STATE(2410), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1562), 2, + STATE(1524), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52978] = 7, - ACTIONS(3448), 1, + [52752] = 10, + ACTIONS(3800), 1, + anon_sym_LPAREN, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3806), 1, + anon_sym_LT, + ACTIONS(3826), 1, + anon_sym_SEMI, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(335), 1, + sym_field_declaration_list, + STATE(1609), 1, + sym_type_parameters, + STATE(2101), 1, + sym_ordered_field_declaration_list, + STATE(2116), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [52784] = 7, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3452), 1, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3839), 1, + ACTIONS(3830), 1, anon_sym_for, - STATE(1343), 1, + STATE(1347), 1, sym_type_arguments, - STATE(1353), 1, + STATE(1349), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 4, + ACTIONS(2598), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53004] = 9, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, - sym_identifier, - ACTIONS(3787), 1, - anon_sym_const, - ACTIONS(3791), 1, - sym_metavariable, - ACTIONS(3841), 1, - anon_sym_GT, - STATE(1842), 1, - sym_lifetime, - STATE(1889), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2283), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53034] = 9, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, + [52810] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3760), 1, sym_identifier, - ACTIONS(3787), 1, - anon_sym_const, - ACTIONS(3791), 1, - sym_metavariable, - ACTIONS(3843), 1, - anon_sym_GT, - STATE(1842), 1, - sym_lifetime, - STATE(1889), 1, - sym_constrained_type_parameter, + ACTIONS(3766), 1, + sym_crate, + ACTIONS(3832), 1, + anon_sym_RBRACE, + STATE(2274), 1, + sym_field_declaration, + STATE(2410), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2283), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53064] = 7, - ACTIONS(3448), 1, + STATE(1524), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [52840] = 7, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(3452), 1, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3845), 1, + ACTIONS(3834), 1, anon_sym_for, - STATE(1343), 1, + STATE(1347), 1, sym_type_arguments, - STATE(1353), 1, + STATE(1349), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 4, + ACTIONS(2598), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [53090] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - sym_crate, - ACTIONS(3767), 1, - sym_identifier, - ACTIONS(3847), 1, - anon_sym_RBRACE, - STATE(2310), 1, - sym_enum_variant, - STATE(2419), 1, - sym_visibility_modifier, + [52866] = 9, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3790), 1, + sym_identifier, + ACTIONS(3792), 1, + anon_sym_const, + ACTIONS(3796), 1, + sym_metavariable, + ACTIONS(3836), 1, + anon_sym_GT, + STATE(1773), 1, + sym_lifetime, + STATE(2041), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1542), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53120] = 5, - ACTIONS(3849), 1, + STATE(2164), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52896] = 5, + ACTIONS(3838), 1, anon_sym_SEMI, - ACTIONS(3851), 1, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(1053), 1, + STATE(1032), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 6, + ACTIONS(2624), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53142] = 9, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, + [52918] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym_crate, + ACTIONS(3772), 1, sym_identifier, - ACTIONS(3787), 1, - anon_sym_const, - ACTIONS(3791), 1, - sym_metavariable, - ACTIONS(3853), 1, - anon_sym_GT, - STATE(1856), 1, - sym_lifetime, - STATE(1889), 1, - sym_constrained_type_parameter, + ACTIONS(3842), 1, + anon_sym_RBRACE, + STATE(2248), 1, + sym_enum_variant, + STATE(2335), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2283), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53172] = 9, + STATE(1558), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [52948] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3749), 1, - sym_identifier, - ACTIONS(3755), 1, + ACTIONS(3766), 1, sym_crate, - ACTIONS(3855), 1, + ACTIONS(3772), 1, + sym_identifier, + ACTIONS(3844), 1, anon_sym_RBRACE, - STATE(2254), 1, - sym_field_declaration, - STATE(2441), 1, + STATE(2248), 1, + sym_enum_variant, + STATE(2335), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1562), 2, + STATE(1558), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53202] = 9, - ACTIONS(53), 1, - anon_sym_pub, + [52978] = 7, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3749), 1, + ACTIONS(3748), 1, sym_identifier, - ACTIONS(3755), 1, - sym_crate, - ACTIONS(3857), 1, + ACTIONS(3754), 1, + anon_sym_DOT_DOT, + ACTIONS(3846), 1, anon_sym_RBRACE, - STATE(2254), 1, - sym_field_declaration, - STATE(2441), 1, - sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1562), 2, + STATE(1838), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53232] = 9, + STATE(2209), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53004] = 7, + ACTIONS(3433), 1, + anon_sym_LPAREN, + ACTIONS(3437), 1, + anon_sym_COLON, + ACTIONS(3439), 1, + anon_sym_BANG, + ACTIONS(3848), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3431), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [53030] = 7, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3850), 1, + anon_sym_for, + STATE(1347), 1, + sym_type_arguments, + STATE(1349), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2598), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53056] = 7, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3852), 1, + anon_sym_for, + STATE(1347), 1, + sym_type_arguments, + STATE(1349), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2598), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53082] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3755), 1, - sym_crate, - ACTIONS(3767), 1, + ACTIONS(3760), 1, sym_identifier, - ACTIONS(3859), 1, + ACTIONS(3766), 1, + sym_crate, + ACTIONS(3854), 1, anon_sym_RBRACE, - STATE(2310), 1, - sym_enum_variant, - STATE(2419), 1, + STATE(2274), 1, + sym_field_declaration, + STATE(2410), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1542), 2, + STATE(1524), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53262] = 5, - ACTIONS(3851), 1, + [53112] = 9, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3790), 1, + sym_identifier, + ACTIONS(3792), 1, + anon_sym_const, + ACTIONS(3796), 1, + sym_metavariable, + ACTIONS(3856), 1, + anon_sym_GT, + STATE(1773), 1, + sym_lifetime, + STATE(2041), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2164), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53142] = 5, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3861), 1, - anon_sym_SEMI, - STATE(815), 1, - sym_declaration_list, + ACTIONS(3858), 1, + sym_identifier, + STATE(67), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 6, + ACTIONS(3860), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53284] = 5, - ACTIONS(3799), 1, + [53164] = 5, + ACTIONS(3840), 1, anon_sym_LBRACE, - ACTIONS(3863), 1, + ACTIONS(3862), 1, anon_sym_SEMI, - STATE(273), 1, + STATE(970), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 6, + ACTIONS(2624), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53306] = 10, - ACTIONS(3803), 1, - anon_sym_LPAREN, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3809), 1, - anon_sym_LT, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3865), 1, - anon_sym_SEMI, - STATE(377), 1, - sym_field_declaration_list, - STATE(1594), 1, - sym_type_parameters, - STATE(1953), 1, - sym_ordered_field_declaration_list, - STATE(2309), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [53338] = 9, + [53186] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3766), 1, sym_crate, - ACTIONS(3767), 1, + ACTIONS(3772), 1, sym_identifier, - ACTIONS(3867), 1, + ACTIONS(3864), 1, anon_sym_RBRACE, - STATE(2310), 1, + STATE(2248), 1, sym_enum_variant, - STATE(2419), 1, + STATE(2335), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1542), 2, + STATE(1558), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53368] = 9, + [53216] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3749), 1, - sym_identifier, - ACTIONS(3755), 1, + ACTIONS(3766), 1, sym_crate, - ACTIONS(3869), 1, + ACTIONS(3772), 1, + sym_identifier, + ACTIONS(3866), 1, anon_sym_RBRACE, - STATE(2254), 1, - sym_field_declaration, - STATE(2441), 1, + STATE(2248), 1, + sym_enum_variant, + STATE(2335), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1562), 2, + STATE(1558), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53398] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - sym_crate, - ACTIONS(3767), 1, + [53246] = 9, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3790), 1, sym_identifier, - ACTIONS(3871), 1, - anon_sym_RBRACE, - STATE(2310), 1, - sym_enum_variant, - STATE(2419), 1, - sym_visibility_modifier, + ACTIONS(3792), 1, + anon_sym_const, + ACTIONS(3796), 1, + sym_metavariable, + ACTIONS(3868), 1, + anon_sym_GT, + STATE(1773), 1, + sym_lifetime, + STATE(2041), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1542), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53428] = 9, + STATE(2164), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53276] = 9, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3790), 1, + sym_identifier, + ACTIONS(3792), 1, + anon_sym_const, + ACTIONS(3796), 1, + sym_metavariable, + ACTIONS(3870), 1, + anon_sym_GT, + STATE(1773), 1, + sym_lifetime, + STATE(2041), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2164), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53306] = 9, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3790), 1, + sym_identifier, + ACTIONS(3792), 1, + anon_sym_const, + ACTIONS(3796), 1, + sym_metavariable, + ACTIONS(3872), 1, + anon_sym_GT, + STATE(1773), 1, + sym_lifetime, + STATE(2041), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2164), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53336] = 5, + ACTIONS(3788), 1, + anon_sym_LBRACE, + ACTIONS(3874), 1, + anon_sym_SEMI, + STATE(467), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2624), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53358] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3749), 1, + ACTIONS(3760), 1, sym_identifier, - ACTIONS(3755), 1, + ACTIONS(3766), 1, sym_crate, - ACTIONS(3873), 1, + ACTIONS(3876), 1, anon_sym_RBRACE, - STATE(2254), 1, + STATE(2274), 1, sym_field_declaration, - STATE(2441), 1, + STATE(2410), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1562), 2, + STATE(1524), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53458] = 7, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(3452), 1, - anon_sym_LPAREN, - ACTIONS(3875), 1, - anon_sym_for, - STATE(1343), 1, - sym_type_arguments, - STATE(1353), 1, - sym_parameters, + [53388] = 9, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3790), 1, + sym_identifier, + ACTIONS(3792), 1, + anon_sym_const, + ACTIONS(3796), 1, + sym_metavariable, + ACTIONS(3878), 1, + anon_sym_GT, + STATE(1773), 1, + sym_lifetime, + STATE(2041), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53484] = 10, - ACTIONS(3803), 1, + STATE(2164), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53418] = 10, + ACTIONS(3800), 1, anon_sym_LPAREN, - ACTIONS(3805), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3809), 1, + ACTIONS(3806), 1, anon_sym_LT, - ACTIONS(3877), 1, + ACTIONS(3828), 1, + anon_sym_LBRACE, + ACTIONS(3880), 1, anon_sym_SEMI, - STATE(987), 1, + STATE(377), 1, sym_field_declaration_list, - STATE(1605), 1, + STATE(1588), 1, sym_type_parameters, - STATE(2040), 1, + STATE(1987), 1, sym_ordered_field_declaration_list, - STATE(2169), 1, + STATE(2228), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53516] = 7, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(3452), 1, - anon_sym_LPAREN, - ACTIONS(3879), 1, - anon_sym_for, - STATE(1343), 1, - sym_type_arguments, - STATE(1353), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2586), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53542] = 9, + [53450] = 9, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3785), 1, + ACTIONS(3790), 1, sym_identifier, - ACTIONS(3787), 1, + ACTIONS(3792), 1, anon_sym_const, - ACTIONS(3791), 1, + ACTIONS(3796), 1, sym_metavariable, - ACTIONS(3881), 1, + ACTIONS(3882), 1, anon_sym_GT, - STATE(1842), 1, + STATE(1773), 1, sym_lifetime, - STATE(1889), 1, + STATE(2041), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2283), 2, + STATE(2164), 2, sym_const_parameter, sym_optional_type_parameter, - [53572] = 7, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(3452), 1, - anon_sym_LPAREN, - ACTIONS(3883), 1, - anon_sym_for, - STATE(1343), 1, - sym_type_arguments, - STATE(1353), 1, - sym_parameters, + [53480] = 7, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3748), 1, + sym_identifier, + ACTIONS(3754), 1, + anon_sym_DOT_DOT, + ACTIONS(3884), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 4, - anon_sym_SEMI, + STATE(1838), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2209), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [53506] = 5, + ACTIONS(15), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53598] = 7, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(3452), 1, - anon_sym_LPAREN, - ACTIONS(3885), 1, - anon_sym_for, - STATE(1343), 1, - sym_type_arguments, - STATE(1353), 1, - sym_parameters, + ACTIONS(3886), 1, + anon_sym_move, + STATE(76), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53624] = 9, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, - sym_identifier, - ACTIONS(3787), 1, + ACTIONS(2624), 6, + anon_sym_async, anon_sym_const, - ACTIONS(3791), 1, - sym_metavariable, - ACTIONS(3887), 1, - anon_sym_GT, - STATE(1842), 1, - sym_lifetime, - STATE(1889), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2283), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53654] = 9, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53528] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3749), 1, + ACTIONS(3760), 1, sym_identifier, - ACTIONS(3755), 1, + ACTIONS(3766), 1, sym_crate, - ACTIONS(3889), 1, - anon_sym_RBRACE, - STATE(2254), 1, + STATE(2304), 1, sym_field_declaration, - STATE(2441), 1, + STATE(2410), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1562), 2, + STATE(1153), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53684] = 8, - ACTIONS(786), 1, - anon_sym_DOT_DOT, + [53555] = 5, ACTIONS(3891), 1, - sym_identifier, + anon_sym_fn, ACTIONS(3893), 1, - anon_sym_RBRACE, - ACTIONS(3895), 1, - anon_sym_COMMA, - ACTIONS(3897), 1, - anon_sym_ref, - ACTIONS(3899), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1979), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [53711] = 8, - ACTIONS(786), 1, - anon_sym_DOT_DOT, - ACTIONS(3891), 1, - sym_identifier, - ACTIONS(3897), 1, - anon_sym_ref, - ACTIONS(3899), 1, - sym_mutable_specifier, - ACTIONS(3901), 1, - anon_sym_RBRACE, - ACTIONS(3903), 1, - anon_sym_COMMA, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1932), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [53738] = 8, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3787), 1, + STATE(1525), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3888), 4, + anon_sym_async, anon_sym_const, - ACTIONS(3905), 1, - sym_identifier, - ACTIONS(3907), 1, - sym_metavariable, - STATE(1666), 1, - sym_lifetime, - STATE(1843), 1, - sym_constrained_type_parameter, + anon_sym_default, + anon_sym_unsafe, + [53576] = 5, + ACTIONS(3898), 1, + anon_sym_fn, + ACTIONS(3900), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1891), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53765] = 8, + STATE(1525), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3896), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [53597] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3755), 1, - sym_crate, - ACTIONS(3767), 1, + ACTIONS(3760), 1, sym_identifier, - STATE(2080), 1, - sym_enum_variant, - STATE(2419), 1, + ACTIONS(3766), 1, + sym_crate, + STATE(2012), 1, + sym_field_declaration, + STATE(2410), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1138), 2, + STATE(1153), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53792] = 8, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3787), 1, - anon_sym_const, - ACTIONS(3909), 1, + [53624] = 6, + ACTIONS(3433), 1, + anon_sym_LPAREN, + ACTIONS(3439), 1, + anon_sym_BANG, + ACTIONS(3902), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3431), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [53647] = 8, + ACTIONS(798), 1, + anon_sym_DOT_DOT, + ACTIONS(3904), 1, sym_identifier, - ACTIONS(3911), 1, - sym_metavariable, - STATE(1739), 1, - sym_lifetime, - STATE(1793), 1, - sym_constrained_type_parameter, + ACTIONS(3906), 1, + anon_sym_RBRACE, + ACTIONS(3908), 1, + anon_sym_COMMA, + ACTIONS(3910), 1, + anon_sym_ref, + ACTIONS(3912), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2027), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53819] = 4, - ACTIONS(3915), 1, - anon_sym_PLUS, - STATE(1557), 1, - aux_sym_trait_bounds_repeat1, + STATE(1931), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [53674] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3913), 6, + ACTIONS(3914), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [53838] = 9, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3851), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53689] = 9, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(3917), 1, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3916), 1, anon_sym_COLON, - ACTIONS(3919), 1, + ACTIONS(3918), 1, anon_sym_LT, - STATE(986), 1, + STATE(382), 1, sym_declaration_list, - STATE(1616), 1, + STATE(1697), 1, sym_type_parameters, - STATE(1788), 1, + STATE(1830), 1, sym_trait_bounds, - STATE(2168), 1, + STATE(2233), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53867] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - sym_crate, - ACTIONS(3767), 1, - sym_identifier, - STATE(2310), 1, - sym_enum_variant, - STATE(2419), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1542), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53894] = 9, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, + [53718] = 9, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3917), 1, + ACTIONS(3840), 1, + anon_sym_LBRACE, + ACTIONS(3916), 1, anon_sym_COLON, - ACTIONS(3919), 1, + ACTIONS(3918), 1, anon_sym_LT, - STATE(382), 1, + STATE(896), 1, sym_declaration_list, - STATE(1690), 1, + STATE(1661), 1, sym_type_parameters, - STATE(1814), 1, + STATE(1765), 1, sym_trait_bounds, - STATE(2307), 1, + STATE(2122), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53923] = 6, - ACTIONS(3599), 1, - anon_sym_COLON_COLON, - ACTIONS(3921), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2586), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3510), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3518), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [53946] = 9, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, + [53747] = 9, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3917), 1, + ACTIONS(3840), 1, + anon_sym_LBRACE, + ACTIONS(3916), 1, anon_sym_COLON, - ACTIONS(3919), 1, + ACTIONS(3918), 1, anon_sym_LT, - STATE(251), 1, + STATE(978), 1, sym_declaration_list, - STATE(1624), 1, + STATE(1618), 1, sym_type_parameters, - STATE(1789), 1, + STATE(1814), 1, sym_trait_bounds, - STATE(2176), 1, + STATE(2166), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53975] = 4, - ACTIONS(3926), 1, - anon_sym_PLUS, - STATE(1531), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3924), 6, - anon_sym_SEMI, + [53776] = 9, + ACTIONS(3788), 1, anon_sym_LBRACE, + ACTIONS(3804), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [53994] = 9, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COLON, - ACTIONS(3919), 1, + ACTIONS(3918), 1, anon_sym_LT, - STATE(857), 1, + STATE(402), 1, sym_declaration_list, - STATE(1623), 1, + STATE(1620), 1, sym_type_parameters, - STATE(1765), 1, + STATE(1815), 1, sym_trait_bounds, - STATE(2126), 1, + STATE(2225), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54023] = 4, - ACTIONS(706), 1, - aux_sym_string_literal_token1, - STATE(1552), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3733), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54042] = 6, - ACTIONS(3512), 1, - anon_sym_COLON, - ACTIONS(3514), 1, - anon_sym_BANG, - ACTIONS(3559), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3518), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3510), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [54065] = 6, + [53805] = 8, + ACTIONS(53), 1, + anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3759), 1, + ACTIONS(3760), 1, sym_identifier, - ACTIONS(3765), 1, - anon_sym_DOT_DOT, + ACTIONS(3766), 1, + sym_crate, + STATE(2274), 1, + sym_field_declaration, + STATE(2410), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1772), 2, + STATE(1524), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2165), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [54088] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - sym_crate, - ACTIONS(3767), 1, + [53832] = 8, + ACTIONS(798), 1, + anon_sym_DOT_DOT, + ACTIONS(3904), 1, sym_identifier, - STATE(2138), 1, - sym_enum_variant, - STATE(2419), 1, - sym_visibility_modifier, + ACTIONS(3910), 1, + anon_sym_ref, + ACTIONS(3912), 1, + sym_mutable_specifier, + ACTIONS(3920), 1, + anon_sym_RBRACE, + ACTIONS(3922), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1138), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54115] = 4, - ACTIONS(3587), 1, + STATE(1954), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [53859] = 4, + ACTIONS(3926), 1, + anon_sym_PLUS, + STATE(1550), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3924), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [53878] = 4, + ACTIONS(2688), 1, anon_sym_COLON_COLON, ACTIONS(3928), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 6, + ACTIONS(2624), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54134] = 4, - ACTIONS(3930), 1, + [53897] = 4, + ACTIONS(3932), 1, anon_sym_PLUS, - STATE(1531), 1, + STATE(1539), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3924), 6, + ACTIONS(3930), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54153] = 4, - ACTIONS(3915), 1, + [53916] = 4, + ACTIONS(3935), 1, anon_sym_PLUS, - STATE(1531), 1, + STATE(1550), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, @@ -118112,595 +117933,478 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54172] = 4, - ACTIONS(3514), 1, - anon_sym_BANG, - ACTIONS(3536), 1, - anon_sym_COLON_COLON, + [53935] = 4, + ACTIONS(3937), 1, + anon_sym_PLUS, + STATE(1550), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54191] = 8, + ACTIONS(3924), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [53954] = 8, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3787), 1, + ACTIONS(3792), 1, anon_sym_const, - ACTIONS(3905), 1, + ACTIONS(3939), 1, sym_identifier, - ACTIONS(3907), 1, + ACTIONS(3941), 1, sym_metavariable, - STATE(1713), 1, + STATE(1711), 1, sym_lifetime, - STATE(1843), 1, + STATE(1758), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1891), 2, + STATE(2006), 2, sym_const_parameter, sym_optional_type_parameter, - [54218] = 4, - ACTIONS(3494), 1, - anon_sym_trait, - ACTIONS(3932), 1, - anon_sym_impl, + [53981] = 8, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3792), 1, + anon_sym_const, + ACTIONS(3943), 1, + sym_identifier, + ACTIONS(3945), 1, + sym_metavariable, + STATE(1715), 1, + sym_lifetime, + STATE(1822), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54237] = 9, - ACTIONS(3799), 1, + STATE(2023), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54008] = 8, + ACTIONS(3947), 1, + anon_sym_LPAREN, + ACTIONS(3952), 1, anon_sym_LBRACE, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3917), 1, - anon_sym_COLON, - ACTIONS(3919), 1, - anon_sym_LT, - STATE(371), 1, - sym_declaration_list, - STATE(1677), 1, - sym_type_parameters, - STATE(1834), 1, - sym_trait_bounds, - STATE(2263), 1, - sym_where_clause, + ACTIONS(3955), 1, + anon_sym_LBRACK, + STATE(1544), 1, + aux_sym_macro_definition_repeat1, + STATE(2315), 1, + sym_token_tree_pattern, + STATE(2522), 1, + sym_macro_rule, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54266] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3749), 1, - sym_identifier, - ACTIONS(3755), 1, - sym_crate, - STATE(1978), 1, - sym_field_declaration, - STATE(2441), 1, - sym_visibility_modifier, + ACTIONS(3950), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [54035] = 6, + ACTIONS(3580), 1, + anon_sym_COLON_COLON, + ACTIONS(3958), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1138), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54293] = 9, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(3917), 1, + ACTIONS(2598), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3507), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3515), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54058] = 7, + ACTIONS(2598), 1, + anon_sym_PLUS, + ACTIONS(3507), 1, + anon_sym_PIPE, + ACTIONS(3509), 1, anon_sym_COLON, - ACTIONS(3919), 1, - anon_sym_LT, - STATE(926), 1, - sym_declaration_list, - STATE(1634), 1, - sym_type_parameters, - STATE(1807), 1, - sym_trait_bounds, - STATE(2198), 1, - sym_where_clause, + ACTIONS(3568), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54322] = 2, + ACTIONS(3515), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3958), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [54083] = 4, + ACTIONS(3578), 1, + anon_sym_COLON_COLON, + ACTIONS(3961), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3934), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2624), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54337] = 5, - ACTIONS(3938), 1, - anon_sym_fn, - ACTIONS(3940), 1, - anon_sym_extern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1556), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3936), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [54358] = 8, - ACTIONS(53), 1, - anon_sym_pub, + [54102] = 6, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3749), 1, + ACTIONS(3748), 1, sym_identifier, - ACTIONS(3755), 1, - sym_crate, - STATE(2016), 1, - sym_field_declaration, - STATE(2441), 1, - sym_visibility_modifier, + ACTIONS(3754), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1138), 2, + STATE(1838), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54385] = 4, - ACTIONS(854), 1, + STATE(2209), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [54125] = 4, + ACTIONS(858), 1, anon_sym_LBRACE, - STATE(1454), 1, + STATE(1455), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 6, + ACTIONS(2624), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54404] = 5, - ACTIONS(3945), 1, - anon_sym_fn, - ACTIONS(3947), 1, - anon_sym_extern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1556), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3942), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [54425] = 4, - ACTIONS(3952), 1, + [54144] = 4, + ACTIONS(3926), 1, anon_sym_PLUS, - STATE(1557), 1, + STATE(1539), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3950), 6, + ACTIONS(3963), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54444] = 4, - ACTIONS(2748), 1, - anon_sym_COLON_COLON, - ACTIONS(3955), 1, - anon_sym_BANG, + [54163] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym_crate, + ACTIONS(3772), 1, + sym_identifier, + STATE(2248), 1, + sym_enum_variant, + STATE(2335), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54463] = 6, - ACTIONS(3510), 1, + STATE(1558), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54190] = 6, + ACTIONS(3507), 1, anon_sym_PIPE, - ACTIONS(3512), 1, + ACTIONS(3509), 1, anon_sym_COLON, - ACTIONS(3709), 1, + ACTIONS(3658), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3518), 2, + ACTIONS(3515), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2586), 3, + ACTIONS(2598), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [54486] = 8, + [54213] = 4, + ACTIONS(3467), 1, + anon_sym_trait, + ACTIONS(3965), 1, + anon_sym_impl, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2624), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54232] = 8, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3785), 1, - sym_identifier, - ACTIONS(3787), 1, + ACTIONS(3792), 1, anon_sym_const, - ACTIONS(3791), 1, + ACTIONS(3939), 1, + sym_identifier, + ACTIONS(3941), 1, sym_metavariable, - STATE(1842), 1, + STATE(1690), 1, sym_lifetime, - STATE(1889), 1, + STATE(1758), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2283), 2, + STATE(2006), 2, sym_const_parameter, sym_optional_type_parameter, - [54513] = 8, - ACTIONS(3957), 1, - anon_sym_LPAREN, - ACTIONS(3962), 1, + [54259] = 9, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3840), 1, anon_sym_LBRACE, - ACTIONS(3965), 1, - anon_sym_LBRACK, - STATE(1561), 1, - aux_sym_macro_definition_repeat1, - STATE(2319), 1, - sym_macro_rule, - STATE(2405), 1, - sym_token_tree_pattern, + ACTIONS(3916), 1, + anon_sym_COLON, + ACTIONS(3918), 1, + anon_sym_LT, + STATE(820), 1, + sym_declaration_list, + STATE(1644), 1, + sym_type_parameters, + STATE(1807), 1, + sym_trait_bounds, + STATE(2194), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54288] = 8, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3790), 1, + sym_identifier, + ACTIONS(3792), 1, + anon_sym_const, + ACTIONS(3796), 1, + sym_metavariable, + STATE(1773), 1, + sym_lifetime, + STATE(2041), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2164), 2, + sym_const_parameter, + sym_optional_type_parameter, + [54315] = 6, + ACTIONS(3509), 1, + anon_sym_COLON, + ACTIONS(3511), 1, + anon_sym_BANG, + ACTIONS(3568), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3960), 2, + ACTIONS(3515), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3507), 3, anon_sym_RPAREN, - anon_sym_RBRACE, - [54540] = 8, + anon_sym_COMMA, + anon_sym_PIPE, + [54338] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3749), 1, - sym_identifier, - ACTIONS(3755), 1, + ACTIONS(3766), 1, sym_crate, - STATE(2248), 1, - sym_field_declaration, - STATE(2441), 1, + ACTIONS(3772), 1, + sym_identifier, + STATE(2286), 1, + sym_enum_variant, + STATE(2335), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1138), 2, + STATE(1153), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54567] = 8, + [54365] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3766), 1, sym_crate, - ACTIONS(3767), 1, + ACTIONS(3772), 1, sym_identifier, - STATE(2047), 1, + STATE(2082), 1, sym_enum_variant, - STATE(2419), 1, + STATE(2335), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1138), 2, + STATE(1153), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54594] = 6, - ACTIONS(3436), 1, - anon_sym_LPAREN, - ACTIONS(3442), 1, - anon_sym_BANG, - ACTIONS(3968), 1, - anon_sym_COLON_COLON, + [54392] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym_crate, + ACTIONS(3772), 1, + sym_identifier, + STATE(2075), 1, + sym_enum_variant, + STATE(2335), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3446), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3434), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - [54617] = 7, - ACTIONS(2586), 1, - anon_sym_PLUS, - ACTIONS(3510), 1, - anon_sym_PIPE, - ACTIONS(3512), 1, - anon_sym_COLON, - ACTIONS(3559), 1, - anon_sym_COLON_COLON, + STATE(1153), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54419] = 4, + ACTIONS(706), 1, + aux_sym_string_literal_token1, + STATE(1530), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3518), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3921), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [54642] = 8, + ACTIONS(3724), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54438] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3749), 1, + ACTIONS(3760), 1, sym_identifier, - ACTIONS(3755), 1, + ACTIONS(3766), 1, sym_crate, - STATE(2254), 1, + STATE(2028), 1, sym_field_declaration, - STATE(2441), 1, + STATE(2410), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1562), 2, + STATE(1153), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54669] = 8, - ACTIONS(3803), 1, - anon_sym_LPAREN, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3970), 1, - anon_sym_SEMI, - STATE(385), 1, - sym_field_declaration_list, - STATE(1988), 1, - sym_ordered_field_declaration_list, - STATE(2224), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54695] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3950), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54709] = 8, - ACTIONS(3803), 1, - anon_sym_LPAREN, - ACTIONS(3805), 1, + [54465] = 9, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(3807), 1, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3972), 1, - anon_sym_SEMI, - STATE(923), 1, - sym_field_declaration_list, - STATE(1994), 1, - sym_ordered_field_declaration_list, - STATE(2195), 1, + ACTIONS(3916), 1, + anon_sym_COLON, + ACTIONS(3918), 1, + anon_sym_LT, + STATE(317), 1, + sym_declaration_list, + STATE(1680), 1, + sym_type_parameters, + STATE(1778), 1, + sym_trait_bounds, + STATE(2167), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54735] = 7, - ACTIONS(786), 1, - anon_sym_DOT_DOT, - ACTIONS(3891), 1, - sym_identifier, - ACTIONS(3897), 1, - anon_sym_ref, - ACTIONS(3899), 1, - sym_mutable_specifier, - ACTIONS(3974), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2232), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54759] = 3, - ACTIONS(3976), 1, - sym_identifier, + [54494] = 4, + ACTIONS(3511), 1, + anon_sym_BANG, + ACTIONS(3546), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3827), 6, + ACTIONS(2624), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54775] = 7, - ACTIONS(3434), 1, + [54513] = 7, + ACTIONS(3431), 1, anon_sym_PIPE, - ACTIONS(3436), 1, + ACTIONS(3433), 1, anon_sym_LPAREN, - ACTIONS(3440), 1, + ACTIONS(3437), 1, anon_sym_COLON, - ACTIONS(3442), 1, + ACTIONS(3439), 1, anon_sym_BANG, - ACTIONS(3978), 1, + ACTIONS(3967), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3446), 2, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [54799] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3950), 7, - anon_sym_SEMI, + [54537] = 6, + ACTIONS(3800), 1, + anon_sym_LPAREN, + ACTIONS(3802), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, + ACTIONS(3971), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54813] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3950), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3969), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [54827] = 3, - ACTIONS(3980), 1, + STATE(2079), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [54559] = 3, + ACTIONS(3973), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3827), 6, + ACTIONS(3860), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54843] = 8, - ACTIONS(3982), 1, - anon_sym_LPAREN, - ACTIONS(3984), 1, - anon_sym_LBRACE, - ACTIONS(3986), 1, - anon_sym_LBRACK, - ACTIONS(3988), 1, - anon_sym_RBRACK, - ACTIONS(3990), 1, - anon_sym_EQ, - ACTIONS(3992), 1, - anon_sym_COLON_COLON, - STATE(2502), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54869] = 8, - ACTIONS(3982), 1, - anon_sym_LPAREN, - ACTIONS(3984), 1, - anon_sym_LBRACE, - ACTIONS(3986), 1, - anon_sym_LBRACK, - ACTIONS(3988), 1, - anon_sym_RBRACK, - ACTIONS(3990), 1, - anon_sym_EQ, - ACTIONS(3994), 1, - anon_sym_COLON_COLON, - STATE(2502), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54895] = 6, - ACTIONS(3803), 1, - anon_sym_LPAREN, - ACTIONS(3805), 1, - anon_sym_LBRACE, - ACTIONS(3998), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3996), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2014), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [54917] = 8, - ACTIONS(3982), 1, - anon_sym_LPAREN, - ACTIONS(3984), 1, - anon_sym_LBRACE, - ACTIONS(3986), 1, - anon_sym_LBRACK, - ACTIONS(3988), 1, - anon_sym_RBRACK, - ACTIONS(3990), 1, - anon_sym_EQ, - ACTIONS(4000), 1, - anon_sym_COLON_COLON, - STATE(2502), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54943] = 8, - ACTIONS(3587), 1, - anon_sym_COLON_COLON, - ACTIONS(3982), 1, - anon_sym_LPAREN, - ACTIONS(3984), 1, - anon_sym_LBRACE, - ACTIONS(3986), 1, - anon_sym_LBRACK, - ACTIONS(4002), 1, - anon_sym_RBRACK, - ACTIONS(4004), 1, - anon_sym_EQ, - STATE(2506), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54969] = 2, + [54575] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3950), 7, + ACTIONS(3930), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -118708,11 +118412,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54983] = 2, + [54589] = 3, + ACTIONS(3975), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3860), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54605] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3950), 7, + ACTIONS(3930), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -118720,119 +118437,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54997] = 8, - ACTIONS(4006), 1, - anon_sym_LPAREN, - ACTIONS(4008), 1, - anon_sym_RPAREN, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4012), 1, - anon_sym_LBRACK, - STATE(1561), 1, - aux_sym_macro_definition_repeat1, - STATE(2249), 1, - sym_macro_rule, - STATE(2405), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55023] = 8, - ACTIONS(4006), 1, - anon_sym_LPAREN, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4014), 1, - anon_sym_RBRACE, - STATE(1561), 1, - aux_sym_macro_definition_repeat1, - STATE(2251), 1, - sym_macro_rule, - STATE(2405), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55049] = 8, - ACTIONS(4006), 1, - anon_sym_LPAREN, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4016), 1, - anon_sym_RPAREN, - STATE(1601), 1, - aux_sym_macro_definition_repeat1, - STATE(2240), 1, - sym_macro_rule, - STATE(2405), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55075] = 8, - ACTIONS(4006), 1, - anon_sym_LPAREN, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4018), 1, - anon_sym_RPAREN, - STATE(1602), 1, - aux_sym_macro_definition_repeat1, - STATE(2239), 1, - sym_macro_rule, - STATE(2405), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55101] = 8, - ACTIONS(4006), 1, - anon_sym_LPAREN, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4020), 1, - anon_sym_RPAREN, - STATE(1561), 1, - aux_sym_macro_definition_repeat1, - STATE(2277), 1, - sym_macro_rule, - STATE(2405), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [55127] = 8, - ACTIONS(4006), 1, + [54619] = 8, + ACTIONS(3800), 1, anon_sym_LPAREN, - ACTIONS(4010), 1, + ACTIONS(3802), 1, anon_sym_LBRACE, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4022), 1, - anon_sym_RBRACE, - STATE(1561), 1, - aux_sym_macro_definition_repeat1, - STATE(2147), 1, - sym_macro_rule, - STATE(2405), 1, - sym_token_tree_pattern, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3977), 1, + anon_sym_SEMI, + STATE(823), 1, + sym_field_declaration_list, + STATE(2015), 1, + sym_ordered_field_declaration_list, + STATE(2191), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55153] = 2, + [54645] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4024), 7, + ACTIONS(3979), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -118840,300 +118467,302 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55167] = 7, - ACTIONS(786), 1, + [54659] = 3, + ACTIONS(3981), 1, + anon_sym_trait, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2624), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54675] = 7, + ACTIONS(798), 1, anon_sym_DOT_DOT, - ACTIONS(3891), 1, + ACTIONS(3904), 1, sym_identifier, - ACTIONS(3897), 1, + ACTIONS(3910), 1, anon_sym_ref, - ACTIONS(3899), 1, + ACTIONS(3912), 1, sym_mutable_specifier, - ACTIONS(4026), 1, + ACTIONS(3983), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2232), 2, + STATE(2263), 2, sym_field_pattern, sym_remaining_field_pattern, - [55191] = 8, - ACTIONS(4006), 1, - anon_sym_LPAREN, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4028), 1, - anon_sym_RBRACE, - STATE(1561), 1, - aux_sym_macro_definition_repeat1, - STATE(2278), 1, - sym_macro_rule, - STATE(2405), 1, - sym_token_tree_pattern, + [54699] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55217] = 8, - ACTIONS(4006), 1, + ACTIONS(3930), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54713] = 8, + ACTIONS(3985), 1, anon_sym_LPAREN, - ACTIONS(4010), 1, + ACTIONS(3987), 1, + anon_sym_RPAREN, + ACTIONS(3989), 1, anon_sym_LBRACE, - ACTIONS(4012), 1, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(4030), 1, - anon_sym_RBRACE, - STATE(1561), 1, + STATE(1544), 1, aux_sym_macro_definition_repeat1, - STATE(2145), 1, + STATE(2121), 1, sym_macro_rule, - STATE(2405), 1, + STATE(2315), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55243] = 3, - ACTIONS(4032), 1, - anon_sym_trait, + [54739] = 3, + ACTIONS(3993), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 6, + ACTIONS(3860), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55259] = 8, - ACTIONS(3803), 1, + [54755] = 8, + ACTIONS(3578), 1, + anon_sym_COLON_COLON, + ACTIONS(3995), 1, anon_sym_LPAREN, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3815), 1, + ACTIONS(3997), 1, anon_sym_LBRACE, - ACTIONS(4034), 1, - anon_sym_SEMI, - STATE(280), 1, - sym_field_declaration_list, - STATE(2067), 1, - sym_ordered_field_declaration_list, - STATE(2142), 1, - sym_where_clause, + ACTIONS(3999), 1, + anon_sym_LBRACK, + ACTIONS(4001), 1, + anon_sym_RBRACK, + ACTIONS(4003), 1, + anon_sym_EQ, + STATE(2431), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55285] = 3, - ACTIONS(2748), 1, - anon_sym_COLON_COLON, + [54781] = 8, + ACTIONS(3985), 1, + anon_sym_LPAREN, + ACTIONS(3989), 1, + anon_sym_LBRACE, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(4005), 1, + anon_sym_RBRACE, + STATE(1544), 1, + aux_sym_macro_definition_repeat1, + STATE(2143), 1, + sym_macro_rule, + STATE(2315), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55301] = 6, - ACTIONS(3803), 1, + [54807] = 8, + ACTIONS(3985), 1, anon_sym_LPAREN, - ACTIONS(3805), 1, + ACTIONS(3989), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, - anon_sym_EQ, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(4007), 1, + anon_sym_RBRACE, + STATE(1544), 1, + aux_sym_macro_definition_repeat1, + STATE(2141), 1, + sym_macro_rule, + STATE(2315), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4036), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2035), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [55323] = 7, - ACTIONS(786), 1, - anon_sym_DOT_DOT, - ACTIONS(3891), 1, - sym_identifier, - ACTIONS(3897), 1, - anon_sym_ref, - ACTIONS(3899), 1, - sym_mutable_specifier, - ACTIONS(4040), 1, + [54833] = 8, + ACTIONS(3985), 1, + anon_sym_LPAREN, + ACTIONS(3989), 1, + anon_sym_LBRACE, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(4009), 1, anon_sym_RBRACE, + STATE(1544), 1, + aux_sym_macro_definition_repeat1, + STATE(2148), 1, + sym_macro_rule, + STATE(2315), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2232), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55347] = 3, - ACTIONS(4042), 1, - sym_identifier, + [54859] = 8, + ACTIONS(3985), 1, + anon_sym_LPAREN, + ACTIONS(3989), 1, + anon_sym_LBRACE, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(4011), 1, + anon_sym_RPAREN, + STATE(1544), 1, + aux_sym_macro_definition_repeat1, + STATE(2147), 1, + sym_macro_rule, + STATE(2315), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3827), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55363] = 3, - ACTIONS(3536), 1, - anon_sym_COLON_COLON, + [54885] = 3, + ACTIONS(4013), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 6, + ACTIONS(3860), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55379] = 7, - ACTIONS(786), 1, - anon_sym_DOT_DOT, - ACTIONS(3891), 1, - sym_identifier, - ACTIONS(3897), 1, - anon_sym_ref, - ACTIONS(3899), 1, - sym_mutable_specifier, - ACTIONS(4044), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2232), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55403] = 8, - ACTIONS(4006), 1, + [54901] = 8, + ACTIONS(3985), 1, anon_sym_LPAREN, - ACTIONS(4010), 1, + ACTIONS(3989), 1, anon_sym_LBRACE, - ACTIONS(4012), 1, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(4046), 1, + ACTIONS(4015), 1, anon_sym_RPAREN, - STATE(1561), 1, + STATE(1544), 1, aux_sym_macro_definition_repeat1, - STATE(2216), 1, + STATE(2120), 1, sym_macro_rule, - STATE(2405), 1, + STATE(2315), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55429] = 8, - ACTIONS(4006), 1, - anon_sym_LPAREN, - ACTIONS(4010), 1, - anon_sym_LBRACE, - ACTIONS(4012), 1, - anon_sym_LBRACK, - ACTIONS(4048), 1, - anon_sym_RPAREN, - STATE(1561), 1, - aux_sym_macro_definition_repeat1, - STATE(2214), 1, - sym_macro_rule, - STATE(2405), 1, - sym_token_tree_pattern, + [54927] = 3, + ACTIONS(4017), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55455] = 3, - ACTIONS(4050), 1, - sym_identifier, + ACTIONS(2624), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54943] = 3, + ACTIONS(3546), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3827), 6, + ACTIONS(2624), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55471] = 8, - ACTIONS(4006), 1, + [54959] = 8, + ACTIONS(3985), 1, anon_sym_LPAREN, - ACTIONS(4010), 1, + ACTIONS(3989), 1, anon_sym_LBRACE, - ACTIONS(4012), 1, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(4052), 1, - anon_sym_RBRACE, - STATE(1584), 1, + ACTIONS(4019), 1, + anon_sym_RPAREN, + STATE(1576), 1, aux_sym_macro_definition_repeat1, - STATE(2256), 1, + STATE(2154), 1, sym_macro_rule, - STATE(2405), 1, + STATE(2315), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55497] = 8, - ACTIONS(3803), 1, + [54985] = 8, + ACTIONS(3800), 1, anon_sym_LPAREN, - ACTIONS(3805), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4054), 1, + ACTIONS(3828), 1, + anon_sym_LBRACE, + ACTIONS(4021), 1, anon_sym_SEMI, - STATE(847), 1, + STATE(272), 1, sym_field_declaration_list, - STATE(2104), 1, + STATE(2010), 1, sym_ordered_field_declaration_list, - STATE(2117), 1, + STATE(2196), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55523] = 3, - ACTIONS(4056), 1, - anon_sym_trait, + [55011] = 7, + ACTIONS(798), 1, + anon_sym_DOT_DOT, + ACTIONS(3904), 1, + sym_identifier, + ACTIONS(3910), 1, + anon_sym_ref, + ACTIONS(3912), 1, + sym_mutable_specifier, + ACTIONS(4023), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [55539] = 8, - ACTIONS(4006), 1, + STATE(2263), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55035] = 8, + ACTIONS(3985), 1, anon_sym_LPAREN, - ACTIONS(4010), 1, + ACTIONS(3989), 1, anon_sym_LBRACE, - ACTIONS(4012), 1, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(4058), 1, - anon_sym_RPAREN, - STATE(1587), 1, + ACTIONS(4025), 1, + anon_sym_RBRACE, + STATE(1579), 1, aux_sym_macro_definition_repeat1, - STATE(2255), 1, + STATE(2151), 1, sym_macro_rule, - STATE(2405), 1, + STATE(2315), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55565] = 2, + [55061] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4060), 7, + ACTIONS(3930), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -119141,5335 +118770,5564 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55579] = 8, - ACTIONS(4006), 1, + [55075] = 8, + ACTIONS(3985), 1, anon_sym_LPAREN, - ACTIONS(4010), 1, + ACTIONS(3989), 1, anon_sym_LBRACE, - ACTIONS(4012), 1, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(4062), 1, + ACTIONS(4027), 1, anon_sym_RBRACE, - STATE(1588), 1, + STATE(1544), 1, aux_sym_macro_definition_repeat1, - STATE(2154), 1, + STATE(2145), 1, sym_macro_rule, - STATE(2405), 1, + STATE(2315), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55605] = 8, - ACTIONS(4006), 1, + [55101] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3930), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55115] = 8, + ACTIONS(3985), 1, anon_sym_LPAREN, - ACTIONS(4010), 1, + ACTIONS(3989), 1, anon_sym_LBRACE, - ACTIONS(4012), 1, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(4064), 1, + ACTIONS(4029), 1, anon_sym_RBRACE, - STATE(1592), 1, + STATE(1580), 1, aux_sym_macro_definition_repeat1, - STATE(2115), 1, + STATE(2156), 1, sym_macro_rule, - STATE(2405), 1, + STATE(2315), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55631] = 5, - ACTIONS(3514), 1, + [55141] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4031), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55155] = 5, + ACTIONS(3511), 1, anon_sym_BANG, - ACTIONS(3599), 1, + ACTIONS(3580), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3518), 2, + ACTIONS(3515), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3510), 3, + ACTIONS(3507), 3, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_PIPE, - [55651] = 8, - ACTIONS(4006), 1, + [55175] = 8, + ACTIONS(3985), 1, anon_sym_LPAREN, - ACTIONS(4010), 1, + ACTIONS(3989), 1, anon_sym_LBRACE, - ACTIONS(4012), 1, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(4066), 1, - anon_sym_RBRACE, - STATE(1591), 1, + ACTIONS(4033), 1, + anon_sym_RPAREN, + STATE(1601), 1, aux_sym_macro_definition_repeat1, - STATE(2252), 1, + STATE(2311), 1, sym_macro_rule, - STATE(2405), 1, + STATE(2315), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55677] = 8, - ACTIONS(4006), 1, + [55201] = 8, + ACTIONS(3985), 1, anon_sym_LPAREN, - ACTIONS(4010), 1, + ACTIONS(3989), 1, anon_sym_LBRACE, - ACTIONS(4012), 1, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(4068), 1, - anon_sym_RPAREN, - STATE(1583), 1, + ACTIONS(4035), 1, + anon_sym_RBRACE, + STATE(1592), 1, aux_sym_macro_definition_repeat1, - STATE(2262), 1, + STATE(2310), 1, sym_macro_rule, - STATE(2405), 1, + STATE(2315), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55703] = 7, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(4070), 1, - anon_sym_SEMI, - ACTIONS(4072), 1, + [55227] = 8, + ACTIONS(3995), 1, + anon_sym_LPAREN, + ACTIONS(3997), 1, anon_sym_LBRACE, - ACTIONS(4074), 1, - anon_sym_DASH_GT, - STATE(398), 1, - sym_block, - STATE(1858), 1, - sym_where_clause, + ACTIONS(3999), 1, + anon_sym_LBRACK, + ACTIONS(4037), 1, + anon_sym_RBRACK, + ACTIONS(4039), 1, + anon_sym_EQ, + ACTIONS(4041), 1, + anon_sym_COLON_COLON, + STATE(2432), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55726] = 4, - ACTIONS(4076), 1, + [55253] = 3, + ACTIONS(2688), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3446), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2586), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [55743] = 7, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3851), 1, + ACTIONS(2624), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55269] = 8, + ACTIONS(3985), 1, + anon_sym_LPAREN, + ACTIONS(3989), 1, anon_sym_LBRACE, - ACTIONS(3917), 1, - anon_sym_COLON, - STATE(850), 1, - sym_declaration_list, - STATE(1766), 1, - sym_trait_bounds, - STATE(2119), 1, - sym_where_clause, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(4043), 1, + anon_sym_RPAREN, + STATE(1544), 1, + aux_sym_macro_definition_repeat1, + STATE(2144), 1, + sym_macro_rule, + STATE(2315), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55766] = 7, - ACTIONS(3799), 1, + [55295] = 8, + ACTIONS(3985), 1, + anon_sym_LPAREN, + ACTIONS(3989), 1, anon_sym_LBRACE, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(4078), 1, - anon_sym_SEMI, - ACTIONS(4080), 1, - anon_sym_PLUS, - STATE(436), 1, - sym_declaration_list, - STATE(2007), 1, - sym_where_clause, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(4045), 1, + anon_sym_RPAREN, + STATE(1584), 1, + aux_sym_macro_definition_repeat1, + STATE(2169), 1, + sym_macro_rule, + STATE(2315), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55789] = 4, - ACTIONS(3526), 1, + [55321] = 8, + ACTIONS(3995), 1, + anon_sym_LPAREN, + ACTIONS(3997), 1, + anon_sym_LBRACE, + ACTIONS(3999), 1, + anon_sym_LBRACK, + ACTIONS(4037), 1, + anon_sym_RBRACK, + ACTIONS(4039), 1, + anon_sym_EQ, + ACTIONS(4047), 1, anon_sym_COLON_COLON, - ACTIONS(3833), 1, - anon_sym_for, + STATE(2432), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 4, - anon_sym_SEMI, + [55347] = 7, + ACTIONS(798), 1, + anon_sym_DOT_DOT, + ACTIONS(3904), 1, + sym_identifier, + ACTIONS(3910), 1, + anon_sym_ref, + ACTIONS(3912), 1, + sym_mutable_specifier, + ACTIONS(4049), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2263), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55371] = 8, + ACTIONS(3985), 1, + anon_sym_LPAREN, + ACTIONS(3989), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [55806] = 7, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3851), 1, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(4051), 1, + anon_sym_RPAREN, + STATE(1582), 1, + aux_sym_macro_definition_repeat1, + STATE(2309), 1, + sym_macro_rule, + STATE(2315), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55397] = 6, + ACTIONS(3800), 1, + anon_sym_LPAREN, + ACTIONS(3802), 1, anon_sym_LBRACE, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4082), 1, - anon_sym_SEMI, - STATE(951), 1, - sym_declaration_list, - STATE(1971), 1, - sym_where_clause, + ACTIONS(4055), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55829] = 6, - ACTIONS(786), 1, + ACTIONS(4053), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1959), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [55419] = 7, + ACTIONS(798), 1, anon_sym_DOT_DOT, - ACTIONS(3891), 1, + ACTIONS(3904), 1, sym_identifier, - ACTIONS(3897), 1, + ACTIONS(3910), 1, anon_sym_ref, - ACTIONS(3899), 1, + ACTIONS(3912), 1, sym_mutable_specifier, + ACTIONS(4057), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2232), 2, + STATE(2263), 2, sym_field_pattern, sym_remaining_field_pattern, - [55850] = 7, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3851), 1, + [55443] = 8, + ACTIONS(3995), 1, + anon_sym_LPAREN, + ACTIONS(3997), 1, anon_sym_LBRACE, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4084), 1, - anon_sym_SEMI, - STATE(953), 1, - sym_declaration_list, - STATE(1970), 1, - sym_where_clause, + ACTIONS(3999), 1, + anon_sym_LBRACK, + ACTIONS(4037), 1, + anon_sym_RBRACK, + ACTIONS(4039), 1, + anon_sym_EQ, + ACTIONS(4059), 1, + anon_sym_COLON_COLON, + STATE(2432), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55873] = 7, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, + [55469] = 8, + ACTIONS(3800), 1, + anon_sym_LPAREN, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4086), 1, + ACTIONS(3828), 1, + anon_sym_LBRACE, + ACTIONS(4061), 1, anon_sym_SEMI, - STATE(428), 1, - sym_declaration_list, - STATE(1908), 1, + STATE(405), 1, + sym_field_declaration_list, + STATE(1925), 1, + sym_ordered_field_declaration_list, + STATE(2221), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55896] = 7, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3851), 1, + [55495] = 8, + ACTIONS(3985), 1, + anon_sym_LPAREN, + ACTIONS(3989), 1, anon_sym_LBRACE, - ACTIONS(3917), 1, - anon_sym_COLON, - STATE(914), 1, - sym_declaration_list, - STATE(1803), 1, - sym_trait_bounds, - STATE(2186), 1, - sym_where_clause, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(4063), 1, + anon_sym_RBRACE, + STATE(1581), 1, + aux_sym_macro_definition_repeat1, + STATE(2308), 1, + sym_macro_rule, + STATE(2315), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55919] = 7, - ACTIONS(3799), 1, + [55521] = 8, + ACTIONS(3800), 1, + anon_sym_LPAREN, + ACTIONS(3802), 1, anon_sym_LBRACE, - ACTIONS(3807), 1, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3917), 1, - anon_sym_COLON, - STATE(422), 1, - sym_declaration_list, - STATE(1823), 1, - sym_trait_bounds, - STATE(2161), 1, + ACTIONS(4065), 1, + anon_sym_SEMI, + STATE(909), 1, + sym_field_declaration_list, + STATE(2105), 1, + sym_ordered_field_declaration_list, + STATE(2113), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55942] = 7, - ACTIONS(3807), 1, + [55547] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3809), 1, - anon_sym_LT, - ACTIONS(3815), 1, + ACTIONS(4067), 1, + anon_sym_SEMI, + ACTIONS(4069), 1, anon_sym_LBRACE, - STATE(279), 1, - sym_field_declaration_list, - STATE(1830), 1, - sym_type_parameters, - STATE(2187), 1, + ACTIONS(4071), 1, + anon_sym_DASH_GT, + STATE(1041), 1, + sym_block, + STATE(1973), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55965] = 7, - ACTIONS(3807), 1, + [55570] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3851), 1, + ACTIONS(3840), 1, anon_sym_LBRACE, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4088), 1, + ACTIONS(4073), 1, anon_sym_SEMI, - STATE(837), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + STATE(863), 1, sym_declaration_list, - STATE(2098), 1, + STATE(2043), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55988] = 7, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(4072), 1, + [55593] = 7, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(4090), 1, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4077), 1, anon_sym_SEMI, - ACTIONS(4092), 1, - anon_sym_DASH_GT, - STATE(330), 1, - sym_block, - STATE(1951), 1, + STATE(346), 1, + sym_declaration_list, + STATE(1927), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56011] = 7, - ACTIONS(3807), 1, + [55616] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3623), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2646), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [55631] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4094), 1, + ACTIONS(4079), 1, anon_sym_SEMI, - ACTIONS(4096), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4098), 1, + ACTIONS(4083), 1, anon_sym_DASH_GT, - STATE(826), 1, + STATE(397), 1, sym_block, - STATE(2086), 1, + STATE(1873), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56034] = 7, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3851), 1, + [55654] = 7, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(4080), 1, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4100), 1, + ACTIONS(4085), 1, anon_sym_SEMI, - STATE(973), 1, + STATE(334), 1, sym_declaration_list, - STATE(1963), 1, + STATE(1878), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56057] = 7, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, + [55677] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4102), 1, - anon_sym_SEMI, - STATE(320), 1, + ACTIONS(3840), 1, + anon_sym_LBRACE, + ACTIONS(3916), 1, + anon_sym_COLON, + STATE(904), 1, sym_declaration_list, - STATE(1958), 1, + STATE(1771), 1, + sym_trait_bounds, + STATE(2115), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56080] = 7, - ACTIONS(3807), 1, + [55700] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3851), 1, + ACTIONS(4069), 1, anon_sym_LBRACE, - ACTIONS(4080), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4104), 1, + ACTIONS(4087), 1, anon_sym_SEMI, - STATE(977), 1, - sym_declaration_list, - STATE(1956), 1, + STATE(917), 1, + sym_block, + STATE(1991), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56103] = 7, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(4096), 1, + [55723] = 7, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(4106), 1, - anon_sym_SEMI, - ACTIONS(4108), 1, - anon_sym_DASH_GT, - STATE(983), 1, - sym_block, - STATE(1955), 1, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3916), 1, + anon_sym_COLON, + STATE(264), 1, + sym_declaration_list, + STATE(1772), 1, + sym_trait_bounds, + STATE(2283), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56126] = 7, - ACTIONS(3799), 1, + [55746] = 7, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(3807), 1, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4080), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4110), 1, + ACTIONS(4089), 1, anon_sym_SEMI, - STATE(311), 1, + STATE(351), 1, sym_declaration_list, - STATE(2062), 1, + STATE(1877), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56149] = 7, - ACTIONS(3807), 1, + [55769] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3851), 1, + ACTIONS(4069), 1, anon_sym_LBRACE, - ACTIONS(3917), 1, - anon_sym_COLON, - STATE(999), 1, - sym_declaration_list, - STATE(1817), 1, - sym_trait_bounds, - STATE(2236), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4091), 1, + anon_sym_SEMI, + STATE(894), 1, + sym_block, + STATE(1924), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56172] = 7, - ACTIONS(3807), 1, + [55792] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4096), 1, + ACTIONS(3840), 1, anon_sym_LBRACE, - ACTIONS(4112), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4093), 1, anon_sym_SEMI, - ACTIONS(4114), 1, - anon_sym_DASH_GT, - STATE(1001), 1, - sym_block, - STATE(1947), 1, + STATE(897), 1, + sym_declaration_list, + STATE(2100), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56195] = 7, - ACTIONS(3805), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, + [55815] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3809), 1, - anon_sym_LT, - STATE(965), 1, - sym_field_declaration_list, - STATE(1783), 1, - sym_type_parameters, - STATE(2166), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4095), 1, + anon_sym_SEMI, + STATE(460), 1, + sym_block, + STATE(1858), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56218] = 7, - ACTIONS(3917), 1, - anon_sym_COLON, - ACTIONS(3919), 1, - anon_sym_LT, - ACTIONS(4116), 1, + [55838] = 7, + ACTIONS(3788), 1, + anon_sym_LBRACE, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4097), 1, anon_sym_SEMI, - ACTIONS(4118), 1, - anon_sym_EQ, - STATE(1787), 1, - sym_type_parameters, - STATE(2520), 1, - sym_trait_bounds, + STATE(465), 1, + sym_declaration_list, + STATE(2035), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56241] = 7, - ACTIONS(3807), 1, + [55861] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3809), 1, + ACTIONS(3806), 1, anon_sym_LT, - ACTIONS(3815), 1, + ACTIONS(3828), 1, anon_sym_LBRACE, STATE(390), 1, sym_field_declaration_list, - STATE(1809), 1, + STATE(1816), 1, sym_type_parameters, - STATE(2306), 1, + STATE(2242), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56264] = 5, - ACTIONS(4122), 1, - anon_sym_COLON, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, + [55884] = 7, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4099), 1, + anon_sym_SEMI, + ACTIONS(4101), 1, + anon_sym_DASH_GT, + STATE(255), 1, + sym_block, + STATE(1900), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3446), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4120), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56283] = 4, - ACTIONS(4126), 1, - anon_sym_COLON_COLON, + [55907] = 4, + ACTIONS(4103), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3446), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2586), 3, + ACTIONS(3704), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2750), 3, anon_sym_SEMI, - anon_sym_RBRACK, anon_sym_PLUS, - [56300] = 7, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3851), 1, + anon_sym_DASH_GT, + [55924] = 7, + ACTIONS(3249), 1, anon_sym_LBRACE, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4128), 1, - anon_sym_SEMI, - STATE(1094), 1, - sym_declaration_list, - STATE(2033), 1, - sym_where_clause, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4106), 1, + sym_identifier, + ACTIONS(4108), 1, + anon_sym_STAR, + STATE(2060), 1, + sym_use_list, + STATE(2372), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56323] = 7, - ACTIONS(3917), 1, - anon_sym_COLON, - ACTIONS(3919), 1, - anon_sym_LT, - ACTIONS(4130), 1, - anon_sym_SEMI, - ACTIONS(4132), 1, - anon_sym_EQ, - STATE(1811), 1, - sym_type_parameters, - STATE(2348), 1, - sym_trait_bounds, + [55947] = 7, + ACTIONS(3249), 1, + anon_sym_LBRACE, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4106), 1, + sym_identifier, + ACTIONS(4108), 1, + anon_sym_STAR, + STATE(2060), 1, + sym_use_list, + STATE(2374), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56346] = 7, - ACTIONS(3807), 1, + [55970] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4080), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4096), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4134), 1, + ACTIONS(4110), 1, anon_sym_SEMI, - STATE(1008), 1, + STATE(263), 1, sym_block, - STATE(1939), 1, + STATE(1891), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56369] = 7, - ACTIONS(3807), 1, + [55993] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3809), 1, + ACTIONS(3806), 1, anon_sym_LT, - ACTIONS(4136), 1, + ACTIONS(4112), 1, anon_sym_LBRACE, - STATE(1122), 1, + STATE(890), 1, sym_enum_variant_list, - STATE(1801), 1, + STATE(1768), 1, sym_type_parameters, - STATE(2183), 1, + STATE(2127), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56392] = 6, - ACTIONS(3510), 1, - anon_sym_PIPE, - ACTIONS(3512), 1, - anon_sym_COLON, - ACTIONS(3514), 1, - anon_sym_BANG, - ACTIONS(3709), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3518), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [56413] = 7, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3851), 1, + [56016] = 7, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4138), 1, - anon_sym_SEMI, - STATE(1030), 1, - sym_declaration_list, - STATE(1934), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56436] = 7, - ACTIONS(3807), 1, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(4080), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4140), 1, + ACTIONS(4114), 1, anon_sym_SEMI, - STATE(1000), 1, + STATE(344), 1, sym_declaration_list, - STATE(1933), 1, + STATE(1926), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56459] = 7, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(4072), 1, - anon_sym_LBRACE, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4142), 1, - anon_sym_SEMI, - STATE(418), 1, - sym_block, - STATE(2063), 1, - sym_where_clause, + [56039] = 6, + ACTIONS(3163), 1, + anon_sym_COLON_COLON, + ACTIONS(4116), 1, + anon_sym_COMMA, + ACTIONS(4118), 1, + anon_sym_GT, + STATE(1855), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56482] = 7, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3809), 1, + ACTIONS(2598), 2, + anon_sym_PLUS, + anon_sym_as, + [56060] = 7, + ACTIONS(3916), 1, + anon_sym_COLON, + ACTIONS(3918), 1, anon_sym_LT, - ACTIONS(4144), 1, - anon_sym_LBRACE, - STATE(259), 1, - sym_enum_variant_list, - STATE(1829), 1, + ACTIONS(4120), 1, + anon_sym_SEMI, + ACTIONS(4122), 1, + anon_sym_EQ, + STATE(1850), 1, sym_type_parameters, - STATE(2212), 1, - sym_where_clause, + STATE(2318), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56505] = 7, - ACTIONS(3807), 1, + [56083] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4096), 1, + ACTIONS(4069), 1, anon_sym_LBRACE, - ACTIONS(4146), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4124), 1, anon_sym_SEMI, - STATE(1039), 1, + STATE(991), 1, sym_block, - STATE(1930), 1, + STATE(1944), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56528] = 7, - ACTIONS(3807), 1, + [56106] = 4, + ACTIONS(3523), 1, + anon_sym_COLON_COLON, + ACTIONS(3830), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2598), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4096), 1, + [56123] = 7, + ACTIONS(3802), 1, anon_sym_LBRACE, - ACTIONS(4148), 1, - anon_sym_SEMI, - ACTIONS(4150), 1, - anon_sym_DASH_GT, - STATE(1047), 1, - sym_block, - STATE(1926), 1, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3806), 1, + anon_sym_LT, + STATE(885), 1, + sym_field_declaration_list, + STATE(1761), 1, + sym_type_parameters, + STATE(2132), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56551] = 7, - ACTIONS(3807), 1, + [56146] = 4, + ACTIONS(3523), 1, + anon_sym_COLON_COLON, + ACTIONS(3834), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2598), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3851), 1, + [56163] = 7, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3840), 1, anon_sym_LBRACE, - ACTIONS(4080), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4152), 1, + ACTIONS(4126), 1, anon_sym_SEMI, - STATE(908), 1, + STATE(933), 1, sym_declaration_list, - STATE(2010), 1, + STATE(2097), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56574] = 7, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4154), 1, + [56186] = 7, + ACTIONS(3916), 1, + anon_sym_COLON, + ACTIONS(3918), 1, + anon_sym_LT, + ACTIONS(4128), 1, anon_sym_SEMI, - STATE(890), 1, - sym_declaration_list, - STATE(2031), 1, - sym_where_clause, + ACTIONS(4130), 1, + anon_sym_EQ, + STATE(1813), 1, + sym_type_parameters, + STATE(2479), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56597] = 7, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3851), 1, + [56209] = 7, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(4080), 1, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4156), 1, + ACTIONS(4132), 1, anon_sym_SEMI, - STATE(885), 1, + STATE(250), 1, sym_declaration_list, - STATE(2043), 1, + STATE(2020), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56620] = 7, - ACTIONS(3799), 1, + [56232] = 4, + ACTIONS(3523), 1, + anon_sym_COLON_COLON, + ACTIONS(3852), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2598), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(4080), 1, anon_sym_PLUS, - ACTIONS(4158), 1, - anon_sym_SEMI, - STATE(474), 1, + anon_sym_where, + [56249] = 7, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3840), 1, + anon_sym_LBRACE, + ACTIONS(3916), 1, + anon_sym_COLON, + STATE(1036), 1, sym_declaration_list, - STATE(1931), 1, + STATE(1841), 1, + sym_trait_bounds, + STATE(2232), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56643] = 7, - ACTIONS(3807), 1, + [56272] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4096), 1, + ACTIONS(4069), 1, anon_sym_LBRACE, - ACTIONS(4160), 1, + ACTIONS(4134), 1, anon_sym_SEMI, - ACTIONS(4162), 1, + ACTIONS(4136), 1, anon_sym_DASH_GT, - STATE(876), 1, + STATE(1008), 1, sym_block, - STATE(2060), 1, + STATE(1978), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56666] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2750), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3601), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4164), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56683] = 7, - ACTIONS(3807), 1, + [56295] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4072), 1, + ACTIONS(4069), 1, anon_sym_LBRACE, - ACTIONS(4167), 1, + ACTIONS(4138), 1, anon_sym_SEMI, - ACTIONS(4169), 1, + ACTIONS(4140), 1, anon_sym_DASH_GT, - STATE(412), 1, + STATE(829), 1, sym_block, - STATE(1894), 1, + STATE(2019), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56706] = 7, - ACTIONS(3807), 1, + [56318] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4080), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4096), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4171), 1, + ACTIONS(4142), 1, anon_sym_SEMI, - STATE(1066), 1, + STATE(422), 1, sym_block, - STATE(1914), 1, + STATE(1865), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56729] = 7, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4096), 1, + [56341] = 7, + ACTIONS(3802), 1, anon_sym_LBRACE, - ACTIONS(4173), 1, - anon_sym_SEMI, - STATE(1079), 1, - sym_block, - STATE(1905), 1, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3806), 1, + anon_sym_LT, + STATE(976), 1, + sym_field_declaration_list, + STATE(1812), 1, + sym_type_parameters, + STATE(2163), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56752] = 7, - ACTIONS(3807), 1, + [56364] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4072), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4175), 1, + ACTIONS(4144), 1, anon_sym_SEMI, - STATE(362), 1, + ACTIONS(4146), 1, + anon_sym_DASH_GT, + STATE(414), 1, sym_block, - STATE(1859), 1, + STATE(1993), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56775] = 4, - ACTIONS(3526), 1, + [56387] = 4, + ACTIONS(3523), 1, anon_sym_COLON_COLON, - ACTIONS(3885), 1, + ACTIONS(3850), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 4, + ACTIONS(2598), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56792] = 7, - ACTIONS(3304), 1, - anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(4177), 1, - sym_identifier, - ACTIONS(4179), 1, - anon_sym_STAR, - STATE(1990), 1, - sym_use_list, - STATE(2499), 1, - sym_type_arguments, + [56404] = 4, + ACTIONS(3523), 1, + anon_sym_COLON_COLON, + ACTIONS(3820), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56815] = 7, - ACTIONS(3799), 1, + ACTIONS(2598), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [56421] = 7, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(3807), 1, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4080), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4181), 1, + ACTIONS(4148), 1, anon_sym_SEMI, - STATE(290), 1, + STATE(314), 1, sym_declaration_list, - STATE(2045), 1, + STATE(2034), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56838] = 4, - ACTIONS(4164), 1, - anon_sym_RBRACK, + [56444] = 6, + ACTIONS(3507), 1, + anon_sym_PIPE, + ACTIONS(3509), 1, + anon_sym_COLON, + ACTIONS(3511), 1, + anon_sym_BANG, + ACTIONS(3658), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3601), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2750), 3, - anon_sym_SEMI, + ACTIONS(3515), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [56465] = 7, + ACTIONS(2449), 1, anon_sym_PLUS, - anon_sym_DASH_GT, - [56855] = 7, - ACTIONS(3917), 1, + ACTIONS(3916), 1, anon_sym_COLON, - ACTIONS(4183), 1, + ACTIONS(4116), 1, anon_sym_COMMA, - ACTIONS(4185), 1, + ACTIONS(4118), 1, anon_sym_GT, - STATE(1883), 1, - aux_sym_for_lifetimes_repeat1, - STATE(1987), 1, - sym_trait_bounds, - STATE(2036), 1, + STATE(1855), 1, aux_sym_type_parameters_repeat1, + STATE(1970), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56878] = 7, - ACTIONS(3304), 1, + [56488] = 7, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(4177), 1, - sym_identifier, - ACTIONS(4179), 1, - anon_sym_STAR, - STATE(1990), 1, - sym_use_list, - STATE(2475), 1, - sym_type_arguments, + ACTIONS(4150), 1, + anon_sym_SEMI, + STATE(360), 1, + sym_block, + STATE(1941), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56901] = 7, - ACTIONS(3799), 1, + [56511] = 7, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(3807), 1, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4080), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4187), 1, + ACTIONS(4152), 1, anon_sym_SEMI, - STATE(470), 1, + STATE(352), 1, sym_declaration_list, - STATE(1882), 1, + STATE(1997), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56924] = 4, - ACTIONS(4189), 1, - anon_sym_RBRACK, + [56534] = 7, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3840), 1, + anon_sym_LBRACE, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4154), 1, + anon_sym_SEMI, + STATE(837), 1, + sym_declaration_list, + STATE(2026), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3649), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2728), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [56941] = 3, + [56557] = 5, + ACTIONS(4158), 1, + anon_sym_COLON, + ACTIONS(4160), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3649), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2728), 4, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4156), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH_GT, - [56956] = 7, - ACTIONS(3799), 1, + [56576] = 4, + ACTIONS(3523), 1, + anon_sym_COLON_COLON, + ACTIONS(3782), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2598), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3807), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4080), 1, + [56593] = 7, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(4069), 1, + anon_sym_LBRACE, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4192), 1, + ACTIONS(4162), 1, anon_sym_SEMI, - STATE(264), 1, + STATE(914), 1, + sym_block, + STATE(1938), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56616] = 7, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3840), 1, + anon_sym_LBRACE, + ACTIONS(3916), 1, + anon_sym_COLON, + STATE(832), 1, sym_declaration_list, - STATE(2050), 1, + STATE(1800), 1, + sym_trait_bounds, + STATE(2182), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56979] = 7, - ACTIONS(3807), 1, + [56639] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4096), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4194), 1, + ACTIONS(4164), 1, anon_sym_SEMI, - STATE(1085), 1, + ACTIONS(4166), 1, + anon_sym_DASH_GT, + STATE(287), 1, sym_block, - STATE(1902), 1, + STATE(1907), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57002] = 4, - ACTIONS(3526), 1, - anon_sym_COLON_COLON, - ACTIONS(3839), 1, - anon_sym_for, + [56662] = 7, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3840), 1, + anon_sym_LBRACE, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4168), 1, + anon_sym_SEMI, + STATE(857), 1, + sym_declaration_list, + STATE(2037), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + [56685] = 7, + ACTIONS(3804), 1, anon_sym_where, - [57019] = 7, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(4072), 1, + ACTIONS(4069), 1, anon_sym_LBRACE, - ACTIONS(4196), 1, + ACTIONS(4170), 1, anon_sym_SEMI, - ACTIONS(4198), 1, + ACTIONS(4172), 1, anon_sym_DASH_GT, - STATE(373), 1, + STATE(1123), 1, sym_block, - STATE(1888), 1, + STATE(1949), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57042] = 7, - ACTIONS(3567), 1, - anon_sym_EQ, - ACTIONS(3917), 1, + [56708] = 5, + ACTIONS(4176), 1, + anon_sym_COLON, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4174), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56727] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2646), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3623), 2, anon_sym_COLON, - ACTIONS(4200), 1, + anon_sym_PIPE, + ACTIONS(4180), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4202), 1, - anon_sym_GT, - STATE(2015), 1, - sym_trait_bounds, - STATE(2094), 1, - aux_sym_type_parameters_repeat1, + [56744] = 7, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3806), 1, + anon_sym_LT, + ACTIONS(4112), 1, + anon_sym_LBRACE, + STATE(1022), 1, + sym_enum_variant_list, + STATE(1828), 1, + sym_type_parameters, + STATE(2200), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57065] = 7, - ACTIONS(3807), 1, + [56767] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4072), 1, + ACTIONS(3840), 1, anon_sym_LBRACE, - ACTIONS(4080), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4204), 1, + ACTIONS(4183), 1, anon_sym_SEMI, - STATE(341), 1, - sym_block, - STATE(1899), 1, + STATE(997), 1, + sym_declaration_list, + STATE(2029), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57088] = 7, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, + [56790] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3917), 1, - anon_sym_COLON, - STATE(372), 1, + ACTIONS(3840), 1, + anon_sym_LBRACE, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4185), 1, + anon_sym_SEMI, + STATE(999), 1, sym_declaration_list, - STATE(1822), 1, - sym_trait_bounds, - STATE(2257), 1, + STATE(1979), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57111] = 7, - ACTIONS(3799), 1, + [56813] = 7, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3840), 1, anon_sym_LBRACE, - ACTIONS(3807), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4187), 1, + anon_sym_SEMI, + STATE(939), 1, + sym_declaration_list, + STATE(1990), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56836] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4080), 1, + ACTIONS(3840), 1, + anon_sym_LBRACE, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4206), 1, + ACTIONS(4189), 1, anon_sym_SEMI, - STATE(253), 1, + STATE(993), 1, sym_declaration_list, - STATE(2042), 1, + STATE(1983), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57134] = 7, - ACTIONS(3807), 1, + [56859] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4072), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4208), 1, + ACTIONS(4191), 1, anon_sym_SEMI, - ACTIONS(4210), 1, + ACTIONS(4193), 1, anon_sym_DASH_GT, - STATE(342), 1, + STATE(447), 1, sym_block, - STATE(1919), 1, + STATE(2062), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57157] = 3, + [56882] = 4, + ACTIONS(4160), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3601), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2750), 4, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2598), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, + [56899] = 7, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(4069), 1, + anon_sym_LBRACE, + ACTIONS(4195), 1, + anon_sym_SEMI, + ACTIONS(4197), 1, anon_sym_DASH_GT, - [57172] = 4, + STATE(956), 1, + sym_block, + STATE(2083), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2728), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3649), 2, + [56922] = 7, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3806), 1, + anon_sym_LT, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(338), 1, + sym_field_declaration_list, + STATE(1776), 1, + sym_type_parameters, + STATE(2128), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56945] = 7, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3806), 1, + anon_sym_LT, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(323), 1, + sym_enum_variant_list, + STATE(1764), 1, + sym_type_parameters, + STATE(2161), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56968] = 7, + ACTIONS(3554), 1, + anon_sym_EQ, + ACTIONS(3916), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4189), 2, - anon_sym_RPAREN, + ACTIONS(4201), 1, anon_sym_COMMA, - [57189] = 4, - ACTIONS(3526), 1, - anon_sym_COLON_COLON, - ACTIONS(3795), 1, - anon_sym_for, + ACTIONS(4203), 1, + anon_sym_GT, + STATE(1968), 1, + sym_trait_bounds, + STATE(2092), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 4, - anon_sym_SEMI, + [56991] = 7, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(4069), 1, anon_sym_LBRACE, + ACTIONS(4075), 1, anon_sym_PLUS, - anon_sym_where, - [57206] = 4, - ACTIONS(3526), 1, + ACTIONS(4205), 1, + anon_sym_SEMI, + STATE(1059), 1, + sym_block, + STATE(1967), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57014] = 4, + ACTIONS(3523), 1, anon_sym_COLON_COLON, - ACTIONS(3875), 1, + ACTIONS(3816), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 4, + ACTIONS(2598), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57223] = 7, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(4072), 1, + [57031] = 7, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(4212), 1, - anon_sym_SEMI, - ACTIONS(4214), 1, - anon_sym_DASH_GT, - STATE(384), 1, - sym_block, - STATE(1945), 1, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3916), 1, + anon_sym_COLON, + STATE(423), 1, + sym_declaration_list, + STATE(1844), 1, + sym_trait_bounds, + STATE(2206), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57246] = 4, - ACTIONS(4216), 1, - anon_sym_COLON_COLON, + [57054] = 4, + ACTIONS(4180), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3446), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2586), 3, - anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(3623), 2, anon_sym_COMMA, - [57263] = 5, - ACTIONS(4216), 1, + anon_sym_PIPE, + ACTIONS(2646), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [57071] = 4, + ACTIONS(4207), 1, anon_sym_COLON_COLON, - ACTIONS(4220), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3446), 2, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4218), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57282] = 4, - ACTIONS(3526), 1, - anon_sym_COLON_COLON, - ACTIONS(3883), 1, - anon_sym_for, + ACTIONS(2598), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [57088] = 7, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4209), 1, + anon_sym_SEMI, + STATE(372), 1, + sym_block, + STATE(1876), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 4, - anon_sym_SEMI, + [57111] = 7, + ACTIONS(3788), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(3804), 1, anon_sym_where, - [57299] = 7, - ACTIONS(3799), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4211), 1, + anon_sym_SEMI, + STATE(480), 1, + sym_declaration_list, + STATE(2033), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57134] = 7, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(3807), 1, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4080), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4222), 1, + ACTIONS(4213), 1, anon_sym_SEMI, - STATE(454), 1, + STATE(433), 1, sym_declaration_list, - STATE(1917), 1, + STATE(2007), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57322] = 5, - ACTIONS(4076), 1, + [57157] = 4, + ACTIONS(3523), 1, anon_sym_COLON_COLON, - ACTIONS(4220), 1, - anon_sym_COLON, + ACTIONS(3784), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3446), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4218), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57341] = 7, - ACTIONS(3799), 1, + ACTIONS(2598), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3807), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3917), 1, + [57174] = 7, + ACTIONS(3554), 1, + anon_sym_EQ, + ACTIONS(3556), 1, + anon_sym_COMMA, + ACTIONS(3558), 1, + anon_sym_GT, + ACTIONS(3916), 1, anon_sym_COLON, - STATE(268), 1, - sym_declaration_list, - STATE(1778), 1, + STATE(1968), 1, sym_trait_bounds, - STATE(2153), 1, - sym_where_clause, + STATE(1969), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57364] = 7, - ACTIONS(3805), 1, + [57197] = 7, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(3807), 1, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3809), 1, - anon_sym_LT, - STATE(865), 1, - sym_field_declaration_list, - STATE(1761), 1, - sym_type_parameters, - STATE(2136), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4215), 1, + anon_sym_SEMI, + STATE(296), 1, + sym_declaration_list, + STATE(1910), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57387] = 7, - ACTIONS(3807), 1, + [57220] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4072), 1, + ACTIONS(4069), 1, anon_sym_LBRACE, - ACTIONS(4080), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4224), 1, + ACTIONS(4217), 1, anon_sym_SEMI, - STATE(434), 1, + STATE(1108), 1, sym_block, - STATE(1916), 1, + STATE(1952), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57410] = 7, - ACTIONS(3807), 1, + [57243] = 7, + ACTIONS(3916), 1, + anon_sym_COLON, + ACTIONS(4219), 1, + anon_sym_COMMA, + ACTIONS(4221), 1, + anon_sym_GT, + STATE(1855), 1, + aux_sym_type_parameters_repeat1, + STATE(1970), 1, + sym_trait_bounds, + STATE(2046), 1, + aux_sym_for_lifetimes_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57266] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3704), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2750), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [57281] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4096), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4226), 1, + ACTIONS(4223), 1, anon_sym_SEMI, - ACTIONS(4228), 1, - anon_sym_DASH_GT, - STATE(917), 1, + STATE(388), 1, sym_block, - STATE(1999), 1, + STATE(1861), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57433] = 7, - ACTIONS(3807), 1, + [57304] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3851), 1, + ACTIONS(3806), 1, + anon_sym_LT, + ACTIONS(4199), 1, anon_sym_LBRACE, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4230), 1, - anon_sym_SEMI, - STATE(856), 1, - sym_declaration_list, - STATE(2107), 1, + STATE(277), 1, + sym_enum_variant_list, + STATE(1783), 1, + sym_type_parameters, + STATE(2170), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57456] = 7, - ACTIONS(3807), 1, + [57327] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4072), 1, + ACTIONS(3840), 1, anon_sym_LBRACE, - ACTIONS(4080), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4232), 1, + ACTIONS(4225), 1, anon_sym_SEMI, - STATE(245), 1, - sym_block, - STATE(1961), 1, + STATE(947), 1, + sym_declaration_list, + STATE(1989), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57479] = 4, - ACTIONS(3526), 1, - anon_sym_COLON_COLON, - ACTIONS(3845), 1, - anon_sym_for, + [57350] = 6, + ACTIONS(798), 1, + anon_sym_DOT_DOT, + ACTIONS(3904), 1, + sym_identifier, + ACTIONS(3910), 1, + anon_sym_ref, + ACTIONS(3912), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57496] = 4, - ACTIONS(3526), 1, + STATE(2263), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [57371] = 4, + ACTIONS(4227), 1, anon_sym_COLON_COLON, - ACTIONS(3879), 1, - anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2598), 3, + anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_where, - [57513] = 7, - ACTIONS(3799), 1, + anon_sym_COMMA, + [57388] = 7, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(3807), 1, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4234), 1, - anon_sym_SEMI, - STATE(352), 1, + ACTIONS(3916), 1, + anon_sym_COLON, + STATE(293), 1, sym_declaration_list, - STATE(1913), 1, + STATE(1797), 1, + sym_trait_bounds, + STATE(2124), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57536] = 7, - ACTIONS(3807), 1, + [57411] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3809), 1, - anon_sym_LT, - ACTIONS(4136), 1, + ACTIONS(4069), 1, anon_sym_LBRACE, - STATE(860), 1, - sym_enum_variant_list, - STATE(1763), 1, - sym_type_parameters, - STATE(2131), 1, + ACTIONS(4229), 1, + anon_sym_SEMI, + ACTIONS(4231), 1, + anon_sym_DASH_GT, + STATE(875), 1, + sym_block, + STATE(2063), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57559] = 7, - ACTIONS(3567), 1, - anon_sym_EQ, - ACTIONS(3569), 1, - anon_sym_COMMA, - ACTIONS(3571), 1, - anon_sym_GT, - ACTIONS(3917), 1, + [57434] = 5, + ACTIONS(4158), 1, anon_sym_COLON, - STATE(2015), 1, - sym_trait_bounds, - STATE(2020), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4227), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4156), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57453] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57582] = 7, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, + ACTIONS(2750), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3704), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4103), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57470] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4080), 1, + ACTIONS(3840), 1, + anon_sym_LBRACE, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4236), 1, + ACTIONS(4233), 1, anon_sym_SEMI, - STATE(300), 1, + STATE(1095), 1, sym_declaration_list, - STATE(2041), 1, + STATE(1957), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57605] = 7, - ACTIONS(3807), 1, + [57493] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4072), 1, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4238), 1, + ACTIONS(4235), 1, anon_sym_SEMI, - STATE(328), 1, + ACTIONS(4237), 1, + anon_sym_DASH_GT, + STATE(331), 1, sym_block, - STATE(2101), 1, + STATE(1903), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57628] = 7, - ACTIONS(3807), 1, + [57516] = 7, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3809), 1, - anon_sym_LT, - ACTIONS(4144), 1, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(276), 1, - sym_enum_variant_list, - STATE(1831), 1, - sym_type_parameters, - STATE(2269), 1, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4239), 1, + anon_sym_SEMI, + STATE(1097), 1, + sym_declaration_list, + STATE(1956), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57651] = 7, - ACTIONS(3807), 1, + [57539] = 7, + ACTIONS(3788), 1, + anon_sym_LBRACE, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4080), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4096), 1, - anon_sym_LBRACE, - ACTIONS(4240), 1, + ACTIONS(4241), 1, anon_sym_SEMI, - STATE(938), 1, - sym_block, - STATE(1974), 1, + STATE(305), 1, + sym_declaration_list, + STATE(1911), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57674] = 6, - ACTIONS(3173), 1, - anon_sym_COLON_COLON, - ACTIONS(4242), 1, - anon_sym_COMMA, - ACTIONS(4244), 1, - anon_sym_GT, - STATE(2036), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2586), 2, - anon_sym_PLUS, - anon_sym_as, - [57695] = 7, - ACTIONS(2483), 1, - anon_sym_PLUS, - ACTIONS(3917), 1, - anon_sym_COLON, - ACTIONS(4242), 1, - anon_sym_COMMA, - ACTIONS(4244), 1, - anon_sym_GT, - STATE(1987), 1, - sym_trait_bounds, - STATE(2036), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57718] = 2, + [57562] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3073), 5, + ACTIONS(4243), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, - [57730] = 6, - ACTIONS(4246), 1, - anon_sym_SEMI, - ACTIONS(4248), 1, - anon_sym_COLON, - ACTIONS(4250), 1, - anon_sym_EQ, - ACTIONS(4252), 1, - anon_sym_else, - ACTIONS(4254), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57750] = 4, - ACTIONS(4258), 1, + anon_sym_COMMA, + [57574] = 4, + ACTIONS(4247), 1, anon_sym_as, - ACTIONS(4260), 1, + ACTIONS(4249), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4256), 3, + ACTIONS(4245), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [57766] = 2, + [57590] = 5, + ACTIONS(4251), 1, + anon_sym_RPAREN, + ACTIONS(4253), 1, + anon_sym_COMMA, + STATE(2066), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3048), 5, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3431), 2, anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [57778] = 4, - ACTIONS(4262), 1, - anon_sym_RBRACK, + anon_sym_PIPE, + [57608] = 5, + ACTIONS(4255), 1, + anon_sym_RPAREN, + ACTIONS(4257), 1, + anon_sym_COMMA, + STATE(2070), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2970), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3665), 2, - anon_sym_COMMA, + ACTIONS(3431), 2, + anon_sym_COLON, anon_sym_PIPE, - [57794] = 2, + [57626] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2976), 5, + ACTIONS(3056), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [57806] = 6, - ACTIONS(3917), 1, + [57638] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3431), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2598), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [57652] = 6, + ACTIONS(3916), 1, anon_sym_COLON, - ACTIONS(4242), 1, + ACTIONS(4116), 1, anon_sym_COMMA, - ACTIONS(4244), 1, + ACTIONS(4118), 1, anon_sym_GT, - STATE(1987), 1, - sym_trait_bounds, - STATE(2036), 1, + STATE(1855), 1, aux_sym_type_parameters_repeat1, + STATE(1970), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57826] = 4, - ACTIONS(4267), 1, - anon_sym_as, - ACTIONS(4269), 1, + [57672] = 6, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3451), 1, anon_sym_COLON_COLON, + ACTIONS(3552), 1, + anon_sym_COLON, + STATE(1342), 1, + sym_type_arguments, + STATE(2071), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4265), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [57842] = 2, + [57692] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4271), 5, + ACTIONS(4259), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57854] = 2, + [57704] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3960), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(4261), 5, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - [57866] = 6, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(3452), 1, - anon_sym_LPAREN, - ACTIONS(3454), 1, - anon_sym_COLON_COLON, - STATE(1347), 1, - sym_type_arguments, - STATE(1374), 1, - sym_parameters, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [57716] = 6, + ACTIONS(3916), 1, + anon_sym_COLON, + ACTIONS(4263), 1, + anon_sym_COMMA, + ACTIONS(4265), 1, + anon_sym_GT, + STATE(1970), 1, + sym_trait_bounds, + STATE(2094), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57886] = 6, - ACTIONS(3697), 1, - anon_sym_PIPE, - ACTIONS(4273), 1, - anon_sym_SEMI, - ACTIONS(4275), 1, - anon_sym_COLON, - ACTIONS(4277), 1, - anon_sym_EQ, - ACTIONS(4279), 1, - anon_sym_else, + [57736] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57906] = 5, - ACTIONS(4281), 1, + ACTIONS(3660), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2896), 3, anon_sym_RPAREN, - ACTIONS(4283), 1, + anon_sym_PLUS, anon_sym_COMMA, - STATE(2111), 1, + [57750] = 5, + ACTIONS(4267), 1, + anon_sym_RPAREN, + ACTIONS(4270), 1, + anon_sym_COMMA, + STATE(2070), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3434), 2, + ACTIONS(3431), 2, anon_sym_COLON, anon_sym_PIPE, - [57924] = 4, - ACTIONS(4076), 1, + [57768] = 4, + ACTIONS(4160), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3446), 2, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4285), 2, + ACTIONS(4273), 2, anon_sym_RPAREN, anon_sym_COMMA, - [57940] = 5, - ACTIONS(756), 1, - anon_sym_RPAREN, - ACTIONS(4287), 1, - anon_sym_COMMA, - STATE(1976), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3434), 2, - anon_sym_COLON, - anon_sym_PIPE, - [57958] = 2, + [57784] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4289), 5, + ACTIONS(4275), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57970] = 4, - ACTIONS(4258), 1, + [57796] = 4, + ACTIONS(4227), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4174), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57812] = 4, + ACTIONS(4247), 1, anon_sym_as, - ACTIONS(4291), 1, + ACTIONS(4277), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4256), 3, + ACTIONS(4245), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [57986] = 2, + [57828] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4293), 5, + ACTIONS(4279), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57998] = 3, + [57840] = 5, + ACTIONS(766), 1, + anon_sym_RPAREN, + ACTIONS(4281), 1, + anon_sym_COMMA, + STATE(1943), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3434), 2, + ACTIONS(3431), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2586), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [58012] = 2, + [57858] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4295), 5, + ACTIONS(4283), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58024] = 6, - ACTIONS(4254), 1, - anon_sym_PIPE, - ACTIONS(4297), 1, + [57870] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3042), 5, anon_sym_SEMI, - ACTIONS(4299), 1, + anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(4301), 1, + anon_sym_where, anon_sym_EQ, - ACTIONS(4303), 1, - anon_sym_else, + [57882] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58044] = 4, - ACTIONS(4258), 1, - anon_sym_as, - ACTIONS(4305), 1, - anon_sym_COLON_COLON, + ACTIONS(3038), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [57894] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4256), 3, + ACTIONS(4285), 5, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_COMMA, - [58060] = 5, - ACTIONS(3567), 1, + anon_sym_where, anon_sym_EQ, - ACTIONS(3917), 1, + anon_sym_COMMA, + [57906] = 4, + ACTIONS(2598), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3431), 2, anon_sym_COLON, - STATE(2015), 1, - sym_trait_bounds, + anon_sym_PIPE, + ACTIONS(4287), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [57922] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4307), 2, + ACTIONS(4290), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - [58078] = 4, - ACTIONS(4309), 1, + [57934] = 4, + ACTIONS(4287), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 2, + ACTIONS(2598), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3434), 2, + ACTIONS(3431), 2, anon_sym_COMMA, anon_sym_PIPE, - [58094] = 3, - ACTIONS(4312), 1, - anon_sym_EQ, + [57950] = 5, + ACTIONS(762), 1, + anon_sym_RPAREN, + ACTIONS(4292), 1, + anon_sym_COMMA, + STATE(1995), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2732), 4, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - [58108] = 2, + ACTIONS(3431), 2, + anon_sym_COLON, + anon_sym_PIPE, + [57968] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4314), 5, + ACTIONS(4294), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58120] = 2, + [57980] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4316), 5, + ACTIONS(4296), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58132] = 2, + [57992] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3095), 5, + ACTIONS(4298), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, - [58144] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3099), 5, + anon_sym_COMMA, + [58004] = 6, + ACTIONS(3598), 1, + anon_sym_PIPE, + ACTIONS(4300), 1, anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4302), 1, anon_sym_COLON, - anon_sym_where, + ACTIONS(4304), 1, anon_sym_EQ, - [58156] = 2, + ACTIONS(4306), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3077), 5, + [58024] = 6, + ACTIONS(4308), 1, anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4310), 1, anon_sym_COLON, - anon_sym_where, + ACTIONS(4312), 1, anon_sym_EQ, - [58168] = 4, - ACTIONS(4216), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3446), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4120), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58184] = 4, - ACTIONS(2586), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3434), 2, - anon_sym_COLON, + ACTIONS(4314), 1, + anon_sym_else, + ACTIONS(4316), 1, anon_sym_PIPE, - ACTIONS(4309), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58200] = 6, - ACTIONS(3917), 1, - anon_sym_COLON, - ACTIONS(4318), 1, - anon_sym_COMMA, - ACTIONS(4320), 1, - anon_sym_GT, - STATE(1987), 1, - sym_trait_bounds, - STATE(2096), 1, - aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58220] = 6, - ACTIONS(4254), 1, - anon_sym_PIPE, - ACTIONS(4322), 1, - anon_sym_RPAREN, - ACTIONS(4324), 1, - anon_sym_COLON, - ACTIONS(4326), 1, - anon_sym_COMMA, - STATE(1898), 1, - aux_sym_tuple_pattern_repeat1, + [58044] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58240] = 4, - ACTIONS(2970), 1, + ACTIONS(4318), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [58056] = 4, + ACTIONS(2896), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3665), 2, + ACTIONS(3660), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4262), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58256] = 5, - ACTIONS(4328), 1, + ACTIONS(4320), 2, anon_sym_RPAREN, - ACTIONS(4331), 1, anon_sym_COMMA, - STATE(2111), 1, - aux_sym_parameters_repeat1, + [58072] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3434), 2, - anon_sym_COLON, - anon_sym_PIPE, - [58274] = 5, - ACTIONS(4334), 1, - anon_sym_RPAREN, - ACTIONS(4336), 1, + ACTIONS(4323), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - STATE(2069), 1, - aux_sym_parameters_repeat1, + [58084] = 6, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3451), 1, + anon_sym_COLON_COLON, + STATE(781), 1, + sym_parameters, + STATE(1342), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3434), 2, - anon_sym_COLON, - anon_sym_PIPE, - [58292] = 2, + [58104] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4338), 5, + ACTIONS(3086), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - [58304] = 2, + [58116] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4340), 5, + ACTIONS(3060), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - [58316] = 4, - ACTIONS(4216), 1, + [58128] = 4, + ACTIONS(4227), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3446), 2, + ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4285), 2, + ACTIONS(4273), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58332] = 2, + [58144] = 6, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3451), 1, + anon_sym_COLON_COLON, + STATE(1342), 1, + sym_type_arguments, + STATE(1353), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4342), 5, + [58164] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4325), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58344] = 5, - ACTIONS(768), 1, + [58176] = 6, + ACTIONS(3598), 1, + anon_sym_PIPE, + ACTIONS(4327), 1, + anon_sym_SEMI, + ACTIONS(4329), 1, + anon_sym_COLON, + ACTIONS(4331), 1, + anon_sym_EQ, + ACTIONS(4333), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58196] = 3, + ACTIONS(4335), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2714), 4, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_COLON_COLON, + [58210] = 6, + ACTIONS(4316), 1, + anon_sym_PIPE, + ACTIONS(4337), 1, anon_sym_RPAREN, - ACTIONS(4344), 1, + ACTIONS(4339), 1, + anon_sym_COLON, + ACTIONS(4341), 1, anon_sym_COMMA, - STATE(1941), 1, - aux_sym_parameters_repeat1, + STATE(2061), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3434), 2, - anon_sym_COLON, - anon_sym_PIPE, - [58362] = 2, + [58230] = 4, + ACTIONS(4247), 1, + anon_sym_as, + ACTIONS(4343), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4346), 5, + ACTIONS(4245), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [58374] = 3, + [58246] = 4, + ACTIONS(4160), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3665), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2970), 3, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4174), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [58388] = 2, + [58262] = 6, + ACTIONS(4316), 1, + anon_sym_PIPE, + ACTIONS(4345), 1, + anon_sym_SEMI, + ACTIONS(4347), 1, + anon_sym_COLON, + ACTIONS(4349), 1, + anon_sym_EQ, + ACTIONS(4351), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4348), 5, - anon_sym_SEMI, + [58282] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3950), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [58400] = 2, + anon_sym_LBRACK, + [58294] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4350), 5, + ACTIONS(3090), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - [58412] = 2, + [58306] = 4, + ACTIONS(4320), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4352), 5, + ACTIONS(2896), 2, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + anon_sym_PLUS, + ACTIONS(3660), 2, anon_sym_COMMA, - [58424] = 6, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(3454), 1, - anon_sym_COLON_COLON, - ACTIONS(3565), 1, + anon_sym_PIPE, + [58322] = 5, + ACTIONS(3554), 1, + anon_sym_EQ, + ACTIONS(3916), 1, anon_sym_COLON, - STATE(1347), 1, - sym_type_arguments, - STATE(2049), 1, + STATE(1968), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58444] = 2, + ACTIONS(4353), 2, + anon_sym_COMMA, + anon_sym_GT, + [58340] = 4, + ACTIONS(4357), 1, + anon_sym_as, + ACTIONS(4359), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4354), 5, + ACTIONS(4355), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - [58456] = 6, - ACTIONS(2552), 1, - anon_sym_LPAREN, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(3454), 1, + [58356] = 4, + ACTIONS(4158), 1, + anon_sym_COLON, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - STATE(802), 1, - sym_parameters, - STATE(1347), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58476] = 6, - ACTIONS(3697), 1, - anon_sym_PIPE, - ACTIONS(4356), 1, - anon_sym_SEMI, - ACTIONS(4358), 1, - anon_sym_COLON, - ACTIONS(4360), 1, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [58371] = 5, + ACTIONS(4116), 1, + anon_sym_COMMA, + ACTIONS(4118), 1, + anon_sym_GT, + ACTIONS(4361), 1, anon_sym_EQ, - ACTIONS(4362), 1, - anon_sym_else, + STATE(1855), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58496] = 4, - ACTIONS(4076), 1, - anon_sym_COLON_COLON, + [58388] = 5, + ACTIONS(4316), 1, + anon_sym_PIPE, + ACTIONS(4337), 1, + anon_sym_RPAREN, + ACTIONS(4341), 1, + anon_sym_COMMA, + STATE(2061), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3446), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4120), 2, + [58405] = 5, + ACTIONS(4363), 1, + anon_sym_LPAREN, + ACTIONS(4365), 1, + anon_sym_LBRACE, + ACTIONS(4367), 1, + anon_sym_LBRACK, + STATE(1336), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58422] = 5, + ACTIONS(3802), 1, + anon_sym_LBRACE, + ACTIONS(3804), 1, + anon_sym_where, + STATE(821), 1, + sym_field_declaration_list, + STATE(2193), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58439] = 4, + ACTIONS(4369), 1, + anon_sym_DQUOTE, + STATE(1774), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4371), 2, + sym__string_content, + sym_escape_sequence, + [58454] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(912), 1, + sym_line_comment, + ACTIONS(4373), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4375), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [58469] = 5, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(411), 1, + sym_enum_variant_list, + STATE(2213), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58486] = 5, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3840), 1, + anon_sym_LBRACE, + STATE(833), 1, + sym_declaration_list, + STATE(2181), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58503] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4377), 3, anon_sym_RPAREN, anon_sym_COMMA, - [58512] = 5, - ACTIONS(4364), 1, + anon_sym_PIPE, + [58516] = 5, + ACTIONS(762), 1, + anon_sym_RPAREN, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4292), 1, + anon_sym_COMMA, + STATE(1995), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58533] = 5, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(4112), 1, + anon_sym_LBRACE, + STATE(827), 1, + sym_enum_variant_list, + STATE(2188), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58550] = 5, + ACTIONS(4379), 1, anon_sym_LPAREN, - ACTIONS(4366), 1, + ACTIONS(4381), 1, anon_sym_LBRACE, - ACTIONS(4368), 1, + ACTIONS(4383), 1, anon_sym_LBRACK, - STATE(1098), 1, + STATE(81), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58529] = 5, - ACTIONS(3452), 1, - anon_sym_LPAREN, - ACTIONS(3809), 1, - anon_sym_LT, - STATE(1693), 1, - sym_parameters, - STATE(2219), 1, - sym_type_parameters, + [58567] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3431), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4385), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58580] = 5, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3840), 1, + anon_sym_LBRACE, + STATE(845), 1, + sym_declaration_list, + STATE(2176), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58546] = 5, - ACTIONS(3805), 1, + [58597] = 5, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(3807), 1, + ACTIONS(3804), 1, anon_sym_where, - STATE(925), 1, - sym_field_declaration_list, - STATE(2197), 1, + STATE(385), 1, + sym_declaration_list, + STATE(2306), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58563] = 5, - ACTIONS(3452), 1, + [58614] = 4, + ACTIONS(3916), 1, + anon_sym_COLON, + STATE(1970), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4387), 2, + anon_sym_COMMA, + anon_sym_GT, + [58629] = 4, + ACTIONS(4389), 1, + anon_sym_DQUOTE, + STATE(1839), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4391), 2, + sym__string_content, + sym_escape_sequence, + [58644] = 5, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3809), 1, + ACTIONS(3806), 1, anon_sym_LT, - STATE(1628), 1, + STATE(1646), 1, sym_parameters, - STATE(2253), 1, + STATE(2112), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58580] = 5, - ACTIONS(3807), 1, + [58661] = 5, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4136), 1, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(919), 1, - sym_enum_variant_list, - STATE(2192), 1, + STATE(403), 1, + sym_field_declaration_list, + STATE(2223), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58597] = 5, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4370), 1, - anon_sym_RPAREN, - ACTIONS(4372), 1, - anon_sym_COMMA, - STATE(1950), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [58678] = 5, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3806), 1, + anon_sym_LT, + STATE(1627), 1, + sym_parameters, + STATE(2234), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58614] = 5, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3851), 1, + [58695] = 5, + ACTIONS(3788), 1, anon_sym_LBRACE, - STATE(913), 1, - sym_declaration_list, - STATE(2185), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58631] = 5, - ACTIONS(3807), 1, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(903), 1, + STATE(425), 1, sym_declaration_list, - STATE(2180), 1, + STATE(2205), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58648] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3434), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4374), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58661] = 5, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4376), 1, - anon_sym_SEMI, - ACTIONS(4378), 1, - anon_sym_EQ, - ACTIONS(4380), 1, - anon_sym_else, + [58712] = 5, + ACTIONS(4363), 1, + anon_sym_LPAREN, + ACTIONS(4365), 1, + anon_sym_LBRACE, + ACTIONS(4367), 1, + anon_sym_LBRACK, + STATE(1333), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58678] = 4, + [58729] = 4, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4382), 1, + ACTIONS(4393), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(880), 2, + STATE(869), 2, sym_if_expression, sym_block, - [58693] = 4, - ACTIONS(4386), 1, + [58744] = 5, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4255), 1, + anon_sym_RPAREN, + ACTIONS(4257), 1, anon_sym_COMMA, - STATE(1770), 1, - aux_sym_where_clause_repeat1, + STATE(2070), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4384), 2, + [58761] = 5, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4395), 1, anon_sym_SEMI, + ACTIONS(4397), 1, + anon_sym_EQ, + ACTIONS(4399), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58778] = 5, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(4199), 1, anon_sym_LBRACE, - [58708] = 5, - ACTIONS(3452), 1, - anon_sym_LPAREN, - ACTIONS(3809), 1, - anon_sym_LT, - STATE(1614), 1, - sym_parameters, - STATE(2313), 1, - sym_type_parameters, + STATE(394), 1, + sym_enum_variant_list, + STATE(2293), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58725] = 4, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(4389), 1, - sym_identifier, + [58795] = 5, + ACTIONS(4401), 1, + anon_sym_LPAREN, + ACTIONS(4403), 1, + anon_sym_LBRACE, + ACTIONS(4405), 1, + anon_sym_LBRACK, + STATE(1971), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1138), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [58740] = 5, - ACTIONS(2483), 1, + [58812] = 5, + ACTIONS(2449), 1, anon_sym_PLUS, - ACTIONS(4391), 1, + ACTIONS(4407), 1, anon_sym_COMMA, - ACTIONS(4393), 1, + ACTIONS(4409), 1, anon_sym_GT, - STATE(2053), 1, + STATE(2058), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58757] = 5, - ACTIONS(4080), 1, + [58829] = 5, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4391), 1, + ACTIONS(4407), 1, anon_sym_COMMA, - ACTIONS(4393), 1, + ACTIONS(4409), 1, anon_sym_GT, - STATE(2053), 1, + STATE(2058), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58774] = 5, - ACTIONS(4080), 1, + [58846] = 5, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4334), 1, + ACTIONS(4251), 1, anon_sym_RPAREN, - ACTIONS(4336), 1, + ACTIONS(4253), 1, anon_sym_COMMA, - STATE(2069), 1, + STATE(2066), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58791] = 4, - ACTIONS(4395), 1, - anon_sym_DQUOTE, - STATE(1776), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4397), 2, - sym__string_content, - sym_escape_sequence, - [58806] = 5, - ACTIONS(4400), 1, - anon_sym_LPAREN, - ACTIONS(4402), 1, - anon_sym_LBRACE, - ACTIONS(4404), 1, - anon_sym_LBRACK, - STATE(1966), 1, - sym_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58823] = 5, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, - anon_sym_where, - STATE(448), 1, - sym_declaration_list, - STATE(2200), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58840] = 3, - ACTIONS(4406), 1, + [58863] = 5, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3916), 1, anon_sym_COLON, + STATE(1347), 1, + sym_type_arguments, + STATE(2074), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3697), 3, + [58880] = 5, + ACTIONS(4316), 1, + anon_sym_PIPE, + ACTIONS(4411), 1, anon_sym_RPAREN, + ACTIONS(4413), 1, anon_sym_COMMA, - anon_sym_PIPE, - [58853] = 4, - ACTIONS(4122), 1, - anon_sym_COLON, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, + STATE(1904), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3446), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [58868] = 5, - ACTIONS(756), 1, - anon_sym_RPAREN, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4287), 1, + [58897] = 4, + ACTIONS(4417), 1, anon_sym_COMMA, - STATE(1976), 1, - aux_sym_parameters_repeat1, + STATE(1794), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58885] = 5, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4408), 1, + ACTIONS(4415), 2, anon_sym_SEMI, - ACTIONS(4410), 1, - anon_sym_EQ, - ACTIONS(4412), 1, - anon_sym_else, + anon_sym_LBRACE, + [58912] = 5, + ACTIONS(4316), 1, + anon_sym_PIPE, + ACTIONS(4419), 1, + anon_sym_RBRACK, + ACTIONS(4421), 1, + anon_sym_COMMA, + STATE(1905), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58902] = 5, - ACTIONS(3805), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, - anon_sym_where, - STATE(854), 1, - sym_field_declaration_list, - STATE(2123), 1, - sym_where_clause, + [58929] = 5, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1347), 1, + sym_type_arguments, + STATE(1356), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58946] = 4, + ACTIONS(4423), 1, + anon_sym_DQUOTE, + STATE(1839), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58919] = 4, - ACTIONS(4414), 1, + ACTIONS(4391), 2, + sym__string_content, + sym_escape_sequence, + [58961] = 4, + ACTIONS(4425), 1, anon_sym_COMMA, - STATE(1770), 1, + STATE(1825), 1, aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3103), 2, + ACTIONS(3006), 2, anon_sym_SEMI, anon_sym_LBRACE, - [58934] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(912), 1, - sym_line_comment, - ACTIONS(4416), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4418), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [58949] = 3, - ACTIONS(4080), 1, + [58976] = 5, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4420), 3, - anon_sym_RPAREN, + ACTIONS(4427), 1, anon_sym_COMMA, - anon_sym_PIPE, - [58962] = 5, - ACTIONS(3917), 1, - anon_sym_COLON, - ACTIONS(4422), 1, - anon_sym_SEMI, - ACTIONS(4424), 1, - anon_sym_EQ, - STATE(2557), 1, - sym_trait_bounds, + ACTIONS(4429), 1, + anon_sym_GT, + STATE(2047), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58979] = 5, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3851), 1, + [58993] = 4, + ACTIONS(632), 1, anon_sym_LBRACE, - STATE(849), 1, - sym_declaration_list, - STATE(2118), 1, - sym_where_clause, + ACTIONS(4431), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58996] = 5, - ACTIONS(3799), 1, + STATE(233), 2, + sym_if_expression, + sym_block, + [59008] = 5, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(3807), 1, + ACTIONS(3804), 1, anon_sym_where, - STATE(424), 1, + STATE(246), 1, sym_declaration_list, - STATE(2162), 1, + STATE(2199), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59013] = 4, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(4220), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3446), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59028] = 5, - ACTIONS(2552), 1, - anon_sym_LPAREN, - ACTIONS(3448), 1, - anon_sym_LT2, - STATE(798), 1, - sym_parameters, - STATE(1343), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59045] = 5, - ACTIONS(4324), 1, + [59025] = 5, + ACTIONS(4339), 1, anon_sym_COLON, - ACTIONS(4426), 1, + ACTIONS(4433), 1, anon_sym_COMMA, - ACTIONS(4428), 1, + ACTIONS(4435), 1, anon_sym_PIPE, - STATE(2084), 1, + STATE(1920), 1, aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59062] = 5, - ACTIONS(4318), 1, + [59042] = 5, + ACTIONS(2449), 1, + anon_sym_PLUS, + ACTIONS(4427), 1, anon_sym_COMMA, - ACTIONS(4320), 1, + ACTIONS(4429), 1, anon_sym_GT, - ACTIONS(4430), 1, - anon_sym_EQ, - STATE(2096), 1, - aux_sym_type_parameters_repeat1, + STATE(2047), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59079] = 5, - ACTIONS(3304), 1, + [59059] = 5, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3840), 1, anon_sym_LBRACE, - ACTIONS(4177), 1, - sym_identifier, - ACTIONS(4179), 1, - anon_sym_STAR, - STATE(1990), 1, - sym_use_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59096] = 5, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4432), 1, - anon_sym_RPAREN, - ACTIONS(4434), 1, - anon_sym_COMMA, - STATE(2092), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59113] = 5, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4436), 1, - anon_sym_SEMI, - ACTIONS(4438), 1, - anon_sym_EQ, - ACTIONS(4440), 1, - anon_sym_else, + STATE(1004), 1, + sym_declaration_list, + STATE(2226), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59130] = 4, - ACTIONS(4442), 1, + [59076] = 4, + ACTIONS(4437), 1, anon_sym_DQUOTE, - STATE(1776), 1, + STATE(1805), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4444), 2, + ACTIONS(4439), 2, sym__string_content, sym_escape_sequence, - [59145] = 5, - ACTIONS(768), 1, + [59091] = 5, + ACTIONS(766), 1, anon_sym_RPAREN, - ACTIONS(4080), 1, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4344), 1, + ACTIONS(4281), 1, anon_sym_COMMA, - STATE(1941), 1, + STATE(1943), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59162] = 5, - ACTIONS(3304), 1, + [59108] = 5, + ACTIONS(4441), 1, + anon_sym_LPAREN, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(4446), 1, - sym_identifier, - ACTIONS(4448), 1, - anon_sym_STAR, - STATE(2004), 1, - sym_use_list, + ACTIONS(4445), 1, + anon_sym_LBRACK, + STATE(918), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59179] = 3, + [59125] = 3, + ACTIONS(4316), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3434), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4450), 2, + ACTIONS(4447), 3, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [59192] = 5, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(4136), 1, - anon_sym_LBRACE, - STATE(824), 1, - sym_enum_variant_list, - STATE(2152), 1, - sym_where_clause, + [59138] = 4, + ACTIONS(4449), 1, + anon_sym_DQUOTE, + STATE(1839), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59209] = 5, - ACTIONS(4452), 1, - anon_sym_LPAREN, - ACTIONS(4454), 1, - anon_sym_LBRACE, - ACTIONS(4456), 1, - anon_sym_LBRACK, - STATE(87), 1, - sym_delim_token_tree, + ACTIONS(4391), 2, + sym__string_content, + sym_escape_sequence, + [59153] = 4, + ACTIONS(4451), 1, + anon_sym_COMMA, + STATE(1806), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59226] = 5, - ACTIONS(3807), 1, + ACTIONS(4447), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [59168] = 5, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3851), 1, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(980), 1, + STATE(1035), 1, sym_declaration_list, - STATE(2230), 1, + STATE(2231), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59243] = 5, - ACTIONS(3982), 1, + [59185] = 5, + ACTIONS(4441), 1, anon_sym_LPAREN, - ACTIONS(3984), 1, + ACTIONS(4443), 1, anon_sym_LBRACE, - ACTIONS(3986), 1, + ACTIONS(4445), 1, anon_sym_LBRACK, - STATE(934), 1, + STATE(930), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59260] = 4, - ACTIONS(4458), 1, - anon_sym_DQUOTE, - STATE(1776), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4444), 2, - sym__string_content, - sym_escape_sequence, - [59275] = 3, - ACTIONS(4460), 1, + [59202] = 3, + ACTIONS(4454), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4462), 3, + ACTIONS(4456), 3, sym_self, sym_super, sym_crate, - [59288] = 5, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(998), 1, - sym_declaration_list, - STATE(2235), 1, - sym_where_clause, + [59215] = 5, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3806), 1, + anon_sym_LT, + STATE(1612), 1, + sym_parameters, + STATE(2153), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59305] = 4, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(4464), 1, - anon_sym_if, + [59232] = 5, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4458), 1, + anon_sym_SEMI, + ACTIONS(4460), 1, + anon_sym_EQ, + ACTIONS(4462), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(73), 2, - sym_if_expression, - sym_block, - [59320] = 5, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3815), 1, + [59249] = 5, + ACTIONS(3802), 1, anon_sym_LBRACE, - STATE(257), 1, + ACTIONS(3804), 1, + anon_sym_where, + STATE(900), 1, sym_field_declaration_list, - STATE(2174), 1, + STATE(2119), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59337] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(912), 1, - sym_line_comment, - ACTIONS(4466), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4468), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59352] = 5, - ACTIONS(3917), 1, + [59266] = 5, + ACTIONS(3916), 1, anon_sym_COLON, - ACTIONS(4470), 1, + ACTIONS(4464), 1, anon_sym_SEMI, - ACTIONS(4472), 1, + ACTIONS(4466), 1, anon_sym_EQ, - STATE(2525), 1, + STATE(2437), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59369] = 5, - ACTIONS(3982), 1, - anon_sym_LPAREN, - ACTIONS(3984), 1, + [59283] = 5, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3840), 1, anon_sym_LBRACE, - ACTIONS(3986), 1, - anon_sym_LBRACK, - STATE(1120), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59386] = 5, - ACTIONS(2483), 1, - anon_sym_PLUS, - ACTIONS(4474), 1, - anon_sym_COMMA, - ACTIONS(4476), 1, - anon_sym_GT, - STATE(1862), 1, - aux_sym_type_arguments_repeat1, + STATE(808), 1, + sym_declaration_list, + STATE(2114), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59403] = 5, - ACTIONS(3799), 1, + [59300] = 5, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(3807), 1, + ACTIONS(3804), 1, anon_sym_where, - STATE(270), 1, + STATE(266), 1, sym_declaration_list, - STATE(2148), 1, + STATE(2280), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59420] = 4, - ACTIONS(4478), 1, - anon_sym_DQUOTE, - STATE(1805), 1, - aux_sym_string_literal_repeat1, + [59317] = 5, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(304), 1, + sym_field_declaration_list, + STATE(2172), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4480), 2, - sym__string_content, - sym_escape_sequence, - [59435] = 5, - ACTIONS(4080), 1, + [59334] = 5, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4474), 1, - anon_sym_COMMA, - ACTIONS(4476), 1, - anon_sym_GT, - STATE(1862), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4468), 1, + anon_sym_SEMI, + ACTIONS(4470), 1, + anon_sym_EQ, + ACTIONS(4472), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59452] = 5, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1044), 1, - sym_declaration_list, - STATE(2259), 1, - sym_where_clause, + [59351] = 5, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(3445), 1, + anon_sym_LT2, + STATE(783), 1, + sym_parameters, + STATE(1347), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59469] = 4, - ACTIONS(4482), 1, - anon_sym_DQUOTE, - STATE(1797), 1, - aux_sym_string_literal_repeat1, + [59368] = 3, + ACTIONS(4474), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4484), 2, - sym__string_content, - sym_escape_sequence, - [59484] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(912), 1, - sym_line_comment, - ACTIONS(4486), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4488), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59499] = 3, - ACTIONS(4080), 1, - anon_sym_PLUS, + ACTIONS(4476), 3, + sym_self, + sym_super, + sym_crate, + [59381] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4490), 3, + ACTIONS(3431), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4478), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_PIPE, - [59512] = 5, - ACTIONS(4080), 1, + [59394] = 5, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4492), 1, + ACTIONS(4480), 1, anon_sym_RPAREN, - ACTIONS(4494), 1, + ACTIONS(4482), 1, anon_sym_COMMA, - STATE(1910), 1, + STATE(2024), 1, aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59529] = 5, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, - anon_sym_where, - STATE(419), 1, - sym_declaration_list, - STATE(2272), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59546] = 5, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(3807), 1, - anon_sym_where, - STATE(325), 1, - sym_declaration_list, - STATE(2312), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59563] = 5, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4496), 1, - anon_sym_SEMI, - ACTIONS(4498), 1, + [59411] = 5, + ACTIONS(4263), 1, + anon_sym_COMMA, + ACTIONS(4265), 1, + anon_sym_GT, + ACTIONS(4361), 1, anon_sym_EQ, - ACTIONS(4500), 1, - anon_sym_else, + STATE(2094), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59580] = 5, - ACTIONS(4254), 1, - anon_sym_PIPE, - ACTIONS(4322), 1, + [59428] = 5, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4484), 1, anon_sym_RPAREN, - ACTIONS(4326), 1, + ACTIONS(4486), 1, anon_sym_COMMA, - STATE(1898), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1918), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59597] = 5, - ACTIONS(3452), 1, - anon_sym_LPAREN, - ACTIONS(3809), 1, - anon_sym_LT, - STATE(1635), 1, - sym_parameters, - STATE(2206), 1, - sym_type_parameters, - ACTIONS(3), 2, + [59445] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(912), 1, sym_line_comment, - [59614] = 5, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(3452), 1, - anon_sym_LPAREN, - STATE(1343), 1, - sym_type_arguments, - STATE(1370), 1, - sym_parameters, + ACTIONS(4488), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4490), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59460] = 4, + ACTIONS(4494), 1, + anon_sym_COMMA, + STATE(1825), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59631] = 5, - ACTIONS(4364), 1, - anon_sym_LPAREN, - ACTIONS(4366), 1, + ACTIONS(4492), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4368), 1, - anon_sym_LBRACK, - STATE(1099), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59648] = 5, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(4144), 1, + [59475] = 4, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(395), 1, - sym_enum_variant_list, - STATE(2211), 1, - sym_where_clause, + ACTIONS(4497), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59665] = 5, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(3815), 1, - anon_sym_LBRACE, - STATE(376), 1, - sym_field_declaration_list, - STATE(2246), 1, - sym_where_clause, + STATE(66), 2, + sym_if_expression, + sym_block, + [59490] = 5, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4499), 1, + anon_sym_RPAREN, + ACTIONS(4501), 1, + anon_sym_COMMA, + STATE(2090), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59682] = 5, - ACTIONS(3807), 1, + [59507] = 5, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4144), 1, + ACTIONS(4112), 1, anon_sym_LBRACE, - STATE(403), 1, + STATE(963), 1, sym_enum_variant_list, - STATE(2315), 1, + STATE(2149), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59699] = 3, - ACTIONS(4502), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4504), 3, - sym_self, - sym_super, - sym_crate, - [59712] = 4, - ACTIONS(4506), 1, + [59524] = 4, + ACTIONS(4503), 1, anon_sym_DQUOTE, - STATE(1850), 1, + STATE(1849), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4508), 2, + ACTIONS(4505), 2, sym__string_content, sym_escape_sequence, - [59727] = 5, - ACTIONS(3799), 1, + [59539] = 5, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(3807), 1, + ACTIONS(3804), 1, anon_sym_where, - STATE(370), 1, + STATE(290), 1, sym_declaration_list, - STATE(2268), 1, + STATE(2185), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59744] = 4, - ACTIONS(4510), 1, - anon_sym_DQUOTE, - STATE(1776), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4444), 2, - sym__string_content, - sym_escape_sequence, - [59759] = 3, - ACTIONS(4254), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4512), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [59772] = 4, - ACTIONS(4514), 1, - anon_sym_COMMA, - STATE(1837), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4512), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [59787] = 5, - ACTIONS(3452), 1, - anon_sym_LPAREN, - ACTIONS(3809), 1, - anon_sym_LT, - STATE(1674), 1, - sym_parameters, - STATE(2270), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59804] = 5, - ACTIONS(4254), 1, - anon_sym_PIPE, - ACTIONS(4517), 1, + [59556] = 5, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4507), 1, anon_sym_RPAREN, - ACTIONS(4519), 1, + ACTIONS(4509), 1, anon_sym_COMMA, - STATE(1893), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59821] = 5, - ACTIONS(3452), 1, - anon_sym_LPAREN, - ACTIONS(3809), 1, - anon_sym_LT, - STATE(1684), 1, - sym_parameters, - STATE(2288), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59838] = 5, - ACTIONS(4452), 1, - anon_sym_LPAREN, - ACTIONS(4454), 1, - anon_sym_LBRACE, - ACTIONS(4456), 1, - anon_sym_LBRACK, - STATE(68), 1, - sym_delim_token_tree, + STATE(1963), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59855] = 4, - ACTIONS(3917), 1, + [59573] = 4, + ACTIONS(3916), 1, anon_sym_COLON, - STATE(1987), 1, + STATE(1970), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4521), 2, - anon_sym_COMMA, - anon_sym_GT, - [59870] = 5, - ACTIONS(4242), 1, + ACTIONS(4511), 2, anon_sym_COMMA, - ACTIONS(4244), 1, anon_sym_GT, - ACTIONS(4430), 1, - anon_sym_EQ, - STATE(2036), 1, - aux_sym_type_parameters_repeat1, + [59588] = 5, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3806), 1, + anon_sym_LT, + STATE(1702), 1, + sym_parameters, + STATE(2175), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59887] = 5, - ACTIONS(4523), 1, + [59605] = 5, + ACTIONS(4379), 1, anon_sym_LPAREN, - ACTIONS(4525), 1, + ACTIONS(4381), 1, anon_sym_LBRACE, - ACTIONS(4527), 1, + ACTIONS(4383), 1, anon_sym_LBRACK, - STATE(1335), 1, + STATE(83), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59904] = 5, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4529), 1, - anon_sym_RPAREN, - ACTIONS(4531), 1, - anon_sym_COMMA, - STATE(1940), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59921] = 4, - ACTIONS(4535), 1, - anon_sym_COMMA, - STATE(1784), 1, - aux_sym_where_clause_repeat1, + [59622] = 5, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3806), 1, + anon_sym_LT, + STATE(1649), 1, + sym_parameters, + STATE(2126), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4533), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [59936] = 4, + [59639] = 4, ACTIONS(3), 1, sym_block_comment, ACTIONS(912), 1, sym_line_comment, - ACTIONS(4537), 1, + ACTIONS(4514), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4539), 3, + ACTIONS(4516), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [59951] = 5, - ACTIONS(4080), 1, + [59654] = 5, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4541), 1, + ACTIONS(4518), 1, anon_sym_RPAREN, - ACTIONS(4543), 1, + ACTIONS(4520), 1, anon_sym_COMMA, - STATE(2000), 1, - aux_sym_tuple_type_repeat1, + STATE(1882), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59968] = 4, - ACTIONS(4545), 1, - anon_sym_DQUOTE, - STATE(1835), 1, - aux_sym_string_literal_repeat1, + [59671] = 4, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(4522), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4547), 2, - sym__string_content, - sym_escape_sequence, - [59983] = 4, - ACTIONS(4549), 1, + STATE(1153), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [59686] = 4, + ACTIONS(4524), 1, anon_sym_DQUOTE, - STATE(1776), 1, + STATE(1839), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4444), 2, + ACTIONS(4526), 2, sym__string_content, sym_escape_sequence, - [59998] = 5, - ACTIONS(4523), 1, - anon_sym_LPAREN, - ACTIONS(4525), 1, - anon_sym_LBRACE, - ACTIONS(4527), 1, - anon_sym_LBRACK, - STATE(1337), 1, - sym_delim_token_tree, + [59701] = 5, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4529), 1, + anon_sym_SEMI, + ACTIONS(4531), 1, + anon_sym_EQ, + ACTIONS(4533), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60015] = 4, - ACTIONS(632), 1, + [59718] = 5, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(3840), 1, anon_sym_LBRACE, - ACTIONS(4551), 1, - anon_sym_if, + STATE(1116), 1, + sym_declaration_list, + STATE(2255), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(232), 2, - sym_if_expression, - sym_block, - [60030] = 5, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(3917), 1, + [59735] = 3, + ACTIONS(4535), 1, anon_sym_COLON, - STATE(1343), 1, - sym_type_arguments, - STATE(2048), 1, - sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60047] = 5, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4281), 1, + ACTIONS(3598), 3, anon_sym_RPAREN, - ACTIONS(4283), 1, anon_sym_COMMA, - STATE(2111), 1, - aux_sym_parameters_repeat1, + anon_sym_PIPE, + [59748] = 4, + ACTIONS(4176), 1, + anon_sym_COLON, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60064] = 5, - ACTIONS(4254), 1, - anon_sym_PIPE, - ACTIONS(4553), 1, - anon_sym_RBRACK, - ACTIONS(4555), 1, - anon_sym_COMMA, - STATE(1904), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59763] = 5, + ACTIONS(3788), 1, + anon_sym_LBRACE, + ACTIONS(3804), 1, + anon_sym_where, + STATE(291), 1, + sym_declaration_list, + STATE(2276), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60081] = 4, - ACTIONS(3917), 1, - anon_sym_COLON, - STATE(1987), 1, - sym_trait_bounds, + [59780] = 5, + ACTIONS(3995), 1, + anon_sym_LPAREN, + ACTIONS(3997), 1, + anon_sym_LBRACE, + ACTIONS(3999), 1, + anon_sym_LBRACK, + STATE(1023), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4557), 2, - anon_sym_COMMA, - anon_sym_GT, - [60096] = 3, - ACTIONS(4080), 1, + [59797] = 3, + ACTIONS(4075), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4560), 2, - anon_sym_RBRACE, + ACTIONS(4537), 3, + anon_sym_RPAREN, anon_sym_COMMA, - [60108] = 4, - ACTIONS(4072), 1, - anon_sym_LBRACE, - ACTIONS(4562), 1, - anon_sym_SEMI, - STATE(332), 1, - sym_block, - ACTIONS(3), 2, + anon_sym_PIPE, + [59810] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(912), 1, sym_line_comment, - [60122] = 4, - ACTIONS(4072), 1, + ACTIONS(4539), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4541), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59825] = 5, + ACTIONS(3995), 1, + anon_sym_LPAREN, + ACTIONS(3997), 1, anon_sym_LBRACE, - ACTIONS(4564), 1, - anon_sym_SEMI, - STATE(334), 1, - sym_block, + ACTIONS(3999), 1, + anon_sym_LBRACK, + STATE(973), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60136] = 4, - ACTIONS(4040), 1, - anon_sym_RBRACE, - ACTIONS(4566), 1, - anon_sym_COMMA, - STATE(2113), 1, - aux_sym_struct_pattern_repeat1, + [59842] = 4, + ACTIONS(4543), 1, + anon_sym_DQUOTE, + STATE(1839), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60150] = 4, - ACTIONS(3526), 1, - anon_sym_COLON_COLON, - ACTIONS(3565), 1, + ACTIONS(4391), 2, + sym__string_content, + sym_escape_sequence, + [59857] = 5, + ACTIONS(3916), 1, anon_sym_COLON, - STATE(2048), 1, + ACTIONS(4545), 1, + anon_sym_SEMI, + ACTIONS(4547), 1, + anon_sym_EQ, + STATE(2422), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60164] = 4, - ACTIONS(880), 1, - anon_sym_GT, - ACTIONS(4568), 1, - anon_sym_COMMA, - STATE(2075), 1, - aux_sym_type_arguments_repeat1, + [59874] = 5, + ACTIONS(3249), 1, + anon_sym_LBRACE, + ACTIONS(4106), 1, + sym_identifier, + ACTIONS(4108), 1, + anon_sym_STAR, + STATE(2060), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60178] = 4, - ACTIONS(392), 1, - anon_sym_RPAREN, - ACTIONS(4570), 1, - anon_sym_COMMA, - STATE(1871), 1, - aux_sym_arguments_repeat1, + [59891] = 5, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3806), 1, + anon_sym_LT, + STATE(1674), 1, + sym_parameters, + STATE(2202), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60192] = 4, - ACTIONS(4450), 1, - anon_sym_RPAREN, - ACTIONS(4572), 1, - anon_sym_COMMA, - STATE(1864), 1, - aux_sym_parameters_repeat1, + [59908] = 4, + ACTIONS(4549), 1, + anon_sym_DQUOTE, + STATE(1793), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60206] = 4, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4575), 1, - anon_sym_SEMI, - ACTIONS(4577), 1, - anon_sym_RBRACK, + ACTIONS(4551), 2, + sym__string_content, + sym_escape_sequence, + [59923] = 5, + ACTIONS(3249), 1, + anon_sym_LBRACE, + ACTIONS(4553), 1, + sym_identifier, + ACTIONS(4555), 1, + anon_sym_STAR, + STATE(2054), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60220] = 4, - ACTIONS(4044), 1, - anon_sym_RBRACE, - ACTIONS(4579), 1, + [59940] = 4, + ACTIONS(3836), 1, + anon_sym_GT, + ACTIONS(4557), 1, anon_sym_COMMA, - STATE(2113), 1, - aux_sym_struct_pattern_repeat1, + STATE(2040), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60234] = 4, - ACTIONS(4581), 1, + [59954] = 4, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4583), 1, - anon_sym_AMP_AMP, - STATE(1989), 1, - aux_sym_let_chain_repeat1, + ACTIONS(4559), 1, + anon_sym_move, + STATE(1047), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60248] = 2, + [59968] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4561), 1, + sym_identifier, + STATE(2374), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3356), 3, + [59982] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - [60258] = 3, - ACTIONS(4080), 1, - anon_sym_PLUS, + ACTIONS(4563), 1, + anon_sym_SEMI, + STATE(400), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4585), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60270] = 4, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(4587), 1, - sym_identifier, - STATE(2499), 1, - sym_type_arguments, + [59996] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60284] = 4, - ACTIONS(3199), 1, - anon_sym_RPAREN, - ACTIONS(4589), 1, - anon_sym_COMMA, - STATE(1871), 1, - aux_sym_arguments_repeat1, + ACTIONS(4565), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60006] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60298] = 4, - ACTIONS(4281), 1, - anon_sym_RPAREN, - ACTIONS(4283), 1, - anon_sym_COMMA, - STATE(2111), 1, - aux_sym_parameters_repeat1, + ACTIONS(4567), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60016] = 4, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4569), 1, + anon_sym_SEMI, + STATE(322), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60312] = 4, - ACTIONS(3448), 1, + [60030] = 4, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(4592), 1, + ACTIONS(4571), 1, sym_identifier, - STATE(2499), 1, + STATE(2374), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60326] = 3, - ACTIONS(4080), 1, - anon_sym_PLUS, + [60044] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4571), 1, + sym_identifier, + STATE(2372), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4594), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60338] = 4, - ACTIONS(2483), 1, - anon_sym_PLUS, - ACTIONS(4596), 1, - sym_mutable_specifier, - ACTIONS(4598), 1, - sym_self, + [60058] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60352] = 4, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(4592), 1, - sym_identifier, - STATE(2475), 1, - sym_type_arguments, + ACTIONS(4573), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60068] = 4, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4575), 1, + anon_sym_SEMI, + STATE(381), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60366] = 3, - ACTIONS(4080), 1, - anon_sym_PLUS, + [60082] = 3, + ACTIONS(3163), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4600), 2, + ACTIONS(4577), 2, anon_sym_RPAREN, anon_sym_COMMA, - [60378] = 4, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(4587), 1, - sym_identifier, - STATE(2475), 1, - sym_type_arguments, + [60094] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60392] = 3, - ACTIONS(4604), 1, - anon_sym_COLON, + ACTIONS(4579), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60106] = 4, + ACTIONS(626), 1, + anon_sym_RBRACK, + ACTIONS(4581), 1, + anon_sym_COMMA, + STATE(1972), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4602), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [60404] = 4, - ACTIONS(390), 1, - anon_sym_RPAREN, - ACTIONS(3183), 1, - anon_sym_COMMA, - STATE(1871), 1, - aux_sym_arguments_repeat1, + [60120] = 4, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4583), 1, + anon_sym_SEMI, + ACTIONS(4585), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60418] = 3, - ACTIONS(4254), 1, + [60134] = 3, + ACTIONS(4316), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4606), 2, + ACTIONS(4587), 2, anon_sym_RBRACE, anon_sym_COMMA, - [60430] = 4, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(4608), 1, + [60146] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2395), 3, anon_sym_SEMI, - STATE(366), 1, - sym_declaration_list, + anon_sym_RPAREN, + anon_sym_RBRACE, + [60156] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60444] = 4, - ACTIONS(4610), 1, - anon_sym_COMMA, - ACTIONS(4612), 1, - anon_sym_GT, - STATE(2059), 1, - aux_sym_for_lifetimes_repeat1, + ACTIONS(4589), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [60166] = 4, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4591), 1, + anon_sym_SEMI, + STATE(432), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60458] = 2, + [60180] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4075), 1, + anon_sym_PLUS, + STATE(817), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2405), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [60468] = 3, - ACTIONS(4080), 1, + [60194] = 4, + ACTIONS(4075), 1, anon_sym_PLUS, + ACTIONS(4593), 1, + anon_sym_SEMI, + ACTIONS(4595), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4614), 2, - anon_sym_COMMA, - anon_sym_GT, - [60480] = 2, + [60208] = 4, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4597), 1, + anon_sym_SEMI, + STATE(457), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4616), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60490] = 3, - ACTIONS(3173), 1, - anon_sym_COLON_COLON, + [60222] = 4, + ACTIONS(3788), 1, + anon_sym_LBRACE, + ACTIONS(4599), 1, + anon_sym_SEMI, + STATE(478), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4285), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60502] = 4, - ACTIONS(4072), 1, + [60236] = 4, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(4618), 1, + ACTIONS(4601), 1, anon_sym_SEMI, - STATE(345), 1, - sym_block, + STATE(473), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60516] = 3, - ACTIONS(4430), 1, - anon_sym_EQ, + [60250] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4521), 2, + ACTIONS(4603), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [60528] = 4, - ACTIONS(4620), 1, + [60262] = 4, + ACTIONS(4605), 1, anon_sym_RBRACE, - ACTIONS(4622), 1, + ACTIONS(4607), 1, anon_sym_COMMA, - STATE(1890), 1, + STATE(2077), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60542] = 4, - ACTIONS(4242), 1, + [60276] = 4, + ACTIONS(3806), 1, + anon_sym_LT, + ACTIONS(4609), 1, + anon_sym_EQ, + STATE(2456), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60290] = 4, + ACTIONS(4611), 1, + anon_sym_RPAREN, + ACTIONS(4613), 1, anon_sym_COMMA, - ACTIONS(4244), 1, - anon_sym_GT, - STATE(2036), 1, - aux_sym_type_parameters_repeat1, + STATE(1916), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60556] = 4, - ACTIONS(3536), 1, - anon_sym_COLON_COLON, - ACTIONS(3565), 1, - anon_sym_COLON, - STATE(2048), 1, - sym_trait_bounds, + [60304] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60570] = 4, - ACTIONS(2419), 1, + ACTIONS(4615), 2, anon_sym_RPAREN, - ACTIONS(4625), 1, anon_sym_COMMA, - STATE(1837), 1, - aux_sym_tuple_pattern_repeat1, + [60316] = 4, + ACTIONS(4617), 1, + sym_identifier, + ACTIONS(4619), 1, + anon_sym_ref, + ACTIONS(4621), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60584] = 4, - ACTIONS(4072), 1, - anon_sym_LBRACE, - ACTIONS(4627), 1, - anon_sym_SEMI, - STATE(347), 1, - sym_block, + [60330] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4623), 1, + sym_identifier, + STATE(2372), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60598] = 4, - ACTIONS(4629), 1, - anon_sym_RBRACE, - ACTIONS(4631), 1, - anon_sym_COMMA, - STATE(2037), 1, - aux_sym_enum_variant_list_repeat2, + [60344] = 4, + ACTIONS(3546), 1, + anon_sym_COLON_COLON, + ACTIONS(3552), 1, + anon_sym_COLON, + STATE(2074), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60612] = 4, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(4633), 1, - anon_sym_SEMI, - STATE(368), 1, - sym_declaration_list, + [60358] = 4, + ACTIONS(3523), 1, + anon_sym_COLON_COLON, + ACTIONS(3552), 1, + anon_sym_COLON, + STATE(2074), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60626] = 4, - ACTIONS(4521), 1, - anon_sym_GT, - ACTIONS(4635), 1, - anon_sym_COMMA, - STATE(1897), 1, - aux_sym_type_parameters_repeat1, + [60372] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4623), 1, + sym_identifier, + STATE(2374), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60640] = 4, - ACTIONS(2379), 1, - anon_sym_RPAREN, - ACTIONS(4638), 1, + [60386] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4625), 2, anon_sym_COMMA, - STATE(1837), 1, - aux_sym_tuple_pattern_repeat1, + anon_sym_GT, + [60398] = 3, + ACTIONS(4316), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60654] = 4, - ACTIONS(4072), 1, + ACTIONS(4627), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [60410] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4640), 1, + ACTIONS(4629), 1, anon_sym_SEMI, - STATE(317), 1, + STATE(430), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60668] = 3, - ACTIONS(4642), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4644), 2, - anon_sym_default, - anon_sym_union, - [60680] = 4, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4646), 1, + [60424] = 4, + ACTIONS(3788), 1, + anon_sym_LBRACE, + ACTIONS(4631), 1, anon_sym_SEMI, - ACTIONS(4648), 1, - anon_sym_EQ, + STATE(325), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60694] = 4, - ACTIONS(4096), 1, - anon_sym_LBRACE, - ACTIONS(4650), 1, - anon_sym_SEMI, - STATE(1091), 1, - sym_block, + [60438] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60708] = 4, - ACTIONS(628), 1, - anon_sym_RBRACK, - ACTIONS(4652), 1, + ACTIONS(4385), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1907), 1, - aux_sym_array_expression_repeat1, + [60450] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4633), 1, + sym_identifier, + STATE(2374), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60722] = 4, - ACTIONS(2425), 1, - anon_sym_RBRACK, - ACTIONS(4654), 1, - anon_sym_COMMA, - STATE(1837), 1, - aux_sym_tuple_pattern_repeat1, + [60464] = 4, + ACTIONS(3578), 1, + anon_sym_COLON_COLON, + ACTIONS(3961), 1, + anon_sym_BANG, + ACTIONS(4635), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60736] = 4, - ACTIONS(4096), 1, - anon_sym_LBRACE, - ACTIONS(4656), 1, - anon_sym_SEMI, - STATE(1087), 1, - sym_block, + [60478] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4633), 1, + sym_identifier, + STATE(2372), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60750] = 3, - ACTIONS(4080), 1, - anon_sym_PLUS, + [60492] = 4, + ACTIONS(4637), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_COMMA, + STATE(2095), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4658), 2, - anon_sym_COMMA, - anon_sym_GT, - [60762] = 4, - ACTIONS(3340), 1, - anon_sym_RBRACK, - ACTIONS(4660), 1, - anon_sym_COMMA, - STATE(1907), 1, - aux_sym_array_expression_repeat1, + [60506] = 4, + ACTIONS(4641), 1, + sym_identifier, + ACTIONS(4643), 1, + anon_sym_ref, + ACTIONS(4645), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60776] = 4, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(4663), 1, - anon_sym_SEMI, - STATE(292), 1, - sym_declaration_list, + [60520] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60790] = 4, - ACTIONS(284), 1, + ACTIONS(2385), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [60530] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4665), 1, - anon_sym_move, - STATE(821), 1, + ACTIONS(4647), 1, + anon_sym_SEMI, + STATE(410), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60804] = 4, - ACTIONS(4667), 1, + [60544] = 4, + ACTIONS(4255), 1, anon_sym_RPAREN, - ACTIONS(4669), 1, + ACTIONS(4257), 1, anon_sym_COMMA, - STATE(1986), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2070), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60818] = 4, - ACTIONS(4080), 1, + [60558] = 4, + ACTIONS(2449), 1, anon_sym_PLUS, - ACTIONS(4671), 1, - anon_sym_SEMI, - ACTIONS(4673), 1, - anon_sym_EQ, + ACTIONS(4649), 1, + sym_mutable_specifier, + ACTIONS(4651), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60832] = 4, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(4675), 1, + [60572] = 4, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4653), 1, anon_sym_SEMI, - STATE(2498), 1, - sym_where_clause, + STATE(453), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60846] = 4, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(4677), 1, - anon_sym_SEMI, - STATE(295), 1, - sym_declaration_list, + [60586] = 4, + ACTIONS(2381), 1, + anon_sym_RPAREN, + ACTIONS(4655), 1, + anon_sym_COMMA, + STATE(1806), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60600] = 4, + ACTIONS(2391), 1, + anon_sym_RBRACK, + ACTIONS(4657), 1, + anon_sym_COMMA, + STATE(1806), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60860] = 4, - ACTIONS(4096), 1, + [60614] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4659), 1, + sym_identifier, + STATE(2372), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60628] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4679), 1, + ACTIONS(4661), 1, anon_sym_SEMI, - STATE(1083), 1, + STATE(366), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60874] = 4, - ACTIONS(4681), 1, + [60642] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4663), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [60652] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4659), 1, sym_identifier, - ACTIONS(4683), 1, - anon_sym_await, - ACTIONS(4685), 1, - sym_integer_literal, + STATE(2374), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60888] = 4, - ACTIONS(4072), 1, + [60666] = 4, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(4687), 1, + ACTIONS(4665), 1, anon_sym_SEMI, STATE(354), 1, - sym_block, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60902] = 4, - ACTIONS(3799), 1, + [60680] = 4, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(4689), 1, + ACTIONS(4667), 1, anon_sym_SEMI, - STATE(302), 1, + STATE(332), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60916] = 3, - ACTIONS(4080), 1, - anon_sym_PLUS, + [60694] = 4, + ACTIONS(3854), 1, + anon_sym_RBRACE, + ACTIONS(4669), 1, + anon_sym_COMMA, + STATE(1913), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4691), 2, + [60708] = 4, + ACTIONS(4671), 1, anon_sym_RBRACE, + ACTIONS(4673), 1, anon_sym_COMMA, - [60928] = 4, - ACTIONS(4072), 1, - anon_sym_LBRACE, - ACTIONS(4693), 1, - anon_sym_SEMI, - STATE(267), 1, - sym_block, + STATE(1913), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60942] = 3, - ACTIONS(4697), 1, + [60722] = 3, + ACTIONS(4678), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4695), 2, + ACTIONS(4676), 2, anon_sym_RBRACE, anon_sym_COMMA, - [60954] = 4, - ACTIONS(2602), 1, - anon_sym_LBRACE, - ACTIONS(4699), 1, - anon_sym_COLON_COLON, - STATE(1102), 1, - sym_field_initializer_list, + [60734] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60968] = 4, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4701), 1, - anon_sym_SEMI, - ACTIONS(4703), 1, - anon_sym_EQ, + ACTIONS(4680), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [60746] = 4, + ACTIONS(4682), 1, + anon_sym_RPAREN, + ACTIONS(4684), 1, + anon_sym_COMMA, + STATE(1916), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60982] = 3, - ACTIONS(4707), 1, - anon_sym_COLON, + [60760] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4705), 2, - anon_sym_RBRACE, + ACTIONS(4687), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [60994] = 4, - ACTIONS(4709), 1, - anon_sym_RBRACE, - ACTIONS(4711), 1, + [60772] = 4, + ACTIONS(4689), 1, + anon_sym_RPAREN, + ACTIONS(4691), 1, anon_sym_COMMA, - STATE(2032), 1, - aux_sym_use_list_repeat1, + STATE(1916), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61008] = 4, - ACTIONS(4713), 1, - anon_sym_for, - ACTIONS(4715), 1, - anon_sym_loop, - ACTIONS(4717), 1, - anon_sym_while, + [60786] = 4, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4693), 1, + anon_sym_SEMI, + ACTIONS(4695), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61022] = 4, - ACTIONS(4096), 1, - anon_sym_LBRACE, - ACTIONS(4719), 1, - anon_sym_SEMI, - STATE(1077), 1, - sym_block, + [60800] = 4, + ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(4697), 1, + anon_sym_PIPE, + STATE(2091), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61036] = 4, - ACTIONS(2560), 1, - anon_sym_LT2, - ACTIONS(4721), 1, + [60814] = 4, + ACTIONS(4699), 1, sym_identifier, - STATE(794), 1, - sym_type_arguments, + ACTIONS(4701), 1, + anon_sym_ref, + ACTIONS(4703), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61050] = 3, - ACTIONS(4080), 1, - anon_sym_PLUS, + [60828] = 3, + ACTIONS(4707), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4450), 2, - anon_sym_RPAREN, + ACTIONS(4705), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [61062] = 4, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4723), 1, - anon_sym_SEMI, - ACTIONS(4725), 1, + [60840] = 4, + ACTIONS(3806), 1, + anon_sym_LT, + ACTIONS(4709), 1, anon_sym_EQ, + STATE(2543), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61076] = 4, - ACTIONS(4096), 1, + [60854] = 4, + ACTIONS(4069), 1, anon_sym_LBRACE, - ACTIONS(4727), 1, + ACTIONS(4711), 1, anon_sym_SEMI, - STATE(1068), 1, + STATE(1074), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61090] = 4, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(4729), 1, + [60868] = 4, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(4713), 1, anon_sym_SEMI, - STATE(381), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61104] = 4, - ACTIONS(4731), 1, - anon_sym_RBRACE, - ACTIONS(4733), 1, - anon_sym_COMMA, - STATE(1860), 1, - aux_sym_struct_pattern_repeat1, + STATE(2549), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61118] = 4, - ACTIONS(3851), 1, + [60882] = 4, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(4735), 1, + ACTIONS(4715), 1, anon_sym_SEMI, - STATE(1064), 1, + STATE(299), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61132] = 4, - ACTIONS(3851), 1, + [60896] = 4, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(4737), 1, + ACTIONS(4717), 1, anon_sym_SEMI, - STATE(1062), 1, + STATE(278), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61146] = 2, + [60910] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4739), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61156] = 2, + ACTIONS(4719), 2, + anon_sym_COMMA, + anon_sym_GT, + [60922] = 4, + ACTIONS(4721), 1, + anon_sym_COMMA, + ACTIONS(4724), 1, + anon_sym_GT, + STATE(1929), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4741), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [61166] = 4, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4743), 1, - anon_sym_SEMI, - ACTIONS(4745), 1, - anon_sym_EQ, + [60936] = 4, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(4726), 1, + anon_sym_GT, + STATE(2265), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61180] = 4, - ACTIONS(3835), 1, + [60950] = 4, + ACTIONS(4728), 1, anon_sym_RBRACE, - ACTIONS(4747), 1, + ACTIONS(4730), 1, anon_sym_COMMA, - STATE(2046), 1, - aux_sym_field_initializer_list_repeat1, + STATE(2055), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61194] = 4, - ACTIONS(4096), 1, - anon_sym_LBRACE, - ACTIONS(4749), 1, - anon_sym_SEMI, - STATE(1055), 1, - sym_block, + [60964] = 4, + ACTIONS(4732), 1, + anon_sym_COMMA, + ACTIONS(4735), 1, + anon_sym_GT, + STATE(1932), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61208] = 4, - ACTIONS(4751), 1, - anon_sym_RPAREN, - ACTIONS(4753), 1, - anon_sym_COMMA, - STATE(1986), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [60978] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61222] = 4, - ACTIONS(766), 1, - anon_sym_RPAREN, - ACTIONS(4755), 1, + ACTIONS(4737), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1864), 1, - aux_sym_parameters_repeat1, + [60988] = 3, + ACTIONS(2449), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61236] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4080), 1, + ACTIONS(4735), 2, + anon_sym_COMMA, + anon_sym_GT, + [61000] = 3, + ACTIONS(4075), 1, anon_sym_PLUS, - STATE(1011), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61250] = 4, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(4757), 1, - sym_identifier, - STATE(2475), 1, - sym_type_arguments, + ACTIONS(4735), 2, + anon_sym_COMMA, + anon_sym_GT, + [61012] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61264] = 4, - ACTIONS(4759), 1, + ACTIONS(4739), 2, anon_sym_COMMA, - ACTIONS(4762), 1, - anon_sym_PIPE, - STATE(1944), 1, - aux_sym_closure_parameters_repeat1, + anon_sym_GT, + [61024] = 4, + ACTIONS(4741), 1, + anon_sym_RBRACE, + ACTIONS(4743), 1, + anon_sym_COMMA, + STATE(1937), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61278] = 4, - ACTIONS(4072), 1, + [61038] = 4, + ACTIONS(4069), 1, anon_sym_LBRACE, - ACTIONS(4764), 1, + ACTIONS(4746), 1, anon_sym_SEMI, - STATE(405), 1, + STATE(1058), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61292] = 3, - ACTIONS(4324), 1, + [61052] = 3, + ACTIONS(4316), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4748), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [61064] = 3, + ACTIONS(4752), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4762), 2, + ACTIONS(4750), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_PIPE, - [61304] = 4, - ACTIONS(4096), 1, + [61076] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(4766), 1, + ACTIONS(4754), 1, anon_sym_SEMI, - STATE(1050), 1, + STATE(267), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61318] = 4, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(4757), 1, - sym_identifier, - STATE(2499), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61332] = 3, - ACTIONS(4080), 1, - anon_sym_PLUS, + [61090] = 4, + ACTIONS(2590), 1, + anon_sym_LBRACE, + ACTIONS(4756), 1, + anon_sym_COLON_COLON, + STATE(1082), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4768), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61344] = 4, - ACTIONS(4770), 1, + [61104] = 4, + ACTIONS(760), 1, anon_sym_RPAREN, - ACTIONS(4772), 1, + ACTIONS(4758), 1, anon_sym_COMMA, - STATE(1986), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(1946), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61358] = 4, - ACTIONS(4072), 1, + [61118] = 4, + ACTIONS(4069), 1, anon_sym_LBRACE, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_SEMI, - STATE(441), 1, + STATE(1048), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61372] = 4, - ACTIONS(4776), 1, - sym_identifier, - ACTIONS(4778), 1, - anon_sym_ref, - ACTIONS(4780), 1, - sym_mutable_specifier, + [61132] = 3, + ACTIONS(3163), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61386] = 4, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(4782), 1, - anon_sym_SEMI, - STATE(2546), 1, - sym_where_clause, + ACTIONS(4273), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [61144] = 4, + ACTIONS(4478), 1, + anon_sym_RPAREN, + ACTIONS(4762), 1, + anon_sym_COMMA, + STATE(1946), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61400] = 2, + [61158] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4784), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4478), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [61410] = 4, - ACTIONS(4096), 1, + [61170] = 4, + ACTIONS(4427), 1, + anon_sym_COMMA, + ACTIONS(4429), 1, + anon_sym_GT, + STATE(2047), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61184] = 4, + ACTIONS(4069), 1, anon_sym_LBRACE, - ACTIONS(4786), 1, + ACTIONS(4765), 1, anon_sym_SEMI, - STATE(1037), 1, + STATE(920), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61424] = 4, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(4788), 1, + [61198] = 4, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4767), 1, anon_sym_SEMI, - STATE(1034), 1, - sym_declaration_list, + ACTIONS(4769), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61438] = 4, - ACTIONS(4790), 1, + [61212] = 4, + ACTIONS(4771), 1, anon_sym_RBRACE, - ACTIONS(4792), 1, + ACTIONS(4773), 1, anon_sym_COMMA, - STATE(1957), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2042), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61452] = 4, - ACTIONS(3799), 1, + [61226] = 4, + ACTIONS(4069), 1, anon_sym_LBRACE, - ACTIONS(4795), 1, + ACTIONS(4775), 1, anon_sym_SEMI, - STATE(465), 1, - sym_declaration_list, + STATE(943), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61466] = 4, - ACTIONS(632), 1, - anon_sym_LBRACE, - ACTIONS(4797), 1, - anon_sym_move, - STATE(224), 1, - sym_block, + [61240] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61480] = 4, - ACTIONS(4474), 1, + ACTIONS(4492), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(4476), 1, - anon_sym_GT, - STATE(1862), 1, - aux_sym_type_arguments_repeat1, + [61250] = 4, + ACTIONS(4777), 1, + anon_sym_RBRACE, + ACTIONS(4779), 1, + anon_sym_COMMA, + STATE(2052), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61494] = 4, - ACTIONS(4072), 1, + [61264] = 4, + ACTIONS(632), 1, anon_sym_LBRACE, - ACTIONS(4799), 1, - anon_sym_SEMI, - STATE(423), 1, + ACTIONS(4781), 1, + anon_sym_move, + STATE(223), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61508] = 4, - ACTIONS(4801), 1, - sym_identifier, - ACTIONS(4803), 1, - anon_sym_ref, - ACTIONS(4805), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61522] = 4, - ACTIONS(3851), 1, + [61278] = 4, + ACTIONS(3840), 1, anon_sym_LBRACE, - ACTIONS(4807), 1, + ACTIONS(4783), 1, anon_sym_SEMI, - STATE(1027), 1, + STATE(1026), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61536] = 4, - ACTIONS(3889), 1, - anon_sym_RBRACE, - ACTIONS(4809), 1, - anon_sym_COMMA, - STATE(1957), 1, - aux_sym_field_declaration_list_repeat1, + [61292] = 4, + ACTIONS(3840), 1, + anon_sym_LBRACE, + ACTIONS(4785), 1, + anon_sym_SEMI, + STATE(1044), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61550] = 4, - ACTIONS(3869), 1, + [61306] = 4, + ACTIONS(3844), 1, anon_sym_RBRACE, - ACTIONS(4811), 1, + ACTIONS(4787), 1, anon_sym_COMMA, - STATE(1957), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1960), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61564] = 2, + [61320] = 3, + ACTIONS(4791), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4813), 3, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4789), 2, anon_sym_RBRACE, - [61574] = 4, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4815), 1, - anon_sym_SEMI, - ACTIONS(4817), 1, - anon_sym_EQ, + anon_sym_COMMA, + [61332] = 4, + ACTIONS(4793), 1, + anon_sym_RBRACE, + ACTIONS(4795), 1, + anon_sym_COMMA, + STATE(1960), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61588] = 4, - ACTIONS(4819), 1, - anon_sym_for, - ACTIONS(4821), 1, - anon_sym_loop, - ACTIONS(4823), 1, - anon_sym_while, + [61346] = 4, + ACTIONS(2590), 1, + anon_sym_LBRACE, + ACTIONS(4798), 1, + anon_sym_COLON_COLON, + STATE(1082), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61602] = 3, - ACTIONS(4216), 1, - anon_sym_COLON_COLON, + [61360] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3446), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61614] = 4, - ACTIONS(3851), 1, + ACTIONS(3347), 3, anon_sym_LBRACE, - ACTIONS(4825), 1, - anon_sym_SEMI, - STATE(1018), 1, - sym_declaration_list, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + [61370] = 4, + ACTIONS(2512), 1, + anon_sym_RPAREN, + ACTIONS(4800), 1, + anon_sym_COMMA, + STATE(2050), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61628] = 4, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(4827), 1, - anon_sym_SEMI, - STATE(1016), 1, - sym_declaration_list, + [61384] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61642] = 4, - ACTIONS(4829), 1, - anon_sym_EQ_GT, - ACTIONS(4831), 1, - anon_sym_AMP_AMP, - STATE(2023), 1, - aux_sym_let_chain_repeat1, + ACTIONS(4802), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [61394] = 3, + ACTIONS(4227), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61656] = 4, - ACTIONS(626), 1, - anon_sym_RBRACK, - ACTIONS(3149), 1, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61406] = 4, + ACTIONS(4804), 1, anon_sym_COMMA, - STATE(1907), 1, - aux_sym_array_expression_repeat1, + ACTIONS(4806), 1, + anon_sym_GT, + STATE(2046), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61670] = 4, - ACTIONS(4096), 1, + [61420] = 4, + ACTIONS(4069), 1, anon_sym_LBRACE, - ACTIONS(4833), 1, + ACTIONS(4808), 1, anon_sym_SEMI, - STATE(1012), 1, + STATE(1105), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61684] = 4, - ACTIONS(4835), 1, - anon_sym_for, - ACTIONS(4837), 1, - anon_sym_loop, - ACTIONS(4839), 1, - anon_sym_while, + [61434] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61698] = 4, - ACTIONS(760), 1, - anon_sym_RPAREN, - ACTIONS(4841), 1, + ACTIONS(4810), 3, + anon_sym_EQ, anon_sym_COMMA, - STATE(1864), 1, - aux_sym_parameters_repeat1, + anon_sym_GT, + [61444] = 4, + ACTIONS(3882), 1, + anon_sym_GT, + ACTIONS(4812), 1, + anon_sym_COMMA, + STATE(2040), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61712] = 3, - ACTIONS(4845), 1, - anon_sym_COLON, + [61458] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4843), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61724] = 4, - ACTIONS(3889), 1, - anon_sym_RBRACE, - ACTIONS(4809), 1, + ACTIONS(4814), 3, + anon_sym_EQ, anon_sym_COMMA, - STATE(1995), 1, - aux_sym_field_declaration_list_repeat1, + anon_sym_GT, + [61468] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61738] = 4, - ACTIONS(4847), 1, + ACTIONS(4816), 3, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(4849), 1, + [61478] = 4, + ACTIONS(3271), 1, + anon_sym_RBRACK, + ACTIONS(4818), 1, anon_sym_COMMA, - STATE(1866), 1, - aux_sym_struct_pattern_repeat1, + STATE(1972), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61752] = 4, - ACTIONS(3859), 1, - anon_sym_RBRACE, - ACTIONS(4851), 1, + [61492] = 4, + ACTIONS(4069), 1, + anon_sym_LBRACE, + ACTIONS(4821), 1, + anon_sym_SEMI, + STATE(1126), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61506] = 4, + ACTIONS(624), 1, + anon_sym_RBRACK, + ACTIONS(3149), 1, anon_sym_COMMA, - STATE(1890), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1972), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61766] = 4, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(4177), 1, + [61520] = 3, + ACTIONS(4823), 1, sym_identifier, - STATE(2475), 1, - sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61780] = 4, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4853), 1, - anon_sym_SEMI, - ACTIONS(4855), 1, - anon_sym_EQ, + ACTIONS(4825), 2, + anon_sym_default, + anon_sym_union, + [61532] = 4, + ACTIONS(398), 1, + anon_sym_RPAREN, + ACTIONS(4827), 1, + anon_sym_COMMA, + STATE(1977), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61794] = 4, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(4857), 1, - sym_identifier, - STATE(2499), 1, - sym_type_arguments, + [61546] = 4, + ACTIONS(3285), 1, + anon_sym_RPAREN, + ACTIONS(4829), 1, + anon_sym_COMMA, + STATE(1977), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61808] = 4, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(4857), 1, - sym_identifier, - STATE(2475), 1, - sym_type_arguments, + [61560] = 4, + ACTIONS(4069), 1, + anon_sym_LBRACE, + ACTIONS(4832), 1, + anon_sym_SEMI, + STATE(1104), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61822] = 4, - ACTIONS(3851), 1, + [61574] = 4, + ACTIONS(3840), 1, anon_sym_LBRACE, - ACTIONS(4859), 1, + ACTIONS(4834), 1, anon_sym_SEMI, - STATE(1025), 1, + STATE(1100), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61836] = 4, - ACTIONS(4861), 1, - anon_sym_RPAREN, - ACTIONS(4863), 1, + [61588] = 4, + ACTIONS(4433), 1, anon_sym_COMMA, - STATE(1986), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4836), 1, + anon_sym_PIPE, + STATE(1920), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61850] = 2, + [61602] = 4, + ACTIONS(4316), 1, + anon_sym_PIPE, + ACTIONS(4838), 1, + anon_sym_EQ_GT, + ACTIONS(4840), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4866), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [61860] = 4, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(4868), 1, + [61616] = 4, + ACTIONS(3840), 1, + anon_sym_LBRACE, + ACTIONS(4842), 1, anon_sym_SEMI, - STATE(2351), 1, - sym_where_clause, + STATE(983), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61874] = 4, - ACTIONS(3356), 1, + [61630] = 4, + ACTIONS(3840), 1, anon_sym_LBRACE, - ACTIONS(4870), 1, - anon_sym_AMP_AMP, - STATE(1989), 1, - aux_sym_let_chain_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61888] = 2, + ACTIONS(4844), 1, + anon_sym_SEMI, + STATE(1093), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4873), 3, - anon_sym_SEMI, + [61644] = 4, + ACTIONS(3876), 1, anon_sym_RBRACE, + ACTIONS(4846), 1, anon_sym_COMMA, - [61898] = 3, - ACTIONS(4076), 1, - anon_sym_COLON_COLON, + STATE(1913), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3446), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61910] = 2, + [61658] = 4, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4848), 1, + anon_sym_SEMI, + ACTIONS(4850), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4875), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61920] = 4, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(4877), 1, - sym_identifier, - STATE(2475), 1, - sym_type_arguments, + [61672] = 4, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(4852), 1, + anon_sym_GT, + STATE(2265), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61934] = 4, - ACTIONS(3807), 1, + [61686] = 4, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(4879), 1, + ACTIONS(4854), 1, anon_sym_SEMI, - STATE(2439), 1, + STATE(2412), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61948] = 4, - ACTIONS(3857), 1, - anon_sym_RBRACE, - ACTIONS(4881), 1, - anon_sym_COMMA, - STATE(1957), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61962] = 4, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(4877), 1, - sym_identifier, - STATE(2499), 1, - sym_type_arguments, + [61700] = 3, + ACTIONS(4207), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61976] = 4, - ACTIONS(2560), 1, - anon_sym_LT2, - ACTIONS(4883), 1, - sym_identifier, - STATE(1190), 1, - sym_type_arguments, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61712] = 4, + ACTIONS(3840), 1, + anon_sym_LBRACE, + ACTIONS(4856), 1, + anon_sym_SEMI, + STATE(1078), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61990] = 4, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4885), 1, + [61726] = 4, + ACTIONS(3840), 1, + anon_sym_LBRACE, + ACTIONS(4858), 1, anon_sym_SEMI, - ACTIONS(4887), 1, - anon_sym_EQ, + STATE(1076), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62004] = 4, - ACTIONS(4096), 1, + [61740] = 4, + ACTIONS(4069), 1, anon_sym_LBRACE, - ACTIONS(4889), 1, + ACTIONS(4860), 1, anon_sym_SEMI, - STATE(985), 1, + STATE(1066), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62018] = 4, - ACTIONS(2528), 1, - anon_sym_RPAREN, - ACTIONS(4891), 1, - anon_sym_COMMA, - STATE(2074), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62032] = 2, + [61754] = 4, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4862), 1, + anon_sym_SEMI, + ACTIONS(4864), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4893), 3, + [61768] = 4, + ACTIONS(4081), 1, + anon_sym_LBRACE, + ACTIONS(4866), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62042] = 4, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(4612), 1, - anon_sym_GT, - STATE(2158), 1, - sym_lifetime, + STATE(285), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62056] = 4, + [61782] = 4, ACTIONS(2560), 1, anon_sym_LT2, - ACTIONS(4883), 1, + ACTIONS(4868), 1, sym_identifier, STATE(1191), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62070] = 2, + [61796] = 4, + ACTIONS(764), 1, + anon_sym_RPAREN, + ACTIONS(4870), 1, + anon_sym_COMMA, + STATE(1946), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4895), 3, - anon_sym_SEMI, + [61810] = 4, + ACTIONS(4872), 1, anon_sym_RBRACE, + ACTIONS(4874), 1, anon_sym_COMMA, - [62080] = 4, - ACTIONS(4897), 1, - anon_sym_COMMA, - ACTIONS(4899), 1, - anon_sym_GT, - STATE(1883), 1, - aux_sym_for_lifetimes_repeat1, + STATE(1996), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62094] = 3, - ACTIONS(4126), 1, - anon_sym_COLON_COLON, + [61824] = 4, + ACTIONS(3788), 1, + anon_sym_LBRACE, + ACTIONS(4877), 1, + anon_sym_SEMI, + STATE(252), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3446), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [62106] = 4, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(4901), 1, + [61838] = 4, + ACTIONS(4879), 1, + anon_sym_for, + ACTIONS(4881), 1, + anon_sym_loop, + ACTIONS(4883), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61852] = 4, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4885), 1, anon_sym_SEMI, - STATE(316), 1, - sym_declaration_list, + ACTIONS(4887), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62120] = 4, + [61866] = 4, ACTIONS(2560), 1, anon_sym_LT2, - ACTIONS(4721), 1, + ACTIONS(4868), 1, sym_identifier, - STATE(786), 1, + STATE(1190), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62134] = 2, + [61880] = 3, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4903), 3, - anon_sym_SEMI, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61892] = 4, + ACTIONS(4889), 1, anon_sym_RBRACE, + ACTIONS(4891), 1, anon_sym_COMMA, - [62144] = 4, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(4905), 1, - anon_sym_SEMI, - STATE(975), 1, - sym_declaration_list, + STATE(2002), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62158] = 2, + [61906] = 4, + ACTIONS(4894), 1, + anon_sym_for, + ACTIONS(4896), 1, + anon_sym_loop, + ACTIONS(4898), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4907), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62168] = 2, + [61920] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4909), 3, + ACTIONS(4900), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62178] = 4, - ACTIONS(4583), 1, - anon_sym_AMP_AMP, - ACTIONS(4829), 1, - anon_sym_LBRACE, - STATE(1867), 1, - aux_sym_let_chain_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62192] = 3, - ACTIONS(4913), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4911), 2, + [61930] = 4, + ACTIONS(3822), 1, anon_sym_RBRACE, + ACTIONS(4902), 1, anon_sym_COMMA, - [62204] = 2, + STATE(1960), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4915), 3, - anon_sym_EQ, + [61944] = 4, + ACTIONS(4116), 1, anon_sym_COMMA, + ACTIONS(4118), 1, anon_sym_GT, - [62214] = 4, - ACTIONS(3837), 1, - anon_sym_RBRACE, - ACTIONS(4917), 1, - anon_sym_COMMA, - STATE(1965), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1855), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62228] = 4, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(4919), 1, - sym_identifier, - STATE(2475), 1, - sym_type_arguments, + [61958] = 4, + ACTIONS(3788), 1, + anon_sym_LBRACE, + ACTIONS(4904), 1, + anon_sym_SEMI, + STATE(300), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62242] = 4, - ACTIONS(3837), 1, + [61972] = 4, + ACTIONS(4906), 1, anon_sym_RBRACE, - ACTIONS(4917), 1, + ACTIONS(4908), 1, anon_sym_COMMA, - STATE(1957), 1, + STATE(2022), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62256] = 4, - ACTIONS(4080), 1, + [61986] = 4, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(4921), 1, + ACTIONS(4910), 1, anon_sym_SEMI, - ACTIONS(4923), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62270] = 4, - ACTIONS(3881), 1, - anon_sym_GT, - ACTIONS(4925), 1, - anon_sym_COMMA, - STATE(1897), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4912), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62284] = 4, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(4919), 1, - sym_identifier, - STATE(2499), 1, - sym_type_arguments, + [62000] = 4, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(4914), 1, + anon_sym_SEMI, + STATE(2493), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62298] = 2, + [62014] = 3, + ACTIONS(4160), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4927), 3, - anon_sym_SEMI, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62026] = 4, + ACTIONS(3824), 1, anon_sym_RBRACE, + ACTIONS(4916), 1, anon_sym_COMMA, - [62308] = 4, - ACTIONS(4581), 1, - anon_sym_EQ_GT, - ACTIONS(4831), 1, - anon_sym_AMP_AMP, - STATE(2070), 1, - aux_sym_let_chain_repeat1, + STATE(1912), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62322] = 4, - ACTIONS(3819), 1, - anon_sym_RBRACE, - ACTIONS(4929), 1, - anon_sym_COMMA, - STATE(1890), 1, - aux_sym_enum_variant_list_repeat2, + [62040] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3746), 1, + anon_sym_LBRACE, + STATE(1347), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62336] = 4, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(4931), 1, - anon_sym_SEMI, - ACTIONS(4933), 1, - anon_sym_RBRACK, + [62054] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4918), 1, + sym_identifier, + STATE(2372), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62350] = 3, - ACTIONS(4080), 1, - anon_sym_PLUS, + [62068] = 4, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(4920), 1, + anon_sym_SEMI, + STATE(2384), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4935), 2, - anon_sym_COMMA, - anon_sym_GT, - [62362] = 4, - ACTIONS(4318), 1, - anon_sym_COMMA, - ACTIONS(4320), 1, - anon_sym_GT, - STATE(2096), 1, - aux_sym_type_parameters_repeat1, + [62082] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4922), 1, + sym_identifier, + STATE(2374), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62376] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4080), 1, + [62096] = 4, + ACTIONS(4075), 1, anon_sym_PLUS, - STATE(811), 1, - sym_block, + ACTIONS(4924), 1, + anon_sym_SEMI, + ACTIONS(4926), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62390] = 4, - ACTIONS(3448), 1, + [62110] = 4, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(4937), 1, + ACTIONS(4918), 1, sym_identifier, - STATE(2475), 1, + STATE(2374), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62404] = 4, - ACTIONS(4426), 1, - anon_sym_COMMA, - ACTIONS(4939), 1, - anon_sym_PIPE, - STATE(2084), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62418] = 4, - ACTIONS(3851), 1, + [62124] = 4, + ACTIONS(4069), 1, anon_sym_LBRACE, - ACTIONS(4941), 1, + ACTIONS(4928), 1, anon_sym_SEMI, - STATE(959), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62432] = 4, - ACTIONS(3358), 1, - anon_sym_RBRACE, - ACTIONS(4943), 1, - anon_sym_COMMA, - STATE(2093), 1, - aux_sym_use_list_repeat1, + STATE(1013), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62446] = 4, - ACTIONS(3851), 1, + [62138] = 4, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(4945), 1, + ACTIONS(4930), 1, anon_sym_SEMI, - STATE(841), 1, + STATE(471), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62460] = 2, + [62152] = 4, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4932), 1, + anon_sym_SEMI, + ACTIONS(4934), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4947), 3, - anon_sym_SEMI, + [62166] = 4, + ACTIONS(3824), 1, anon_sym_RBRACE, + ACTIONS(4916), 1, anon_sym_COMMA, - [62470] = 3, - ACTIONS(4951), 1, - anon_sym_EQ, + STATE(1913), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4949), 2, - anon_sym_RBRACE, + [62180] = 4, + ACTIONS(4263), 1, anon_sym_COMMA, - [62482] = 4, - ACTIONS(3887), 1, + ACTIONS(4265), 1, anon_sym_GT, - ACTIONS(4953), 1, - anon_sym_COMMA, - STATE(1897), 1, + STATE(2094), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62496] = 4, - ACTIONS(3793), 1, - anon_sym_RBRACE, - ACTIONS(4955), 1, + [62194] = 4, + ACTIONS(4936), 1, + anon_sym_RPAREN, + ACTIONS(4938), 1, anon_sym_COMMA, - STATE(1890), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1916), 1, + aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62208] = 4, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4940), 1, + anon_sym_SEMI, + ACTIONS(4942), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62222] = 4, + ACTIONS(3840), 1, + anon_sym_LBRACE, + ACTIONS(4944), 1, + anon_sym_SEMI, + STATE(995), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62510] = 4, - ACTIONS(3448), 1, + [62236] = 4, + ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(4937), 1, + ACTIONS(4922), 1, sym_identifier, - STATE(2499), 1, + STATE(2372), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62524] = 3, - ACTIONS(4254), 1, - anon_sym_PIPE, + [62250] = 4, + ACTIONS(3832), 1, + anon_sym_RBRACE, + ACTIONS(4946), 1, + anon_sym_COMMA, + STATE(1984), 1, + aux_sym_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62264] = 4, + ACTIONS(3840), 1, + anon_sym_LBRACE, + ACTIONS(4948), 1, + anon_sym_SEMI, + STATE(926), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4957), 2, + [62278] = 4, + ACTIONS(3832), 1, anon_sym_RBRACE, + ACTIONS(4946), 1, anon_sym_COMMA, - [62536] = 4, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(4959), 1, + STATE(1913), 1, + aux_sym_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62292] = 4, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(4950), 1, anon_sym_SEMI, - STATE(2545), 1, - sym_where_clause, + ACTIONS(4952), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62306] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4561), 1, + sym_identifier, + STATE(2372), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62550] = 4, - ACTIONS(3799), 1, + [62320] = 4, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(4961), 1, + ACTIONS(4954), 1, anon_sym_SEMI, - STATE(437), 1, + STATE(342), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62564] = 4, - ACTIONS(3799), 1, + [62334] = 4, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(4963), 1, + ACTIONS(4956), 1, anon_sym_SEMI, - STATE(432), 1, + STATE(428), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62578] = 4, - ACTIONS(3851), 1, + [62348] = 4, + ACTIONS(3788), 1, anon_sym_LBRACE, - ACTIONS(4965), 1, + ACTIONS(4958), 1, anon_sym_SEMI, - STATE(948), 1, + STATE(348), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62592] = 2, + [62362] = 4, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(4960), 1, + anon_sym_SEMI, + STATE(2450), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4967), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [62602] = 4, - ACTIONS(3799), 1, + [62376] = 4, + ACTIONS(3840), 1, anon_sym_LBRACE, - ACTIONS(4969), 1, + ACTIONS(4962), 1, anon_sym_SEMI, - STATE(453), 1, + STATE(921), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62616] = 4, - ACTIONS(4971), 1, - anon_sym_RBRACE, - ACTIONS(4973), 1, + [62390] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4964), 2, anon_sym_COMMA, - STATE(2046), 1, - aux_sym_field_initializer_list_repeat1, + anon_sym_GT, + [62402] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62630] = 4, - ACTIONS(3793), 1, + ACTIONS(4966), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4955), 1, anon_sym_COMMA, - STATE(2024), 1, - aux_sym_enum_variant_list_repeat2, + [62412] = 4, + ACTIONS(4387), 1, + anon_sym_GT, + ACTIONS(4968), 1, + anon_sym_COMMA, + STATE(2040), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62644] = 2, + [62426] = 3, + ACTIONS(4361), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4976), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4387), 2, + anon_sym_COMMA, + anon_sym_GT, + [62438] = 4, + ACTIONS(3383), 1, + anon_sym_RBRACE, + ACTIONS(4971), 1, anon_sym_COMMA, - [62654] = 2, + STATE(2002), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4978), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [62664] = 4, - ACTIONS(3799), 1, + [62452] = 4, + ACTIONS(3840), 1, anon_sym_LBRACE, - ACTIONS(4980), 1, + ACTIONS(4973), 1, anon_sym_SEMI, - STATE(444), 1, + STATE(929), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62678] = 3, - ACTIONS(4254), 1, - anon_sym_PIPE, + [62466] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4982), 2, + ACTIONS(4975), 3, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62690] = 2, + [62476] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4984), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4977), 2, anon_sym_COMMA, - [62700] = 4, - ACTIONS(864), 1, anon_sym_GT, - ACTIONS(4986), 1, + [62488] = 4, + ACTIONS(4852), 1, + anon_sym_GT, + ACTIONS(4979), 1, anon_sym_COMMA, - STATE(2075), 1, + STATE(1929), 1, + aux_sym_for_lifetimes_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62502] = 4, + ACTIONS(868), 1, + anon_sym_GT, + ACTIONS(4981), 1, + anon_sym_COMMA, + STATE(1932), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62714] = 3, - ACTIONS(4988), 1, + [62516] = 3, + ACTIONS(4983), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4990), 2, + ACTIONS(4985), 2, anon_sym_default, anon_sym_union, - [62726] = 4, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(3783), 1, - anon_sym_LBRACE, - STATE(1343), 1, - sym_type_arguments, + [62528] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4987), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [62538] = 4, + ACTIONS(4989), 1, + anon_sym_RPAREN, + ACTIONS(4991), 1, + anon_sym_COMMA, + STATE(2050), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62740] = 3, - ACTIONS(4080), 1, + [62552] = 3, + ACTIONS(4075), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4992), 2, + ACTIONS(4989), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - [62752] = 4, - ACTIONS(3851), 1, - anon_sym_LBRACE, + [62564] = 4, + ACTIONS(4057), 1, + anon_sym_RBRACE, ACTIONS(4994), 1, + anon_sym_COMMA, + STATE(1937), 1, + aux_sym_struct_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62578] = 4, + ACTIONS(3840), 1, + anon_sym_LBRACE, + ACTIONS(4996), 1, anon_sym_SEMI, - STATE(862), 1, + STATE(888), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62766] = 2, + [62592] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2371), 3, + ACTIONS(4998), 3, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_RBRACE, - [62776] = 4, - ACTIONS(4996), 1, anon_sym_COMMA, - ACTIONS(4999), 1, - anon_sym_GT, - STATE(2059), 1, - aux_sym_for_lifetimes_repeat1, + [62602] = 4, + ACTIONS(4049), 1, + anon_sym_RBRACE, + ACTIONS(5000), 1, + anon_sym_COMMA, + STATE(1937), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62790] = 4, - ACTIONS(4096), 1, - anon_sym_LBRACE, - ACTIONS(5001), 1, - anon_sym_SEMI, - STATE(936), 1, - sym_block, + [62616] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62804] = 2, + ACTIONS(5002), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [62626] = 3, + ACTIONS(5006), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5003), 3, - anon_sym_SEMI, + ACTIONS(5004), 2, anon_sym_RBRACE, anon_sym_COMMA, - [62814] = 4, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(5005), 1, - anon_sym_SEMI, - STATE(475), 1, - sym_declaration_list, + [62638] = 4, + ACTIONS(880), 1, + anon_sym_GT, + ACTIONS(5008), 1, + anon_sym_COMMA, + STATE(1932), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62828] = 4, - ACTIONS(4072), 1, - anon_sym_LBRACE, - ACTIONS(5007), 1, - anon_sym_SEMI, - STATE(399), 1, - sym_block, + [62652] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62842] = 4, - ACTIONS(756), 1, - anon_sym_RPAREN, - ACTIONS(4287), 1, + ACTIONS(5010), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1976), 1, - aux_sym_parameters_repeat1, + [62662] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62856] = 4, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(5009), 1, - anon_sym_GT, - STATE(2158), 1, - sym_lifetime, + ACTIONS(5012), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [62672] = 4, + ACTIONS(2401), 1, + anon_sym_RPAREN, + ACTIONS(5014), 1, + anon_sym_COMMA, + STATE(1806), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62870] = 4, - ACTIONS(3304), 1, + [62686] = 4, + ACTIONS(4081), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, - sym_identifier, - STATE(2022), 1, - sym_use_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62884] = 4, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(5013), 1, + ACTIONS(5016), 1, anon_sym_SEMI, - STATE(2464), 1, - sym_where_clause, + STATE(364), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62898] = 4, - ACTIONS(4254), 1, - anon_sym_PIPE, - ACTIONS(5015), 1, - anon_sym_EQ_GT, - ACTIONS(5017), 1, - anon_sym_if, + [62700] = 4, + ACTIONS(4069), 1, + anon_sym_LBRACE, + ACTIONS(5018), 1, + anon_sym_SEMI, + STATE(992), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62912] = 4, - ACTIONS(756), 1, + [62714] = 4, + ACTIONS(762), 1, anon_sym_RPAREN, - ACTIONS(4287), 1, + ACTIONS(4292), 1, anon_sym_COMMA, - STATE(1864), 1, + STATE(1995), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62926] = 4, - ACTIONS(3356), 1, - anon_sym_EQ_GT, - ACTIONS(5019), 1, - anon_sym_AMP_AMP, - STATE(2070), 1, - aux_sym_let_chain_repeat1, + [62728] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4106), 1, + sym_identifier, + STATE(2372), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62940] = 4, - ACTIONS(768), 1, + [62742] = 4, + ACTIONS(762), 1, anon_sym_RPAREN, - ACTIONS(4344), 1, + ACTIONS(4292), 1, anon_sym_COMMA, - STATE(1941), 1, + STATE(1946), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62954] = 4, - ACTIONS(4080), 1, + [62756] = 4, + ACTIONS(3788), 1, + anon_sym_LBRACE, + ACTIONS(5020), 1, + anon_sym_SEMI, + STATE(368), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62770] = 4, + ACTIONS(4075), 1, anon_sym_PLUS, ACTIONS(5022), 1, anon_sym_SEMI, @@ -124478,1711 +124336,1701 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62968] = 4, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(5026), 1, - anon_sym_as, - ACTIONS(5028), 1, - anon_sym_GT, + [62784] = 4, + ACTIONS(766), 1, + anon_sym_RPAREN, + ACTIONS(4281), 1, + anon_sym_COMMA, + STATE(1943), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62982] = 4, - ACTIONS(4600), 1, + [62798] = 4, + ACTIONS(766), 1, anon_sym_RPAREN, - ACTIONS(5030), 1, + ACTIONS(4281), 1, anon_sym_COMMA, - STATE(2074), 1, - aux_sym_tuple_type_repeat1, + STATE(1946), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62996] = 4, - ACTIONS(5033), 1, - anon_sym_COMMA, - ACTIONS(5036), 1, - anon_sym_GT, - STATE(2075), 1, - aux_sym_type_arguments_repeat1, + [62812] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63010] = 4, - ACTIONS(3448), 1, - anon_sym_LT2, - ACTIONS(4177), 1, - sym_identifier, - STATE(2499), 1, - sym_type_arguments, + ACTIONS(5026), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + [62822] = 4, + ACTIONS(5028), 1, + anon_sym_for, + ACTIONS(5030), 1, + anon_sym_loop, + ACTIONS(5032), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63024] = 4, - ACTIONS(5038), 1, + [62836] = 4, + ACTIONS(5034), 1, anon_sym_RBRACE, - ACTIONS(5040), 1, + ACTIONS(5036), 1, anon_sym_COMMA, - STATE(2081), 1, + STATE(2084), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63038] = 3, - ACTIONS(2483), 1, - anon_sym_PLUS, + [62850] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5036), 2, + ACTIONS(5038), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT, - [63050] = 4, - ACTIONS(3809), 1, - anon_sym_LT, - ACTIONS(5042), 1, - anon_sym_EQ, - STATE(2547), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63064] = 4, - ACTIONS(3847), 1, + [62860] = 4, + ACTIONS(3842), 1, anon_sym_RBRACE, - ACTIONS(5044), 1, + ACTIONS(5040), 1, anon_sym_COMMA, - STATE(1980), 1, + STATE(1958), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63078] = 4, - ACTIONS(3847), 1, + [62874] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4106), 1, + sym_identifier, + STATE(2374), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62888] = 4, + ACTIONS(3842), 1, anon_sym_RBRACE, - ACTIONS(5044), 1, + ACTIONS(5040), 1, anon_sym_COMMA, - STATE(1890), 1, + STATE(1960), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63092] = 3, - ACTIONS(4080), 1, - anon_sym_PLUS, + [62902] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5036), 2, + ACTIONS(5042), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [63104] = 4, - ACTIONS(4334), 1, + [62912] = 3, + ACTIONS(5046), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5044), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62924] = 4, + ACTIONS(4251), 1, anon_sym_RPAREN, - ACTIONS(4336), 1, + ACTIONS(4253), 1, anon_sym_COMMA, - STATE(2069), 1, + STATE(2066), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63118] = 4, - ACTIONS(4426), 1, - anon_sym_COMMA, - ACTIONS(5046), 1, - anon_sym_PIPE, - STATE(1944), 1, - aux_sym_closure_parameters_repeat1, + [62938] = 4, + ACTIONS(2560), 1, + anon_sym_LT2, + ACTIONS(5048), 1, + sym_identifier, + STATE(793), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63132] = 3, - ACTIONS(4080), 1, - anon_sym_PLUS, + [62952] = 4, + ACTIONS(3814), 1, + anon_sym_RBRACE, + ACTIONS(5050), 1, + anon_sym_COMMA, + STATE(2005), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5048), 2, - anon_sym_COMMA, - anon_sym_GT, - [63144] = 4, - ACTIONS(4096), 1, + [62966] = 4, + ACTIONS(4069), 1, anon_sym_LBRACE, - ACTIONS(5050), 1, + ACTIONS(5052), 1, anon_sym_SEMI, - STATE(878), 1, + STATE(873), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63158] = 2, + [62980] = 4, + ACTIONS(3814), 1, + anon_sym_RBRACE, + ACTIONS(5050), 1, + anon_sym_COMMA, + STATE(1960), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4384), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [63168] = 3, + [62994] = 4, ACTIONS(5054), 1, - anon_sym_COLON, + sym_identifier, + ACTIONS(5056), 1, + anon_sym_await, + ACTIONS(5058), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5052), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63180] = 4, - ACTIONS(4391), 1, + [63008] = 4, + ACTIONS(4407), 1, anon_sym_COMMA, - ACTIONS(4393), 1, + ACTIONS(4409), 1, anon_sym_GT, - STATE(2053), 1, + STATE(2058), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63194] = 3, - ACTIONS(3173), 1, - anon_sym_COLON_COLON, + [63022] = 4, + ACTIONS(5060), 1, + sym_identifier, + ACTIONS(5062), 1, + anon_sym_ref, + ACTIONS(5064), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5056), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63206] = 4, - ACTIONS(5058), 1, - anon_sym_RBRACE, - ACTIONS(5060), 1, + [63036] = 3, + ACTIONS(4339), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5066), 2, anon_sym_COMMA, - STATE(1938), 1, - aux_sym_field_initializer_list_repeat1, + anon_sym_PIPE, + [63048] = 4, + ACTIONS(3249), 1, + anon_sym_LBRACE, + ACTIONS(5068), 1, + sym_identifier, + STATE(1933), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63220] = 4, - ACTIONS(2516), 1, + [63062] = 4, + ACTIONS(2518), 1, anon_sym_RPAREN, - ACTIONS(5062), 1, + ACTIONS(5070), 1, anon_sym_COMMA, - STATE(2074), 1, + STATE(2050), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63234] = 4, - ACTIONS(5064), 1, - anon_sym_RBRACE, + [63076] = 4, ACTIONS(5066), 1, + anon_sym_PIPE, + ACTIONS(5072), 1, anon_sym_COMMA, - STATE(2093), 1, - aux_sym_use_list_repeat1, + STATE(2091), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63248] = 4, - ACTIONS(3843), 1, + [63090] = 4, + ACTIONS(3872), 1, anon_sym_GT, - ACTIONS(5069), 1, + ACTIONS(5075), 1, anon_sym_COMMA, - STATE(1897), 1, + STATE(2040), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63262] = 3, - ACTIONS(4080), 1, + [63104] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4075), 1, anon_sym_PLUS, + STATE(1009), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4374), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63274] = 4, - ACTIONS(3841), 1, + [63118] = 4, + ACTIONS(3870), 1, anon_sym_GT, - ACTIONS(5071), 1, + ACTIONS(5077), 1, anon_sym_COMMA, - STATE(1897), 1, + STATE(2040), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63288] = 4, - ACTIONS(5073), 1, - sym_identifier, - ACTIONS(5075), 1, - anon_sym_ref, - ACTIONS(5077), 1, - sym_mutable_specifier, + [63132] = 4, + ACTIONS(3846), 1, + anon_sym_RBRACE, + ACTIONS(5079), 1, + anon_sym_COMMA, + STATE(1996), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63302] = 4, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(5079), 1, - anon_sym_SEMI, - STATE(888), 1, - sym_declaration_list, + [63146] = 4, + ACTIONS(396), 1, + anon_sym_RPAREN, + ACTIONS(3185), 1, + anon_sym_COMMA, + STATE(1977), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63316] = 4, - ACTIONS(4080), 1, - anon_sym_PLUS, + [63160] = 4, + ACTIONS(3840), 1, + anon_sym_LBRACE, ACTIONS(5081), 1, anon_sym_SEMI, - ACTIONS(5083), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63330] = 4, - ACTIONS(3587), 1, - anon_sym_COLON_COLON, - ACTIONS(3928), 1, - anon_sym_BANG, - ACTIONS(5085), 1, - sym_identifier, + STATE(860), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63344] = 4, - ACTIONS(4072), 1, - anon_sym_LBRACE, - ACTIONS(5087), 1, + [63174] = 4, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(5083), 1, anon_sym_SEMI, - STATE(305), 1, - sym_block, + STATE(2417), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63358] = 4, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(5089), 1, - anon_sym_SEMI, - ACTIONS(5091), 1, - anon_sym_EQ, + [63188] = 3, + ACTIONS(5087), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63372] = 4, - ACTIONS(5093), 1, + ACTIONS(5085), 2, anon_sym_RBRACE, - ACTIONS(5095), 1, anon_sym_COMMA, - STATE(2018), 1, - aux_sym_field_declaration_list_repeat1, + [63200] = 4, + ACTIONS(3840), 1, + anon_sym_LBRACE, + ACTIONS(5089), 1, + anon_sym_SEMI, + STATE(835), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63386] = 4, - ACTIONS(3807), 1, + [63214] = 4, + ACTIONS(3804), 1, anon_sym_where, - ACTIONS(5097), 1, + ACTIONS(5091), 1, anon_sym_SEMI, - STATE(2500), 1, + STATE(2507), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63400] = 4, - ACTIONS(2602), 1, - anon_sym_LBRACE, - ACTIONS(5099), 1, - anon_sym_COLON_COLON, - STATE(1102), 1, - sym_field_initializer_list, + [63228] = 4, + ACTIONS(2560), 1, + anon_sym_LT2, + ACTIONS(5048), 1, + sym_identifier, + STATE(796), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63414] = 4, - ACTIONS(5101), 1, - anon_sym_RBRACE, - ACTIONS(5103), 1, - anon_sym_COMMA, - STATE(1964), 1, - aux_sym_field_declaration_list_repeat1, + [63242] = 4, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(5093), 1, + anon_sym_as, + ACTIONS(5095), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63428] = 4, - ACTIONS(3851), 1, - anon_sym_LBRACE, - ACTIONS(5105), 1, + [63256] = 4, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(5097), 1, anon_sym_SEMI, - STATE(911), 1, - sym_declaration_list, + ACTIONS(5099), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63442] = 3, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, + [63270] = 4, + ACTIONS(3804), 1, + anon_sym_where, + ACTIONS(5101), 1, + anon_sym_SEMI, + STATE(2423), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3446), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [63454] = 4, - ACTIONS(3799), 1, - anon_sym_LBRACE, - ACTIONS(5107), 1, - anon_sym_SEMI, - STATE(269), 1, - sym_declaration_list, + [63284] = 4, + ACTIONS(5103), 1, + anon_sym_RBRACE, + ACTIONS(5105), 1, + anon_sym_COMMA, + STATE(2030), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63468] = 4, + [63298] = 3, + ACTIONS(5107), 1, + anon_sym_EQ_GT, ACTIONS(5109), 1, - sym_identifier, - ACTIONS(5111), 1, - anon_sym_ref, - ACTIONS(5113), 1, - sym_mutable_specifier, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63482] = 4, - ACTIONS(768), 1, + [63309] = 3, + ACTIONS(3578), 1, + anon_sym_COLON_COLON, + ACTIONS(5111), 1, anon_sym_RPAREN, - ACTIONS(4344), 1, - anon_sym_COMMA, - STATE(1864), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63496] = 4, - ACTIONS(3807), 1, - anon_sym_where, - ACTIONS(5115), 1, - anon_sym_SEMI, - STATE(2482), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63510] = 4, - ACTIONS(5117), 1, - anon_sym_RBRACE, - ACTIONS(5119), 1, - anon_sym_COMMA, - STATE(2113), 1, - aux_sym_struct_pattern_repeat1, + [63320] = 3, + ACTIONS(4059), 1, + anon_sym_COLON_COLON, + ACTIONS(5113), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63524] = 4, - ACTIONS(3809), 1, - anon_sym_LT, - ACTIONS(5122), 1, - anon_sym_EQ, - STATE(2451), 1, - sym_type_parameters, + [63331] = 3, + ACTIONS(4047), 1, + anon_sym_COLON_COLON, + ACTIONS(5113), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63538] = 3, - ACTIONS(4030), 1, - anon_sym_RBRACE, - ACTIONS(5124), 1, - anon_sym_SEMI, + [63342] = 3, + ACTIONS(4041), 1, + anon_sym_COLON_COLON, + ACTIONS(5113), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63549] = 3, - ACTIONS(2602), 1, - anon_sym_LBRACE, - STATE(1102), 1, - sym_field_initializer_list, + [63353] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1645), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63560] = 3, - ACTIONS(3805), 1, + [63364] = 3, + ACTIONS(3802), 1, anon_sym_LBRACE, - STATE(900), 1, + STATE(848), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63571] = 3, - ACTIONS(3851), 1, + [63375] = 3, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(901), 1, + STATE(847), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63582] = 3, - ACTIONS(3851), 1, + [63386] = 3, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(902), 1, + STATE(846), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63593] = 3, - ACTIONS(5126), 1, - sym_identifier, - ACTIONS(5128), 1, - sym_mutable_specifier, + [63397] = 3, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(407), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63604] = 3, - ACTIONS(4080), 1, + [63408] = 3, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(5130), 1, + ACTIONS(5115), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63615] = 3, - ACTIONS(5109), 1, - sym_identifier, - ACTIONS(5113), 1, - sym_mutable_specifier, + [63419] = 3, + ACTIONS(5107), 1, + anon_sym_LBRACE, + ACTIONS(5117), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63626] = 3, - ACTIONS(3805), 1, + [63430] = 3, + ACTIONS(3802), 1, anon_sym_LBRACE, - STATE(906), 1, + STATE(840), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63637] = 3, - ACTIONS(5132), 1, - anon_sym_LT, - STATE(707), 1, - sym_type_parameters, + [63441] = 3, + ACTIONS(5119), 1, + anon_sym_SEMI, + ACTIONS(5121), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63648] = 3, - ACTIONS(4254), 1, - anon_sym_PIPE, - ACTIONS(5134), 1, - anon_sym_in, + [63452] = 3, + ACTIONS(5119), 1, + anon_sym_SEMI, + ACTIONS(5123), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63659] = 3, - ACTIONS(3851), 1, + [63463] = 3, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(912), 1, + STATE(834), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63670] = 3, - ACTIONS(3587), 1, - anon_sym_COLON_COLON, - ACTIONS(5136), 1, - anon_sym_RPAREN, + [63474] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63681] = 3, - ACTIONS(4000), 1, - anon_sym_COLON_COLON, - ACTIONS(5138), 1, - anon_sym_RPAREN, + ACTIONS(5125), 2, + sym_identifier, + sym_metavariable, + [63483] = 3, + ACTIONS(3788), 1, + anon_sym_LBRACE, + STATE(443), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63692] = 3, - ACTIONS(4254), 1, - anon_sym_PIPE, - ACTIONS(5140), 1, - anon_sym_in, + [63494] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2429), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63703] = 3, - ACTIONS(3994), 1, - anon_sym_COLON_COLON, - ACTIONS(5138), 1, - anon_sym_RPAREN, + [63505] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1662), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63714] = 3, - ACTIONS(4136), 1, + [63516] = 3, + ACTIONS(4112), 1, anon_sym_LBRACE, - STATE(918), 1, + STATE(828), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63725] = 3, - ACTIONS(3992), 1, - anon_sym_COLON_COLON, - ACTIONS(5138), 1, - anon_sym_RPAREN, + [63527] = 3, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(404), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63736] = 3, - ACTIONS(2552), 1, - anon_sym_LPAREN, - STATE(807), 1, - sym_parameters, + [63538] = 3, + ACTIONS(5127), 1, + anon_sym_SEMI, + ACTIONS(5129), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63747] = 3, - ACTIONS(3805), 1, + [63549] = 3, + ACTIONS(3802), 1, anon_sym_LBRACE, - STATE(921), 1, + STATE(825), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63758] = 3, - ACTIONS(4254), 1, - anon_sym_PIPE, - ACTIONS(5142), 1, - anon_sym_in, + [63560] = 3, + ACTIONS(2552), 1, + anon_sym_LPAREN, + STATE(798), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63769] = 3, - ACTIONS(3805), 1, + [63571] = 3, + ACTIONS(3802), 1, anon_sym_LBRACE, - STATE(924), 1, + STATE(822), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63780] = 2, + [63582] = 3, + ACTIONS(4316), 1, + anon_sym_PIPE, + ACTIONS(5131), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4374), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63789] = 2, + [63593] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(62), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5144), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63798] = 3, - ACTIONS(5146), 1, + [63604] = 3, + ACTIONS(5133), 1, anon_sym_SEMI, - ACTIONS(5148), 1, + ACTIONS(5135), 1, anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63809] = 3, + [63615] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(874), 1, + STATE(818), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63820] = 3, + [63626] = 3, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(85), 1, + STATE(72), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63831] = 3, - ACTIONS(3815), 1, - anon_sym_LBRACE, - STATE(458), 1, - sym_field_declaration_list, + [63637] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63842] = 3, - ACTIONS(3992), 1, - anon_sym_COLON_COLON, - ACTIONS(5150), 1, - anon_sym_RPAREN, + ACTIONS(5066), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [63646] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63853] = 2, + [63657] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2392), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5152), 2, - sym_identifier, - sym_metavariable, - [63862] = 3, - ACTIONS(5124), 1, + [63668] = 3, + ACTIONS(5119), 1, anon_sym_SEMI, - ACTIONS(5154), 1, + ACTIONS(5139), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63873] = 3, - ACTIONS(3994), 1, + [63679] = 3, + ACTIONS(3511), 1, + anon_sym_BANG, + ACTIONS(3546), 1, anon_sym_COLON_COLON, - ACTIONS(5150), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63884] = 3, - ACTIONS(5124), 1, + [63690] = 3, + ACTIONS(5119), 1, anon_sym_SEMI, - ACTIONS(5156), 1, + ACTIONS(5141), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63895] = 3, - ACTIONS(3799), 1, - anon_sym_LBRACE, - STATE(450), 1, - sym_declaration_list, + [63701] = 3, + ACTIONS(5119), 1, + anon_sym_SEMI, + ACTIONS(5143), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63906] = 3, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(2158), 1, - sym_lifetime, + [63712] = 3, + ACTIONS(5119), 1, + anon_sym_SEMI, + ACTIONS(5145), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63917] = 3, - ACTIONS(4000), 1, - anon_sym_COLON_COLON, - ACTIONS(5150), 1, + [63723] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2389), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63734] = 3, + ACTIONS(5119), 1, + anon_sym_SEMI, + ACTIONS(5147), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63928] = 2, + [63745] = 3, + ACTIONS(5119), 1, + anon_sym_SEMI, + ACTIONS(5149), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5036), 2, - anon_sym_COMMA, - anon_sym_GT, - [63937] = 3, - ACTIONS(4136), 1, + [63756] = 3, + ACTIONS(4112), 1, anon_sym_LBRACE, - STATE(873), 1, + STATE(877), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63948] = 3, - ACTIONS(3799), 1, - anon_sym_LBRACE, - STATE(449), 1, - sym_declaration_list, + [63767] = 3, + ACTIONS(5060), 1, + sym_identifier, + ACTIONS(5064), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63959] = 3, - ACTIONS(4022), 1, + [63778] = 3, + ACTIONS(4005), 1, anon_sym_RBRACE, - ACTIONS(5124), 1, + ACTIONS(5119), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63970] = 3, - ACTIONS(3587), 1, - anon_sym_COLON_COLON, - ACTIONS(5158), 1, - anon_sym_RPAREN, + [63789] = 3, + ACTIONS(2560), 1, + anon_sym_LT2, + STATE(891), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63981] = 3, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(5160), 1, + [63800] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1664), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63811] = 3, + ACTIONS(3987), 1, + anon_sym_RPAREN, + ACTIONS(5119), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63992] = 2, + [63822] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5064), 2, - anon_sym_RBRACE, + ACTIONS(4174), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [64001] = 2, + [63831] = 3, + ACTIONS(4007), 1, + anon_sym_RBRACE, + ACTIONS(5119), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4999), 2, - anon_sym_COMMA, - anon_sym_GT, - [64010] = 3, + [63842] = 3, + ACTIONS(3439), 1, + anon_sym_BANG, + ACTIONS(5151), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63853] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(867), 1, + STATE(2380), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64021] = 2, + [63864] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(883), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5162), 2, - sym_identifier, - sym_metavariable, - [64030] = 3, - ACTIONS(3799), 1, + [63875] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(322), 1, - sym_declaration_list, + STATE(2325), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64041] = 3, - ACTIONS(3799), 1, + [63886] = 3, + ACTIONS(4199), 1, anon_sym_LBRACE, - STATE(321), 1, - sym_declaration_list, + STATE(413), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64052] = 3, - ACTIONS(5164), 1, + [63897] = 3, + ACTIONS(5153), 1, anon_sym_SEMI, - ACTIONS(5166), 1, + ACTIONS(5155), 1, anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64063] = 3, - ACTIONS(4254), 1, - anon_sym_PIPE, - ACTIONS(5168), 1, - anon_sym_in, + [63908] = 3, + ACTIONS(3802), 1, + anon_sym_LBRACE, + STATE(901), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64074] = 2, + [63919] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4971), 2, - anon_sym_RBRACE, + ACTIONS(4387), 2, anon_sym_COMMA, - [64083] = 3, - ACTIONS(3805), 1, - anon_sym_LBRACE, - STATE(853), 1, - sym_field_declaration_list, + anon_sym_GT, + [63928] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1357), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64094] = 3, - ACTIONS(284), 1, + [63939] = 3, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(2404), 1, - sym_block, + STATE(908), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64105] = 3, - ACTIONS(3851), 1, + [63950] = 3, + ACTIONS(3788), 1, anon_sym_LBRACE, - STATE(848), 1, + STATE(426), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64116] = 3, - ACTIONS(3805), 1, + [63961] = 3, + ACTIONS(3802), 1, anon_sym_LBRACE, - STATE(845), 1, + STATE(911), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64127] = 3, - ACTIONS(5170), 1, - anon_sym_LBRACK, - ACTIONS(5172), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64138] = 3, - ACTIONS(2552), 1, - anon_sym_LPAREN, - STATE(804), 1, - sym_parameters, + [63972] = 3, + ACTIONS(4015), 1, + anon_sym_RPAREN, + ACTIONS(5119), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64149] = 3, - ACTIONS(4254), 1, - anon_sym_PIPE, - ACTIONS(5174), 1, - anon_sym_EQ, + [63983] = 3, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(395), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64160] = 2, + [63994] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5176), 2, - sym_identifier, - sym_metavariable, - [64169] = 3, - ACTIONS(3815), 1, + ACTIONS(5157), 2, + anon_sym_const, + sym_mutable_specifier, + [64003] = 3, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(442), 1, + STATE(435), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64180] = 3, - ACTIONS(3452), 1, - anon_sym_LPAREN, - STATE(1359), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64191] = 3, - ACTIONS(3799), 1, + [64014] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(425), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64202] = 2, + STATE(2538), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5178), 2, - sym_identifier, - sym_metavariable, - [64211] = 3, - ACTIONS(15), 1, + [64025] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(83), 1, + STATE(2542), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64222] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2477), 1, - sym_block, + [64036] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1672), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64233] = 3, - ACTIONS(3851), 1, + [64047] = 3, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(970), 1, + STATE(986), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64244] = 3, - ACTIONS(4080), 1, + [64058] = 3, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(5180), 1, + ACTIONS(5159), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64255] = 3, + [64069] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(2467), 1, + STATE(2373), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64266] = 3, - ACTIONS(4136), 1, - anon_sym_LBRACE, - STATE(822), 1, - sym_enum_variant_list, + [64080] = 3, + ACTIONS(2552), 1, + anon_sym_LPAREN, + STATE(779), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64277] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(944), 1, - sym_block, + [64091] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(5161), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64288] = 3, - ACTIONS(3851), 1, + [64102] = 3, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(978), 1, + STATE(1000), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64299] = 3, - ACTIONS(3851), 1, + [64113] = 3, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(979), 1, + STATE(1001), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64310] = 3, - ACTIONS(3815), 1, + [64124] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(378), 1, - sym_field_declaration_list, + STATE(48), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64321] = 3, + [64135] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(2393), 1, + STATE(2455), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64332] = 3, - ACTIONS(284), 1, + [64146] = 3, + ACTIONS(3788), 1, anon_sym_LBRACE, - STATE(2398), 1, - sym_block, + STATE(444), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64343] = 3, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(5182), 1, - anon_sym_GT, + [64157] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1038), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64354] = 2, + [64168] = 3, + ACTIONS(4316), 1, + anon_sym_PIPE, + ACTIONS(5163), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5184), 2, - sym_identifier, - sym_metavariable, - [64363] = 3, - ACTIONS(4136), 1, + [64179] = 3, + ACTIONS(4112), 1, anon_sym_LBRACE, - STATE(989), 1, + STATE(1016), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64374] = 3, - ACTIONS(5186), 1, - anon_sym_LBRACK, - ACTIONS(5188), 1, - anon_sym_BANG, + [64190] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2370), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64385] = 2, + [64201] = 3, + ACTIONS(3351), 1, + anon_sym_LBRACE, + ACTIONS(5117), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4285), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64394] = 3, - ACTIONS(3805), 1, + [64212] = 3, + ACTIONS(3802), 1, anon_sym_LBRACE, - STATE(993), 1, + STATE(1020), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64405] = 3, - ACTIONS(4080), 1, + [64223] = 3, + ACTIONS(4075), 1, anon_sym_PLUS, - ACTIONS(5190), 1, + ACTIONS(5165), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64416] = 3, - ACTIONS(3805), 1, + [64234] = 3, + ACTIONS(3802), 1, anon_sym_LBRACE, - STATE(996), 1, + STATE(1030), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64427] = 3, - ACTIONS(3851), 1, + [64245] = 3, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(997), 1, + STATE(1034), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64438] = 3, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(5192), 1, - anon_sym_SEMI, + [64256] = 3, + ACTIONS(5167), 1, + anon_sym_LT, + STATE(743), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64267] = 3, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(450), 1, + sym_field_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64278] = 3, + ACTIONS(4316), 1, + anon_sym_PIPE, + ACTIONS(5169), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64289] = 3, + ACTIONS(4316), 1, + anon_sym_PIPE, + ACTIONS(5171), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64449] = 3, - ACTIONS(3799), 1, + [64300] = 3, + ACTIONS(3788), 1, anon_sym_LBRACE, - STATE(306), 1, + STATE(308), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64460] = 3, - ACTIONS(284), 1, + [64311] = 3, + ACTIONS(4112), 1, anon_sym_LBRACE, - STATE(945), 1, - sym_block, + STATE(964), 1, + sym_enum_variant_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64322] = 3, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1966), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64333] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1698), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64344] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(5173), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64471] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(93), 1, - sym_closure_parameters, + [64355] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1352), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64482] = 3, - ACTIONS(284), 1, + [64366] = 3, + ACTIONS(3788), 1, anon_sym_LBRACE, - STATE(2421), 1, - sym_block, + STATE(294), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64493] = 3, - ACTIONS(284), 1, + [64377] = 3, + ACTIONS(3788), 1, anon_sym_LBRACE, - STATE(2422), 1, - sym_block, + STATE(292), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64504] = 2, + [64388] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4762), 2, + ACTIONS(4889), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_PIPE, - [64513] = 3, - ACTIONS(3452), 1, - anon_sym_LPAREN, - STATE(1651), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64524] = 3, - ACTIONS(5194), 1, - sym_identifier, - ACTIONS(5196), 1, - sym_mutable_specifier, + [64397] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64535] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2375), 1, - sym_block, + ACTIONS(5175), 2, + sym_float_literal, + sym_integer_literal, + [64406] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64546] = 3, + ACTIONS(4872), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64415] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(2448), 1, + STATE(2383), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64557] = 3, - ACTIONS(284), 1, + [64426] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(2450), 1, + STATE(84), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64568] = 3, - ACTIONS(4144), 1, - anon_sym_LBRACE, - STATE(346), 1, - sym_enum_variant_list, + [64437] = 3, + ACTIONS(4041), 1, + anon_sym_COLON_COLON, + ACTIONS(5177), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64579] = 3, - ACTIONS(4144), 1, + [64448] = 3, + ACTIONS(4199), 1, anon_sym_LBRACE, - STATE(396), 1, + STATE(282), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64590] = 3, - ACTIONS(2552), 1, - anon_sym_LPAREN, - STATE(790), 1, - sym_parameters, + [64459] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64601] = 3, - ACTIONS(5124), 1, - anon_sym_SEMI, - ACTIONS(5198), 1, + ACTIONS(5179), 2, + sym_identifier, + sym_metavariable, + [64468] = 3, + ACTIONS(4047), 1, + anon_sym_COLON_COLON, + ACTIONS(5177), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64612] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5200), 2, - anon_sym_const, - sym_mutable_specifier, - [64621] = 3, - ACTIONS(5124), 1, - anon_sym_SEMI, - ACTIONS(5202), 1, - anon_sym_RPAREN, + [64479] = 3, + ACTIONS(5181), 1, + anon_sym_BANG, + ACTIONS(5183), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64632] = 3, + [64490] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(795), 1, + STATE(974), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64643] = 3, - ACTIONS(3815), 1, + [64501] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(389), 1, - sym_field_declaration_list, + STATE(1045), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64654] = 3, - ACTIONS(3452), 1, - anon_sym_LPAREN, - STATE(1632), 1, - sym_parameters, + [64512] = 3, + ACTIONS(4059), 1, + anon_sym_COLON_COLON, + ACTIONS(5177), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64665] = 3, - ACTIONS(5204), 1, - anon_sym_LPAREN, - ACTIONS(5206), 1, - anon_sym_LBRACE, + [64523] = 3, + ACTIONS(3578), 1, + anon_sym_COLON_COLON, + ACTIONS(5185), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64676] = 3, - ACTIONS(5208), 1, - anon_sym_LPAREN, - ACTIONS(5210), 1, + [64534] = 3, + ACTIONS(3828), 1, anon_sym_LBRACE, + STATE(276), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64687] = 3, - ACTIONS(5212), 1, + [64545] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(5187), 1, anon_sym_SEMI, - ACTIONS(5214), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64698] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2518), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64709] = 3, - ACTIONS(3815), 1, + [64556] = 3, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(357), 1, + STATE(269), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64720] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(1006), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64731] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(814), 1, - sym_block, + [64567] = 3, + ACTIONS(2688), 1, + anon_sym_COLON_COLON, + ACTIONS(3928), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64742] = 3, - ACTIONS(284), 1, + [64578] = 3, + ACTIONS(3788), 1, anon_sym_LBRACE, - STATE(946), 1, - sym_block, + STATE(268), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64753] = 3, - ACTIONS(632), 1, + [64589] = 3, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(214), 1, - sym_block, + STATE(1101), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64764] = 3, - ACTIONS(854), 1, + [64600] = 3, + ACTIONS(5189), 1, + anon_sym_LPAREN, + ACTIONS(5191), 1, anon_sym_LBRACE, - STATE(1454), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64775] = 3, - ACTIONS(3851), 1, + [64611] = 3, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(1035), 1, - sym_declaration_list, + STATE(270), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64786] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(95), 1, - sym_closure_parameters, + [64622] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64797] = 2, + ACTIONS(5193), 2, + anon_sym_const, + sym_mutable_specifier, + [64631] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(5195), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5117), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64806] = 3, - ACTIONS(4254), 1, - anon_sym_PIPE, - ACTIONS(5216), 1, - anon_sym_in, + [64642] = 3, + ACTIONS(3840), 1, + anon_sym_LBRACE, + STATE(1113), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64817] = 3, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(5218), 1, - anon_sym_SEMI, + [64653] = 3, + ACTIONS(3840), 1, + anon_sym_LBRACE, + STATE(1115), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64828] = 3, - ACTIONS(3851), 1, + [64664] = 3, + ACTIONS(3788), 1, anon_sym_LBRACE, - STATE(1042), 1, + STATE(273), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64839] = 3, - ACTIONS(3851), 1, - anon_sym_LBRACE, - STATE(1043), 1, - sym_declaration_list, + [64675] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1616), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64850] = 3, - ACTIONS(15), 1, + [64686] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(80), 1, + STATE(2314), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64861] = 2, + [64697] = 3, + ACTIONS(2552), 1, + anon_sym_LPAREN, + STATE(802), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5220), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64870] = 3, - ACTIONS(4048), 1, - anon_sym_RPAREN, - ACTIONS(5124), 1, - anon_sym_SEMI, + [64708] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1363), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64881] = 3, - ACTIONS(4046), 1, - anon_sym_RPAREN, - ACTIONS(5124), 1, - anon_sym_SEMI, + [64719] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64892] = 3, - ACTIONS(4254), 1, - anon_sym_PIPE, - ACTIONS(4324), 1, - anon_sym_COLON, + ACTIONS(5197), 2, + sym_identifier, + sym_metavariable, + [64728] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64903] = 3, - ACTIONS(3917), 1, - anon_sym_COLON, - STATE(2048), 1, - sym_trait_bounds, + ACTIONS(5199), 2, + anon_sym_const, + sym_mutable_specifier, + [64737] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(801), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64914] = 3, + [64748] = 3, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(67), 1, + STATE(75), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64925] = 3, - ACTIONS(4776), 1, - sym_identifier, - ACTIONS(4780), 1, - sym_mutable_specifier, + [64759] = 3, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(302), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64936] = 3, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(5222), 1, - anon_sym_SEMI, + [64770] = 3, + ACTIONS(3351), 1, + anon_sym_EQ_GT, + ACTIONS(5109), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64947] = 3, - ACTIONS(3815), 1, - anon_sym_LBRACE, - STATE(364), 1, - sym_field_declaration_list, + [64781] = 3, + ACTIONS(5201), 1, + anon_sym_LBRACK, + ACTIONS(5203), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64958] = 3, - ACTIONS(3809), 1, - anon_sym_LT, - STATE(642), 1, - sym_type_parameters, + [64792] = 3, + ACTIONS(5205), 1, + anon_sym_LPAREN, + ACTIONS(5207), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64969] = 2, + [64803] = 3, + ACTIONS(4316), 1, + anon_sym_PIPE, + ACTIONS(5209), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5224), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64978] = 3, - ACTIONS(5124), 1, - anon_sym_SEMI, - ACTIONS(5226), 1, - anon_sym_RPAREN, + [64814] = 3, + ACTIONS(2590), 1, + anon_sym_LBRACE, + STATE(1082), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64989] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2555), 1, - sym_block, + [64825] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65000] = 3, - ACTIONS(5124), 1, - anon_sym_SEMI, - ACTIONS(5228), 1, + ACTIONS(4793), 2, anon_sym_RBRACE, + anon_sym_COMMA, + [64834] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(1024), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65011] = 3, - ACTIONS(4028), 1, - anon_sym_RBRACE, - ACTIONS(5124), 1, - anon_sym_SEMI, + [64845] = 3, + ACTIONS(632), 1, + anon_sym_LBRACE, + STATE(228), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65022] = 3, - ACTIONS(3452), 1, - anon_sym_LPAREN, - STATE(1656), 1, - sym_parameters, + [64856] = 3, + ACTIONS(858), 1, + anon_sym_LBRACE, + STATE(1455), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65033] = 2, + [64867] = 3, + ACTIONS(4031), 1, + anon_sym_COLON, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4790), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65042] = 3, - ACTIONS(4020), 1, - anon_sym_RPAREN, - ACTIONS(5124), 1, - anon_sym_SEMI, + [64878] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(98), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65053] = 3, - ACTIONS(4014), 1, - anon_sym_RBRACE, - ACTIONS(5124), 1, - anon_sym_SEMI, + [64889] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65064] = 3, - ACTIONS(3799), 1, + ACTIONS(5211), 2, + sym_identifier, + sym_metavariable, + [64898] = 3, + ACTIONS(3840), 1, anon_sym_LBRACE, - STATE(421), 1, + STATE(937), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65075] = 3, + [64909] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(2492), 1, + STATE(1039), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65086] = 3, - ACTIONS(3851), 1, + [64920] = 3, + ACTIONS(5213), 1, + anon_sym_LPAREN, + ACTIONS(5215), 1, anon_sym_LBRACE, - STATE(1075), 1, - sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65097] = 3, - ACTIONS(284), 1, + [64931] = 3, + ACTIONS(5217), 1, + anon_sym_LPAREN, + ACTIONS(5219), 1, anon_sym_LBRACE, - STATE(2493), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65108] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4450), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65117] = 3, - ACTIONS(4008), 1, - anon_sym_RPAREN, - ACTIONS(5124), 1, - anon_sym_SEMI, + [64942] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(90), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65128] = 3, - ACTIONS(3799), 1, - anon_sym_LBRACE, - STATE(369), 1, - sym_declaration_list, + [64953] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65139] = 3, - ACTIONS(2560), 1, - anon_sym_LT2, - STATE(941), 1, - sym_type_arguments, + ACTIONS(4478), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64962] = 3, + ACTIONS(5221), 1, + anon_sym_LBRACK, + ACTIONS(5223), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65150] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(66), 1, - sym_block, + [64973] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65161] = 3, - ACTIONS(2816), 1, - anon_sym_COLON, - ACTIONS(4080), 1, - anon_sym_PLUS, + ACTIONS(4273), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64982] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65172] = 3, - ACTIONS(5230), 1, - anon_sym_BANG, - ACTIONS(5232), 1, - anon_sym_COLON_COLON, + ACTIONS(4741), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64991] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65183] = 3, - ACTIONS(3799), 1, - anon_sym_LBRACE, - STATE(426), 1, - sym_declaration_list, + ACTIONS(4735), 2, + anon_sym_COMMA, + anon_sym_GT, + [65000] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65194] = 3, - ACTIONS(4144), 1, + ACTIONS(4724), 2, + anon_sym_COMMA, + anon_sym_GT, + [65009] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(404), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65205] = 3, - ACTIONS(3452), 1, - anon_sym_LPAREN, - STATE(1679), 1, - sym_parameters, + STATE(2556), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65216] = 3, + [65020] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(231), 1, + STATE(226), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65227] = 3, - ACTIONS(3799), 1, - anon_sym_LBRACE, - STATE(349), 1, - sym_declaration_list, + [65031] = 3, + ACTIONS(5225), 1, + anon_sym_SEMI, + ACTIONS(5227), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65238] = 3, + [65042] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(235), 1, + STATE(227), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65249] = 3, - ACTIONS(2792), 1, - anon_sym_COLON, - ACTIONS(4080), 1, - anon_sym_PLUS, + [65053] = 3, + ACTIONS(5229), 1, + sym_identifier, + ACTIONS(5231), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65260] = 3, - ACTIONS(2788), 1, - anon_sym_COLON, - ACTIONS(4080), 1, - anon_sym_PLUS, + [65064] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65271] = 3, + ACTIONS(5233), 2, + sym_identifier, + sym_metavariable, + [65073] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(219), 1, + STATE(234), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65282] = 3, - ACTIONS(5124), 1, - anon_sym_SEMI, - ACTIONS(5234), 1, - anon_sym_RPAREN, + [65084] = 3, + ACTIONS(4316), 1, + anon_sym_PIPE, + ACTIONS(5235), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65293] = 3, - ACTIONS(5124), 1, - anon_sym_SEMI, - ACTIONS(5236), 1, - anon_sym_RBRACE, + [65095] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65304] = 3, + ACTIONS(4671), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65104] = 3, ACTIONS(632), 1, anon_sym_LBRACE, STATE(210), 1, @@ -126190,1804 +126038,1806 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65315] = 3, - ACTIONS(2748), 1, - anon_sym_COLON_COLON, - ACTIONS(3955), 1, - anon_sym_BANG, + [65115] = 3, + ACTIONS(3788), 1, + anon_sym_LBRACE, + STATE(355), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65326] = 2, + [65126] = 3, + ACTIONS(4316), 1, + anon_sym_PIPE, + ACTIONS(5237), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5238), 2, - anon_sym_const, - sym_mutable_specifier, - [65335] = 3, + [65137] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(222), 1, + STATE(217), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65346] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4521), 2, - anon_sym_COMMA, - anon_sym_GT, - [65355] = 2, + [65148] = 3, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(5239), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5240), 2, - sym_float_literal, - sym_integer_literal, - [65364] = 2, + [65159] = 3, + ACTIONS(3788), 1, + anon_sym_LBRACE, + STATE(379), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5242), 2, - sym_identifier, - sym_metavariable, - [65373] = 3, - ACTIONS(4080), 1, - anon_sym_PLUS, - ACTIONS(5244), 1, - anon_sym_SEMI, + [65170] = 3, + ACTIONS(4316), 1, + anon_sym_PIPE, + ACTIONS(4339), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65384] = 3, - ACTIONS(2944), 1, + [65181] = 3, + ACTIONS(2792), 1, anon_sym_COLON, - ACTIONS(4080), 1, + ACTIONS(4075), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65395] = 3, - ACTIONS(3452), 1, - anon_sym_LPAREN, - STATE(1658), 1, - sym_parameters, + [65192] = 3, + ACTIONS(3788), 1, + anon_sym_LBRACE, + STATE(380), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65406] = 3, - ACTIONS(5246), 1, - sym_identifier, - ACTIONS(5248), 1, - sym_mutable_specifier, + [65203] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65417] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2346), 1, - sym_block, + ACTIONS(5241), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65212] = 3, + ACTIONS(4316), 1, + anon_sym_PIPE, + ACTIONS(5243), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65428] = 3, - ACTIONS(5250), 1, - anon_sym_LPAREN, - ACTIONS(5252), 1, - anon_sym_LBRACE, + [65223] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65439] = 3, - ACTIONS(5254), 1, - anon_sym_LPAREN, - ACTIONS(5256), 1, - anon_sym_LBRACE, + ACTIONS(5245), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65232] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65450] = 3, - ACTIONS(3581), 1, + ACTIONS(4385), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65241] = 3, + ACTIONS(3586), 1, anon_sym_COLON_COLON, - ACTIONS(5258), 1, + ACTIONS(5247), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65461] = 3, - ACTIONS(3442), 1, - anon_sym_BANG, - ACTIONS(5260), 1, - anon_sym_COLON_COLON, + [65252] = 3, + ACTIONS(2840), 1, + anon_sym_COLON, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65472] = 3, - ACTIONS(3593), 1, + [65263] = 3, + ACTIONS(3592), 1, anon_sym_COLON_COLON, - ACTIONS(5258), 1, + ACTIONS(5247), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65483] = 3, + [65274] = 3, + ACTIONS(2848), 1, + anon_sym_COLON, + ACTIONS(4075), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65285] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(229), 1, + STATE(219), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65494] = 3, - ACTIONS(5262), 1, - anon_sym_SEMI, - ACTIONS(5264), 1, - anon_sym_as, + [65296] = 3, + ACTIONS(4199), 1, + anon_sym_LBRACE, + STATE(420), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65505] = 3, - ACTIONS(4254), 1, - anon_sym_PIPE, - ACTIONS(5266), 1, - anon_sym_in, + [65307] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2555), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65516] = 3, - ACTIONS(4024), 1, - anon_sym_COLON, - ACTIONS(4080), 1, - anon_sym_PLUS, + [65318] = 3, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(2265), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65527] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(49), 1, - sym_block, + [65329] = 3, + ACTIONS(3916), 1, + anon_sym_COLON, + STATE(2074), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65538] = 2, + [65340] = 3, + ACTIONS(3806), 1, + anon_sym_LT, + STATE(690), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2355), 2, - anon_sym_COMMA, - anon_sym_GT, - [65547] = 2, + [65351] = 3, + ACTIONS(4617), 1, + sym_identifier, + ACTIONS(4621), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5268), 2, - anon_sym_const, - sym_mutable_specifier, - [65556] = 2, + [65362] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(63), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4120), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65565] = 3, + [65373] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(230), 1, + STATE(220), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65576] = 3, - ACTIONS(4254), 1, - anon_sym_PIPE, - ACTIONS(5270), 1, - anon_sym_EQ, + [65384] = 3, + ACTIONS(5249), 1, + sym_identifier, + ACTIONS(5251), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65587] = 3, - ACTIONS(3815), 1, + [65395] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(258), 1, - sym_field_declaration_list, + STATE(2561), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65598] = 3, - ACTIONS(3799), 1, - anon_sym_LBRACE, - STATE(271), 1, - sym_declaration_list, + [65406] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65609] = 3, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(2005), 1, - sym_lifetime, + ACTIONS(5253), 2, + sym_identifier, + sym_metavariable, + [65415] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65620] = 3, - ACTIONS(3815), 1, - anon_sym_LBRACE, - STATE(285), 1, - sym_field_declaration_list, + ACTIONS(5255), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65424] = 3, + ACTIONS(2880), 1, + anon_sym_COLON, + ACTIONS(4075), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65631] = 2, + [65435] = 3, + ACTIONS(3788), 1, + anon_sym_LBRACE, + STATE(438), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4620), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65640] = 3, - ACTIONS(3452), 1, - anon_sym_LPAREN, - STATE(1352), 1, - sym_parameters, + [65446] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2503), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65651] = 3, - ACTIONS(3799), 1, - anon_sym_LBRACE, - STATE(462), 1, - sym_declaration_list, + [65457] = 3, + ACTIONS(4009), 1, + anon_sym_RBRACE, + ACTIONS(5119), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65662] = 3, - ACTIONS(3452), 1, - anon_sym_LPAREN, - STATE(1627), 1, - sym_parameters, + [65468] = 3, + ACTIONS(4011), 1, + anon_sym_RPAREN, + ACTIONS(5119), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65673] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2526), 1, - sym_block, + [65479] = 3, + ACTIONS(4027), 1, + anon_sym_RBRACE, + ACTIONS(5119), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65684] = 3, - ACTIONS(4144), 1, - anon_sym_LBRACE, - STATE(315), 1, - sym_enum_variant_list, + [65490] = 3, + ACTIONS(4043), 1, + anon_sym_RPAREN, + ACTIONS(5119), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65695] = 3, - ACTIONS(3452), 1, - anon_sym_LPAREN, - STATE(1375), 1, - sym_parameters, + [65501] = 3, + ACTIONS(5257), 1, + sym_identifier, + ACTIONS(5259), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65706] = 3, - ACTIONS(3514), 1, - anon_sym_BANG, - ACTIONS(3536), 1, - anon_sym_COLON_COLON, + [65512] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65717] = 2, - ACTIONS(5272), 1, + ACTIONS(2433), 2, + anon_sym_COMMA, + anon_sym_GT, + [65521] = 2, + ACTIONS(5261), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65725] = 2, - ACTIONS(5124), 1, - anon_sym_SEMI, + [65529] = 2, + ACTIONS(5263), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65733] = 2, - ACTIONS(5274), 1, - sym_identifier, + [65537] = 2, + ACTIONS(4605), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65741] = 2, - ACTIONS(5276), 1, + [65545] = 2, + ACTIONS(5265), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65749] = 2, - ACTIONS(5278), 1, - sym_identifier, + [65553] = 2, + ACTIONS(5267), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65757] = 2, - ACTIONS(4757), 1, + [65561] = 2, + ACTIONS(4571), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65765] = 2, - ACTIONS(5280), 1, + [65569] = 2, + ACTIONS(5269), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65773] = 2, - ACTIONS(5282), 1, - anon_sym_RPAREN, + [65577] = 2, + ACTIONS(4009), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65781] = 2, - ACTIONS(5284), 1, + [65585] = 2, + ACTIONS(5271), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65789] = 2, - ACTIONS(5286), 1, + [65593] = 2, + ACTIONS(4027), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65797] = 2, - ACTIONS(5288), 1, + [65601] = 2, + ACTIONS(5273), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65805] = 2, - ACTIONS(5290), 1, - anon_sym_COLON, + [65609] = 2, + ACTIONS(5275), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65813] = 2, - ACTIONS(5292), 1, - anon_sym_LT, + [65617] = 2, + ACTIONS(3195), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65821] = 2, - ACTIONS(5294), 1, - anon_sym_fn, + [65625] = 2, + ACTIONS(3161), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65829] = 2, - ACTIONS(2367), 1, - anon_sym_EQ_GT, + [65633] = 2, + ACTIONS(5277), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65837] = 2, - ACTIONS(5296), 1, + [65641] = 2, + ACTIONS(5279), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65845] = 2, - ACTIONS(3536), 1, - anon_sym_COLON_COLON, + [65649] = 2, + ACTIONS(5281), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65853] = 2, - ACTIONS(5298), 1, - anon_sym_fn, + [65657] = 2, + ACTIONS(5283), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65861] = 2, - ACTIONS(5300), 1, - sym_identifier, + [65665] = 2, + ACTIONS(5285), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65869] = 2, - ACTIONS(5302), 1, - anon_sym_RPAREN, + [65673] = 2, + ACTIONS(5287), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65877] = 2, - ACTIONS(5304), 1, + [65681] = 2, + ACTIONS(5289), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65885] = 2, - ACTIONS(5306), 1, - anon_sym_RBRACE, + [65689] = 2, + ACTIONS(5291), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65893] = 2, - ACTIONS(4877), 1, + [65697] = 2, + ACTIONS(4623), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65901] = 2, - ACTIONS(5308), 1, + [65705] = 2, + ACTIONS(5293), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65909] = 2, - ACTIONS(5310), 1, + [65713] = 2, + ACTIONS(5295), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65917] = 2, - ACTIONS(5312), 1, + [65721] = 2, + ACTIONS(5297), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65925] = 2, - ACTIONS(5314), 1, + [65729] = 2, + ACTIONS(5299), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65933] = 2, - ACTIONS(2483), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65941] = 2, - ACTIONS(5316), 1, - anon_sym_SEMI, + [65737] = 2, + ACTIONS(5301), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65949] = 2, - ACTIONS(4709), 1, - anon_sym_RBRACE, + [65745] = 2, + ACTIONS(5303), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65957] = 2, - ACTIONS(5318), 1, - anon_sym_SEMI, + [65753] = 2, + ACTIONS(4255), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65965] = 2, - ACTIONS(5320), 1, + [65761] = 2, + ACTIONS(5305), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65973] = 2, - ACTIONS(5322), 1, - sym_identifier, + [65769] = 2, + ACTIONS(3578), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65981] = 2, - ACTIONS(5324), 1, - anon_sym_SEMI, + [65777] = 2, + ACTIONS(5307), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65989] = 2, - ACTIONS(5326), 1, + [65785] = 2, + ACTIONS(4633), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65997] = 2, - ACTIONS(5328), 1, + [65793] = 2, + ACTIONS(5309), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66005] = 2, - ACTIONS(4937), 1, + [65801] = 2, + ACTIONS(5311), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66013] = 2, - ACTIONS(5330), 1, + [65809] = 2, + ACTIONS(4659), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66021] = 2, - ACTIONS(5332), 1, + [65817] = 2, + ACTIONS(5313), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66029] = 2, - ACTIONS(5011), 1, + [65825] = 2, + ACTIONS(5315), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66037] = 2, - ACTIONS(5334), 1, + [65833] = 2, + ACTIONS(5317), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66045] = 2, - ACTIONS(5336), 1, + [65841] = 2, + ACTIONS(5319), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66053] = 2, - ACTIONS(5338), 1, - anon_sym_RBRACK, + [65849] = 2, + ACTIONS(4637), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66061] = 2, - ACTIONS(4587), 1, - sym_identifier, + [65857] = 2, + ACTIONS(4337), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66069] = 2, - ACTIONS(5340), 1, + [65865] = 2, + ACTIONS(5321), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66077] = 2, - ACTIONS(5342), 1, - sym_identifier, + [65873] = 2, + ACTIONS(4728), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66085] = 2, - ACTIONS(5344), 1, + [65881] = 2, + ACTIONS(5323), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66093] = 2, - ACTIONS(5346), 1, + [65889] = 2, + ACTIONS(5325), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66101] = 2, - ACTIONS(5348), 1, + [65897] = 2, + ACTIONS(5327), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66109] = 2, - ACTIONS(5350), 1, - anon_sym_COLON_COLON, + [65905] = 2, + ACTIONS(5329), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66117] = 2, - ACTIONS(3526), 1, - anon_sym_COLON_COLON, + [65913] = 2, + ACTIONS(5331), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66125] = 2, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, + [65921] = 2, + ACTIONS(5068), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66133] = 2, - ACTIONS(5058), 1, - anon_sym_RBRACE, + [65929] = 2, + ACTIONS(5333), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66141] = 2, - ACTIONS(3189), 1, - anon_sym_COLON_COLON, + [65937] = 2, + ACTIONS(5335), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66149] = 2, - ACTIONS(3587), 1, + [65945] = 2, + ACTIONS(3183), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66157] = 2, - ACTIONS(3532), 1, - anon_sym_COLON_COLON, + [65953] = 2, + ACTIONS(5337), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66165] = 2, - ACTIONS(5352), 1, - anon_sym_RBRACK, + [65961] = 2, + ACTIONS(3533), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66173] = 2, - ACTIONS(5354), 1, + [65969] = 2, + ACTIONS(5339), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66181] = 2, - ACTIONS(5356), 1, + [65977] = 2, + ACTIONS(5341), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66189] = 2, - ACTIONS(4592), 1, - sym_identifier, + [65985] = 2, + ACTIONS(2712), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66197] = 2, - ACTIONS(5358), 1, - anon_sym_COLON, + [65993] = 2, + ACTIONS(5343), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66205] = 2, - ACTIONS(5360), 1, - sym_identifier, + [66001] = 2, + ACTIONS(2700), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66213] = 2, - ACTIONS(5362), 1, - sym_identifier, + [66009] = 2, + ACTIONS(4771), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66221] = 2, - ACTIONS(5364), 1, - anon_sym_SEMI, + [66017] = 2, + ACTIONS(4777), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66229] = 2, - ACTIONS(3173), 1, + [66025] = 2, + ACTIONS(5345), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66033] = 2, + ACTIONS(3163), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66237] = 2, - ACTIONS(5366), 1, + [66041] = 2, + ACTIONS(5347), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66245] = 2, - ACTIONS(5368), 1, - sym_identifier, + [66049] = 2, + ACTIONS(5349), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66253] = 2, - ACTIONS(5370), 1, - sym_identifier, + [66057] = 2, + ACTIONS(5351), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66261] = 2, - ACTIONS(5372), 1, - sym_identifier, + [66065] = 2, + ACTIONS(5353), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66269] = 2, - ACTIONS(4553), 1, - anon_sym_RBRACK, + [66073] = 2, + ACTIONS(5355), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66277] = 2, - ACTIONS(3185), 1, - anon_sym_RPAREN, + [66081] = 2, + ACTIONS(5357), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66285] = 2, - ACTIONS(5374), 1, - sym_identifier, + [66089] = 2, + ACTIONS(5359), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66293] = 2, - ACTIONS(5376), 1, + [66097] = 2, + ACTIONS(5361), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66301] = 2, - ACTIONS(5378), 1, - sym_identifier, + [66105] = 2, + ACTIONS(5363), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66309] = 2, - ACTIONS(4517), 1, - anon_sym_RPAREN, + [66113] = 2, + ACTIONS(5365), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66317] = 2, - ACTIONS(5380), 1, + [66121] = 2, + ACTIONS(5367), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66325] = 2, - ACTIONS(626), 1, - anon_sym_RBRACK, + [66129] = 2, + ACTIONS(5369), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66333] = 2, - ACTIONS(4014), 1, - anon_sym_SEMI, + [66137] = 2, + ACTIONS(5371), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66341] = 2, - ACTIONS(5382), 1, - sym_identifier, + [66145] = 2, + ACTIONS(5373), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66349] = 2, - ACTIONS(5384), 1, + [66153] = 2, + ACTIONS(5375), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66357] = 2, - ACTIONS(5386), 1, - anon_sym_SEMI, + [66161] = 2, + ACTIONS(5377), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66365] = 2, - ACTIONS(5388), 1, + [66169] = 2, + ACTIONS(5379), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66373] = 2, - ACTIONS(5390), 1, + [66177] = 2, + ACTIONS(5381), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66381] = 2, - ACTIONS(5392), 1, + [66185] = 2, + ACTIONS(5383), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66389] = 2, - ACTIONS(5394), 1, + [66193] = 2, + ACTIONS(5385), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66397] = 2, - ACTIONS(5396), 1, + [66201] = 2, + ACTIONS(5387), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66405] = 2, - ACTIONS(5398), 1, - anon_sym_SEMI, + [66209] = 2, + ACTIONS(5389), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66413] = 2, - ACTIONS(5400), 1, - anon_sym_EQ_GT, + [66217] = 2, + ACTIONS(5391), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66421] = 2, - ACTIONS(5402), 1, - anon_sym_EQ_GT, + [66225] = 2, + ACTIONS(5393), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66429] = 2, - ACTIONS(4028), 1, - anon_sym_SEMI, + [66233] = 2, + ACTIONS(4906), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66437] = 2, - ACTIONS(5404), 1, - anon_sym_RBRACE, + [66241] = 2, + ACTIONS(5151), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66445] = 2, - ACTIONS(5406), 1, - sym_identifier, + [66249] = 2, + ACTIONS(3546), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66453] = 2, - ACTIONS(4177), 1, - sym_identifier, + [66257] = 2, + ACTIONS(5395), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66461] = 2, - ACTIONS(5408), 1, - anon_sym_fn, + [66265] = 2, + ACTIONS(5397), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66469] = 2, - ACTIONS(5236), 1, + [66273] = 2, + ACTIONS(5399), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66477] = 2, - ACTIONS(2748), 1, + [66281] = 2, + ACTIONS(2688), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66485] = 2, - ACTIONS(5410), 1, - anon_sym_SEMI, + [66289] = 2, + ACTIONS(5401), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66493] = 2, - ACTIONS(5232), 1, + [66297] = 2, + ACTIONS(5183), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66501] = 2, - ACTIONS(4629), 1, - anon_sym_RBRACE, + [66305] = 2, + ACTIONS(5403), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66509] = 2, - ACTIONS(5412), 1, + [66313] = 2, + ACTIONS(5405), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66517] = 2, - ACTIONS(3171), 1, + [66321] = 2, + ACTIONS(5407), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66525] = 2, - ACTIONS(5414), 1, + [66329] = 2, + ACTIONS(5409), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66533] = 2, - ACTIONS(5416), 1, - anon_sym_COLON, + [66337] = 2, + ACTIONS(4922), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66541] = 2, - ACTIONS(5418), 1, + [66345] = 2, + ACTIONS(5411), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66549] = 2, - ACTIONS(5420), 1, + [66353] = 2, + ACTIONS(5413), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66557] = 2, - ACTIONS(5422), 1, + [66361] = 2, + ACTIONS(5415), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66565] = 2, - ACTIONS(5424), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66573] = 2, - ACTIONS(5426), 1, - sym_identifier, + [66369] = 2, + ACTIONS(4419), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66581] = 2, - ACTIONS(5428), 1, - anon_sym_COLON, + [66377] = 2, + ACTIONS(4411), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66589] = 2, - ACTIONS(5430), 1, - sym_identifier, + [66385] = 2, + ACTIONS(5417), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66597] = 2, - ACTIONS(5432), 1, - sym_identifier, + [66393] = 2, + ACTIONS(5419), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66605] = 2, - ACTIONS(5434), 1, + [66401] = 2, + ACTIONS(5421), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66613] = 2, - ACTIONS(5436), 1, + [66409] = 2, + ACTIONS(5423), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66621] = 2, - ACTIONS(5438), 1, - sym_identifier, + [66417] = 2, + ACTIONS(624), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66629] = 2, - ACTIONS(5228), 1, - anon_sym_SEMI, + [66425] = 2, + ACTIONS(5425), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66637] = 2, - ACTIONS(5440), 1, + [66433] = 2, + ACTIONS(5427), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66645] = 2, - ACTIONS(5442), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66653] = 2, - ACTIONS(4281), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66661] = 2, - ACTIONS(5444), 1, + [66441] = 2, + ACTIONS(5429), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66669] = 2, - ACTIONS(2359), 1, - anon_sym_EQ_GT, + [66449] = 2, + ACTIONS(4553), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66677] = 2, - ACTIONS(5260), 1, - anon_sym_COLON_COLON, + [66457] = 2, + ACTIONS(5431), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66685] = 2, - ACTIONS(5446), 1, - anon_sym_SEMI, + [66465] = 2, + ACTIONS(5433), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66693] = 2, - ACTIONS(368), 1, + [66473] = 2, + ACTIONS(5435), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66701] = 2, - ACTIONS(5448), 1, + [66481] = 2, + ACTIONS(5437), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66709] = 2, - ACTIONS(5450), 1, + [66489] = 2, + ACTIONS(4106), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66717] = 2, - ACTIONS(5452), 1, - anon_sym_LBRACK, + [66497] = 2, + ACTIONS(5439), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66725] = 2, - ACTIONS(5454), 1, + [66505] = 2, + ACTIONS(5441), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66513] = 2, + ACTIONS(5443), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66733] = 2, - ACTIONS(5456), 1, + [66521] = 2, + ACTIONS(5445), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66741] = 2, - ACTIONS(5458), 1, - anon_sym_COLON, + [66529] = 2, + ACTIONS(5141), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66749] = 2, - ACTIONS(5460), 1, + [66537] = 2, + ACTIONS(5447), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66757] = 2, - ACTIONS(5462), 1, + [66545] = 2, + ACTIONS(5139), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66765] = 2, - ACTIONS(5464), 1, - sym_self, + [66553] = 2, + ACTIONS(5449), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66773] = 2, - ACTIONS(5466), 1, - anon_sym_SEMI, + [66561] = 2, + ACTIONS(5451), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66781] = 2, - ACTIONS(5468), 1, - anon_sym_EQ, + [66569] = 2, + ACTIONS(5048), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66789] = 2, - ACTIONS(5470), 1, - anon_sym_COLON, + [66577] = 2, + ACTIONS(5453), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66797] = 2, - ACTIONS(5472), 1, - sym_identifier, + [66585] = 2, + ACTIONS(5455), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66805] = 2, - ACTIONS(5474), 1, - anon_sym_COLON, + [66593] = 2, + ACTIONS(5095), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66813] = 2, - ACTIONS(5476), 1, - anon_sym_LBRACK, + [66601] = 2, + ACTIONS(5457), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66821] = 2, - ACTIONS(5478), 1, - anon_sym_EQ_GT, + [66609] = 2, + ACTIONS(5459), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66829] = 2, - ACTIONS(5480), 1, - sym_identifier, + [66617] = 2, + ACTIONS(5103), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66837] = 2, - ACTIONS(5482), 1, + [66625] = 2, + ACTIONS(5461), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66845] = 2, - ACTIONS(5484), 1, - sym_identifier, + [66633] = 2, + ACTIONS(5463), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66853] = 2, - ACTIONS(5486), 1, - anon_sym_RPAREN, + [66641] = 2, + ACTIONS(5465), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66861] = 2, - ACTIONS(5488), 1, - anon_sym_RPAREN, + [66649] = 2, + ACTIONS(5467), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66869] = 2, - ACTIONS(4322), 1, - anon_sym_RPAREN, + [66657] = 2, + ACTIONS(5469), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66877] = 2, - ACTIONS(3994), 1, + [66665] = 2, + ACTIONS(5471), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66885] = 2, - ACTIONS(5490), 1, + [66673] = 2, + ACTIONS(5473), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66893] = 2, - ACTIONS(2455), 1, - anon_sym_PLUS, + [66681] = 2, + ACTIONS(2359), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66901] = 2, - ACTIONS(4731), 1, - anon_sym_RBRACE, + [66689] = 2, + ACTIONS(5475), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66909] = 2, - ACTIONS(5492), 1, + [66697] = 2, + ACTIONS(5145), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66917] = 2, - ACTIONS(3462), 1, - anon_sym_fn, + [66705] = 2, + ACTIONS(5149), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66925] = 2, - ACTIONS(5494), 1, - ts_builtin_sym_end, + [66713] = 2, + ACTIONS(5477), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66721] = 2, + ACTIONS(5479), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66933] = 2, - ACTIONS(5496), 1, + [66729] = 2, + ACTIONS(5481), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66941] = 2, - ACTIONS(2968), 1, - anon_sym_COLON_COLON, + [66737] = 2, + ACTIONS(4251), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66949] = 2, - ACTIONS(5498), 1, + [66745] = 2, + ACTIONS(5034), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66753] = 2, + ACTIONS(5483), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66957] = 2, - ACTIONS(5500), 1, - anon_sym_SEMI, + [66761] = 2, + ACTIONS(5485), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66965] = 2, - ACTIONS(5502), 1, - anon_sym_EQ_GT, + [66769] = 2, + ACTIONS(4005), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66973] = 2, - ACTIONS(2684), 1, - anon_sym_COLON_COLON, + [66777] = 2, + ACTIONS(2449), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66981] = 2, - ACTIONS(5504), 1, - anon_sym_SEMI, + [66785] = 2, + ACTIONS(5487), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66989] = 2, - ACTIONS(5506), 1, + [66793] = 2, + ACTIONS(4007), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66997] = 2, - ACTIONS(5508), 1, + [66801] = 2, + ACTIONS(5489), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67005] = 2, - ACTIONS(5510), 1, + [66809] = 2, + ACTIONS(5491), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67013] = 2, - ACTIONS(5512), 1, - sym_identifier, + [66817] = 2, + ACTIONS(5493), 1, + anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67021] = 2, - ACTIONS(4883), 1, - sym_identifier, + [66825] = 2, + ACTIONS(5495), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67029] = 2, - ACTIONS(5514), 1, - anon_sym_SEMI, + [66833] = 2, + ACTIONS(5497), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67037] = 2, - ACTIONS(4857), 1, - sym_identifier, + [66841] = 2, + ACTIONS(5499), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67045] = 2, - ACTIONS(5516), 1, - sym_identifier, + [66849] = 2, + ACTIONS(5501), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67053] = 2, - ACTIONS(5518), 1, + [66857] = 2, + ACTIONS(5503), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67061] = 2, - ACTIONS(5520), 1, - sym_identifier, + [66865] = 2, + ACTIONS(5505), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67069] = 2, - ACTIONS(5522), 1, - anon_sym_SEMI, + [66873] = 2, + ACTIONS(5507), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67077] = 2, - ACTIONS(5524), 1, + [66881] = 2, + ACTIONS(5509), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67085] = 2, - ACTIONS(5526), 1, + [66889] = 2, + ACTIONS(5511), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67093] = 2, - ACTIONS(5528), 1, + [66897] = 2, + ACTIONS(4918), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67101] = 2, - ACTIONS(5530), 1, - anon_sym_RBRACK, + [66905] = 2, + ACTIONS(5513), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67109] = 2, - ACTIONS(5532), 1, - anon_sym_SEMI, + [66913] = 2, + ACTIONS(3523), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67117] = 2, - ACTIONS(5534), 1, - anon_sym_SEMI, + [66921] = 2, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67125] = 2, - ACTIONS(4721), 1, + [66929] = 2, + ACTIONS(5515), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67133] = 2, - ACTIONS(2726), 1, + [66937] = 2, + ACTIONS(2690), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67141] = 2, - ACTIONS(5536), 1, + [66945] = 2, + ACTIONS(5517), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67149] = 2, - ACTIONS(5538), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67157] = 2, - ACTIONS(5540), 1, + [66953] = 2, + ACTIONS(5519), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67165] = 2, - ACTIONS(2708), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67173] = 2, - ACTIONS(5542), 1, + [66961] = 2, + ACTIONS(5521), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67181] = 2, - ACTIONS(5544), 1, + [66969] = 2, + ACTIONS(5523), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67189] = 2, - ACTIONS(5546), 1, - anon_sym_RBRACK, + [66977] = 2, + ACTIONS(5525), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67197] = 2, - ACTIONS(4847), 1, - anon_sym_RBRACE, + [66985] = 2, + ACTIONS(5527), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67205] = 2, - ACTIONS(4919), 1, + [66993] = 2, + ACTIONS(4561), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67213] = 2, - ACTIONS(5548), 1, + [67001] = 2, + ACTIONS(5529), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67221] = 2, - ACTIONS(5550), 1, + [67009] = 2, + ACTIONS(374), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67229] = 2, - ACTIONS(4446), 1, + [67017] = 2, + ACTIONS(5531), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67025] = 2, + ACTIONS(4868), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67237] = 2, - ACTIONS(4076), 1, + [67033] = 2, + ACTIONS(5533), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67041] = 2, + ACTIONS(4227), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67245] = 2, - ACTIONS(5552), 1, + [67049] = 2, + ACTIONS(5535), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67253] = 2, - ACTIONS(5554), 1, - anon_sym_COLON, + [67057] = 2, + ACTIONS(5537), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67261] = 2, - ACTIONS(5556), 1, - anon_sym_LPAREN, + [67065] = 2, + ACTIONS(5539), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67269] = 2, - ACTIONS(4216), 1, + [67073] = 2, + ACTIONS(4160), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67277] = 2, - ACTIONS(5558), 1, + [67081] = 2, + ACTIONS(5541), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67285] = 2, - ACTIONS(5560), 1, + [67089] = 2, + ACTIONS(5543), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67293] = 2, - ACTIONS(4126), 1, + [67097] = 2, + ACTIONS(4207), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67301] = 2, - ACTIONS(5562), 1, + [67105] = 2, + ACTIONS(5545), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67309] = 2, - ACTIONS(5564), 1, - anon_sym_RBRACE, + [67113] = 2, + ACTIONS(2470), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67317] = 2, - ACTIONS(5566), 1, - anon_sym_SEMI, + [67121] = 2, + ACTIONS(2373), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67325] = 2, - ACTIONS(5568), 1, - anon_sym_RPAREN, + [67129] = 2, + ACTIONS(5547), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67333] = 2, - ACTIONS(5570), 1, + [67137] = 2, + ACTIONS(5549), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67341] = 2, - ACTIONS(5572), 1, + [67145] = 2, + ACTIONS(5551), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67349] = 2, - ACTIONS(5574), 1, + [67153] = 2, + ACTIONS(5553), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67357] = 2, - ACTIONS(5576), 1, + [67161] = 2, + ACTIONS(5555), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67365] = 2, - ACTIONS(5578), 1, - anon_sym_RBRACK, + [67169] = 2, + ACTIONS(5557), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67373] = 2, - ACTIONS(5580), 1, - anon_sym_SEMI, + [67177] = 2, + ACTIONS(5559), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67381] = 2, - ACTIONS(5582), 1, + [67185] = 2, + ACTIONS(5119), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67389] = 2, - ACTIONS(5584), 1, - anon_sym_RBRACE, + [67193] = 2, + ACTIONS(5561), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67397] = 2, - ACTIONS(5586), 1, + [67201] = 2, + ACTIONS(5563), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67405] = 2, - ACTIONS(5588), 1, + [67209] = 2, + ACTIONS(5565), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67413] = 2, - ACTIONS(5590), 1, - anon_sym_SEMI, + [67217] = 2, + ACTIONS(5567), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67421] = 2, - ACTIONS(5592), 1, - anon_sym_EQ_GT, + [67225] = 2, + ACTIONS(4047), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67429] = 2, - ACTIONS(4030), 1, - anon_sym_SEMI, + [67233] = 2, + ACTIONS(3485), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67437] = 2, - ACTIONS(5028), 1, - anon_sym_GT, + [67241] = 2, + ACTIONS(5569), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67445] = 2, - ACTIONS(4022), 1, - anon_sym_SEMI, + [67249] = 2, + ACTIONS(2904), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67453] = 2, - ACTIONS(5038), 1, - anon_sym_RBRACE, + [67257] = 2, + ACTIONS(5571), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67461] = 2, - ACTIONS(5594), 1, + [67265] = 2, + ACTIONS(5573), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67469] = 2, - ACTIONS(5596), 1, - anon_sym_SEMI, + [67273] = 2, + ACTIONS(5575), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67477] = 2, - ACTIONS(5598), 1, + [67281] = 2, + ACTIONS(5577), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67485] = 2, - ACTIONS(5600), 1, - anon_sym_SEMI, + [67289] = 2, + ACTIONS(5579), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67493] = 2, - ACTIONS(5602), 1, + [67297] = 2, + ACTIONS(5581), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67501] = 2, - ACTIONS(5156), 1, - anon_sym_SEMI, + [67305] = 2, + ACTIONS(5583), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67509] = 2, - ACTIONS(5154), 1, + [67313] = 2, + ACTIONS(5585), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67517] = 2, - ACTIONS(5604), 1, + [67321] = 2, + ACTIONS(5587), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67525] = 2, - ACTIONS(5606), 1, - anon_sym_COLON_COLON, + [67329] = 2, + ACTIONS(5589), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67533] = 2, - ACTIONS(5608), 1, - anon_sym_SEMI, + [67337] = 2, + ACTIONS(5591), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67541] = 2, - ACTIONS(5610), 1, + [67345] = 2, + ACTIONS(5593), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67549] = 2, - ACTIONS(5612), 1, + [67353] = 2, + ACTIONS(5595), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67557] = 2, - ACTIONS(5093), 1, - anon_sym_RBRACE, + [67361] = 2, + ACTIONS(5597), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67565] = 2, - ACTIONS(5614), 1, + [67369] = 2, + ACTIONS(5599), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67573] = 2, - ACTIONS(5616), 1, + [67377] = 2, + ACTIONS(5601), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67581] = 2, - ACTIONS(5618), 1, + [67385] = 2, + ACTIONS(5603), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67589] = 2, - ACTIONS(5620), 1, - anon_sym_RBRACK, + [67393] = 2, + ACTIONS(5605), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67597] = 2, - ACTIONS(5622), 1, - anon_sym_RBRACE, + [67401] = 2, + ACTIONS(5607), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67605] = 2, - ACTIONS(5624), 1, + [67409] = 2, + ACTIONS(5609), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67613] = 2, - ACTIONS(5626), 1, + [67417] = 2, + ACTIONS(5611), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67621] = 2, - ACTIONS(3486), 1, + [67425] = 2, + ACTIONS(3459), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67629] = 2, - ACTIONS(5628), 1, - anon_sym_SEMI, + [67433] = 2, + ACTIONS(5613), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67637] = 2, - ACTIONS(5630), 1, + [67441] = 2, + ACTIONS(5615), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67645] = 2, - ACTIONS(5632), 1, - anon_sym_COLON, + [67449] = 2, + ACTIONS(5617), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67653] = 2, - ACTIONS(5634), 1, - anon_sym_RPAREN, + [67457] = 2, + ACTIONS(5619), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67661] = 2, - ACTIONS(5636), 1, + [67465] = 2, + ACTIONS(5621), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67669] = 2, - ACTIONS(5638), 1, + [67473] = 2, + ACTIONS(5623), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67677] = 2, - ACTIONS(5640), 1, + [67481] = 2, + ACTIONS(5625), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67685] = 2, - ACTIONS(4334), 1, - anon_sym_RPAREN, + [67489] = 2, + ACTIONS(5627), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67693] = 2, - ACTIONS(5101), 1, - anon_sym_RBRACE, + [67497] = 2, + ACTIONS(5629), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67701] = 2, - ACTIONS(5642), 1, + [67505] = 2, + ACTIONS(5631), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67709] = 2, - ACTIONS(5644), 1, - anon_sym_COLON, + [67513] = 2, + ACTIONS(5633), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67717] = 2, - ACTIONS(5646), 1, + [67521] = 2, + ACTIONS(5635), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -128026,69 +127876,69 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(667)] = 3612, [SMALL_STATE(668)] = 3741, [SMALL_STATE(669)] = 3870, - [SMALL_STATE(670)] = 4001, - [SMALL_STATE(671)] = 4130, - [SMALL_STATE(672)] = 4259, - [SMALL_STATE(673)] = 4388, - [SMALL_STATE(674)] = 4517, - [SMALL_STATE(675)] = 4646, - [SMALL_STATE(676)] = 4775, - [SMALL_STATE(677)] = 4904, - [SMALL_STATE(678)] = 5033, - [SMALL_STATE(679)] = 5162, - [SMALL_STATE(680)] = 5291, - [SMALL_STATE(681)] = 5420, - [SMALL_STATE(682)] = 5549, - [SMALL_STATE(683)] = 5678, - [SMALL_STATE(684)] = 5807, - [SMALL_STATE(685)] = 5936, - [SMALL_STATE(686)] = 6065, - [SMALL_STATE(687)] = 6194, - [SMALL_STATE(688)] = 6323, - [SMALL_STATE(689)] = 6452, - [SMALL_STATE(690)] = 6581, - [SMALL_STATE(691)] = 6710, - [SMALL_STATE(692)] = 6839, - [SMALL_STATE(693)] = 6968, - [SMALL_STATE(694)] = 7097, - [SMALL_STATE(695)] = 7226, - [SMALL_STATE(696)] = 7355, - [SMALL_STATE(697)] = 7484, - [SMALL_STATE(698)] = 7613, - [SMALL_STATE(699)] = 7742, - [SMALL_STATE(700)] = 7871, - [SMALL_STATE(701)] = 7942, - [SMALL_STATE(702)] = 8071, - [SMALL_STATE(703)] = 8200, - [SMALL_STATE(704)] = 8329, - [SMALL_STATE(705)] = 8458, - [SMALL_STATE(706)] = 8587, - [SMALL_STATE(707)] = 8716, - [SMALL_STATE(708)] = 8845, - [SMALL_STATE(709)] = 8974, - [SMALL_STATE(710)] = 9103, - [SMALL_STATE(711)] = 9232, - [SMALL_STATE(712)] = 9361, - [SMALL_STATE(713)] = 9490, - [SMALL_STATE(714)] = 9619, - [SMALL_STATE(715)] = 9748, - [SMALL_STATE(716)] = 9877, - [SMALL_STATE(717)] = 10006, - [SMALL_STATE(718)] = 10135, - [SMALL_STATE(719)] = 10264, - [SMALL_STATE(720)] = 10393, - [SMALL_STATE(721)] = 10522, - [SMALL_STATE(722)] = 10651, - [SMALL_STATE(723)] = 10780, - [SMALL_STATE(724)] = 10909, - [SMALL_STATE(725)] = 11038, - [SMALL_STATE(726)] = 11167, - [SMALL_STATE(727)] = 11296, - [SMALL_STATE(728)] = 11425, - [SMALL_STATE(729)] = 11554, - [SMALL_STATE(730)] = 11683, - [SMALL_STATE(731)] = 11812, - [SMALL_STATE(732)] = 11941, + [SMALL_STATE(670)] = 3999, + [SMALL_STATE(671)] = 4128, + [SMALL_STATE(672)] = 4257, + [SMALL_STATE(673)] = 4386, + [SMALL_STATE(674)] = 4515, + [SMALL_STATE(675)] = 4644, + [SMALL_STATE(676)] = 4773, + [SMALL_STATE(677)] = 4902, + [SMALL_STATE(678)] = 5031, + [SMALL_STATE(679)] = 5160, + [SMALL_STATE(680)] = 5289, + [SMALL_STATE(681)] = 5418, + [SMALL_STATE(682)] = 5547, + [SMALL_STATE(683)] = 5676, + [SMALL_STATE(684)] = 5805, + [SMALL_STATE(685)] = 5934, + [SMALL_STATE(686)] = 6063, + [SMALL_STATE(687)] = 6192, + [SMALL_STATE(688)] = 6321, + [SMALL_STATE(689)] = 6450, + [SMALL_STATE(690)] = 6579, + [SMALL_STATE(691)] = 6708, + [SMALL_STATE(692)] = 6837, + [SMALL_STATE(693)] = 6966, + [SMALL_STATE(694)] = 7095, + [SMALL_STATE(695)] = 7224, + [SMALL_STATE(696)] = 7353, + [SMALL_STATE(697)] = 7482, + [SMALL_STATE(698)] = 7611, + [SMALL_STATE(699)] = 7740, + [SMALL_STATE(700)] = 7869, + [SMALL_STATE(701)] = 8000, + [SMALL_STATE(702)] = 8129, + [SMALL_STATE(703)] = 8258, + [SMALL_STATE(704)] = 8387, + [SMALL_STATE(705)] = 8516, + [SMALL_STATE(706)] = 8645, + [SMALL_STATE(707)] = 8774, + [SMALL_STATE(708)] = 8903, + [SMALL_STATE(709)] = 9032, + [SMALL_STATE(710)] = 9161, + [SMALL_STATE(711)] = 9290, + [SMALL_STATE(712)] = 9419, + [SMALL_STATE(713)] = 9548, + [SMALL_STATE(714)] = 9677, + [SMALL_STATE(715)] = 9806, + [SMALL_STATE(716)] = 9935, + [SMALL_STATE(717)] = 10064, + [SMALL_STATE(718)] = 10193, + [SMALL_STATE(719)] = 10322, + [SMALL_STATE(720)] = 10451, + [SMALL_STATE(721)] = 10580, + [SMALL_STATE(722)] = 10709, + [SMALL_STATE(723)] = 10838, + [SMALL_STATE(724)] = 10967, + [SMALL_STATE(725)] = 11096, + [SMALL_STATE(726)] = 11225, + [SMALL_STATE(727)] = 11354, + [SMALL_STATE(728)] = 11483, + [SMALL_STATE(729)] = 11612, + [SMALL_STATE(730)] = 11741, + [SMALL_STATE(731)] = 11870, + [SMALL_STATE(732)] = 11999, [SMALL_STATE(733)] = 12070, [SMALL_STATE(734)] = 12199, [SMALL_STATE(735)] = 12328, @@ -128115,52 +127965,52 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(756)] = 14470, [SMALL_STATE(757)] = 14531, [SMALL_STATE(758)] = 14596, - [SMALL_STATE(759)] = 14657, - [SMALL_STATE(760)] = 14722, - [SMALL_STATE(761)] = 14787, - [SMALL_STATE(762)] = 14848, + [SMALL_STATE(759)] = 14661, + [SMALL_STATE(760)] = 14726, + [SMALL_STATE(761)] = 14791, + [SMALL_STATE(762)] = 14852, [SMALL_STATE(763)] = 14913, [SMALL_STATE(764)] = 14969, - [SMALL_STATE(765)] = 15025, - [SMALL_STATE(766)] = 15083, - [SMALL_STATE(767)] = 15139, - [SMALL_STATE(768)] = 15199, - [SMALL_STATE(769)] = 15261, + [SMALL_STATE(765)] = 15027, + [SMALL_STATE(766)] = 15089, + [SMALL_STATE(767)] = 15147, + [SMALL_STATE(768)] = 15203, + [SMALL_STATE(769)] = 15259, [SMALL_STATE(770)] = 15317, - [SMALL_STATE(771)] = 15375, - [SMALL_STATE(772)] = 15431, - [SMALL_STATE(773)] = 15487, - [SMALL_STATE(774)] = 15545, + [SMALL_STATE(771)] = 15377, + [SMALL_STATE(772)] = 15433, + [SMALL_STATE(773)] = 15491, + [SMALL_STATE(774)] = 15547, [SMALL_STATE(775)] = 15603, [SMALL_STATE(776)] = 15658, [SMALL_STATE(777)] = 15713, - [SMALL_STATE(778)] = 15770, - [SMALL_STATE(779)] = 15827, - [SMALL_STATE(780)] = 15882, - [SMALL_STATE(781)] = 15941, - [SMALL_STATE(782)] = 15996, - [SMALL_STATE(783)] = 16051, - [SMALL_STATE(784)] = 16106, - [SMALL_STATE(785)] = 16161, - [SMALL_STATE(786)] = 16220, - [SMALL_STATE(787)] = 16277, - [SMALL_STATE(788)] = 16334, - [SMALL_STATE(789)] = 16393, + [SMALL_STATE(778)] = 15772, + [SMALL_STATE(779)] = 15829, + [SMALL_STATE(780)] = 15886, + [SMALL_STATE(781)] = 15945, + [SMALL_STATE(782)] = 16002, + [SMALL_STATE(783)] = 16057, + [SMALL_STATE(784)] = 16114, + [SMALL_STATE(785)] = 16169, + [SMALL_STATE(786)] = 16224, + [SMALL_STATE(787)] = 16281, + [SMALL_STATE(788)] = 16338, + [SMALL_STATE(789)] = 16395, [SMALL_STATE(790)] = 16450, [SMALL_STATE(791)] = 16507, - [SMALL_STATE(792)] = 16564, + [SMALL_STATE(792)] = 16562, [SMALL_STATE(793)] = 16621, - [SMALL_STATE(794)] = 16676, + [SMALL_STATE(794)] = 16678, [SMALL_STATE(795)] = 16733, - [SMALL_STATE(796)] = 16792, - [SMALL_STATE(797)] = 16847, - [SMALL_STATE(798)] = 16902, - [SMALL_STATE(799)] = 16959, - [SMALL_STATE(800)] = 17016, - [SMALL_STATE(801)] = 17071, + [SMALL_STATE(796)] = 16788, + [SMALL_STATE(797)] = 16845, + [SMALL_STATE(798)] = 16900, + [SMALL_STATE(799)] = 16957, + [SMALL_STATE(800)] = 17012, + [SMALL_STATE(801)] = 17067, [SMALL_STATE(802)] = 17126, [SMALL_STATE(803)] = 17183, - [SMALL_STATE(804)] = 17238, + [SMALL_STATE(804)] = 17240, [SMALL_STATE(805)] = 17295, [SMALL_STATE(806)] = 17352, [SMALL_STATE(807)] = 17407, @@ -128388,1543 +128238,1539 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1029)] = 29398, [SMALL_STATE(1030)] = 29452, [SMALL_STATE(1031)] = 29506, - [SMALL_STATE(1032)] = 29560, - [SMALL_STATE(1033)] = 29614, - [SMALL_STATE(1034)] = 29668, - [SMALL_STATE(1035)] = 29722, - [SMALL_STATE(1036)] = 29776, - [SMALL_STATE(1037)] = 29830, - [SMALL_STATE(1038)] = 29884, - [SMALL_STATE(1039)] = 29938, - [SMALL_STATE(1040)] = 29992, - [SMALL_STATE(1041)] = 30046, - [SMALL_STATE(1042)] = 30100, - [SMALL_STATE(1043)] = 30154, - [SMALL_STATE(1044)] = 30208, - [SMALL_STATE(1045)] = 30262, - [SMALL_STATE(1046)] = 30316, - [SMALL_STATE(1047)] = 30370, - [SMALL_STATE(1048)] = 30424, - [SMALL_STATE(1049)] = 30478, - [SMALL_STATE(1050)] = 30532, - [SMALL_STATE(1051)] = 30586, - [SMALL_STATE(1052)] = 30640, - [SMALL_STATE(1053)] = 30694, - [SMALL_STATE(1054)] = 30748, - [SMALL_STATE(1055)] = 30802, - [SMALL_STATE(1056)] = 30856, - [SMALL_STATE(1057)] = 30910, - [SMALL_STATE(1058)] = 30964, - [SMALL_STATE(1059)] = 31018, - [SMALL_STATE(1060)] = 31072, - [SMALL_STATE(1061)] = 31126, - [SMALL_STATE(1062)] = 31180, - [SMALL_STATE(1063)] = 31234, - [SMALL_STATE(1064)] = 31288, - [SMALL_STATE(1065)] = 31342, - [SMALL_STATE(1066)] = 31396, - [SMALL_STATE(1067)] = 31450, - [SMALL_STATE(1068)] = 31504, - [SMALL_STATE(1069)] = 31558, - [SMALL_STATE(1070)] = 31612, - [SMALL_STATE(1071)] = 31666, - [SMALL_STATE(1072)] = 31720, - [SMALL_STATE(1073)] = 31774, - [SMALL_STATE(1074)] = 31828, - [SMALL_STATE(1075)] = 31882, - [SMALL_STATE(1076)] = 31936, - [SMALL_STATE(1077)] = 31990, - [SMALL_STATE(1078)] = 32044, - [SMALL_STATE(1079)] = 32098, - [SMALL_STATE(1080)] = 32152, - [SMALL_STATE(1081)] = 32206, - [SMALL_STATE(1082)] = 32260, - [SMALL_STATE(1083)] = 32314, - [SMALL_STATE(1084)] = 32368, - [SMALL_STATE(1085)] = 32422, - [SMALL_STATE(1086)] = 32476, - [SMALL_STATE(1087)] = 32530, - [SMALL_STATE(1088)] = 32584, - [SMALL_STATE(1089)] = 32638, - [SMALL_STATE(1090)] = 32692, - [SMALL_STATE(1091)] = 32746, - [SMALL_STATE(1092)] = 32800, - [SMALL_STATE(1093)] = 32854, - [SMALL_STATE(1094)] = 32908, - [SMALL_STATE(1095)] = 32962, - [SMALL_STATE(1096)] = 33016, - [SMALL_STATE(1097)] = 33070, - [SMALL_STATE(1098)] = 33124, - [SMALL_STATE(1099)] = 33178, - [SMALL_STATE(1100)] = 33232, - [SMALL_STATE(1101)] = 33286, - [SMALL_STATE(1102)] = 33340, - [SMALL_STATE(1103)] = 33394, - [SMALL_STATE(1104)] = 33448, - [SMALL_STATE(1105)] = 33502, - [SMALL_STATE(1106)] = 33556, - [SMALL_STATE(1107)] = 33610, - [SMALL_STATE(1108)] = 33664, - [SMALL_STATE(1109)] = 33718, - [SMALL_STATE(1110)] = 33772, - [SMALL_STATE(1111)] = 33826, - [SMALL_STATE(1112)] = 33880, - [SMALL_STATE(1113)] = 33934, - [SMALL_STATE(1114)] = 33988, - [SMALL_STATE(1115)] = 34042, - [SMALL_STATE(1116)] = 34096, - [SMALL_STATE(1117)] = 34150, - [SMALL_STATE(1118)] = 34204, - [SMALL_STATE(1119)] = 34258, - [SMALL_STATE(1120)] = 34312, - [SMALL_STATE(1121)] = 34366, - [SMALL_STATE(1122)] = 34420, - [SMALL_STATE(1123)] = 34474, - [SMALL_STATE(1124)] = 34530, - [SMALL_STATE(1125)] = 34584, - [SMALL_STATE(1126)] = 34638, - [SMALL_STATE(1127)] = 34692, + [SMALL_STATE(1032)] = 29562, + [SMALL_STATE(1033)] = 29616, + [SMALL_STATE(1034)] = 29670, + [SMALL_STATE(1035)] = 29724, + [SMALL_STATE(1036)] = 29778, + [SMALL_STATE(1037)] = 29832, + [SMALL_STATE(1038)] = 29886, + [SMALL_STATE(1039)] = 29940, + [SMALL_STATE(1040)] = 29994, + [SMALL_STATE(1041)] = 30048, + [SMALL_STATE(1042)] = 30102, + [SMALL_STATE(1043)] = 30156, + [SMALL_STATE(1044)] = 30210, + [SMALL_STATE(1045)] = 30264, + [SMALL_STATE(1046)] = 30318, + [SMALL_STATE(1047)] = 30372, + [SMALL_STATE(1048)] = 30426, + [SMALL_STATE(1049)] = 30480, + [SMALL_STATE(1050)] = 30534, + [SMALL_STATE(1051)] = 30588, + [SMALL_STATE(1052)] = 30642, + [SMALL_STATE(1053)] = 30696, + [SMALL_STATE(1054)] = 30750, + [SMALL_STATE(1055)] = 30804, + [SMALL_STATE(1056)] = 30858, + [SMALL_STATE(1057)] = 30912, + [SMALL_STATE(1058)] = 30966, + [SMALL_STATE(1059)] = 31020, + [SMALL_STATE(1060)] = 31074, + [SMALL_STATE(1061)] = 31128, + [SMALL_STATE(1062)] = 31182, + [SMALL_STATE(1063)] = 31236, + [SMALL_STATE(1064)] = 31290, + [SMALL_STATE(1065)] = 31344, + [SMALL_STATE(1066)] = 31398, + [SMALL_STATE(1067)] = 31452, + [SMALL_STATE(1068)] = 31506, + [SMALL_STATE(1069)] = 31560, + [SMALL_STATE(1070)] = 31614, + [SMALL_STATE(1071)] = 31668, + [SMALL_STATE(1072)] = 31722, + [SMALL_STATE(1073)] = 31776, + [SMALL_STATE(1074)] = 31830, + [SMALL_STATE(1075)] = 31884, + [SMALL_STATE(1076)] = 31938, + [SMALL_STATE(1077)] = 31992, + [SMALL_STATE(1078)] = 32046, + [SMALL_STATE(1079)] = 32100, + [SMALL_STATE(1080)] = 32154, + [SMALL_STATE(1081)] = 32208, + [SMALL_STATE(1082)] = 32262, + [SMALL_STATE(1083)] = 32316, + [SMALL_STATE(1084)] = 32370, + [SMALL_STATE(1085)] = 32424, + [SMALL_STATE(1086)] = 32478, + [SMALL_STATE(1087)] = 32532, + [SMALL_STATE(1088)] = 32586, + [SMALL_STATE(1089)] = 32640, + [SMALL_STATE(1090)] = 32694, + [SMALL_STATE(1091)] = 32748, + [SMALL_STATE(1092)] = 32802, + [SMALL_STATE(1093)] = 32856, + [SMALL_STATE(1094)] = 32910, + [SMALL_STATE(1095)] = 32964, + [SMALL_STATE(1096)] = 33018, + [SMALL_STATE(1097)] = 33072, + [SMALL_STATE(1098)] = 33126, + [SMALL_STATE(1099)] = 33180, + [SMALL_STATE(1100)] = 33234, + [SMALL_STATE(1101)] = 33288, + [SMALL_STATE(1102)] = 33342, + [SMALL_STATE(1103)] = 33396, + [SMALL_STATE(1104)] = 33450, + [SMALL_STATE(1105)] = 33504, + [SMALL_STATE(1106)] = 33558, + [SMALL_STATE(1107)] = 33612, + [SMALL_STATE(1108)] = 33666, + [SMALL_STATE(1109)] = 33720, + [SMALL_STATE(1110)] = 33774, + [SMALL_STATE(1111)] = 33828, + [SMALL_STATE(1112)] = 33882, + [SMALL_STATE(1113)] = 33936, + [SMALL_STATE(1114)] = 33990, + [SMALL_STATE(1115)] = 34044, + [SMALL_STATE(1116)] = 34098, + [SMALL_STATE(1117)] = 34152, + [SMALL_STATE(1118)] = 34206, + [SMALL_STATE(1119)] = 34260, + [SMALL_STATE(1120)] = 34316, + [SMALL_STATE(1121)] = 34370, + [SMALL_STATE(1122)] = 34424, + [SMALL_STATE(1123)] = 34478, + [SMALL_STATE(1124)] = 34532, + [SMALL_STATE(1125)] = 34586, + [SMALL_STATE(1126)] = 34640, + [SMALL_STATE(1127)] = 34694, [SMALL_STATE(1128)] = 34748, - [SMALL_STATE(1129)] = 34801, - [SMALL_STATE(1130)] = 34866, - [SMALL_STATE(1131)] = 34949, - [SMALL_STATE(1132)] = 35038, - [SMALL_STATE(1133)] = 35099, - [SMALL_STATE(1134)] = 35182, - [SMALL_STATE(1135)] = 35265, - [SMALL_STATE(1136)] = 35326, - [SMALL_STATE(1137)] = 35379, - [SMALL_STATE(1138)] = 35434, - [SMALL_STATE(1139)] = 35491, - [SMALL_STATE(1140)] = 35578, + [SMALL_STATE(1129)] = 34823, + [SMALL_STATE(1130)] = 34892, + [SMALL_STATE(1131)] = 34953, + [SMALL_STATE(1132)] = 35042, + [SMALL_STATE(1133)] = 35125, + [SMALL_STATE(1134)] = 35214, + [SMALL_STATE(1135)] = 35267, + [SMALL_STATE(1136)] = 35320, + [SMALL_STATE(1137)] = 35403, + [SMALL_STATE(1138)] = 35458, + [SMALL_STATE(1139)] = 35541, + [SMALL_STATE(1140)] = 35594, [SMALL_STATE(1141)] = 35661, [SMALL_STATE(1142)] = 35714, - [SMALL_STATE(1143)] = 35767, - [SMALL_STATE(1144)] = 35822, - [SMALL_STATE(1145)] = 35905, - [SMALL_STATE(1146)] = 35966, - [SMALL_STATE(1147)] = 36033, - [SMALL_STATE(1148)] = 36104, - [SMALL_STATE(1149)] = 36157, - [SMALL_STATE(1150)] = 36230, - [SMALL_STATE(1151)] = 36283, - [SMALL_STATE(1152)] = 36364, - [SMALL_STATE(1153)] = 36443, - [SMALL_STATE(1154)] = 36512, - [SMALL_STATE(1155)] = 36587, - [SMALL_STATE(1156)] = 36674, - [SMALL_STATE(1157)] = 36763, - [SMALL_STATE(1158)] = 36846, + [SMALL_STATE(1143)] = 35775, + [SMALL_STATE(1144)] = 35846, + [SMALL_STATE(1145)] = 35919, + [SMALL_STATE(1146)] = 36006, + [SMALL_STATE(1147)] = 36087, + [SMALL_STATE(1148)] = 36166, + [SMALL_STATE(1149)] = 36249, + [SMALL_STATE(1150)] = 36304, + [SMALL_STATE(1151)] = 36357, + [SMALL_STATE(1152)] = 36410, + [SMALL_STATE(1153)] = 36493, + [SMALL_STATE(1154)] = 36550, + [SMALL_STATE(1155)] = 36633, + [SMALL_STATE(1156)] = 36694, + [SMALL_STATE(1157)] = 36781, + [SMALL_STATE(1158)] = 36844, [SMALL_STATE(1159)] = 36909, [SMALL_STATE(1160)] = 36961, [SMALL_STATE(1161)] = 37013, [SMALL_STATE(1162)] = 37073, [SMALL_STATE(1163)] = 37158, - [SMALL_STATE(1164)] = 37245, - [SMALL_STATE(1165)] = 37332, - [SMALL_STATE(1166)] = 37417, - [SMALL_STATE(1167)] = 37504, - [SMALL_STATE(1168)] = 37561, - [SMALL_STATE(1169)] = 37648, + [SMALL_STATE(1164)] = 37209, + [SMALL_STATE(1165)] = 37296, + [SMALL_STATE(1166)] = 37383, + [SMALL_STATE(1167)] = 37440, + [SMALL_STATE(1168)] = 37527, + [SMALL_STATE(1169)] = 37612, [SMALL_STATE(1170)] = 37699, [SMALL_STATE(1171)] = 37750, - [SMALL_STATE(1172)] = 37826, - [SMALL_STATE(1173)] = 37882, - [SMALL_STATE(1174)] = 37958, + [SMALL_STATE(1172)] = 37806, + [SMALL_STATE(1173)] = 37860, + [SMALL_STATE(1174)] = 37936, [SMALL_STATE(1175)] = 38012, [SMALL_STATE(1176)] = 38101, - [SMALL_STATE(1177)] = 38150, - [SMALL_STATE(1178)] = 38199, - [SMALL_STATE(1179)] = 38248, - [SMALL_STATE(1180)] = 38301, - [SMALL_STATE(1181)] = 38350, - [SMALL_STATE(1182)] = 38439, - [SMALL_STATE(1183)] = 38490, - [SMALL_STATE(1184)] = 38539, - [SMALL_STATE(1185)] = 38588, - [SMALL_STATE(1186)] = 38639, - [SMALL_STATE(1187)] = 38688, - [SMALL_STATE(1188)] = 38737, - [SMALL_STATE(1189)] = 38786, + [SMALL_STATE(1177)] = 38154, + [SMALL_STATE(1178)] = 38207, + [SMALL_STATE(1179)] = 38258, + [SMALL_STATE(1180)] = 38307, + [SMALL_STATE(1181)] = 38356, + [SMALL_STATE(1182)] = 38405, + [SMALL_STATE(1183)] = 38494, + [SMALL_STATE(1184)] = 38545, + [SMALL_STATE(1185)] = 38594, + [SMALL_STATE(1186)] = 38643, + [SMALL_STATE(1187)] = 38692, + [SMALL_STATE(1188)] = 38741, + [SMALL_STATE(1189)] = 38790, [SMALL_STATE(1190)] = 38839, [SMALL_STATE(1191)] = 38889, [SMALL_STATE(1192)] = 38939, - [SMALL_STATE(1193)] = 39025, + [SMALL_STATE(1193)] = 38989, [SMALL_STATE(1194)] = 39075, - [SMALL_STATE(1195)] = 39161, - [SMALL_STATE(1196)] = 39211, - [SMALL_STATE(1197)] = 39289, + [SMALL_STATE(1195)] = 39125, + [SMALL_STATE(1196)] = 39203, + [SMALL_STATE(1197)] = 39281, [SMALL_STATE(1198)] = 39367, - [SMALL_STATE(1199)] = 39448, - [SMALL_STATE(1200)] = 39531, - [SMALL_STATE(1201)] = 39608, - [SMALL_STATE(1202)] = 39669, - [SMALL_STATE(1203)] = 39734, - [SMALL_STATE(1204)] = 39817, - [SMALL_STATE(1205)] = 39900, - [SMALL_STATE(1206)] = 39967, - [SMALL_STATE(1207)] = 40042, - [SMALL_STATE(1208)] = 40115, - [SMALL_STATE(1209)] = 40198, - [SMALL_STATE(1210)] = 40261, - [SMALL_STATE(1211)] = 40330, - [SMALL_STATE(1212)] = 40407, - [SMALL_STATE(1213)] = 40490, - [SMALL_STATE(1214)] = 40549, - [SMALL_STATE(1215)] = 40632, - [SMALL_STATE(1216)] = 40687, - [SMALL_STATE(1217)] = 40770, - [SMALL_STATE(1218)] = 40853, - [SMALL_STATE(1219)] = 40934, - [SMALL_STATE(1220)] = 41011, - [SMALL_STATE(1221)] = 41094, - [SMALL_STATE(1222)] = 41177, - [SMALL_STATE(1223)] = 41260, - [SMALL_STATE(1224)] = 41343, - [SMALL_STATE(1225)] = 41426, - [SMALL_STATE(1226)] = 41507, - [SMALL_STATE(1227)] = 41588, - [SMALL_STATE(1228)] = 41671, - [SMALL_STATE(1229)] = 41746, - [SMALL_STATE(1230)] = 41827, - [SMALL_STATE(1231)] = 41910, - [SMALL_STATE(1232)] = 41987, - [SMALL_STATE(1233)] = 42070, - [SMALL_STATE(1234)] = 42151, - [SMALL_STATE(1235)] = 42234, - [SMALL_STATE(1236)] = 42289, - [SMALL_STATE(1237)] = 42372, - [SMALL_STATE(1238)] = 42455, - [SMALL_STATE(1239)] = 42532, - [SMALL_STATE(1240)] = 42615, - [SMALL_STATE(1241)] = 42698, - [SMALL_STATE(1242)] = 42781, - [SMALL_STATE(1243)] = 42864, - [SMALL_STATE(1244)] = 42947, - [SMALL_STATE(1245)] = 43030, - [SMALL_STATE(1246)] = 43113, - [SMALL_STATE(1247)] = 43196, - [SMALL_STATE(1248)] = 43251, - [SMALL_STATE(1249)] = 43308, - [SMALL_STATE(1250)] = 43379, - [SMALL_STATE(1251)] = 43454, - [SMALL_STATE(1252)] = 43537, - [SMALL_STATE(1253)] = 43620, - [SMALL_STATE(1254)] = 43703, - [SMALL_STATE(1255)] = 43786, - [SMALL_STATE(1256)] = 43869, - [SMALL_STATE(1257)] = 43950, - [SMALL_STATE(1258)] = 44031, - [SMALL_STATE(1259)] = 44114, - [SMALL_STATE(1260)] = 44197, - [SMALL_STATE(1261)] = 44280, - [SMALL_STATE(1262)] = 44363, - [SMALL_STATE(1263)] = 44440, - [SMALL_STATE(1264)] = 44521, - [SMALL_STATE(1265)] = 44602, - [SMALL_STATE(1266)] = 44683, - [SMALL_STATE(1267)] = 44764, - [SMALL_STATE(1268)] = 44847, - [SMALL_STATE(1269)] = 44925, - [SMALL_STATE(1270)] = 45005, - [SMALL_STATE(1271)] = 45085, - [SMALL_STATE(1272)] = 45165, - [SMALL_STATE(1273)] = 45245, - [SMALL_STATE(1274)] = 45323, - [SMALL_STATE(1275)] = 45391, - [SMALL_STATE(1276)] = 45471, - [SMALL_STATE(1277)] = 45551, - [SMALL_STATE(1278)] = 45631, - [SMALL_STATE(1279)] = 45711, - [SMALL_STATE(1280)] = 45779, - [SMALL_STATE(1281)] = 45859, - [SMALL_STATE(1282)] = 45939, - [SMALL_STATE(1283)] = 46019, - [SMALL_STATE(1284)] = 46099, - [SMALL_STATE(1285)] = 46179, - [SMALL_STATE(1286)] = 46259, - [SMALL_STATE(1287)] = 46339, - [SMALL_STATE(1288)] = 46417, - [SMALL_STATE(1289)] = 46497, - [SMALL_STATE(1290)] = 46577, - [SMALL_STATE(1291)] = 46657, - [SMALL_STATE(1292)] = 46737, - [SMALL_STATE(1293)] = 46817, - [SMALL_STATE(1294)] = 46897, - [SMALL_STATE(1295)] = 46977, - [SMALL_STATE(1296)] = 47057, - [SMALL_STATE(1297)] = 47135, - [SMALL_STATE(1298)] = 47215, - [SMALL_STATE(1299)] = 47280, - [SMALL_STATE(1300)] = 47345, - [SMALL_STATE(1301)] = 47410, - [SMALL_STATE(1302)] = 47475, - [SMALL_STATE(1303)] = 47540, - [SMALL_STATE(1304)] = 47580, - [SMALL_STATE(1305)] = 47620, - [SMALL_STATE(1306)] = 47660, - [SMALL_STATE(1307)] = 47715, - [SMALL_STATE(1308)] = 47770, - [SMALL_STATE(1309)] = 47825, - [SMALL_STATE(1310)] = 47880, - [SMALL_STATE(1311)] = 47935, - [SMALL_STATE(1312)] = 47990, - [SMALL_STATE(1313)] = 48045, - [SMALL_STATE(1314)] = 48097, - [SMALL_STATE(1315)] = 48149, - [SMALL_STATE(1316)] = 48180, - [SMALL_STATE(1317)] = 48211, - [SMALL_STATE(1318)] = 48257, - [SMALL_STATE(1319)] = 48298, - [SMALL_STATE(1320)] = 48328, - [SMALL_STATE(1321)] = 48358, - [SMALL_STATE(1322)] = 48388, - [SMALL_STATE(1323)] = 48418, - [SMALL_STATE(1324)] = 48448, - [SMALL_STATE(1325)] = 48486, - [SMALL_STATE(1326)] = 48516, - [SMALL_STATE(1327)] = 48554, - [SMALL_STATE(1328)] = 48584, - [SMALL_STATE(1329)] = 48614, - [SMALL_STATE(1330)] = 48641, - [SMALL_STATE(1331)] = 48668, - [SMALL_STATE(1332)] = 48695, - [SMALL_STATE(1333)] = 48728, - [SMALL_STATE(1334)] = 48761, - [SMALL_STATE(1335)] = 48794, - [SMALL_STATE(1336)] = 48820, - [SMALL_STATE(1337)] = 48846, - [SMALL_STATE(1338)] = 48872, - [SMALL_STATE(1339)] = 48926, - [SMALL_STATE(1340)] = 48950, - [SMALL_STATE(1341)] = 48976, - [SMALL_STATE(1342)] = 49030, - [SMALL_STATE(1343)] = 49064, - [SMALL_STATE(1344)] = 49089, - [SMALL_STATE(1345)] = 49112, - [SMALL_STATE(1346)] = 49137, - [SMALL_STATE(1347)] = 49162, - [SMALL_STATE(1348)] = 49187, - [SMALL_STATE(1349)] = 49212, - [SMALL_STATE(1350)] = 49237, - [SMALL_STATE(1351)] = 49268, - [SMALL_STATE(1352)] = 49290, - [SMALL_STATE(1353)] = 49314, - [SMALL_STATE(1354)] = 49338, - [SMALL_STATE(1355)] = 49362, - [SMALL_STATE(1356)] = 49384, - [SMALL_STATE(1357)] = 49410, - [SMALL_STATE(1358)] = 49454, - [SMALL_STATE(1359)] = 49478, - [SMALL_STATE(1360)] = 49502, - [SMALL_STATE(1361)] = 49528, - [SMALL_STATE(1362)] = 49550, - [SMALL_STATE(1363)] = 49576, - [SMALL_STATE(1364)] = 49602, - [SMALL_STATE(1365)] = 49630, - [SMALL_STATE(1366)] = 49652, - [SMALL_STATE(1367)] = 49674, - [SMALL_STATE(1368)] = 49698, - [SMALL_STATE(1369)] = 49724, - [SMALL_STATE(1370)] = 49748, - [SMALL_STATE(1371)] = 49772, - [SMALL_STATE(1372)] = 49794, - [SMALL_STATE(1373)] = 49840, - [SMALL_STATE(1374)] = 49884, - [SMALL_STATE(1375)] = 49908, - [SMALL_STATE(1376)] = 49932, - [SMALL_STATE(1377)] = 49954, - [SMALL_STATE(1378)] = 49976, - [SMALL_STATE(1379)] = 49997, - [SMALL_STATE(1380)] = 50018, - [SMALL_STATE(1381)] = 50039, - [SMALL_STATE(1382)] = 50060, - [SMALL_STATE(1383)] = 50081, - [SMALL_STATE(1384)] = 50102, - [SMALL_STATE(1385)] = 50123, - [SMALL_STATE(1386)] = 50144, - [SMALL_STATE(1387)] = 50169, - [SMALL_STATE(1388)] = 50200, - [SMALL_STATE(1389)] = 50225, - [SMALL_STATE(1390)] = 50246, - [SMALL_STATE(1391)] = 50267, - [SMALL_STATE(1392)] = 50288, - [SMALL_STATE(1393)] = 50309, - [SMALL_STATE(1394)] = 50332, - [SMALL_STATE(1395)] = 50353, - [SMALL_STATE(1396)] = 50374, - [SMALL_STATE(1397)] = 50395, - [SMALL_STATE(1398)] = 50416, - [SMALL_STATE(1399)] = 50437, - [SMALL_STATE(1400)] = 50458, - [SMALL_STATE(1401)] = 50503, - [SMALL_STATE(1402)] = 50526, - [SMALL_STATE(1403)] = 50549, - [SMALL_STATE(1404)] = 50570, - [SMALL_STATE(1405)] = 50591, - [SMALL_STATE(1406)] = 50612, - [SMALL_STATE(1407)] = 50633, - [SMALL_STATE(1408)] = 50654, - [SMALL_STATE(1409)] = 50678, - [SMALL_STATE(1410)] = 50702, - [SMALL_STATE(1411)] = 50726, - [SMALL_STATE(1412)] = 50750, - [SMALL_STATE(1413)] = 50774, - [SMALL_STATE(1414)] = 50796, - [SMALL_STATE(1415)] = 50820, - [SMALL_STATE(1416)] = 50844, - [SMALL_STATE(1417)] = 50872, - [SMALL_STATE(1418)] = 50894, - [SMALL_STATE(1419)] = 50916, - [SMALL_STATE(1420)] = 50940, - [SMALL_STATE(1421)] = 50961, - [SMALL_STATE(1422)] = 50984, - [SMALL_STATE(1423)] = 51005, - [SMALL_STATE(1424)] = 51026, - [SMALL_STATE(1425)] = 51049, - [SMALL_STATE(1426)] = 51070, - [SMALL_STATE(1427)] = 51091, - [SMALL_STATE(1428)] = 51112, - [SMALL_STATE(1429)] = 51135, - [SMALL_STATE(1430)] = 51156, - [SMALL_STATE(1431)] = 51181, - [SMALL_STATE(1432)] = 51206, - [SMALL_STATE(1433)] = 51227, - [SMALL_STATE(1434)] = 51248, - [SMALL_STATE(1435)] = 51269, - [SMALL_STATE(1436)] = 51294, - [SMALL_STATE(1437)] = 51315, - [SMALL_STATE(1438)] = 51336, - [SMALL_STATE(1439)] = 51357, - [SMALL_STATE(1440)] = 51378, - [SMALL_STATE(1441)] = 51399, - [SMALL_STATE(1442)] = 51420, - [SMALL_STATE(1443)] = 51441, - [SMALL_STATE(1444)] = 51466, - [SMALL_STATE(1445)] = 51487, - [SMALL_STATE(1446)] = 51512, - [SMALL_STATE(1447)] = 51537, - [SMALL_STATE(1448)] = 51558, - [SMALL_STATE(1449)] = 51583, - [SMALL_STATE(1450)] = 51604, - [SMALL_STATE(1451)] = 51627, - [SMALL_STATE(1452)] = 51648, - [SMALL_STATE(1453)] = 51669, - [SMALL_STATE(1454)] = 51690, - [SMALL_STATE(1455)] = 51711, - [SMALL_STATE(1456)] = 51732, - [SMALL_STATE(1457)] = 51753, - [SMALL_STATE(1458)] = 51774, - [SMALL_STATE(1459)] = 51795, - [SMALL_STATE(1460)] = 51824, - [SMALL_STATE(1461)] = 51849, - [SMALL_STATE(1462)] = 51870, - [SMALL_STATE(1463)] = 51891, - [SMALL_STATE(1464)] = 51912, - [SMALL_STATE(1465)] = 51944, - [SMALL_STATE(1466)] = 51976, - [SMALL_STATE(1467)] = 52008, - [SMALL_STATE(1468)] = 52040, - [SMALL_STATE(1469)] = 52072, - [SMALL_STATE(1470)] = 52096, - [SMALL_STATE(1471)] = 52128, - [SMALL_STATE(1472)] = 52152, - [SMALL_STATE(1473)] = 52184, - [SMALL_STATE(1474)] = 52216, - [SMALL_STATE(1475)] = 52240, - [SMALL_STATE(1476)] = 52264, - [SMALL_STATE(1477)] = 52297, - [SMALL_STATE(1478)] = 52322, - [SMALL_STATE(1479)] = 52351, - [SMALL_STATE(1480)] = 52384, - [SMALL_STATE(1481)] = 52415, - [SMALL_STATE(1482)] = 52448, - [SMALL_STATE(1483)] = 52481, - [SMALL_STATE(1484)] = 52508, - [SMALL_STATE(1485)] = 52538, - [SMALL_STATE(1486)] = 52568, - [SMALL_STATE(1487)] = 52594, - [SMALL_STATE(1488)] = 52616, - [SMALL_STATE(1489)] = 52648, - [SMALL_STATE(1490)] = 52674, - [SMALL_STATE(1491)] = 52706, - [SMALL_STATE(1492)] = 52732, - [SMALL_STATE(1493)] = 52762, - [SMALL_STATE(1494)] = 52792, - [SMALL_STATE(1495)] = 52814, - [SMALL_STATE(1496)] = 52836, - [SMALL_STATE(1497)] = 52866, - [SMALL_STATE(1498)] = 52896, - [SMALL_STATE(1499)] = 52922, - [SMALL_STATE(1500)] = 52948, - [SMALL_STATE(1501)] = 52978, - [SMALL_STATE(1502)] = 53004, - [SMALL_STATE(1503)] = 53034, - [SMALL_STATE(1504)] = 53064, - [SMALL_STATE(1505)] = 53090, - [SMALL_STATE(1506)] = 53120, - [SMALL_STATE(1507)] = 53142, - [SMALL_STATE(1508)] = 53172, - [SMALL_STATE(1509)] = 53202, - [SMALL_STATE(1510)] = 53232, - [SMALL_STATE(1511)] = 53262, - [SMALL_STATE(1512)] = 53284, - [SMALL_STATE(1513)] = 53306, - [SMALL_STATE(1514)] = 53338, - [SMALL_STATE(1515)] = 53368, - [SMALL_STATE(1516)] = 53398, - [SMALL_STATE(1517)] = 53428, - [SMALL_STATE(1518)] = 53458, - [SMALL_STATE(1519)] = 53484, - [SMALL_STATE(1520)] = 53516, - [SMALL_STATE(1521)] = 53542, - [SMALL_STATE(1522)] = 53572, - [SMALL_STATE(1523)] = 53598, - [SMALL_STATE(1524)] = 53624, - [SMALL_STATE(1525)] = 53654, - [SMALL_STATE(1526)] = 53684, - [SMALL_STATE(1527)] = 53711, - [SMALL_STATE(1528)] = 53738, - [SMALL_STATE(1529)] = 53765, - [SMALL_STATE(1530)] = 53792, - [SMALL_STATE(1531)] = 53819, - [SMALL_STATE(1532)] = 53838, - [SMALL_STATE(1533)] = 53867, - [SMALL_STATE(1534)] = 53894, - [SMALL_STATE(1535)] = 53923, - [SMALL_STATE(1536)] = 53946, - [SMALL_STATE(1537)] = 53975, - [SMALL_STATE(1538)] = 53994, - [SMALL_STATE(1539)] = 54023, - [SMALL_STATE(1540)] = 54042, - [SMALL_STATE(1541)] = 54065, - [SMALL_STATE(1542)] = 54088, - [SMALL_STATE(1543)] = 54115, - [SMALL_STATE(1544)] = 54134, - [SMALL_STATE(1545)] = 54153, - [SMALL_STATE(1546)] = 54172, - [SMALL_STATE(1547)] = 54191, - [SMALL_STATE(1548)] = 54218, - [SMALL_STATE(1549)] = 54237, - [SMALL_STATE(1550)] = 54266, - [SMALL_STATE(1551)] = 54293, - [SMALL_STATE(1552)] = 54322, - [SMALL_STATE(1553)] = 54337, - [SMALL_STATE(1554)] = 54358, - [SMALL_STATE(1555)] = 54385, - [SMALL_STATE(1556)] = 54404, - [SMALL_STATE(1557)] = 54425, - [SMALL_STATE(1558)] = 54444, - [SMALL_STATE(1559)] = 54463, - [SMALL_STATE(1560)] = 54486, - [SMALL_STATE(1561)] = 54513, - [SMALL_STATE(1562)] = 54540, - [SMALL_STATE(1563)] = 54567, - [SMALL_STATE(1564)] = 54594, - [SMALL_STATE(1565)] = 54617, - [SMALL_STATE(1566)] = 54642, - [SMALL_STATE(1567)] = 54669, - [SMALL_STATE(1568)] = 54695, - [SMALL_STATE(1569)] = 54709, - [SMALL_STATE(1570)] = 54735, - [SMALL_STATE(1571)] = 54759, - [SMALL_STATE(1572)] = 54775, - [SMALL_STATE(1573)] = 54799, - [SMALL_STATE(1574)] = 54813, - [SMALL_STATE(1575)] = 54827, - [SMALL_STATE(1576)] = 54843, - [SMALL_STATE(1577)] = 54869, - [SMALL_STATE(1578)] = 54895, - [SMALL_STATE(1579)] = 54917, - [SMALL_STATE(1580)] = 54943, - [SMALL_STATE(1581)] = 54969, - [SMALL_STATE(1582)] = 54983, - [SMALL_STATE(1583)] = 54997, - [SMALL_STATE(1584)] = 55023, - [SMALL_STATE(1585)] = 55049, - [SMALL_STATE(1586)] = 55075, - [SMALL_STATE(1587)] = 55101, - [SMALL_STATE(1588)] = 55127, - [SMALL_STATE(1589)] = 55153, - [SMALL_STATE(1590)] = 55167, - [SMALL_STATE(1591)] = 55191, - [SMALL_STATE(1592)] = 55217, - [SMALL_STATE(1593)] = 55243, - [SMALL_STATE(1594)] = 55259, - [SMALL_STATE(1595)] = 55285, - [SMALL_STATE(1596)] = 55301, - [SMALL_STATE(1597)] = 55323, - [SMALL_STATE(1598)] = 55347, - [SMALL_STATE(1599)] = 55363, - [SMALL_STATE(1600)] = 55379, - [SMALL_STATE(1601)] = 55403, - [SMALL_STATE(1602)] = 55429, - [SMALL_STATE(1603)] = 55455, - [SMALL_STATE(1604)] = 55471, - [SMALL_STATE(1605)] = 55497, - [SMALL_STATE(1606)] = 55523, - [SMALL_STATE(1607)] = 55539, - [SMALL_STATE(1608)] = 55565, - [SMALL_STATE(1609)] = 55579, - [SMALL_STATE(1610)] = 55605, - [SMALL_STATE(1611)] = 55631, - [SMALL_STATE(1612)] = 55651, - [SMALL_STATE(1613)] = 55677, - [SMALL_STATE(1614)] = 55703, - [SMALL_STATE(1615)] = 55726, - [SMALL_STATE(1616)] = 55743, - [SMALL_STATE(1617)] = 55766, - [SMALL_STATE(1618)] = 55789, - [SMALL_STATE(1619)] = 55806, - [SMALL_STATE(1620)] = 55829, - [SMALL_STATE(1621)] = 55850, - [SMALL_STATE(1622)] = 55873, - [SMALL_STATE(1623)] = 55896, - [SMALL_STATE(1624)] = 55919, - [SMALL_STATE(1625)] = 55942, - [SMALL_STATE(1626)] = 55965, - [SMALL_STATE(1627)] = 55988, - [SMALL_STATE(1628)] = 56011, - [SMALL_STATE(1629)] = 56034, - [SMALL_STATE(1630)] = 56057, - [SMALL_STATE(1631)] = 56080, - [SMALL_STATE(1632)] = 56103, - [SMALL_STATE(1633)] = 56126, - [SMALL_STATE(1634)] = 56149, - [SMALL_STATE(1635)] = 56172, - [SMALL_STATE(1636)] = 56195, - [SMALL_STATE(1637)] = 56218, - [SMALL_STATE(1638)] = 56241, - [SMALL_STATE(1639)] = 56264, - [SMALL_STATE(1640)] = 56283, - [SMALL_STATE(1641)] = 56300, - [SMALL_STATE(1642)] = 56323, - [SMALL_STATE(1643)] = 56346, - [SMALL_STATE(1644)] = 56369, - [SMALL_STATE(1645)] = 56392, - [SMALL_STATE(1646)] = 56413, - [SMALL_STATE(1647)] = 56436, - [SMALL_STATE(1648)] = 56459, - [SMALL_STATE(1649)] = 56482, - [SMALL_STATE(1650)] = 56505, - [SMALL_STATE(1651)] = 56528, - [SMALL_STATE(1652)] = 56551, - [SMALL_STATE(1653)] = 56574, - [SMALL_STATE(1654)] = 56597, - [SMALL_STATE(1655)] = 56620, - [SMALL_STATE(1656)] = 56643, - [SMALL_STATE(1657)] = 56666, - [SMALL_STATE(1658)] = 56683, - [SMALL_STATE(1659)] = 56706, - [SMALL_STATE(1660)] = 56729, - [SMALL_STATE(1661)] = 56752, - [SMALL_STATE(1662)] = 56775, - [SMALL_STATE(1663)] = 56792, - [SMALL_STATE(1664)] = 56815, - [SMALL_STATE(1665)] = 56838, - [SMALL_STATE(1666)] = 56855, - [SMALL_STATE(1667)] = 56878, - [SMALL_STATE(1668)] = 56901, - [SMALL_STATE(1669)] = 56924, - [SMALL_STATE(1670)] = 56941, - [SMALL_STATE(1671)] = 56956, - [SMALL_STATE(1672)] = 56979, - [SMALL_STATE(1673)] = 57002, - [SMALL_STATE(1674)] = 57019, - [SMALL_STATE(1675)] = 57042, - [SMALL_STATE(1676)] = 57065, - [SMALL_STATE(1677)] = 57088, - [SMALL_STATE(1678)] = 57111, - [SMALL_STATE(1679)] = 57134, - [SMALL_STATE(1680)] = 57157, - [SMALL_STATE(1681)] = 57172, - [SMALL_STATE(1682)] = 57189, - [SMALL_STATE(1683)] = 57206, - [SMALL_STATE(1684)] = 57223, - [SMALL_STATE(1685)] = 57246, - [SMALL_STATE(1686)] = 57263, - [SMALL_STATE(1687)] = 57282, - [SMALL_STATE(1688)] = 57299, - [SMALL_STATE(1689)] = 57322, - [SMALL_STATE(1690)] = 57341, - [SMALL_STATE(1691)] = 57364, - [SMALL_STATE(1692)] = 57387, - [SMALL_STATE(1693)] = 57410, - [SMALL_STATE(1694)] = 57433, - [SMALL_STATE(1695)] = 57456, - [SMALL_STATE(1696)] = 57479, - [SMALL_STATE(1697)] = 57496, - [SMALL_STATE(1698)] = 57513, - [SMALL_STATE(1699)] = 57536, - [SMALL_STATE(1700)] = 57559, - [SMALL_STATE(1701)] = 57582, - [SMALL_STATE(1702)] = 57605, - [SMALL_STATE(1703)] = 57628, - [SMALL_STATE(1704)] = 57651, - [SMALL_STATE(1705)] = 57674, - [SMALL_STATE(1706)] = 57695, - [SMALL_STATE(1707)] = 57718, - [SMALL_STATE(1708)] = 57730, - [SMALL_STATE(1709)] = 57750, - [SMALL_STATE(1710)] = 57766, - [SMALL_STATE(1711)] = 57778, - [SMALL_STATE(1712)] = 57794, - [SMALL_STATE(1713)] = 57806, - [SMALL_STATE(1714)] = 57826, - [SMALL_STATE(1715)] = 57842, - [SMALL_STATE(1716)] = 57854, - [SMALL_STATE(1717)] = 57866, - [SMALL_STATE(1718)] = 57886, - [SMALL_STATE(1719)] = 57906, - [SMALL_STATE(1720)] = 57924, - [SMALL_STATE(1721)] = 57940, - [SMALL_STATE(1722)] = 57958, - [SMALL_STATE(1723)] = 57970, - [SMALL_STATE(1724)] = 57986, - [SMALL_STATE(1725)] = 57998, - [SMALL_STATE(1726)] = 58012, - [SMALL_STATE(1727)] = 58024, - [SMALL_STATE(1728)] = 58044, - [SMALL_STATE(1729)] = 58060, - [SMALL_STATE(1730)] = 58078, - [SMALL_STATE(1731)] = 58094, - [SMALL_STATE(1732)] = 58108, - [SMALL_STATE(1733)] = 58120, - [SMALL_STATE(1734)] = 58132, - [SMALL_STATE(1735)] = 58144, - [SMALL_STATE(1736)] = 58156, - [SMALL_STATE(1737)] = 58168, - [SMALL_STATE(1738)] = 58184, - [SMALL_STATE(1739)] = 58200, - [SMALL_STATE(1740)] = 58220, - [SMALL_STATE(1741)] = 58240, - [SMALL_STATE(1742)] = 58256, - [SMALL_STATE(1743)] = 58274, - [SMALL_STATE(1744)] = 58292, - [SMALL_STATE(1745)] = 58304, - [SMALL_STATE(1746)] = 58316, - [SMALL_STATE(1747)] = 58332, - [SMALL_STATE(1748)] = 58344, - [SMALL_STATE(1749)] = 58362, - [SMALL_STATE(1750)] = 58374, - [SMALL_STATE(1751)] = 58388, - [SMALL_STATE(1752)] = 58400, - [SMALL_STATE(1753)] = 58412, - [SMALL_STATE(1754)] = 58424, - [SMALL_STATE(1755)] = 58444, - [SMALL_STATE(1756)] = 58456, - [SMALL_STATE(1757)] = 58476, - [SMALL_STATE(1758)] = 58496, - [SMALL_STATE(1759)] = 58512, - [SMALL_STATE(1760)] = 58529, - [SMALL_STATE(1761)] = 58546, - [SMALL_STATE(1762)] = 58563, - [SMALL_STATE(1763)] = 58580, - [SMALL_STATE(1764)] = 58597, - [SMALL_STATE(1765)] = 58614, - [SMALL_STATE(1766)] = 58631, - [SMALL_STATE(1767)] = 58648, - [SMALL_STATE(1768)] = 58661, - [SMALL_STATE(1769)] = 58678, - [SMALL_STATE(1770)] = 58693, - [SMALL_STATE(1771)] = 58708, - [SMALL_STATE(1772)] = 58725, - [SMALL_STATE(1773)] = 58740, - [SMALL_STATE(1774)] = 58757, - [SMALL_STATE(1775)] = 58774, - [SMALL_STATE(1776)] = 58791, - [SMALL_STATE(1777)] = 58806, - [SMALL_STATE(1778)] = 58823, - [SMALL_STATE(1779)] = 58840, - [SMALL_STATE(1780)] = 58853, - [SMALL_STATE(1781)] = 58868, - [SMALL_STATE(1782)] = 58885, - [SMALL_STATE(1783)] = 58902, - [SMALL_STATE(1784)] = 58919, - [SMALL_STATE(1785)] = 58934, - [SMALL_STATE(1786)] = 58949, - [SMALL_STATE(1787)] = 58962, - [SMALL_STATE(1788)] = 58979, - [SMALL_STATE(1789)] = 58996, - [SMALL_STATE(1790)] = 59013, - [SMALL_STATE(1791)] = 59028, - [SMALL_STATE(1792)] = 59045, - [SMALL_STATE(1793)] = 59062, - [SMALL_STATE(1794)] = 59079, - [SMALL_STATE(1795)] = 59096, - [SMALL_STATE(1796)] = 59113, - [SMALL_STATE(1797)] = 59130, - [SMALL_STATE(1798)] = 59145, - [SMALL_STATE(1799)] = 59162, - [SMALL_STATE(1800)] = 59179, - [SMALL_STATE(1801)] = 59192, - [SMALL_STATE(1802)] = 59209, - [SMALL_STATE(1803)] = 59226, - [SMALL_STATE(1804)] = 59243, - [SMALL_STATE(1805)] = 59260, - [SMALL_STATE(1806)] = 59275, - [SMALL_STATE(1807)] = 59288, - [SMALL_STATE(1808)] = 59305, - [SMALL_STATE(1809)] = 59320, - [SMALL_STATE(1810)] = 59337, - [SMALL_STATE(1811)] = 59352, - [SMALL_STATE(1812)] = 59369, - [SMALL_STATE(1813)] = 59386, - [SMALL_STATE(1814)] = 59403, - [SMALL_STATE(1815)] = 59420, - [SMALL_STATE(1816)] = 59435, - [SMALL_STATE(1817)] = 59452, - [SMALL_STATE(1818)] = 59469, - [SMALL_STATE(1819)] = 59484, - [SMALL_STATE(1820)] = 59499, - [SMALL_STATE(1821)] = 59512, - [SMALL_STATE(1822)] = 59529, - [SMALL_STATE(1823)] = 59546, - [SMALL_STATE(1824)] = 59563, - [SMALL_STATE(1825)] = 59580, - [SMALL_STATE(1826)] = 59597, - [SMALL_STATE(1827)] = 59614, - [SMALL_STATE(1828)] = 59631, - [SMALL_STATE(1829)] = 59648, - [SMALL_STATE(1830)] = 59665, - [SMALL_STATE(1831)] = 59682, - [SMALL_STATE(1832)] = 59699, - [SMALL_STATE(1833)] = 59712, - [SMALL_STATE(1834)] = 59727, - [SMALL_STATE(1835)] = 59744, - [SMALL_STATE(1836)] = 59759, - [SMALL_STATE(1837)] = 59772, - [SMALL_STATE(1838)] = 59787, - [SMALL_STATE(1839)] = 59804, - [SMALL_STATE(1840)] = 59821, - [SMALL_STATE(1841)] = 59838, - [SMALL_STATE(1842)] = 59855, - [SMALL_STATE(1843)] = 59870, - [SMALL_STATE(1844)] = 59887, - [SMALL_STATE(1845)] = 59904, - [SMALL_STATE(1846)] = 59921, - [SMALL_STATE(1847)] = 59936, - [SMALL_STATE(1848)] = 59951, - [SMALL_STATE(1849)] = 59968, - [SMALL_STATE(1850)] = 59983, - [SMALL_STATE(1851)] = 59998, - [SMALL_STATE(1852)] = 60015, - [SMALL_STATE(1853)] = 60030, - [SMALL_STATE(1854)] = 60047, - [SMALL_STATE(1855)] = 60064, - [SMALL_STATE(1856)] = 60081, - [SMALL_STATE(1857)] = 60096, - [SMALL_STATE(1858)] = 60108, - [SMALL_STATE(1859)] = 60122, - [SMALL_STATE(1860)] = 60136, - [SMALL_STATE(1861)] = 60150, - [SMALL_STATE(1862)] = 60164, - [SMALL_STATE(1863)] = 60178, - [SMALL_STATE(1864)] = 60192, - [SMALL_STATE(1865)] = 60206, - [SMALL_STATE(1866)] = 60220, - [SMALL_STATE(1867)] = 60234, - [SMALL_STATE(1868)] = 60248, - [SMALL_STATE(1869)] = 60258, - [SMALL_STATE(1870)] = 60270, - [SMALL_STATE(1871)] = 60284, - [SMALL_STATE(1872)] = 60298, - [SMALL_STATE(1873)] = 60312, - [SMALL_STATE(1874)] = 60326, - [SMALL_STATE(1875)] = 60338, - [SMALL_STATE(1876)] = 60352, - [SMALL_STATE(1877)] = 60366, - [SMALL_STATE(1878)] = 60378, - [SMALL_STATE(1879)] = 60392, - [SMALL_STATE(1880)] = 60404, - [SMALL_STATE(1881)] = 60418, - [SMALL_STATE(1882)] = 60430, - [SMALL_STATE(1883)] = 60444, - [SMALL_STATE(1884)] = 60458, - [SMALL_STATE(1885)] = 60468, - [SMALL_STATE(1886)] = 60480, - [SMALL_STATE(1887)] = 60490, - [SMALL_STATE(1888)] = 60502, - [SMALL_STATE(1889)] = 60516, - [SMALL_STATE(1890)] = 60528, - [SMALL_STATE(1891)] = 60542, - [SMALL_STATE(1892)] = 60556, - [SMALL_STATE(1893)] = 60570, - [SMALL_STATE(1894)] = 60584, - [SMALL_STATE(1895)] = 60598, - [SMALL_STATE(1896)] = 60612, - [SMALL_STATE(1897)] = 60626, - [SMALL_STATE(1898)] = 60640, - [SMALL_STATE(1899)] = 60654, - [SMALL_STATE(1900)] = 60668, - [SMALL_STATE(1901)] = 60680, - [SMALL_STATE(1902)] = 60694, - [SMALL_STATE(1903)] = 60708, - [SMALL_STATE(1904)] = 60722, - [SMALL_STATE(1905)] = 60736, - [SMALL_STATE(1906)] = 60750, - [SMALL_STATE(1907)] = 60762, - [SMALL_STATE(1908)] = 60776, - [SMALL_STATE(1909)] = 60790, - [SMALL_STATE(1910)] = 60804, - [SMALL_STATE(1911)] = 60818, - [SMALL_STATE(1912)] = 60832, - [SMALL_STATE(1913)] = 60846, - [SMALL_STATE(1914)] = 60860, - [SMALL_STATE(1915)] = 60874, - [SMALL_STATE(1916)] = 60888, - [SMALL_STATE(1917)] = 60902, - [SMALL_STATE(1918)] = 60916, - [SMALL_STATE(1919)] = 60928, - [SMALL_STATE(1920)] = 60942, - [SMALL_STATE(1921)] = 60954, - [SMALL_STATE(1922)] = 60968, - [SMALL_STATE(1923)] = 60982, - [SMALL_STATE(1924)] = 60994, - [SMALL_STATE(1925)] = 61008, - [SMALL_STATE(1926)] = 61022, - [SMALL_STATE(1927)] = 61036, - [SMALL_STATE(1928)] = 61050, - [SMALL_STATE(1929)] = 61062, - [SMALL_STATE(1930)] = 61076, - [SMALL_STATE(1931)] = 61090, - [SMALL_STATE(1932)] = 61104, - [SMALL_STATE(1933)] = 61118, - [SMALL_STATE(1934)] = 61132, - [SMALL_STATE(1935)] = 61146, - [SMALL_STATE(1936)] = 61156, - [SMALL_STATE(1937)] = 61166, - [SMALL_STATE(1938)] = 61180, - [SMALL_STATE(1939)] = 61194, - [SMALL_STATE(1940)] = 61208, - [SMALL_STATE(1941)] = 61222, - [SMALL_STATE(1942)] = 61236, - [SMALL_STATE(1943)] = 61250, - [SMALL_STATE(1944)] = 61264, - [SMALL_STATE(1945)] = 61278, - [SMALL_STATE(1946)] = 61292, - [SMALL_STATE(1947)] = 61304, - [SMALL_STATE(1948)] = 61318, - [SMALL_STATE(1949)] = 61332, - [SMALL_STATE(1950)] = 61344, - [SMALL_STATE(1951)] = 61358, - [SMALL_STATE(1952)] = 61372, - [SMALL_STATE(1953)] = 61386, - [SMALL_STATE(1954)] = 61400, - [SMALL_STATE(1955)] = 61410, - [SMALL_STATE(1956)] = 61424, - [SMALL_STATE(1957)] = 61438, - [SMALL_STATE(1958)] = 61452, - [SMALL_STATE(1959)] = 61466, - [SMALL_STATE(1960)] = 61480, - [SMALL_STATE(1961)] = 61494, - [SMALL_STATE(1962)] = 61508, - [SMALL_STATE(1963)] = 61522, - [SMALL_STATE(1964)] = 61536, - [SMALL_STATE(1965)] = 61550, - [SMALL_STATE(1966)] = 61564, - [SMALL_STATE(1967)] = 61574, - [SMALL_STATE(1968)] = 61588, - [SMALL_STATE(1969)] = 61602, - [SMALL_STATE(1970)] = 61614, - [SMALL_STATE(1971)] = 61628, - [SMALL_STATE(1972)] = 61642, - [SMALL_STATE(1973)] = 61656, - [SMALL_STATE(1974)] = 61670, - [SMALL_STATE(1975)] = 61684, - [SMALL_STATE(1976)] = 61698, - [SMALL_STATE(1977)] = 61712, - [SMALL_STATE(1978)] = 61724, - [SMALL_STATE(1979)] = 61738, - [SMALL_STATE(1980)] = 61752, - [SMALL_STATE(1981)] = 61766, - [SMALL_STATE(1982)] = 61780, - [SMALL_STATE(1983)] = 61794, - [SMALL_STATE(1984)] = 61808, - [SMALL_STATE(1985)] = 61822, - [SMALL_STATE(1986)] = 61836, - [SMALL_STATE(1987)] = 61850, - [SMALL_STATE(1988)] = 61860, - [SMALL_STATE(1989)] = 61874, - [SMALL_STATE(1990)] = 61888, - [SMALL_STATE(1991)] = 61898, - [SMALL_STATE(1992)] = 61910, - [SMALL_STATE(1993)] = 61920, - [SMALL_STATE(1994)] = 61934, - [SMALL_STATE(1995)] = 61948, - [SMALL_STATE(1996)] = 61962, - [SMALL_STATE(1997)] = 61976, - [SMALL_STATE(1998)] = 61990, - [SMALL_STATE(1999)] = 62004, - [SMALL_STATE(2000)] = 62018, - [SMALL_STATE(2001)] = 62032, - [SMALL_STATE(2002)] = 62042, - [SMALL_STATE(2003)] = 62056, - [SMALL_STATE(2004)] = 62070, - [SMALL_STATE(2005)] = 62080, - [SMALL_STATE(2006)] = 62094, - [SMALL_STATE(2007)] = 62106, - [SMALL_STATE(2008)] = 62120, - [SMALL_STATE(2009)] = 62134, - [SMALL_STATE(2010)] = 62144, - [SMALL_STATE(2011)] = 62158, - [SMALL_STATE(2012)] = 62168, - [SMALL_STATE(2013)] = 62178, - [SMALL_STATE(2014)] = 62192, - [SMALL_STATE(2015)] = 62204, - [SMALL_STATE(2016)] = 62214, - [SMALL_STATE(2017)] = 62228, - [SMALL_STATE(2018)] = 62242, - [SMALL_STATE(2019)] = 62256, - [SMALL_STATE(2020)] = 62270, - [SMALL_STATE(2021)] = 62284, - [SMALL_STATE(2022)] = 62298, - [SMALL_STATE(2023)] = 62308, - [SMALL_STATE(2024)] = 62322, - [SMALL_STATE(2025)] = 62336, - [SMALL_STATE(2026)] = 62350, - [SMALL_STATE(2027)] = 62362, - [SMALL_STATE(2028)] = 62376, - [SMALL_STATE(2029)] = 62390, - [SMALL_STATE(2030)] = 62404, - [SMALL_STATE(2031)] = 62418, - [SMALL_STATE(2032)] = 62432, - [SMALL_STATE(2033)] = 62446, - [SMALL_STATE(2034)] = 62460, - [SMALL_STATE(2035)] = 62470, - [SMALL_STATE(2036)] = 62482, - [SMALL_STATE(2037)] = 62496, - [SMALL_STATE(2038)] = 62510, - [SMALL_STATE(2039)] = 62524, - [SMALL_STATE(2040)] = 62536, - [SMALL_STATE(2041)] = 62550, - [SMALL_STATE(2042)] = 62564, - [SMALL_STATE(2043)] = 62578, - [SMALL_STATE(2044)] = 62592, - [SMALL_STATE(2045)] = 62602, - [SMALL_STATE(2046)] = 62616, - [SMALL_STATE(2047)] = 62630, - [SMALL_STATE(2048)] = 62644, - [SMALL_STATE(2049)] = 62654, - [SMALL_STATE(2050)] = 62664, - [SMALL_STATE(2051)] = 62678, - [SMALL_STATE(2052)] = 62690, - [SMALL_STATE(2053)] = 62700, - [SMALL_STATE(2054)] = 62714, - [SMALL_STATE(2055)] = 62726, - [SMALL_STATE(2056)] = 62740, - [SMALL_STATE(2057)] = 62752, - [SMALL_STATE(2058)] = 62766, - [SMALL_STATE(2059)] = 62776, - [SMALL_STATE(2060)] = 62790, - [SMALL_STATE(2061)] = 62804, - [SMALL_STATE(2062)] = 62814, - [SMALL_STATE(2063)] = 62828, - [SMALL_STATE(2064)] = 62842, - [SMALL_STATE(2065)] = 62856, - [SMALL_STATE(2066)] = 62870, - [SMALL_STATE(2067)] = 62884, - [SMALL_STATE(2068)] = 62898, - [SMALL_STATE(2069)] = 62912, - [SMALL_STATE(2070)] = 62926, - [SMALL_STATE(2071)] = 62940, - [SMALL_STATE(2072)] = 62954, - [SMALL_STATE(2073)] = 62968, - [SMALL_STATE(2074)] = 62982, - [SMALL_STATE(2075)] = 62996, - [SMALL_STATE(2076)] = 63010, - [SMALL_STATE(2077)] = 63024, - [SMALL_STATE(2078)] = 63038, - [SMALL_STATE(2079)] = 63050, - [SMALL_STATE(2080)] = 63064, - [SMALL_STATE(2081)] = 63078, - [SMALL_STATE(2082)] = 63092, - [SMALL_STATE(2083)] = 63104, - [SMALL_STATE(2084)] = 63118, - [SMALL_STATE(2085)] = 63132, - [SMALL_STATE(2086)] = 63144, - [SMALL_STATE(2087)] = 63158, - [SMALL_STATE(2088)] = 63168, - [SMALL_STATE(2089)] = 63180, - [SMALL_STATE(2090)] = 63194, - [SMALL_STATE(2091)] = 63206, - [SMALL_STATE(2092)] = 63220, - [SMALL_STATE(2093)] = 63234, - [SMALL_STATE(2094)] = 63248, - [SMALL_STATE(2095)] = 63262, - [SMALL_STATE(2096)] = 63274, - [SMALL_STATE(2097)] = 63288, - [SMALL_STATE(2098)] = 63302, - [SMALL_STATE(2099)] = 63316, - [SMALL_STATE(2100)] = 63330, - [SMALL_STATE(2101)] = 63344, - [SMALL_STATE(2102)] = 63358, - [SMALL_STATE(2103)] = 63372, - [SMALL_STATE(2104)] = 63386, - [SMALL_STATE(2105)] = 63400, - [SMALL_STATE(2106)] = 63414, - [SMALL_STATE(2107)] = 63428, - [SMALL_STATE(2108)] = 63442, - [SMALL_STATE(2109)] = 63454, - [SMALL_STATE(2110)] = 63468, - [SMALL_STATE(2111)] = 63482, - [SMALL_STATE(2112)] = 63496, - [SMALL_STATE(2113)] = 63510, - [SMALL_STATE(2114)] = 63524, - [SMALL_STATE(2115)] = 63538, - [SMALL_STATE(2116)] = 63549, - [SMALL_STATE(2117)] = 63560, - [SMALL_STATE(2118)] = 63571, - [SMALL_STATE(2119)] = 63582, - [SMALL_STATE(2120)] = 63593, - [SMALL_STATE(2121)] = 63604, - [SMALL_STATE(2122)] = 63615, - [SMALL_STATE(2123)] = 63626, - [SMALL_STATE(2124)] = 63637, - [SMALL_STATE(2125)] = 63648, - [SMALL_STATE(2126)] = 63659, - [SMALL_STATE(2127)] = 63670, - [SMALL_STATE(2128)] = 63681, - [SMALL_STATE(2129)] = 63692, - [SMALL_STATE(2130)] = 63703, - [SMALL_STATE(2131)] = 63714, - [SMALL_STATE(2132)] = 63725, - [SMALL_STATE(2133)] = 63736, - [SMALL_STATE(2134)] = 63747, - [SMALL_STATE(2135)] = 63758, - [SMALL_STATE(2136)] = 63769, - [SMALL_STATE(2137)] = 63780, - [SMALL_STATE(2138)] = 63789, - [SMALL_STATE(2139)] = 63798, - [SMALL_STATE(2140)] = 63809, - [SMALL_STATE(2141)] = 63820, - [SMALL_STATE(2142)] = 63831, - [SMALL_STATE(2143)] = 63842, - [SMALL_STATE(2144)] = 63853, - [SMALL_STATE(2145)] = 63862, - [SMALL_STATE(2146)] = 63873, - [SMALL_STATE(2147)] = 63884, - [SMALL_STATE(2148)] = 63895, - [SMALL_STATE(2149)] = 63906, - [SMALL_STATE(2150)] = 63917, - [SMALL_STATE(2151)] = 63928, - [SMALL_STATE(2152)] = 63937, - [SMALL_STATE(2153)] = 63948, - [SMALL_STATE(2154)] = 63959, - [SMALL_STATE(2155)] = 63970, - [SMALL_STATE(2156)] = 63981, - [SMALL_STATE(2157)] = 63992, - [SMALL_STATE(2158)] = 64001, - [SMALL_STATE(2159)] = 64010, - [SMALL_STATE(2160)] = 64021, - [SMALL_STATE(2161)] = 64030, - [SMALL_STATE(2162)] = 64041, - [SMALL_STATE(2163)] = 64052, - [SMALL_STATE(2164)] = 64063, - [SMALL_STATE(2165)] = 64074, - [SMALL_STATE(2166)] = 64083, - [SMALL_STATE(2167)] = 64094, - [SMALL_STATE(2168)] = 64105, - [SMALL_STATE(2169)] = 64116, - [SMALL_STATE(2170)] = 64127, - [SMALL_STATE(2171)] = 64138, - [SMALL_STATE(2172)] = 64149, - [SMALL_STATE(2173)] = 64160, - [SMALL_STATE(2174)] = 64169, - [SMALL_STATE(2175)] = 64180, - [SMALL_STATE(2176)] = 64191, - [SMALL_STATE(2177)] = 64202, - [SMALL_STATE(2178)] = 64211, - [SMALL_STATE(2179)] = 64222, - [SMALL_STATE(2180)] = 64233, - [SMALL_STATE(2181)] = 64244, - [SMALL_STATE(2182)] = 64255, - [SMALL_STATE(2183)] = 64266, - [SMALL_STATE(2184)] = 64277, - [SMALL_STATE(2185)] = 64288, - [SMALL_STATE(2186)] = 64299, - [SMALL_STATE(2187)] = 64310, - [SMALL_STATE(2188)] = 64321, - [SMALL_STATE(2189)] = 64332, - [SMALL_STATE(2190)] = 64343, - [SMALL_STATE(2191)] = 64354, - [SMALL_STATE(2192)] = 64363, - [SMALL_STATE(2193)] = 64374, - [SMALL_STATE(2194)] = 64385, - [SMALL_STATE(2195)] = 64394, - [SMALL_STATE(2196)] = 64405, - [SMALL_STATE(2197)] = 64416, - [SMALL_STATE(2198)] = 64427, - [SMALL_STATE(2199)] = 64438, - [SMALL_STATE(2200)] = 64449, - [SMALL_STATE(2201)] = 64460, - [SMALL_STATE(2202)] = 64471, - [SMALL_STATE(2203)] = 64482, - [SMALL_STATE(2204)] = 64493, - [SMALL_STATE(2205)] = 64504, - [SMALL_STATE(2206)] = 64513, - [SMALL_STATE(2207)] = 64524, - [SMALL_STATE(2208)] = 64535, - [SMALL_STATE(2209)] = 64546, - [SMALL_STATE(2210)] = 64557, - [SMALL_STATE(2211)] = 64568, - [SMALL_STATE(2212)] = 64579, - [SMALL_STATE(2213)] = 64590, - [SMALL_STATE(2214)] = 64601, - [SMALL_STATE(2215)] = 64612, - [SMALL_STATE(2216)] = 64621, - [SMALL_STATE(2217)] = 64632, - [SMALL_STATE(2218)] = 64643, - [SMALL_STATE(2219)] = 64654, - [SMALL_STATE(2220)] = 64665, - [SMALL_STATE(2221)] = 64676, - [SMALL_STATE(2222)] = 64687, - [SMALL_STATE(2223)] = 64698, - [SMALL_STATE(2224)] = 64709, - [SMALL_STATE(2225)] = 64720, - [SMALL_STATE(2226)] = 64731, - [SMALL_STATE(2227)] = 64742, - [SMALL_STATE(2228)] = 64753, - [SMALL_STATE(2229)] = 64764, - [SMALL_STATE(2230)] = 64775, - [SMALL_STATE(2231)] = 64786, - [SMALL_STATE(2232)] = 64797, - [SMALL_STATE(2233)] = 64806, - [SMALL_STATE(2234)] = 64817, - [SMALL_STATE(2235)] = 64828, - [SMALL_STATE(2236)] = 64839, - [SMALL_STATE(2237)] = 64850, - [SMALL_STATE(2238)] = 64861, - [SMALL_STATE(2239)] = 64870, - [SMALL_STATE(2240)] = 64881, - [SMALL_STATE(2241)] = 64892, - [SMALL_STATE(2242)] = 64903, - [SMALL_STATE(2243)] = 64914, - [SMALL_STATE(2244)] = 64925, - [SMALL_STATE(2245)] = 64936, - [SMALL_STATE(2246)] = 64947, - [SMALL_STATE(2247)] = 64958, - [SMALL_STATE(2248)] = 64969, - [SMALL_STATE(2249)] = 64978, - [SMALL_STATE(2250)] = 64989, - [SMALL_STATE(2251)] = 65000, - [SMALL_STATE(2252)] = 65011, - [SMALL_STATE(2253)] = 65022, - [SMALL_STATE(2254)] = 65033, - [SMALL_STATE(2255)] = 65042, - [SMALL_STATE(2256)] = 65053, - [SMALL_STATE(2257)] = 65064, - [SMALL_STATE(2258)] = 65075, - [SMALL_STATE(2259)] = 65086, - [SMALL_STATE(2260)] = 65097, - [SMALL_STATE(2261)] = 65108, - [SMALL_STATE(2262)] = 65117, - [SMALL_STATE(2263)] = 65128, - [SMALL_STATE(2264)] = 65139, - [SMALL_STATE(2265)] = 65150, - [SMALL_STATE(2266)] = 65161, - [SMALL_STATE(2267)] = 65172, - [SMALL_STATE(2268)] = 65183, - [SMALL_STATE(2269)] = 65194, - [SMALL_STATE(2270)] = 65205, - [SMALL_STATE(2271)] = 65216, - [SMALL_STATE(2272)] = 65227, - [SMALL_STATE(2273)] = 65238, - [SMALL_STATE(2274)] = 65249, - [SMALL_STATE(2275)] = 65260, - [SMALL_STATE(2276)] = 65271, - [SMALL_STATE(2277)] = 65282, - [SMALL_STATE(2278)] = 65293, - [SMALL_STATE(2279)] = 65304, - [SMALL_STATE(2280)] = 65315, - [SMALL_STATE(2281)] = 65326, - [SMALL_STATE(2282)] = 65335, - [SMALL_STATE(2283)] = 65346, - [SMALL_STATE(2284)] = 65355, - [SMALL_STATE(2285)] = 65364, - [SMALL_STATE(2286)] = 65373, - [SMALL_STATE(2287)] = 65384, - [SMALL_STATE(2288)] = 65395, - [SMALL_STATE(2289)] = 65406, - [SMALL_STATE(2290)] = 65417, - [SMALL_STATE(2291)] = 65428, - [SMALL_STATE(2292)] = 65439, - [SMALL_STATE(2293)] = 65450, - [SMALL_STATE(2294)] = 65461, - [SMALL_STATE(2295)] = 65472, - [SMALL_STATE(2296)] = 65483, - [SMALL_STATE(2297)] = 65494, - [SMALL_STATE(2298)] = 65505, - [SMALL_STATE(2299)] = 65516, - [SMALL_STATE(2300)] = 65527, - [SMALL_STATE(2301)] = 65538, - [SMALL_STATE(2302)] = 65547, - [SMALL_STATE(2303)] = 65556, - [SMALL_STATE(2304)] = 65565, - [SMALL_STATE(2305)] = 65576, - [SMALL_STATE(2306)] = 65587, - [SMALL_STATE(2307)] = 65598, - [SMALL_STATE(2308)] = 65609, - [SMALL_STATE(2309)] = 65620, - [SMALL_STATE(2310)] = 65631, - [SMALL_STATE(2311)] = 65640, - [SMALL_STATE(2312)] = 65651, - [SMALL_STATE(2313)] = 65662, - [SMALL_STATE(2314)] = 65673, - [SMALL_STATE(2315)] = 65684, - [SMALL_STATE(2316)] = 65695, - [SMALL_STATE(2317)] = 65706, - [SMALL_STATE(2318)] = 65717, - [SMALL_STATE(2319)] = 65725, - [SMALL_STATE(2320)] = 65733, - [SMALL_STATE(2321)] = 65741, - [SMALL_STATE(2322)] = 65749, - [SMALL_STATE(2323)] = 65757, - [SMALL_STATE(2324)] = 65765, - [SMALL_STATE(2325)] = 65773, - [SMALL_STATE(2326)] = 65781, - [SMALL_STATE(2327)] = 65789, - [SMALL_STATE(2328)] = 65797, - [SMALL_STATE(2329)] = 65805, - [SMALL_STATE(2330)] = 65813, - [SMALL_STATE(2331)] = 65821, - [SMALL_STATE(2332)] = 65829, - [SMALL_STATE(2333)] = 65837, - [SMALL_STATE(2334)] = 65845, - [SMALL_STATE(2335)] = 65853, - [SMALL_STATE(2336)] = 65861, - [SMALL_STATE(2337)] = 65869, - [SMALL_STATE(2338)] = 65877, - [SMALL_STATE(2339)] = 65885, - [SMALL_STATE(2340)] = 65893, - [SMALL_STATE(2341)] = 65901, - [SMALL_STATE(2342)] = 65909, - [SMALL_STATE(2343)] = 65917, - [SMALL_STATE(2344)] = 65925, - [SMALL_STATE(2345)] = 65933, - [SMALL_STATE(2346)] = 65941, - [SMALL_STATE(2347)] = 65949, - [SMALL_STATE(2348)] = 65957, - [SMALL_STATE(2349)] = 65965, - [SMALL_STATE(2350)] = 65973, - [SMALL_STATE(2351)] = 65981, - [SMALL_STATE(2352)] = 65989, - [SMALL_STATE(2353)] = 65997, - [SMALL_STATE(2354)] = 66005, - [SMALL_STATE(2355)] = 66013, - [SMALL_STATE(2356)] = 66021, - [SMALL_STATE(2357)] = 66029, - [SMALL_STATE(2358)] = 66037, - [SMALL_STATE(2359)] = 66045, - [SMALL_STATE(2360)] = 66053, - [SMALL_STATE(2361)] = 66061, - [SMALL_STATE(2362)] = 66069, - [SMALL_STATE(2363)] = 66077, - [SMALL_STATE(2364)] = 66085, - [SMALL_STATE(2365)] = 66093, - [SMALL_STATE(2366)] = 66101, - [SMALL_STATE(2367)] = 66109, - [SMALL_STATE(2368)] = 66117, - [SMALL_STATE(2369)] = 66125, - [SMALL_STATE(2370)] = 66133, - [SMALL_STATE(2371)] = 66141, - [SMALL_STATE(2372)] = 66149, - [SMALL_STATE(2373)] = 66157, - [SMALL_STATE(2374)] = 66165, - [SMALL_STATE(2375)] = 66173, - [SMALL_STATE(2376)] = 66181, - [SMALL_STATE(2377)] = 66189, - [SMALL_STATE(2378)] = 66197, - [SMALL_STATE(2379)] = 66205, - [SMALL_STATE(2380)] = 66213, - [SMALL_STATE(2381)] = 66221, - [SMALL_STATE(2382)] = 66229, - [SMALL_STATE(2383)] = 66237, - [SMALL_STATE(2384)] = 66245, - [SMALL_STATE(2385)] = 66253, - [SMALL_STATE(2386)] = 66261, - [SMALL_STATE(2387)] = 66269, - [SMALL_STATE(2388)] = 66277, - [SMALL_STATE(2389)] = 66285, - [SMALL_STATE(2390)] = 66293, - [SMALL_STATE(2391)] = 66301, - [SMALL_STATE(2392)] = 66309, - [SMALL_STATE(2393)] = 66317, - [SMALL_STATE(2394)] = 66325, - [SMALL_STATE(2395)] = 66333, - [SMALL_STATE(2396)] = 66341, - [SMALL_STATE(2397)] = 66349, - [SMALL_STATE(2398)] = 66357, - [SMALL_STATE(2399)] = 66365, - [SMALL_STATE(2400)] = 66373, - [SMALL_STATE(2401)] = 66381, - [SMALL_STATE(2402)] = 66389, - [SMALL_STATE(2403)] = 66397, - [SMALL_STATE(2404)] = 66405, - [SMALL_STATE(2405)] = 66413, - [SMALL_STATE(2406)] = 66421, - [SMALL_STATE(2407)] = 66429, - [SMALL_STATE(2408)] = 66437, - [SMALL_STATE(2409)] = 66445, - [SMALL_STATE(2410)] = 66453, - [SMALL_STATE(2411)] = 66461, - [SMALL_STATE(2412)] = 66469, - [SMALL_STATE(2413)] = 66477, - [SMALL_STATE(2414)] = 66485, - [SMALL_STATE(2415)] = 66493, - [SMALL_STATE(2416)] = 66501, - [SMALL_STATE(2417)] = 66509, - [SMALL_STATE(2418)] = 66517, - [SMALL_STATE(2419)] = 66525, - [SMALL_STATE(2420)] = 66533, - [SMALL_STATE(2421)] = 66541, - [SMALL_STATE(2422)] = 66549, - [SMALL_STATE(2423)] = 66557, - [SMALL_STATE(2424)] = 66565, - [SMALL_STATE(2425)] = 66573, - [SMALL_STATE(2426)] = 66581, - [SMALL_STATE(2427)] = 66589, - [SMALL_STATE(2428)] = 66597, - [SMALL_STATE(2429)] = 66605, - [SMALL_STATE(2430)] = 66613, - [SMALL_STATE(2431)] = 66621, - [SMALL_STATE(2432)] = 66629, - [SMALL_STATE(2433)] = 66637, - [SMALL_STATE(2434)] = 66645, - [SMALL_STATE(2435)] = 66653, - [SMALL_STATE(2436)] = 66661, - [SMALL_STATE(2437)] = 66669, - [SMALL_STATE(2438)] = 66677, - [SMALL_STATE(2439)] = 66685, - [SMALL_STATE(2440)] = 66693, - [SMALL_STATE(2441)] = 66701, - [SMALL_STATE(2442)] = 66709, - [SMALL_STATE(2443)] = 66717, - [SMALL_STATE(2444)] = 66725, - [SMALL_STATE(2445)] = 66733, - [SMALL_STATE(2446)] = 66741, - [SMALL_STATE(2447)] = 66749, - [SMALL_STATE(2448)] = 66757, - [SMALL_STATE(2449)] = 66765, - [SMALL_STATE(2450)] = 66773, - [SMALL_STATE(2451)] = 66781, - [SMALL_STATE(2452)] = 66789, - [SMALL_STATE(2453)] = 66797, - [SMALL_STATE(2454)] = 66805, - [SMALL_STATE(2455)] = 66813, - [SMALL_STATE(2456)] = 66821, - [SMALL_STATE(2457)] = 66829, - [SMALL_STATE(2458)] = 66837, - [SMALL_STATE(2459)] = 66845, - [SMALL_STATE(2460)] = 66853, - [SMALL_STATE(2461)] = 66861, - [SMALL_STATE(2462)] = 66869, - [SMALL_STATE(2463)] = 66877, - [SMALL_STATE(2464)] = 66885, - [SMALL_STATE(2465)] = 66893, - [SMALL_STATE(2466)] = 66901, - [SMALL_STATE(2467)] = 66909, - [SMALL_STATE(2468)] = 66917, - [SMALL_STATE(2469)] = 66925, - [SMALL_STATE(2470)] = 66933, - [SMALL_STATE(2471)] = 66941, - [SMALL_STATE(2472)] = 66949, - [SMALL_STATE(2473)] = 66957, - [SMALL_STATE(2474)] = 66965, - [SMALL_STATE(2475)] = 66973, - [SMALL_STATE(2476)] = 66981, - [SMALL_STATE(2477)] = 66989, - [SMALL_STATE(2478)] = 66997, - [SMALL_STATE(2479)] = 67005, - [SMALL_STATE(2480)] = 67013, - [SMALL_STATE(2481)] = 67021, - [SMALL_STATE(2482)] = 67029, - [SMALL_STATE(2483)] = 67037, - [SMALL_STATE(2484)] = 67045, - [SMALL_STATE(2485)] = 67053, - [SMALL_STATE(2486)] = 67061, - [SMALL_STATE(2487)] = 67069, - [SMALL_STATE(2488)] = 67077, - [SMALL_STATE(2489)] = 67085, - [SMALL_STATE(2490)] = 67093, - [SMALL_STATE(2491)] = 67101, - [SMALL_STATE(2492)] = 67109, - [SMALL_STATE(2493)] = 67117, - [SMALL_STATE(2494)] = 67125, - [SMALL_STATE(2495)] = 67133, - [SMALL_STATE(2496)] = 67141, - [SMALL_STATE(2497)] = 67149, - [SMALL_STATE(2498)] = 67157, - [SMALL_STATE(2499)] = 67165, - [SMALL_STATE(2500)] = 67173, - [SMALL_STATE(2501)] = 67181, - [SMALL_STATE(2502)] = 67189, - [SMALL_STATE(2503)] = 67197, - [SMALL_STATE(2504)] = 67205, - [SMALL_STATE(2505)] = 67213, - [SMALL_STATE(2506)] = 67221, - [SMALL_STATE(2507)] = 67229, - [SMALL_STATE(2508)] = 67237, - [SMALL_STATE(2509)] = 67245, - [SMALL_STATE(2510)] = 67253, - [SMALL_STATE(2511)] = 67261, - [SMALL_STATE(2512)] = 67269, - [SMALL_STATE(2513)] = 67277, - [SMALL_STATE(2514)] = 67285, - [SMALL_STATE(2515)] = 67293, - [SMALL_STATE(2516)] = 67301, - [SMALL_STATE(2517)] = 67309, - [SMALL_STATE(2518)] = 67317, - [SMALL_STATE(2519)] = 67325, - [SMALL_STATE(2520)] = 67333, - [SMALL_STATE(2521)] = 67341, - [SMALL_STATE(2522)] = 67349, - [SMALL_STATE(2523)] = 67357, - [SMALL_STATE(2524)] = 67365, - [SMALL_STATE(2525)] = 67373, - [SMALL_STATE(2526)] = 67381, - [SMALL_STATE(2527)] = 67389, - [SMALL_STATE(2528)] = 67397, - [SMALL_STATE(2529)] = 67405, - [SMALL_STATE(2530)] = 67413, - [SMALL_STATE(2531)] = 67421, - [SMALL_STATE(2532)] = 67429, - [SMALL_STATE(2533)] = 67437, - [SMALL_STATE(2534)] = 67445, - [SMALL_STATE(2535)] = 67453, - [SMALL_STATE(2536)] = 67461, - [SMALL_STATE(2537)] = 67469, - [SMALL_STATE(2538)] = 67477, - [SMALL_STATE(2539)] = 67485, - [SMALL_STATE(2540)] = 67493, - [SMALL_STATE(2541)] = 67501, - [SMALL_STATE(2542)] = 67509, - [SMALL_STATE(2543)] = 67517, - [SMALL_STATE(2544)] = 67525, - [SMALL_STATE(2545)] = 67533, - [SMALL_STATE(2546)] = 67541, - [SMALL_STATE(2547)] = 67549, - [SMALL_STATE(2548)] = 67557, - [SMALL_STATE(2549)] = 67565, - [SMALL_STATE(2550)] = 67573, - [SMALL_STATE(2551)] = 67581, - [SMALL_STATE(2552)] = 67589, - [SMALL_STATE(2553)] = 67597, - [SMALL_STATE(2554)] = 67605, - [SMALL_STATE(2555)] = 67613, - [SMALL_STATE(2556)] = 67621, - [SMALL_STATE(2557)] = 67629, - [SMALL_STATE(2558)] = 67637, - [SMALL_STATE(2559)] = 67645, - [SMALL_STATE(2560)] = 67653, - [SMALL_STATE(2561)] = 67661, - [SMALL_STATE(2562)] = 67669, - [SMALL_STATE(2563)] = 67677, - [SMALL_STATE(2564)] = 67685, - [SMALL_STATE(2565)] = 67693, - [SMALL_STATE(2566)] = 67701, - [SMALL_STATE(2567)] = 67709, - [SMALL_STATE(2568)] = 67717, + [SMALL_STATE(1199)] = 39444, + [SMALL_STATE(1200)] = 39527, + [SMALL_STATE(1201)] = 39582, + [SMALL_STATE(1202)] = 39665, + [SMALL_STATE(1203)] = 39748, + [SMALL_STATE(1204)] = 39805, + [SMALL_STATE(1205)] = 39888, + [SMALL_STATE(1206)] = 39965, + [SMALL_STATE(1207)] = 40048, + [SMALL_STATE(1208)] = 40119, + [SMALL_STATE(1209)] = 40174, + [SMALL_STATE(1210)] = 40257, + [SMALL_STATE(1211)] = 40340, + [SMALL_STATE(1212)] = 40423, + [SMALL_STATE(1213)] = 40504, + [SMALL_STATE(1214)] = 40587, + [SMALL_STATE(1215)] = 40670, + [SMALL_STATE(1216)] = 40753, + [SMALL_STATE(1217)] = 40836, + [SMALL_STATE(1218)] = 40919, + [SMALL_STATE(1219)] = 41000, + [SMALL_STATE(1220)] = 41083, + [SMALL_STATE(1221)] = 41166, + [SMALL_STATE(1222)] = 41243, + [SMALL_STATE(1223)] = 41326, + [SMALL_STATE(1224)] = 41407, + [SMALL_STATE(1225)] = 41468, + [SMALL_STATE(1226)] = 41549, + [SMALL_STATE(1227)] = 41632, + [SMALL_STATE(1228)] = 41713, + [SMALL_STATE(1229)] = 41796, + [SMALL_STATE(1230)] = 41879, + [SMALL_STATE(1231)] = 41962, + [SMALL_STATE(1232)] = 42045, + [SMALL_STATE(1233)] = 42110, + [SMALL_STATE(1234)] = 42193, + [SMALL_STATE(1235)] = 42276, + [SMALL_STATE(1236)] = 42343, + [SMALL_STATE(1237)] = 42418, + [SMALL_STATE(1238)] = 42501, + [SMALL_STATE(1239)] = 42578, + [SMALL_STATE(1240)] = 42661, + [SMALL_STATE(1241)] = 42734, + [SMALL_STATE(1242)] = 42797, + [SMALL_STATE(1243)] = 42880, + [SMALL_STATE(1244)] = 42963, + [SMALL_STATE(1245)] = 43032, + [SMALL_STATE(1246)] = 43115, + [SMALL_STATE(1247)] = 43198, + [SMALL_STATE(1248)] = 43275, + [SMALL_STATE(1249)] = 43358, + [SMALL_STATE(1250)] = 43417, + [SMALL_STATE(1251)] = 43498, + [SMALL_STATE(1252)] = 43581, + [SMALL_STATE(1253)] = 43662, + [SMALL_STATE(1254)] = 43717, + [SMALL_STATE(1255)] = 43798, + [SMALL_STATE(1256)] = 43879, + [SMALL_STATE(1257)] = 43960, + [SMALL_STATE(1258)] = 44043, + [SMALL_STATE(1259)] = 44124, + [SMALL_STATE(1260)] = 44207, + [SMALL_STATE(1261)] = 44290, + [SMALL_STATE(1262)] = 44373, + [SMALL_STATE(1263)] = 44454, + [SMALL_STATE(1264)] = 44531, + [SMALL_STATE(1265)] = 44611, + [SMALL_STATE(1266)] = 44691, + [SMALL_STATE(1267)] = 44771, + [SMALL_STATE(1268)] = 44851, + [SMALL_STATE(1269)] = 44929, + [SMALL_STATE(1270)] = 45009, + [SMALL_STATE(1271)] = 45087, + [SMALL_STATE(1272)] = 45167, + [SMALL_STATE(1273)] = 45247, + [SMALL_STATE(1274)] = 45327, + [SMALL_STATE(1275)] = 45407, + [SMALL_STATE(1276)] = 45487, + [SMALL_STATE(1277)] = 45567, + [SMALL_STATE(1278)] = 45647, + [SMALL_STATE(1279)] = 45727, + [SMALL_STATE(1280)] = 45807, + [SMALL_STATE(1281)] = 45885, + [SMALL_STATE(1282)] = 45965, + [SMALL_STATE(1283)] = 46045, + [SMALL_STATE(1284)] = 46123, + [SMALL_STATE(1285)] = 46203, + [SMALL_STATE(1286)] = 46283, + [SMALL_STATE(1287)] = 46363, + [SMALL_STATE(1288)] = 46443, + [SMALL_STATE(1289)] = 46523, + [SMALL_STATE(1290)] = 46591, + [SMALL_STATE(1291)] = 46671, + [SMALL_STATE(1292)] = 46751, + [SMALL_STATE(1293)] = 46831, + [SMALL_STATE(1294)] = 46911, + [SMALL_STATE(1295)] = 46991, + [SMALL_STATE(1296)] = 47059, + [SMALL_STATE(1297)] = 47124, + [SMALL_STATE(1298)] = 47189, + [SMALL_STATE(1299)] = 47254, + [SMALL_STATE(1300)] = 47319, + [SMALL_STATE(1301)] = 47384, + [SMALL_STATE(1302)] = 47424, + [SMALL_STATE(1303)] = 47464, + [SMALL_STATE(1304)] = 47504, + [SMALL_STATE(1305)] = 47559, + [SMALL_STATE(1306)] = 47614, + [SMALL_STATE(1307)] = 47669, + [SMALL_STATE(1308)] = 47724, + [SMALL_STATE(1309)] = 47779, + [SMALL_STATE(1310)] = 47834, + [SMALL_STATE(1311)] = 47889, + [SMALL_STATE(1312)] = 47941, + [SMALL_STATE(1313)] = 47993, + [SMALL_STATE(1314)] = 48024, + [SMALL_STATE(1315)] = 48055, + [SMALL_STATE(1316)] = 48101, + [SMALL_STATE(1317)] = 48142, + [SMALL_STATE(1318)] = 48172, + [SMALL_STATE(1319)] = 48202, + [SMALL_STATE(1320)] = 48240, + [SMALL_STATE(1321)] = 48270, + [SMALL_STATE(1322)] = 48300, + [SMALL_STATE(1323)] = 48330, + [SMALL_STATE(1324)] = 48360, + [SMALL_STATE(1325)] = 48390, + [SMALL_STATE(1326)] = 48420, + [SMALL_STATE(1327)] = 48458, + [SMALL_STATE(1328)] = 48491, + [SMALL_STATE(1329)] = 48518, + [SMALL_STATE(1330)] = 48551, + [SMALL_STATE(1331)] = 48578, + [SMALL_STATE(1332)] = 48611, + [SMALL_STATE(1333)] = 48638, + [SMALL_STATE(1334)] = 48664, + [SMALL_STATE(1335)] = 48718, + [SMALL_STATE(1336)] = 48744, + [SMALL_STATE(1337)] = 48770, + [SMALL_STATE(1338)] = 48804, + [SMALL_STATE(1339)] = 48830, + [SMALL_STATE(1340)] = 48884, + [SMALL_STATE(1341)] = 48908, + [SMALL_STATE(1342)] = 48933, + [SMALL_STATE(1343)] = 48958, + [SMALL_STATE(1344)] = 48981, + [SMALL_STATE(1345)] = 49006, + [SMALL_STATE(1346)] = 49031, + [SMALL_STATE(1347)] = 49056, + [SMALL_STATE(1348)] = 49081, + [SMALL_STATE(1349)] = 49112, + [SMALL_STATE(1350)] = 49136, + [SMALL_STATE(1351)] = 49158, + [SMALL_STATE(1352)] = 49182, + [SMALL_STATE(1353)] = 49206, + [SMALL_STATE(1354)] = 49230, + [SMALL_STATE(1355)] = 49252, + [SMALL_STATE(1356)] = 49278, + [SMALL_STATE(1357)] = 49302, + [SMALL_STATE(1358)] = 49326, + [SMALL_STATE(1359)] = 49350, + [SMALL_STATE(1360)] = 49376, + [SMALL_STATE(1361)] = 49398, + [SMALL_STATE(1362)] = 49422, + [SMALL_STATE(1363)] = 49448, + [SMALL_STATE(1364)] = 49472, + [SMALL_STATE(1365)] = 49500, + [SMALL_STATE(1366)] = 49522, + [SMALL_STATE(1367)] = 49546, + [SMALL_STATE(1368)] = 49568, + [SMALL_STATE(1369)] = 49594, + [SMALL_STATE(1370)] = 49638, + [SMALL_STATE(1371)] = 49660, + [SMALL_STATE(1372)] = 49682, + [SMALL_STATE(1373)] = 49704, + [SMALL_STATE(1374)] = 49750, + [SMALL_STATE(1375)] = 49776, + [SMALL_STATE(1376)] = 49820, + [SMALL_STATE(1377)] = 49841, + [SMALL_STATE(1378)] = 49862, + [SMALL_STATE(1379)] = 49883, + [SMALL_STATE(1380)] = 49904, + [SMALL_STATE(1381)] = 49949, + [SMALL_STATE(1382)] = 49970, + [SMALL_STATE(1383)] = 49991, + [SMALL_STATE(1384)] = 50012, + [SMALL_STATE(1385)] = 50033, + [SMALL_STATE(1386)] = 50054, + [SMALL_STATE(1387)] = 50075, + [SMALL_STATE(1388)] = 50096, + [SMALL_STATE(1389)] = 50117, + [SMALL_STATE(1390)] = 50142, + [SMALL_STATE(1391)] = 50163, + [SMALL_STATE(1392)] = 50186, + [SMALL_STATE(1393)] = 50207, + [SMALL_STATE(1394)] = 50230, + [SMALL_STATE(1395)] = 50251, + [SMALL_STATE(1396)] = 50282, + [SMALL_STATE(1397)] = 50307, + [SMALL_STATE(1398)] = 50330, + [SMALL_STATE(1399)] = 50351, + [SMALL_STATE(1400)] = 50372, + [SMALL_STATE(1401)] = 50393, + [SMALL_STATE(1402)] = 50414, + [SMALL_STATE(1403)] = 50435, + [SMALL_STATE(1404)] = 50456, + [SMALL_STATE(1405)] = 50477, + [SMALL_STATE(1406)] = 50498, + [SMALL_STATE(1407)] = 50522, + [SMALL_STATE(1408)] = 50544, + [SMALL_STATE(1409)] = 50572, + [SMALL_STATE(1410)] = 50596, + [SMALL_STATE(1411)] = 50620, + [SMALL_STATE(1412)] = 50644, + [SMALL_STATE(1413)] = 50668, + [SMALL_STATE(1414)] = 50692, + [SMALL_STATE(1415)] = 50714, + [SMALL_STATE(1416)] = 50736, + [SMALL_STATE(1417)] = 50760, + [SMALL_STATE(1418)] = 50784, + [SMALL_STATE(1419)] = 50805, + [SMALL_STATE(1420)] = 50828, + [SMALL_STATE(1421)] = 50849, + [SMALL_STATE(1422)] = 50870, + [SMALL_STATE(1423)] = 50891, + [SMALL_STATE(1424)] = 50916, + [SMALL_STATE(1425)] = 50939, + [SMALL_STATE(1426)] = 50960, + [SMALL_STATE(1427)] = 50981, + [SMALL_STATE(1428)] = 51002, + [SMALL_STATE(1429)] = 51023, + [SMALL_STATE(1430)] = 51044, + [SMALL_STATE(1431)] = 51067, + [SMALL_STATE(1432)] = 51092, + [SMALL_STATE(1433)] = 51113, + [SMALL_STATE(1434)] = 51138, + [SMALL_STATE(1435)] = 51159, + [SMALL_STATE(1436)] = 51182, + [SMALL_STATE(1437)] = 51203, + [SMALL_STATE(1438)] = 51224, + [SMALL_STATE(1439)] = 51245, + [SMALL_STATE(1440)] = 51274, + [SMALL_STATE(1441)] = 51295, + [SMALL_STATE(1442)] = 51316, + [SMALL_STATE(1443)] = 51337, + [SMALL_STATE(1444)] = 51358, + [SMALL_STATE(1445)] = 51379, + [SMALL_STATE(1446)] = 51404, + [SMALL_STATE(1447)] = 51425, + [SMALL_STATE(1448)] = 51446, + [SMALL_STATE(1449)] = 51467, + [SMALL_STATE(1450)] = 51492, + [SMALL_STATE(1451)] = 51513, + [SMALL_STATE(1452)] = 51534, + [SMALL_STATE(1453)] = 51555, + [SMALL_STATE(1454)] = 51576, + [SMALL_STATE(1455)] = 51597, + [SMALL_STATE(1456)] = 51618, + [SMALL_STATE(1457)] = 51639, + [SMALL_STATE(1458)] = 51664, + [SMALL_STATE(1459)] = 51685, + [SMALL_STATE(1460)] = 51710, + [SMALL_STATE(1461)] = 51731, + [SMALL_STATE(1462)] = 51756, + [SMALL_STATE(1463)] = 51788, + [SMALL_STATE(1464)] = 51820, + [SMALL_STATE(1465)] = 51844, + [SMALL_STATE(1466)] = 51876, + [SMALL_STATE(1467)] = 51908, + [SMALL_STATE(1468)] = 51932, + [SMALL_STATE(1469)] = 51964, + [SMALL_STATE(1470)] = 51996, + [SMALL_STATE(1471)] = 52028, + [SMALL_STATE(1472)] = 52052, + [SMALL_STATE(1473)] = 52076, + [SMALL_STATE(1474)] = 52108, + [SMALL_STATE(1475)] = 52135, + [SMALL_STATE(1476)] = 52164, + [SMALL_STATE(1477)] = 52189, + [SMALL_STATE(1478)] = 52220, + [SMALL_STATE(1479)] = 52253, + [SMALL_STATE(1480)] = 52286, + [SMALL_STATE(1481)] = 52319, + [SMALL_STATE(1482)] = 52352, + [SMALL_STATE(1483)] = 52378, + [SMALL_STATE(1484)] = 52404, + [SMALL_STATE(1485)] = 52426, + [SMALL_STATE(1486)] = 52456, + [SMALL_STATE(1487)] = 52488, + [SMALL_STATE(1488)] = 52518, + [SMALL_STATE(1489)] = 52548, + [SMALL_STATE(1490)] = 52578, + [SMALL_STATE(1491)] = 52608, + [SMALL_STATE(1492)] = 52634, + [SMALL_STATE(1493)] = 52666, + [SMALL_STATE(1494)] = 52692, + [SMALL_STATE(1495)] = 52722, + [SMALL_STATE(1496)] = 52752, + [SMALL_STATE(1497)] = 52784, + [SMALL_STATE(1498)] = 52810, + [SMALL_STATE(1499)] = 52840, + [SMALL_STATE(1500)] = 52866, + [SMALL_STATE(1501)] = 52896, + [SMALL_STATE(1502)] = 52918, + [SMALL_STATE(1503)] = 52948, + [SMALL_STATE(1504)] = 52978, + [SMALL_STATE(1505)] = 53004, + [SMALL_STATE(1506)] = 53030, + [SMALL_STATE(1507)] = 53056, + [SMALL_STATE(1508)] = 53082, + [SMALL_STATE(1509)] = 53112, + [SMALL_STATE(1510)] = 53142, + [SMALL_STATE(1511)] = 53164, + [SMALL_STATE(1512)] = 53186, + [SMALL_STATE(1513)] = 53216, + [SMALL_STATE(1514)] = 53246, + [SMALL_STATE(1515)] = 53276, + [SMALL_STATE(1516)] = 53306, + [SMALL_STATE(1517)] = 53336, + [SMALL_STATE(1518)] = 53358, + [SMALL_STATE(1519)] = 53388, + [SMALL_STATE(1520)] = 53418, + [SMALL_STATE(1521)] = 53450, + [SMALL_STATE(1522)] = 53480, + [SMALL_STATE(1523)] = 53506, + [SMALL_STATE(1524)] = 53528, + [SMALL_STATE(1525)] = 53555, + [SMALL_STATE(1526)] = 53576, + [SMALL_STATE(1527)] = 53597, + [SMALL_STATE(1528)] = 53624, + [SMALL_STATE(1529)] = 53647, + [SMALL_STATE(1530)] = 53674, + [SMALL_STATE(1531)] = 53689, + [SMALL_STATE(1532)] = 53718, + [SMALL_STATE(1533)] = 53747, + [SMALL_STATE(1534)] = 53776, + [SMALL_STATE(1535)] = 53805, + [SMALL_STATE(1536)] = 53832, + [SMALL_STATE(1537)] = 53859, + [SMALL_STATE(1538)] = 53878, + [SMALL_STATE(1539)] = 53897, + [SMALL_STATE(1540)] = 53916, + [SMALL_STATE(1541)] = 53935, + [SMALL_STATE(1542)] = 53954, + [SMALL_STATE(1543)] = 53981, + [SMALL_STATE(1544)] = 54008, + [SMALL_STATE(1545)] = 54035, + [SMALL_STATE(1546)] = 54058, + [SMALL_STATE(1547)] = 54083, + [SMALL_STATE(1548)] = 54102, + [SMALL_STATE(1549)] = 54125, + [SMALL_STATE(1550)] = 54144, + [SMALL_STATE(1551)] = 54163, + [SMALL_STATE(1552)] = 54190, + [SMALL_STATE(1553)] = 54213, + [SMALL_STATE(1554)] = 54232, + [SMALL_STATE(1555)] = 54259, + [SMALL_STATE(1556)] = 54288, + [SMALL_STATE(1557)] = 54315, + [SMALL_STATE(1558)] = 54338, + [SMALL_STATE(1559)] = 54365, + [SMALL_STATE(1560)] = 54392, + [SMALL_STATE(1561)] = 54419, + [SMALL_STATE(1562)] = 54438, + [SMALL_STATE(1563)] = 54465, + [SMALL_STATE(1564)] = 54494, + [SMALL_STATE(1565)] = 54513, + [SMALL_STATE(1566)] = 54537, + [SMALL_STATE(1567)] = 54559, + [SMALL_STATE(1568)] = 54575, + [SMALL_STATE(1569)] = 54589, + [SMALL_STATE(1570)] = 54605, + [SMALL_STATE(1571)] = 54619, + [SMALL_STATE(1572)] = 54645, + [SMALL_STATE(1573)] = 54659, + [SMALL_STATE(1574)] = 54675, + [SMALL_STATE(1575)] = 54699, + [SMALL_STATE(1576)] = 54713, + [SMALL_STATE(1577)] = 54739, + [SMALL_STATE(1578)] = 54755, + [SMALL_STATE(1579)] = 54781, + [SMALL_STATE(1580)] = 54807, + [SMALL_STATE(1581)] = 54833, + [SMALL_STATE(1582)] = 54859, + [SMALL_STATE(1583)] = 54885, + [SMALL_STATE(1584)] = 54901, + [SMALL_STATE(1585)] = 54927, + [SMALL_STATE(1586)] = 54943, + [SMALL_STATE(1587)] = 54959, + [SMALL_STATE(1588)] = 54985, + [SMALL_STATE(1589)] = 55011, + [SMALL_STATE(1590)] = 55035, + [SMALL_STATE(1591)] = 55061, + [SMALL_STATE(1592)] = 55075, + [SMALL_STATE(1593)] = 55101, + [SMALL_STATE(1594)] = 55115, + [SMALL_STATE(1595)] = 55141, + [SMALL_STATE(1596)] = 55155, + [SMALL_STATE(1597)] = 55175, + [SMALL_STATE(1598)] = 55201, + [SMALL_STATE(1599)] = 55227, + [SMALL_STATE(1600)] = 55253, + [SMALL_STATE(1601)] = 55269, + [SMALL_STATE(1602)] = 55295, + [SMALL_STATE(1603)] = 55321, + [SMALL_STATE(1604)] = 55347, + [SMALL_STATE(1605)] = 55371, + [SMALL_STATE(1606)] = 55397, + [SMALL_STATE(1607)] = 55419, + [SMALL_STATE(1608)] = 55443, + [SMALL_STATE(1609)] = 55469, + [SMALL_STATE(1610)] = 55495, + [SMALL_STATE(1611)] = 55521, + [SMALL_STATE(1612)] = 55547, + [SMALL_STATE(1613)] = 55570, + [SMALL_STATE(1614)] = 55593, + [SMALL_STATE(1615)] = 55616, + [SMALL_STATE(1616)] = 55631, + [SMALL_STATE(1617)] = 55654, + [SMALL_STATE(1618)] = 55677, + [SMALL_STATE(1619)] = 55700, + [SMALL_STATE(1620)] = 55723, + [SMALL_STATE(1621)] = 55746, + [SMALL_STATE(1622)] = 55769, + [SMALL_STATE(1623)] = 55792, + [SMALL_STATE(1624)] = 55815, + [SMALL_STATE(1625)] = 55838, + [SMALL_STATE(1626)] = 55861, + [SMALL_STATE(1627)] = 55884, + [SMALL_STATE(1628)] = 55907, + [SMALL_STATE(1629)] = 55924, + [SMALL_STATE(1630)] = 55947, + [SMALL_STATE(1631)] = 55970, + [SMALL_STATE(1632)] = 55993, + [SMALL_STATE(1633)] = 56016, + [SMALL_STATE(1634)] = 56039, + [SMALL_STATE(1635)] = 56060, + [SMALL_STATE(1636)] = 56083, + [SMALL_STATE(1637)] = 56106, + [SMALL_STATE(1638)] = 56123, + [SMALL_STATE(1639)] = 56146, + [SMALL_STATE(1640)] = 56163, + [SMALL_STATE(1641)] = 56186, + [SMALL_STATE(1642)] = 56209, + [SMALL_STATE(1643)] = 56232, + [SMALL_STATE(1644)] = 56249, + [SMALL_STATE(1645)] = 56272, + [SMALL_STATE(1646)] = 56295, + [SMALL_STATE(1647)] = 56318, + [SMALL_STATE(1648)] = 56341, + [SMALL_STATE(1649)] = 56364, + [SMALL_STATE(1650)] = 56387, + [SMALL_STATE(1651)] = 56404, + [SMALL_STATE(1652)] = 56421, + [SMALL_STATE(1653)] = 56444, + [SMALL_STATE(1654)] = 56465, + [SMALL_STATE(1655)] = 56488, + [SMALL_STATE(1656)] = 56511, + [SMALL_STATE(1657)] = 56534, + [SMALL_STATE(1658)] = 56557, + [SMALL_STATE(1659)] = 56576, + [SMALL_STATE(1660)] = 56593, + [SMALL_STATE(1661)] = 56616, + [SMALL_STATE(1662)] = 56639, + [SMALL_STATE(1663)] = 56662, + [SMALL_STATE(1664)] = 56685, + [SMALL_STATE(1665)] = 56708, + [SMALL_STATE(1666)] = 56727, + [SMALL_STATE(1667)] = 56744, + [SMALL_STATE(1668)] = 56767, + [SMALL_STATE(1669)] = 56790, + [SMALL_STATE(1670)] = 56813, + [SMALL_STATE(1671)] = 56836, + [SMALL_STATE(1672)] = 56859, + [SMALL_STATE(1673)] = 56882, + [SMALL_STATE(1674)] = 56899, + [SMALL_STATE(1675)] = 56922, + [SMALL_STATE(1676)] = 56945, + [SMALL_STATE(1677)] = 56968, + [SMALL_STATE(1678)] = 56991, + [SMALL_STATE(1679)] = 57014, + [SMALL_STATE(1680)] = 57031, + [SMALL_STATE(1681)] = 57054, + [SMALL_STATE(1682)] = 57071, + [SMALL_STATE(1683)] = 57088, + [SMALL_STATE(1684)] = 57111, + [SMALL_STATE(1685)] = 57134, + [SMALL_STATE(1686)] = 57157, + [SMALL_STATE(1687)] = 57174, + [SMALL_STATE(1688)] = 57197, + [SMALL_STATE(1689)] = 57220, + [SMALL_STATE(1690)] = 57243, + [SMALL_STATE(1691)] = 57266, + [SMALL_STATE(1692)] = 57281, + [SMALL_STATE(1693)] = 57304, + [SMALL_STATE(1694)] = 57327, + [SMALL_STATE(1695)] = 57350, + [SMALL_STATE(1696)] = 57371, + [SMALL_STATE(1697)] = 57388, + [SMALL_STATE(1698)] = 57411, + [SMALL_STATE(1699)] = 57434, + [SMALL_STATE(1700)] = 57453, + [SMALL_STATE(1701)] = 57470, + [SMALL_STATE(1702)] = 57493, + [SMALL_STATE(1703)] = 57516, + [SMALL_STATE(1704)] = 57539, + [SMALL_STATE(1705)] = 57562, + [SMALL_STATE(1706)] = 57574, + [SMALL_STATE(1707)] = 57590, + [SMALL_STATE(1708)] = 57608, + [SMALL_STATE(1709)] = 57626, + [SMALL_STATE(1710)] = 57638, + [SMALL_STATE(1711)] = 57652, + [SMALL_STATE(1712)] = 57672, + [SMALL_STATE(1713)] = 57692, + [SMALL_STATE(1714)] = 57704, + [SMALL_STATE(1715)] = 57716, + [SMALL_STATE(1716)] = 57736, + [SMALL_STATE(1717)] = 57750, + [SMALL_STATE(1718)] = 57768, + [SMALL_STATE(1719)] = 57784, + [SMALL_STATE(1720)] = 57796, + [SMALL_STATE(1721)] = 57812, + [SMALL_STATE(1722)] = 57828, + [SMALL_STATE(1723)] = 57840, + [SMALL_STATE(1724)] = 57858, + [SMALL_STATE(1725)] = 57870, + [SMALL_STATE(1726)] = 57882, + [SMALL_STATE(1727)] = 57894, + [SMALL_STATE(1728)] = 57906, + [SMALL_STATE(1729)] = 57922, + [SMALL_STATE(1730)] = 57934, + [SMALL_STATE(1731)] = 57950, + [SMALL_STATE(1732)] = 57968, + [SMALL_STATE(1733)] = 57980, + [SMALL_STATE(1734)] = 57992, + [SMALL_STATE(1735)] = 58004, + [SMALL_STATE(1736)] = 58024, + [SMALL_STATE(1737)] = 58044, + [SMALL_STATE(1738)] = 58056, + [SMALL_STATE(1739)] = 58072, + [SMALL_STATE(1740)] = 58084, + [SMALL_STATE(1741)] = 58104, + [SMALL_STATE(1742)] = 58116, + [SMALL_STATE(1743)] = 58128, + [SMALL_STATE(1744)] = 58144, + [SMALL_STATE(1745)] = 58164, + [SMALL_STATE(1746)] = 58176, + [SMALL_STATE(1747)] = 58196, + [SMALL_STATE(1748)] = 58210, + [SMALL_STATE(1749)] = 58230, + [SMALL_STATE(1750)] = 58246, + [SMALL_STATE(1751)] = 58262, + [SMALL_STATE(1752)] = 58282, + [SMALL_STATE(1753)] = 58294, + [SMALL_STATE(1754)] = 58306, + [SMALL_STATE(1755)] = 58322, + [SMALL_STATE(1756)] = 58340, + [SMALL_STATE(1757)] = 58356, + [SMALL_STATE(1758)] = 58371, + [SMALL_STATE(1759)] = 58388, + [SMALL_STATE(1760)] = 58405, + [SMALL_STATE(1761)] = 58422, + [SMALL_STATE(1762)] = 58439, + [SMALL_STATE(1763)] = 58454, + [SMALL_STATE(1764)] = 58469, + [SMALL_STATE(1765)] = 58486, + [SMALL_STATE(1766)] = 58503, + [SMALL_STATE(1767)] = 58516, + [SMALL_STATE(1768)] = 58533, + [SMALL_STATE(1769)] = 58550, + [SMALL_STATE(1770)] = 58567, + [SMALL_STATE(1771)] = 58580, + [SMALL_STATE(1772)] = 58597, + [SMALL_STATE(1773)] = 58614, + [SMALL_STATE(1774)] = 58629, + [SMALL_STATE(1775)] = 58644, + [SMALL_STATE(1776)] = 58661, + [SMALL_STATE(1777)] = 58678, + [SMALL_STATE(1778)] = 58695, + [SMALL_STATE(1779)] = 58712, + [SMALL_STATE(1780)] = 58729, + [SMALL_STATE(1781)] = 58744, + [SMALL_STATE(1782)] = 58761, + [SMALL_STATE(1783)] = 58778, + [SMALL_STATE(1784)] = 58795, + [SMALL_STATE(1785)] = 58812, + [SMALL_STATE(1786)] = 58829, + [SMALL_STATE(1787)] = 58846, + [SMALL_STATE(1788)] = 58863, + [SMALL_STATE(1789)] = 58880, + [SMALL_STATE(1790)] = 58897, + [SMALL_STATE(1791)] = 58912, + [SMALL_STATE(1792)] = 58929, + [SMALL_STATE(1793)] = 58946, + [SMALL_STATE(1794)] = 58961, + [SMALL_STATE(1795)] = 58976, + [SMALL_STATE(1796)] = 58993, + [SMALL_STATE(1797)] = 59008, + [SMALL_STATE(1798)] = 59025, + [SMALL_STATE(1799)] = 59042, + [SMALL_STATE(1800)] = 59059, + [SMALL_STATE(1801)] = 59076, + [SMALL_STATE(1802)] = 59091, + [SMALL_STATE(1803)] = 59108, + [SMALL_STATE(1804)] = 59125, + [SMALL_STATE(1805)] = 59138, + [SMALL_STATE(1806)] = 59153, + [SMALL_STATE(1807)] = 59168, + [SMALL_STATE(1808)] = 59185, + [SMALL_STATE(1809)] = 59202, + [SMALL_STATE(1810)] = 59215, + [SMALL_STATE(1811)] = 59232, + [SMALL_STATE(1812)] = 59249, + [SMALL_STATE(1813)] = 59266, + [SMALL_STATE(1814)] = 59283, + [SMALL_STATE(1815)] = 59300, + [SMALL_STATE(1816)] = 59317, + [SMALL_STATE(1817)] = 59334, + [SMALL_STATE(1818)] = 59351, + [SMALL_STATE(1819)] = 59368, + [SMALL_STATE(1820)] = 59381, + [SMALL_STATE(1821)] = 59394, + [SMALL_STATE(1822)] = 59411, + [SMALL_STATE(1823)] = 59428, + [SMALL_STATE(1824)] = 59445, + [SMALL_STATE(1825)] = 59460, + [SMALL_STATE(1826)] = 59475, + [SMALL_STATE(1827)] = 59490, + [SMALL_STATE(1828)] = 59507, + [SMALL_STATE(1829)] = 59524, + [SMALL_STATE(1830)] = 59539, + [SMALL_STATE(1831)] = 59556, + [SMALL_STATE(1832)] = 59573, + [SMALL_STATE(1833)] = 59588, + [SMALL_STATE(1834)] = 59605, + [SMALL_STATE(1835)] = 59622, + [SMALL_STATE(1836)] = 59639, + [SMALL_STATE(1837)] = 59654, + [SMALL_STATE(1838)] = 59671, + [SMALL_STATE(1839)] = 59686, + [SMALL_STATE(1840)] = 59701, + [SMALL_STATE(1841)] = 59718, + [SMALL_STATE(1842)] = 59735, + [SMALL_STATE(1843)] = 59748, + [SMALL_STATE(1844)] = 59763, + [SMALL_STATE(1845)] = 59780, + [SMALL_STATE(1846)] = 59797, + [SMALL_STATE(1847)] = 59810, + [SMALL_STATE(1848)] = 59825, + [SMALL_STATE(1849)] = 59842, + [SMALL_STATE(1850)] = 59857, + [SMALL_STATE(1851)] = 59874, + [SMALL_STATE(1852)] = 59891, + [SMALL_STATE(1853)] = 59908, + [SMALL_STATE(1854)] = 59923, + [SMALL_STATE(1855)] = 59940, + [SMALL_STATE(1856)] = 59954, + [SMALL_STATE(1857)] = 59968, + [SMALL_STATE(1858)] = 59982, + [SMALL_STATE(1859)] = 59996, + [SMALL_STATE(1860)] = 60006, + [SMALL_STATE(1861)] = 60016, + [SMALL_STATE(1862)] = 60030, + [SMALL_STATE(1863)] = 60044, + [SMALL_STATE(1864)] = 60058, + [SMALL_STATE(1865)] = 60068, + [SMALL_STATE(1866)] = 60082, + [SMALL_STATE(1867)] = 60094, + [SMALL_STATE(1868)] = 60106, + [SMALL_STATE(1869)] = 60120, + [SMALL_STATE(1870)] = 60134, + [SMALL_STATE(1871)] = 60146, + [SMALL_STATE(1872)] = 60156, + [SMALL_STATE(1873)] = 60166, + [SMALL_STATE(1874)] = 60180, + [SMALL_STATE(1875)] = 60194, + [SMALL_STATE(1876)] = 60208, + [SMALL_STATE(1877)] = 60222, + [SMALL_STATE(1878)] = 60236, + [SMALL_STATE(1879)] = 60250, + [SMALL_STATE(1880)] = 60262, + [SMALL_STATE(1881)] = 60276, + [SMALL_STATE(1882)] = 60290, + [SMALL_STATE(1883)] = 60304, + [SMALL_STATE(1884)] = 60316, + [SMALL_STATE(1885)] = 60330, + [SMALL_STATE(1886)] = 60344, + [SMALL_STATE(1887)] = 60358, + [SMALL_STATE(1888)] = 60372, + [SMALL_STATE(1889)] = 60386, + [SMALL_STATE(1890)] = 60398, + [SMALL_STATE(1891)] = 60410, + [SMALL_STATE(1892)] = 60424, + [SMALL_STATE(1893)] = 60438, + [SMALL_STATE(1894)] = 60450, + [SMALL_STATE(1895)] = 60464, + [SMALL_STATE(1896)] = 60478, + [SMALL_STATE(1897)] = 60492, + [SMALL_STATE(1898)] = 60506, + [SMALL_STATE(1899)] = 60520, + [SMALL_STATE(1900)] = 60530, + [SMALL_STATE(1901)] = 60544, + [SMALL_STATE(1902)] = 60558, + [SMALL_STATE(1903)] = 60572, + [SMALL_STATE(1904)] = 60586, + [SMALL_STATE(1905)] = 60600, + [SMALL_STATE(1906)] = 60614, + [SMALL_STATE(1907)] = 60628, + [SMALL_STATE(1908)] = 60642, + [SMALL_STATE(1909)] = 60652, + [SMALL_STATE(1910)] = 60666, + [SMALL_STATE(1911)] = 60680, + [SMALL_STATE(1912)] = 60694, + [SMALL_STATE(1913)] = 60708, + [SMALL_STATE(1914)] = 60722, + [SMALL_STATE(1915)] = 60734, + [SMALL_STATE(1916)] = 60746, + [SMALL_STATE(1917)] = 60760, + [SMALL_STATE(1918)] = 60772, + [SMALL_STATE(1919)] = 60786, + [SMALL_STATE(1920)] = 60800, + [SMALL_STATE(1921)] = 60814, + [SMALL_STATE(1922)] = 60828, + [SMALL_STATE(1923)] = 60840, + [SMALL_STATE(1924)] = 60854, + [SMALL_STATE(1925)] = 60868, + [SMALL_STATE(1926)] = 60882, + [SMALL_STATE(1927)] = 60896, + [SMALL_STATE(1928)] = 60910, + [SMALL_STATE(1929)] = 60922, + [SMALL_STATE(1930)] = 60936, + [SMALL_STATE(1931)] = 60950, + [SMALL_STATE(1932)] = 60964, + [SMALL_STATE(1933)] = 60978, + [SMALL_STATE(1934)] = 60988, + [SMALL_STATE(1935)] = 61000, + [SMALL_STATE(1936)] = 61012, + [SMALL_STATE(1937)] = 61024, + [SMALL_STATE(1938)] = 61038, + [SMALL_STATE(1939)] = 61052, + [SMALL_STATE(1940)] = 61064, + [SMALL_STATE(1941)] = 61076, + [SMALL_STATE(1942)] = 61090, + [SMALL_STATE(1943)] = 61104, + [SMALL_STATE(1944)] = 61118, + [SMALL_STATE(1945)] = 61132, + [SMALL_STATE(1946)] = 61144, + [SMALL_STATE(1947)] = 61158, + [SMALL_STATE(1948)] = 61170, + [SMALL_STATE(1949)] = 61184, + [SMALL_STATE(1950)] = 61198, + [SMALL_STATE(1951)] = 61212, + [SMALL_STATE(1952)] = 61226, + [SMALL_STATE(1953)] = 61240, + [SMALL_STATE(1954)] = 61250, + [SMALL_STATE(1955)] = 61264, + [SMALL_STATE(1956)] = 61278, + [SMALL_STATE(1957)] = 61292, + [SMALL_STATE(1958)] = 61306, + [SMALL_STATE(1959)] = 61320, + [SMALL_STATE(1960)] = 61332, + [SMALL_STATE(1961)] = 61346, + [SMALL_STATE(1962)] = 61360, + [SMALL_STATE(1963)] = 61370, + [SMALL_STATE(1964)] = 61384, + [SMALL_STATE(1965)] = 61394, + [SMALL_STATE(1966)] = 61406, + [SMALL_STATE(1967)] = 61420, + [SMALL_STATE(1968)] = 61434, + [SMALL_STATE(1969)] = 61444, + [SMALL_STATE(1970)] = 61458, + [SMALL_STATE(1971)] = 61468, + [SMALL_STATE(1972)] = 61478, + [SMALL_STATE(1973)] = 61492, + [SMALL_STATE(1974)] = 61506, + [SMALL_STATE(1975)] = 61520, + [SMALL_STATE(1976)] = 61532, + [SMALL_STATE(1977)] = 61546, + [SMALL_STATE(1978)] = 61560, + [SMALL_STATE(1979)] = 61574, + [SMALL_STATE(1980)] = 61588, + [SMALL_STATE(1981)] = 61602, + [SMALL_STATE(1982)] = 61616, + [SMALL_STATE(1983)] = 61630, + [SMALL_STATE(1984)] = 61644, + [SMALL_STATE(1985)] = 61658, + [SMALL_STATE(1986)] = 61672, + [SMALL_STATE(1987)] = 61686, + [SMALL_STATE(1988)] = 61700, + [SMALL_STATE(1989)] = 61712, + [SMALL_STATE(1990)] = 61726, + [SMALL_STATE(1991)] = 61740, + [SMALL_STATE(1992)] = 61754, + [SMALL_STATE(1993)] = 61768, + [SMALL_STATE(1994)] = 61782, + [SMALL_STATE(1995)] = 61796, + [SMALL_STATE(1996)] = 61810, + [SMALL_STATE(1997)] = 61824, + [SMALL_STATE(1998)] = 61838, + [SMALL_STATE(1999)] = 61852, + [SMALL_STATE(2000)] = 61866, + [SMALL_STATE(2001)] = 61880, + [SMALL_STATE(2002)] = 61892, + [SMALL_STATE(2003)] = 61906, + [SMALL_STATE(2004)] = 61920, + [SMALL_STATE(2005)] = 61930, + [SMALL_STATE(2006)] = 61944, + [SMALL_STATE(2007)] = 61958, + [SMALL_STATE(2008)] = 61972, + [SMALL_STATE(2009)] = 61986, + [SMALL_STATE(2010)] = 62000, + [SMALL_STATE(2011)] = 62014, + [SMALL_STATE(2012)] = 62026, + [SMALL_STATE(2013)] = 62040, + [SMALL_STATE(2014)] = 62054, + [SMALL_STATE(2015)] = 62068, + [SMALL_STATE(2016)] = 62082, + [SMALL_STATE(2017)] = 62096, + [SMALL_STATE(2018)] = 62110, + [SMALL_STATE(2019)] = 62124, + [SMALL_STATE(2020)] = 62138, + [SMALL_STATE(2021)] = 62152, + [SMALL_STATE(2022)] = 62166, + [SMALL_STATE(2023)] = 62180, + [SMALL_STATE(2024)] = 62194, + [SMALL_STATE(2025)] = 62208, + [SMALL_STATE(2026)] = 62222, + [SMALL_STATE(2027)] = 62236, + [SMALL_STATE(2028)] = 62250, + [SMALL_STATE(2029)] = 62264, + [SMALL_STATE(2030)] = 62278, + [SMALL_STATE(2031)] = 62292, + [SMALL_STATE(2032)] = 62306, + [SMALL_STATE(2033)] = 62320, + [SMALL_STATE(2034)] = 62334, + [SMALL_STATE(2035)] = 62348, + [SMALL_STATE(2036)] = 62362, + [SMALL_STATE(2037)] = 62376, + [SMALL_STATE(2038)] = 62390, + [SMALL_STATE(2039)] = 62402, + [SMALL_STATE(2040)] = 62412, + [SMALL_STATE(2041)] = 62426, + [SMALL_STATE(2042)] = 62438, + [SMALL_STATE(2043)] = 62452, + [SMALL_STATE(2044)] = 62466, + [SMALL_STATE(2045)] = 62476, + [SMALL_STATE(2046)] = 62488, + [SMALL_STATE(2047)] = 62502, + [SMALL_STATE(2048)] = 62516, + [SMALL_STATE(2049)] = 62528, + [SMALL_STATE(2050)] = 62538, + [SMALL_STATE(2051)] = 62552, + [SMALL_STATE(2052)] = 62564, + [SMALL_STATE(2053)] = 62578, + [SMALL_STATE(2054)] = 62592, + [SMALL_STATE(2055)] = 62602, + [SMALL_STATE(2056)] = 62616, + [SMALL_STATE(2057)] = 62626, + [SMALL_STATE(2058)] = 62638, + [SMALL_STATE(2059)] = 62652, + [SMALL_STATE(2060)] = 62662, + [SMALL_STATE(2061)] = 62672, + [SMALL_STATE(2062)] = 62686, + [SMALL_STATE(2063)] = 62700, + [SMALL_STATE(2064)] = 62714, + [SMALL_STATE(2065)] = 62728, + [SMALL_STATE(2066)] = 62742, + [SMALL_STATE(2067)] = 62756, + [SMALL_STATE(2068)] = 62770, + [SMALL_STATE(2069)] = 62784, + [SMALL_STATE(2070)] = 62798, + [SMALL_STATE(2071)] = 62812, + [SMALL_STATE(2072)] = 62822, + [SMALL_STATE(2073)] = 62836, + [SMALL_STATE(2074)] = 62850, + [SMALL_STATE(2075)] = 62860, + [SMALL_STATE(2076)] = 62874, + [SMALL_STATE(2077)] = 62888, + [SMALL_STATE(2078)] = 62902, + [SMALL_STATE(2079)] = 62912, + [SMALL_STATE(2080)] = 62924, + [SMALL_STATE(2081)] = 62938, + [SMALL_STATE(2082)] = 62952, + [SMALL_STATE(2083)] = 62966, + [SMALL_STATE(2084)] = 62980, + [SMALL_STATE(2085)] = 62994, + [SMALL_STATE(2086)] = 63008, + [SMALL_STATE(2087)] = 63022, + [SMALL_STATE(2088)] = 63036, + [SMALL_STATE(2089)] = 63048, + [SMALL_STATE(2090)] = 63062, + [SMALL_STATE(2091)] = 63076, + [SMALL_STATE(2092)] = 63090, + [SMALL_STATE(2093)] = 63104, + [SMALL_STATE(2094)] = 63118, + [SMALL_STATE(2095)] = 63132, + [SMALL_STATE(2096)] = 63146, + [SMALL_STATE(2097)] = 63160, + [SMALL_STATE(2098)] = 63174, + [SMALL_STATE(2099)] = 63188, + [SMALL_STATE(2100)] = 63200, + [SMALL_STATE(2101)] = 63214, + [SMALL_STATE(2102)] = 63228, + [SMALL_STATE(2103)] = 63242, + [SMALL_STATE(2104)] = 63256, + [SMALL_STATE(2105)] = 63270, + [SMALL_STATE(2106)] = 63284, + [SMALL_STATE(2107)] = 63298, + [SMALL_STATE(2108)] = 63309, + [SMALL_STATE(2109)] = 63320, + [SMALL_STATE(2110)] = 63331, + [SMALL_STATE(2111)] = 63342, + [SMALL_STATE(2112)] = 63353, + [SMALL_STATE(2113)] = 63364, + [SMALL_STATE(2114)] = 63375, + [SMALL_STATE(2115)] = 63386, + [SMALL_STATE(2116)] = 63397, + [SMALL_STATE(2117)] = 63408, + [SMALL_STATE(2118)] = 63419, + [SMALL_STATE(2119)] = 63430, + [SMALL_STATE(2120)] = 63441, + [SMALL_STATE(2121)] = 63452, + [SMALL_STATE(2122)] = 63463, + [SMALL_STATE(2123)] = 63474, + [SMALL_STATE(2124)] = 63483, + [SMALL_STATE(2125)] = 63494, + [SMALL_STATE(2126)] = 63505, + [SMALL_STATE(2127)] = 63516, + [SMALL_STATE(2128)] = 63527, + [SMALL_STATE(2129)] = 63538, + [SMALL_STATE(2130)] = 63549, + [SMALL_STATE(2131)] = 63560, + [SMALL_STATE(2132)] = 63571, + [SMALL_STATE(2133)] = 63582, + [SMALL_STATE(2134)] = 63593, + [SMALL_STATE(2135)] = 63604, + [SMALL_STATE(2136)] = 63615, + [SMALL_STATE(2137)] = 63626, + [SMALL_STATE(2138)] = 63637, + [SMALL_STATE(2139)] = 63646, + [SMALL_STATE(2140)] = 63657, + [SMALL_STATE(2141)] = 63668, + [SMALL_STATE(2142)] = 63679, + [SMALL_STATE(2143)] = 63690, + [SMALL_STATE(2144)] = 63701, + [SMALL_STATE(2145)] = 63712, + [SMALL_STATE(2146)] = 63723, + [SMALL_STATE(2147)] = 63734, + [SMALL_STATE(2148)] = 63745, + [SMALL_STATE(2149)] = 63756, + [SMALL_STATE(2150)] = 63767, + [SMALL_STATE(2151)] = 63778, + [SMALL_STATE(2152)] = 63789, + [SMALL_STATE(2153)] = 63800, + [SMALL_STATE(2154)] = 63811, + [SMALL_STATE(2155)] = 63822, + [SMALL_STATE(2156)] = 63831, + [SMALL_STATE(2157)] = 63842, + [SMALL_STATE(2158)] = 63853, + [SMALL_STATE(2159)] = 63864, + [SMALL_STATE(2160)] = 63875, + [SMALL_STATE(2161)] = 63886, + [SMALL_STATE(2162)] = 63897, + [SMALL_STATE(2163)] = 63908, + [SMALL_STATE(2164)] = 63919, + [SMALL_STATE(2165)] = 63928, + [SMALL_STATE(2166)] = 63939, + [SMALL_STATE(2167)] = 63950, + [SMALL_STATE(2168)] = 63961, + [SMALL_STATE(2169)] = 63972, + [SMALL_STATE(2170)] = 63983, + [SMALL_STATE(2171)] = 63994, + [SMALL_STATE(2172)] = 64003, + [SMALL_STATE(2173)] = 64014, + [SMALL_STATE(2174)] = 64025, + [SMALL_STATE(2175)] = 64036, + [SMALL_STATE(2176)] = 64047, + [SMALL_STATE(2177)] = 64058, + [SMALL_STATE(2178)] = 64069, + [SMALL_STATE(2179)] = 64080, + [SMALL_STATE(2180)] = 64091, + [SMALL_STATE(2181)] = 64102, + [SMALL_STATE(2182)] = 64113, + [SMALL_STATE(2183)] = 64124, + [SMALL_STATE(2184)] = 64135, + [SMALL_STATE(2185)] = 64146, + [SMALL_STATE(2186)] = 64157, + [SMALL_STATE(2187)] = 64168, + [SMALL_STATE(2188)] = 64179, + [SMALL_STATE(2189)] = 64190, + [SMALL_STATE(2190)] = 64201, + [SMALL_STATE(2191)] = 64212, + [SMALL_STATE(2192)] = 64223, + [SMALL_STATE(2193)] = 64234, + [SMALL_STATE(2194)] = 64245, + [SMALL_STATE(2195)] = 64256, + [SMALL_STATE(2196)] = 64267, + [SMALL_STATE(2197)] = 64278, + [SMALL_STATE(2198)] = 64289, + [SMALL_STATE(2199)] = 64300, + [SMALL_STATE(2200)] = 64311, + [SMALL_STATE(2201)] = 64322, + [SMALL_STATE(2202)] = 64333, + [SMALL_STATE(2203)] = 64344, + [SMALL_STATE(2204)] = 64355, + [SMALL_STATE(2205)] = 64366, + [SMALL_STATE(2206)] = 64377, + [SMALL_STATE(2207)] = 64388, + [SMALL_STATE(2208)] = 64397, + [SMALL_STATE(2209)] = 64406, + [SMALL_STATE(2210)] = 64415, + [SMALL_STATE(2211)] = 64426, + [SMALL_STATE(2212)] = 64437, + [SMALL_STATE(2213)] = 64448, + [SMALL_STATE(2214)] = 64459, + [SMALL_STATE(2215)] = 64468, + [SMALL_STATE(2216)] = 64479, + [SMALL_STATE(2217)] = 64490, + [SMALL_STATE(2218)] = 64501, + [SMALL_STATE(2219)] = 64512, + [SMALL_STATE(2220)] = 64523, + [SMALL_STATE(2221)] = 64534, + [SMALL_STATE(2222)] = 64545, + [SMALL_STATE(2223)] = 64556, + [SMALL_STATE(2224)] = 64567, + [SMALL_STATE(2225)] = 64578, + [SMALL_STATE(2226)] = 64589, + [SMALL_STATE(2227)] = 64600, + [SMALL_STATE(2228)] = 64611, + [SMALL_STATE(2229)] = 64622, + [SMALL_STATE(2230)] = 64631, + [SMALL_STATE(2231)] = 64642, + [SMALL_STATE(2232)] = 64653, + [SMALL_STATE(2233)] = 64664, + [SMALL_STATE(2234)] = 64675, + [SMALL_STATE(2235)] = 64686, + [SMALL_STATE(2236)] = 64697, + [SMALL_STATE(2237)] = 64708, + [SMALL_STATE(2238)] = 64719, + [SMALL_STATE(2239)] = 64728, + [SMALL_STATE(2240)] = 64737, + [SMALL_STATE(2241)] = 64748, + [SMALL_STATE(2242)] = 64759, + [SMALL_STATE(2243)] = 64770, + [SMALL_STATE(2244)] = 64781, + [SMALL_STATE(2245)] = 64792, + [SMALL_STATE(2246)] = 64803, + [SMALL_STATE(2247)] = 64814, + [SMALL_STATE(2248)] = 64825, + [SMALL_STATE(2249)] = 64834, + [SMALL_STATE(2250)] = 64845, + [SMALL_STATE(2251)] = 64856, + [SMALL_STATE(2252)] = 64867, + [SMALL_STATE(2253)] = 64878, + [SMALL_STATE(2254)] = 64889, + [SMALL_STATE(2255)] = 64898, + [SMALL_STATE(2256)] = 64909, + [SMALL_STATE(2257)] = 64920, + [SMALL_STATE(2258)] = 64931, + [SMALL_STATE(2259)] = 64942, + [SMALL_STATE(2260)] = 64953, + [SMALL_STATE(2261)] = 64962, + [SMALL_STATE(2262)] = 64973, + [SMALL_STATE(2263)] = 64982, + [SMALL_STATE(2264)] = 64991, + [SMALL_STATE(2265)] = 65000, + [SMALL_STATE(2266)] = 65009, + [SMALL_STATE(2267)] = 65020, + [SMALL_STATE(2268)] = 65031, + [SMALL_STATE(2269)] = 65042, + [SMALL_STATE(2270)] = 65053, + [SMALL_STATE(2271)] = 65064, + [SMALL_STATE(2272)] = 65073, + [SMALL_STATE(2273)] = 65084, + [SMALL_STATE(2274)] = 65095, + [SMALL_STATE(2275)] = 65104, + [SMALL_STATE(2276)] = 65115, + [SMALL_STATE(2277)] = 65126, + [SMALL_STATE(2278)] = 65137, + [SMALL_STATE(2279)] = 65148, + [SMALL_STATE(2280)] = 65159, + [SMALL_STATE(2281)] = 65170, + [SMALL_STATE(2282)] = 65181, + [SMALL_STATE(2283)] = 65192, + [SMALL_STATE(2284)] = 65203, + [SMALL_STATE(2285)] = 65212, + [SMALL_STATE(2286)] = 65223, + [SMALL_STATE(2287)] = 65232, + [SMALL_STATE(2288)] = 65241, + [SMALL_STATE(2289)] = 65252, + [SMALL_STATE(2290)] = 65263, + [SMALL_STATE(2291)] = 65274, + [SMALL_STATE(2292)] = 65285, + [SMALL_STATE(2293)] = 65296, + [SMALL_STATE(2294)] = 65307, + [SMALL_STATE(2295)] = 65318, + [SMALL_STATE(2296)] = 65329, + [SMALL_STATE(2297)] = 65340, + [SMALL_STATE(2298)] = 65351, + [SMALL_STATE(2299)] = 65362, + [SMALL_STATE(2300)] = 65373, + [SMALL_STATE(2301)] = 65384, + [SMALL_STATE(2302)] = 65395, + [SMALL_STATE(2303)] = 65406, + [SMALL_STATE(2304)] = 65415, + [SMALL_STATE(2305)] = 65424, + [SMALL_STATE(2306)] = 65435, + [SMALL_STATE(2307)] = 65446, + [SMALL_STATE(2308)] = 65457, + [SMALL_STATE(2309)] = 65468, + [SMALL_STATE(2310)] = 65479, + [SMALL_STATE(2311)] = 65490, + [SMALL_STATE(2312)] = 65501, + [SMALL_STATE(2313)] = 65512, + [SMALL_STATE(2314)] = 65521, + [SMALL_STATE(2315)] = 65529, + [SMALL_STATE(2316)] = 65537, + [SMALL_STATE(2317)] = 65545, + [SMALL_STATE(2318)] = 65553, + [SMALL_STATE(2319)] = 65561, + [SMALL_STATE(2320)] = 65569, + [SMALL_STATE(2321)] = 65577, + [SMALL_STATE(2322)] = 65585, + [SMALL_STATE(2323)] = 65593, + [SMALL_STATE(2324)] = 65601, + [SMALL_STATE(2325)] = 65609, + [SMALL_STATE(2326)] = 65617, + [SMALL_STATE(2327)] = 65625, + [SMALL_STATE(2328)] = 65633, + [SMALL_STATE(2329)] = 65641, + [SMALL_STATE(2330)] = 65649, + [SMALL_STATE(2331)] = 65657, + [SMALL_STATE(2332)] = 65665, + [SMALL_STATE(2333)] = 65673, + [SMALL_STATE(2334)] = 65681, + [SMALL_STATE(2335)] = 65689, + [SMALL_STATE(2336)] = 65697, + [SMALL_STATE(2337)] = 65705, + [SMALL_STATE(2338)] = 65713, + [SMALL_STATE(2339)] = 65721, + [SMALL_STATE(2340)] = 65729, + [SMALL_STATE(2341)] = 65737, + [SMALL_STATE(2342)] = 65745, + [SMALL_STATE(2343)] = 65753, + [SMALL_STATE(2344)] = 65761, + [SMALL_STATE(2345)] = 65769, + [SMALL_STATE(2346)] = 65777, + [SMALL_STATE(2347)] = 65785, + [SMALL_STATE(2348)] = 65793, + [SMALL_STATE(2349)] = 65801, + [SMALL_STATE(2350)] = 65809, + [SMALL_STATE(2351)] = 65817, + [SMALL_STATE(2352)] = 65825, + [SMALL_STATE(2353)] = 65833, + [SMALL_STATE(2354)] = 65841, + [SMALL_STATE(2355)] = 65849, + [SMALL_STATE(2356)] = 65857, + [SMALL_STATE(2357)] = 65865, + [SMALL_STATE(2358)] = 65873, + [SMALL_STATE(2359)] = 65881, + [SMALL_STATE(2360)] = 65889, + [SMALL_STATE(2361)] = 65897, + [SMALL_STATE(2362)] = 65905, + [SMALL_STATE(2363)] = 65913, + [SMALL_STATE(2364)] = 65921, + [SMALL_STATE(2365)] = 65929, + [SMALL_STATE(2366)] = 65937, + [SMALL_STATE(2367)] = 65945, + [SMALL_STATE(2368)] = 65953, + [SMALL_STATE(2369)] = 65961, + [SMALL_STATE(2370)] = 65969, + [SMALL_STATE(2371)] = 65977, + [SMALL_STATE(2372)] = 65985, + [SMALL_STATE(2373)] = 65993, + [SMALL_STATE(2374)] = 66001, + [SMALL_STATE(2375)] = 66009, + [SMALL_STATE(2376)] = 66017, + [SMALL_STATE(2377)] = 66025, + [SMALL_STATE(2378)] = 66033, + [SMALL_STATE(2379)] = 66041, + [SMALL_STATE(2380)] = 66049, + [SMALL_STATE(2381)] = 66057, + [SMALL_STATE(2382)] = 66065, + [SMALL_STATE(2383)] = 66073, + [SMALL_STATE(2384)] = 66081, + [SMALL_STATE(2385)] = 66089, + [SMALL_STATE(2386)] = 66097, + [SMALL_STATE(2387)] = 66105, + [SMALL_STATE(2388)] = 66113, + [SMALL_STATE(2389)] = 66121, + [SMALL_STATE(2390)] = 66129, + [SMALL_STATE(2391)] = 66137, + [SMALL_STATE(2392)] = 66145, + [SMALL_STATE(2393)] = 66153, + [SMALL_STATE(2394)] = 66161, + [SMALL_STATE(2395)] = 66169, + [SMALL_STATE(2396)] = 66177, + [SMALL_STATE(2397)] = 66185, + [SMALL_STATE(2398)] = 66193, + [SMALL_STATE(2399)] = 66201, + [SMALL_STATE(2400)] = 66209, + [SMALL_STATE(2401)] = 66217, + [SMALL_STATE(2402)] = 66225, + [SMALL_STATE(2403)] = 66233, + [SMALL_STATE(2404)] = 66241, + [SMALL_STATE(2405)] = 66249, + [SMALL_STATE(2406)] = 66257, + [SMALL_STATE(2407)] = 66265, + [SMALL_STATE(2408)] = 66273, + [SMALL_STATE(2409)] = 66281, + [SMALL_STATE(2410)] = 66289, + [SMALL_STATE(2411)] = 66297, + [SMALL_STATE(2412)] = 66305, + [SMALL_STATE(2413)] = 66313, + [SMALL_STATE(2414)] = 66321, + [SMALL_STATE(2415)] = 66329, + [SMALL_STATE(2416)] = 66337, + [SMALL_STATE(2417)] = 66345, + [SMALL_STATE(2418)] = 66353, + [SMALL_STATE(2419)] = 66361, + [SMALL_STATE(2420)] = 66369, + [SMALL_STATE(2421)] = 66377, + [SMALL_STATE(2422)] = 66385, + [SMALL_STATE(2423)] = 66393, + [SMALL_STATE(2424)] = 66401, + [SMALL_STATE(2425)] = 66409, + [SMALL_STATE(2426)] = 66417, + [SMALL_STATE(2427)] = 66425, + [SMALL_STATE(2428)] = 66433, + [SMALL_STATE(2429)] = 66441, + [SMALL_STATE(2430)] = 66449, + [SMALL_STATE(2431)] = 66457, + [SMALL_STATE(2432)] = 66465, + [SMALL_STATE(2433)] = 66473, + [SMALL_STATE(2434)] = 66481, + [SMALL_STATE(2435)] = 66489, + [SMALL_STATE(2436)] = 66497, + [SMALL_STATE(2437)] = 66505, + [SMALL_STATE(2438)] = 66513, + [SMALL_STATE(2439)] = 66521, + [SMALL_STATE(2440)] = 66529, + [SMALL_STATE(2441)] = 66537, + [SMALL_STATE(2442)] = 66545, + [SMALL_STATE(2443)] = 66553, + [SMALL_STATE(2444)] = 66561, + [SMALL_STATE(2445)] = 66569, + [SMALL_STATE(2446)] = 66577, + [SMALL_STATE(2447)] = 66585, + [SMALL_STATE(2448)] = 66593, + [SMALL_STATE(2449)] = 66601, + [SMALL_STATE(2450)] = 66609, + [SMALL_STATE(2451)] = 66617, + [SMALL_STATE(2452)] = 66625, + [SMALL_STATE(2453)] = 66633, + [SMALL_STATE(2454)] = 66641, + [SMALL_STATE(2455)] = 66649, + [SMALL_STATE(2456)] = 66657, + [SMALL_STATE(2457)] = 66665, + [SMALL_STATE(2458)] = 66673, + [SMALL_STATE(2459)] = 66681, + [SMALL_STATE(2460)] = 66689, + [SMALL_STATE(2461)] = 66697, + [SMALL_STATE(2462)] = 66705, + [SMALL_STATE(2463)] = 66713, + [SMALL_STATE(2464)] = 66721, + [SMALL_STATE(2465)] = 66729, + [SMALL_STATE(2466)] = 66737, + [SMALL_STATE(2467)] = 66745, + [SMALL_STATE(2468)] = 66753, + [SMALL_STATE(2469)] = 66761, + [SMALL_STATE(2470)] = 66769, + [SMALL_STATE(2471)] = 66777, + [SMALL_STATE(2472)] = 66785, + [SMALL_STATE(2473)] = 66793, + [SMALL_STATE(2474)] = 66801, + [SMALL_STATE(2475)] = 66809, + [SMALL_STATE(2476)] = 66817, + [SMALL_STATE(2477)] = 66825, + [SMALL_STATE(2478)] = 66833, + [SMALL_STATE(2479)] = 66841, + [SMALL_STATE(2480)] = 66849, + [SMALL_STATE(2481)] = 66857, + [SMALL_STATE(2482)] = 66865, + [SMALL_STATE(2483)] = 66873, + [SMALL_STATE(2484)] = 66881, + [SMALL_STATE(2485)] = 66889, + [SMALL_STATE(2486)] = 66897, + [SMALL_STATE(2487)] = 66905, + [SMALL_STATE(2488)] = 66913, + [SMALL_STATE(2489)] = 66921, + [SMALL_STATE(2490)] = 66929, + [SMALL_STATE(2491)] = 66937, + [SMALL_STATE(2492)] = 66945, + [SMALL_STATE(2493)] = 66953, + [SMALL_STATE(2494)] = 66961, + [SMALL_STATE(2495)] = 66969, + [SMALL_STATE(2496)] = 66977, + [SMALL_STATE(2497)] = 66985, + [SMALL_STATE(2498)] = 66993, + [SMALL_STATE(2499)] = 67001, + [SMALL_STATE(2500)] = 67009, + [SMALL_STATE(2501)] = 67017, + [SMALL_STATE(2502)] = 67025, + [SMALL_STATE(2503)] = 67033, + [SMALL_STATE(2504)] = 67041, + [SMALL_STATE(2505)] = 67049, + [SMALL_STATE(2506)] = 67057, + [SMALL_STATE(2507)] = 67065, + [SMALL_STATE(2508)] = 67073, + [SMALL_STATE(2509)] = 67081, + [SMALL_STATE(2510)] = 67089, + [SMALL_STATE(2511)] = 67097, + [SMALL_STATE(2512)] = 67105, + [SMALL_STATE(2513)] = 67113, + [SMALL_STATE(2514)] = 67121, + [SMALL_STATE(2515)] = 67129, + [SMALL_STATE(2516)] = 67137, + [SMALL_STATE(2517)] = 67145, + [SMALL_STATE(2518)] = 67153, + [SMALL_STATE(2519)] = 67161, + [SMALL_STATE(2520)] = 67169, + [SMALL_STATE(2521)] = 67177, + [SMALL_STATE(2522)] = 67185, + [SMALL_STATE(2523)] = 67193, + [SMALL_STATE(2524)] = 67201, + [SMALL_STATE(2525)] = 67209, + [SMALL_STATE(2526)] = 67217, + [SMALL_STATE(2527)] = 67225, + [SMALL_STATE(2528)] = 67233, + [SMALL_STATE(2529)] = 67241, + [SMALL_STATE(2530)] = 67249, + [SMALL_STATE(2531)] = 67257, + [SMALL_STATE(2532)] = 67265, + [SMALL_STATE(2533)] = 67273, + [SMALL_STATE(2534)] = 67281, + [SMALL_STATE(2535)] = 67289, + [SMALL_STATE(2536)] = 67297, + [SMALL_STATE(2537)] = 67305, + [SMALL_STATE(2538)] = 67313, + [SMALL_STATE(2539)] = 67321, + [SMALL_STATE(2540)] = 67329, + [SMALL_STATE(2541)] = 67337, + [SMALL_STATE(2542)] = 67345, + [SMALL_STATE(2543)] = 67353, + [SMALL_STATE(2544)] = 67361, + [SMALL_STATE(2545)] = 67369, + [SMALL_STATE(2546)] = 67377, + [SMALL_STATE(2547)] = 67385, + [SMALL_STATE(2548)] = 67393, + [SMALL_STATE(2549)] = 67401, + [SMALL_STATE(2550)] = 67409, + [SMALL_STATE(2551)] = 67417, + [SMALL_STATE(2552)] = 67425, + [SMALL_STATE(2553)] = 67433, + [SMALL_STATE(2554)] = 67441, + [SMALL_STATE(2555)] = 67449, + [SMALL_STATE(2556)] = 67457, + [SMALL_STATE(2557)] = 67465, + [SMALL_STATE(2558)] = 67473, + [SMALL_STATE(2559)] = 67481, + [SMALL_STATE(2560)] = 67489, + [SMALL_STATE(2561)] = 67497, + [SMALL_STATE(2562)] = 67505, + [SMALL_STATE(2563)] = 67513, + [SMALL_STATE(2564)] = 67521, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -129933,2728 +129779,2724 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1161), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(248), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1900), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(46), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(5), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(34), - [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(108), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1127), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2568), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1494), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1495), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(767), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(768), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2554), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2177), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(596), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(41), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(626), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(598), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2178), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(159), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2501), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1345), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1962), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2490), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2489), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2488), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1167), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1477), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1299), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(47), - [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2193), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1474), - [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(635), - [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2480), - [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(98), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(561), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2202), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1112), - [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1818), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1124), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1123), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2471), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1369), - [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1123), - [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1161), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(253), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2048), + [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(42), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(35), + [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(148), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1119), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2564), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1523), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1510), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(770), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(765), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2563), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2214), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(617), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(43), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(628), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(598), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2299), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(155), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2550), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1341), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1921), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2541), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2540), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2535), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1166), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1476), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1300), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(50), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2261), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1467), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(634), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2533), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(91), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), + [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(556), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2259), + [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(815), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1853), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1028), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1031), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2530), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1351), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1031), + [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), - [324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), - [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), + [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), + [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 17), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 18), + [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 18), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), [410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), - [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), - [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), - [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 89), - [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 89), - [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 13), - [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), - [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), - [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 58), - [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 58), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), - [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 97), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 97), - [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 132), - [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 132), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 26), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(760), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(46), - [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(10), - [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(34), - [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(108), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1127), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2568), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1909), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2226), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(767), - [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(785), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(593), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(45), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2184), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(122), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2227), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(42), - [561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(635), - [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2480), - [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(98), - [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(23), - [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(561), - [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), - [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2202), - [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1112), - [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1818), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1124), - [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1123), - [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2471), - [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1123), - [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 30), - [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 33), - [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 217), - [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 217), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 27), + [424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 27), + [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), + [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), + [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 133), + [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 133), + [434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), + [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), + [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 218), + [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 218), + [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), + [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), + [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), + [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 98), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 98), + [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 31), + [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 31), + [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 59), + [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 59), + [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), + [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(758), + [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(42), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(10), + [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(35), + [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(148), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1119), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2564), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1856), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2218), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(770), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(780), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(597), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(39), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2256), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(142), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(24), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2186), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(41), + [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(634), + [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2533), + [561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(91), + [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), + [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(556), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(23), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2259), + [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(815), + [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1853), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1028), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1031), + [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2530), + [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1031), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 34), + [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 34), + [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 14), + [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 14), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), + [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 154), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 154), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 98), - [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 98), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 155), + [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 155), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 99), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 99), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(239), - [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(489), + [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(492), [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(490), - [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(491), - [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2434), - [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(562), - [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1849), - [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(568), + [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(481), + [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(494), + [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2460), + [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(585), + [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1801), + [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(584), [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(557), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2295), - [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(836), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2054), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2372), - [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1553), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1571), - [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1543), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2358), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2173), - [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(627), - [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(612), - [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2363), - [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1345), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2097), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2364), - [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2365), - [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2366), - [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2100), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1548), - [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1301), - [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2170), - [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1471), - [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(635), - [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2357), - [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2373), - [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1358), - [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2373), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 137), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 137), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 82), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 75), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 60), - [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 49), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 75), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 75), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 156), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 156), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 71), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 73), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 145), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 145), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 82), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 82), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 93), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 93), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 135), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 135), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 85), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 85), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 49), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 86), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 86), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 75), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 14), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 136), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 136), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 75), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 75), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 103), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 103), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 49), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 14), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 87), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 87), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 47), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 142), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 142), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 108), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 108), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 70), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 21), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 152), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 152), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 91), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 91), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 65), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 150), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 150), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 50), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 244), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 244), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 160), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 160), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 161), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 161), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 162), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 162), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 239), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 239), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 243), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 243), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, .production_id = 242), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, .production_id = 242), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 118), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 92), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 92), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 241), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 241), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 234), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 234), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 167), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 167), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 151), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 151), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 170), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 170), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 172), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 172), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 240), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 173), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 173), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 127), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 127), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 174), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 174), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 239), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 239), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 238), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 238), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 228), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 228), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 237), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 237), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 47), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, .production_id = 236), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, .production_id = 236), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 93), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 93), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 156), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 156), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 235), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 235), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 94), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 94), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 234), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 234), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 51), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 168), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 168), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 233), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 233), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 214), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 214), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 232), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 232), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 21), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 231), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 231), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 23), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 224), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 224), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 230), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 230), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 75), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 123), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 168), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 168), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 207), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 207), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 175), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 175), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 131), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 131), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 25), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 229), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 228), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 228), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 168), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 168), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 227), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 227), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 27), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 176), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 176), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 177), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 177), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 130), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 130), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 52), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 51), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 123), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 14), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 121), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 202), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 202), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 179), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 179), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 226), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 14), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 200), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 200), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 180), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 180), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 129), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 129), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 121), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 14), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 75), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 75), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 224), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 224), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 223), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 223), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 222), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 222), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 123), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 121), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 221), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 221), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 128), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 128), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 219), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 219), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 185), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 185), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 127), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 127), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 49), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 216), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 216), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 179), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 47), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 29), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 182), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 182), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 215), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 215), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 214), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 214), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 213), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 213), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 185), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 185), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 186), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 186), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 136), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 136), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 211), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 211), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 187), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 187), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 121), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 210), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 210), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 103), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 209), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 209), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 123), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 123), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 60), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 208), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 208), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 65), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 106), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 207), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 207), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 144), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 144), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 206), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 206), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 92), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 92), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 117), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 190), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 190), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 116), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 146), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 146), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 92), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 92), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 108), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 191), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 191), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 172), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 172), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 193), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 193), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 194), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 194), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 92), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 92), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 195), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 195), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 50), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 14), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 205), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 205), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 47), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 196), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 196), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 38), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 165), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 165), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 182), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 182), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 162), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 162), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 199), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 199), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 98), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 98), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 91), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 91), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(492), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(536), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(502), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(543), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(492), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(599), - [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1833), - [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(607), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(495), - [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(504), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(509), - [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(517), - [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2511), - [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(562), - [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1849), - [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(568), - [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(495), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1317), - [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(560), - [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(555), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(558), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2288), + [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1055), + [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1975), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2345), + [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1526), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1577), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1547), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2354), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2238), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(625), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(616), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2359), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1341), + [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1898), + [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2360), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2361), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2362), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1895), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1553), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1299), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2244), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1464), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(634), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2364), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2369), + [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1366), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2369), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 116), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 116), + [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 5), + [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 5), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 48), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 48), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 22), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 22), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 68), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 68), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 71), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 71), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 181), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 181), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 15), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 15), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 124), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 124), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 180), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 180), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 186), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 186), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 187), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 187), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 177), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 177), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 72), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 72), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 51), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 51), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 145), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 145), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 176), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 176), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 15), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 15), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 191), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 191), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 124), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 124), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 76), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 76), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 174), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 174), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 173), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 173), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 171), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 171), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 73), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 73), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 51), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 51), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 147), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 147), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 74), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 74), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 192), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 192), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 72), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 72), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 119), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 119), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 51), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 51), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 51), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 51), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 194), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 194), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 61), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 61), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 195), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 195), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 75), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 75), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 197), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 197), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 183), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 183), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 76), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 76), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 83), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 83), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 245), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 245), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 76), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 76), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 83), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 83), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 157), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 157), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 53), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 53), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 76), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 76), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 76), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 76), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 152), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 152), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 151), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 151), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 109), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 109), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 145), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 145), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 143), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 143), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 104), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 104), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 22), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 22), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 24), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 24), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 52), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 52), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 240), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 240), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 244), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 244), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 26), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 26), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 173), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 173), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 5), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 5), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 28), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 28), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, .production_id = 243), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, .production_id = 243), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 48), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 48), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 6), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 6), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 5), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 5), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 224), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 224), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 15), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 15), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 210), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 210), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 242), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 242), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 15), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 15), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 235), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 235), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 6), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 6), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 5), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 5), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 241), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 241), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 240), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 240), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 15), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 15), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 48), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 48), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 51), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 51), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 216), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 216), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 180), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 180), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 124), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 124), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 122), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 122), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 124), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 124), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 122), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 122), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 76), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 76), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 30), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 30), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 124), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 124), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 229), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 229), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 122), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 122), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 238), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 238), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, .production_id = 237), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, .production_id = 237), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 236), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 236), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 124), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 124), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 235), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 235), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 121), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 121), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 186), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 186), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 61), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 61), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 118), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 118), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 233), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 233), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 232), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 232), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 117), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 117), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 183), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 183), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 5), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 5), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 223), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 223), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 52), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 52), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 51), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 51), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 225), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 225), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 48), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 48), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 15), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 15), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 231), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 231), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 225), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 225), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 230), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 230), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 229), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 229), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 105), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 105), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 39), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 39), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 66), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 66), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 107), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 107), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 227), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 227), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 113), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 113), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 99), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 99), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 228), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 228), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 110), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 110), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(483), + [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(522), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), + [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(530), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(534), + [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(483), + [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(592), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1762), + [2049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(589), + [2052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(485), + [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(535), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(544), + [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(533), + [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2553), + [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(585), + [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1801), + [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(584), + [2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(485), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1315), + [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(561), + [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(559), [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1364), - [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2229), - [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1350), - [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2443), - [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(594), - [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(635), - [2128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2396), - [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1458), - [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(588), - [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(613), - [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1457), - [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2284), - [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1401), - [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1815), - [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1367), - [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2108), - [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2108), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2251), + [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1348), + [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2501), + [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(586), + [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(634), + [2128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2496), + [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1422), + [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(608), + [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(599), + [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1421), + [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2208), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1397), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1829), + [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1358), + [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2001), + [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2001), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 181), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 181), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2443), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 182), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 182), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2501), + [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 35), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 4), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 4), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 40), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 40), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 21), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 21), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 21), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 21), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 36), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 13), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 6), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 41), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 65), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 65), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 37), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 36), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 18), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 46), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 68), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 64), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 70), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 70), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 37), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 47), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 37), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 46), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 46), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 38), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 108), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 108), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 17), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 17), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 19), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 19), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 25), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 25), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 107), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 107), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 141), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 141), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 23), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 23), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 88), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 88), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 59), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 60), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 60), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 90), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 90), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 99), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 99), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 102), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 102), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 110), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 110), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 143), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 143), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 148), - [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 148), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 111), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 111), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 106), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 106), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 103), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 103), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 100), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 100), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 142), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 142), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 144), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 144), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 61), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 61), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 43), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 43), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 61), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 61), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 60), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 60), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 149), [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 149), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 42), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 125), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 125), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 22), + [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 22), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 192), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 192), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 133), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 133), - [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 21), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 41), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 61), - [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 154), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 154), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 154), - [3056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2522), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 61), - [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 98), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 98), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 98), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 41), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 31), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 61), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 32), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 43), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 113), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, .dynamic_precedence = 1), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 98), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 218), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 134), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2), REDUCE(sym_binary_expression, 3, .production_id = 41), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 171), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 126), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 154), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 184), - [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 183), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 98), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 31), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 124), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 57), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 53), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 34), REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), - [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 54), - [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 54), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 54), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 54), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 54), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 54), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 9), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 9), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 193), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 193), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 42), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 42), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 7), + [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 7), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 62), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 62), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 42), + [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 42), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 99), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 99), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 99), + [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 62), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 62), + [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 11), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 155), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 62), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 62), + [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), + [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), + [3096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2518), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 32), + [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 32), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 33), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 114), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 114), + [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 99), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 219), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 127), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 172), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 155), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 185), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 135), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 184), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 125), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 99), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 32), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 4), REDUCE(sym__pattern, 1), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 58), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 58), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 54), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 54), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), + [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), + [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), + [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), + [3633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), + [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 40), REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 55), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 55), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), + [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 55), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 55), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), + [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [3888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1525), + [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1561), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [3942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1556), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1539), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(601), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(497), - [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(481), - [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(499), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 65), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 48), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(594), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(496), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(498), + [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(499), + [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 49), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 66), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 5), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 54), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 54), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [4262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 157), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 225), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 102), - [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 197), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 61), - [4309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 21), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 60), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1361), - [4331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(189), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 102), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 225), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 157), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 21), - [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 197), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 60), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1165), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1776), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 111), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 84), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(600), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 198), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(190), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_chain, 2), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 21), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [4589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(51), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 102), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 96), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 220), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 100), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1533), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1560), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), - [4660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(151), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 159), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 56), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(582), - [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 60), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1566), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 43), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 138), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 158), - [4863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 158), SHIFT_REPEAT(556), - [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2), SHIFT_REPEAT(72), - [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 79), - [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 78), - [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 77), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [4909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 76), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 27), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 62), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 28), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 189), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [4973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1541), - [4976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), - [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 62), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 188), - [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 91), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2149), - [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [5019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_chain_repeat1, 2), SHIFT_REPEAT(62), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [5030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(745), - [5033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(236), - [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 140), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1298), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [5119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1620), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 83), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [5494] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 155), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 81), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 80), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [4180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 198), + [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 103), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 198), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1367), + [4270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(188), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 158), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 61), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 22), + [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [4287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1), + [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 226), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 158), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 61), + [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 22), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 103), + [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 226), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 62), + [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(606), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1168), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1839), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 112), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 103), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 221), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 199), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 61), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 190), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 189), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [4673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1535), + [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 160), + [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), + [4684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), SHIFT_REPEAT(555), + [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 22), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 57), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), + [4721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2295), + [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(236), + [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 29), + [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 141), + [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [4743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1695), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), + [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(190), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 28), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [4795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1551), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 64), + [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 44), + [4818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(104), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [4829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(52), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [4874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1548), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [4891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1296), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 102), + [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [4968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1556), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 77), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [4991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(673), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 78), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 79), + [5004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 80), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 64), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 9), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(562), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [5107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, .production_id = 3), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 84), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [5321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 81), + [5433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 82), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [5569] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [5597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 156), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), }; #ifdef __cplusplus